:root {
    --color-bg: #030303;
    --color-surface: rgba(15, 15, 15, 0.4);
    --color-accent: #e24921;
    --color-accent-glow: rgba(226, 73, 33, 0.25);
    --color-text: #Fafafa;
    --color-muted: #8a8a8a;
    --color-border: rgba(255, 255, 255, 0.08);

    --font-heading: 'Orbitron', sans-serif;
    --font-body: 'Open Sans', sans-serif;

    --hero-scale: 1;
    --hero-opacity: 1;
    --hero-blur: 0px;
    --hero-y: 0px;

    --space-text-y: 200px;
    --space-text-opacity: 0;
    --space-img1-y: 50vh;
    --space-img2-y: 80vh;

    --target-left-y: 50px;
    --target-right-opacity: 0;

    --flow-x: 0vw;

    --outro-scale: 0.8;
    --outro-opacity: 0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

html {
    scroll-padding-top: 90px;
}

body {
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-body);
    overflow-x: hidden;
    overscroll-behavior-y: none;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.02em;
}

.text-accent {
    color: var(--color-accent);
}

.visually-hidden {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.cinematic-wrapper {
    position: relative;
    width: 100vw;
}

a[x-apple-data-detectors],
a[x-apple-data-detectors] *,
.footer-grid a[x-apple-data-detectors] {
    color: inherit !important;
    text-decoration: none !important;
    pointer-events: none !important;
}

.noscript-banner {
    position: relative;
    z-index: 1100;
    padding: 1rem 1.5rem;
    background: var(--color-accent);
    color: #fff;
    text-align: center;
    font-size: 0.95rem;
}

.noscript-banner a {
    color: #fff;
    text-decoration: underline;
    font-weight: 700;
}

.scene {
    position: relative;
    width: 100%;
}

.scene-content {
    position: sticky;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    will-change: transform, opacity, filter;
}

.cursor-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 40vw;
    height: 40vw;
    background: radial-gradient(circle, var(--color-accent-glow) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 100;
    transform: translate(-50%, -50%);
    transition: transform 0.1s linear;
    mix-blend-mode: screen;
}

@media (max-width: 768px), (hover: none) {
    .cursor-glow {
        display: none;
    }
}

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.05);
    z-index: 9999;
}

.scroll-progress-bar {
    height: 100%;
    background: var(--color-accent);
    width: var(--scroll-progress-width, 0%);
    will-change: width;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2rem 5%;
    z-index: 1000;
    pointer-events: none;
    transition: padding 0.35s ease, background 0.35s ease, backdrop-filter 0.35s ease;
}

.navbar.scrolled {
    padding: 1rem 5%;
    background: linear-gradient(to bottom, rgba(3, 3, 3, 0.85) 0%, rgba(3, 3, 3, 0.55) 70%, rgba(3, 3, 3, 0) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.nav-container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    pointer-events: auto;
    position: relative;
    width: 100%;
    min-height: 80px;
}

.nav-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: height 0.4s ease;
}

.nav-logo svg,
.nav-logo img {
    height: 80px;
    width: auto;
    transition: height 0.4s ease;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.5));
}

.nav-logo svg path {
    fill: #ffffff;
}

.nav-logo-shield {
    display: none;
}

.svg-text {
    transition: opacity 0.3s ease;
    opacity: 1;
}

.navbar.scrolled .nav-container {
    min-height: 45px;
}

.navbar.scrolled .nav-logo svg {
    height: 45px;
}

.navbar.scrolled .nav-logo .nav-logo-full {
    display: none;
}

.navbar.scrolled .nav-logo .nav-logo-shield {
    display: block;
    height: 32px;
}

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

.nav-btn {
    padding: 0.72rem 1.35rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.nav-btn-primary {
    background: var(--color-accent);
    color: #fff;
    box-shadow: 0 0 15px rgba(226, 73, 33, 0.4);
}

.nav-btn-primary:hover {
    background: #FF5A2E;
    box-shadow: 0 0 25px rgba(226, 73, 33, 0.6);
}

.nav-btn-outline {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.nav-btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

#scene-hero {
    height: 200vh;
    z-index: 1;
}

.hero-bg-img {
    position: absolute;
    inset: -5%;
    background: url('/assets/images/webp/studio-pesi.webp') center/cover no-repeat;
    transform: scale(var(--hero-scale));
    filter: blur(var(--hero-blur));
    opacity: var(--hero-opacity);
    will-change: transform, filter, opacity;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 0%, var(--color-bg) 100%);
    opacity: var(--hero-opacity);
}

.hero-titles {
    position: relative;
    z-index: 2;
    text-align: center;
    transform: translateY(var(--hero-y));
    opacity: var(--hero-opacity);
    will-change: transform, opacity;
}

