/* ═══════════════════════════════════════════════════════
   LaseRed V2 — Alternative Homepage Styles

   Design tokens derived from:
   - Color System: warm dark + red accent
   - Typography Scale: 1.333 ratio (Perfect Fourth)
   - Spacing System: 8px base unit
   - Visual Hierarchy: single CTA per section
   ═══════════════════════════════════════════════════════ */

/* ─── OVERRIDE: kill original fade-in on v2 sections ─── */
[class^="v2-"] {
    opacity: 1 !important;
}
[class^="v2-"]:not(.v2-space-card):not(.v2-reviews__track) {
    transform: none !important;
}
/* Marquee track keeps its animation */
.v2-reviews__track {
    transform: translateX(0) !important;
    animation: v2-marquee 40s linear infinite !important;
}

/* ─── HIDE original sections that leak from shared includes ─── */
.photo-trail-section,
.press,
.contact-banner,
.reviews-stream,
.hero-map,
.game-modes-section,
.formulas-section,
.stats-section,
.events:not(.v2-events),
.hero:not(.v2-hero) {
    display: none !important;
}

/* ─── Fix reviews marquee track ─── */
.v2-reviews__track {
    opacity: 1 !important;
    transform: none;
}

/* ─── DESIGN TOKENS ─── */
:root {
    /* Color System */
    --v2-bg:          #08080c;
    --v2-bg-subtle:   #0e0e14;
    --v2-bg-card:     #12121a;
    --v2-bg-elevated: #1a1a24;
    --v2-border:      rgba(255, 255, 255, 0.06);
    --v2-border-hover:rgba(255, 255, 255, 0.12);

    --v2-red:         #e63946;
    --v2-red-light:   #ff4d5a;
    --v2-red-dark:    #c62d39;
    --v2-red-glow:    rgba(230, 57, 70, 0.15);
    --v2-red-glow-strong: rgba(230, 57, 70, 0.3);

    --v2-cyan:        #00d4ff;
    --v2-orange:      #ff6b35;
    --v2-purple:      #8b5cf6;
    --v2-amber:       #f59e0b;

    --v2-text:        #f0f0f5;
    --v2-text-secondary: rgba(240, 240, 245, 0.6);
    --v2-text-muted:  rgba(240, 240, 245, 0.35);

    /* Typography Scale — Perfect Fourth (1.333) */
    --v2-text-xs:     0.75rem;    /* 12px */
    --v2-text-sm:     0.875rem;   /* 14px */
    --v2-text-base:   1rem;       /* 16px */
    --v2-text-lg:     1.125rem;   /* 18px */
    --v2-text-xl:     1.333rem;   /* ~21px */
    --v2-text-2xl:    1.777rem;   /* ~28px */
    --v2-text-3xl:    2.369rem;   /* ~38px */
    --v2-text-4xl:    3.157rem;   /* ~50px */
    --v2-text-5xl:    4.209rem;   /* ~67px */
    --v2-text-hero:   clamp(3rem, 8vw, 5.5rem);

    /* Spacing — 8px base */
    --v2-space-1:  0.25rem;  /* 4px */
    --v2-space-2:  0.5rem;   /* 8px */
    --v2-space-3:  0.75rem;  /* 12px */
    --v2-space-4:  1rem;     /* 16px */
    --v2-space-5:  1.5rem;   /* 24px */
    --v2-space-6:  2rem;     /* 32px */
    --v2-space-8:  3rem;     /* 48px */
    --v2-space-10: 4rem;     /* 64px */
    --v2-space-12: 5rem;     /* 80px */
    --v2-space-16: 8rem;     /* 128px */

    /* Layout */
    --v2-container: 1200px;
    --v2-radius-sm: 8px;
    --v2-radius-md: 12px;
    --v2-radius-lg: 16px;
    --v2-radius-xl: 24px;

    /* Motion */
    --v2-ease: cubic-bezier(0.4, 0, 0.2, 1);
    --v2-ease-out: cubic-bezier(0, 0, 0.2, 1);
    --v2-duration: 0.3s;
}

/* ─── BASE ─── */
.v2-container {
    max-width: var(--v2-container);
    margin: 0 auto;
    padding: 0 var(--v2-space-5);
}

/* ─── SECTION HEADERS ─── */
.v2-section-header {
    margin-bottom: var(--v2-space-10);
}

.v2-section-label {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: var(--v2-text-xs);
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--v2-red);
    margin-bottom: var(--v2-space-3);
}

.v2-section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: var(--v2-text-3xl);
    font-weight: 700;
    color: var(--v2-text);
    line-height: 1.2;
    letter-spacing: -0.02em;
}
/* Counter nuclear [class*="section"] { overflow-x: hidden !important } from styles.min.css */
.v2-section-title,
.v2-section-header,
.v2-section-label,
[class*="v2-section"] {
    overflow: visible !important;
    overflow-x: visible !important;
    overflow-y: visible !important;
}
.v2-section-title::-webkit-scrollbar { display: none; }

/* ─── BUTTONS ─── */
.v2-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--v2-space-2);
    font-family: 'Inter', sans-serif;
    font-size: var(--v2-text-sm);
    font-weight: 600;
    padding: var(--v2-space-3) var(--v2-space-5);
    border-radius: 0;
    text-decoration: none;
    transition: all var(--v2-duration) var(--v2-ease);
    cursor: pointer;
    border: none;
    line-height: 1;
}

/* No rounded corners on any button (including inlined booking section) */
.v2-btn,
.v2book .btn-reserve,
.v2book .book-space-tab,
.v2book .book-formula-card,
.v2book button,
.v2book input[type="submit"],
.v2book input[type="button"] {
    border-radius: 0 !important;
}

.v2-btn--primary {
    background: var(--v2-red);
    color: white;
}
.v2-btn--primary:hover {
    background: var(--v2-red-light);
    box-shadow: 0 0 24px var(--v2-red-glow-strong);
    transform: translateY(-1px);
}

.v2-btn--outline {
    background: transparent;
    color: var(--v2-text);
    border: 1px solid var(--v2-border-hover);
}
.v2-btn--outline:hover {
    border-color: var(--v2-red);
    color: var(--v2-red);
}

.v2-btn--ghost {
    background: transparent;
    color: var(--v2-text-secondary);
    padding: var(--v2-space-3) var(--v2-space-4);
}
.v2-btn--ghost:hover {
    color: var(--v2-text);
}

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

.v2-btn--lg {
    font-size: var(--v2-text-base);
    padding: var(--v2-space-4) var(--v2-space-6);
}

/* ═══════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════ */
.v2-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    overflow: hidden;
    background: var(--v2-bg);
}

.v2-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.v2-hero__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.v2-hero__video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

