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

html {
    position: relative !important;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
    overflow-x: hidden;
    position: relative !important;
}

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

/* Navigation */
.navbar {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px) !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important;
    z-index: 10000 !important;
    transition: all 0.3s ease !important;
    visibility: visible !important;
    opacity: 1 !important;
    display: block !important;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    padding: 0.75rem 20px;
    min-width: 0;
    flex-wrap: nowrap;
}

.nav-logo h2 {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-logo svg {
    height: 40px;
    width: auto;
    display: block;
    transition: transform 0.2s ease;
}

.nav-logo .logo-image {
    height: 40px;
    width: auto;
    display: block;
    transition: transform 0.2s ease;
}

.nav-logo a:hover svg,
.nav-logo a:hover .logo-image {
    transform: scale(1.05);
}

.nav-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

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

.nav-dropdown {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: #4a5568;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #667eea;
}

.dropdown-content {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: white;
    min-width: 200px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 1rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.dropdown-content.multi-column {
    min-width: 600px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding: 1.5rem;
}

.dropdown-column {
    padding: 0 1.5rem;
}

.dropdown-column h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #667eea;
    margin: 0 0 0.75rem 0;
    padding: 0 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dropdown-column a {
    display: block;
    padding: 0.6rem 1.5rem;
    color: #4a5568;
    text-decoration: none;
    transition: background-color 0.3s ease;
    border-radius: 6px;
    margin: 0.25rem 0;
    font-size: 0.95rem;
    white-space: nowrap;
}

.dropdown-column a:hover {
    background-color: #f7fafc;
    color: #667eea;
}

.nav-dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-section {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.dropdown-section:last-child {
    border-bottom: none;
}

.dropdown-section h4 {
    font-size: 0.8rem;
    font-weight: 600;
    color: #667eea;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0 1rem 0.5rem 1rem;
    padding-bottom: 0.25rem;
    border-bottom: 1px solid #e2e8f0;
}

.dropdown-section a {
    display: block;
    padding: 0.5rem 1rem;
    color: #4a5568;
    text-decoration: none;
    transition: background-color 0.3s ease;
    font-size: 0.9rem;
}

.dropdown-section a:hover {
    background-color: #f7fafc;
    color: #667eea;
}

/* Regular dropdown links (for Solutions, etc.) */
.dropdown-content:not(.multi-column) a {
    display: block;
    padding: 0.5rem 1rem;
    color: #4a5568;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.dropdown-content:not(.multi-column) a:hover {
    background-color: #f7fafc;
    color: #667eea;
}

.nav-buttons {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
    min-width: fit-content;
    margin-left: auto;
}

.btn-primary, .btn-secondary, .btn-enterprise {
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
    min-width: fit-content;
    box-sizing: border-box;
    border: 1px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.25);
}

.btn-primary:focus,
.btn-primary:active,
.btn-primary:visited {
    outline: none;
    box-sizing: border-box;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
}

.btn-primary:focus {
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.3);
    transform: translateY(-2px);
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.2);
}

.btn-secondary {
    background: #f7fafc;
    color: #667eea;
    border: 1px solid #667eea;
}

.btn-secondary:hover {
    background: #667eea;
    border-color: #667eea;
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.25);
}

.btn-secondary:focus,
.btn-secondary:active,
.btn-secondary:visited {
    outline: none;
    box-sizing: border-box;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
}

.btn-secondary:focus {
    background: #667eea;
    border-color: #667eea;
    color: white;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.3);
}

.btn-secondary:active {
    background: #5a67d8;
    border-color: #5a67d8;
    color: white;
    transform: translateY(0);
}

.btn-enterprise {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
    border: none;
    position: relative;
    overflow: hidden;
}

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

.btn-enterprise:hover::before {
    left: 100%;
}

.btn-enterprise:hover {
    background: linear-gradient(135deg, #334155 0%, #475569 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(30, 41, 59, 0.3);
}

.btn-enterprise:focus,
.btn-enterprise:active,
.btn-enterprise:visited {
    outline: none;
    box-sizing: border-box;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
    color: white;
}

.btn-enterprise:focus {
    box-shadow: 0 0 0 3px rgba(30, 41, 59, 0.3);
    transform: translateY(-2px);
}

.btn-enterprise:active {
    transform: translateY(0);
    box-shadow: 0 5px 15px rgba(30, 41, 59, 0.2);
}

/* Specific styling for Contact Us button to prevent text wrapping */
.nav-buttons .btn-secondary {
    min-width: 110px;
    text-align: center;
    justify-content: center;
}

.btn-secondary i {
    margin-right: 8px;
}

/* Back Button Styles */
.back-button-container {
    margin-bottom: 30px;
}

.back-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
    border: 2px solid rgba(102, 126, 234, 0.2);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.back-button:hover {
    background: rgba(102, 126, 234, 0.15);
    border-color: rgba(102, 126, 234, 0.4);
    color: #5a67d8;
    transform: translateX(-3px);
}

.back-button i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.back-button:hover i {
    transform: translateX(-2px);
}

.btn-primary.large, .btn-secondary.large, .btn-enterprise.large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
}

.hamburger:hover {
    background-color: rgba(0,0,0,0.05);
}

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

/* Hero Section */
.hero {
    padding: 100px 0 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
    min-height: 300px;
    display: flex;
    align-items: center;
}

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

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease;
}

.hero-title {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: white;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.gradient-text {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease 0.6s both;
}

/* Spectacular Hero Text Styling */
.hero-text-stack {
    margin-bottom: 2rem;
}

.hero-main-title {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.title-line-1 {
    display: block;
    color: white;
    font-size: 2rem;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
}

.title-line-2 {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, #ffffff 0%, #f0f8ff 50%, #e6f3ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
}

.hero-tagline {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.8s ease 0.3s both;
}

.tagline-intro {
    font-size: 1.2rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.05em;
    margin-bottom: 0.3rem;
    font-style: italic;
}

.tagline-highlight {
    font-size: 1.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    letter-spacing: 0.02em;
}

.tagline-text {
    font-size: 1.3rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    font-style: italic;
}

.hero-description {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    max-width: 900px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.description-line {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.2rem;
    line-height: 1.4;
}

.description-highlight {
    font-weight: 600;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.2rem 0.8rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.description-action {
    font-weight: 600;
    color: #e6f3ff;
    text-decoration: underline;
    text-decoration-color: rgba(230, 243, 255, 0.4);
    text-underline-offset: 3px;
}

.description-text {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
}

/* Responsive adjustments for spectacular hero */
@media (max-width: 768px) {
    .hero-main-title {
        font-size: 2.8rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .title-line-1 {
        font-size: 1.75rem;
    }
    
    .title-line-2 {
        font-size: 1.75rem;
    }
    
    .tagline-intro {
        font-size: 1rem;
    }
    
    .tagline-highlight {
        font-size: 1.4rem;
    }
    
    .tagline-text {
        font-size: 1.1rem;
    }
    
    .description-line {
        font-size: 1rem;
        flex-direction: column;
        text-align: center;
    }
    
    .description-highlight {
        margin: 0.2rem 0;
    }
}

/* AI Ops Stack Section - Simplified */
.ai-ops-stack {
    padding: 80px 0;
    background: #f8fafc;
    position: relative;
}

.stack-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.stack-header h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stack-header p {
    font-size: 1.25rem;
    color: #4a5568;
    max-width: 600px;
    margin: 0 auto;
}

.stack-visualization {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    z-index: 2;
}

.stack-layers {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
}

.stack-layer {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    animation: slideInUp 0.8s ease forwards;
}

.stack-layer::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.8s ease;
}

.stack-layer:hover::before {
    left: 100%;
}

.stack-layer:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Layer-specific colors */
.observability-layer {
    border-left: 4px solid #10b981;
    animation-delay: 0.1s;
}

.infrastructure-layer {
    border-left: 4px solid #3b82f6;
    animation-delay: 0.2s;
}

.deployment-layer {
    border-left: 4px solid #8b5cf6;
    animation-delay: 0.3s;
}

.build-layer {
    border-left: 4px solid #f59e0b;
    animation-delay: 0.4s;
}

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

.layer-icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    color: white;
}

.layer-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a202c;
    margin: 0;
}

.layer-header p {
    font-size: 1rem;
    color: #6b7280;
    margin: 0;
}

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

.option-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.option-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.1), transparent);
    transition: left 0.5s ease;
}

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