.hero-main-title {
    font-size: clamp(2.7rem, 9vw, 7.2rem);
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
}

.hero-sub-title {
    display: block;
    font-size: clamp(1.8rem, 5.4vw, 4.5rem);
    margin-top: 5px;
}

.hero-desc {
    margin-top: 1rem;
    font-size: clamp(1.1rem, 2.25vw, 1.35rem);
    color: #fff;
    font-weight: 600;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 1), 0 5px 30px rgba(0, 0, 0, 1);
}

.hero-features {
    list-style: none;
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 2rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 1), 0 5px 30px rgba(0, 0, 0, 1);
}

.hero-features li {
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
}

.hero-features li:not(:last-child)::after {
    content: '/';
    position: absolute;
    right: -1.2rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-accent);
    font-weight: 300;
}

.hero-actions {
    margin-top: 2rem;
}

@media(max-width: 768px) {

    .nav-container {
        justify-content: space-between;
        min-height: 0;
    }

    .nav-logo {
        position: relative;
        top: auto;
        left: 0;
        transform: none;
    }

    .nav-logo .nav-logo-full {
        display: none;
    }

    .nav-logo .nav-logo-shield {
        display: block;
        height: 30px;
    }

    .navbar.scrolled .nav-logo .nav-logo-shield {
        height: 26px;
    }

    .hero-features {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .hero-features li:not(:last-child)::after {
        display: none;
    }

    .hero-actions {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .hero-actions .btn-cine {
        width: 100%;
        max-width: 320px;
        text-align: center;
        box-sizing: border-box;
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    color: var(--color-muted);
    font-family: var(--font-heading);
    font-size: 0.8rem;
    letter-spacing: 2px;
    opacity: var(--hero-opacity);
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--color-accent), transparent);
}

#scene-about {
    height: 200vh;
    z-index: 2;
}

@media (max-width: 768px) {
    #scene-about {
        margin-top: -100vh;
    }
}

#scene-about .scene-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
}

.about-left {
    flex: 1;
    padding-left: 5%;
    transform: translateY(var(--about-title-y, 50px));
    opacity: var(--about-opacity, 0);
    will-change: transform, opacity;
}

.about-title {
    font-size: clamp(3rem, 6vw, 6rem);
    line-height: 1;
}

.about-right {
    flex: 1;
    padding-right: 5%;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    justify-content: center;
    transform: scale(var(--about-card-scale, 0.9));
    opacity: var(--about-card-opacity, 0);
    will-change: transform, opacity;
}

.about-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 12px;
}

.about-card h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.about-card p {
    font-size: 1.2rem;
    color: var(--color-muted);
    line-height: 1.6;
}

@media (max-width: 900px) {
    #scene-about .scene-content {
        flex-direction: column;
        justify-content: center;
        gap: 1.5rem;
        padding: 6rem 6% 3rem;
    }

    .about-left,
    .about-right {
        padding: 0;
        flex: none;
        width: 100%;
        text-align: left;
    }

    .about-right {
        gap: 1.2rem;
    }

    .about-title {
        font-size: clamp(2.2rem, 9vw, 3.4rem);
    }

    .about-card {
        padding: 1.2rem 1.3rem;
    }

    .about-card h3 {
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
    }

    .about-card p {
        font-size: 0.92rem;
        line-height: 1.55;
    }

    .about-card.mt-2 {
        margin-top: 0;
    }
}

#scene-space {
    height: 240vh;
    z-index: 8;
}

.space-text-container {
    position: absolute;
    top: 30%;
    left: 10%;
    max-width: 600px;
    z-index: 2;
    transform: translateY(var(--space-text-y));
    opacity: var(--space-text-opacity);
    will-change: transform, opacity;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.space-title {
    font-size: clamp(3rem, 6vw, 5rem);
    line-height: 1;
}

.space-desc {
    font-size: 1.2rem;
    color: var(--color-muted);
    line-height: 1.8;
    text-shadow: 0 2px 10px #000, 0 5px 20px #000;
}

.space-images {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.parallax-img {
    position: absolute;
    border-radius: 8px;
    overflow: hidden;
    will-change: transform;
}

.parallax-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img-1 {
    width: 35vw;
    height: auto;
    right: 10%;
    top: 20%;
    transform: translateY(var(--space-img1-y));
}

.img-2 {
    width: 45vw;
    height: auto;
    left: -5%;
    bottom: -10%;
    transform: translateY(var(--space-img2-y));
}

.img-3 {
    right: 5%;
    bottom: 10%;
    font-size: 8rem;
    opacity: 0.1;
    transform: translateY(calc(var(--space-img1-y) * -0.5));
}

@media (max-width: 900px) {
    .space-text-container {
        left: 6%;
        right: 6%;
        max-width: none;
    }

    .space-title {
        font-size: clamp(2.2rem, 9vw, 3rem);
        line-height: 1.05;
    }

    .space-desc {
        font-size: 1rem;
        line-height: 1.6;
    }
}

#scene-target {
    height: 200vh;
    z-index: 7;
}

.bg-stroke-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-heading);
    font-size: 20vw;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.03);
    z-index: 0;
    white-space: nowrap;
}