.v2-hero__vignette {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 80% at 0% 0%,     rgba(0,0,0,0.9) 0%, rgba(0,0,0,0) 60%),
        radial-gradient(ellipse 80% 80% at 100% 0%,   rgba(0,0,0,0.9) 0%, rgba(0,0,0,0) 60%),
        radial-gradient(ellipse 80% 80% at 0% 100%,   rgba(0,0,0,0.9) 0%, rgba(0,0,0,0) 60%),
        radial-gradient(ellipse 80% 80% at 100% 100%, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0) 60%);
}

.v2-hero__gradient {
    display: none;
}


.v2-hero__content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: var(--v2-space-16) var(--v2-space-5) 0;
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
}

.v2-hero__eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: var(--v2-text-sm);
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--v2-red);
    margin-bottom: var(--v2-space-5);
}

.v2-hero__title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(1.6rem, 3.5vw, 2.8rem);
    font-weight: 900;
    color: var(--v2-text);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: var(--v2-space-5);
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.v2-hero__title em {
    font-style: normal;
    background: linear-gradient(135deg, var(--v2-red), var(--v2-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.v2-hero__subtitle {
    font-family: 'Inter', sans-serif;
    font-size: var(--v2-text-xl);
    font-weight: 600;
    color: rgba(255,255,255,0.9);
    line-height: 1.5;
    max-width: 620px;
    margin: 0 auto var(--v2-space-6);
    letter-spacing: -0.01em;
}

.v2-hero__trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--v2-space-5);
    margin-bottom: var(--v2-space-8);
}
.v2-hero__trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    font-family: 'Inter', sans-serif;
    font-size: var(--v2-text-sm);
    font-weight: 700;
    color: rgba(255,255,255,0.85);
}
.v2-hero__trust-item strong {
    font-family: 'Orbitron', sans-serif;
    font-size: var(--v2-text-lg);
    font-weight: 800;
    color: #fff;
}
.v2-hero__trust-stars {
    font-size: var(--v2-text-base);
    color: #e63946;
    letter-spacing: 2px;
}
.v2-hero__trust-sep {
    width: 1px;
    height: 32px;
    background: rgba(255,255,255,0.12);
}

.v2-hero__actions {
    display: flex;
    justify-content: center;
    gap: var(--v2-space-4);
    margin-bottom: 0;
    position: relative;
    z-index: 2;
}

.v2-hero__scroll-hint {
    position: absolute;
    bottom: var(--v2-space-8);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--v2-space-2);
}

.v2-hero__scroll-hint span {
    font-family: 'Inter', sans-serif;
    font-size: var(--v2-text-xs);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--v2-text-muted);
}

.v2-hero__scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, var(--v2-text-muted), transparent);
    animation: v2-scroll-pulse 2s ease-in-out infinite;
}

@keyframes v2-scroll-pulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
    50% { opacity: 1; transform: scaleY(1); }
}

/* ═══════════════════════════════════════════
   SPACES (standalone section, kept for compat)
   ═══════════════════════════════════════════ */
.v2-spaces {
    padding: var(--v2-space-16) 0 var(--v2-space-12);
    background: var(--v2-bg);
    overflow: hidden;
}

/* Spaces inside hero */
.v2-hero__spaces {
    position: relative;
    z-index: 0;
    padding: 0 var(--v2-space-5) var(--v2-space-16);
    margin-top: 60px;
    opacity: 0.75;
}

.v2-hero__spaces-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--v2-space-4);
    max-width: 1200px;
    margin: 0 auto;
}

.v2-spaces__track {
    display: flex;
    gap: var(--v2-space-4);
    padding: 0 var(--v2-space-5);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.v2-spaces__track::-webkit-scrollbar { display: none; }

.v2-space-card {
    position: relative;
    border-radius: var(--v2-radius-lg);
    overflow: hidden;
    text-decoration: none;
    color: white;
    aspect-ratio: 1/1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    will-change: transform;
    transition: transform 0.15s ease;
}
.v2-space-card:hover {
    transform: translateY(-4px);
}

.v2-space-card__img {
    position: absolute;
    inset: 0;
}
.v2-space-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--v2-ease);
}
.v2-space-card:hover .v2-space-card__img img {
    transform: scale(1.05);
}

.v2-space-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
}

.v2-space-card__info {
    position: relative;
    z-index: 1;
    padding: var(--v2-space-5);
}

.v2-space-card__city { display: none; }

.v2-space-card__city-tag {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #000;
    background: var(--space-accent);
    padding: 3px 10px;
    border-radius: 100px;
    margin-bottom: var(--v2-space-2);
}

.v2-space-card__theme {
    font-family: 'Orbitron', sans-serif;
    font-size: var(--v2-text-xl);
    font-weight: 700;
    margin: var(--v2-space-2) 0;
    line-height: 1.2;
}

.v2-space-card__cta {
    font-family: 'Inter', sans-serif;
    font-size: var(--v2-text-sm);
    font-weight: 600;
    color: var(--space-accent);
    transition: gap var(--v2-duration) var(--v2-ease);
}

.v2-space-card__badge {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: var(--v2-text-xs);
    font-weight: 600;
    background: var(--v2-amber);
    color: #000;
    padding: var(--v2-space-1) var(--v2-space-3);
    border-radius: var(--v2-radius-sm);
}

.v2-space-card--soon {
    pointer-events: none;
    opacity: 0.7;
}

/* ═══════════════════════════════════════════
   FORMULAS
   ═══════════════════════════════════════════ */
.v2-formulas {
    padding: var(--v2-space-12) 0;
    background: var(--v2-bg-subtle);
}

.v2-formulas__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--v2-space-5);
    align-items: start;
}

.v2-formula-card {
    position: relative;
    background: var(--v2-bg-card);
    border: 1px solid var(--v2-border);
    border-radius: var(--v2-radius-lg);
    padding: var(--v2-space-6);
    text-align: center;
    transition: border-color var(--v2-duration) var(--v2-ease);
}
.v2-formula-card:hover {
    border-color: var(--v2-border-hover);
}

.v2-formula-card--featured {
    border-color: var(--v2-red);
    background: linear-gradient(180deg, rgba(230, 57, 70, 0.06) 0%, var(--v2-bg-card) 40%);
}
.v2-formula-card--featured:hover {
    border-color: var(--v2-red-light);
}

.v2-formula-card__badge {
    display: block;
    position: absolute;
    top: calc(-1 * var(--v2-space-3));
    left: 0;
    right: 0;
    width: fit-content;
    margin: 0 auto;
    background: var(--v2-red);
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: var(--v2-text-xs);
    font-weight: 600;
    padding: var(--v2-space-1) var(--v2-space-4);
    border-radius: 100px;
    white-space: nowrap;
}

