/* Arctic theme colors - cool blues and whites */
:root {
    --primary-blue: #1e3a8a;
    --light-blue: #3b82f6;
    --ice-blue: #dbeafe;
    --frost-white: #f8fafc;
    --snow-white: #ffffff;
    --arctic-gray: #64748b;
    --deep-blue: #1e293b;
    --success-green: #10b981;
    --accent-cyan: #06b6d4;
    
    --font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    --code-font: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
}

/* iOS Safari specific fixes */
@supports (-webkit-overflow-scrolling: touch) {
    body {
        -webkit-overflow-scrolling: touch;
    }
}

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

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--deep-blue);
    background: linear-gradient(135deg, var(--frost-white) 0%, var(--ice-blue) 100%);
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* Header */
.header {
    background: var(--snow-white);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--ice-blue);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.nav-brand {
    display: flex;
    flex-direction: column;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin: 0;
}

.tagline {
    font-size: 0.75rem;
    color: var(--arctic-gray);
    font-style: italic;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--deep-blue);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--light-blue);
}

.btn-primary {
    background: var(--primary-blue);
    color: white !important;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--light-blue);
    transform: translateY(-1px);
}

/* Hero Section */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 70vh;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--arctic-gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.btn-hero {
    background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.3);
}

.btn-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.4);
}

.btn-secondary {
    background: white;
    color: var(--primary-blue);
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border: 2px solid var(--primary-blue);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-2px);
}

/* Code Snippet */
.code-snippet {
    background: var(--deep-blue);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.code-header {
    background: var(--primary-blue);
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.code-title {
    color: white;
    font-weight: 600;
}

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

.code-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
}

.code-snippet pre {
    padding: 1.5rem;
    margin: 0;
}

.code-snippet code {
    color: var(--ice-blue);
    font-family: var(--code-font);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Stats Section */
.stats {
    background: white;
    padding: 4rem 2rem;
    margin: 4rem 0;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--arctic-gray);
    font-weight: 500;
}

/* Features Section */
.features {
    padding: 6rem 2rem;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 3rem;
}

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

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid var(--ice-blue);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

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

.feature-card h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.feature-card p {
    color: var(--arctic-gray);
    line-height: 1.6;
}

/* New feature announcements */
.announcement-badge {
    background: linear-gradient(135deg, var(--success-green), var(--accent-cyan));
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.3);
    animation: pulse-glow 2s infinite;
}

.badge-new {
    background: var(--success-green);
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-right: 0.5rem;
}

.featured-new {
    border: 2px solid var(--success-green);
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05), rgba(6, 182, 212, 0.05));
    position: relative;
    overflow: hidden;
}

.featured-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--success-green), var(--accent-cyan));
}

.featured-improved {
    border: 2px solid var(--accent-cyan);
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.05), rgba(59, 130, 246, 0.05));
    position: relative;
    overflow: hidden;
}

.featured-improved::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-cyan), var(--light-blue));
}

.new-badge, .improved-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.25rem 0.6rem;
    border-radius: 10px;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.new-badge {
    background: var(--success-green);
    color: white;
}

.improved-badge {
    background: var(--accent-cyan);
    color: white;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 4px 20px rgba(16, 185, 129, 0.3); }
    50% { box-shadow: 0 4px 30px rgba(16, 185, 129, 0.6); }
}

/* Cloud Showcase Section */
.cloud-showcase {
    background: linear-gradient(135deg, var(--primary-blue), var(--deep-blue));
    color: white;
    padding: 6rem 2rem;
    margin: 4rem 0;
}

.cloud-showcase .section-title {
    color: white;
}

.cloud-showcase .section-subtitle {
    color: var(--ice-blue);
    opacity: 0.9;
}

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

