/* ============================================ */
/* RESET Y VARIABLES GLOBALES */
/* ============================================ */

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

:root {
    /* Colores */
    --color-bg: #0a0a0a;
    --color-text: #f2f2f2;
    --color-text-muted: #999;
    --color-accent: #4a3dff;
    --color-border: rgba(255, 255, 255, 0.1);
    
    /* Tipografía */
    --font-main: 'Instrument Sans', sans-serif;
    --font-serif: 'Instrument Serif', serif;
    --font-tight: 'Inter Tight', sans-serif;
    --font-grotesk: 'Space Grotesk', sans-serif;
    
    /* Espaciado */
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 40px;
    --spacing-xl: 80px;
    
    /* Bordes */
    --radius-sm: 8px;
    --radius-md: 20px;
    --radius-lg: 40px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--color-bg);
    color: var(--color-text);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ============================================ */
/* HEADER STICKY CON ANIMACIONES */
/* ============================================ */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: #000;
    padding: 20px;
    transition: transform 0.6s cubic-bezier(0.44, 0, 0.56, 1);
}

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

/* Logo con animación slide down */
.logo {
    text-decoration: none;
    overflow: hidden;
}

.logo h1 {
    font-family: var(--font-grotesk);
    font-size: 32px;
    font-weight: 700;
    text-transform: none;
    color: var(--color-text);
    letter-spacing: 0;
    animation: logoSlideDown 0.8s cubic-bezier(0.44, 0, 0.56, 1) forwards;
    transform: translateY(-200px);
    will-change: transform;
}

@keyframes logoSlideDown {
    to {
        transform: translateY(0);
    }
}

/* Menu Toggle Button con Animaciones */
.menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px;
    transition: all 0.3s ease;
}

.menu-text-container {
    position: relative;
    width: 64px;
    height: 30px;
    overflow: hidden;
}

.menu-text-hidden,
.menu-text-visible {
    position: absolute;
    right: 0;
    font-family: var(--font-main);
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: -0.04em;
    color: var(--color-text);
    transition: all 0.4s cubic-bezier(0.44, 0, 0.56, 1);
}

.menu-text-hidden {
    top: 0;
    opacity: 0;
    transform: translateY(-20px);
}

.menu-text-visible {
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
}

/* Hamburger Icon */
.hamburger-icon {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    justify-content: center;
    width: 40px;
}

.line {
    width: 40px;
    height: 1px;
    background-color: var(--color-text);
    transition: all 0.4s cubic-bezier(0.44, 0, 0.56, 1);
}

/* Menu Active State */
.menu-toggle.active .menu-text-hidden {
    opacity: 1;
    transform: translateY(0);
}

.menu-toggle.active .menu-text-visible {
    opacity: 0;
    transform: translateY(20px);
}

.menu-toggle.active .line-1 {
    transform: rotate(45deg) translateY(4px);
}

.menu-toggle.active .line-2 {
    transform: rotate(-45deg) translateY(-4px);
}

/* ============================================ */
/* MENU OVERLAY FULLSCREEN */
/* ============================================ */

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-bg);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.6s cubic-bezier(0.44, 0, 0.56, 1);
}

.menu-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.menu-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}
/* ============================================ */
/* Botón RESERVAR TURNO CTA */
/* ============================================ */
.hero-cta {
    display: inline-block;
    margin-top: var(--spacing-md);
    padding: 14px 28px;
    border-radius: 999px;
    border: 1px solid var(--color-border);
    background: transparent;
    color: var(--color-text);
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-cta:hover {
    background: var(--color-accent);
    color: var(--color-bg);
    border-color: var(--color-accent);
    transform: translateY(-2px);
}

/* ============================================ */
/* HERO SECTION CON ANIMACIONES PARALLAX */
/* ============================================ */

.hero-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 132px 20px;
    margin-top: 70px;
    position: relative;
}

.hero-content {
    width: 100%;
    max-width: 1200px;
    text-align: center;
}

.hero-title-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    margin-bottom: var(--spacing-md);
}

.hero-title-line {
    overflow: hidden;
}