.v2-formula-card__name {
    font-family: 'Orbitron', sans-serif;
    font-size: var(--v2-text-xl);
    font-weight: 700;
    color: var(--v2-text);
    margin-bottom: var(--v2-space-5);
}

.v2-formula-card__price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: var(--v2-space-2);
    margin-bottom: var(--v2-space-5);
}

.v2-formula-card__amount {
    font-family: 'Orbitron', sans-serif;
    font-size: var(--v2-text-4xl);
    font-weight: 900;
    color: var(--v2-text);
    line-height: 1;
}

.v2-formula-card__currency {
    font-family: 'Inter', sans-serif;
    font-size: var(--v2-text-sm);
    color: var(--v2-text-secondary);
    text-align: left;
    line-height: 1.3;
}
.v2-formula-card__currency small {
    font-size: var(--v2-text-xs);
    color: var(--v2-text-muted);
}

.v2-formula-card__meta {
    display: flex;
    justify-content: center;
    gap: var(--v2-space-5);
    font-family: 'Inter', sans-serif;
    font-size: var(--v2-text-sm);
    font-weight: 700;
    color: #fff;
    margin-bottom: var(--v2-space-5);
    padding-bottom: var(--v2-space-5);
    border-bottom: 1px solid var(--v2-border);
}
.v2-formula-card__meta span {
    display: inline-flex;
    align-items: center;
    gap: var(--v2-space-1);
}
.v2-formula-card__meta svg {
    opacity: 0.5;
}

.v2-formula-card__list {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--v2-space-6);
    text-align: left;
}
.v2-formula-card__list li {
    font-family: 'Inter', sans-serif;
    font-size: var(--v2-text-sm);
    color: var(--v2-text-secondary);
    padding: var(--v2-space-2) 0;
    padding-left: var(--v2-space-5);
    position: relative;
}
.v2-formula-card__list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--v2-red);
    font-weight: 700;
}

/* ═══════════════════════════════════════════
   EXPERIENCE
   ═══════════════════════════════════════════ */
.v2-experience {
    padding: var(--v2-space-12) 0;
    background: var(--v2-bg);
}

.v2-experience__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--v2-space-6);
}

.v2-experience__item {
    text-align: center;
    padding: var(--v2-space-6);
}

.v2-experience__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: var(--v2-radius-md);
    background: var(--v2-red-glow);
    color: var(--v2-red);
    margin-bottom: var(--v2-space-5);
}

.v2-experience__item h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: var(--v2-text-lg);
    font-weight: 700;
    color: var(--v2-text);
    margin-bottom: var(--v2-space-3);
}

.v2-experience__item p {
    font-family: 'Inter', sans-serif;
    font-size: var(--v2-text-sm);
    color: var(--v2-text-secondary);
    line-height: 1.6;
}

/* ═══════════════════════════════════════════
   STATS
   ═══════════════════════════════════════════ */
.v2-stats {
    padding: var(--v2-space-10) 0;
    background: var(--v2-bg-subtle);
    border-top: 1px solid var(--v2-border);
    border-bottom: 1px solid var(--v2-border);
}

.v2-stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--v2-space-6);
    text-align: center;
}

.v2-stats__number {
    display: block;
    font-family: 'Orbitron', sans-serif;
    font-size: var(--v2-text-4xl);
    font-weight: 900;
    color: var(--v2-text);
    line-height: 1;
    margin-bottom: var(--v2-space-2);
}

.v2-stats__label {
    font-family: 'Inter', sans-serif;
    font-size: var(--v2-text-sm);
    color: var(--v2-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* ═══════════════════════════════════════════
   EVENTS
   ═══════════════════════════════════════════ */
.v2-events {
    padding: var(--v2-space-12) 0;
    background: var(--v2-bg);
}

.v2-events__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--v2-space-5);
}

.v2-event-card {
    background: var(--v2-bg-card);
    border: 1px solid var(--v2-border);
    border-radius: var(--v2-radius-lg);
    padding: var(--v2-space-6);
    transition: border-color var(--v2-duration) var(--v2-ease);
}
.v2-event-card:hover {
    border-color: var(--v2-border-hover);
}

.v2-event-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: var(--v2-radius-sm);
    background: var(--v2-red-glow);
    color: var(--v2-red);
    margin-bottom: var(--v2-space-4);
}

.v2-event-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: var(--v2-text-lg);
    font-weight: 700;
    color: var(--v2-text);
    margin-bottom: var(--v2-space-3);
}

.v2-event-card p {
    font-family: 'Inter', sans-serif;
    font-size: var(--v2-text-sm);
    color: var(--v2-text-secondary);
    line-height: 1.6;
    margin-bottom: var(--v2-space-4);
}

.v2-event-card__link {
    font-family: 'Inter', sans-serif;
    font-size: var(--v2-text-sm);
    font-weight: 600;
    color: var(--v2-red);
    text-decoration: none;
    transition: color var(--v2-duration) var(--v2-ease);
}
.v2-event-card__link:hover {
    color: var(--v2-red-light);
}

.v2-event-card__icon--img {
    background: none !important;
    border: none !important;
    padding: 0 !important;
}
.v2-event-card__icon--img img {
    height: 40px;
    width: auto;
    object-fit: contain;
    display: block;
}

.v2-event-card__warning {
    font-size: var(--v2-text-xs) !important;
    color: rgba(230,57,70,0.8) !important;
    margin-bottom: var(--v2-space-3) !important;
}

/* ═══════════════════════════════════════════
   MAP
   ═══════════════════════════════════════════ */