.option-card:hover {
    transform: translateY(-2px);
    border-color: #667eea;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.15);
}

.option-card.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: #667eea;
    color: white;
    transform: scale(1.02);
}

.option-card.active span {
    color: white;
    font-weight: 600;
}

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

.custom-logo {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.75rem;
}

.option-card.active .custom-logo {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.option-card span {
    font-weight: 500;
    color: #374151;
    font-size: 0.9rem;
}

.stack-flow {
    text-align: center;
    margin: 2rem 0;
    position: relative;
}

.flow-arrow {
    font-size: 2rem;
    color: #667eea;
    animation: bounce 2s infinite;
}

.flow-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #4a5568;
    margin-top: 0.5rem;
}

.stack-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.benefit-item {
    text-align: center;
    padding: 2rem 1rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

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

.benefit-item h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 0.5rem;
}

.benefit-item p {
    color: #6b7280;
    font-size: 0.9rem;
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Auto-cycling animation for options */
.stack-layer .option-card {
    animation: optionCycle 12s infinite;
}

.stack-layer .option-card:nth-child(1) { animation-delay: 0s; }
.stack-layer .option-card:nth-child(2) { animation-delay: 3s; }
.stack-layer .option-card:nth-child(3) { animation-delay: 6s; }
.stack-layer .option-card:nth-child(4) { animation-delay: 9s; }

@keyframes optionCycle {
    0%, 20% {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        border-color: #667eea;
        color: white;
        transform: scale(1.02);
    }
    25%, 100% {
        background: #f8fafc;
        border-color: #e2e8f0;
        color: #374151;
        transform: scale(1);
    }
}

/* Responsive design */
@media (max-width: 768px) {
    .stack-header h2 {
        font-size: 2rem;
    }
    
    .stack-layer {
        padding: 1.5rem;
    }
    
    .layer-header {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .layer-options {
        grid-template-columns: 1fr;
    }
    
    .stack-benefits {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .benefit-item {
        padding: 1.5rem 1rem;
    }
}

.hero-video {
    animation: fadeInUp 0.8s ease 0.8s both;
}

.video-placeholder {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 3rem;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.video-placeholder:hover {
    transform: scale(1.02);
}

.video-placeholder i {
    font-size: 3rem;
}

/* Trusted By Section */
.trusted-by {
    padding: 60px 0;
    background: white;
    text-align: center;
}

.trusted-text {
    font-size: 1.1rem;
    color: #718096;
    margin-bottom: 2rem;
}

.logos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    align-items: center;
}

.logo-item {
    font-size: 1.5rem;
    font-weight: 600;
    color: #a0aec0;
    transition: color 0.3s ease;
}

.logo-item:hover {
    color: #667eea;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: #f7fafc;
}

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

.section-header h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a202c;
}

.section-header p {
    font-size: 1.2rem;
    color: #4a5568;
}

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

.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

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

.feature-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a202c;
}

.feature-card p {
    color: #4a5568;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.learn-more {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.learn-more:hover {
    gap: 1rem;
}

/* Products Section */
.products-section {
    padding: 80px 0;
    background: white;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.product-card {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.15);
    border-color: #667eea;
    background: white;
}

.product-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
    transition: all 0.3s ease;
}

.product-card:hover .product-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.3);
}

.product-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 0.75rem;
}

.product-card p {
    color: #64748b;
    line-height: 1.5;
    margin-bottom: 1rem;
}

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

.feature-tag {
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

.product-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.product-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.3);
}

/* Deploy Section */
.deploy-section {
    padding: 80px 0;
    background: white;
}

.deploy-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.deploy-item {
    padding: 2rem;
    border-left: 4px solid #667eea;
    background: #f7fafc;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.deploy-item:hover {
    transform: translateX(5px);
}

.deploy-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a202c;
}

.deploy-item p {
    color: #4a5568;
    line-height: 1.6;
}

/* Environment Section */
.environment-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

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

.environment-text h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.environment-text h3 {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.environment-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.cloud-diagram {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.cloud-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.cloud-item:hover {
    transform: scale(1.05);
}

.cloud-item i {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

/* Enterprise Section */
.enterprise-section {
    padding: 80px 0;
    background: #f7fafc;
}

.enterprise-content {
    text-align: center;
}

.enterprise-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a202c;
}

.enterprise-subtitle {
    font-size: 1.2rem;
    color: #4a5568;
    margin-bottom: 3rem;
}

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

.enterprise-feature {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.enterprise-feature h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a202c;
}

.enterprise-feature p {
    color: #4a5568;
    line-height: 1.6;
}

/* Observability Section */
.observability-section {
    padding: 80px 0;
    background: white;
}

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

.obs-card {
    background: #f7fafc;
    padding: 2.5rem;
    border-radius: 12px;
    border-top: 4px solid #667eea;
    transition: transform 0.3s ease;
}

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

.obs-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a202c;
}

.obs-card p {
    color: #4a5568;
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: #f7fafc;
}

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

.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

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

.testimonial-card .metric {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    text-align: left;
    padding: 0;
    min-width: auto;
    border-radius: 0;
}

.testimonial-card .metric-desc {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 2rem;
}

.testimonial-author {
    margin-bottom: 1rem;
}

.testimonial-author strong {
    display: block;
    font-weight: 600;
    color: #1a202c;
}

.testimonial-author span {
    color: #718096;
    font-size: 0.9rem;
}

.testimonial-text {
    color: #4a5568;
    font-style: italic;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    color: white;
    text-align: center;
}

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

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

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

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

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

.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

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

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

.footer-section ul li a {
    color: #a0aec0;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-subsection {
    margin-bottom: 1.5rem;
}

.footer-subsection:last-child {
    margin-bottom: 0;
}

.footer-subsection h5 {
    font-size: 0.95rem;
    font-weight: 600;
    color: #e2e8f0;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Anchor link scroll offset for fixed navbar */
.integration-section,
.solution-card {
    scroll-margin-top: 100px;
}

/* Footer responsive - keep single row as much as possible */
@media (max-width: 1200px) {
    .footer-content {
        grid-template-columns: 1.8fr 0.8fr 0.8fr 0.8fr 0.8fr;
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 1rem;
    }
    
    .footer-section:first-child {
        grid-column: 1 / -1;
        margin-bottom: 1rem;
    }
}

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

.newsletter-form input {
    flex: 1;
    padding: 0.75rem;
    border: 1px solid #4a5568;
    border-radius: 6px;
    background: #2d3748;
    color: white;
}

.newsletter-form button {
    padding: 0.75rem 1.5rem;
    background: #667eea;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.newsletter-form button:hover {
    background: #5a67d8;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid #4a5568;
}

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

.social-links a {
    color: #a0aec0;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: white;
}

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

/* Additional Styles for Product Pages */

/* Architecture Diagram */
.architecture-diagram {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.arch-component {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    flex: 1;
    min-width: 200px;
    max-width: 250px;
}

.arch-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.arch-icon i {
    font-size: 1.5rem;
    color: white;
}

.arch-arrow {
    font-size: 2rem;
    color: #667eea;
    font-weight: bold;
}

/* Feature Specs */
.feature-specs {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
}

.feature-specs span {
    font-size: 0.9rem;
    color: #667eea;
    font-weight: 500;
}

/* Tech Specs Grid */
.tech-specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.spec-category {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.spec-category h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a202c;
}

.spec-category ul {
    list-style: none;
    padding: 0;
}

.spec-category ul li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e2e8f0;
    color: #4a5568;
}

.spec-category ul li:last-child {
    border-bottom: none;
}

/* Code Block */
.code-example-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.code-block {
    background: #1a202c;
    border-radius: 12px;
    padding: 2rem;
    overflow-x: auto;
}

.code-block pre {
    margin: 0;
    color: #e2e8f0;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    font-size: 0.9rem;
    line-height: 1.5;
}

.code-block code {
    color: #e2e8f0;
}

/* Performance Details */
.performance-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
}

.performance-details span {
    font-size: 0.9rem;
    color: #4a5568;
}

/* Use Cases Grid */
.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.use-case-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.use-case-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.use-case-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.use-case-icon i {
    font-size: 1.5rem;
    color: white;
}

.use-case-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
}