.hero-title-main,
.hero-title-italic {
    font-size: clamp(32px, 8vw, 80px);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.5px;
    opacity: 1;
    transform: translateY(200px);
    animation: slideUpFade 1s 0.1s cubic-bezier(0.44, 0, 0.56, 1) forwards;
    will-change: transform, opacity;
}

.hero-title-main.hero-title-animated {
    animation: slideUpFadeGlow 1.2s 0.1s cubic-bezier(0.44, 0, 0.56, 1) forwards;
}

.hero-title-italic {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: clamp(47px, 10vw, 100px);
    animation-delay: 0.2s;
}

.hero-title-italic-inline {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.25em;
    font-weight: 400;
}

@keyframes slideUpFade {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideUpFadeGlow {
    0% {
        transform: translateY(200px);
        opacity: 0;
        text-shadow: 0 0 0px rgba(74, 61, 255, 0);
    }
    60% {
        transform: translateY(0);
        opacity: 1;
        text-shadow: 
            0 0 20px rgba(0, 0, 0, 0.6),
            0 0 40px rgba(0, 0, 0, 0.4),
            0 0 60px rgba(0, 0, 0, 0.2);
    }
    100% {
        transform: translateY(0);
        opacity: 1;
        text-shadow: 
            0 0 10px rgba(74, 61, 255, 0.3),
            0 0 20px rgba(74, 61, 255, 0.2);
    }
}

.hero-subtitle {
    max-width: 800px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(140px);
    animation: slideUpFade 1.4s 0.4s cubic-bezier(0.44, 0, 0.56, 1) forwards;
}

.hero-subtitle p {
    font-size: clamp(18px, 2vw, 24px);
    line-height: 1.5;
    color: rgba(242, 242, 242, 0.9);
}

.hero-subtitle em {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.1em;
    letter-spacing: 0.5px;
}

/* ============================================ */
/* TICKER INFINITO HORIZONTAL */
/* ============================================ */

.ticker-section {
    width: 100%;
    padding: 40px 0;
    overflow: hidden;
    position: relative;
}

.ticker-wrapper {
    width: 170%;
    height: 640px;
    position: relative;

    /* Gradient masks en los bordes */
    -webkit-mask-image: linear-gradient(
        to right,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 1) 12.5%,
        rgba(0, 0, 0, 1) 87.5%,
        rgba(0, 0, 0, 0) 100%
    );
    mask-image: linear-gradient(
        to right,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 1) 12.5%,
        rgba(0, 0, 0, 1) 87.5%,
        rgba(0, 0, 0, 0) 100%
    );

    opacity: 0;
    transform: perspective(1200px) rotateX(20deg) rotateY(20deg);
    animation: fadeInPerspective 1s 0.8s cubic-bezier(0.44, 0, 0.56, 1) forwards;
}

@keyframes fadeInPerspective {
    to {
        opacity: 1;
        transform: perspective(1200px) rotateX(0) rotateY(0);
    }
}

/* TRACK */
.ticker-track {
    display: flex;
    gap: 24px;
    list-style: none;
    width: max-content;
    animation: tickerScroll 40s linear infinite;
    will-change: transform;
}

/* PAUSA AL HOVER */
.ticker-wrapper:hover .ticker-track {
    animation-play-state: paused;
}

/* ANIMACIÓN INFINITA REAL */
@keyframes tickerScroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

.ticker-item {
    flex-shrink: 0;
}

.ticker-image {
    width: 686px;
    height: 500px;
    object-fit: cover;
    border-radius: var(--radius-sm);
}


/* ============================================ */
/* SERVICES SECTION CON CARDS HOVER */
/* ============================================ */

.services-section {
    padding: var(--spacing-xl) var(--spacing-lg);
    max-width: 1440px;
    margin: 0 auto;
}

.services-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

.services-title h2 {
    font-size: clamp(40px, 7vw, 70px);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -2.3px;
    opacity: 0;
    transform: translateY(100px) rotate(3deg);
    animation: slideUpRotate 1s cubic-bezier(0.44, 0, 0.56, 1) forwards;
}