.cloud-features {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.cloud-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.cloud-feature-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.cloud-feature h4 {
    margin-bottom: 0.5rem;
    color: white;
    font-weight: 600;
}

.cloud-feature p {
    color: var(--ice-blue);
    line-height: 1.6;
}

.cloud-cta {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.dashboard-mockup {
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    color: var(--deep-blue);
}

.dashboard-header {
    background: var(--frost-white);
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--ice-blue);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dashboard-nav {
    display: flex;
    gap: 2rem;
}

.nav-item {
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.nav-item.active {
    background: var(--primary-blue);
    color: white;
}

.nav-item:not(.active) {
    color: var(--arctic-gray);
}

.btn-create {
    background: var(--success-green);
    color: white;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-create:hover {
    background: #0d9488;
    transform: translateY(-1px);
}

.dashboard-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.instance-card {
    background: white;
    border: 1px solid var(--ice-blue);
    border-radius: 12px;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.2s ease;
}

.instance-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transform: translateY(-1px);
}

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

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

.instance-info h5 {
    margin: 0;
    font-weight: 600;
    color: var(--primary-blue);
}

.instance-type {
    font-size: 0.85rem;
    color: var(--arctic-gray);
}

.instance-status {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.status-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.status-badge.available {
    background: #dcfdf7;
    color: #059669;
}

.status-badge.scaling {
    background: #fef3c7;
    color: #d97706;
}

.metrics-mini {
    display: flex;
    gap: 1rem;
}

.metric {
    font-size: 0.75rem;
    color: var(--arctic-gray);
}

.instance-actions {
    display: flex;
    align-items: center;
}

.btn-scale {
    background: var(--accent-cyan);
    color: white;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-scale:hover {
    background: #0891b2;
    transform: translateY(-1px);
}

.ai-recommendation {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--success-green), var(--accent-cyan));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
}

.ai-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.2rem 0.5rem;
    border-radius: 8px;
    font-size: 0.7rem;
}

@media (max-width: 768px) {
    .cloud-showcase-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cloud-cta {
        flex-direction: column;
    }
    
    .dashboard-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .instance-card {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* Architecture Section */
.architecture {
    background: white;
    padding: 6rem 2rem;
    margin: 4rem 0;
}

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

.arch-layer {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.arch-box {
    background: var(--ice-blue);
    border: 2px solid var(--primary-blue);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    min-width: 120px;
    transition: all 0.3s ease;
}

.arch-box.primary {
    background: var(--primary-blue);
    color: white;
}

.arch-box.secondary {
    background: var(--light-blue);
    color: white;
}

.arch-box:hover {
    transform: scale(1.05);
}

.arch-box h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.arch-box p {
    font-size: 0.85rem;
    opacity: 0.8;
}

.arch-arrow {
    font-size: 2rem;
    color: var(--light-blue);
    margin: 1rem 0;
}

/* Multi-Layer Protection Section */
.multi-layer-protection {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--frost-white) 0%, var(--ice-blue) 100%);
}

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

.protection-tile {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.1);
    border: 2px solid var(--ice-blue);
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transform: translateY(0);
}

.protection-tile::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
    transition: left 0.6s ease;
}

.protection-tile:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(30, 58, 138, 0.2);
    border-color: var(--light-blue);
}

.protection-tile:hover::before {
    left: 100%;
}

.protection-tile:nth-child(odd) {
    animation: slideInLeft 0.6s ease forwards;
}

.protection-tile:nth-child(even) {
    animation: slideInRight 0.6s ease forwards;
}

.protection-tile:nth-child(1) { animation-delay: 0.1s; }
.protection-tile:nth-child(2) { animation-delay: 0.2s; }
.protection-tile:nth-child(3) { animation-delay: 0.3s; }
.protection-tile:nth-child(4) { animation-delay: 0.4s; }
.protection-tile:nth-child(5) { animation-delay: 0.5s; }
.protection-tile:nth-child(6) { animation-delay: 0.6s; }
.protection-tile:nth-child(7) { animation-delay: 0.7s; }
.protection-tile:nth-child(8) { animation-delay: 0.8s; }

.tile-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
    transition: transform 0.3s ease;
}

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