.v2map { padding: var(--v2-space-16) var(--v2-space-5); background: #050505; }
.v2map-layout { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 48px; align-items: start; margin-top: 48px; }
.v2map-visual { border-radius: 16px; overflow: hidden; border: 1px solid rgba(255,255,255,0.08); }
#v2-leaflet-map { width: 100%; height: 480px; background: #111; }
.v2map-marker { width: 32px; height: 32px; position: relative; }
.v2map-marker-inner { width: 16px; height: 16px; background: #e63946; border-radius: 50%; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); box-shadow: 0 0 0 4px rgba(230,57,70,0.25),0 0 16px rgba(230,57,70,0.4); animation: v2map-pulse 2s ease-in-out infinite; }
@keyframes v2map-pulse { 0%,100%{box-shadow:0 0 0 4px rgba(230,57,70,0.25),0 0 16px rgba(230,57,70,0.4);}50%{box-shadow:0 0 0 8px rgba(230,57,70,0.1),0 0 24px rgba(230,57,70,0.3);} }
.v2map-spaces-label { font-family:'Inter',sans-serif; font-size:0.85rem; font-weight:600; color:rgba(255,255,255,0.35); text-transform:uppercase; letter-spacing:2px; margin-bottom:8px; }
.v2map-spaces { display:flex; flex-direction:column; gap:10px; }
.v2map-space { display:flex; align-items:center; gap:14px; background:rgba(255,255,255,0.03); border:1px solid rgba(255,255,255,0.06); border-radius:12px; padding:14px 18px; transition:all 0.3s ease; cursor:pointer; }
.v2map-space:hover,.v2map-space.active { border-color:rgba(230,57,70,0.3); background:rgba(230,57,70,0.04); transform:translateX(4px); }
.v2map-space-dot { flex-shrink:0; width:10px; height:10px; background:#e63946; border-radius:50%; box-shadow:0 0 8px rgba(230,57,70,0.5); }
.v2map-space-info h4 { font-family:'Orbitron',sans-serif; font-size:0.88rem; font-weight:700; color:#fff; margin-bottom:2px; }
.v2map-space-info span { font-family:'Inter',sans-serif; font-size:0.85rem; color:#fff; line-height:1.4; }
.v2map-space-info span em { font-style:normal; color:rgba(255,255,255,0.3); font-size:0.78rem; }
.v2map-space-logo { margin-left:auto; flex-shrink:0; height:28px; width:auto; max-width:90px; object-fit:contain; }
/* Accordion description */
.v2map-space { flex-wrap: wrap; }
.v2map-space-desc { width:100%; max-height:0; overflow:hidden; transition:max-height 0.35s ease,opacity 0.3s ease,margin-top 0.3s ease; opacity:0; margin-top:0; }
.v2map-space.active .v2map-space-desc { max-height:120px; opacity:1; margin-top:10px; }
.v2map-space-desc p { font-family:'Inter',sans-serif; font-size:0.85rem; color:rgba(255,255,255,0.7); line-height:1.6; margin:0; }
/* Leaflet zoom buttons red */
#v2-leaflet-map + * .leaflet-control-zoom a,
.v2map-visual .leaflet-control-zoom a { background:#e63946!important; color:#fff!important; border-color:rgba(230,57,70,0.5)!important; }
.v2map-visual .leaflet-control-zoom a:hover { background:#c62f3c!important; }
.v2map-visual .leaflet-control-zoom { border:none!important; border-radius:8px!important; overflow:hidden!important; box-shadow:0 2px 12px rgba(230,57,70,0.3)!important; }
@media (max-width:768px) {
    .v2map-layout { display:flex!important; flex-direction:column; gap:24px; }
    .v2map-spaces-wrapper { order:1; }
    .v2map-visual { order:2; width:100%; min-height:300px; }
    #v2-leaflet-map { height:300px!important; min-height:300px; width:100%!important; }
    .v2map-space { padding:12px 16px; }
    .v2map-space-info h4 { font-size:0.85rem; }
}
/* Leaflet overrides — counter nuclear rules from styles.min.css */
#v2-leaflet-map,
#v2-leaflet-map *,
#v2-leaflet-map *::before,
#v2-leaflet-map *::after {
    max-width: none !important;
    box-sizing: content-box !important;
}
#v2-leaflet-map .leaflet-pane,
#v2-leaflet-map .leaflet-map-pane,
#v2-leaflet-map .leaflet-tile-pane,
#v2-leaflet-map .leaflet-overlay-pane,
#v2-leaflet-map .leaflet-shadow-pane,
#v2-leaflet-map .leaflet-marker-pane,
#v2-leaflet-map .leaflet-tooltip-pane,
#v2-leaflet-map .leaflet-popup-pane {
    overflow: visible !important;
    max-width: none !important;
    width: auto !important;
}
#v2-leaflet-map .leaflet-container {
    overflow: hidden !important;
    max-width: none !important;
}
#v2-leaflet-map .leaflet-tile-container {
    max-width: none !important;
    overflow: visible !important;
    width: auto !important;
}
#v2-leaflet-map .leaflet-tile,
#v2-leaflet-map .leaflet-tile-container img {
    max-width: none !important;
    width: 256px !important;
    height: 256px !important;
    box-sizing: content-box !important;
}
#v2-leaflet-map .leaflet-control-container,
#v2-leaflet-map .leaflet-control-container * {
    max-width: none !important;
    overflow: visible !important;
    box-sizing: border-box !important;
}
#v2-leaflet-map .leaflet-proxy,
#v2-leaflet-map .leaflet-zoom-animated {
    max-width: none !important;
    width: auto !important;
}
#v2-leaflet-map .v2map-marker {
    max-width: none !important;
    width: 32px !important;
    height: 32px !important;
    overflow: visible !important;
}
#v2-leaflet-map .v2map-marker-inner {
    max-width: none !important;
    width: 16px !important;
    height: 16px !important;
}
#v2-leaflet-map .leaflet-popup-content-wrapper,
#v2-leaflet-map .leaflet-popup-content,
#v2-leaflet-map .leaflet-popup-tip-container {
    max-width: none !important;
    overflow: visible !important;
}

/* Dark popup style — ported 1:1 from anniversaire.php */
#v2-leaflet-map .leaflet-popup-content-wrapper {
    background: #1a1a1a !important;
    color: #fff !important;
    border-radius: 12px !important;
    border: 1px solid rgba(230,57,70,0.3) !important;
    box-shadow: 0 8px 32px rgba(0,0,0,0.5) !important;
}
#v2-leaflet-map .leaflet-popup-tip {
    background: #1a1a1a !important;
    border: 1px solid rgba(230,57,70,0.3) !important;
}
#v2-leaflet-map .leaflet-popup-content {
    margin: 12px 16px !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 0.98rem !important;
    line-height: 1.5 !important;
    color: #fff !important;
}
#v2-leaflet-map .leaflet-popup-content strong {
    font-family: 'Orbitron', sans-serif !important;
    font-size: 0.95rem !important;
    color: #e63946 !important;
    display: block !important;
    margin-bottom: 4px !important;
}
#v2-leaflet-map .leaflet-popup-content em {
    color: rgba(255,255,255,0.5) !important;
    font-style: normal !important;
    font-size: 0.92rem !important;
}

/* Hide Leaflet attribution clutter */
.leaflet-control-attribution,
.leaflet-control-attribution.leaflet-control {
    display: none !important;
}

/* ═══════════════════════════════════════════
   GALLERY
   ═══════════════════════════════════════════ */