.use-case-features span {
    font-size: 0.9rem;
    color: #667eea;
    font-weight: 500;
}

/* Architecture Content */
.architecture-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
}

.architecture-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.arch-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
}

.arch-feature i {
    color: rgba(255, 255, 255, 0.8);
}

/* Architecture Flow */
.arch-flow {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.arch-step {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    text-align: center;
}

.step-number {
    width: 40px;
    height: 40px;
    background: white;
    color: #667eea;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin: 0 auto 1rem;
}

.arch-step h4 {
    color: white;
    margin-bottom: 0.5rem;
}

.arch-step p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.arch-arrow {
    text-align: center;
    color: white;
    font-size: 1.5rem;
}

/* Tech List */
.tech-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
}

.tech-list span {
    font-size: 0.9rem;
    color: #667eea;
    font-weight: 500;
}

/* Tech Capabilities */
.tech-capabilities {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.capability-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #1a202c;
}

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

.capability-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.capability-item:hover {
    transform: translateY(-2px);
}

.capability-item i {
    font-size: 1.2rem;
    color: #667eea;
}

.capability-item span {
    font-weight: 500;
    color: #4a5568;
}

/* Bot Builder Section */
.bot-builder-section {
    padding: 80px 0;
    background: #f7fafc;
}

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

.builder-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.builder-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.builder-feature i {
    color: #667eea;
    font-size: 1.1rem;
}

.builder-feature span {
    font-weight: 500;
    color: #4a5568;
}

/* Demo Window */
.demo-window {
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.demo-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1rem;
    text-align: center;
}

.demo-title {
    font-weight: 600;
}

.demo-content {
    padding: 2rem;
}

.demo-step {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    margin-bottom: 0.5rem;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.demo-step.active {
    background: #f7fafc;
}

.step-icon {
    width: 30px;
    height: 30px;
    background: #667eea;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
}

.demo-preview {
    margin-top: 2rem;
    padding: 1.5rem;
    background: #f7fafc;
    border-radius: 8px;
    border-left: 4px solid #667eea;
}

/* Consistent Hero Section Styles */
.hero, 
.contact-hero, 
.company-hero, 
.product-hero,
.solutions-hero,
.hero-section {
    padding: 100px 0 40px;
    text-align: center;
    min-height: 300px;
    display: flex;
    align-items: center;
}


.contact-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.company-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.product-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.solutions-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.hero-section {
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
}

/* Hero content styling */
.hero .container,
.contact-hero .container,
.company-hero .container,
.product-hero .container,
.solutions-hero .container,
.hero-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero h1,
.contact-hero h1,
.company-hero h1,
.product-hero h1,
.solutions-hero h1,
.hero-section h1 {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero p,
.contact-hero p,
.company-hero p,
.product-hero p,
.solutions-hero p,
.hero-section p {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Hero buttons styling */
.hero .hero-buttons,
.contact-hero .hero-buttons,
.company-hero .hero-buttons,
.product-hero .hero-buttons,
.solutions-hero .hero-buttons,
.hero-section .hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

/* Demo Video Section */
.demo-video-section {
    padding: 100px 0 40px;
    background: #f8f9fa;
    min-height: 100vh;
}

.demo-video-header {
    text-align: center;
    margin-bottom: 3rem;
}

.demo-video-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.demo-video-header p {
    font-size: 1.1rem;
    color: #4a5568;
    max-width: 600px;
    margin: 0 auto;
}

.back-button-container {
    margin-bottom: 2rem;
}

.back-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.back-button:hover {
    color: #5a67d8;
}

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

.restart-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.restart-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.overview-section {
    padding: 80px 0;
    background: #f8fafc;
}

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

.comparison-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.comparison-card.clickable-card {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    display: block;
}

.comparison-card.clickable-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.2);
    text-decoration: none;
    color: inherit;
}

.comparison-card.clickable-card:hover .card-icon {
    transform: scale(1.05);
}

.comparison-card.clickable-card:hover h3 {
    color: #667eea;
}

/* Card actions */
.card-actions {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
}

.card-actions .btn-primary,
.card-actions .btn-secondary {
    width: 100%;
    text-align: center;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Detail header with action button */
.detail-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 2rem;
}

.header-content {
    flex: 1;
}

.header-action {
    flex-shrink: 0;
    align-self: center;
}

.header-action .btn-primary,
.header-action .btn-secondary {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
}

/* CTA Box Styles */
.cta-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(102, 126, 234, 0.3);
    min-width: 280px;
    max-width: 320px;
}

.cta-box.secondary {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    box-shadow: 0 8px 32px rgba(79, 172, 254, 0.3);
}

.cta-box h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
}

.cta-box p {
    margin: 0 0 1.5rem 0;
    font-size: 0.9rem;
    opacity: 0.9;
    line-height: 1.4;
}

.cta-box .btn-primary.large,
.cta-box .btn-secondary.large {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 12px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.cta-box .btn-primary.large:hover,
.cta-box .btn-secondary.large:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

/* Reverse header for RAG Builder */
.reverse-header {
    flex-direction: row-reverse;
}

@media (max-width: 768px) {
    .detail-header {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }
    
    .reverse-header {
        flex-direction: column;
    }
    
    .header-action {
        align-self: stretch;
    }
    
    .cta-box {
        min-width: auto;
        max-width: none;
    }
    
    .header-action .btn-primary,
    .header-action .btn-secondary {
        width: 100%;
        text-align: center;
    }
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.card-subtitle {
    color: #718096;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.product-detail-section {
    padding: 80px 0;
}

.alt-bg {
    background: #f8fafc;
}

.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.product-detail.reverse {
    grid-template-columns: 1fr 1fr;
}

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

.detail-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1rem;
}

.detail-subtitle {
    color: #718096;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.detail-info h3 {
    color: #2d3748;
    margin: 2rem 0 1rem 0;
    font-size: 1.3rem;
}

.workflow-steps {
    margin: 1.5rem 0;
}

.workflow-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #f7fafc;
    border-radius: 8px;
}

.step-number {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
}

.step-content h4 {
    margin: 0 0 0.5rem 0;
    color: #2d3748;
}

