:root {
    --bg-dark: #050505;
    --bg-surface: #111111;
    --bg-surface-glass: rgba(17, 17, 17, 0.95);
    --text-main: #ffffff;
    --text-muted: #a1a1aa;
    --accent-purple: #8b5cf6;
    --accent-blue: #3b82f6;
    --gradient-primary: linear-gradient(135deg, var(--accent-purple), var(--accent-blue));
    --border-glass: rgba(255, 255, 255, 0.08);
    --shadow-glass: 0 8px 32px 0 rgba(0, 0, 0, 0.2);
    /* --blur-glass: blur(16px); Removed for performance */
}

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

html {
    scroll-behavior: initial; /* Lenis handles it */
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* 3D Background */
#bg-3d {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -10;
    pointer-events: none;
}

/* Background Effects */
.noise-overlay {
    display: none; /* Disabled for performance */
}

.bg-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px); /* Reduced blur */
    z-index: -1;
    opacity: 0.3; /* Reduced opacity */
    will-change: transform;
}

.orb-1 {
    top: -10%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(139,92,246,0.3) 0%, rgba(5,5,5,0) 70%);
}

.orb-2 {
    top: 40%;
    right: -10%;
    width: 40vw;
    height: 40vw;
    background: radial-gradient(circle, rgba(59,130,246,0.25) 0%, rgba(5,5,5,0) 70%);
}

.orb-3 {
    bottom: -10%;
    left: 20%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(139,92,246,0.2) 0%, rgba(5,5,5,0) 70%);
}

/* Utilities */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-padding {
    padding: 8rem 0;
}

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

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

.glass-panel {
    background: var(--bg-surface-glass);
    /* backdrop-filter removed for performance */
    border: 1px solid var(--border-glass);
    border-radius: 24px;
    box-shadow: var(--shadow-glass);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease;
}

.glass-panel:hover {
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 16px 40px 0 rgba(139, 92, 246, 0.15);
}

.section-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 4rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: 100px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-lg {
    padding: 1.125rem 2.5rem;
    font-size: 1.125rem;
}

.btn-full {
    width: 100%;
}

.btn-primary {
    background: var(--text-main);
    color: var(--bg-dark);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-main);
    border: 1px solid var(--border-glass);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-outline {
    background: transparent;
    color: var(--text-main);
    border: 1px solid var(--border-glass);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 0;
    z-index: 1000;
    transition: all 0.4s ease;
}

.navbar.scrolled {
    padding: 1rem 0;
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-glass);
}

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

.nav-logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}

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

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

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

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 6rem;
}

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

.hero-title {
    font-size: clamp(3rem, 5vw, 5.5rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 500px;
}

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

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-glass);
    border-radius: 100px;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.badge i {
    color: var(--accent-purple);
}

/* Floating Cards Mockup */
.hero-visuals {
    position: relative;
    height: 600px;
    perspective: 1000px;
}

.floating-cards {
    position: absolute;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
}

.floating-card {
    position: absolute;
    padding: 1.5rem;
    background: rgba(17, 17, 17, 0.8);
}

.card-1 {
    width: 240px;
    top: 10%;
    right: 10%;
    z-index: 3;
    animation: float 6s ease-in-out infinite;
}

.card-2 {
    width: 200px;
    top: 50%;
    left: 0;
    z-index: 2;
    animation: float 8s ease-in-out infinite reverse;
}

.card-3 {
    width: 220px;
    bottom: 10%;
    right: 20%;
    z-index: 4;
    animation: float 7s ease-in-out infinite 1s;
}

@keyframes float {
    0% { transform: translateY(0px) rotateZ(0deg); }
    50% { transform: translateY(-20px) rotateZ(2deg); }
    100% { transform: translateY(0px) rotateZ(0deg); }
}

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

.logo-icon {
    font-size: 1.5rem;
    color: var(--accent-blue);
}

.card-stats {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
}

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