.target-split {
    display: flex;
    width: 100%;
    height: 100%;
    padding: 0 10%;
    z-index: 2;
}

.target-left {
    flex: 1;
    display: flex;
    align-items: center;
    transform: translateY(var(--target-left-y));
    will-change: transform;
}

.target-main-title {
    font-size: clamp(3rem, 6vw, 5rem);
}

.target-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6rem;
    opacity: var(--target-right-opacity);
    will-change: opacity;
}

.target-group h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.target-group p {
    font-size: 1.1rem;
    color: var(--color-muted);
}

@media (max-width: 900px) {
    .target-split {
        flex-direction: column;
        justify-content: center;
        gap: 2.5rem;
        padding: 0 6%;
    }

    .target-left,
    .target-right {
        flex: none;
        width: 100%;
    }

    .target-right {
        display: flex;
        flex-direction: column;
        gap: 3rem;
    }
}

#scene-flow {
    height: 280vh;
    z-index: 6;
}

.flow-content {
    align-items: center;
    justify-content: flex-start;
}

.flow-track {
    display: flex;
    gap: 3vw;
    padding-left: 8vw;
    padding-right: 8vw;
    --flow-scroll-dist: -92vw;
    transform: translateX(calc(var(--flow-progress, 0) * var(--flow-scroll-dist)));
    will-change: transform;
    align-items: stretch;
}

.flow-intro {
    min-width: 32vw;
    align-self: center;
}

.flow-title {
    font-size: clamp(2.6rem, 5.4vw, 5rem);
}

.flow-card {
    min-width: 320px;
    width: 32vw;
    height: auto;
    min-height: 340px;
    background: rgba(20, 20, 20, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2.2rem 2.3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

@media (max-width: 900px) {
    .flow-track {
        gap: 4vw;
        padding-left: 5vw;
        padding-right: 10vw;
        --flow-scroll-dist: -270vw;
    }

    .flow-intro {
        min-width: 70vw;
    }

    .flow-card {
        min-width: 240px;
        width: 68vw;
        height: auto;
        min-height: 220px;
        padding: 1.3rem 1.4rem;
    }

    .flow-card h3 {
        font-size: 1.25rem;
        margin-bottom: 0.6rem;
    }

    .flow-card p {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .flow-icon {
        font-size: 2rem;
        margin-bottom: 0.9rem;
    }

    .fc-num {
        font-size: 6rem;
        top: -10px;
        right: -6px;
    }
}

.fc-num {
    position: absolute;
    top: -22px;
    right: -10px;
    font-size: 9.5rem;
    font-family: var(--font-heading);
    color: rgba(255, 255, 255, 0.05);
    line-height: 1;
}

.flow-icon {
    font-size: 2.6rem;
    color: var(--color-accent);
    margin-bottom: 1.4rem;
    text-shadow: 0 0 18px var(--color-accent-glow);
    z-index: 2;
}

.flow-card h3 {
    font-size: 1.7rem;
    color: var(--color-text);
    margin-bottom: 0.9rem;
    z-index: 2;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.8);
    letter-spacing: 0.02em;
}

.flow-card p {
    color: #d6d6d6;
    font-size: 1.05rem;
    line-height: 1.6;
    z-index: 2;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.8);
}

#scene-studio {
    height: 220vh;
    z-index: 5;
}

.studio-header {
    position: absolute;
    top: 20%;
    text-align: center;
    width: 100%;
    z-index: 2;
    transform: translateY(var(--studio-text-y, 50px));
    opacity: var(--studio-opacity, 0);
    will-change: transform, opacity;
}

.studio-header::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 130vw;
    height: 420%;
    background: radial-gradient(ellipse 50% 65% at center, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.7) 30%, rgba(0, 0, 0, 0.35) 55%, rgba(0, 0, 0, 0.08) 75%, transparent 90%);
    z-index: -1;
    pointer-events: none;
    filter: blur(8px);
}

.studio-title {
    font-size: clamp(3rem, 6vw, 5rem);
    color: #fff;
    text-shadow:
        0 0 8px rgba(0, 0, 0, 1),
        0 2px 14px rgba(0, 0, 0, 1),
        0 6px 30px rgba(0, 0, 0, 0.95),
        0 0 60px rgba(0, 0, 0, 0.7);
}