.step-content p {
    margin: 0;
    color: #4a5568;
}

.use-cases {
    margin: 1.5rem 0;
}

.use-case {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
}

.use-case i {
    color: #667eea;
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.use-case h4 {
    margin: 0 0 0.5rem 0;
    color: #2d3748;
}

.use-case p {
    margin: 0;
    color: #4a5568;
}

.rag-diagram, .serving-diagram {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.diagram-title {
    text-align: center;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #2d3748;
}

.rag-flow {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.flow-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: #f7fafc;
    border-radius: 8px;
    min-width: 100px;
    text-align: center;
}

.flow-item i {
    color: #667eea;
    font-size: 1.5rem;
}

.flow-arrow {
    font-size: 1.5rem;
    color: #667eea;
    font-weight: bold;
}

.serving-stack {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.stack-layer {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 8px;
    font-weight: 500;
}

.stack-layer i {
    font-size: 1.2rem;
}

.distinctions-section {
    padding: 80px 0;
    background: white;
}

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

.distinction-card {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

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

.distinction-header i {
    color: #667eea;
    font-size: 1.5rem;
}

.distinction-header h3 {
    margin: 0;
    color: #2d3748;
}

.distinction-item {
    margin-bottom: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    border-left: 4px solid #667eea;
}

.distinction-item strong {
    color: #2d3748;
}

.decision-section {
    padding: 80px 0;
    background: #f8fafc;
}

.decision-matrix {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-top: 3rem;
}

.matrix-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.matrix-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    border-bottom: 1px solid #e2e8f0;
}

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

.matrix-cell {
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 500;
}

.matrix-header .matrix-cell {
    font-weight: 600;
}

.matrix-cell.scenario {
    justify-content: flex-start;
    text-align: left;
    background: #f8fafc;
    font-weight: 500;
    color: #2d3748;
}

.matrix-cell.recommended {
    background: #e6fffa;
    color: #234e52;
}

.matrix-cell.best {
    background: #d4edda;
    color: #155724;
    font-weight: 600;
}

/* Tablet Responsive */
@media (max-width: 1024px) and (min-width: 769px) {
    .deploy-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile Responsive for Deploy and Environment Sections */
@media (max-width: 768px) {
    .deploy-section {
        padding: 60px 0;
        overflow-x: hidden;
    }
    
    .deploy-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 20px;
    }
    
    .deploy-item {
        padding: 1.5rem;
    }
    
    .deploy-item h3 {
        font-size: 1.1rem;
    }
    
    .deploy-item p {
        font-size: 0.95rem;
    }
    
    .environment-section {
        padding: 60px 0;
        overflow-x: hidden;
    }
    
    .environment-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 20px;
    }
    
    .environment-text {
        text-align: center;
    }
    
    .environment-text h2 {
        font-size: 1.75rem;
    }
    
    .environment-text h3 {
        font-size: 1.1rem;
    }
    
    .environment-text p {
        font-size: 0.95rem;
    }
    
    .cloud-diagram {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    
    .cloud-item {
        padding: 1rem;
    }
    
    .cloud-item i {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }
    
    .cloud-item span {
        font-size: 0.85rem;
    }
}

/* Desktop Navigation (default) */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-left: 3rem;
}

.hamburger {
    display: none;
}

/* Ensure hamburger is visible on mobile */
@media (max-width: 768px) {
    .hamburger {
        display: flex !important;
    }
}

/* Mobile Navigation */
@media (max-width: 768px) {
    /* Ensure navbar container positions hamburger correctly */
    .navbar,
    nav {
        position: relative;
    }
    
    /* Mobile overlay */
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background-color: white;
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        transition: left 0.3s ease-in-out;
        z-index: 1000;
        margin-left: 0;
        gap: 0;
        padding: 0;
        overflow-y: auto;
        padding-top: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    /* Mobile menu header */
    .nav-menu::before {
        content: '';
        height: 80px;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        flex-shrink: 0;
    }

    /* Close button in mobile menu */
    .nav-menu::after {
        content: '✕';
        position: absolute;
        top: 15px;
        right: 15px;
        font-size: 1.5rem;
        color: white;
        cursor: pointer;
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.3);
        transition: all 0.2s ease;
        font-weight: bold;
        border: 2px solid rgba(255, 255, 255, 0.4);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    }

    .nav-menu.active::after:hover {
        background: rgba(255, 255, 255, 0.5);
        border-color: rgba(255, 255, 255, 0.6);
        transform: scale(1.1);
    }

    .hamburger {
        display: flex;
        z-index: 1001;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        margin-left: auto;
        pointer-events: auto;
    }
    
    /* Hide hamburger when menu is open (only show circular close button) */
    .hamburger.active {
        opacity: 0;
        pointer-events: none;
    }
    
    /* Ensure nav menu has proper z-index and is clickable */
    .nav-menu {
        pointer-events: auto;
    }
    
    .nav-menu.active {
        pointer-events: auto;
    }
    
    /* Ensure dropdown links are clickable */
    .nav-dropdown,
    .nav-link,
    .dropdown-content,
    .dropdown-content a {
        pointer-events: auto;
    }
    
    /* Standardize dropdown link styling for consistency */
    .dropdown-content a {
        display: flex;
        align-items: center;
        padding: 0.75rem 2rem;
        color: #4a5568;
        text-decoration: none;
        font-size: 0.95rem;
        font-weight: 500;
        transition: all 0.2s ease;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .dropdown-content a:last-child {
        border-bottom: none;
    }
    
    .dropdown-content a:hover {
        color: #667eea;
        background: rgba(102, 126, 234, 0.08);
    }

    /* Hide desktop nav buttons on mobile */
    .nav-buttons {
        display: none;
    }

    /* Fix mobile content padding to prevent cutoff */
    .hero, 
    .contact-hero, 
    .company-hero, 
    .product-hero,
    .solutions-hero,
    .hero-section {
        padding: 120px 20px 60px !important; /* Add extra padding for mobile header */
        min-height: auto !important; /* Allow content to dictate height */
    }
    
    /* Hero content mobile adjustments */
    .hero-content {
        max-width: 100% !important;
    }
    
    .hero-badge {
        font-size: 0.85rem !important;
        padding: 0.5rem 1rem !important;
        margin-bottom: 1rem !important;
    }
    
    .hero-title {
        font-size: 1.75rem !important;
        line-height: 1.3 !important;
        margin-bottom: 1rem !important;
    }
    
    .hero-subtitle {
        font-size: 1rem !important;
        line-height: 1.6 !important;
        margin-bottom: 2rem !important;
    }
    
    /* Hero buttons - wrap horizontally on mobile */
    .hero-buttons {
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 0.75rem !important;
        margin-bottom: 2rem !important;
    }
    
    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary,
    .hero-buttons .btn-enterprise {
        flex: 0 1 auto !important;
        min-width: 140px !important;
        text-align: center !important;
        justify-content: center !important;
        padding: 0.75rem 1.25rem !important;
        font-size: 0.95rem !important;
    }
    
    /* Fix CTA section padding and spacing on mobile */
    .cta-section {
        padding: 60px 20px !important;
        margin-top: 40px;
    }
    
    .cta-content {
        max-width: 100% !important;
    }
    
    .cta-content h2 {
        font-size: 1.5rem !important;
        line-height: 1.3 !important;
        margin-bottom: 1rem !important;
    }
    
    .cta-content p {
        font-size: 1rem !important;
        line-height: 1.6 !important;
        margin-bottom: 1.5rem !important;
    }
    
    /* CTA buttons - wrap horizontally on mobile */
    .cta-buttons {
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 0.75rem !important;
    }
    
    .cta-buttons .btn-primary,
    .cta-buttons .btn-secondary,
    .cta-buttons .btn-enterprise {
        flex: 0 1 auto !important;
        min-width: 140px !important;
        text-align: center !important;
        justify-content: center !important;
        padding: 0.75rem 1.25rem !important;
        font-size: 0.95rem !important;
    }

    /* Ensure main content isn't hidden behind fixed header */
    main, .main-content {
        padding-top: 80px;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    /* Mobile navigation items */
    .nav-dropdown {
        margin: 0;
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-link {
        padding: 1.25rem 2rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        font-size: 1.1rem;
        font-weight: 500;
        color: #2d3748;
        text-decoration: none;
        transition: background-color 0.2s ease;
    }

    .nav-link:hover {
        background-color: #f7fafc;
        color: #667eea;
    }

    .nav-link i {
        color: #a0aec0;
        transition: transform 0.2s ease, color 0.2s ease;
    }

    .nav-dropdown.active .nav-link i {
        transform: rotate(180deg);
        color: #667eea;
    }

    /* Mobile dropdown behavior */
    .nav-dropdown:hover .dropdown-content {
        opacity: 0;
        visibility: hidden;
    }

    .nav-dropdown.active .dropdown-content {
        display: block !important;
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateY(0) !important;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05) !important;
        background: #f8fafc !important;
        border-radius: 12px !important;
        margin: 0.5rem 1rem 1.5rem 1rem !important;
        padding: 0 !important;
        overflow: visible !important;
        max-height: none !important;
        pointer-events: auto !important;
        z-index: 100 !important;
        clear: both !important;
    }
    
    /* Ensure dropdown doesn't overlap with next nav item */
    .nav-dropdown.active {
        margin-bottom: 0.5rem;
        background-color: rgba(102, 126, 234, 0.05);
    }
    
    /* Make active dropdown link more visible */
    .nav-dropdown.active > .nav-link {
        background-color: rgba(102, 126, 234, 0.1);
        color: #667eea;
        font-weight: 600;
    }

    .dropdown-column {
        padding: 1.5rem 2rem;
        border-bottom: 1px solid #e2e8f0;
        background: white;
        margin-bottom: 1px;
    }

    .dropdown-column:first-child {
        border-radius: 12px 12px 0 0;
    }

    .dropdown-column:last-child {
        border-bottom: none;
        border-radius: 0 0 12px 12px;
    }

    .dropdown-column:only-child {
        border-radius: 12px;
    }

    /* Multi-column dropdown layout for mobile */
    .nav-dropdown.active .dropdown-content.multi-column {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        position: static !important;
        transform: translateY(0) !important;
        padding: 0 !important;
        background: #f8fafc !important;
        border-radius: 12px !important;
        margin: 0.5rem 1rem 1.5rem 1rem !important;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05) !important;
        overflow: visible !important;
        z-index: 100 !important;
        pointer-events: auto !important;
    }

    .dropdown-content.multi-column .dropdown-column {
        display: block;
        width: 100%;
        padding: 0;
        border: none;
        background: transparent;
        margin: 0;
    }


    /* Hide section headers on mobile for cleaner look */
    .dropdown-column h4 {
        display: none;
    }

    .dropdown-column a {
        display: flex;
        align-items: center;
        padding: 0.75rem 2rem;
        color: #4a5568;
        text-decoration: none;
        font-size: 0.95rem;
        font-weight: 500;
        transition: all 0.2s ease;
        border-bottom: 1px solid #f0f0f0;
        margin: 0;
    }
    
    .dropdown-column a:last-child {
        border-bottom: none;
    }

    .dropdown-column a:hover {
        color: #667eea;
        background: rgba(102, 126, 234, 0.08);
    }

    /* Mobile navigation buttons - show in mobile menu */
    .nav-menu .nav-buttons {
        display: flex !important;
        flex-direction: column;
        gap: 1rem;
        margin-top: auto;
        padding: 2rem;
        border-top: 2px solid #e2e8f0;
        background: #f8fafc;
    }

    .nav-menu .nav-buttons .btn-primary,
    .nav-menu .nav-buttons .btn-secondary {
        width: 100%;
        padding: 1rem 1.5rem;
        font-size: 1rem;
        font-weight: 600;
        border-radius: 8px;
        text-align: center;
        transition: all 0.2s ease;
    }

    .nav-menu .nav-buttons .btn-primary {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        border: none;
        box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
    }

    .nav-menu .nav-buttons .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(102, 126, 234, 0.4);
    }

    .nav-menu .nav-buttons .btn-secondary {
        background: white;
        border: 2px solid #667eea;
        color: #667eea;
    }

    .nav-menu .nav-buttons .btn-secondary:hover {
        background: #667eea;
        color: white;
        transform: translateY(-2px);
    }

    /* Body scroll lock when menu is open */
    body.menu-open {
        overflow: hidden;
    }
}

/* Integration Section */
.integration-section {
    padding: 80px 0;
    background: #f8fafc;
}

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

.integration-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    text-align: center;
}