.graph-line {
    height: 40px;
    margin-top: 1rem;
    background: linear-gradient(to right, transparent, var(--accent-purple));
    opacity: 0.5;
    border-radius: 4px;
    clip-path: polygon(0 100%, 20% 80%, 40% 90%, 60% 40%, 80% 60%, 100% 0, 100% 100%);
}

.card-video-placeholder {
    width: 100%;
    height: 120px;
    background: #222;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 2rem;
    color: rgba(255,255,255,0.5);
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(255,255,255,0.1);
    border-radius: 3px;
    margin-top: 0.5rem;
    overflow: hidden;
}

.progress-bar .fill {
    height: 100%;
    width: 60%;
    background: var(--gradient-primary);
}

/* Marquee */
.marquee-section {
    padding: 3rem 0;
    border-top: 1px solid var(--border-glass);
    border-bottom: 1px solid var(--border-glass);
    background: rgba(5,5,5,0.5);
    overflow: hidden;
}

.marquee-title {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
}

.marquee-container {
    width: 100%;
    display: flex;
}

.marquee-content {
    display: flex;
    gap: 4rem;
    animation: marquee 20s linear infinite;
    white-space: nowrap;
}

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

.logo-item:hover {
    color: #fff;
    text-shadow: 0 0 20px rgba(255,255,255,0.5);
}

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

/* Results Section */
.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.stat-card {
    padding: 3rem 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-card:hover {
    transform: translateY(-10px);
}

.stat-icon {
    font-size: 3rem;
    color: var(--accent-purple);
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 20px rgba(139,92,246,0.5));
}

.stat-value {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
}

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

/* Video Showcase Carousel Mock */
.video-showcase-carousel {
    padding: 1rem 0;
}

.carousel-track {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    width: 100%;
}

.reel-preview {
    width: 100%;
    height: 450px;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(45deg, #1a1a1a, #2a2a2a);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.reel-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0.6;
    transition: opacity 0.3s ease;
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.reel-preview:hover .reel-video,
.portfolio-item:hover .reel-video {
    opacity: 0.9;
}

.reel-preview:hover .play-btn-overlay {
    transform: scale(1.1);
    color: var(--accent-purple);
}

.play-btn-overlay {
    font-size: 4rem;
    color: rgba(255,255,255,0.8);
    transition: all 0.3s ease;
    z-index: 2;
}

.reel-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1rem;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    font-weight: 600;
    z-index: 2;
}

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

.service-card {
    padding: 2.5rem;
}

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

.service-icon {
    font-size: 2.5rem;
    color: var(--accent-blue);
    margin-bottom: 1.5rem;
}

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

.service-card p {
    color: var(--text-muted);
}

/* Process Timeline */
.process-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline-line {
    position: absolute;
    left: 24px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--accent-purple), var(--accent-blue));
    opacity: 0.3;
}

.process-step {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
    position: relative;
}

.process-step:last-child {
    margin-bottom: 0;
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--bg-surface);
    border: 1px solid var(--accent-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--accent-purple);
    z-index: 2;
    flex-shrink: 0;
    box-shadow: 0 0 20px rgba(139,92,246,0.3);
}

.step-content {
    padding: 2rem;
    flex-grow: 1;
}

.step-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--text-muted);
}

/* Portfolio Placeholder Grid */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.portfolio-item {
    aspect-ratio: 9/16;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background-image: linear-gradient(45deg, #1a1a1a, #2a2a2a);
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

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

.play-icon {
    font-size: 4rem;
    color: white;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px rgba(255,255,255,0.5));
}

.portfolio-tag {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(5px);
    padding: 0.25rem 1rem;
    border-radius: 100px;
    font-size: 0.875rem;
    border: 1px solid rgba(255,255,255,0.2);
}

/* Testimonials */
.testimonials-slider {
    overflow: hidden;
    padding: 1rem 0;
}

.testimonial-track {
    display: flex;
    gap: 2rem;
    width: max-content;
    animation: slideTestimonials 30s linear infinite;
}

.testimonial-track:hover {
    animation-play-state: paused;
}

.testimonial-card {
    width: 400px;
    padding: 2.5rem;
    flex-shrink: 0;
}

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

.testi-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #444, #222);
}