.studio-desc {
    color: #f0f0f0;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 1rem auto 0;
    font-weight: 500;
    text-shadow:
        0 0 6px rgba(0, 0, 0, 1),
        0 2px 12px rgba(0, 0, 0, 1),
        0 4px 24px rgba(0, 0, 0, 0.9);
}

.studio-gallery {
    position: absolute;
    inset: 0;
    pointer-events: none;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(12, 1fr);
    gap: 0.8rem;
    padding: 5vh 3vw;
}

.sg-img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
    opacity: var(--studio-img-opacity, 0);
    will-change: transform, opacity;
}

.sg-img-1 {
    grid-column: 1 / 7;
    grid-row: 3 / 8;
    transform: translateY(var(--studio-img1-y, 30px));
}

.sg-img-2 {
    grid-column: 8 / 13;
    grid-row: 1 / 6;
    transform: translateY(var(--studio-img2-y, -30px));
}

.sg-img-3 {
    grid-column: 2 / 6;
    grid-row: 9 / 13;
    transform: translateY(var(--studio-img3-y, 30px));
}

.sg-img-4 {
    grid-column: 7 / 12;
    grid-row: 7 / 12;
    transform: translateY(var(--studio-img4-y, -30px));
}

@media (max-width: 768px) {
    #scene-studio {
        height: auto;
    }

    #scene-studio .scene-content {
        position: relative;
        height: auto;
        min-height: 0;
        padding: 5rem 5% 4rem;
        display: block;
        overflow: visible;
    }

    .studio-header {
        position: relative;
        top: auto;
        transform: none;
        opacity: 1;
        text-align: center;
        margin-bottom: 2rem;
    }

    .studio-header::before {
        display: none;
    }

    .studio-gallery {
        position: relative;
        inset: auto;
        padding: 0;
        gap: 0.7rem;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto auto;
    }

    .sg-img {
        height: auto;
        opacity: 1;
        transform: none !important;
        aspect-ratio: 1 / 1;
    }

    .sg-img-1 {
        grid-column: 1 / 3;
        grid-row: 1 / 2;
        aspect-ratio: 16 / 10;
    }

    .sg-img-2 {
        grid-column: 1 / 2;
        grid-row: 2 / 3;
    }

    .sg-img-3 {
        grid-column: 2 / 3;
        grid-row: 2 / 3;
    }

    .sg-img-4 {
        grid-column: 1 / 3;
        grid-row: 3 / 4;
        aspect-ratio: 16 / 10;
    }
}

#scene-shop {
    height: 140vh;
    z-index: 4;
    background: radial-gradient(circle at center, rgba(30, 30, 30, 1) 0%, var(--color-bg) 70%);
}

#scene-shop .scene-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.shop-container {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
    transform: scale(var(--shop-scale, 0.9));
    opacity: var(--shop-opacity, 0);
    will-change: transform, opacity;
}

.shop-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.shop-image img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.8));
    animation: floatItem 6s ease-in-out infinite;
}

@keyframes floatItem {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

.shop-text {
    flex: 1;
    text-align: left;
}

.shop-text h2 {
    font-size: clamp(3rem, 6vw, 6rem);
    margin-bottom: 1rem;
    color: var(--color-text);
}

.shop-text p {
    font-size: 1.5rem;
    color: var(--color-muted);
    margin-bottom: 3rem;
}

@media (max-width: 900px) {
    .shop-container {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

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

#scene-outro {
    height: 450vh;
    z-index: 3;
    background: var(--color-bg);
}

#scene-outro .scene-content {
    padding: 6rem 5% 3rem;
    align-items: center;
    justify-content: center;
}

.outro-container {
    text-align: center;
    max-width: 780px;
    width: 100%;
    margin: 0 auto;
    padding: 0;
    transform: translateY(var(--outro-y, 60px)) scale(var(--outro-scale, 0.95));
    opacity: var(--outro-opacity, 0);
    will-change: transform, opacity;
}

.outro-title {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    margin-bottom: 0.7rem;
}

.outro-desc {
    font-size: 1rem;
    margin-bottom: 1.6rem;
    color: var(--color-muted);
}

.outro-actions {
    margin-bottom: 2rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.outro-actions .btn-cine {
    padding: 0.9rem 1.8rem;
    font-size: 0.92rem;
}

.outro-map {
    width: 100%;
    height: clamp(220px, 32vh, 320px);
    padding: 0;
}

.scene-form {
    height: 80vh;
    z-index: 2;
    background: var(--color-bg);
    position: relative;
}

.scene-form .scene-content {
    position: relative;
    height: 80vh;
    overflow: visible;
    align-items: center;
    justify-content: center;
    padding: 4rem 5% 2rem;
}

.form-container {
    max-width: 720px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.form-grid-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.55rem;
}

@media (max-width: 600px) {
    .form-grid-row {
        grid-template-columns: 1fr;
        gap: 0.55rem;
    }
    .form-grid-row > .cine-input + .cine-input {
        margin-top: 0;
    }
}

.form-divider {
    display: block;
    width: 50px;
    height: 2px;
    background: var(--color-accent);
    margin: 0 auto 1rem;
    border-radius: 2px;
    box-shadow: 0 0 14px rgba(226, 73, 33, 0.5);
}

.form-title {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 1.9rem);
    margin-bottom: 0.4rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.form-subtitle {
    color: var(--color-muted);
    font-size: 0.88rem;
    margin-bottom: 1.2rem;
}

.form-container .contact-box {
    text-align: left;
    padding: 1.4rem 1.6rem;
}

.contact-form > * + * {
    margin-top: 0.6rem;
}

.cine-input,
.cine-textarea {
    padding: 0.75rem 1rem;
    font-size: 0.92rem;
}

.cine-textarea {
    min-height: 90px;
}

.btn-form {
    padding: 0.85rem 1.5rem !important;
    font-size: 0.9rem !important;
}

@media (max-width: 900px) {
    #scene-outro {
        height: 160vh;
    }

    #scene-outro .scene-content {
        padding: 6rem 5% 2rem;
    }

    .outro-map {
        height: clamp(200px, 32vh, 280px);
    }

    .scene-form {
        height: 80vh;
    }

    .scene-form .scene-content {
        height: 80vh;
        padding: 5rem 5% 2rem;
    }
}

