/* ============================================================
   DARK AESTHETIC COLOR BY NUMBER - NOIR THEME
   Film Noir / Detective Movie Aesthetic
   ============================================================ */

/* === CSS CUSTOM PROPERTIES === */
:root {
    --primary: #0a0a0a;
    --primary-deep: #050505;
    --secondary: #1a1a1a;
    --secondary-light: #222222;
    --accent: #c41e3a;
    --accent-dark: #9a1830;
    --accent-glow: rgba(196, 30, 58, 0.3);
    --white: #ffffff;
    --white-soft: #f0f0f0;
    --white-muted: #cccccc;
    --gray-100: #e5e5e5;
    --gray-200: #b3b3b3;
    --gray-300: #888888;
    --gray-400: #666666;
    --gray-500: #444444;
    --gray-600: #333333;
    --gray-700: #252525;
    --gray-800: #1e1e1e;
    --font-heading: 'Playfair Display', 'Georgia', serif;
    --font-body: 'Source Sans 3', 'Helvetica Neue', sans-serif;
    --font-mono: 'JetBrains Mono', 'Courier New', monospace;
    --transition-fast: 0.2s ease;
    --transition-med: 0.4s ease;
    --transition-slow: 0.7s ease;
    --transition-dramatic: 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.4);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.6);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.8);
    --shadow-accent: 0 4px 30px rgba(196, 30, 58, 0.2);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --max-width: 1200px;
    --header-height: 72px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    background-color: var(--primary);
    color: var(--white-muted);
    line-height: 1.7;
    overflow-x: hidden;
    position: relative;
}

::selection {
    background: var(--accent);
    color: var(--white);
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--primary);
}

::-webkit-scrollbar-thumb {
    background: var(--gray-600);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
}

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

a {
    color: var(--accent);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--white);
}

a:focus-visible,
button:focus-visible,
input:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

/* === VENETIAN BLIND OVERLAY === */
.venetian-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 4px,
        rgba(0, 0, 0, 0.03) 4px,
        rgba(0, 0, 0, 0.03) 5px
    );
    mix-blend-mode: multiply;
}

/* === NOIR GRAIN TEXTURE === */
.noir-grain {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.04;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px 256px;
}

/* === COOKIE CONSENT BANNER === */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background: var(--secondary);
    border-top: 1px solid var(--gray-600);
    box-shadow: 0 -4px 30px rgba(0,0,0,0.6);
    padding: 0;
    animation: slideUpCookie 0.5s ease forwards;
}

@keyframes slideUpCookie {
    from { transform: translateY(100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.cookie-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 24px 32px;
}

.cookie-text {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 16px;
}

.cookie-icon-wrap {
    flex-shrink: 0;
    color: var(--accent);
    margin-top: 2px;
}

.cookie-text h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 4px;
}

.cookie-text p {
    font-size: 0.875rem;
    color: var(--gray-200);
    line-height: 1.5;
}

.cookie-text a {
    color: var(--accent);
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-cookie-accept {
    background: var(--accent);
    color: var(--white);
    border: none;
    padding: 10px 24px;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
    letter-spacing: 0.02em;
}

.btn-cookie-accept:hover {
    background: var(--accent-dark);
}

.btn-cookie-essential {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--gray-400);
    padding: 10px 24px;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.btn-cookie-essential:hover {
    border-color: var(--white);
}

.btn-cookie-settings {
    background: transparent;
    color: var(--gray-300);
    border: none;
    padding: 10px 16px;
    font-family: var(--font-body);
    font-size: 0.875rem;
    cursor: pointer;
    text-decoration: underline;
    transition: all var(--transition-fast);
}

.btn-cookie-settings:hover {
    color: var(--white);
}

.cookie-details {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--gray-600);
}

.cookie-option {
    margin-bottom: 12px;
}

.cookie-option label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--white);
    cursor: pointer;
}

.cookie-option p {
    font-size: 0.8rem;
    color: var(--gray-300);
    margin-left: 26px;
    margin-top: 2px;
}

.cookie-option input[type="checkbox"] {
    accent-color: var(--accent);
    width: 16px;
    height: 16px;
}

.cookie-details .btn-cookie-accept {
    margin-top: 12px;
}