@keyframes slideUpRotate {
    to {
        opacity: 1;
        transform: translateY(0) rotate(0);
    }
}

.services-description {
    max-width: 900px;
}

.services-description p {
    font-size: clamp(18px, 2vw, 24px);
    line-height: 1.3;
    color: var(--color-text-muted);
    margin-bottom: 8px;
}

.services-description em {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.2em;
    color: var(--color-text);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    padding: 0 var(--spacing-lg);
}

/* Service Card con hover effect */
.service-card {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: transform 0.3s ease;
}

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

.service-image {
    width: 350px;
    height: 350px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    position: relative;
}

.service-image-inner {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a, #3a3a3a);
    transition: transform 0.6s cubic-bezier(0.44, 0, 0.56, 1);
    will-change: transform;
}

.service-card:hover .service-image-inner {
    transform: scale(1.25);
}

.service-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-number {
    font-size: 16px;
    color: var(--color-text-muted);
}

.service-info h3 {
    font-size: clamp(18px, 2vw, 24px);
    font-weight: 500;
    letter-spacing: -0.5px;
}

.service-info p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text-muted);
}

/* ============================================ */
/* TESTIMONIALS CON ZOOM ON SCROLL */
/* ============================================ */

.testimonials-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--color-bg);
}

.testimonials-header {
    text-align: center;
    padding: 0 var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.testimonials-header h6 {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: clamp(24px, 3vw, 30px);
    line-height: 1.2;
    color: #ccc;
    margin-bottom: 8px;
}

.testimonials-header h2 {
    font-size: clamp(28px, 6vw, 70px);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -2.3px;
}

/* Zoom Image Container */
.zoom-image-container {
    width: 100%;
    padding: 0 var(--spacing-lg);
    margin: var(--spacing-lg) 0;
    position: sticky;
    top: 0;
    overflow: hidden;
}

.zoom-image-wrapper {
    width: 100%;
    max-width: 1440px;
    height: 75vh;
    margin: 0 auto;
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
}

.zoom-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    transform: scale(1.25);
    transition: transform 0.4s cubic-bezier(0.44, 0, 0.56, 1);
    will-change: transform;
}

/* Zoom effect on scroll se controla via JS */
.zoom-image-wrapper.zoomed .zoom-image-placeholder {
    transform: scale(1);
}

/* Vertical Ticker de Testimonios */
/* Vertical Ticker de Testimonios */
.testimonials-ticker-wrapper {
    max-width: 500px; /* ajustado al ancho de la card */
    height: 641px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;

    -webkit-mask-image: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 1) 12.5%,
        rgba(0, 0, 0, 1) 87.5%,
        rgba(0, 0, 0, 0) 100%
    );
    mask-image: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 1) 12.5%,
        rgba(0, 0, 0, 1) 87.5%,
        rgba(0, 0, 0, 0) 100%
    );
}

.testimonials-ticker-track {
    display: flex;
    flex-direction: column;
    gap: 24px;
    animation: tickerScrollVertical 30s linear infinite;
    will-change: transform;
}

@keyframes tickerScrollVertical {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-50%);
    }
}

.testimonial-card {
    width: 500px;
    height: 200px;
    border-radius: var(--radius-md);
    flex-shrink: 0;
    overflow: hidden;
    background: #000;
}

/* Imagen dentro de la card */
.testimonial-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ============================================ */
/* INSTAGRAM SECTION */
/* ============================================ */

.instagram-section {
    padding: var(--spacing-xl) var(--spacing-lg);
    max-width: 1440px;
    margin: 0 auto;
}

.instagram-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.instagram-title h6 {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: clamp(18px, 2vw, 24px);
    color: var(--color-text-muted);
    margin-bottom: 8px;
}

.instagram-title h2 {
    font-size: clamp(40px, 6vw, 70px);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -2.3px;
}

.instagram-description {
    max-width: 10px;
}

.instagram-description p {
    font-size: clamp(18px, 2vw, 24px);
    line-height: 1.0;
    color: var(--color-text-muted);
}

.instagram-description em {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--color-text);
}