.outro-title {
    font-size: clamp(3rem, 8vw, 6rem);
    margin-bottom: 2rem;
}

.outro-desc {
    font-size: 1.25rem;
    color: var(--color-muted);
    margin-bottom: 3rem;
}

.cine-input,
.cine-textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--color-border);
    color: #fff;
    width: 100%;
    border-radius: 4px;
    font-family: var(--font-body);
}

.cine-textarea {
    resize: vertical;
}

.cine-input:focus,
.cine-textarea:focus {
    outline: none;
    border-color: var(--color-accent);
}

.contact-form > * + * {
    margin-top: 1rem;
}

.form-row {
    display: flex;
    gap: 0.6rem;
    align-items: flex-start;
    color: var(--color-muted);
    font-size: 0.85rem;
    line-height: 1.4;
}

.form-row input[type="checkbox"] {
    margin-top: 0.2rem;
    accent-color: var(--color-accent);
}

.form-privacy {
    cursor: pointer;
}

.hp-field {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.btn-form {
    width: 100%;
}

.contact-box-title {
    margin-bottom: 1rem;
    color: var(--color-accent);
}

.form-success {
    background: rgba(40, 160, 80, 0.18);
    border: 1px solid rgba(40, 160, 80, 0.5);
    color: #d6f5e0;
    padding: 0.9rem 1rem;
    border-radius: 6px;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.form-error {
    background: rgba(226, 73, 33, 0.16);
    border: 1px solid rgba(226, 73, 33, 0.55);
    color: #ffd6c8;
    padding: 0.9rem 1rem;
    border-radius: 6px;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.glass-box {
    background: var(--color-surface);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--color-border);
    padding: 2.5rem;
    border-radius: 12px;
}

.map-box {
    position: relative;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    overflow: hidden;
    min-height: 200px;
    padding: 0;
}

.map-box iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(100%) invert(90%) contrast(1.2);
}

@media(max-width: 900px) {
    .glass-box {
        padding: 1.5rem;
    }
}

.btn-cine {
    padding: 1.5rem 3rem;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: inline-block;
}

button.btn-cine {
    appearance: none;
    -webkit-appearance: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-heading);
}

.btn-cine-primary {
    background: var(--color-accent);
    color: #000;
}

.btn-cine-primary:hover {
    background: #fff;
    transform: translateY(-5px);
}

.btn-cine-outline {
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
}

.btn-cine-outline:hover {
    border-color: #fff;
}

.cine-footer {
    position: relative;
    width: 100%;
    padding: 3rem 5%;
    border-top: 1px solid var(--color-border);
    background: var(--color-bg);
    z-index: 2;
}

.footer-link {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

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

.footer-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    color: var(--color-muted);
    font-size: 0.9rem;
}

.footer-logo {
    height: 30px;
    margin-bottom: 1rem;
}

.footer-right {
    text-align: right;
}

.footer-social {
    color: var(--color-text);
    font-size: 1.5rem;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 1rem;
}

@media (max-width: 600px) {
    .cine-footer {
        padding: 1.8rem 5% 1.5rem;
    }

    .footer-grid {
        flex-direction: column;
        gap: 0.9rem;
        text-align: center;
        font-size: 0.82rem;
    }

    .footer-grid div {
        text-align: center !important;
    }

    .footer-grid p {
        margin: 0.15rem 0;
    }

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

    .footer-logo {
        height: 26px;
        margin-bottom: 0.5rem;
    }

    .footer-social {
        font-size: 1.3rem;
        margin-bottom: 0.5rem;
    }
}