.integration-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: #667eea;
}

.integration-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.integration-icon i {
    font-size: 1.5rem;
    color: white;
}

.integration-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.integration-card p {
    color: #64748b;
    line-height: 1.6;
}

/* Governance Section */
.governance-section {
    padding: 80px 0;
    background: white;
}

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

.governance-card {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    text-align: center;
}

.governance-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: #667eea;
    background: white;
}

.governance-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.governance-icon i {
    font-size: 1.5rem;
    color: white;
}

.governance-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.governance-card p {
    color: #64748b;
    line-height: 1.6;
}

/* Mobile Responsiveness for New Sections */
@media (max-width: 768px) {
    .integration-section,
    .governance-section,
    .products-section {
        padding: 60px 0;
    }
    
    .integration-grid,
    .governance-grid,
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 2rem;
    }
    
    .product-card {
        padding: 1.5rem;
    }
}
/* Simple Working AI Ops Stack */
/* Simple Working AI Ops Stack - Clean Implementation */

/* Hero Layout - Two Column */
.hero-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 4rem;
    align-items: center;
    min-height: 500px;
    padding-top: 2rem;
}

.hero-content {
    max-width: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-stack-visual {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 400px;
}

/* Container styling is now in dynamic-stack.css */

.stack-title {
    text-align: center;
    font-size: 0.8rem;
    font-weight: 600;
    color: #666;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

/* Simple Layer Stack */
.layer-stack {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.stack-layer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 3px solid #ddd;
    transition: all 0.2s ease;
}

.stack-layer:hover {
    background: #f1f3f4;
    transform: translateX(4px);
}

/* Layer Colors */
.layer-build { border-left-color: #8b5cf6; }
.layer-deploy { border-left-color: #ef4444; }
.layer-infra { border-left-color: #f59e0b; }
.layer-observe { border-left-color: #10b981; }

.layer-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: #374151;
    text-transform: uppercase;
}

.tech-options {
    display: flex;
    gap: 0.5rem;
}

.tech-option {
    padding: 0.25rem 0.5rem;
    background: #e5e7eb;
    border-radius: 4px;
    font-size: 0.7rem;
    color: #6b7280;
    transition: all 0.2s ease;
}

.tech-option.active {
    background: #3b82f6;
    color: white;
}

.tech-option:hover {
    background: #d1d5db;
    cursor: pointer;
}

.tech-option.active:hover {
    background: #2563eb;
}

/* Simple Metrics */
.stack-metrics {
    display: flex;
    justify-content: space-around;
    margin-top: 1rem;
}

.metric {
    text-align: center;
    padding: 0.5rem;
    background: #f8f9fa;
    border-radius: 6px;
    min-width: 60px;
}

.metric-value {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: #10b981;
}

.metric-label {
    font-size: 0.6rem;
    color: #6b7280;
    text-transform: uppercase;
}

/* Problems Section */
.problems-section {
    padding: 25px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.problems-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(118, 75, 162, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1rem;
    position: relative;
    z-index: 1;
}

.problem-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 1rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

.problem-card:nth-child(1) { animation-delay: 0.1s; }
.problem-card:nth-child(2) { animation-delay: 0.2s; }
.problem-card:nth-child(3) { animation-delay: 0.3s; }
.problem-card:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.problem-card:hover::before {
    transform: scaleX(1);
}

.problem-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.15),
                0 8px 16px rgba(0, 0, 0, 0.1);
    border-color: rgba(102, 126, 234, 0.3);
    background: rgba(255, 255, 255, 0.95);
}

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

.problem-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
    flex-shrink: 0;
}

.problem-card:hover .problem-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

.problem-icon::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 14px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.problem-card:hover .problem-icon::before {
    opacity: 0.3;
}

.problem-icon i {
    font-size: 1rem;
    color: white;
    transition: transform 0.3s ease;
}

.problem-card:hover .problem-icon i {
    transform: scale(1.1);
}

.problem-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #4a5568 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
    flex: 1;
}

.problem-card:hover h3 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.problem-subtitle {
    font-size: 1rem;
    color: #4a5568;
    margin-bottom: 1rem;
    line-height: 1.5;
    font-style: italic;
    transition: color 0.3s ease;
}

.problem-card:hover .problem-subtitle {
    color: #667eea;
}

.problem-list {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.problem-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0;
    transition: all 0.3s ease;
    border-radius: 6px;
    position: relative;
}

.problem-item:hover {
    background: rgba(102, 126, 234, 0.05);
    padding-left: 0.5rem;
    transform: translateX(4px);
}

.problem-item i {
    font-size: 0.8rem;
    flex-shrink: 0;
    width: 14px;
    height: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.problem-item:hover i {
    transform: scale(1.2);
}

.problem-item i.fa-times-circle {
    color: #e53e3e;
    transition: all 0.3s ease;
}

.problem-item:hover i.fa-times-circle {
    color: #c53030;
    text-shadow: 0 0 8px rgba(229, 62, 62, 0.3);
}

.problem-item i.fa-check-circle {
    color: #38a169;
    transition: all 0.3s ease;
}

.problem-item:hover i.fa-check-circle {
    color: #2f855a;
    text-shadow: 0 0 8px rgba(56, 161, 105, 0.3);
}

.problem-item span {
    color: #374151;
    line-height: 1.5;
    font-size: 0.9rem;
    font-weight: 400;
    transition: all 0.3s ease;
}

.problem-item:hover span {
    color: #1a1a1a;
    font-weight: 500;
}

/* Why PloyD Delivers For Your Whole Team Section */
.team-benefits-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    position: relative;
    overflow: hidden;
}

.team-benefits-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(118, 75, 162, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.team-benefits-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.team-benefits-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
    background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.team-benefits-content p {
    font-size: 1.2rem;
    color: #cbd5e0;
    margin-bottom: 3rem;
}

.team-benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.team-benefit-card {
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(10px) !important;
    padding: 2rem !important;
    border-radius: 16px !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1) !important;
    text-align: center !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    overflow: hidden !important;
}

.team-benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s ease;
}

.team-benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.2);
    border-color: rgba(102, 126, 234, 0.3);
    background: rgba(255, 255, 255, 0.15) !important;
}

