:root {
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #818cf8;
    --secondary: #10b981;
    --accent: #f59e0b;
    --background: #0f172a;
    --surface: #1e293b;
    --surface-light: #334155;
    --text: #f8fafc;
    --text-secondary: #94a3b8;
    --border: #334155;
    --success: #22c55e;
    --warning: #f59e0b;
    --error: #ef4444;
    --gradient-primary: linear-gradient(135deg, var(--primary), var(--secondary));
    --gradient-secondary: linear-gradient(135deg, var(--primary-light), var(--accent));
}

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

body {
    font-family: 'Inter', sans-serif;
    background: var(--background);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header Styles */
.header {
    background: rgba(30, 41, 59, 0.8);
    backdrop-filter: blur(12px);
    position: fixed;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid var(--border);
}

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

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

.logo-icon {
    width: 40px;
    height: 40px;
    background: none;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
    color: white;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text);
}

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

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

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

.nav-links a.nav-cta {
    background: var(--primary);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    transition: all 0.3s;
}

.nav-links a.nav-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text);
    font-size: 1.5rem;
    cursor: pointer;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    color: var(--primary-light);
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

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

.hero-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.primary-button, .secondary-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    font-size: 1rem;
}

.primary-button {
    background: var(--primary);
    color: white;
}

.primary-button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(99, 102, 241, 0.3);
}

.secondary-button {
    background: var(--surface);
    color: var(--text);
    border: 1px solid var(--border);
}

.secondary-button:hover {
    background: var(--surface-light);
    border-color: var(--primary);
}

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

.hero-stats {
    display: flex;
    gap: 3rem;
}

.stat {
    text-align: center;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
}

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

/* Migration Showcase */
.migration-showcase {
    background: var(--surface);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border);
}

.migration-showcase h3 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: var(--primary);
}