.links-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 4rem 1.5rem 3rem;
    position: relative;
    overflow-x: clip;
}

.links-page::before {
    content: "";
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(226, 73, 33, 0.18) 0%, transparent 55%);
    pointer-events: none;
    z-index: 0;
}

.links-bg-text {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-heading);
    font-size: 28vw;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.025);
    z-index: 0;
    white-space: nowrap;
    pointer-events: none;
}

.links-container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 520px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.links-logo {
    width: 110px;
    height: auto;
    margin-bottom: 1.2rem;
}

.links-logo svg {
    width: 100%;
    height: auto;
    fill: var(--color-text);
    filter: drop-shadow(0 0 24px rgba(226, 73, 33, 0.35));
}

.links-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 6vw, 2.8rem);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-bottom: 0.4rem;
    text-align: center;
}

.links-tagline {
    color: var(--color-muted);
    font-size: 0.95rem;
    text-align: center;
    margin-bottom: 2rem;
    max-width: 380px;
}

.link-card {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.1rem 1.3rem;
    background: rgba(20, 20, 20, 0.7);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    color: var(--color-text);
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
    position: relative;
    overflow: hidden;
}

.link-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 0%, rgba(226, 73, 33, 0.08) 50%, transparent 100%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
    pointer-events: none;
}

.link-card:hover {
    transform: translateY(-3px);
    border-color: var(--color-accent);
    background: rgba(30, 30, 30, 0.85);
    box-shadow: 0 14px 30px rgba(226, 73, 33, 0.18);
}

.link-card:hover::before {
    transform: translateX(100%);
}

.link-card-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(226, 73, 33, 0.12);
    color: var(--color-accent);
    font-size: 1.2rem;
    transition: background 0.25s ease;
}

.link-card:hover .link-card-icon {
    background: var(--color-accent);
    color: #000;
}

.link-card-body {
    flex: 1;
    text-align: left;
    line-height: 1.2;
    min-width: 0;
}

.link-card-title {
    display: block;
    font-size: 0.95rem;
}

.link-card-sub {
    display: block;
    font-family: var(--font-body);
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
    font-size: 0.78rem;
    color: var(--color-muted);
    margin-top: 0.2rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.link-card-arrow {
    flex-shrink: 0;
    color: var(--color-muted);
    transition: transform 0.25s ease, color 0.25s ease;
}

.link-card:hover .link-card-arrow {
    transform: translateX(4px);
    color: var(--color-accent);
}

.link-card-primary {
    background: linear-gradient(135deg, rgba(226, 73, 33, 0.95), rgba(180, 50, 18, 0.95));
    border-color: transparent;
}

.link-card-primary .link-card-icon {
    background: rgba(0, 0, 0, 0.18);
    color: #fff;
}

.link-card-primary:hover {
    background: linear-gradient(135deg, #FF5A2E, #e24921);
    border-color: transparent;
    box-shadow: 0 18px 40px rgba(226, 73, 33, 0.45);
}

.link-card-primary:hover .link-card-icon {
    background: rgba(0, 0, 0, 0.28);
    color: #fff;
}

.link-card-primary .link-card-sub {
    color: rgba(255, 255, 255, 0.75);
}

.links-divider {
    width: 100%;
    height: 1px;
    background: var(--color-border);
    margin: 0.5rem 0;
}

.links-footer {
    margin-top: 2rem;
    text-align: center;
    color: var(--color-muted);
    font-size: 0.78rem;
    line-height: 1.6;
    z-index: 1;
    position: relative;
}

.links-footer p {
    margin: 0.15rem 0;
}

.links-footer a {
    color: var(--color-muted);
    text-decoration: none;
}

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

@media (max-width: 480px) {
    .links-page {
        padding: 3rem 1rem 2rem;
    }

    .link-card {
        padding: 0.95rem 1.05rem;
        font-size: 0.85rem;
    }

    .link-card-icon {
        width: 38px;
        height: 38px;
        font-size: 1.05rem;
    }
}

.back-to-top {
    position: fixed;
    bottom: 1.8rem;
    right: 1.8rem;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(20, 20, 20, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 950;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s, background 0.25s ease, border-color 0.25s ease;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.5);
}

.back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    box-shadow: 0 12px 32px rgba(226, 73, 33, 0.45);
}

@media (max-width: 600px) {
    .back-to-top {
        width: 46px;
        height: 46px;
        bottom: 1.2rem;
        right: 1.2rem;
        font-size: 0.9rem;
    }
}

.fade-in-view {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.9s ease, transform 0.9s ease;
    will-change: opacity, transform;
}

.fade-in-view.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.outro-container .outro-desc.fade-in-view {
    transition-delay: 0.1s;
}

.outro-container .outro-actions.fade-in-view {
    transition-delay: 0.2s;
}

.outro-container .outro-map.fade-in-view {
    transition-delay: 0.3s;
}

.error-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 5rem 1.5rem 2rem;
    position: relative;
    overflow-x: clip;
    text-align: center;
}