.team-benefit-card:hover::before {
    transform: scaleX(1);
}

.team-benefit-card i {
    font-size: 2.5rem !important;
    color: #667eea !important;
    margin-bottom: 1rem !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.team-benefit-card i.fas {
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
    font-size: 2.5rem !important;
    color: #667eea !important;
    margin-bottom: 1rem !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.team-benefit-card h4 {
    font-size: 1.3rem !important;
    font-weight: 600 !important;
    margin-bottom: 1rem !important;
    color: #ffffff !important;
}

.team-benefit-card p {
    color: #cbd5e0 !important;
    line-height: 1.6 !important;
    font-size: 1rem !important;
    margin: 0 !important;
}

.team-benefit-card ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    text-align: left !important;
}

.team-benefit-card li {
    color: #e2e8f0 !important;
    line-height: 1.6 !important;
    font-size: 0.95rem !important;
    margin-bottom: 0.75rem !important;
    padding-left: 2rem !important;
    position: relative !important;
}

.team-benefit-card li:before {
    content: "✓" !important;
    color: #667eea !important;
    font-weight: bold !important;
    font-size: 1rem !important;
    position: absolute !important;
    left: 0 !important;
    top: 0 !important;
    background: rgba(102, 126, 234, 0.1) !important;
    border-radius: 50% !important;
    width: 1.2rem !important;
    height: 1.2rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 0.7rem !important;
}

.team-benefit-card li:last-child {
    margin-bottom: 0 !important;
}

/* Responsive */
@media (max-width: 900px) {
    .hero-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-content {
        display: flex;
        flex-direction: column;
    }
    
    .hero-text-stack {
        order: 1;
        margin-bottom: 1.5rem;
    }
    
    .hero-buttons {
        order: 2;
    }
    
    .hero-stack-visual {
        order: 0;
    }
    
    /* Responsive styling is now in dynamic-stack.css */
    
    .problems-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .problem-card {
        padding: 0.75rem;
        animation-delay: 0s !important;
    }
    
    .problem-card:hover {
        transform: translateY(-4px) scale(1.01);
    }
    
    .problem-card h3 {
        font-size: 1.3rem;
    }
    
    .problem-icon {
        width: 35px;
        height: 35px;
    }
    
    .problem-icon i {
        font-size: 0.9rem;
    }
    
    .problem-item:hover {
        transform: translateX(2px);
        padding-left: 0.25rem;
    }
    
    .team-benefits-rows {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .team-benefit-row {
        padding: 1rem;
        animation-delay: 0s !important;
    }
    
    .team-benefit-row:hover {
        transform: translateY(-6px) scale(1.01);
    }
    
    .team-role-header h3 {
        font-size: 0.7rem;
    }
    
    .team-role-header h4 {
        font-size: 1rem;
    }
    
    .benefits-list {
        gap: 0.5rem;
    }
    
    .benefit-item {
        padding: 0.5rem;
    }
    
    .benefit-item:hover {
        transform: translateX(4px) scale(1.005);
    }
    
    /* New team benefits responsive styles */
    .team-benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: none;
    }
    
    .team-benefit-card {
        padding: 1.5rem !important;
    }
    
    .team-benefit-card i {
        font-size: 2rem !important;
    }
    
    .team-benefit-card h4 {
        font-size: 1.2rem !important;
    }
    
    .team-benefit-card li {
        font-size: 0.9rem !important;
        margin-bottom: 0.5rem !important;
    }
}

/* Continuous Deployment Page Styles */
.hero-section {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.trusted-by-section {
    padding: 60px 0;
    background: #f8fafc;
}

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

.trust-stat {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.trust-stat:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(102, 126, 234, 0.1);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 1rem;
    color: #4a5568;
    font-weight: 500;
}

/* Applicable Teams Section */
.applicable-teams-section {
    padding: 80px 0;
    background: white;
}

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

.team-category {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.team-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s ease;
}

.team-category:hover::before {
    transform: scaleX(1);
}

.team-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(102, 126, 234, 0.1);
    border-color: #667eea;
}

.team-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
}