.tile-content h4 {
    color: var(--primary-blue);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.protection-tile:hover .tile-content h4 {
    color: var(--light-blue);
}

.tile-content p {
    color: var(--arctic-gray);
    line-height: 1.6;
    font-size: 0.95rem;
}

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

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

/* Mobile Responsive for Protection Grid */
@media (max-width: 768px) {
    .multi-layer-protection {
        padding: 4rem 1rem;
    }
    
    .protection-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .protection-tile {
        padding: 1.5rem;
    }
    
    .protection-tile:nth-child(odd),
    .protection-tile:nth-child(even) {
        animation: slideInUp 0.6s ease forwards;
    }
    
    .tile-icon {
        font-size: 2.5rem;
    }
    
    .tile-content h4 {
        font-size: 1.2rem;
    }
}

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

/* CTA Section */
.cta {
    background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
    color: white;
    padding: 6rem 2rem;
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

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

.btn-cta {
    background: white;
    color: var(--primary-blue);
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.btn-docs {
    background: transparent;
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border: 2px solid white;
    transition: all 0.3s ease;
}

.btn-docs:hover {
    background: white;
    color: var(--primary-blue);
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: #0f172a;
    color: white;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: white;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--accent-cyan);
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* Responsive Design */
/* iOS Safari and Mobile Webkit Fixes */
.btn-hero, .btn-secondary, .btn-primary, .btn-cta, .btn-docs {
    -webkit-appearance: none;
    -webkit-tap-highlight-color: transparent;
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* Touch-friendly tap targets for mobile */
@media (max-width: 768px) {
    .btn-hero, .btn-secondary, .btn-primary, .btn-cta, .btn-docs {
        min-height: 44px;
        padding: 1rem 2rem;
        width: auto;
        max-width: 300px;
    }
    
    .nav-links a {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0.5rem 1rem;
    }
}

/* Fix for iOS viewport units and backdrop filters */
@supports (-webkit-touch-callout: none) {
    .hero {
        min-height: -webkit-fill-available;
    }
    
    .attack-demo {
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 4rem 1rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .nav {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }
    
    .nav-links {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .arch-layer {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons,
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        width: 100%;
    }
    
    /* Improved touch scrolling for iOS */
    .flow-diagram,
    .security-content {
        -webkit-overflow-scrolling: touch;
    }
    
    /* Better spacing for mobile */
    .section-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .container {
        padding: 0 15px;
    }
}

/* Traffic Flow Section */
.traffic-flow {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--snow-white) 0%, var(--frost-white) 100%);
    position: relative;
}

.traffic-flow::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-cyan), transparent);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--arctic-gray);
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.flow-diagram {
    display: grid;
    grid-template-columns: repeat(11, 1fr);
    gap: 1rem;
    align-items: center;
    margin-bottom: 4rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    /* Chrome grid fixes */
    grid-template-rows: auto;
    place-items: center;
}

.flow-step {
    grid-column: span 2;
    background: white;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(30, 58, 138, 0.1);
    border: 2px solid var(--ice-blue);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    /* Chrome rendering improvements */
    transform: translateZ(0);
    backface-visibility: hidden;
}

.flow-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--light-blue), var(--accent-cyan));
}

.flow-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(30, 58, 138, 0.2);
    border-color: var(--light-blue);
}

.flow-number {
    position: absolute;
    top: -10px;
    left: 20px;
    background: var(--light-blue);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

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

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

.flow-step h4,
.flow-content h4 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.flow-step p,
.flow-content p {
    color: var(--arctic-gray);
    font-size: 0.9rem;
    line-height: 1.4;
}

.flow-arrow {
    font-size: 1.8rem;
    color: var(--light-blue);
    font-weight: bold;
    text-align: center;
    animation: pulse 2s infinite;
}

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

.flow-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.flow-stat {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.08);
    border: 1px solid var(--ice-blue);
}

