:root {
    --bg-deep: #050810;
    --bg-panel: #0c1220;
    --bg-elevated: #121c2e;
    --bg-soft: #182438;
    --bg-card: linear-gradient(160deg, rgba(24, 36, 56, 0.95) 0%, rgba(12, 18, 32, 0.98) 100%);
    --text: #eef2f8;
    --text-muted: #94a3b8;
    --accent: #00d4ff;
    --accent-soft: #33ddff;
    --accent-dim: #0096b8;
    --accent-glow: rgba(0, 212, 255, 0.18);
    --accent-line: rgba(0, 212, 255, 0.35);
    --border: rgba(255, 255, 255, 0.07);
    --border-strong: rgba(255, 255, 255, 0.12);
    --radius: 14px;
    --radius-lg: 22px;
    --shadow: 0 28px 70px rgba(0, 0, 0, 0.55);
    --shadow-soft: 0 12px 40px rgba(0, 0, 0, 0.35);
    --font-display: 'Outfit', system-ui, sans-serif;
    --font-body: 'DM Sans', system-ui, sans-serif;
    --max: 1200px;
    --header-h: 78px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--text);
    background:
        radial-gradient(ellipse 120% 80% at 50% -20%, rgba(0, 212, 255, 0.08), transparent 50%),
        var(--bg-deep);
    min-height: 100vh;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--accent-soft); text-decoration-thickness: 1px; text-underline-offset: 3px; transition: color 0.2s; }
a:hover { color: #fff; }

.skip-link {
    position: absolute; left: -9999px; top: 0;
    background: var(--accent); color: var(--bg-deep);
    padding: 0.75rem 1.25rem; font-weight: 600; z-index: 9999;
}
.skip-link:focus { left: 1rem; top: 1rem; }

.container { width: min(100% - 2.5rem, var(--max)); margin-inline: auto; }

/* Header */
.site-header {
    position: sticky; top: 0; z-index: 100;
    background: rgba(5, 8, 16, 0.88);
    backdrop-filter: blur(16px) saturate(1.2);
    border-bottom: 1px solid var(--border);
}

.header-shell {
    display: flex; align-items: center; justify-content: space-between;
    gap: 1rem; min-height: var(--header-h);
    width: min(100% - 2.5rem, var(--max)); margin-inline: auto;
}

.brand { display: flex; align-items: center; gap: 0.85rem; color: var(--text); text-decoration: none; }

.brand-mark {
    display: flex; align-items: center; justify-content: center;
    width: 46px; height: 46px; border-radius: 12px;
    background: linear-gradient(145deg, rgba(0, 212, 255, 0.2), rgba(0, 212, 255, 0.04));
    border: 1px solid var(--accent-line); color: var(--accent);
    box-shadow: 0 0 24px var(--accent-glow);
}

.brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.brand-name { font-family: var(--font-display); font-weight: 700; font-size: 1.08rem; letter-spacing: -0.02em; }
.brand-tag { font-size: 0.72rem; color: var(--text-muted); max-width: 240px; }

.site-nav { display: flex; flex-wrap: wrap; gap: 0.2rem 0.35rem; align-items: center; }

.nav-link {
    color: var(--text-muted); text-decoration: none;
    font-size: 0.875rem; font-weight: 500;
    padding: 0.5rem 0.75rem; border-radius: 9px;
    transition: color 0.2s, background 0.2s, box-shadow 0.2s;
}
.nav-link:hover, .nav-link[aria-current="page"] {
    color: var(--text);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: inset 0 0 0 1px var(--border);
}

.menu-btn {
    display: none; width: 46px; height: 46px;
    border: 1px solid var(--border-strong); border-radius: 12px;
    background: var(--bg-elevated); cursor: pointer; position: relative;
}
.menu-btn span, .menu-btn span::before, .menu-btn span::after {
    display: block; width: 20px; height: 2px; background: var(--text);
    position: absolute; left: 50%; transform: translateX(-50%);
}
.menu-btn span { top: 50%; margin-top: -1px; }
.menu-btn span::before { content: ''; top: -6px; }
.menu-btn span::after { content: ''; top: 6px; }

/* Buttons */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    gap: 0.5rem; padding: 0.9rem 1.65rem; border-radius: 11px;
    font-family: var(--font-body); font-weight: 600; font-size: 0.9375rem;
    text-decoration: none; border: none; cursor: pointer;
    transition: transform 0.15s, box-shadow 0.2s, background 0.2s;
}
.btn-primary {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dim) 100%);
    color: var(--bg-deep);
    box-shadow: 0 10px 30px var(--accent-glow), inset 0 1px 0 rgba(255,255,255,0.25);
}
.btn-primary:hover { transform: translateY(-2px); color: var(--bg-deep); box-shadow: 0 16px 40px var(--accent-glow); }
.btn-ghost {
    background: rgba(255, 255, 255, 0.03); color: var(--text);
    border: 1px solid var(--border-strong);
    backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.08); color: var(--text); border-color: var(--accent-line); }