.team-category:hover .team-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.team-icon i {
    font-size: 1.5rem;
    color: white;
}

.team-category h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a202c;
}

.team-category p {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.team-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.benefit-tag {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    white-space: nowrap;
}

.features-section {
    padding: 80px 0;
    background: white;
}

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

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.1);
    border-color: #667eea;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

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

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a202c;
}

.feature-card p {
    color: #4a5568;
    line-height: 1.6;
}

.how-it-works-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.how-it-works-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

/* Architecture Content in How It Works Section */
.how-it-works-section .architecture-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.how-it-works-section .architecture-text h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #ffffff;
    background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.how-it-works-section .architecture-text h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.how-it-works-section .architecture-text p {
    font-size: 1rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

.how-it-works-section .architecture-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.how-it-works-section .arch-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.how-it-works-section .arch-feature i {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
}

.how-it-works-section .arch-flow {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.how-it-works-section .arch-step {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.how-it-works-section .arch-step:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.how-it-works-section .step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1rem;
}

.how-it-works-section .arch-step h4 {
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.how-it-works-section .arch-step p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    line-height: 1.5;
}

.how-it-works-section .arch-arrow {
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.5rem;
    font-weight: bold;
}

.workflow-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.workflow-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.step-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #1a202c;
}

.step-content p {
    color: #4a5568;
    line-height: 1.5;
    font-size: 0.95rem;
}

.documentation-section {
    padding: 80px 0;
    background: white;
}

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

.doc-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.doc-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.1);
    border-color: #667eea;
}

.doc-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.doc-icon i {
    font-size: 1.3rem;
    color: white;
}

.doc-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a202c;
}

.doc-card p {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.doc-link {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.doc-link:hover {
    color: #764ba2;
}

.faq-section {
    padding: 80px 0;
    background: #f8fafc;
}

.faq-list {
    max-width: 800px;
    margin: 3rem auto 0;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f8fafc;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a202c;
    margin: 0;
}

.faq-question i {
    font-size: 1rem;
    color: #667eea;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    display: none;
}

.faq-answer p {
    color: #4a5568;
    line-height: 1.6;
    margin: 0;
}

.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

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

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Integrations Section Styles */
.integrations-section {
    padding: 80px 0;
    background: white;
}

/* Integrations Showcase Styles for Continuous Deployment Page */
.integrations-section .integrations-showcase {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.integration-category-showcase {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.integration-category-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s ease;
}

.integration-category-showcase:hover::before {
    transform: scaleX(1);
}

.integration-category-showcase:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(102, 126, 234, 0.1);
    border-color: #667eea;
}

.category-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.category-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
}

.integration-category-showcase:hover .category-icon {
    transform: scale(1.05) rotate(3deg);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.category-icon i {
    font-size: 1.5rem;
    color: white;
}

.category-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #1a202c;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.category-header p {
    color: #4a5568;
    font-size: 1rem;
    line-height: 1.5;
    max-width: 450px;
    margin: 0 auto;
}

.ticker-wrapper {
    overflow: hidden;
    background: linear-gradient(90deg, 
        rgba(102, 126, 234, 0.1) 0%, 
        rgba(118, 75, 162, 0.1) 100%);
    border-radius: 40px;
    padding: 1rem 0;
    position: relative;
    margin: 1.5rem 0;
}

.ticker-wrapper::before,
.ticker-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 60px;
    z-index: 2;
    pointer-events: none;
}

.ticker-wrapper::before {
    left: 0;
    background: linear-gradient(90deg, 
        rgba(102, 126, 234, 0.1) 0%, 
        transparent 100%);
}

.ticker-wrapper::after {
    right: 0;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(118, 75, 162, 0.1) 100%);
}

.ticker {
    display: flex;
    animation: scroll 25s linear infinite;
    gap: 1.5rem;
    padding: 0 1.5rem;
    justify-content: flex-start;
}

.ticker:hover {
    animation-play-state: paused;
}

.ticker-item {
    background: white;
    padding: 0.75rem 1.25rem;
    border-radius: 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    font-weight: 500;
    color: #4a5568;
    white-space: nowrap;
    flex-shrink: 0;
    transition: all 0.3s ease;
    border: 1px solid rgba(102, 126, 234, 0.2);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    min-width: 120px;
}

.ticker-item:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(102, 126, 234, 0.3);
}