.v2gallery { padding: var(--v2-space-16) var(--v2-space-5); background: var(--v2-bg-subtle); }
.v2gallery-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:var(--v2-space-3); margin-top:48px; }
/* City landings: 6 own-city photos in a clean 3×2 grid */
.v2gallery-grid--city { grid-template-columns:repeat(3,1fr); }
.v2gallery-item { position:relative; border-radius:12px; overflow:hidden; cursor:pointer; aspect-ratio:4/3; }
.v2gallery-item img { width:100%; height:100%; object-fit:cover; transition:transform 0.5s ease; }
.v2gallery-item:hover img { transform:scale(1.05); }
.v2gallery-item::after { content:''; position:absolute; inset:0; background:rgba(0,0,0,0); transition:background 0.3s; }
.v2gallery-item:hover::after { background:rgba(230,57,70,0.15); }
/* Lightbox */
.v2gallery-lightbox { display:none; position:fixed; inset:0; z-index:9999; background:rgba(0,0,0,0.95); align-items:center; justify-content:center; }
.v2gallery-lightbox.open { display:flex; }
.v2gallery-lightbox img { max-width:90vw; max-height:85vh; border-radius:8px; object-fit:contain; }
.v2gallery-close { position:fixed; top:100px; right:24px; width:44px; height:44px; background:rgba(255,255,255,0.1); border:none; border-radius:50%; color:#fff; font-size:1.4rem; cursor:pointer; display:flex; align-items:center; justify-content:center; }
.v2gallery-prev,.v2gallery-next { position:fixed; top:50%; transform:translateY(-50%); background:rgba(255,255,255,0.08); border:1px solid rgba(255,255,255,0.12); border-radius:50%; width:48px; height:48px; color:#fff; font-size:1.2rem; cursor:pointer; display:flex; align-items:center; justify-content:center; }
.v2gallery-prev { left:16px; } .v2gallery-next { right:16px; }
@media (max-width:768px) { .v2gallery-grid { grid-template-columns:repeat(2,1fr); } }

/* ═══════════════════════════════════════════
   BOOKING INTERFACE (inline from book.php)
   ═══════════════════════════════════════════ */
.v2book {
    position: relative;
    background: #050505;
    overflow: hidden;
}
.v2book .book-wrapper { min-height: auto; }
.v2book .book-hero-bgs { position: absolute; height: 100%; }
.v2book .book-selector { margin-top: 0; padding-top: var(--v2-space-5); }
.v2book .book-content { max-height: none; }
.v2book .book-info { max-height: none; overflow-y: visible; }
.v2book .book-form { max-height: none; }
.v2book .book-form-scroll { max-height: none; overflow-y: visible; }

/* ═══════════════════════════════════════════
   CONTACT (tel + email)
   ═══════════════════════════════════════════ */
.v2contact { padding:var(--v2-space-16) var(--v2-space-5); background:var(--v2-bg-subtle); }
.v2contact-grid { display:grid; grid-template-columns:1fr 1fr; gap:var(--v2-space-6); margin-top:48px; }
.v2contact-block { background:rgba(255,255,255,0.03); border:1px solid rgba(255,255,255,0.06); border-radius:16px; padding:var(--v2-space-8); text-align:center; }
.v2contact-block--phone { border-color:rgba(230,57,70,0.2); background:rgba(230,57,70,0.04); }
.v2contact-icon { width:56px; height:56px; border-radius:50%; background:rgba(230,57,70,0.1); border:1px solid rgba(230,57,70,0.2); display:flex; align-items:center; justify-content:center; margin:0 auto var(--v2-space-4); color:#e63946; font-size:1.4rem; }
.v2contact-block h3 { font-family:'Orbitron',sans-serif; font-size:1rem; font-weight:700; color:#fff; margin-bottom:var(--v2-space-2); }
.v2contact-block p { font-family:'Inter',sans-serif; font-size:0.9rem; color:rgba(255,255,255,0.5); margin-bottom:var(--v2-space-5); line-height:1.6; }
.v2contact-pulse { display:inline-block; animation:v2contact-pulse 2s ease-in-out infinite; }
@keyframes v2contact-pulse { 0%,100%{transform:scale(1);}50%{transform:scale(1.05);} }
@media (max-width:768px) { .v2contact-grid { grid-template-columns:1fr; } }

/* ═══════════════════════════════════════════
   REVIEWS
   ═══════════════════════════════════════════ */
.v2-reviews {
    padding: var(--v2-space-12) 0;
    background: var(--v2-bg-subtle);
    overflow: hidden;
}

.v2-reviews__marquee {
    margin-top: var(--v2-space-8);
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.v2-reviews__track {
    display: flex;
    gap: var(--v2-space-4);
    animation: v2-marquee 40s linear infinite;
    width: max-content;
}

.v2-review-card {
    flex: 0 0 320px;
    background: var(--v2-bg-card);
    border: 1px solid var(--v2-border);
    border-radius: var(--v2-radius-md);
    padding: var(--v2-space-5);
}

.v2-review-card__stars {
    color: var(--v2-amber);
    font-size: var(--v2-text-sm);
    letter-spacing: 0.1em;
    margin-bottom: var(--v2-space-3);
}

.v2-review-card__text {
    font-family: 'Inter', sans-serif;
    font-size: var(--v2-text-sm);
    color: var(--v2-text-secondary);
    line-height: 1.6;
    margin-bottom: var(--v2-space-3);
}

.v2-review-card__author {
    font-family: 'Inter', sans-serif;
    font-size: var(--v2-text-xs);
    color: var(--v2-text-muted);
}

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

/* ═══════════════════════════════════════════
   CTA
   ═══════════════════════════════════════════ */
.v2-cta {
    padding: var(--v2-space-16) 0;
    background: var(--v2-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.v2-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 50% at 50% 50%, var(--v2-red-glow) 0%, transparent 70%);
    pointer-events: none;
}

.v2-cta__title {
    font-family: 'Orbitron', sans-serif;
    font-size: var(--v2-text-3xl);
    font-weight: 900;
    color: var(--v2-text);
    margin-bottom: var(--v2-space-4);
    position: relative;
}

.v2-cta__sub {
    font-family: 'Inter', sans-serif;
    font-size: var(--v2-text-lg);
    color: var(--v2-text-secondary);
    margin-bottom: var(--v2-space-8);
    position: relative;
}

.v2-cta__actions {
    display: flex;
    justify-content: center;
    gap: var(--v2-space-4);
    position: relative;
}

/* ═══════════════════════════════════════════
   RESPONSIVE — Mobile-first adjustments
   ═══════════════════════════════════════════ */
@media (max-width: 1079px) {
    .v2-formulas__grid {
        grid-template-columns: 1fr;
        max-width: 440px;
        margin: 0 auto;
    }

    .v2-experience__grid {
        grid-template-columns: 1fr;
        gap: var(--v2-space-4);
    }

    .v2-stats__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--v2-space-5);
    }

    .v2-events__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .v2-section-title {
        font-size: var(--v2-text-2xl);
    }

    .v2-hero__subtitle {
        font-size: var(--v2-text-base);
    }

    .v2-hero__spaces-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    /* −20% on the 4 hero space card titles on mobile */
    .v2-space-card__theme {
        font-size: 1.066rem; /* was 1.333rem */
    }
    .v2-hero__trust {
        gap: var(--v2-space-3);
    }
    .v2-hero__trust-sep { height: 24px; }

    .v2-hero__actions {
        flex-direction: column;
        align-items: center;
    }

    /* Reviews: swipeable scroll on mobile */
    .v2-reviews__track {
        animation: none !important;
        transform: none !important;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding: 0 20px;
        width: auto;
    }
    .v2-reviews__track::-webkit-scrollbar { display: none; }
    .v2-review-card { scroll-snap-align: start; flex: 0 0 85vw; }
    .v2-review-card[aria-hidden="true"] { display: none; }
    .v2-reviews__marquee {
        mask-image: none;
        -webkit-mask-image: none;
        overflow: visible;
    }

    .v2-cta__actions {
        flex-direction: column;
        align-items: center;
    }

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

    .v2-stats__number {
        font-size: var(--v2-text-3xl);
    }
}

@media (max-width: 480px) {
    .v2-hero__trust { flex-wrap: wrap; gap: var(--v2-space-3) var(--v2-space-4); }
    .v2-hero__trust-sep { display: none; }
    .v2-hero__subtitle { font-size: var(--v2-text-base); }

    /* Compact formula cards on mobile */
    .v2-formula-card {
        padding: var(--v2-space-4) var(--v2-space-4);
    }
    .v2-formula-card__badge {
        font-size: 0.68rem;
        padding: 3px var(--v2-space-3);
        top: calc(-1 * var(--v2-space-2));
    }
    .v2-formula-card__name {
        font-size: var(--v2-text-base);
        margin-bottom: var(--v2-space-3);
    }
    .v2-formula-card__price {
        gap: 6px;
        margin-bottom: var(--v2-space-3);
    }
    .v2-formula-card__amount {
        font-size: var(--v2-text-2xl);
    }
    .v2-formula-card__currency {
        font-size: 0.72rem;
    }
    .v2-formula-card__currency small {
        font-size: 0.64rem;
    }
    .v2-formula-card__meta {
        gap: var(--v2-space-3);
        font-size: 0.72rem;
        margin-bottom: var(--v2-space-3);
        padding-bottom: var(--v2-space-3);
    }
    .v2-formula-card__list {
        margin-bottom: var(--v2-space-4);
    }
    .v2-formula-card__list li {
        font-size: 0.78rem;
        padding: 4px 0 4px var(--v2-space-4);
        line-height: 1.4;
    }
}

/* ═══════════════════════════════════════════
   COMPACT HERO (for subpages)
   ═══════════════════════════════════════════ */
.v2-hero--compact {
    min-height: 50vh;
    padding-top: var(--v2-space-16);
}

.v2-hero__title--md {
    font-size: clamp(2rem, 5vw, 3.5rem);
}

/* ═══════════════════════════════════════════
   SPACES FULL (espaces-v2.php)
   ═══════════════════════════════════════════ */
.v2-spaces-full {
    background: var(--v2-bg);
}

.v2-space-full {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--v2-border);
}

.v2-space-full--reverse {
    direction: rtl;
}
.v2-space-full--reverse > * {
    direction: ltr;
}

.v2-space-full__img {
    position: relative;
    overflow: hidden;
}
.v2-space-full__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--v2-ease);
}
.v2-space-full:hover .v2-space-full__img img {
    transform: scale(1.03);
}
.v2-space-full__img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(8,8,12,0.6) 0%, rgba(8,8,12,0.2) 100%);
}
.v2-space-full--reverse .v2-space-full__img-overlay {
    background: linear-gradient(to left, rgba(8,8,12,0.6) 0%, rgba(8,8,12,0.2) 100%);
}