/* === HEADER === */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-height);
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.04);
    transition: all var(--transition-med);
}

.main-header.scrolled {
    background: rgba(10, 10, 10, 0.95);
    box-shadow: 0 2px 30px rgba(0,0,0,0.5);
    border-bottom-color: rgba(196, 30, 58, 0.1);
}

.header-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 32px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--white);
}

.logo-mark {
    flex-shrink: 0;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--white);
}

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

.nav-list {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
}

.nav-link {
    color: var(--gray-300);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 8px 14px;
    position: relative;
    transition: color var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 14px;
    right: 14px;
    height: 1px;
    background: var(--accent);
    transform: scaleX(0);
    transition: transform var(--transition-med);
    transform-origin: right;
}

.nav-link:hover,
.nav-link.active {
    color: var(--white);
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-cta {
    background: var(--accent);
    color: var(--white) !important;
    padding: 8px 20px;
    margin-left: 8px;
    font-weight: 600;
    transition: all var(--transition-fast);
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    background: var(--accent-dark);
    box-shadow: var(--shadow-accent);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
    padding: 8px;
}

.hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all var(--transition-fast);
    transform-origin: center;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    display: none;
    opacity: 0;
    transition: opacity var(--transition-med);
}

.mobile-nav-overlay.active {
    display: flex;
    opacity: 1;
}

.mobile-nav {
    width: 100%;
    padding: 40px 32px;
}

.mobile-nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mobile-nav-link {
    display: block;
    color: var(--gray-200);
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 500;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: all var(--transition-fast);
}

.mobile-nav-link:hover {
    color: var(--white);
    padding-left: 12px;
}

.mobile-cta {
    color: var(--accent) !important;
}

/* === HERO SECTION === */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(2rem, 5vw, 4rem);
    padding: calc(var(--header-height) + 40px) 32px 60px;
    overflow: hidden;
    background: var(--primary);
    width: 100%;
    box-sizing: border-box;
}

.hero-bg-effects {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

/* Dramatic diagonal light beams */
.light-beam {
    position: absolute;
    background: linear-gradient(
        135deg,
        transparent 0%,
        rgba(255, 255, 255, 0.02) 40%,
        rgba(255, 255, 255, 0.05) 50%,
        rgba(255, 255, 255, 0.02) 60%,
        transparent 100%
    );
    transform-origin: top left;
}

.light-beam-1 {
    top: -20%;
    left: 10%;
    width: 200px;
    height: 140%;
    transform: rotate(25deg);
    animation: beamSway1 12s ease-in-out infinite;
}

.light-beam-2 {
    top: -30%;
    left: 50%;
    width: 150px;
    height: 160%;
    transform: rotate(15deg);
    animation: beamSway2 15s ease-in-out infinite;
    opacity: 0.6;
}

.light-beam-3 {
    top: -10%;
    right: 5%;
    width: 100px;
    height: 120%;
    transform: rotate(35deg);
    animation: beamSway3 18s ease-in-out infinite;
    opacity: 0.4;
}

@keyframes beamSway1 {
    0%, 100% { transform: rotate(25deg) translateX(0); }
    50% { transform: rotate(27deg) translateX(20px); }
}

@keyframes beamSway2 {
    0%, 100% { transform: rotate(15deg) translateX(0); }
    50% { transform: rotate(13deg) translateX(-15px); }
}

@keyframes beamSway3 {
    0%, 100% { transform: rotate(35deg) translateX(0); }
    50% { transform: rotate(33deg) translateX(10px); }
}

.hero-content {
    position: relative;
    z-index: 2;
    flex: 1;
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(196, 30, 58, 0.1);
    border: 1px solid rgba(196, 30, 58, 0.3);
    padding: 6px 16px;
    margin-bottom: 28px;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--accent);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.2s;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulseDot 2s ease-in-out infinite;
}

@keyframes pulseDot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.hero-title {
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 24px;
    color: var(--white);
}

.title-line {
    display: block;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.title-line-1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    animation-delay: 0.4s;
}