/* Hero */
.hero-cinema {
    position: relative; padding: 4.5rem 0 5.5rem; overflow: hidden;
}
.hero-cinema::before {
    content: ''; position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 70% 55% at 85% 15%, var(--accent-glow), transparent),
        linear-gradient(180deg, rgba(12, 18, 32, 0.6) 0%, var(--bg-deep) 100%);
    pointer-events: none;
}
.hero-cinema .container { position: relative; }
.hero-cinema-grid {
    display: grid; grid-template-columns: 1.05fr 0.95fr;
    gap: 3.5rem; align-items: center;
}

.kicker {
    font-size: 0.78rem; font-weight: 600; letter-spacing: 0.14em;
    text-transform: uppercase; color: var(--accent);
    margin: 0 0 0.85rem;
}

.hero-cinema h1 {
    font-family: var(--font-display);
    font-size: clamp(2.1rem, 4.8vw, 3.4rem);
    line-height: 1.1; letter-spacing: -0.035em;
    margin: 0 0 1.35rem; font-weight: 700;
    background: linear-gradient(135deg, #fff 0%, #c8d4e8 100%);
    -webkit-background-clip: text; background-clip: text; color: transparent;
}

.hero-lead { font-size: 1.125rem; color: var(--text-muted); margin: 0 0 2rem; max-width: 52ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }

.hero-visual {
    position: relative; border-radius: var(--radius-lg); overflow: hidden;
    box-shadow: var(--shadow); border: 1px solid var(--border-strong);
}
.hero-visual::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(5, 8, 16, 0.75) 100%);
    pointer-events: none;
}
.hero-visual img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.hero-visual figcaption {
    position: absolute; bottom: 0; left: 0; right: 0; z-index: 1;
    padding: 1.25rem 1.5rem; font-size: 0.875rem; color: #cbd5e1;
}

/* Page hero with image */
.page-hero {
    position: relative; min-height: 280px;
    display: flex; align-items: flex-end;
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}
.page-hero-bg {
    position: absolute; inset: 0;
}
.page-hero-bg img {
    width: 100%; height: 100%; object-fit: cover;
    filter: brightness(0.45) saturate(0.9);
}
.page-hero-bg::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(0deg, var(--bg-deep) 0%, rgba(5,8,16,0.4) 50%, rgba(5,8,16,0.2) 100%);
}
.page-hero-content {
    position: relative; z-index: 1;
    padding: 3rem 0 2.5rem;
    width: min(100% - 2.5rem, var(--max)); margin-inline: auto;
}
.page-hero-content h1 {
    font-family: var(--font-display);
    font-size: clamp(1.9rem, 4vw, 2.75rem);
    margin: 0 0 0.75rem; letter-spacing: -0.03em;
}

.page-head {
    padding: 3.25rem 0 2.25rem;
    background: var(--bg-panel);
    border-bottom: 1px solid var(--border);
}
.page-head h1 {
    font-family: var(--font-display);
    font-size: clamp(1.875rem, 4vw, 2.75rem);
    margin: 0 0 0.75rem; letter-spacing: -0.02em;
}
.subtitle { color: var(--text-muted); font-size: 1.125rem; margin: 0; max-width: 65ch; }

/* Stats */
.stats-strip {
    background: var(--bg-panel);
    border-block: 1px solid var(--border);
    padding: 2.25rem 0;
}
.stats-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
}
.stat-item {
    text-align: center; padding: 1rem;
    border-radius: var(--radius);
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border);
}
.stat-num {
    display: block; font-family: var(--font-display);
    font-size: 1.35rem; font-weight: 700; color: var(--accent);
    line-height: 1.3; letter-spacing: -0.02em;
}
.stat-label { font-size: 0.875rem; color: var(--text-muted); margin: 0.35rem 0 0; }