.v2-space-full__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--v2-space-10) var(--v2-space-8);
}

.v2-space-full__title {
    font-family: 'Orbitron', sans-serif;
    font-size: var(--v2-text-3xl);
    font-weight: 900;
    color: var(--v2-text);
    line-height: 1.15;
    margin: var(--v2-space-2) 0 var(--v2-space-4);
}

.v2-space-full__desc {
    font-family: 'Inter', sans-serif;
    font-size: var(--v2-text-base);
    color: var(--v2-text-secondary);
    line-height: 1.7;
    margin-bottom: var(--v2-space-4);
    max-width: 480px;
}

.v2-space-full__meta {
    font-family: 'Inter', sans-serif;
    font-size: var(--v2-text-sm);
    color: var(--v2-text-muted);
    margin-bottom: var(--v2-space-5);
    display: flex;
    align-items: center;
    gap: var(--v2-space-2);
}
.v2-space-full__meta svg {
    opacity: 0.5;
    flex-shrink: 0;
}

.v2-space-full__photos {
    display: flex;
    gap: var(--v2-space-2);
    margin-bottom: var(--v2-space-5);
}

.v2-space-full__thumb {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: var(--v2-radius-sm);
    border: 1px solid var(--v2-border);
    opacity: 0.7;
    transition: opacity var(--v2-duration) var(--v2-ease);
}
.v2-space-full__thumb:hover {
    opacity: 1;
}

.v2-space-full__badge {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: var(--v2-text-sm);
    font-weight: 600;
    color: var(--v2-amber);
    padding: var(--v2-space-2) var(--v2-space-4);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: var(--v2-radius-sm);
    margin-top: var(--v2-space-2);
}

.v2-space-full--soon {
    opacity: 0.6;
}

@media (max-width: 768px) {
    .v2-space-full {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    .v2-space-full--reverse {
        direction: ltr;
    }
    .v2-space-full__img {
        height: 250px;
    }
    .v2-space-full__content {
        padding: var(--v2-space-6) var(--v2-space-5);
    }
    .v2-space-full__title {
        font-size: var(--v2-text-2xl);
    }
}

/* ═══════════════════════════════════════════
   CONTACT (contact-v2.php)
   ═══════════════════════════════════════════ */
.v2-contact {
    padding: var(--v2-space-12) 0;
    background: var(--v2-bg);
}

.v2-contact__grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: var(--v2-space-8);
    align-items: start;
}

.v2-contact__form-title {
    font-family: 'Orbitron', sans-serif;
    font-size: var(--v2-text-2xl);
    font-weight: 700;
    color: var(--v2-text);
    margin-bottom: var(--v2-space-6);
}

.v2-contact__form {
    display: flex;
    flex-direction: column;
    gap: var(--v2-space-5);
}

.v2-form-group {
    display: flex;
    flex-direction: column;
    gap: var(--v2-space-2);
}

.v2-form-group label {
    font-family: 'Inter', sans-serif;
    font-size: var(--v2-text-sm);
    font-weight: 500;
    color: var(--v2-text-secondary);
}