.transformation-examples {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.transformation-examples.compact {
    gap: 0.75rem;
}

.transformation-examples.compact .transformation-flow {
    padding: 0.5rem;
    gap: 0.75rem;
}

.transformation-flow {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    transition: all 0.3s;
}

.transformation-flow:hover {
    background: rgba(99, 102, 241, 0.1);
    transform: translateX(5px);
}

.from-tech, .to-tech {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    border-radius: 8px;
}

.transformation-examples.compact .from-tech,
.transformation-examples.compact .to-tech {
    padding: 0.5rem;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.from-tech {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.to-tech {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
}

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

.transformation-examples.compact .tech-icon {
    font-size: 1.25rem;
}

.transform-arrow {
    color: var(--primary);
    font-size: 1.5rem;
    font-weight: bold;
}

.transformation-examples.compact .transform-arrow {
    font-size: 1.25rem;
}

.migration-benefits {
    display: flex;
    justify-content: space-around;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
}

.benefit-item span.mdi {
    font-size: 1.25rem;
}

/* Features Section */
.features-section {
    padding: 4rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

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

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

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

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

.feature-card {
    background: var(--surface);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon span {
    font-size: 2rem;
    color: var(--primary);
}

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

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

/* Process Section */
.process-section {
    padding: 4rem 2rem;
    background: rgba(99, 102, 241, 0.05);
}

.pipeline-stages {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.stage-card {
    background: var(--surface);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.stage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

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

.stage-header span {
    font-size: 2rem;
}

.stage-header.train { color: #ec4899; }
.stage-header.knowledge { color: #a855f7; }
.stage-header.analyze { color: #3b82f6; }
.stage-header.plan { color: #8b5cf6; }
.stage-header.migrate { color: #10b981; }
.stage-header.modernize { color: #f59e0b; }
.stage-header.validate { color: #22c55e; }
.stage-header.maintain { color: #06b6d4; }

.stage-card h3 {
    font-size: 1.5rem;
}

.stage-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.stage-card ul {
    list-style: none;
}

.stage-card li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-secondary);
}

.stage-card li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary);
}

/* Research Agent Section */
.research-section {
    padding: 4rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

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

.knowledge-demo {
    background: var(--surface);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border);
}

.research-search {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--background);
    padding: 1rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.research-search input {
    flex: 1;
    background: none;
    border: none;
    color: var(--text);
    font-size: 1rem;
}

.research-results {
    /* Research results container */
}

.research-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: rgba(99, 102, 241, 0.05);
    border-radius: 8px;
    margin-bottom: 1rem;
    transition: all 0.3s;
}

.research-item:hover {
    background: rgba(99, 102, 241, 0.1);
    transform: translateX(5px);
}

.research-item h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

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

.knowledge-content h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.knowledge-benefits {
    margin-top: 2rem;
}

.benefit {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.benefit span {
    font-size: 1.5rem;
    color: var(--primary);
}

/* Modernization Section */
.modernization-section {
    padding: 4rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

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

.modern-feature {
    background: var(--surface);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.modern-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: var(--primary);
}

.modern-icon {
    width: 50px;
    height: 50px;
    background: rgba(245, 158, 11, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.modern-icon span {
    font-size: 1.75rem;
    color: var(--accent);
}

.modern-feature h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.modern-feature p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.modern-example {
    background: rgba(245, 158, 11, 0.05);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-size: 0.875rem;
    border-left: 3px solid var(--accent);
}

.modern-example span {
    color: var(--accent);
    font-weight: 600;
}

.ai-integration-highlight {
    background: var(--surface);
    padding: 3rem;
    border-radius: 16px;
    border: 2px solid var(--primary);
}

.ai-integration-highlight h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

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

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

.ai-feature span {
    color: var(--success);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.ai-feature h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.ai-feature p {
    color: var(--text-secondary);
}

/* Languages Section */
.languages-section {
    padding: 4rem 2rem;
    background: rgba(16, 185, 129, 0.05);
}

.language-showcase {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.language-examples h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.migration-examples {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.migration-flow {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: var(--surface);
    border-radius: 12px;
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.migration-flow:hover {
    transform: translateX(10px);
    border-color: var(--primary);
}

.migration-flow .from,
.migration-flow .to {
    font-weight: 600;
    font-size: 1.1rem;
}

.migration-flow .from {
    color: var(--text-secondary);
}

.migration-flow .to {
    color: var(--primary);
}

.migration-flow .arrow {
    color: var(--primary);
    font-size: 1.5rem;
}

.custom-language-feature {
    background: var(--surface);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid var(--border);
}

.custom-language-feature .feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.custom-language-feature .feature-icon span {
    font-size: 2rem;
    color: var(--primary);
}

.custom-language-feature h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.custom-language-feature ul {
    list-style: none;
    margin-top: 1.5rem;
}

.custom-language-feature li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: var(--text-secondary);
}

.custom-language-feature li span {
    color: var(--success);
    font-size: 1rem;
}

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

.language-matrix h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

/* Service Benefits Section */
.service-benefits-section {
    padding: 4rem 2rem;
    background: rgba(99, 102, 241, 0.05);
    margin: 2rem 0;
}

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

.benefit-card {
    background: var(--surface);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.benefit-icon span {
    font-size: 2rem;
    color: var(--primary);
}

.benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

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

/* Use Cases Section */
.usecases-section {
    padding: 4rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.client-notice {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-secondary);
    font-style: italic;
}

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

.usecase-card {
    background: var(--surface);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.usecase-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.usecase-icon {
    width: 70px;
    height: 70px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.usecase-icon span {
    font-size: 2.5rem;
    color: var(--primary);
}

.usecase-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.usecase-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.usecase-example {
    background: rgba(99, 102, 241, 0.05);
    padding: 1rem;
    border-radius: 8px;
    font-size: 0.875rem;
}

.usecase-example span {
    color: var(--primary);
    font-weight: 600;
}

/* Demo Section */
.demo-section {
    padding: 4rem 2rem;
    background: rgba(99, 102, 241, 0.05);
}

.demo-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.video-placeholder {
    background: var(--surface);
    padding: 8rem 2rem;
    border-radius: 16px;
    border: 1px solid var(--border);
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
}

.video-placeholder:hover {
    border-color: var(--primary);
}

.video-placeholder span {
    font-size: 4rem;
    color: var(--primary);
    display: block;
    margin-bottom: 1rem;
}

.demo-features h3 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.demo-features ul {
    list-style: none;
    margin-bottom: 2rem;
}

.demo-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    color: var(--text-secondary);
}

.demo-features li span {
    color: var(--success);
    font-size: 1.25rem;
}

/* Pricing Section */
.pricing-section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

.pricing-card {
    background: var(--surface);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid var(--border);
    position: relative;
    transition: all 0.3s;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.pricing-card.featured {
    border-color: var(--primary);
    transform: scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.pricing-header h3 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.pricing-header p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.currency {
    font-size: 1.5rem;
    color: var(--text-secondary);
}

.amount {
    font-size: 3rem;
    font-weight: 700;
}

.period {
    color: var(--text-secondary);
}

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

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    color: var(--text-secondary);
}

.pricing-features li span {
    color: var(--success);
}

/* CTA Section */
.cta-section {
    padding: 6rem 2rem;
    background: radial-gradient(circle at center, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
    text-align: center;
}

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

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

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

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

.cta-note {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* Footer */
.footer {
    background: var(--surface);
    border-top: 1px solid var(--border);
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

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

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

.footer-column h4 {
    margin-bottom: 1rem;
}

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

.footer-column li {
    padding: 0.5rem 0;
}

.footer-column a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: var(--primary);
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--background);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--primary);
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    color: var(--text-secondary);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .migration-showcase {
        padding: 1rem;
    }
    
    .transformation-flow {
        flex-direction: column;
        text-align: center;
    }
    
    .transform-arrow {
        transform: rotate(90deg);
    }
    
    .migration-benefits {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .knowledge-features {
        grid-template-columns: 1fr;
    }
    
    .demo-container {
        grid-template-columns: 1fr;
    }
    
    .language-showcase {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .modernization-grid {
        grid-template-columns: 1fr;
    }
    
    .ai-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .pipeline-stages {
        grid-template-columns: 1fr;
    }
    
    .usecase-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
}