.testi-info h4 {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.testi-info span {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.testi-results {
    margin-bottom: 1.5rem;
}

.result-badge {
    background: rgba(139,92,246,0.1);
    color: var(--accent-purple);
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
}

.testi-text {
    font-size: 1.125rem;
    font-style: italic;
    color: var(--text-muted);
}

@keyframes slideTestimonials {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 1rem)); }
}

/* Pricing */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: center;
}

.pricing-card {
    padding: 3rem 2rem;
    position: relative;
}

.pricing-card.popular {
    border-color: var(--accent-purple);
    box-shadow: 0 0 40px rgba(139,92,246,0.15);
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    padding: 0.5rem 1.5rem;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(139,92,246,0.4);
}

/* Video Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    position: relative;
    width: 90%;
    max-width: 450px;
    height: 80vh;
    border-radius: 20px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 0 50px rgba(139, 92, 246, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

#modal-video {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.pricing-card h3 {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.price {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.price-desc {
    color: var(--text-muted);
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-glass);
}

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

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.pricing-features i {
    color: var(--text-muted);
    font-size: 1.25rem;
}

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

/* FAQ */
.faq-container {
    max-width: 800px;
}

.faq-item {
    margin-bottom: 1rem;
    cursor: pointer;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    font-size: 1.125rem;
    font-weight: 500;
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    opacity: 0;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 2rem 1.5rem;
    max-height: 200px;
    opacity: 1;
}

.faq-answer p {
    color: var(--text-muted);
}

/* Final CTA */
.cta-box {
    padding: 5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-color: rgba(139,92,246,0.3);
}

.cta-glow-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(139,92,246,0.2) 0%, transparent 70%);
    z-index: -1;
}

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

.cta-box p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
}

.cta-btn {
    box-shadow: 0 0 30px rgba(255,255,255,0.2);
}

/* Premium Form */
.premium-form {
    margin-top: 2.5rem;
    text-align: left;
}

.form-row {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.input-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.input-group label {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.input-group input,
.input-group select {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-glass);
    padding: 1rem 1.25rem;
    border-radius: 12px;
    color: var(--text-main);
    font-family: inherit;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
    width: 100%;
}

.input-group input::placeholder {
    color: rgba(255, 255, 255, 0.2);
}

.input-group input:focus,
.input-group select:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-purple);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.2);
}

.input-group select option {
    background: var(--bg-surface);
    color: var(--text-main);
}

.premium-form .btn {
    margin-top: 1rem;
}

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

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

.footer-logo {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.footer-copyright {
    color: var(--text-muted);
    font-size: 0.875rem;
}

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

.social-link {
    color: var(--text-muted);
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: var(--text-main);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .hero-subtitle {
        margin: 0 auto 2.5rem;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .trust-badges {
        justify-content: center;
    }
    
    .hero-visuals {
        height: 500px;
    }
    
    .card-1 { right: 20%; }
    .card-3 { right: 30%; }
    
    .results-grid, .services-grid, .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-card.popular {
        transform: scale(1);
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 4rem 0;
    }

    .section-title {
        font-size: 2.25rem;
        margin-bottom: 2.5rem;
    }

    .stat-value {
        font-size: 2.5rem;
    }

    .nav-links {
        display: none;
    }
    
    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(5, 5, 5, 0.98);
        padding: 2rem;
        border-bottom: 1px solid var(--border-glass);
        backdrop-filter: blur(20px);
        align-items: center;
        gap: 1.5rem;
    }

    .btn-primary:not(.cta-btn, .btn-full) {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero {
        padding-top: 8rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-visuals {
        height: 350px;
        transform: scale(0.8);
    }
    
    .results-grid, .services-grid, .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .carousel-track, .portfolio-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 0.5rem;
    }
    
    .reel-preview {
        height: 250px;
    }

    .portfolio-item {
        height: 250px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .process-step {
        flex-direction: column;
        gap: 1rem;
    }
    
    .timeline-line {
        display: none;
    }
    
    .footer-container {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
}