.error-bg {
    position: fixed;
    inset: 0;
    background:
        radial-gradient(circle at 50% 35%, rgba(226, 73, 33, 0.18) 0%, transparent 55%),
        radial-gradient(circle at 80% 80%, rgba(226, 73, 33, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.error-logo {
    position: absolute;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    opacity: 0.85;
    transition: opacity 0.2s ease;
}

.error-logo:hover {
    opacity: 1;
}

.error-logo img {
    height: 42px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.4));
}

.error-container {
    position: relative;
    z-index: 1;
    max-width: 620px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.error-code {
    font-family: var(--font-heading);
    font-size: clamp(7rem, 22vw, 14rem);
    font-weight: 900;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 2px var(--color-accent);
    letter-spacing: 0.02em;
    margin-bottom: 1.2rem;
    text-shadow: 0 0 60px rgba(226, 73, 33, 0.35);
    user-select: none;
}

.error-title {
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 3.5vw, 2.2rem);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 0.9rem;
}

.error-message {
    color: var(--color-muted);
    font-size: 1rem;
    max-width: 480px;
    margin-bottom: 2.2rem;
    line-height: 1.6;
}

.error-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.error-actions .btn-cine {
    padding: 1rem 2rem;
    font-size: 0.95rem;
}

.error-footer {
    position: relative;
    z-index: 1;
    margin-top: 3rem;
    color: var(--color-muted);
    font-size: 0.78rem;
    text-align: center;
}

.error-footer a {
    color: var(--color-muted);
    text-decoration: none;
}

.error-footer a:hover {
    color: var(--color-accent);
}

@media (max-width: 480px) {
    .error-actions {
        flex-direction: column;
        width: 100%;
        max-width: 280px;
    }

    .error-actions .btn-cine {
        width: 100%;
    }

    .error-logo img {
        height: 36px;
    }
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }

    .cursor-glow {
        display: none;
    }

    .hero-bg-img,
    .hero-titles,
    .about-left,
    .about-right,
    .space-text-container,
    .target-left,
    .target-right,
    .flow-track,
    .studio-header,
    .sg-img,
    .shop-container,
    .outro-container,
    .cine-footer {
        transform: none !important;
        opacity: 1 !important;
        filter: none !important;
    }

    .img-1,
    .img-2,
    .img-3 {
        transform: none !important;
    }

    .shop-image img {
        animation: none !important;
    }
}


@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .hero-bg-img,
    .hero-titles,
    .parallax-img,
    .sg-img,
    .outro-container,
    .form-container,
    .about-card,
    .target-left,
    .target-right,
    .shop-container,
    .studio-header {
        transform: none !important;
        filter: none !important;
        opacity: 1 !important;
    }

    .cursor-glow {
        display: none !important;
    }

    .flow-track {
        transform: none !important;
        overflow-x: auto;
    }
}

/* ===== COOKIE BANNER ===== */
.pf-cookie-banner {
    position: fixed;
    inset: auto 20px 20px 20px;
    z-index: 9999;
    max-width: 1350px;
    margin-left: auto;
    margin-right: auto;
    color: #fff;
    font-family: 'Open Sans', system-ui, sans-serif;
}

.pf-cookie-card {
    background: rgba(10, 10, 10, 0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 18px 24px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.65), 0 2px 12px rgba(0, 0, 0, 0.5);
}

.pf-cookie-main {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 28px;
}

.pf-cookie-text {
    flex: 1 1 auto;
    min-width: 0;
}

.pf-cookie-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(14px, 1.6vw, 17px);
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin: 0 0 6px;
    color: var(--color-accent);
    line-height: 1;
}

.pf-cookie-desc {
    font-size: 13px;
    line-height: 1.45;
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
}

.pf-cookie-desc a {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.pf-cookie-desc a:hover {
    color: var(--color-accent);
}

.pf-cookie-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-end;
    flex-shrink: 0;
}

.pf-cookie-btn {
    appearance: none;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: transparent;
    color: #fff;
    font-family: 'Orbitron', sans-serif;
    font-size: 10.5px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 8px 14px;
    border-radius: 999px;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
    white-space: nowrap;
}

.pf-cookie-btn:hover {
    border-color: rgba(255, 255, 255, 0.5);
}