/* Sections */
.section { padding: 5rem 0; }
.section-alt {
    background: linear-gradient(180deg, rgba(12, 18, 32, 0.5) 0%, rgba(12, 18, 32, 0.85) 100%);
    border-block: 1px solid var(--border);
}
.section-head { max-width: 700px; margin-bottom: 2.75rem; }
.section-head h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.2vw, 2.35rem);
    letter-spacing: -0.025em; margin: 0 0 1rem;
}
.section-head p { color: var(--text-muted); margin: 0; }

/* Feature tiles with images */
.feature-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.35rem; }

.feature-tile {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}
.feature-tile:hover {
    transform: translateY(-4px);
    border-color: var(--accent-line);
    box-shadow: var(--shadow-soft);
}
.feature-tile-img { overflow: hidden; aspect-ratio: 16/10; }
.feature-tile-img img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.4s ease;
}
.feature-tile:hover .feature-tile-img img { transform: scale(1.05); }
.feature-tile-body { padding: 1.5rem 1.65rem 1.75rem; }
.feature-tile h3 { font-family: var(--font-display); font-size: 1.125rem; margin: 0 0 0.55rem; }
.feature-tile p { font-size: 0.9375rem; color: var(--text-muted); margin: 0 0 1rem; }
.tile-link { font-size: 0.875rem; font-weight: 600; text-decoration: none; color: var(--accent); }
.tile-link:hover { color: var(--accent-soft); }

/* Split */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; }
.split-media {
    border-radius: var(--radius-lg); overflow: hidden;
    border: 1px solid var(--border-strong);
    box-shadow: var(--shadow);
}
.split-media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }

/* Timeline */
.timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.15rem; }
.timeline-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.65rem;
    position: relative;
}
.timeline-item::before {
    content: attr(data-step);
    font-family: var(--font-display);
    font-size: 0.72rem; font-weight: 700;
    color: var(--accent); letter-spacing: 0.05em;
    display: block; margin-bottom: 0.75rem;
}
.timeline-item h3 { font-size: 1rem; margin: 0 0 0.5rem; }
.timeline-item p { font-size: 0.875rem; color: var(--text-muted); margin: 0; }

/* Content cards */
.content-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.35rem; }
.content-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.content-card:hover { border-color: var(--accent-line); box-shadow: var(--shadow-soft); }
.content-card img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.content-card-body { padding: 1.5rem 1.65rem; }
.content-card h3 { font-family: var(--font-display); margin: 0 0 0.5rem; font-size: 1.125rem; }
.content-card p { font-size: 0.9375rem; color: var(--text-muted); margin: 0; }

/* Pricing note */
.pricing-note {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.06), rgba(18, 28, 46, 0.9));
    border: 1px solid var(--accent-line);
    border-radius: var(--radius);
    padding: 2rem 2.25rem;
}
.pricing-note p { color: var(--text-muted); margin: 0; max-width: 72ch; }
.pricing-note strong { color: var(--accent-soft); }

/* CTA */
.cta-band {
    background: var(--bg-card);
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-lg);
    padding: 3.25rem 2rem;
    text-align: center; margin-top: 2.5rem;
    box-shadow: var(--shadow-soft);
}
.cta-band h2 { font-family: var(--font-display); margin: 0 0 0.75rem; font-size: 1.75rem; }
.cta-band p { color: var(--text-muted); margin: 0 0 1.65rem; }

.check-list { list-style: none; padding: 0; margin: 1.25rem 0; }
.check-list li {
    padding-left: 1.85rem; position: relative;
    margin-bottom: 0.7rem; color: var(--text-muted);
}
.check-list li::before {
    content: ''; position: absolute; left: 0; top: 0.55rem;
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--accent); box-shadow: 0 0 10px var(--accent-glow);
}

