/* CSS Variables - Light Modern Theme */
:root {
    --bg: #fafafa;
    --bg-secondary: #ffffff;
    --bg-tertiary: #f4f4f5;
    --text: #18181b;
    --text-secondary: #71717a;
    --text-muted: #a1a1aa;
    --border: #e4e4e7;
    --primary: #7c3aed;
    --primary-light: #a78bfa;
    --primary-dark: #5b21b6;
    --accent: #00d4ff;
    --success: #10b981;
    --gradient: linear-gradient(135deg, #00d4ff 0%, #7c3aed 100%);
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
    --shadow: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
    --radius: 12px;
    --radius-lg: 20px;
    --radius-full: 9999px;
}

/* Reset */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Space Grotesk', -apple-system, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Cursor Glow */
.cursor-glow {
    position: fixed;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1rem 2rem;
    background: rgba(250, 250, 250, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

.nav {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--text);
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
}

.nav-menu a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-menu a:hover {
    color: var(--text);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
}

.btn-primary {
    background: var(--text);
    color: var(--bg);
    padding: 0.625rem 1.25rem;
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
}

.btn-primary:hover {
    background: var(--primary);
    transform: translateY(-1px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding: 8rem 4rem 4rem;
    max-width: 1600px;
    margin: 0 auto;
    align-items: center;
}

.hero-left {
    padding-right: 2rem;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--bg-tertiary);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    border: 1px solid var(--border);
}

.tag-icon {
    font-size: 1rem;
}

.hero h1 {
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.text-gradient {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 500px;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.btn-large {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--gradient);
    color: white;
    padding: 1rem 2rem;
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.3);
}

.btn-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(124, 58, 237, 0.4);
}

.btn-arrow {
    transition: transform 0.2s;
}

.btn-large:hover .btn-arrow {
    transform: translateX(4px);
}

.hero-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.meta-check {
    color: var(--success);
}

.hero-brands {
    border-top: 1px solid var(--border);
    padding-top: 2rem;
}

.hero-brands > span {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: 1rem;
}

.brand-logos {
    display: flex;
    gap: 2rem;
}

.brand-logos span {
    font-weight: 600;
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Code Editor Visual */
.hero-right {
    position: relative;
}

.code-editor {
    background: #1e1e2e;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255,255,255,0.1);
}

.editor-header {
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    background: #181825;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.editor-dots {
    display: flex;
    gap: 0.5rem;
}

.editor-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.editor-dots span:nth-child(1) { background: #f38ba8; }
.editor-dots span:nth-child(2) { background: #f9e2af; }
.editor-dots span:nth-child(3) { background: #a6e3a1; }

.editor-title {
    flex: 1;
    text-align: center;
    color: #6c7086;
    font-size: 0.875rem;
    font-family: 'JetBrains Mono', monospace;
}

.ai-badge {
    background: linear-gradient(135deg, #00d4ff, #7c3aed);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 10px rgba(124, 58, 237, 0.5); }
    50% { box-shadow: 0 0 20px rgba(124, 58, 237, 0.8); }
}

.editor-body {
    display: flex;
    padding: 1.5rem;
    min-height: 300px;
}

.line-numbers {
    display: flex;
    flex-direction: column;
    padding-right: 1.5rem;
    border-right: 1px solid rgba(255,255,255,0.05);
    margin-right: 1.5rem;
}

.line-numbers span {
    color: #45475a;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.875rem;
    line-height: 1.7;
}

.code-content {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.875rem;
    line-height: 1.7;
    color: #cdd6f4;
}

.code-content .keyword { color: #cba6f7; }
.code-content .function { color: #89b4fa; }
.code-content .param { color: #fab387; }
.code-content .type { color: #f9e2af; }
.code-content .string { color: #a6e3a1; }

.ai-suggestion {
    color: #6c7086;
    opacity: 0.7;
    display: block;
    margin-top: 0.5rem;
    animation: fade-in 0.5s ease;
}

@keyframes fade-in {
    from { opacity: 0; transform: translateY(5px); }
    to { opacity: 0.7; transform: translateY(0); }
}

.editor-footer {
    padding: 0.75rem 1.5rem;
    background: #181825;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-hint {
    color: #6c7086;
    font-size: 0.75rem;
}

.footer-hint kbd {
    background: #313244;
    padding: 0.125rem 0.5rem;
    border-radius: 4px;
    font-family: 'JetBrains Mono', monospace;
}

/* Stats Bar */
.stats-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    padding: 4rem 2rem;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text);
    display: inline;
}

.stat-suffix {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary);
}

.stat-label {
    display: block;
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: var(--border);
}

/* Section Intro */
.section-intro {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem;
}

.section-tag {
    display: inline-block;
    background: var(--bg-tertiary);
    color: var(--primary);
    padding: 0.375rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border: 1px solid var(--border);
}

.section-intro h2 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-intro p {
    color: var(--text-secondary);
    font-size: 1.125rem;
}

/* Features - Bento Grid */
.features {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.bento-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: all 0.3s;
}

.bento-card:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow);
    transform: translateY(-4px);
}

.bento-large {
    grid-column: span 2;
}

.bento-wide {
    grid-column: span 3;
}

.bento-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.bento-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.bento-card p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

.bento-visual {
    margin-top: 2rem;
}

.context-demo {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.context-file {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--bg-tertiary);
    padding: 0.75rem 1rem;
    border-radius: var(--radius);
    font-size: 0.875rem;
}

.context-file.active {
    background: var(--gradient);
    color: white;
}

.context-arrow {
    color: var(--text-muted);
}

.speed-meter {
    margin-top: 1.5rem;
    background: var(--bg-tertiary);
    border-radius: var(--radius-full);
    padding: 0.25rem;
    position: relative;
}

.speed-bar {
    height: 8px;
    background: var(--gradient);
    border-radius: var(--radius-full);
    width: 0;
    animation: speed-fill 2s ease forwards;
}

@keyframes speed-fill {
    to { width: 85%; }
}

.speed-meter span {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.75rem;
    color: var(--text-muted);
}

.security-badges {
    display: flex;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.security-badges span {
    background: var(--bg-tertiary);
    padding: 0.375rem 0.75rem;
    border-radius: var(--radius);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--success);
}

.lang-icons {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
    font-size: 1.5rem;
}

.ide-logos {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.ide-item {
    flex: 1;
    background: var(--bg-tertiary);
    padding: 1rem;
    border-radius: var(--radius);
    text-align: center;
    font-weight: 500;
    font-size: 0.875rem;
}

/* Demo Section */
.demo-section {
    padding: 6rem 2rem;
    background: var(--bg-tertiary);
}

.demo-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
}

.demo-content .section-tag {
    margin-bottom: 1rem;
}

.demo-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.demo-content p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.demo-tabs {
    display: flex;
    gap: 0.5rem;
}

.demo-tab {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.demo-tab.active {
    background: var(--text);
    color: var(--bg);
    border-color: var(--text);
}

.demo-window {
    background: #1e1e2e;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.demo-header {
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    background: #181825;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.demo-dots {
    display: flex;
    gap: 0.5rem;
}

.demo-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.demo-dots span:nth-child(1) { background: #f38ba8; }
.demo-dots span:nth-child(2) { background: #f9e2af; }
.demo-dots span:nth-child(3) { background: #a6e3a1; }

.demo-filename {
    flex: 1;
    text-align: center;
    color: #6c7086;
    font-size: 0.875rem;
    font-family: 'JetBrains Mono', monospace;
}

.demo-editor {
    padding: 1.5rem;
    min-height: 250px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.875rem;
}

.prompt-line {
    margin-bottom: 1rem;
}

.comment {
    color: #6c7086;
}

.generated-code {
    color: #cdd6f4;
    white-space: pre-wrap;
    line-height: 1.7;
}

.cursor-blink {
    animation: blink 1s infinite;
    color: var(--accent);
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.demo-controls {
    display: flex;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: #181825;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.demo-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gradient);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.demo-btn:hover {
    transform: translateY(-2px);
}

.demo-btn.secondary {
    background: #313244;
}

/* Pricing Section */
.pricing {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.price-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    position: relative;
    transition: all 0.3s;
}

.price-card:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow);
}

.price-card.featured {
    border-color: var(--primary);
    box-shadow: 0 0 0 1px var(--primary), var(--shadow-lg);
    transform: scale(1.02);
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient);
    color: white;
    padding: 0.375rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
}

.price-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.price-header p {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.price-amount {
    margin: 2rem 0;
    display: flex;
    align-items: baseline;
}

.price-currency {
    font-size: 1.5rem;
    color: var(--text-secondary);
}

.price-value {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1;
}

.price-period {
    color: var(--text-muted);
    margin-left: 0.25rem;
}

.price-features {
    list-style: none;
    margin-bottom: 2rem;
}

.price-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.9375rem;
}

.check {
    color: var(--success);
    font-weight: bold;
}

.price-btn {
    display: block;
    text-align: center;
    padding: 1rem;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
    background: var(--gradient);
    color: white;
}

.price-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.3);
}

.price-btn.outline {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border);
}

.price-btn.outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: none;
}

/* Testimonials */
.testimonials {
    padding: 6rem 2rem;
    background: var(--bg-tertiary);
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    gap: 2rem;
    animation: scroll-left 30s linear infinite;
    width: max-content;
}

@keyframes scroll-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.testimonial-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    width: 400px;
    flex-shrink: 0;
}

.testimonial-content p {
    font-size: 1.0625rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: var(--text);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: var(--bg-tertiary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.author-name {
    font-weight: 600;
    display: block;
}

.author-role {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* FAQ Section */
.faq {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.faq-left .section-tag {
    margin-bottom: 1rem;
}

.faq-left h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.faq-left p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.faq-contact {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.faq-contact:hover {
    color: var(--primary-dark);
}

.faq-right {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: var(--primary-light);
}

.faq-item.active {
    border-color: var(--primary);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    font-size: 1rem;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    color: var(--text);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--primary);
    transition: transform 0.3s;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 1.5rem 1.25rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* CTA Section */
.cta {
    padding: 8rem 2rem;
    background: var(--text);
    position: relative;
    overflow: hidden;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta h2 {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.cta p {
    color: rgba(255,255,255,0.6);
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
}

.cta-actions {
    margin-bottom: 1rem;
}

.btn-large.light {
    background: white;
    color: var(--text);
}

.btn-large.light:hover {
    background: var(--bg-tertiary);
    box-shadow: 0 8px 30px rgba(255,255,255,0.2);
}

.cta-note {
    color: rgba(255,255,255,0.4);
    font-size: 0.875rem;
}

.cta-decoration {
    position: absolute;
    bottom: 2rem;
    right: 5%;
    opacity: 0.1;
}

.floating-code {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.5rem;
    color: white;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Footer */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    padding: 4rem 2rem 2rem;
}

.footer-main {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand {
    max-width: 280px;
}

.footer-brand .logo {
    margin-bottom: 1rem;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9375rem;
}

.footer-links {
    display: flex;
    gap: 4rem;
}

.footer-col h4 {
    font-weight: 600;
    margin-bottom: 1.25rem;
    font-size: 0.875rem;
}

.footer-col a {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    margin-bottom: 0.75rem;
    font-size: 0.9375rem;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: var(--primary);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.footer-social {
    display: flex;
    gap: 1.5rem;
}

.footer-social a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s;
}

.footer-social a:hover {
    color: var(--primary);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        padding: 7rem 2rem 4rem;
        text-align: center;
    }

    .hero-left {
        padding-right: 0;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hero-text {
        max-width: 100%;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-brands {
        text-align: center;
    }

    .brand-logos {
        justify-content: center;
    }

    .bento-grid {
        grid-template-columns: 1fr;
    }

    .bento-large, .bento-wide {
        grid-column: span 1;
    }

    .demo-container, .faq-container {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .price-card.featured {
        transform: none;
    }

    .footer-main {
        flex-direction: column;
    }

    .footer-links {
        flex-wrap: wrap;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-menu, .nav-actions {
        display: none;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .section-intro h2 {
        font-size: 2rem;
    }

    .stats-bar {
        flex-wrap: wrap;
        gap: 2rem;
    }

    .stat-divider {
        display: none;
    }

    .cta h2 {
        font-size: 2.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}