.title-line-2 {
    font-size: clamp(3rem, 7vw, 5.5rem);
    animation-delay: 0.6s;
}

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

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--gray-200);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 480px;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.8s;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 1s;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 14px 28px;
    border: none;
    cursor: pointer;
    transition: all var(--transition-fast);
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.btn-primary {
    background: var(--accent);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(196, 30, 58, 0.3);
}

.btn-primary:hover {
    background: var(--accent-dark);
    box-shadow: 0 6px 30px rgba(196, 30, 58, 0.4);
    transform: translateY(-2px);
    color: var(--white);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-ghost {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--gray-500);
}

.btn-ghost:hover {
    border-color: var(--white);
    color: var(--white);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 1.2s;
}

.stat-item {
    text-align: left;
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--gray-600);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    z-index: 2;
    flex-shrink: 0;
    opacity: 0;
    animation: fadeInRight 1s ease forwards;
    animation-delay: 0.6s;
}

.hero-image-frame {
    position: relative;
    width: 380px;
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.frame-corner {
    position: absolute;
    width: 30px;
    height: 30px;
    border-color: var(--accent);
    border-style: solid;
    border-width: 0;
}

.frame-tl { top: -8px; left: -8px; border-top-width: 2px; border-left-width: 2px; }
.frame-tr { top: -8px; right: -8px; border-top-width: 2px; border-right-width: 2px; }
.frame-bl { bottom: -8px; left: -8px; border-bottom-width: 2px; border-left-width: 2px; }
.frame-br { bottom: -8px; right: -8px; border-bottom-width: 2px; border-right-width: 2px; }

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: contrast(1.1) brightness(0.9);
    transition: filter var(--transition-med);
}

.hero-image-frame:hover .hero-image {
    filter: contrast(1.15) brightness(0.95);
}

.image-reflection {
    position: absolute;
    bottom: -60px;
    left: 10%;
    width: 80%;
    height: 60px;
    background: linear-gradient(to bottom, rgba(10,10,10,0.3), transparent);
    filter: blur(4px);
    opacity: 0.4;
}

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* === SOCIAL PROOF TICKER === */
.social-proof-bar {
    position: relative;
    z-index: 2;
    background: var(--secondary);
    border-top: 1px solid rgba(255,255,255,0.04);
    border-bottom: 1px solid rgba(255,255,255,0.04);
    padding: 14px 0;
    overflow: hidden;
}

.ticker-wrap {
    overflow: hidden;
    width: 100%;
}

.ticker {
    display: flex;
    gap: 60px;
    animation: tickerScroll 30s linear infinite;
    white-space: nowrap;
    width: max-content;
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    color: var(--gray-300);
    letter-spacing: 0.02em;
    flex-shrink: 0;
}

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

/* === SECTION COMMON === */
.section-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 32px;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--accent);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 16px;
}

.title-underline {
    width: 60px;
    height: 2px;
    background: var(--accent);
    margin: 0 auto;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--gray-300);
    max-width: 520px;
    margin: 16px auto 0;
}

/* === ABOUT SECTION === */
.about {
    position: relative;
    padding: 120px 0;
    background: var(--primary);
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 100px,
        rgba(255, 255, 255, 0.008) 100px,
        rgba(255, 255, 255, 0.008) 101px
    );
    pointer-events: none;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-lead {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 500;
    color: var(--white);
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

.about-body {
    font-size: 1rem;
    color: var(--gray-200);
    margin-bottom: 16px;
    line-height: 1.8;
}

.about-highlights {
    margin-top: 36px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.highlight-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(196, 30, 58, 0.08);
    border: 1px solid rgba(196, 30, 58, 0.2);
}

.highlight-item h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 2px;
}

.highlight-item p {
    font-size: 0.875rem;
    color: var(--gray-300);
}

/* About Visual */
.about-visual-col {
    display: flex;
    justify-content: center;
}

.about-image-stack {
    position: relative;
    width: 340px;
    height: 500px;
}

.stack-card {
    position: absolute;
    width: 280px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255,255,255,0.05);
    transition: transform var(--transition-med);
}

.stack-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: contrast(1.05) brightness(0.85);
}

.stack-card-1 {
    top: 0;
    left: 0;
    z-index: 2;
    transform: rotate(-3deg);
}