.v2-form-optional {
    color: var(--v2-text-muted);
    font-weight: 400;
}

.v2-form-group input,
.v2-form-group textarea {
    font-family: 'Inter', sans-serif;
    font-size: var(--v2-text-base);
    color: var(--v2-text);
    background: var(--v2-bg-card);
    border: 1px solid var(--v2-border);
    border-radius: var(--v2-radius-sm);
    padding: var(--v2-space-3) var(--v2-space-4);
    transition: border-color var(--v2-duration) var(--v2-ease);
    outline: none;
}
.v2-form-group input::placeholder,
.v2-form-group textarea::placeholder {
    color: var(--v2-text-muted);
}
.v2-form-group input:focus,
.v2-form-group textarea:focus {
    border-color: var(--v2-red);
}
.v2-form-group textarea {
    resize: vertical;
    min-height: 140px;
}

/* Sidebar */
.v2-contact__sidebar {
    display: flex;
    flex-direction: column;
    gap: var(--v2-space-5);
}

.v2-contact__card {
    background: var(--v2-bg-card);
    border: 1px solid var(--v2-border);
    border-radius: var(--v2-radius-md);
    padding: var(--v2-space-5);
}

.v2-contact__card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--v2-radius-sm);
    background: var(--v2-red-glow);
    color: var(--v2-red);
    margin-bottom: var(--v2-space-3);
}

.v2-contact__card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: var(--v2-text-base);
    font-weight: 700;
    color: var(--v2-text);
    margin-bottom: var(--v2-space-2);
}

.v2-contact__card-link {
    font-family: 'Inter', sans-serif;
    font-size: var(--v2-text-lg);
    font-weight: 600;
    color: var(--v2-red);
    text-decoration: none;
    display: block;
    margin-bottom: var(--v2-space-1);
}
.v2-contact__card-link:hover {
    color: var(--v2-red-light);
}

.v2-contact__card-hint {
    font-family: 'Inter', sans-serif;
    font-size: var(--v2-text-xs);
    color: var(--v2-text-muted);
}

.v2-contact__spaces-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.v2-contact__spaces-list li {
    font-family: 'Inter', sans-serif;
    font-size: var(--v2-text-sm);
    color: var(--v2-text-secondary);
    padding: var(--v2-space-2) 0;
    border-bottom: 1px solid var(--v2-border);
}
.v2-contact__spaces-list li:last-child {
    border-bottom: none;
}

.v2-contact__socials {
    display: flex;
    gap: var(--v2-space-3);
}

.v2-contact__social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: var(--v2-radius-sm);
    background: var(--v2-bg-card);
    border: 1px solid var(--v2-border);
    color: var(--v2-text-secondary);
    font-size: 18px;
    text-decoration: none;
    transition: all var(--v2-duration) var(--v2-ease);
}
.v2-contact__social-icon:hover {
    border-color: var(--v2-red);
    color: var(--v2-red);
    background: var(--v2-red-glow);
}

@media (max-width: 768px) {
    .v2-contact__grid {
        grid-template-columns: 1fr;
    }
}

/* ═══════════════════════════════════════════
   LANDING PAGES — shared by team-building, anniversaire,
   tournois, privatisation, and the 5 city landings.
   All selectors prefixed v2-landing-* so they're reusable.
   ═══════════════════════════════════════════ */

/* Section-level fade-in opt-out: script.v2.js adds .fade-in to every <section>,
   styles-v2.css's [class^="v2-"] override only catches sections whose first class
   starts with "v2-" (so it MISSES v2map, v2gallery, v2contact and any v2-landing-*).
   Only override the SECTION — never descendants — Leaflet/accordions need their own
   transforms and opacity transitions. */
section.v2map,
section.v2gallery,
section.v2contact,
section.v2-landing-testimonials,
section.v2-landing-contact {
    opacity: 1 !important;
    transform: none !important;
}

/* ─── Hero variant: compact 78vh, gradient bg, no video ─── */
.v2-hero--landing { min-height: auto; padding: 0; }
.v2-hero--landing .v2-hero__content {
    max-width: 880px;
    padding: 110px var(--v2-space-5) var(--v2-space-12);
}
.v2-hero--landing .v2-hero__bg {
    background: linear-gradient(135deg, #08080c 0%, #0e0e14 60%, rgba(230,57,70,0.12) 100%);
}
.v2-hero--landing .v2-hero__bg::after {
    content: ''; position: absolute; inset: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(230,57,70,0.18) 0%, transparent 45%),
        radial-gradient(circle at 80% 70%, rgba(0,212,255,0.08) 0%, transparent 50%);
    pointer-events: none;
}

/* ─── Trust strip below hero CTAs ─── */
.v2-landing-trust {
    margin-top: var(--v2-space-8);
    display: flex; justify-content: center; gap: var(--v2-space-8);
    flex-wrap: wrap;
    font-family: 'Inter', sans-serif;
}
.v2-landing-trust__item {
    display: inline-flex; align-items: center; gap: var(--v2-space-2);
    color: var(--v2-text-secondary); font-size: var(--v2-text-sm);
}
.v2-landing-trust__item i { color: var(--v2-red); font-size: 1rem; }

/* ─── Testimonials grid — 4 cards ─── */
.v2-landing-testimonials {
    padding: var(--v2-space-16) var(--v2-space-5);
    background: var(--v2-bg);
}
.v2-landing-testimonials__grid {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--v2-space-5);
    margin-top: var(--v2-space-10);
}
.v2-landing-testimonial {
    background: var(--v2-bg-card);
    border: 1px solid var(--v2-border);
    border-radius: var(--v2-radius-md);
    padding: var(--v2-space-6);
    transition: all var(--v2-duration) var(--v2-ease);
}
.v2-landing-testimonial:hover {
    border-color: var(--v2-border-hover);
    transform: translateY(-2px);
}
.v2-landing-testimonial__stars {
    color: #f5b301; font-size: 1rem;
    letter-spacing: 2px; margin-bottom: var(--v2-space-3);
}
.v2-landing-testimonial__text {
    font-family: 'Inter', sans-serif; font-size: var(--v2-text-base);
    color: var(--v2-text); line-height: 1.7;
    margin: 0 0 var(--v2-space-5);
}
.v2-landing-testimonial__author {
    display: flex; align-items: center; gap: var(--v2-space-3);
}
.v2-landing-testimonial__avatar {
    width: 44px; height: 44px; border-radius: 50%;
    background: linear-gradient(135deg, var(--v2-red), var(--v2-red-dark));
    color: #fff; display: flex; align-items: center; justify-content: center;
    font-family: 'Orbitron', sans-serif; font-weight: 700; font-size: 0.85rem;
}
.v2-landing-testimonial__info { display: flex; flex-direction: column; }
.v2-landing-testimonial__info strong {
    color: var(--v2-text); font-family: 'Inter', sans-serif;
    font-size: 0.95rem; font-weight: 600;
}
.v2-landing-testimonial__info span {
    color: var(--v2-text-muted); font-family: 'Inter', sans-serif;
    font-size: var(--v2-text-xs);
}