.ticker-item:hover .logo-placeholder {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.logo-placeholder {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

/* Integration Logo Colors */
.logo-placeholder.github { background: #333333; color: white; }
.logo-placeholder.gitlab { background: #FC6D26; color: white; }
.logo-placeholder.jenkins { background: #D24939; color: white; }
.logo-placeholder.circleci { background: #343434; color: white; }
.logo-placeholder.kubernetes { background: #326CE5; color: white; }
.logo-placeholder.terraform { background: #623CE4; color: white; }
.logo-placeholder.docker { background: #2496ED; color: white; }
.logo-placeholder.hashicorp { background: #000000; color: white; }
.logo-placeholder.aws { background: #FF9900; color: white; }
.logo-placeholder.azure { background: #0078D4; color: white; }
.logo-placeholder.gcp { background: #4285F4; color: white; }
.logo-placeholder.coreweave { background: #10B981; color: white; }
.logo-placeholder.tensorflow { background: #FF6F00; color: white; }
.logo-placeholder.pytorch { background: #EE4C2C; color: white; }
.logo-placeholder.huggingface { background: #FFD21E; color: #333; }
.logo-placeholder.mlflow { background: #0194E2; color: white; }
.logo-placeholder.sklearn { background: #F7931E; color: white; }
.logo-placeholder.onnx { background: #3B82F6; color: white; }
.logo-placeholder.prometheus { background: #E6522C; color: white; }
.logo-placeholder.grafana { background: #F46800; color: white; }
.logo-placeholder.datadog { background: #632CA6; color: white; }
.logo-placeholder.elasticsearch { background: #005571; color: white; }
.logo-placeholder.jaeger { background: #60A5FA; color: white; }
.logo-placeholder.opentelemetry { background: #326CE5; color: white; }

@keyframes scroll {
    0% {
        transform: translateX(10%);
    }
    50% {
        transform: translateX(-10%);
    }
    100% {
        transform: translateX(10%);
    }
}

.category-features {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.category-features .feature-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: #4a5568;
    font-size: 0.9rem;
    font-weight: 500;
}

.category-features .feature-item i {
    color: #667eea;
    font-size: 0.9rem;
}

/* Integrations Page Styles */
.integrations-showcase {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-top: 2rem;
}

.integration-category-showcase {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.integration-category-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s ease;
}

.integration-category-showcase:hover::before {
    transform: scaleX(1);
}

.integration-category-showcase:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(102, 126, 234, 0.1);
    border-color: #667eea;
}

.category-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.category-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
}

.integration-category-showcase:hover .category-icon {
    transform: scale(1.05) rotate(3deg);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.category-icon i {
    font-size: 1.5rem;
    color: white;
}

.category-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #1a202c;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.category-header p {
    color: #4a5568;
    font-size: 1rem;
    line-height: 1.5;
    max-width: 450px;
    margin: 0 auto;
}

.ticker-wrapper {
    overflow: hidden;
    background: linear-gradient(90deg, 
        rgba(102, 126, 234, 0.1) 0%, 
        rgba(118, 75, 162, 0.1) 100%);
    border-radius: 40px;
    padding: 1rem 0;
    position: relative;
    margin: 1.5rem 0;
}

.ticker-wrapper::before,
.ticker-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 60px;
    z-index: 2;
    pointer-events: none;
}

.ticker-wrapper::before {
    left: 0;
    background: linear-gradient(90deg, 
        rgba(102, 126, 234, 0.1) 0%, 
        transparent 100%);
}

.ticker-wrapper::after {
    right: 0;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(118, 75, 162, 0.1) 100%);
}

.ticker {
    display: flex;
    animation: scroll 25s linear infinite;
    gap: 1.5rem;
    padding: 0 1.5rem;
    justify-content: flex-start;
}

.ticker:hover {
    animation-play-state: paused;
}

.ticker-item {
    background: white;
    padding: 0.75rem 1.25rem;
    border-radius: 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    font-weight: 500;
    color: #4a5568;
    white-space: nowrap;
    flex-shrink: 0;
    transition: all 0.3s ease;
    border: 1px solid rgba(102, 126, 234, 0.2);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    min-width: 120px;
}

.ticker-item:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(102, 126, 234, 0.3);
}

.ticker-item:hover .logo-placeholder {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.logo-placeholder {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

/* Integration Logo Colors */
.logo-placeholder.github { background: #333333; color: white; }
.logo-placeholder.gitlab { background: #FC6D26; color: white; }
.logo-placeholder.jenkins { background: #D24939; color: white; }
.logo-placeholder.circleci { background: #343434; color: white; }
.logo-placeholder.kubernetes { background: #326CE5; color: white; }
.logo-placeholder.terraform { background: #623CE4; color: white; }
.logo-placeholder.docker { background: #2496ED; color: white; }
.logo-placeholder.hashicorp { background: #000000; color: white; }
.logo-placeholder.aws { background: #FF9900; color: white; }
.logo-placeholder.azure { background: #0078D4; color: white; }
.logo-placeholder.gcp { background: #4285F4; color: white; }
.logo-placeholder.coreweave { background: #10B981; color: white; }
.logo-placeholder.tensorflow { background: #FF6F00; color: white; }
.logo-placeholder.pytorch { background: #EE4C2C; color: white; }
.logo-placeholder.huggingface { background: #FFD21E; color: #333; }
.logo-placeholder.mlflow { background: #0194E2; color: white; }
.logo-placeholder.sklearn { background: #F7931E; color: white; }
.logo-placeholder.onnx { background: #3B82F6; color: white; }
.logo-placeholder.prometheus { background: #E6522C; color: white; }
.logo-placeholder.grafana { background: #F46800; color: white; }
.logo-placeholder.datadog { background: #632CA6; color: white; }
.logo-placeholder.elasticsearch { background: #005571; color: white; }
.logo-placeholder.jaeger { background: #60A5FA; color: white; }
.logo-placeholder.opentelemetry { background: #326CE5; color: white; }
.logo-placeholder.nvidia { background: #76B900; color: white; }
.logo-placeholder.ai-dynamo { background: #FF6B35; color: white; }
.logo-placeholder.vllm { background: #FF4081; color: white; }
.logo-placeholder.tensorrt { background: #76B900; color: white; }
.logo-placeholder.tgi { background: #FF6B35; color: white; }
.logo-placeholder.openai { background: #412991; color: white; }
.logo-placeholder.anthropic { background: #D97706; color: white; }
.logo-placeholder.cohere { background: #3B82F6; color: white; }
.logo-placeholder.mistral { background: #10B981; color: white; }
.logo-placeholder.claude { background: #D97706; color: white; }
.logo-placeholder.gemini { background: #4285F4; color: white; }
.logo-placeholder.argocd { background: #EF7B4D; color: white; }

@keyframes scroll {
    0% {
        transform: translateX(10%);
    }
    50% {
        transform: translateX(-10%);
    }
    100% {
        transform: translateX(10%);
    }
}

.category-features {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.category-features .feature-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: #4a5568;
    font-size: 0.9rem;
    font-weight: 500;
}

.category-features .feature-item i {
    color: #667eea;
    font-size: 0.9rem;
}

/* Continuous Deployment Responsive Design */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .workflow-steps {
        grid-template-columns: 1fr;
    }
    
    .doc-cards {
        grid-template-columns: 1fr;
    }
    
    .trust-indicators {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .trust-stat {
        padding: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    .teams-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .team-category {
        padding: 1.5rem;
    }
    
    .team-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 1rem;
    }
    
    .team-icon i {
        font-size: 1.2rem;
    }
    
    .team-category h3 {
        font-size: 1.2rem;
    }
    
    .team-category p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .benefit-tag {
        font-size: 0.75rem;
        padding: 0.25rem 0.6rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .integrations-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .integration-category {
        padding: 1.5rem;
    }
    
    .integration-item {
        padding: 0.75rem;
    }
    
    .integration-icon {
        width: 35px;
        height: 35px;
    }
    
    .integration-icon i {
        font-size: 1rem;
    }
    
    .integrations-showcase {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .integration-category-showcase {
        padding: 1.5rem;
    }
    
    .category-header {
        margin-bottom: 1rem;
    }
    
    .category-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 0.75rem;
    }
    
    .category-icon i {
        font-size: 1.2rem;
    }
    
    .category-header h3 {
        font-size: 1.3rem;
    }
    
    .category-header p {
        font-size: 0.9rem;
    }
    
    .ticker-wrapper {
        padding: 0.75rem 0;
        margin: 1rem 0;
    }
    
    .ticker {
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .ticker-item {
        min-width: 100px;
        padding: 0.6rem 1rem;
    }
    
    .logo-placeholder {
        width: 24px;
        height: 24px;
        font-size: 0.8rem;
    }
    
    .category-features {
        gap: 1rem;
        margin-top: 1rem;
    }
    
    .category-features .feature-item {
        font-size: 0.85rem;
    }
    
    .integrations-showcase {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .integration-category-showcase {
        padding: 1.5rem;
    }
    
    .category-header {
        margin-bottom: 1rem;
    }
    
    .category-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 0.75rem;
    }
    
    .category-icon i {
        font-size: 1.2rem;
    }
    
    .category-header h3 {
        font-size: 1.3rem;
    }
    
    .category-header p {
        font-size: 0.9rem;
    }
    
    .ticker-wrapper {
        padding: 0.75rem 0;
        margin: 1rem 0;
    }
    
    .ticker {
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .ticker-item {
        min-width: 100px;
        padding: 0.6rem 1rem;
    }
    
    .logo-placeholder {
        width: 24px;
        height: 24px;
        font-size: 0.8rem;
    }
    
    .category-features {
        gap: 1rem;
        margin-top: 1rem;
    }
    
    .category-features .feature-item {
        font-size: 0.85rem;
    }
    
    .how-it-works-section .architecture-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .how-it-works-section .architecture-text h2 {
        font-size: 1.8rem;
    }
    
    .how-it-works-section .architecture-text h3 {
        font-size: 1.2rem;
    }
    
    .how-it-works-section .architecture-text p {
        font-size: 0.95rem;
    }
    
    .how-it-works-section .architecture-features {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .how-it-works-section .arch-flow {
        gap: 0.75rem;
    }
    
    .how-it-works-section .arch-step {
        padding: 1rem;
    }
    
    .how-it-works-section .step-number {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
    }
    
    .how-it-works-section .arch-step h4 {
        font-size: 1rem;
        margin-bottom: 0.25rem;
    }
    
    .how-it-works-section .arch-step p {
        font-size: 0.8rem;
    }
    
    .how-it-works-section .arch-arrow {
        font-size: 1.2rem;
    }
    
    .integrations-section {
        padding: 60px 0;
    }
    
    .integrations-section .integrations-showcase {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}