.stack-card-2 {
    top: 60px;
    left: 60px;
    z-index: 1;
    transform: rotate(2deg);
    opacity: 0.85;
}

.about-image-stack:hover .stack-card-1 {
    transform: rotate(-1deg) translateX(-10px);
}

.about-image-stack:hover .stack-card-2 {
    transform: rotate(1deg) translateX(10px);
}

/* === GALLERY SECTION === */
.gallery {
    position: relative;
    padding: 120px 0;
    background: var(--secondary);
}

.gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(135deg, rgba(196, 30, 58, 0.03) 0%, transparent 40%),
        linear-gradient(315deg, rgba(196, 30, 58, 0.02) 0%, transparent 40%);
    pointer-events: none;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    position: relative;
    z-index: 2;
}

.gallery-item {
    position: relative;
    overflow: hidden;
}

.gallery-item-large {
    grid-row: span 2;
}

.gallery-item-wide {
    grid-column: span 2;
}

.gallery-frame {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05);
}

.gallery-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 200px;
    filter: contrast(1.1) brightness(0.8) saturate(0.9);
    transition: all var(--transition-slow);
}

.gallery-frame:hover img {
    filter: contrast(1.15) brightness(0.9) saturate(1);
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(10,10,10,0.9) 0%, transparent 100%);
    opacity: 0;
    transform: translateY(10px);
    transition: all var(--transition-med);
}

.gallery-frame:hover .gallery-overlay {
    opacity: 1;
    transform: translateY(0);
}

.gallery-label {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--accent);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* === FEATURES SECTION === */
.features {
    position: relative;
    padding: 120px 0;
    background: var(--primary);
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(196, 30, 58, 0.04) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
    z-index: 2;
}

.feature-card {
    position: relative;
    padding: 40px 32px;
    background: var(--secondary);
    border: 1px solid rgba(255,255,255,0.04);
    transition: all var(--transition-med);
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-med);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    border-color: rgba(196, 30, 58, 0.15);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

.feature-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: rgba(255,255,255,0.04);
    position: absolute;
    top: 16px;
    right: 20px;
    line-height: 1;
    pointer-events: none;
}

.feature-icon {
    margin-bottom: 20px;
}

.feature-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.feature-desc {
    font-size: 0.9rem;
    color: var(--gray-300);
    line-height: 1.6;
}

/* === TESTIMONIALS === */
.testimonials {
    position: relative;
    padding: 120px 0;
    background: var(--secondary);
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gray-600), transparent);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    padding: 36px 28px;
    background: var(--primary);
    border: 1px solid rgba(255,255,255,0.04);
    position: relative;
    transition: all var(--transition-med);
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 16px;
    right: 24px;
    font-family: var(--font-heading);
    font-size: 4rem;
    color: rgba(196, 30, 58, 0.15);
    line-height: 1;
    pointer-events: none;
}

.testimonial-card:hover {
    border-color: rgba(196, 30, 58, 0.15);
}

.testimonial-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 16px;
}

.testimonial-text {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-style: italic;
    color: var(--white-soft);
    line-height: 1.7;
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    background: var(--accent);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

.author-name {
    display: block;
    font-weight: 600;
    color: var(--white);
    font-size: 0.9rem;
}

.author-location {
    display: block;
    font-size: 0.8rem;
    color: var(--gray-400);
}

/* === FAQ SECTION === */
.faq {
    position: relative;
    padding: 120px 0;
    background: var(--primary);
}

.faq-list {
    max-width: 720px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 24px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white-soft);
    transition: color var(--transition-fast);
}

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

.faq-chevron {
    flex-shrink: 0;
    color: var(--gray-400);
    transition: transform var(--transition-med), color var(--transition-fast);
}

.faq-item.active .faq-chevron {
    transform: rotate(180deg);
    color: var(--accent);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-med), padding var(--transition-med);
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding-bottom: 24px;
}

.faq-answer p {
    font-size: 0.95rem;
    color: var(--gray-300);
    line-height: 1.7;
}

.faq-answer a {
    color: var(--accent);
    text-decoration: underline;
}

/* === SIGNUP SECTION === */
.signup {
    position: relative;
    padding: 120px 0;
    background: var(--secondary);
    overflow: hidden;
}

