:root {
    /* Core Colors from App UI */
    --bg-main: #f0f4f8; /* slightly cooler light bg */
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --primary-blue: #6366f1;
    --primary-blue-hover: #4f46e5;
    --primary-pink: #ec4899;
    --border-color: rgba(148, 163, 184, 0.2);
    
    /* Gradients */
    --text-gradient: linear-gradient(135deg, #ec4899, #8b5cf6);
    --bg-gradient: linear-gradient(135deg, #fdf4ff 0%, #eff6ff 100%);
    --card-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%);
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 10px 15px -3px rgb(0 0 0 / 0.05), 0 4px 6px -4px rgb(0 0 0 / 0.02);
    --shadow-lg: 0 20px 25px -5px rgb(0 0 0 / 0.05), 0 8px 10px -6px rgb(0 0 0 / 0.01);
    
    /* Radii */
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-2xl: 2rem;
}

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

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

a {
    text-decoration: none;
    color: inherit;
}

/* Utilities */
.gradient-text {
    background: var(--text-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

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

.glass-card {
    background: var(--card-gradient);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: var(--shadow-md);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--primary-blue);
    color: white;
    box-shadow: 0 4px 14px 0 rgba(99, 102, 241, 0.39);
}

.btn-primary:hover {
    background: var(--primary-blue-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.23);
}

.btn-outline {
    background: white;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-outline:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
}

.btn-ghost {
    background: transparent;
    color: var(--text-secondary);
}

.btn-ghost:hover {
    color: var(--text-primary);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1rem;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(240, 244, 248, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
}

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

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

.logo-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #c084fc, #ec4899);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
}

.logo-icon.small {
    width: 28px;
    height: 28px;
    font-size: 1rem;
}

.brand-name {
    font-weight: 800;
    font-size: 1.25rem;
    letter-spacing: -0.02em;
}

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

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color 0.2s;
}

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

.nav-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

/* Hero Section */
.hero {
    padding: 8rem 2rem 5rem;
    background: var(--bg-gradient);
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
}

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

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.badge {
    background: rgba(236, 72, 153, 0.1);
    color: var(--primary-pink);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(236, 72, 153, 0.2);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.hero-desc {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 90%;
}

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

.tech-stack {
    border-top: 1px solid var(--border-color);
    padding-top: 1.5rem;
    width: 100%;
}

.tech-stack p {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}

.tech-logos {
    display: flex;
    gap: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    opacity: 0.8;
}

/* Hero Visual (Mockup) */
.hero-visual {
    position: relative;
    height: 500px;
    width: 100%;
}

.mockup-card {
    width: 100%;
    height: 100%;
    border-radius: var(--radius-xl);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    z-index: 10;
}

.mockup-header {
    background: rgba(255, 255, 255, 0.5);
    padding: 1rem;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.dots {
    display: flex;
    gap: 6px;
    margin-right: 1rem;
}

.dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #cbd5e1;
}

.dots span:nth-child(1) { background: #fca5a5; }
.dots span:nth-child(2) { background: #fde047; }
.dots span:nth-child(3) { background: #86efac; }

.mockup-title {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin: 0 auto;
    transform: translateX(-15px);
}

.mockup-body {
    display: flex;
    flex: 1;
    padding: 1rem;
    gap: 1rem;
}

.mockup-sidebar {
    width: 30%;
    background: rgba(255, 255, 255, 0.4);
    border-radius: var(--radius-md);
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.mockup-line {
    height: 8px;
    background: rgba(0,0,0,0.05);
    border-radius: 4px;
    width: 100%;
}

.mockup-line.w-half {
    width: 50%;
    margin-bottom: 1rem;
}

.mockup-box {
    height: 60px;
    background: rgba(0,0,0,0.03);
    border-radius: var(--radius-sm);
}

.mockup-box.active-box {
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
}

.mockup-main {
    flex: 1;
    background: rgba(255, 255, 255, 0.6);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mockup-image-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: var(--primary-blue);
    animation: pulse 2s infinite ease-in-out;
}

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

.mockup-image-placeholder p {
    font-size: 0.85rem;
    font-weight: 600;
}

/* Background Blobs */
.blob {
    position: absolute;
    filter: blur(60px);
    z-index: 1;
    opacity: 0.6;
    border-radius: 50%;
}

.blob-1 {
    width: 300px;
    height: 300px;
    background: #ec4899;
    top: -50px;
    right: -50px;
}

.blob-2 {
    width: 400px;
    height: 400px;
    background: #6366f1;
    bottom: -100px;
    left: -100px;
}

@keyframes pulse {
    0% { opacity: 0.6; }
    50% { opacity: 1; }
    100% { opacity: 0.6; }
}

/* Common Section */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 6rem 2rem;
}

.section-header {
    margin-bottom: 4rem;
    max-width: 600px;
}

.section-header.text-center {
    margin: 0 auto 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

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

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.feature-icon.pink {
    background: rgba(236, 72, 153, 0.1);
    color: var(--primary-pink);
}

.feature-icon.blue {
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary-blue);
}

.feature-icon.purple {
    background: rgba(139, 92, 246, 0.1);
    color: #8b5cf6;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* How It Works */
.how-it-works {
    background: white;
}

.steps-container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
}

.step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 0 1rem;
}

.step-number {
    width: 48px;
    height: 48px;
    background: var(--text-gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 10px rgba(236, 72, 153, 0.3);
}

.step h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.step p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.step-connector {
    flex: 0 0 100px;
    height: 2px;
    background: dashed 2px var(--border-color);
    margin-top: 24px;
}

/* CTA Section */
.cta-section {
    padding: 4rem 2rem 8rem;
}

.cta-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    padding: 4rem 2rem;
    border-radius: var(--radius-2xl);
    background: linear-gradient(135deg, rgba(99,102,241,0.05) 0%, rgba(236,72,153,0.05) 100%);
    border: 1px solid rgba(255,255,255,0.5);
}

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

.cta-container p {
    color: var(--text-secondary);
    font-size: 1.125rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.footer .brand p {
    color: var(--text-secondary);
    margin-top: 1rem;
    font-size: 0.9rem;
}

.footer-links {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

/* Testimonials / Gallery */
.testimonials {
    background: var(--bg-main);
}

.carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0 1rem;
}

.carousel-btn {
    background: white;
    border: 1px solid var(--border-color);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--text-primary);
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: all 0.2s;
    flex-shrink: 0;
    z-index: 10;
}

.carousel-btn:hover {
    background: var(--primary-blue);
    color: white;
    border-color: var(--primary-blue);
}

.carousel-container {
    flex: 1;
    overflow: hidden;
    padding: 1rem 0; /* for shadows */
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 2rem;
}

.gallery-card {
    flex: 0 0 calc(33.333% - 1.33rem); /* 3 cards on desktop */
    background: white;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: transform 0.3s;
}

.gallery-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.img-wrapper {
    width: 100%;
    height: 450px; /* Taller fixed height for portrait */
    background: #f1f5f9; /* Soft grey bg for uncropped areas */
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain; /* Do not crop the image */
    transition: transform 0.5s ease;
}

.gallery-card:hover .gallery-img {
    transform: scale(1.02);
}

.gallery-info {
    padding: 2rem;
}

.gallery-info p {
    font-style: italic;
    color: var(--text-secondary);
    margin: 1rem 0;
    font-size: 0.95rem;
}

.user-meta {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.stars {
    color: #fbbf24;
    margin-bottom: 0.5rem;
    display: flex;
    gap: 2px;
}

.user-meta strong {
    display: block;
    font-size: 0.9rem;
    color: var(--text-primary);
}

/* --- New Promo & Added Sections CSS --- */
.bg-white { background-color: white; }
.m-0 { margin: 0; }
.mt-4 { margin-top: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.w-full { width: 100%; display: flex; }
.text-green { color: #10b981; }

/* Top Promo Bar */
.top-promo-bar {
    background: #0f172a;
    color: white;
    font-size: 0.85rem;
    padding: 0.5rem 0;
    position: relative;
    z-index: 1001;
}

.promo-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.promo-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.promo-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.promo-timer {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

.countdown {
    background: rgba(255,255,255,0.1);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-family: monospace;
    font-size: 1rem;
    letter-spacing: 1px;
}

.timer-large .countdown {
    background: rgba(0,0,0,0.05);
    padding: 0.5rem 1rem;
    font-size: 2rem;
    border-radius: 8px;
    color: var(--primary-pink);
}

.navbar.has-promo {
    position: sticky;
    top: 0;
}

/* Social Proof Strip */
.social-proof-strip {
    background: white;
    border-bottom: 1px solid var(--border-color);
    padding: 1.5rem 0;
}

.proof-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 0;
    flex-wrap: wrap;
    gap: 1rem;
}

.proof-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    color: var(--text-secondary);
}

.proof-item strong {
    color: var(--text-primary);
    font-size: 1.25rem;
}

.stars { color: #fbbf24; }

/* Features Utilities */
.features-grid.cols-2 { grid-template-columns: repeat(2, 1fr); max-width: 900px; margin: 0 auto; }
.flex-row { flex-direction: row; align-items: center; gap: 1rem; padding: 1.5rem; justify-content: flex-start; }
.feature-icon.icon-small { width: 40px; height: 40px; font-size: 1.2rem; margin: 0; }
.feature-icon.green { background: rgba(16, 185, 129, 0.1); color: #10b981; }

/* Use Case Tags */
.use-case { padding: 4rem 2rem; }
.use-case-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}
.tag-pill { border-radius: 2rem; padding: 0.5rem 1.5rem; }

/* Pricing */
.pricing-section { padding: 6rem 2rem; }
.pricing-card {
    max-width: 500px;
    margin: 0 auto;
    padding: 3rem 2.5rem;
    text-align: center;
    border-radius: var(--radius-2xl);
}
.price-strike {
    text-decoration: line-through;
    color: var(--text-secondary);
    font-size: 1.25rem;
    font-weight: 600;
}
.price-current {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
}
.price-badge { margin: 1rem 0 2rem; }
.pricing-features { text-align: left; margin-bottom: 2.5rem; }
.pricing-features p { font-size: 1.1rem; margin-bottom: 1rem; }
.pricing-features ul { list-style: none; display: flex; flex-direction: column; gap: 1rem; }
.pricing-features li { display: flex; align-items: center; font-weight: 500; font-size: 1rem; }
.pricing-features i { margin-right: 0.75rem; font-size: 1.25rem; }
.pricing-note { font-size: 0.8rem; color: var(--text-secondary); margin-top: 1rem; }

/* FAQ */
.faq-list {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.faq-item {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: transform 0.2s;
}
.faq-item:hover { transform: translateX(5px); }
/* --- Centered Light Hero Section --- */
.hero.hero-centered {
    background: white !important; /* Force override original background */
    color: var(--text-primary);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 6rem 1rem 4rem;
}

.hero.hero-centered .hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.hero-content-center {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-logo-center {
    margin-bottom: 2rem;
}

.hero-logo-center .hero-icon {
    width: 64px;
    height: 64px;
    font-size: 2.5rem;
    background: linear-gradient(135deg, #6366f1, #ec4899);
    color: white;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.25);
    animation: float 6s ease-in-out infinite;
}

.hero-badge {
    background: rgba(99, 102, 241, 0.05);
    border: 1px solid rgba(99, 102, 241, 0.2);
    padding: 0.4rem 1rem;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: #4f46e5;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.pulsing-dot {
    width: 8px;
    height: 8px;
    background-color: #6366f1;
    border-radius: 50%;
    box-shadow: 0 0 10px #6366f1, 0 0 20px #6366f1;
    animation: pulseGlow 2s infinite;
}

.pulsing-dot.cyan {
    background-color: #0ea5e9;
    box-shadow: 0 0 10px #0ea5e9, 0 0 20px #0ea5e9;
}

.hero-title-center {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    letter-spacing: -1px;
}

.animated-gradient-text {
    background: linear-gradient(to right, #ec4899, #8b5cf6, #3b82f6, #ec4899);
    background-size: 300% auto;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    animation: animatedGradient 5s linear infinite;
}

.hero-desc-center {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 800px;
}

.highlight-text-light {
    color: var(--text-primary);
    font-weight: 600;
}

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

.btn-glow {
    background: linear-gradient(135deg, #a855f7, #6366f1);
    color: white;
    border: none;
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.4), inset 0 1px 0 rgba(255,255,255,0.2);
    transition: all 0.3s;
    padding: 1rem 2rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    text-decoration: none;
}
.btn-glow:hover {
    box-shadow: 0 0 30px rgba(168, 85, 247, 0.6), inset 0 1px 0 rgba(255,255,255,0.2);
    transform: translateY(-2px);
    color: white;
}

.btn-dark-outline {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    transition: all 0.3s;
    padding: 1rem 2rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    text-decoration: none;
}
.btn-dark-outline:hover {
    background: var(--bg-card);
    color: var(--primary-blue);
    border-color: var(--primary-blue);
}

.hero-mini-proof {
    font-size: 0.85rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 3rem;
}

.hero-mini-proof .divider {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: var(--border-color);
}

.hero-tech-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.tech-pill {
    background: white;
    border: 1px solid var(--border-color);
    padding: 0.4rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-primary);
}

.tech-pill .label {
    color: var(--text-secondary);
    margin-right: 0.25rem;
}

.hero-mockup {
    margin: 3rem 0;
    width: 100%;
    max-width: 1000px;
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(99, 102, 241, 0.15);
    border: 1px solid var(--border-color);
    overflow: hidden;
    position: relative;
    z-index: 10;
}

.mockup-img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-bottom-note {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* Background glows */
.hero-bg-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(99,102,241,0.15) 0%, rgba(15,17,26,0) 70%);
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
}
.hero-bg-glow.glow-1 { top: -200px; left: -200px; }
.hero-bg-glow.glow-2 { bottom: -200px; right: -200px; background: radial-gradient(circle, rgba(236,72,153,0.1) 0%, rgba(15,17,26,0) 70%); }

/* Animations */
@keyframes animatedGradient {
    0% { background-position: 0% 50%; }
    100% { background-position: -300% 50%; }
}

@keyframes pulseGlow {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(99, 102, 241, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(99, 102, 241, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(99, 102, 241, 0); }
}

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

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.animate-fade-in-up > * {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.animate-delay-1 { animation-delay: 0.1s !important; }
.animate-delay-2 { animation-delay: 0.2s !important; }
.animate-delay-3 { animation-delay: 0.3s !important; }
.animate-delay-4 { animation-delay: 0.4s !important; }
.animate-delay-5 { animation-delay: 0.5s !important; }
.animate-delay-6 { animation-delay: 0.6s !important; }
.animate-delay-7 { animation-delay: 0.7s !important; }
.animate-delay-8 { animation-delay: 0.8s !important; }
/* Responsive */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content {
        align-items: center;
    }
    
    .hero-desc {
        max-width: 100%;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .tech-stack {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-card {
        flex: 0 0 calc(50% - 1rem);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-card {
        flex: 0 0 100%;
    }
    
    .steps-container {
        flex-direction: column;
        gap: 3rem;
    }
    
    .step-connector {
        display: none;
    }
    
    .footer-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }
}