.pf-cookie-btn-primary {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: #fff;
}

.pf-cookie-btn-primary:hover {
    background: #fff;
    border-color: #fff;
    color: #0a0a0a;
}

.pf-cookie-btn-ghost {
    background: rgba(255, 255, 255, 0.04);
}

.pf-cookie-customize {
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pf-cookie-row {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    justify-content: space-between;
}

.pf-cookie-row-text strong {
    display: block;
    font-size: 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 4px;
    color: #fff;
}

.pf-cookie-row-text p {
    font-size: 12px;
    line-height: 1.5;
    margin: 0;
    color: rgba(255, 255, 255, 0.65);
}

.pf-cookie-row-actions {
    justify-content: flex-end;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 12px;
}

.pf-cookie-locked {
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.5);
    white-space: nowrap;
    align-self: center;
}

.pf-switch {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
    flex-shrink: 0;
    align-self: center;
    cursor: pointer;
}

.pf-switch input {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    cursor: pointer;
}

.pf-switch-slider {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    transition: background 0.2s ease;
}

.pf-switch-slider::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 18px;
    height: 18px;
    background: #fff;
    border-radius: 50%;
    transition: transform 0.2s ease;
}

.pf-switch input:checked + .pf-switch-slider {
    background: var(--color-accent);
}

.pf-switch input:checked + .pf-switch-slider::after {
    transform: translateX(20px);
}

.pf-switch input:focus-visible + .pf-switch-slider {
    outline: 2px solid #fff;
    outline-offset: 2px;
}

@media (max-width: 960px) {
    .pf-cookie-main {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }
    .pf-cookie-actions {
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .pf-cookie-banner {
        inset: auto 10px 10px 10px;
    }
    .pf-cookie-card {
        padding: 16px 18px;
        border-radius: 14px;
    }
    .pf-cookie-actions {
        flex-direction: column;
    }
    .pf-cookie-btn {
        width: 100%;
        flex: none;
    }
}

/* ===== LEGAL PAGES ===== */
body.legal-page {
    background: #050505;
    color: rgba(255, 255, 255, 0.86);
    font-family: 'Open Sans', system-ui, sans-serif;
    line-height: 1.65;
    min-height: 100vh;
    padding: 32px 20px 80px;
}

.legal-container {
    max-width: 760px;
    margin: 0 auto;
}

.legal-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 32px;
    transition: color 0.2s ease;
}

.legal-back:hover {
    color: var(--color-accent);
}

.legal-logo {
    display: block;
    width: 64px;
    height: auto;
    margin: 0 auto 24px;
    opacity: 0.9;
}

.legal-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(24px, 5vw, 36px);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #fff;
    margin: 0 0 6px;
    text-align: center;
}

.legal-updated {
    text-align: center;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    margin: 0 0 40px;
}

.legal-container h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 16px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin: 36px 0 12px;
}

.legal-container h3 {
    font-size: 14px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #fff;
    margin: 24px 0 8px;
}

.legal-container p,
.legal-container li {
    font-size: 14.5px;
    color: rgba(255, 255, 255, 0.78);
}

.legal-container ul,
.legal-container ol {
    padding-left: 22px;
    margin: 8px 0 14px;
}

.legal-container li {
    margin-bottom: 6px;
}

.legal-container a {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.legal-container a:hover {
    color: var(--color-accent);
}

.legal-table {
    width: 100%;
    border-collapse: collapse;
    margin: 12px 0 20px;
    font-size: 13.5px;
}

.legal-table th,
.legal-table td {
    text-align: left;
    padding: 10px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    vertical-align: top;
}

.legal-table th {
    font-family: 'Orbitron', sans-serif;
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 600;
}

.legal-callout {
    border-left: 3px solid var(--color-accent);
    background: rgba(255, 255, 255, 0.03);
    padding: 14px 18px;
    margin: 20px 0;
    border-radius: 0 8px 8px 0;
}

.legal-callout p {
    margin: 0;
    font-size: 13.5px;
}

.legal-footer-note {
    margin-top: 60px;
    text-align: center;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
}

.legal-footer-note a {
    color: rgba(255, 255, 255, 0.7);
}

/* Footer legal links (added to existing cine-footer) */
.footer-legal {
    flex-basis: 100%;
    width: 100%;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    font-size: 12px;
    letter-spacing: 0.04em;
}

.footer-legal a,
.footer-legal button {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    background: none;
    border: none;
    cursor: pointer;
    font: inherit;
    padding: 0;
    transition: color 0.2s ease;
}

.footer-legal a:hover,
.footer-legal button:hover {
    color: var(--color-accent);
}

.footer-legal-sep {
    color: rgba(255, 255, 255, 0.2);
}

/* Form privacy link */
.form-privacy a {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 2px;
}