.instagram-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: var(--spacing-md);
}

.instagram-link {
    width: 30%;
    border-radius: var(--radius-sm);
    transition: transform 0.3s ease;
    display: block;
    margin: 0;
    overflow: hidden;
    background-color: var(--color-bg);
    border: 1px solid var(--color-border);
    text-decoration: none;
}

.instagram-link:hover {
    transform: scale(1.05);
}

.instagram-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-sm);
}

/* ============================================ */
/* PRICING SECTION */
/* ============================================ */

.pricing-section {
    padding: var(--spacing-xl) var(--spacing-lg);
    max-width: 1440px;
    margin: 0 auto;
}

.pricing-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.pricing-header h2 {
    font-size: clamp(40px, 6vw, 70px);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -2.3px;
}

.pricing-grid {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
}

.pricing-card {
    background: #0f0f0f;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: var(--spacing-lg);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.2);
}

.pricing-card-featured {
    border-color: var(--color-accent);
    background: linear-gradient(135deg, #1a0a0a, #0f0f0f);
}

.pricing-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    background-image: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255, 255, 255, 0.1) 10px,
        rgba(255, 255, 255, 0.1) 20px
    );
    pointer-events: none;
}

.pricing-content {
    position: relative;
    z-index: 1;
}

.pricing-badge {
    display: inline-block;
    background: var(--color-accent);
    color: #000;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: var(--spacing-sm);
}

.pricing-content h3 {
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

.pricing-price {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: var(--spacing-sm);
}

.price {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    font-family: var(--font-tight);
}

.period {
    font-size: 16px;
    color: var(--color-text-muted);
}

.pricing-content > p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text-muted);
    margin-bottom: var(--spacing-md);
}

.pricing-btn {
    display: inline-block;
    width: 100%;
    padding: 16px 32px;
    background: var(--color-text);
    color: var(--color-bg);
    text-align: center;
    text-decoration: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    margin-bottom: var(--spacing-md);
}

.pricing-btn:hover {
    background: var(--color-accent);
    color: var(--color-text);
    transform: scale(1.02);
}

.pricing-features h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    padding-top: var(--spacing-sm);
    border-top: 1px solid var(--color-border);
}

.pricing-features ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pricing-features li {
    font-size: 15px;
    line-height: 1.6;
    color: var(--color-text-muted);
    padding-left: 24px;
    position: relative;
}

.pricing-features li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--color-accent);
}

/* ============================================ */
/* FAQ ACCORDION SECTION */
/* ============================================ */

.faq-section {
    padding: var(--spacing-xl) var(--spacing-lg);
    max-width: 1200px;
    margin: 0 auto;
}

.faq-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.faq-header h2 {
    font-size: clamp(40px, 6vw, 70px);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -2.3px;
    margin-bottom: 8px;
}

.faq-header h6 {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: clamp(18px, 2vw, 24px);
    color: var(--color-text-muted);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item {
    border-bottom: 1px solid var(--color-border);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: var(--spacing-md) 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing-md);
    cursor: pointer;
    text-align: left;
    color: var(--color-text);
    font-size: clamp(18px, 2.5vw, 28px);
    font-weight: 500;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--color-accent);
}