.flow-stat strong {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.flow-stat span {
    color: var(--arctic-gray);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Mobile Responsive for Flow Diagram */
@media (max-width: 1200px) {
    .flow-diagram {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    
    .flow-step {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .flow-arrow {
        transform: rotate(90deg);
        margin: 0.5rem 0;
    }
}

@media (max-width: 768px) {
    .traffic-flow {
        padding: 4rem 1rem;
    }
    
    .flow-step {
        padding: 1.5rem 1rem;
    }
    
    .flow-icon {
        font-size: 2rem;
    }
    
    .flow-stat {
        padding: 1.5rem;
    }
    
    .flow-stat strong {
        font-size: 1.5rem;
    }
}

/* Security Shield Section */
.security-shield {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--deep-blue) 0%, #0f172a 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.security-shield::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(6, 182, 212, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.security-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.security-text h2 {
    color: white;
    margin-bottom: 1rem;
}

.security-text .section-subtitle {
    color: var(--ice-blue);
    margin-bottom: 3rem;
}

.threat-scenarios {
    margin-bottom: 3rem;
}

.threat-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.threat-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-cyan);
    transform: translateX(5px);
}

.threat-icon {
    font-size: 2rem;
    min-width: 50px;
}

.threat-content h4 {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.threat-content p {
    color: var(--ice-blue);
    font-size: 0.9rem;
    line-height: 1.4;
}

.protection-icon {
    font-size: 1.5rem;
    color: var(--success-green);
    min-width: 30px;
}

.security-benefits h3 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

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

.benefits-list li {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--ice-blue);
    line-height: 1.5;
}

.benefits-list li:last-child {
    border-bottom: none;
}

.benefits-list strong {
    color: white;
    font-weight: 600;
}

.attack-demo {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.demo-header {
    text-align: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.demo-header h4 {
    color: #ef4444;
    font-size: 1.1rem;
    font-weight: 600;
}

.demo-code {
    font-family: var(--code-font);
    font-size: 0.9rem;
}

.code-line {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    margin-bottom: 0.5rem;
    border-radius: 8px;
    border-left: 4px solid transparent;
}

.code-line.attacker {
    background: rgba(239, 68, 68, 0.1);
    border-left-color: #ef4444;
}

.code-line.blocked {
    background: rgba(251, 146, 60, 0.1);
    border-left-color: #f97316;
}

.code-line.safe {
    background: rgba(16, 185, 129, 0.1);
    border-left-color: var(--success-green);
}

.code-line .label {
    min-width: 80px;
    font-weight: 600;
    color: white;
}

.code-line.attacker .label {
    color: #fca5a5;
}

.code-line.blocked .label {
    color: #fed7aa;
}

.code-line.safe .label {
    color: #86efac;
}

.code-line code {
    color: var(--ice-blue);
    background: none;
    padding: 0;
    font-size: inherit;
}

.protection-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.protection-stat {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.protection-stat:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-cyan);
}

.stat-icon {
    font-size: 2rem;
    min-width: 50px;
}

.stat-data strong {
    display: block;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.stat-data span {
    color: var(--ice-blue);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

@media (max-width: 768px) {
    .security-shield {
        padding: 4rem 1rem;
    }
    
    .threat-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        -webkit-tap-highlight-color: transparent;
    }
    
    .attack-demo {
        padding: 1.5rem;
        /* Ensure backdrop filter works on iOS */
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }
    
    .code-line {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        /* Better text rendering on iOS */
        -webkit-font-smoothing: antialiased;
    }
    
    .code-line .label {
        min-width: auto;
    }
    
    /* Improve scrolling performance on iOS */
    .security-content {
        -webkit-overflow-scrolling: touch;
        transform: translate3d(0, 0, 0);
    }
}

/* Pricing Section */
.pricing {
    padding: 6rem 1rem;
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--darker-blue) 100%);
    position: relative;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(135, 206, 235, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

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

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-card {
    background: rgba(135, 206, 235, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(135, 206, 235, 0.3);
    border-radius: 1rem;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 8px 16px rgba(135, 206, 235, 0.1);
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: var(--ice-blue);
    box-shadow: 0 20px 40px rgba(135, 206, 235, 0.2);
}

.pricing-card.featured {
    border: 2px solid var(--ice-blue);
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(135, 206, 235, 0.3);
}

.pricing-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(45deg, var(--ice-blue), #4fc3f7);
    color: var(--dark-blue);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
    border-bottom: 2px solid rgba(135, 206, 235, 0.3);
    padding-bottom: 1.5rem;
}

.pricing-header h3 {
    color: var(--dark-blue);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.price {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

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

.price-period {
    color: var(--dark-blue);
    opacity: 0.8;
    font-size: 0.9rem;
}

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

.pricing-features li {
    color: var(--dark-blue);
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(135, 206, 235, 0.2);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
}

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

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

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

.btn-pricing.community {
    background: rgba(135, 206, 235, 0.2);
    color: var(--dark-blue);
    border-color: rgba(135, 206, 235, 0.4);
    font-weight: 700;
}

.btn-pricing.community:hover {
    background: rgba(135, 206, 235, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(135, 206, 235, 0.3);
}

.btn-pricing.enterprise {
    background: linear-gradient(45deg, var(--ice-blue), #4fc3f7);
    color: var(--dark-blue);
    font-weight: 700;
}

.btn-pricing.enterprise:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(135, 206, 235, 0.4);
}

.btn-pricing.embedded {
    background: linear-gradient(45deg, #9c27b0, #673ab7);
    color: white;
    font-weight: 700;
}

.btn-pricing.embedded:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(156, 39, 176, 0.4);
}

.pricing-card.embedded:hover {
    border-color: #9c27b0;
    box-shadow: 0 20px 40px rgba(156, 39, 176, 0.2);
}

.pricing-faq {
    margin-top: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-faq h3 {
    color: var(--deep-blue);
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
}

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

.faq-item {
    background: rgba(135, 206, 235, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 2rem;
    border: 2px solid rgba(135, 206, 235, 0.3);
    box-shadow: 0 8px 16px rgba(135, 206, 235, 0.1);
    transition: all 0.3s ease;
}

.faq-item h4 {
    color: var(--dark-blue);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 700;
}

.faq-item p {
    color: var(--dark-blue);
    opacity: 0.9;
    line-height: 1.6;
    margin: 0;
}

.faq-item:hover {
    transform: translateY(-4px);
    border-color: var(--ice-blue);
    box-shadow: 0 16px 32px rgba(135, 206, 235, 0.2);
}

/* Use Cases Section */
.use-cases {
    padding: 6rem 1rem;
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--darker-blue) 100%);
    position: relative;
}

.use-cases::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(135, 206, 235, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.use-cases .container {
    position: relative;
    z-index: 1;
}

.use-cases h2 {
    color: white;
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.use-cases .section-subtitle {
    color: var(--ice-blue);
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

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

.use-case-card {
    background: rgba(135, 206, 235, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(135, 206, 235, 0.3);
    border-radius: 1rem;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 8px 16px rgba(135, 206, 235, 0.1);
}

.use-case-card:hover {
    transform: translateY(-8px);
    border-color: var(--ice-blue);
    box-shadow: 0 20px 40px rgba(135, 206, 235, 0.2);
}

.use-case-card.featured {
    border: 2px solid var(--ice-blue);
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(135, 206, 235, 0.3);
}

.use-case-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(45deg, var(--success-green), #66bb6a);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

.use-case-card h3 {
    color: var(--dark-blue);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

.use-case-card p {
    color: var(--dark-blue);
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: center;
}

.use-case-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 1rem;
}

.use-case-tag {
    background: rgba(135, 206, 235, 0.3);
    color: var(--dark-blue);
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(135, 206, 235, 0.5);
}

.revenue-highlight {
    background: rgba(76, 175, 80, 0.15);
    border: 2px solid rgba(76, 175, 80, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 1.5rem;
    text-align: center;
}

.revenue-highlight h4 {
    color: var(--success-green);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.revenue-highlight p {
    color: var(--dark-blue);
    font-weight: 600;
    margin: 0;
    font-size: 0.95rem;
}

/* Pricing Hero */
.pricing-hero {
    padding: 8rem 1rem 4rem 1rem;
}

.pricing-hero .hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.pricing-hero .hero-description {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Feature Comparison Table */
.features-comparison {
    padding: 6rem 1rem;
    background: var(--dark-blue);
}

.comparison-table {
    background: rgba(135, 206, 235, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    overflow: hidden;
    margin-top: 3rem;
    border: 2px solid rgba(135, 206, 235, 0.3);
    box-shadow: 0 8px 16px rgba(135, 206, 235, 0.1);
}

.comparison-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    background: rgba(135, 206, 235, 0.25);
    padding: 2rem 1rem;
    border-bottom: 2px solid rgba(135, 206, 235, 0.3);
    gap: 1rem;
}

.feature-column h3,
.plan-column h3 {
    color: var(--dark-blue);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.plan-price {
    color: var(--dark-blue);
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
}

.plan-price span {
    font-size: 0.8rem;
    font-weight: 600;
}

.plan-column p {
    color: var(--dark-blue);
    opacity: 0.8;
    font-size: 0.9rem;
}

.feature-group {
    grid-column: 1 / -1;
    background: rgba(135, 206, 235, 0.2);
    padding: 1rem;
    border-bottom: 1px solid rgba(135, 206, 235, 0.3);
}

.feature-group h4 {
    color: var(--dark-blue);
    font-weight: 700;
    font-size: 1.1rem;
    margin: 0;
}

.feature-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    padding: 1rem;
    border-bottom: 1px solid rgba(135, 206, 235, 0.2);
    gap: 1rem;
    align-items: center;
}

.feature-row:hover {
    background: rgba(135, 206, 235, 0.1);
}

.feature-name {
    color: var(--dark-blue);
    font-size: 0.95rem;
    font-weight: 500;
}

.feature-check {
    text-align: center;
    font-size: 1.1rem;
}

.feature-check.included {
    color: var(--success-green);
}

.feature-check.not-included {
    color: #ff5252;
    opacity: 0.7;
}

.feature-check.limited {
    color: var(--dark-blue);
    font-size: 0.9rem;
    font-weight: 600;
}

.feature-cta-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    padding: 2rem 1rem;
    background: rgba(135, 206, 235, 0.25);
    border-top: 2px solid rgba(135, 206, 235, 0.3);
    gap: 1rem;
}

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

.feature-cta .btn-pricing {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* Contact Section */
.contact {
    padding: 6rem 1rem;
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--darker-blue) 100%);
    text-align: center;
}

.contact h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact p {
    color: var(--ice-blue);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-buttons .btn-primary,
.contact-buttons .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-buttons .btn-primary {
    background: linear-gradient(45deg, var(--ice-blue), #4fc3f7);
    color: var(--dark-blue);
}

.contact-buttons .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(135, 206, 235, 0.4);
}

.contact-buttons .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.contact-buttons .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: #0f172a;
    padding: 3rem 1rem 1rem 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-section p {
    color: var(--ice-blue);
    line-height: 1.6;
}

.footer-section a {
    display: block;
    color: var(--ice-blue);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: white;
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* Pricing Mobile Responsive */
@media (max-width: 768px) {
    .pricing {
        padding: 4rem 1rem;
    }
    
    .pricing-hero .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .comparison-header,
    .feature-row,
    .feature-cta-row {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .comparison-header {
        text-align: center;
    }
    
    .plan-column {
        border-top: 1px solid rgba(135, 206, 235, 0.3);
        padding-top: 1rem;
        margin-top: 1rem;
    }
    
    .plan-column:first-of-type {
        border-top: none;
        margin-top: 0;
        padding-top: 0;
    }
    
    .feature-row {
        text-align: center;
        padding: 0.75rem;
    }
    
    .feature-name {
        font-weight: 600;
        margin-bottom: 0.5rem;
    }
    
    .feature-check {
        margin: 0.25rem 0;
    }
    
    .feature-cta .btn-pricing {
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-buttons .btn-primary,
    .contact-buttons .btn-secondary {
        width: 200px;
        justify-content: center;
    }
    
    .use-cases {
        padding: 4rem 1rem;
    }
    
    .use-cases h2 {
        font-size: 2rem;
    }
    
    .use-cases-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .use-case-card.featured {
        transform: none;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pricing-card.featured {
        transform: none;
        order: -1;
    }
    
    .price-amount {
        font-size: 2.5rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}