/* LightMonkey-HDR Marketing Website
   Dark theme matching the application
   meai-studios 2024-2025 */

/* ===== CSS Variables ===== */
:root {
    --bg-primary: #1a1d23;
    --bg-secondary: #2a2d35;
    --bg-card: #3a3d45;
    --brand-pink: #ff0048;
    --brand-pink-hover: #e6003f;
    --text-primary: #f9fafb;
    --text-secondary: #9ca3af;
    --text-muted: #6b7280;
    --accent-cyan: #06b6d4;
    --accent-magenta: #ec4899;
    --accent-yellow: #eab308;
    --accent-green: #10b981;
    --accent-blue: #3b82f6;
    --border-color: #374151;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3), 0 2px 4px -1px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.4), 0 4px 6px -2px rgba(0, 0, 0, 0.2);
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: var(--brand-pink);
    text-decoration: none;
    transition: color 0.2s ease;
}

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

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

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

/* ===== Layout ===== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

section {
    padding: 5rem 0;
}

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

.section-title h2 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.section-title p {
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.btn-primary {
    background: var(--brand-pink);
    color: white;
    box-shadow: 0 4px 14px rgba(255, 0, 72, 0.4);
}

.btn-primary:hover {
    background: var(--brand-pink-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 0, 72, 0.5);
    color: white;
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-color);
}

.btn-secondary:hover {
    border-color: var(--accent-cyan);
    color: var(--accent-cyan);
}

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(26, 29, 35, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: -0.02em;
}

.brand-light {
    color: var(--brand-pink);
}

.brand-hdr {
    color: var(--text-primary);
    margin-left: 0.3em;
}

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

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

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

.nav-cta {
    display: flex;
    gap: 1rem;
}

/* Mobile menu */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s;
}

/* ===== Hero Section ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 120px;
    padding-bottom: 2rem;
    background: linear-gradient(135deg, var(--bg-primary) 0%, #1e2330 50%, var(--bg-primary) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 0, 72, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.hero-splash {
    text-align: center;
    margin-bottom: 1rem;
    width: 100%;
}

.hero-splash img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
    border-radius: 12px;
}

.hero-main {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
}

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

.hero-content h1 span {
    color: var(--brand-pink);
}

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

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

.hero-image {
    position: relative;
}

.hero-image img {
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.hero-badge {
    position: absolute;
    bottom: -1rem;
    right: -1rem;
    background: var(--bg-card);
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-badge .icon {
    color: var(--accent-green);
}

/* ===== Features Section ===== */
.features {
    background: var(--bg-secondary);
}

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

.feature-card {
    background: var(--bg-primary);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: var(--brand-pink);
    box-shadow: 0 8px 30px rgba(255, 0, 72, 0.15);
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    font-size: 1.5rem;
}

.feature-icon.cyan { background: rgba(6, 182, 212, 0.15); color: var(--accent-cyan); }
.feature-icon.pink { background: rgba(255, 0, 72, 0.15); color: var(--brand-pink); }
.feature-icon.yellow { background: rgba(234, 179, 8, 0.15); color: var(--accent-yellow); }
.feature-icon.green { background: rgba(16, 185, 129, 0.15); color: var(--accent-green); }
.feature-icon.blue { background: rgba(59, 130, 246, 0.15); color: var(--accent-blue); }
.feature-icon.magenta { background: rgba(236, 72, 153, 0.15); color: var(--accent-magenta); }

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.feature-card p {
    font-size: 0.9375rem;
    margin-bottom: 0;
}

/* ===== Gallery Section ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.02);
    border-color: var(--brand-pink);
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.gallery-item .overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 29, 35, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .overlay {
    opacity: 1;
}

.gallery-item .overlay span {
    background: var(--brand-pink);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 500;
}

/* ===== Export Section ===== */
.export-section {
    background: var(--bg-secondary);
    padding: 6rem 0;
}

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

.export-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.export-text h2 .highlight {
    color: var(--brand-pink);
}

.export-subtitle {
    color: var(--text-secondary);
    font-size: 1.25rem;
    margin-bottom: 3rem;
}

.export-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

.export-feature {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.export-icon {
    font-size: 2rem;
    min-width: 2.5rem;
    text-align: center;
}

.export-feature h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.export-feature p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.6;
}

.export-image {
    position: relative;
}

.export-screenshot {
    width: 100%;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s ease;
}

.export-screenshot:hover {
    transform: scale(1.02);
}

.export-badge {
    position: absolute;
    bottom: -1rem;
    right: 2rem;
    background: linear-gradient(135deg, var(--brand-pink), var(--accent-magenta));
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    font-size: 0.875rem;
}

.export-badge strong {
    font-size: 1.25rem;
    font-weight: 700;
}

@media (max-width: 968px) {
    .export-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .export-text {
        order: 2;
    }

    .export-image {
        order: 1;
    }

    .export-text h2 {
        font-size: 2rem;
    }
}

/* ===== Screenshot Section ===== */
.screenshot-section {
    background: var(--bg-primary);
    padding: 4rem 0;
}