/* Contact */
.contact-layout {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 3rem; padding: 3.5rem 0;
}
.contact-panel h2 { font-family: var(--font-display); margin-top: 0; }
.contact-details { font-style: normal; line-height: 1.85; }
.contact-form {
    background: var(--bg-card);
    border: 1px solid var(--border-strong);
    border-radius: var(--radius);
    padding: 2.25rem;
    box-shadow: var(--shadow-soft);
}
.field { margin-bottom: 1.25rem; }
.field label { display: block; font-weight: 600; font-size: 0.875rem; margin-bottom: 0.45rem; }
.field-note { font-weight: 400; color: var(--text-muted); }
.field input, .field textarea {
    width: 100%; padding: 0.8rem 1rem;
    border: 1px solid var(--border-strong); border-radius: 10px;
    background: rgba(5, 8, 16, 0.6); color: var(--text);
    font-family: var(--font-body); font-size: 1rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.field input:focus, .field textarea:focus {
    outline: none; border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-glow);
}
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
.form-alert {
    background: rgba(255, 100, 100, 0.1);
    border: 1px solid rgba(255, 100, 100, 0.35);
    border-radius: 10px; padding: 1rem; margin-bottom: 1rem;
}
.form-alert ul { margin: 0; padding-left: 1.25rem; }
.form-success {
    background: rgba(0, 212, 255, 0.07);
    border: 1px solid var(--accent-line);
    border-radius: var(--radius); padding: 2.25rem;
}
.form-success h2 { font-family: var(--font-display); margin-top: 0; color: var(--accent); }

/* Map */
.map-section { padding-bottom: 4.5rem; }
.map-section h2 { font-family: var(--font-display); }
.map-note { color: var(--text-muted); margin-bottom: 1rem; }
.map-block {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border-strong);
    box-shadow: var(--shadow-soft);
    background: var(--bg-elevated);
}
.map-embed { width: 100%; height: 420px; border: 0; display: block; }
.map-fallback { margin: 0.75rem 0 0; font-size: 0.875rem; color: var(--text-muted); }

/* Legal */
.legal-doc h2 { font-family: var(--font-display); font-size: 1.375rem; margin: 2rem 0 0.75rem; }
.legal-doc h3 { font-size: 1.125rem; margin: 1.5rem 0 0.5rem; }
.legal-doc p, .legal-doc li { color: var(--text-muted); }
.legal-doc ul, .legal-doc ol { padding-left: 1.5rem; }
.prose-wide { max-width: 760px; }

/* Footer */
.site-footer {
    background: var(--bg-panel);
    border-top: 1px solid var(--border);
    padding: 4rem 0 0; margin-top: 2rem;
}
.footer-grid {
    display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 2rem;
    width: min(100% - 2.5rem, var(--max));
    margin-inline: auto; padding-bottom: 2.75rem;
}
.footer-brand { font-family: var(--font-display); font-weight: 700; font-size: 1.125rem; margin: 0 0 0.75rem; color: var(--text); }
.footer-block p { color: var(--text-muted); font-size: 0.9375rem; margin: 0 0 0.5rem; }
.footer-title { font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text); margin: 0 0 1rem; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links a { color: var(--text-muted); text-decoration: none; font-size: 0.9375rem; }
.footer-links a:hover { color: var(--accent); }
.footer-links li { margin-bottom: 0.5rem; }
.footer-base {
    border-top: 1px solid var(--border);
    padding: 1.35rem; text-align: center;
    font-size: 0.8125rem; color: var(--text-muted);
}

/* Cookie banner */
.cookie-banner {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
    background: rgba(12, 18, 32, 0.96);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--border-strong);
    box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.45);
    padding: 1.35rem;
}
.cookie-inner { width: min(100% - 2.5rem, var(--max)); margin-inline: auto; }
.cookie-banner h2 { font-family: var(--font-display); font-size: 1.125rem; margin: 0 0 0.5rem; }
.cookie-banner p { font-size: 0.9375rem; color: var(--text-muted); margin: 0 0 1rem; max-width: 72ch; }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }

.error-page { text-align: center; padding: 6rem 1rem; }
.error-page h1 { font-family: var(--font-display); font-size: 4rem; color: var(--accent); margin: 0; }
.error-page p { color: var(--text-muted); margin: 1rem 0 2rem; }

@media (max-width: 1024px) {
    .hero-cinema-grid, .split, .contact-layout, .content-grid { grid-template-columns: 1fr; }
    .feature-row, .timeline { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .menu-btn { display: block; }
    .site-nav {
        display: none; position: absolute;
        top: var(--header-h); left: 0; right: 0;
        flex-direction: column;
        background: var(--bg-panel);
        border-bottom: 1px solid var(--border);
        padding: 1rem;
    }
    .site-nav.open { display: flex; }
    .header-shell { position: relative; flex-wrap: wrap; }
    .feature-row, .timeline, .stats-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .hero-cinema h1 { background: none; color: var(--text); -webkit-text-fill-color: var(--text); }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .feature-tile:hover, .btn-primary:hover, .feature-tile:hover .feature-tile-img img { transform: none; }
}