.light-beam-signup-1 {
    top: -50%;
    left: 20%;
    width: 180px;
    height: 200%;
    transform: rotate(20deg);
    opacity: 0.5;
}

.light-beam-signup-2 {
    top: -30%;
    right: 10%;
    width: 120px;
    height: 180%;
    transform: rotate(30deg);
    opacity: 0.3;
}

.signup-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    position: relative;
    z-index: 2;
}

.signup-info {
    padding-top: 20px;
}

.signup-info .section-title {
    text-align: left;
}

.signup-info .title-underline {
    margin: 0;
}

.signup-desc {
    font-size: 1.05rem;
    color: var(--gray-200);
    margin-top: 20px;
    margin-bottom: 28px;
    line-height: 1.7;
}

.signup-benefits {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
}

.signup-benefits li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--gray-200);
}

.signup-trust {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--gray-400);
}

/* Signup Form */
.signup-form-wrap {
    background: var(--primary);
    border: 1px solid rgba(255,255,255,0.06);
    padding: 40px 36px;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.signup-form-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, var(--accent), transparent);
}

.form-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 28px;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gray-200);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.optional {
    font-weight: 400;
    text-transform: none;
    color: var(--gray-400);
    font-size: 0.75rem;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"] {
    width: 100%;
    padding: 14px 16px;
    background: var(--secondary);
    border: 1px solid var(--gray-600);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: all var(--transition-fast);
}

.form-group input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(196, 30, 58, 0.15);
    outline: none;
}

.form-group input::placeholder {
    color: var(--gray-500);
}

.field-error {
    display: block;
    font-size: 0.8rem;
    color: var(--accent);
    margin-top: 4px;
    min-height: 1.2em;
}

/* Checkbox */
.form-checkbox {
    margin-bottom: 14px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 0.875rem !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    font-weight: 400 !important;
    color: var(--gray-300) !important;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.checkbox-custom {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    border: 1px solid var(--gray-500);
    background: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
    transition: all var(--transition-fast);
}

.checkbox-label input:checked + .checkbox-custom {
    background: var(--accent);
    border-color: var(--accent);
}

.checkbox-label input:checked + .checkbox-custom::after {
    content: '';
    width: 5px;
    height: 9px;
    border: solid var(--white);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    margin-top: -2px;
}

.checkbox-label a {
    color: var(--accent);
    text-decoration: underline;
}

.btn-loader {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.form-message {
    margin-top: 16px;
    padding: 14px 16px;
    font-size: 0.9rem;
    text-align: center;
    line-height: 1.5;
}

.form-message.success {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #22c55e;
}

.form-message.error {
    background: rgba(196, 30, 58, 0.1);
    border: 1px solid rgba(196, 30, 58, 0.3);
    color: var(--accent);
}

/* === TRUST SECTION === */
.trust {
    position: relative;
    padding: 100px 0;
    background: var(--primary);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.trust-card {
    text-align: center;
    padding: 36px 24px;
    background: var(--secondary);
    border: 1px solid rgba(255,255,255,0.04);
    transition: all var(--transition-med);
}

.trust-card:hover {
    border-color: rgba(196, 30, 58, 0.15);
    transform: translateY(-2px);
}

.trust-icon {
    margin-bottom: 16px;
}

.trust-card h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 8px;
}

.trust-card p {
    font-size: 0.85rem;
    color: var(--gray-300);
    line-height: 1.6;
}

/* === FOOTER === */
.main-footer {
    background: var(--primary-deep);
    border-top: 1px solid rgba(255,255,255,0.04);
    padding: 64px 0 0;
    position: relative;
    z-index: 2;
}

.footer-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 32px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: 60px;
    margin-bottom: 48px;
}

.footer-logo {
    margin-bottom: 16px;
}

.footer-tagline {
    font-size: 0.9rem;
    color: var(--gray-400);
    max-width: 280px;
    line-height: 1.6;
}

.footer-links-group {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}

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

.footer-col li {
    margin-bottom: 8px;
}

.footer-col a {
    font-size: 0.85rem;
    color: var(--gray-400);
    transition: color var(--transition-fast);
}

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

.footer-support-note {
    font-size: 0.75rem;
    color: var(--gray-500);
    margin-top: 4px;
    font-style: italic;
}

.footer-divider {
    height: 1px;
    background: rgba(255,255,255,0.06);
    margin-bottom: 24px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 24px;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-address p,
.footer-copy p {
    font-size: 0.8rem;
    color: var(--gray-500);
}

/* === BACK TO TOP === */
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 900;
    width: 44px;
    height: 44px;
    background: var(--accent);
    color: var(--white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-accent);
    transition: all var(--transition-fast);
    opacity: 0;
    transform: translateY(10px);
}

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

.back-to-top:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
}