.faq-icon {
    position: relative;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.icon-line {
    position: absolute;
    background: var(--color-text);
    transition: all 0.3s cubic-bezier(0.44, 0, 0.56, 1);
}

.icon-line-h {
    width: 24px;
    height: 2px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.icon-line-v {
    width: 2px;
    height: 24px;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
}

.faq-item.active .icon-line-v {
    transform: translateX(-50%) rotate(90deg);
    opacity: 0;
}

.faq-item.active .faq-question {
    color: var(--color-accent);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.44, 0, 0.56, 1);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    margin: 4px 0;
    font-size: 16px;
    line-height: 1.4;
    color: var(--color-text-muted);
}

/* ============================================ */
/* CONTACT FORM SECTION */
/* ============================================ */
.contact-section {
    padding: calc(var(--spacing-xl) * 0.75) var(--spacing-lg);
    max-width: 800px;
    margin: calc(var(--spacing-xl) * 1.2) auto 0;
}

/* separa título del form */
.contact-title {
    margin-bottom: var(--spacing-lg);
    text-align: center;
}

.contact-form {
    background: linear-gradient(135deg, #141414, #0d0d0d);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: var(--spacing-md);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

/* Inputs y textarea */
.contact-form input,
.contact-form textarea {
    width: 100%;
    background: #0b0b0b;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    padding: 14px 16px;
    font-family: var(--font-main);
    font-size: 15px;
    color: var(--color-text);
    outline: none;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.contact-form textarea {
    resize: none;
    min-height: 120px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--color-text-muted);
}

/* Focus */
.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--color-accent);
    background: #0f0f0f;
}

/* Botón */
.contact-form button {
    margin-top: var(--spacing-sm);
    padding: 14px;
    border-radius: var(--radius-sm);
    border: none;
    background: var(--color-text);
    color: var(--color-bg);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-form button:hover {
    background: var(--color-accent);
    color: var(--color-text);
    transform: translateY(-2px);
}

/* ============================================ */
/* FOOTER */
/* ============================================ */

.footer {
    padding: var(--spacing-xl) var(--spacing-lg);
    border-top: 1px solid var(--color-border);
}

.footer-container {
    max-width: 1440px;
    margin: 0 auto;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.footer-link {
    text-decoration: none;
    color: var(--color-text);
    position: relative;
    overflow: hidden;
    display: inline-block;
}

.footer-link-text {
    position: relative;
    display: block;
}

.footer-link-text span {
    display: block;
    font-size: 16px;
    transition: transform 0.4s cubic-bezier(0.44, 0, 0.56, 1);
}

.text-1 {
    transform: translateY(0);
}

.text-2 {
    position: absolute;
    top: 0;
    left: 0;
    transform: translateY(100%);
    color: var(--color-accent);
}

.footer-link:hover .text-1 {
    transform: translateY(-100%);
}

.footer-link:hover .text-2 {
    transform: translateY(0);
}

/* ============================================ */
/* BACKGROUND NOISE */
/* ============================================ */

.bg-noise {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* ============================================ */
/* MENU OVERLAY NAVIGATION STYLES */
/* ============================================ */

.menu-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-lg);
}

.menu-nav-link {
    font-size: clamp(32px, 6vw, 64px);
    font-weight: 700;
    color: var(--color-text);
    text-decoration: none;
    letter-spacing: -2px;
    position: relative;
    overflow: hidden;
    display: inline-block;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.3s ease;
}

.menu-overlay.active .menu-nav-link {
    animation: menuLinkSlideUp 0.6s cubic-bezier(0.44, 0, 0.56, 1) forwards;
}

.menu-nav-link:nth-child(1) { animation-delay: 0.1s; }
.menu-nav-link:nth-child(2) { animation-delay: 0.15s; }
.menu-nav-link:nth-child(3) { animation-delay: 0.2s; }
.menu-nav-link:nth-child(4) { animation-delay: 0.25s; }
.menu-nav-link:nth-child(5) { animation-delay: 0.3s; }
.menu-nav-link:nth-child(6) { animation-delay: 0.35s; }

@keyframes menuLinkSlideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.menu-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--color-accent);
    transition: width 0.4s cubic-bezier(0.44, 0, 0.56, 1);
}

.menu-nav-link:hover::after {
    width: 100%;
}

.menu-nav-link:hover {
    color: var(--color-accent);
}

/* ============================================ */
/* RESPONSIVE DESIGN */
/* ============================================ */

@media (max-width: 768px) {
    .services-header,
    .instagram-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .services-grid,
    .instagram-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .ticker-wrapper {
        width: 200%;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .menu-nav-link {
        font-size: clamp(24px, 8vw, 48px);
    }
}

@media (max-width: 480px) {
    .header {
        padding: 16px;
    }
    
    .logo h1 {
        font-size: 24px;
    }
    
    .menu-text-container {
        width: 50px;
    }
    
    .hamburger-icon {
        width: 32px;
    }
    
    .line {
        width: 32px;
    }
}