/* ─── Form — used in contact section ─── */
.v2-form { display: flex; flex-direction: column; gap: var(--v2-space-4); }
.v2-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--v2-space-4); }
.v2-form__group { display: flex; flex-direction: column; gap: var(--v2-space-2); }
.v2-form__group label {
    font-family: 'Inter', sans-serif; font-size: var(--v2-text-xs);
    font-weight: 600; color: var(--v2-text-secondary);
    text-transform: uppercase; letter-spacing: 0.08em;
}
.v2-form__group label .req { color: var(--v2-red); }
.v2-form__group label .opt {
    color: var(--v2-text-muted); text-transform: none;
    letter-spacing: 0; font-weight: 400;
}
.v2-form__group input,
.v2-form__group select,
.v2-form__group textarea {
    background: var(--v2-bg-card);
    border: 1px solid var(--v2-border);
    border-radius: var(--v2-radius-sm);
    padding: var(--v2-space-3) var(--v2-space-4);
    font-family: 'Inter', sans-serif; font-size: var(--v2-text-base);
    color: var(--v2-text);
    transition: all var(--v2-duration) var(--v2-ease);
    width: 100%;
}
.v2-form__group input:focus,
.v2-form__group select:focus,
.v2-form__group textarea:focus {
    outline: none; border-color: var(--v2-red);
    box-shadow: 0 0 0 3px var(--v2-red-glow);
}
.v2-form__group textarea {
    resize: vertical; min-height: 110px;
    font-family: 'Inter', sans-serif;
}
.v2-form__group select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2'%3e%3cpath d='M6 9l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat; background-position: right 12px center;
    background-size: 16px;
    padding-right: 36px;
}
.v2-form__submit {
    background: var(--v2-red); color: #fff;
    border: none; padding: var(--v2-space-4) var(--v2-space-6);
    font-family: 'Inter', sans-serif; font-size: var(--v2-text-base); font-weight: 600;
    cursor: pointer; display: inline-flex; align-items: center; gap: var(--v2-space-2);
    transition: all var(--v2-duration) var(--v2-ease);
    align-self: flex-start;
}
.v2-form__submit:hover {
    background: var(--v2-red-light);
    box-shadow: 0 0 24px var(--v2-red-glow-strong);
    transform: translateY(-1px);
}
.v2-form__alert {
    padding: var(--v2-space-3) var(--v2-space-4);
    border-radius: var(--v2-radius-sm);
    font-family: 'Inter', sans-serif; font-size: var(--v2-text-sm);
    border: 1px solid;
}
.v2-form__alert--success {
    background: rgba(34,197,94,0.08);
    border-color: rgba(34,197,94,0.3);
    color: #4ade80;
}
.v2-form__alert--error {
    background: rgba(230,57,70,0.08);
    border-color: rgba(230,57,70,0.3);
    color: var(--v2-red-light);
}

/* ─── Contact section: form is wider than the v2contact-grid 2-col ─── */
.v2-landing-contact {
    padding: var(--v2-space-16) var(--v2-space-5);
    background: var(--v2-bg-subtle);
}
.v2-landing-contact__grid {
    display: grid; grid-template-columns: 0.9fr 1.1fr;
    gap: var(--v2-space-10); margin-top: var(--v2-space-10);
    align-items: start;
}
.v2-landing-contact__aside {
    display: flex; flex-direction: column; gap: var(--v2-space-5);
}
.v2-landing-contact__lead {
    color: var(--v2-text-secondary);
    font-family: 'Inter', sans-serif;
    font-size: var(--v2-text-lg); line-height: 1.7;
    margin: 0 0 var(--v2-space-5);
}
.v2-landing-contact__block {
    background: var(--v2-bg-card);
    border: 1px solid var(--v2-border);
    border-radius: var(--v2-radius-md);
    padding: var(--v2-space-5);
    display: flex; gap: var(--v2-space-4);
    align-items: flex-start;
    transition: all var(--v2-duration) var(--v2-ease);
}
.v2-landing-contact__block:hover { border-color: var(--v2-border-hover); }
.v2-landing-contact__block--primary {
    border-color: var(--v2-red);
    background: linear-gradient(135deg, var(--v2-bg-card), rgba(230,57,70,0.05));
}
.v2-landing-contact__icon {
    flex-shrink: 0; width: 44px; height: 44px;
    background: rgba(230,57,70,0.1);
    border: 1px solid rgba(230,57,70,0.25);
    border-radius: var(--v2-radius-sm);
    display: flex; align-items: center; justify-content: center;
    color: var(--v2-red); font-size: 1.1rem;
}
.v2-landing-contact__block-content { flex: 1; }
.v2-landing-contact__block h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.85rem; color: var(--v2-text);
    margin: 0 0 4px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.08em;
}
.v2-landing-contact__block-value {
    display: block; color: var(--v2-text);
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem; font-weight: 500;
    margin-bottom: 2px;
}
.v2-landing-contact__block-note {
    display: block; color: var(--v2-text-muted);
    font-family: 'Inter', sans-serif;
    font-size: var(--v2-text-xs);
    margin-bottom: var(--v2-space-3);
}
.v2-landing-contact__form-wrap {
    background: var(--v2-bg-card);
    border: 1px solid var(--v2-border);
    border-radius: var(--v2-radius-md);
    padding: var(--v2-space-8);
}
.v2-landing-contact__form-wrap h3 {
    font-family: 'Orbitron', sans-serif;
    color: var(--v2-text); font-size: 1.4rem;
    margin: 0 0 var(--v2-space-2); font-weight: 700;
}
.v2-landing-contact__form-wrap > p {
    color: var(--v2-text-secondary);
    font-family: 'Inter', sans-serif;
    font-size: var(--v2-text-sm);
    margin: 0 0 var(--v2-space-6);
}

/* ─── Landing pages responsive ─── */
@media (max-width: 1024px) {
    .v2-landing-contact__grid { grid-template-columns: 1fr; gap: var(--v2-space-8); }
    .v2-landing-testimonials__grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .v2-hero--landing .v2-hero__content {
        padding: 90px var(--v2-space-5) var(--v2-space-10);
    }
    .v2-form__row { grid-template-columns: 1fr; }
    .v2-landing-contact__form-wrap { padding: var(--v2-space-5); }
    .v2-landing-trust { gap: var(--v2-space-5); }
}