/* === SCROLL REVEAL === */
.reveal-item {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-item.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* === LEGAL PAGES === */
.legal-page {
    padding-top: calc(var(--header-height) + 60px);
    padding-bottom: 80px;
    min-height: 100vh;
    background: var(--primary);
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 48px 40px;
    background: #f5f5f5;
    color: #1a1a1a;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.legal-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent);
}

.legal-content h1 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: #0a0a0a;
    margin-bottom: 8px;
    line-height: 1.2;
}

.legal-content .legal-updated {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 32px;
    font-style: italic;
}

.legal-content h2 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: #0a0a0a;
    margin-top: 36px;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid #ddd;
}

.legal-content h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-top: 24px;
    margin-bottom: 8px;
}

.legal-content p {
    font-size: 0.95rem;
    color: #333;
    line-height: 1.8;
    margin-bottom: 14px;
}

.legal-content ul,
.legal-content ol {
    margin-bottom: 14px;
    padding-left: 24px;
}

.legal-content li {
    font-size: 0.95rem;
    color: #333;
    line-height: 1.8;
    margin-bottom: 6px;
}

.legal-content a {
    color: var(--accent);
    text-decoration: underline;
}

.legal-content strong {
    color: #0a0a0a;
}

.legal-content .legal-contact {
    background: #eee;
    padding: 20px 24px;
    margin-top: 24px;
    border-left: 3px solid var(--accent);
}

.legal-content .legal-contact p {
    margin-bottom: 4px;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: calc(var(--header-height) + 60px);
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-subtitle {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

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

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

    .hero-visual {
        margin-top: 0;
    }

    .hero-image-frame {
        width: 300px;
        height: 300px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-visual-col {
        order: -1;
    }

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

    .gallery-item-large {
        grid-row: span 1;
    }

    .gallery-item-wide {
        grid-column: span 1;
    }

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

    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .signup-wrapper {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .signup-info .section-title {
        text-align: center;
    }

    .signup-info .title-underline {
        margin: 0 auto;
    }

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

    .signup-benefits {
        align-items: center;
    }

    .signup-trust {
        justify-content: center;
    }

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

    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-links-group {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 64px;
    }

    .main-nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .section-container {
        padding: 0 20px;
    }

    .header-inner {
        padding: 0 20px;
    }

    .hero {
        padding: calc(var(--header-height) + 40px) 20px 40px;
        min-height: auto;
    }

    .hero-image-frame {
        width: 240px;
        height: 240px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }

    .stat-divider {
        width: 40px;
        height: 1px;
    }

    .about,
    .gallery,
    .features,
    .testimonials,
    .faq,
    .signup,
    .trust {
        padding: 80px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

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

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

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

    .footer-links-group {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .about-image-stack {
        width: 260px;
        height: 380px;
    }

    .stack-card {
        width: 220px;
    }

    .signup-form-wrap {
        padding: 28px 20px;
    }

    .cookie-inner {
        padding: 20px;
    }

    .cookie-actions {
        flex-direction: column;
    }

    .legal-content {
        padding: 32px 24px;
        margin: 0 16px;
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        justify-content: center;
    }

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

    .about-image-stack {
        width: 220px;
        height: 340px;
    }

    .stack-card {
        width: 190px;
    }

    .stack-card-2 {
        left: 30px;
        top: 40px;
    }
}

/* === PRINT === */
@media print {
    .main-header,
    .cookie-banner,
    .back-to-top,
    .venetian-overlay,
    .social-proof-bar,
    .mobile-nav-overlay {
        display: none !important;
    }

    body {
        background: #fff;
        color: #000;
    }
}