.screenshot-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.full-screenshot {
    width: 100%;
    max-width: 1200px;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

/* Screenshot Carousel */
.screenshot-carousel {
    position: relative;
    width: 100%;
}

.carousel-viewport {
    overflow: hidden;
    border-radius: 12px;
}

.carousel-slides {
    display: flex;
    transition: transform 0.6s ease-in-out;
}

.carousel-slide {
    min-width: 100%;
    width: 100%;
    height: auto;
    flex-shrink: 0;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 1.5rem;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #6b7280;
    border: none;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
    padding: 0;
}

.carousel-dot:hover {
    background: #9ca3af;
}

.carousel-dot.active {
    background: #ff0048;
    transform: scale(1.2);
}

/* ===== Workflow Section ===== */
.workflow-section {
    background: var(--bg-primary);
    padding: 2rem 0 6rem 0;  /* Reduced top padding for better alignment with hero section */
}

.workflow-section .section-title h2 {
    font-size: 3.5rem;
    line-height: 1.1;
}

.workflow-section .section-title h2 .highlight-pink {
    color: var(--brand-pink);
}

.workflow-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr 1.3fr;
    gap: 2rem;
    align-items: start;
    margin-top: 4rem;
    max-width: 100%;
}

.workflow-step {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    min-width: 0; /* Allow shrinking */
}

.workflow-step-result {
    gap: 2rem;
}

.workflow-step-result .workflow-image {
    transform: none;
    margin-bottom: 0;
}

.workflow-step-result .workflow-image:hover {
    transform: translateY(-8px);
}

.step-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--brand-pink), var(--accent-magenta));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    width: fit-content;
}

.workflow-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s ease;
}

.workflow-image:hover {
    transform: translateY(-8px);
}

.workflow-image img {
    width: 100%;
    display: block;
}

/* Make first two workflow images same height */
.workflow-step:not(.workflow-step-result) .workflow-image {
    height: 180px;
}

.workflow-step:not(.workflow-step-result) .workflow-image img {
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.image-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(26, 29, 35, 0.95), transparent);
    padding: 2rem 1.5rem 1rem;
    color: white;
    font-weight: 600;
    font-size: 1.125rem;
}

.workflow-description h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.workflow-description p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.feature-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.feature-list li {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-list li::before {
    content: '';
}

.workflow-arrow {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    color: var(--brand-pink);
    padding-top: 8rem;
}

.workflow-arrow svg {
    width: 32px;
    height: 32px;
    stroke-width: 2;
}

.workflow-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem;
    background: var(--bg-secondary);
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.workflow-cta p {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

@media (max-width: 968px) {
    .workflow-showcase {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .step-badge {
        margin: 0 auto;
    }
}

/* ===== Video Section ===== */
.video-section {
    background: var(--bg-secondary);
}

.video-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
}

.video-placeholder {
    aspect-ratio: 16 / 9;
    background: var(--bg-primary);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.play-button {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--brand-pink);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.play-button:hover {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(255, 0, 72, 0.5);
}

.play-button svg {
    width: 32px;
    height: 32px;
    fill: white;
    margin-left: 4px;
}

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

.testimonial-card {
    background: var(--bg-secondary);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 4rem;
    color: var(--brand-pink);
    opacity: 0.2;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-text {
    font-size: 1rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--bg-card);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--brand-pink);
}

.testimonial-info h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.testimonial-info p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* ===== Pricing Section ===== */
.pricing {
    background: var(--bg-secondary);
}

.pricing-card {
    max-width: 500px;
    margin: 0 auto;
    background: var(--bg-primary);
    border-radius: 16px;
    padding: 3rem;
    text-align: center;
    border: 2px solid var(--brand-pink);
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--brand-pink), var(--accent-magenta), var(--accent-cyan));
}

.pricing-badge {
    display: inline-block;
    background: var(--brand-pink);
    color: white;
    padding: 0.375rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.pricing-price {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.pricing-price span {
    font-size: 1.25rem;
    color: var(--text-secondary);
    font-weight: 400;
}

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

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

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

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

.pricing-features .check {
    color: var(--accent-green);
    font-size: 1.25rem;
}

.pricing-card .btn-primary {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

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

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

.footer-brand {
    max-width: 300px;
}

.footer-brand .logo {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--text-primary);
}

.footer-brand p {
    font-size: 0.9375rem;
}

.footer-links h4 {
    color: var(--text-primary);
    margin-bottom: 1.25rem;
    font-size: 1rem;
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

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

.footer-links a:hover {
    color: var(--brand-pink);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.footer-bottom p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

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

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

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

/* ===== Lightbox ===== */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90vh;
    position: relative;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
}

.lightbox-close {
    position: absolute;
    top: -3rem;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.2s;
}

.lightbox-close:hover {
    color: var(--brand-pink);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--bg-secondary);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.2s;
}

.lightbox-nav:hover {
    background: var(--brand-pink);
}

.lightbox-prev { left: -4rem; }
.lightbox-next { right: -4rem; }

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
    .hero-main {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-splash img {
        width: 100%;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image {
        order: -1;
        max-width: 600px;
        margin: 0 auto;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 15px;
    }

    .nav-links,
    .nav-cta {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .hero {
        padding-top: 140px;
    }

    .hero-splash img {
        width: 100%;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-main {
        gap: 2rem;
    }

    .features-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand {
        max-width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
    }

    .pricing-card {
        padding: 2rem;
    }

    .lightbox-nav {
        display: none;
    }
}

@media (max-width: 480px) {
    section {
        padding: 3rem 0;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }
}
