/* ============================================
 — Landing styles (Ferrari system)
 ============================================ */

/* ============================================
 RESET
 ============================================ */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: hidden; }
body { overflow-x: hidden; width: 100%; max-width: 100vw; }
body, h1, h2, h3, h4, p, ul, ol, figure, fieldset, legend { margin: 0; padding: 0; }
ul, ol { list-style: none; }
img { display: block; max-width: 100%; height: auto; }
button { font: inherit; cursor: pointer; background: none; border: 0; padding: 0; color: inherit; }
a { color: inherit; text-decoration: none; }
:focus-visible { outline: 2px solid var(--primary); outline-offset: 3px; }

/* ============================================
 ROOT — Ferrari design tokens
 ============================================ */
:root {
 /* Colors */
 --canvas: #141d2b;
 --canvas-elevated: #2c364b;
 --canvas-light: #ffffff;
 --surface-soft-light: #f7f7f7;
 --surface-strong-light: #ebebeb;
 --ink: #ffffff;
 --body: #969696;
 --body-on-light: #181818;
 --muted: #666666;
 --muted-soft: #8f8f8f;
 --hairline: #303030;
 --hairline-on-light: #d2d2d2;
 --hairline-soft: #ebebeb;
 --primary: #8d022f;
 --primary-active: #6e0125;
 --gold: #C9A961;
 --whatsapp: #25D366;
 --telegram: #229ED9;

 /* Typography */
 --font: 'Inter', -apple-system, system-ui, 'Segoe UI', Roboto, sans-serif;
 --fs-mega: clamp(40px, 7.5vw, 80px);
 --fs-xl: clamp(32px, 5vw, 56px);
 --fs-lg: clamp(26px, 4vw, 36px);
 --fs-md: clamp(20px, 2.6vw, 26px);
 --fs-title: 18px;
 --fs-body: 14px;
 --fs-body-lg: 16px;
 --fs-caption: 12px;
 --fs-caption-up: 11px;
 --fs-button: 14px;
 --fs-number: clamp(40px, 6vw, 80px);

 --tracking-display: -0.02em;
 --tracking-display-md: -0.012em;
 --tracking-caption: 0.1em;
 --tracking-button: 0.1em;
 --tracking-nav: 0.05em;

 /* Spacing — Ferrari 8px ladder */
 --space-xxxs: 4px;
 --space-xxs: 8px;
 --space-xs: 16px;
 --space-sm: 24px;
 --space-md: 32px;
 --space-lg: 48px;
 --space-xl: 64px;
 --space-xxl: 96px;
 --space-super: 128px;

 /* Layout */
 --container-max: 1280px;
 --container-narrow: 880px;
 --section-y: var(--space-xxl);
 --header-h: 64px;

 /* Radii — скруглённые по всему сайту */
 --r-none: 0;
 --r-input: 12px;
 --r-btn: 14px;
 --r-pill: 9999px;

 /* Transitions */
 --t-fast: 150ms ease;
 --t-med: 250ms ease;
}

@media (max-width: 767px) {
 :root { --section-y: var(--space-lg); }
}

/* ============================================
 BASE TYPOGRAPHY
 ============================================ */
body {
 font-family: var(--font);
 font-size: var(--fs-body);
 line-height: 1.5;
 color: var(--ink);
 background: var(--canvas);
 font-weight: 400;
 -webkit-font-smoothing: antialiased;
}

.display-mega {
 font-size: var(--fs-mega);
 font-weight: 500;
 line-height: 1.05;
 letter-spacing: var(--tracking-display);
 color: var(--ink);
 overflow-wrap: break-word;
 word-break: normal;
 hyphens: auto;
}
@media (max-width: 480px) {
 .display-mega br { display: none; }
}

.display-xl {
 font-size: var(--fs-xl);
 font-weight: 500;
 line-height: 1.1;
 letter-spacing: var(--tracking-display);
}

.display-lg {
 font-size: var(--fs-lg);
 font-weight: 500;
 line-height: 1.2;
 letter-spacing: var(--tracking-display-md);
 color: var(--ink);
 margin-bottom: var(--space-sm);
}
.section-light .display-lg,
.section-soft .display-lg,
.display-lg-light { color: var(--body-on-light); }

.display-md {
 font-size: var(--fs-md);
 font-weight: 500;
 line-height: 1.5;
 letter-spacing: 0.005em;
 color: var(--ink);
 margin-bottom: var(--space-sm);
}
.display-md-light { color: var(--body-on-light); }

.title-md {
 font-size: var(--fs-title);
 font-weight: 700;
 line-height: 1.2;
 color: inherit;
 margin-bottom: var(--space-xs);
}
.title-md-up { text-transform: uppercase; letter-spacing: 0.04em; font-weight: 700; }

.caption-up {
 display: inline-block;
 font-size: var(--fs-caption-up);
 font-weight: 600;
 letter-spacing: var(--tracking-caption);
 line-height: 1.4;
 text-transform: uppercase;
 margin-bottom: var(--space-xs);
}
.caption-accent { color: var(--primary); }
.caption-muted { color: var(--muted); }

.body-md { font-size: var(--fs-body); line-height: 1.6; color: var(--body); }
.body-md-light { font-size: var(--fs-body); line-height: 1.6; color: var(--muted); }
.body-dark { font-size: var(--fs-body-lg); line-height: 1.6; color: var(--body); margin-bottom: var(--space-md); }

.lead-light { font-size: var(--fs-body-lg); line-height: 1.6; color: var(--muted); margin-bottom: var(--space-lg); max-width: 720px; }
.lead-dark { font-size: var(--fs-body-lg); line-height: 1.6; color: var(--body); margin-bottom: var(--space-lg); max-width: 720px; }

/* ============================================
 CONTAINER & SECTIONS
 ============================================ */
.container {
 width: 100%;
 max-width: var(--container-max);
 margin: 0 auto;
 padding-left: var(--space-sm);
 padding-right: var(--space-sm);
}
.container-narrow { max-width: var(--container-narrow); }

.section {
 padding-top: var(--section-y);
 padding-bottom: var(--section-y);
}
.section-dark { background: var(--canvas); color: var(--ink); }
.section-light { background: var(--canvas-light); color: var(--body-on-light); }
.section-soft { background: var(--surface-soft-light); color: var(--body-on-light); }

/* ============================================
 BUTTONS — sharp 0px Ferrari geometry
 ============================================ */
.btn {
 display: inline-flex;
 align-items: center;
 justify-content: center;
 gap: var(--space-xxs);
 height: 48px;
 padding: 0 var(--space-md);
 font-size: var(--fs-button);
 font-weight: 700;
 line-height: 1;
 letter-spacing: var(--tracking-button);
 text-transform: uppercase;
 border-radius: var(--r-btn);
 border: 1px solid transparent;
 transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast);
 white-space: nowrap;
 text-align: center;
}
.btn-sm { height: 40px; padding: 0 var(--space-sm); font-size: 12px; }
.btn-lg { height: 56px; padding: 0 var(--space-lg); }
.btn-block { width: 100%; }

.btn-primary {
 background: var(--primary);
 color: #fff;
}
.btn-primary:hover { background: var(--primary-active); }
.btn-primary:active { background: var(--primary-active); }

.btn-outline-on-dark {
 background: transparent;
 color: var(--ink);
 border-color: rgba(255, 255, 255, 0.5);
}
.btn-outline-on-dark:hover {
 background: rgba(255, 255, 255, 0.08);
 border-color: var(--ink);
}

.btn-outline-on-light {
 background: transparent;
 color: var(--body-on-light);
 border-color: var(--body-on-light);
}
.btn-outline-on-light:hover {
 background: var(--body-on-light);
 color: var(--ink);
}

.ctas-row {
 display: flex;
 flex-wrap: wrap;
 gap: var(--space-xs);
 margin-top: var(--space-lg);
}

/* ============================================
 BADGE PILL — only place pills are allowed
 ============================================ */
.badge-pill {
 display: inline-flex;
 align-items: center;
 gap: var(--space-xxs);
 padding: var(--space-xxxs) var(--space-xs);
 background: var(--surface-strong-light);
 color: var(--body-on-light);
 font-size: var(--fs-caption-up);
 font-weight: 600;
 letter-spacing: var(--tracking-caption);
 text-transform: uppercase;
 border-radius: var(--r-pill);
 line-height: 1.4;
}
.badge-pill.badge-accent { background: var(--primary); color: #fff; }
.badge-pill.badge-on-dark { background: var(--canvas-elevated); color: var(--ink); }
.badge-pill i { width: 14px; height: 14px; }

/* ============================================
 HEADER — top-nav-on-dark
 ============================================ */
.site-header {
 position: fixed;
 top: 0; left: 0; right: 0;
 z-index: 50;
 height: var(--header-h);
 background: transparent;
 transition: background var(--t-med), border-bottom-color var(--t-med);
 border-bottom: 1px solid transparent;
}
.site-header.scrolled {
 background: var(--canvas);
 border-bottom-color: var(--hairline);
}

.header-inner {
 display: flex;
 align-items: center;
 justify-content: space-between;
 gap: var(--space-md);
 height: 100%;
}

.logo {
 font-size: 16px;
 font-weight: 700;
 letter-spacing: 0.18em;
 text-transform: uppercase;
 color: var(--ink);
}
.logo-accent { font-weight: 400; opacity: 0.7; }

.nav-desktop {
 display: none;
 gap: var(--space-lg);
}
.nav-desktop .nav-link {
 font-size: 13px;
 font-weight: 600;
 letter-spacing: var(--tracking-nav);
 text-transform: uppercase;
 color: var(--ink);
 line-height: 1.4;
 transition: color var(--t-fast);
}
.nav-desktop .nav-link:hover { color: var(--primary); }

.header-right {
 display: flex;
 align-items: center;
 gap: var(--space-sm);
}

.header-phone {
 display: none;
 font-size: 14px;
 font-weight: 600;
 color: var(--ink);
 letter-spacing: 0.02em;
}

.burger {
 width: 40px;
 height: 40px;
 display: inline-flex;
 flex-direction: column;
 align-items: center;
 justify-content: center;
 gap: 5px;
}
.burger span {
 display: block;
 width: 22px;
 height: 2px;
 background: var(--ink);
 transition: transform var(--t-fast), opacity var(--t-fast);
}
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
 position: fixed;
 top: var(--header-h);
 left: 0; right: 0;
 background: var(--canvas);
 border-bottom: 1px solid var(--hairline);
 padding: var(--space-md) var(--space-sm);
 z-index: 49;
}
.mobile-menu nav {
 display: flex;
 flex-direction: column;
 gap: var(--space-md);
}
.mobile-menu .nav-link {
 font-size: 16px;
 font-weight: 600;
 letter-spacing: var(--tracking-nav);
 text-transform: uppercase;
 color: var(--ink);
}
.mobile-menu .nav-link-accent { color: var(--primary); }

/* ============================================
 SECTION 1: HERO
 ============================================ */
.hero {
 position: relative;
 min-height: 100vh;
 display: flex;
 align-items: center;
 overflow: hidden;
 background: var(--canvas);
 padding-top: calc(var(--header-h) + var(--space-md));
 padding-bottom: var(--space-xl);
}
.hero-bg {
 position: absolute;
 inset: 0;
 background-color: #0a0a0a;
 background-image: url('img/hero.jpg');
 background-size: cover;
 background-position: center right;
 z-index: 0;
}
.hero-overlay {
 position: absolute;
 inset: 0;
 background: linear-gradient(90deg, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.75) 35%, rgba(0,0,0,0.35) 70%, rgba(0,0,0,0.1) 100%);
 z-index: 1;
}
@media (max-width: 768px) {
 .hero-overlay {
 background: linear-gradient(180deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.55) 50%, rgba(0,0,0,0.8) 100%);
 }
}
.hero-content {
 position: relative;
 z-index: 2;
 max-width: 880px;
 margin-left: 0;
 margin-right: auto;
}
.hero-lead {
 font-size: var(--fs-body-lg);
 line-height: 1.6;
 color: var(--ink);
 opacity: 0.85;
 margin-top: var(--space-md);
 max-width: 640px;
}
.hero-ctas {
 display: flex;
 flex-wrap: wrap;
 gap: var(--space-md);
 margin-top: var(--space-lg);
}
.cta-stack {
 display: flex;
 flex-direction: column;
 gap: var(--space-xxs);
}
.cta-sub {
 font-size: var(--fs-caption);
 color: var(--body);
 letter-spacing: 0.02em;
}
.hero-trust {
 display: flex;
 flex-wrap: wrap;
 gap: var(--space-md);
 margin-top: var(--space-lg);
 font-size: var(--fs-caption);
 color: var(--ink);
 opacity: 0.8;
}
.hero-trust span { display: inline-flex; align-items: center; gap: var(--space-xxs); }
.hero-trust i { width: 16px; height: 16px; color: var(--primary); }

/* ============================================
 SECTION 2: INTERIORS GRID
 ============================================ */
.interiors-grid {
 display: grid;
 grid-template-columns: repeat(2, 1fr);
 gap: var(--space-xs);
 margin-top: var(--space-md);
}
.interior-tile {
 position: relative;
 overflow: hidden;
 background: var(--surface-strong-light);
}
.interior-tile img {
 width: 100%;
 aspect-ratio: 4 / 3;
 object-fit: cover;
}
.interior-tile figcaption {
 position: absolute;
 bottom: var(--space-xs);
 left: var(--space-xs);
 background: var(--canvas);
 color: var(--ink);
 padding: var(--space-xxxs) var(--space-xs);
 font-weight: 600;
}

/* ============================================
 SECTION 3: VIDEO
 ============================================ */
.video-frame {
 position: relative;
 width: 100%;
 aspect-ratio: 16 / 9;
 background: var(--canvas-elevated);
 margin-top: var(--space-md);
 overflow: hidden;
 cursor: pointer;
}
.video-poster {
 position: absolute;
 inset: 0;
 background:
 linear-gradient(135deg, rgba(141, 2, 47, 0.15) 0%, transparent 60%),
 linear-gradient(180deg, #2a2a2a 0%, #1a1a1a 100%);
}
.video-play {
 position: absolute;
 top: 50%; left: 50%;
 transform: translate(-50%, -50%);
 width: 88px;
 height: 88px;
 background: var(--primary);
 color: #fff;
 display: inline-flex;
 align-items: center;
 justify-content: center;
 transition: background var(--t-fast), transform var(--t-fast);
}
.video-play:hover { background: var(--primary-active); transform: translate(-50%, -50%) scale(1.05); }
.video-play i { width: 40px; height: 40px; margin-left: 4px; }

/* ============================================
 SECTION 4: CATALOG
 ============================================ */
.catalog-grid {
 display: grid;
 grid-template-columns: 1fr;
 gap: var(--space-md);
 margin-top: var(--space-md);
}
.model-card {
 position: relative;
 background: var(--canvas-light);
 padding: var(--space-md);
 border: 1px solid var(--hairline-on-light);
 display: flex;
 flex-direction: column;
 min-width: 0;
 overflow: hidden;
}
.model-card .badge-pill {
 position: absolute;
 top: var(--space-sm);
 left: var(--space-sm);
 z-index: 2;
}
.model-img {
 margin: calc(var(--space-md) * -1) calc(var(--space-md) * -1) var(--space-md);
 background: var(--surface-strong-light);
 overflow: hidden;
}
.model-img img {
 width: 100%;
 aspect-ratio: 1 / 1;
 object-fit: cover;
}
.model-card .title-md {
 text-transform: uppercase;
 letter-spacing: 0.04em;
 font-size: 18px;
 color: var(--body-on-light);
 margin-bottom: var(--space-sm);
}
.specs {
 display: flex;
 flex-direction: column;
 gap: var(--space-xxs);
 margin-bottom: var(--space-md);
 font-size: var(--fs-body);
 color: var(--muted);
}
.specs li { display: flex; align-items: center; gap: var(--space-xxs); }
.specs i { width: 16px; height: 16px; flex-shrink: 0; color: var(--body-on-light); }

.price-old {
 font-size: var(--fs-body);
 color: var(--muted-soft);
 text-decoration: line-through;
 margin-bottom: var(--space-xxs);
}
.price-new {
 font-size: clamp(36px, 5vw, 56px);
 font-weight: 700;
 color: var(--primary);
 letter-spacing: var(--tracking-display);
 line-height: 1;
 margin-bottom: var(--space-md);
}

/* ============================================
 SECTION 5: WHY US
 ============================================ */
.why-grid {
 display: grid;
 grid-template-columns: 1fr;
 gap: var(--space-lg);
 margin-top: var(--space-lg);
}
.why-col {
 padding-top: var(--space-md);
 border-top: 1px solid var(--hairline);
}
.why-icon {
 width: 32px;
 height: 32px;
 color: var(--primary);
 margin-bottom: var(--space-sm);
}
.why-col .title-md { color: var(--ink); margin-bottom: var(--space-xs); }

/* ============================================
 SECTION 6: GUARANTEE + TIMER (split)
 ============================================ */
.section-split {
 display: grid;
 grid-template-columns: 1fr;
}
.split-pane { padding: var(--section-y) var(--space-sm); }
.split-light { background: var(--canvas-light); color: var(--body-on-light); }
.split-dark { background: var(--canvas); color: var(--ink); }
.split-inner {
 max-width: 480px;
 margin: 0 auto;
}

.checklist {
 display: flex;
 flex-direction: column;
 gap: var(--space-md);
 margin: var(--space-lg) 0;
}
.checklist li {
 display: flex;
 align-items: flex-start;
 gap: var(--space-sm);
}
.check-icon {
 width: 24px;
 height: 24px;
 flex-shrink: 0;
 color: var(--primary);
 margin-top: 2px;
}
.check-icon-on-dark {
 width: 20px;
 height: 20px;
 flex-shrink: 0;
 color: var(--primary);
 margin-top: 2px;
}
.checklist strong {
 font-weight: 700;
 display: block;
 margin-bottom: var(--space-xxxs);
}

/* Countdown — number-display 80px Ferrari spec */
.countdown {
 display: flex;
 align-items: flex-end;
 gap: var(--space-xs);
 margin: var(--space-lg) 0;
 flex-wrap: wrap;
}
.countdown-cell {
 display: flex;
 flex-direction: column;
 align-items: center;
 min-width: 72px;
}
.countdown-num {
 font-size: var(--fs-number);
 font-weight: 700;
 line-height: 1;
 letter-spacing: var(--tracking-display);
 color: var(--ink);
 font-variant-numeric: tabular-nums;
}
.countdown-label {
 font-size: var(--fs-caption-up);
 font-weight: 600;
 letter-spacing: var(--tracking-caption);
 text-transform: uppercase;
 color: var(--body);
 margin-top: var(--space-xxs);
}
.countdown-sep {
 font-size: var(--fs-number);
 font-weight: 500;
 color: var(--muted);
 line-height: 1;
 align-self: flex-start;
 margin-top: 4px;
}

/* ============================================
 SECTION 7: HOW TO ORDER — 4 steps
 ============================================ */
.steps-grid {
 display: grid;
 grid-template-columns: 1fr;
 gap: var(--space-lg);
 margin-top: var(--space-lg);
}
.step-cell {
 padding-top: var(--space-md);
 border-top: 2px solid var(--body-on-light);
}
.step-num {
 display: block;
 font-size: clamp(48px, 6vw, 80px);
 font-weight: 700;
 line-height: 1;
 letter-spacing: var(--tracking-display);
 color: var(--body-on-light);
 margin-bottom: var(--space-sm);
 font-variant-numeric: tabular-nums;
}
.step-cell .title-md { color: var(--body-on-light); margin-bottom: var(--space-xs); }

/* ============================================
 SECTION 8: REVIEWS
 ============================================ */
.reviews-grid {
 display: grid;
 grid-template-columns: 1fr;
 gap: var(--space-md);
 margin-top: var(--space-md);
}
.review-card {
 background: var(--canvas-light);
 padding: var(--space-md);
 border: 1px solid var(--hairline-on-light);
 display: flex;
 flex-direction: column;
}
.review-stars {
 display: inline-flex;
 gap: var(--space-xxxs);
 margin-bottom: var(--space-sm);
}
.review-stars i {
 width: 18px;
 height: 18px;
 color: var(--gold);
 fill: var(--gold);
}
.review-text {
 font-size: var(--fs-body-lg);
 line-height: 1.6;
 color: var(--body-on-light);
 margin-bottom: var(--space-md);
 flex-grow: 1;
}
.review-author {
 display: flex;
 align-items: center;
 gap: var(--space-sm);
 padding-top: var(--space-sm);
 border-top: 1px solid var(--hairline-soft);
}
.review-avatar {
 width: 44px;
 height: 44px;
 border-radius: var(--r-pill);
 object-fit: cover;
 background: var(--surface-strong-light);
}
.review-author strong {
 display: block;
 font-weight: 700;
 color: var(--body-on-light);
}
.review-author span {
 display: block;
 font-size: var(--fs-caption);
 color: var(--muted);
}

/* ============================================
 SECTION 9: FAQ
 ============================================ */
.faq-list {
 margin-top: var(--space-md);
 border-top: 1px solid var(--hairline-on-light);
}
.faq-item {
 border-bottom: 1px solid var(--hairline-on-light);
}
.faq-item summary {
 display: flex;
 align-items: center;
 justify-content: space-between;
 gap: var(--space-sm);
 padding: var(--space-md) 0;
 cursor: pointer;
 list-style: none;
 font-size: var(--fs-body-lg);
 font-weight: 600;
 color: var(--body-on-light);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary > span { flex-grow: 1; }
.faq-plus, .faq-minus {
 width: 24px;
 height: 24px;
 color: var(--body-on-light);
 flex-shrink: 0;
}
.faq-minus { display: none; }
.faq-item[open] .faq-plus { display: none; }
.faq-item[open] .faq-minus { display: inline-block; color: var(--primary); }
.faq-body {
 padding: 0 0 var(--space-md);
 color: var(--muted);
 font-size: var(--fs-body-lg);
 line-height: 1.7;
 max-width: 720px;
}

/* ============================================
 SECTION 10: FINAL FORM
 ============================================ */
.lead-form {
 display: flex;
 flex-direction: column;
 gap: var(--space-md);
 margin-top: var(--space-md);
}
.form-field {
 display: flex;
 flex-direction: column;
 gap: var(--space-xxs);
}
.form-label {
 font-size: var(--fs-caption-up);
 font-weight: 600;
 letter-spacing: var(--tracking-caption);
 text-transform: uppercase;
 color: var(--muted);
}
.lead-form input[type="text"],
.lead-form input[type="tel"] {
 height: 48px;
 padding: 0 var(--space-xs);
 background: var(--canvas-light);
 border: 1px solid var(--hairline-on-light);
 border-radius: var(--r-input);
 color: var(--body-on-light);
 font-size: var(--fs-body-lg);
 font-family: inherit;
 transition: border-color var(--t-fast);
}
.lead-form input:focus {
 outline: none;
 border-color: var(--primary);
}

.form-fieldset {
 border: 0;
 display: flex;
 flex-wrap: wrap;
 gap: 8px;
 padding: 0;
}
.form-fieldset legend {
 font-size: var(--fs-caption-up);
 font-weight: 600;
 letter-spacing: var(--tracking-caption);
 text-transform: uppercase;
 color: var(--muted);
 margin-bottom: var(--space-xs);
 width: 100%;
}
.radio-tile { cursor: pointer; flex: 0 1 auto; }
.radio-tile input { position: absolute; opacity: 0; pointer-events: none; }
.radio-tile span {
 display: inline-block;
 padding: 9px 14px;
 border: 1px solid var(--hairline-on-light);
 font-size: 14px;
 font-weight: 500;
 color: var(--body-on-light);
 transition: all var(--t-fast);
 background: var(--canvas-light);
 white-space: nowrap;
}
.radio-tile:hover span { border-color: var(--body-on-light); }
.radio-tile input:checked + span {
 background: var(--body-on-light);
 color: var(--ink);
 border-color: var(--body-on-light);
}
.radio-tile input:focus-visible + span { outline: 2px solid var(--primary); outline-offset: 2px; }

.form-note {
 display: inline-flex;
 align-items: center;
 gap: var(--space-xxs);
 font-size: var(--fs-caption);
 color: var(--muted);
 margin-top: var(--space-xs);
}
.form-note i { width: 14px; height: 14px; color: var(--primary); }

.bonus-list {
 display: flex;
 flex-direction: column;
 gap: var(--space-sm);
 margin-top: var(--space-md);
}
.bonus-list li {
 display: flex;
 align-items: flex-start;
 gap: var(--space-sm);
 font-size: var(--fs-body-lg);
 color: var(--ink);
}

/* ============================================
 FOOTER
 ============================================ */
.site-footer {
 background: var(--canvas);
 color: var(--body);
 padding: var(--space-xl) 0 var(--space-md);
 font-size: var(--fs-body);
}
.footer-grid {
 display: grid;
 grid-template-columns: 1fr;
 gap: var(--space-lg);
}
.footer-col h4.footer-title {
 font-size: var(--fs-caption-up);
 font-weight: 600;
 letter-spacing: var(--tracking-caption);
 text-transform: uppercase;
 color: var(--ink);
 margin-bottom: var(--space-sm);
}
.footer-col ul { display: flex; flex-direction: column; gap: var(--space-xxs); }
.footer-col a {
 font-size: var(--fs-body);
 color: var(--body);
 transition: color var(--t-fast);
}
.footer-col a:hover { color: var(--ink); }

.logo-footer {
 display: inline-block;
 margin-bottom: var(--space-sm);
 font-size: 18px;
}
.footer-desc { font-size: var(--fs-body); color: var(--body); line-height: 1.6; max-width: 320px; }

.footer-contacts li {
 display: flex;
 align-items: flex-start;
 gap: var(--space-xxs);
 color: var(--body);
}
.footer-contacts i { width: 16px; height: 16px; color: var(--primary); flex-shrink: 0; margin-top: 2px; }

.footer-divider {
 border: 0;
 border-top: 1px solid var(--hairline);
 margin: var(--space-lg) 0 var(--space-md);
}
.footer-bottom {
 display: flex;
 flex-wrap: wrap;
 gap: var(--space-md);
 font-size: var(--fs-caption);
 color: var(--muted);
}
.footer-bottom a { color: var(--muted); }
.footer-bottom a:hover { color: var(--ink); }

/* ============================================
 FLOATING CONTACTS PANEL
 ============================================ */
.float-panel {
 position: fixed;
 bottom: 0;
 left: 0;
 right: 0;
 z-index: 40;
 display: flex;
 align-items: center;
 justify-content: space-between;
 gap: var(--space-xs);
 padding: 12px var(--space-xs) calc(12px + env(safe-area-inset-bottom));
 background: var(--canvas-light);
 border-top: 1px solid var(--hairline-on-light);
 transform: translateY(100%);
 opacity: 0;
 transition: transform var(--t-med), opacity var(--t-med);
}
.float-panel.visible {
 transform: translateY(0);
 opacity: 1;
}
.float-btn {
 width: 48px;
 height: 48px;
 display: inline-flex;
 align-items: center;
 justify-content: center;
 background: var(--canvas-elevated);
 color: var(--ink);
 border-radius: var(--r-btn);
 transition: background var(--t-fast), transform var(--t-fast);
}
.float-btn i { width: 22px; height: 22px; }
.float-btn:hover { transform: translateY(-2px); }
.float-tel { background: var(--canvas); }
.float-wa { background: var(--whatsapp); }
.float-tg { background: var(--telegram); }
.float-quiz {
 background: var(--primary);
 width: 56px;
 height: 56px;
 animation: pulse 2.4s infinite;
}
.float-quiz i { width: 26px; height: 26px; }

@keyframes pulse {
 0%, 100% { box-shadow: 0 0 0 0 rgba(141, 2, 47, 0.5); }
 50% { box-shadow: 0 0 0 12px rgba(141, 2, 47, 0); }
}

/* ============================================
 RESPONSIVE — Tablet (≥ 768px)
 ============================================ */
@media (min-width: 768px) {
 .container {
 padding-left: var(--space-lg);
 padding-right: var(--space-lg);
 }

 .interiors-grid { grid-template-columns: repeat(4, 1fr); }
 .catalog-grid { grid-template-columns: repeat(2, 1fr); }
 .why-grid { grid-template-columns: repeat(3, 1fr); }
 .section-split { grid-template-columns: 1fr 1fr; }
 .steps-grid { grid-template-columns: repeat(2, 1fr); }
 .reviews-grid { grid-template-columns: repeat(3, 1fr); }
 .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.5fr; }

 .split-pane { padding: var(--space-xxl) var(--space-lg); }

 /* Floating panel — vertical right edge */
 .float-panel {
 position: fixed;
 bottom: var(--space-sm);
 top: auto;
 left: auto;
 right: var(--space-sm);
 width: auto;
 flex-direction: column;
 align-items: center;
 padding: 0;
 background: transparent;
 border: 0;
 gap: var(--space-xxs);
 }
 .float-btn { width: 56px; height: 56px; }
 .float-btn i { width: 24px; height: 24px; }
 .float-quiz { width: 64px; height: 64px; }
 .float-quiz i { width: 28px; height: 28px; }
}

/* ============================================
 RESPONSIVE — Desktop (≥ 1024px)
 ============================================ */
/* Desktop nav switch — at 1100px+ where it actually fits */
@media (min-width: 1100px) {
 .nav-desktop { display: flex; }
 .burger { display: none; }
 .header-phone { display: inline-block; }
 .mobile-menu { display: none !important; }
 .header-right .btn-primary { display: inline-flex; }
}
/* Buttons wrap text on tablet too, not just phone */
@media (max-width: 900px) {
 .btn { white-space: normal; line-height: 1.2; }
 .btn-lg { padding: 8px var(--space-md); height: auto; min-height: 56px; }
}

@media (min-width: 1024px) {
 .catalog-grid { grid-template-columns: repeat(3, 1fr); }
 .steps-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ============================================
 LIGHTBOX GALLERY
 ============================================ */
.model-img {
 border: 0;
 padding: 0;
 cursor: pointer;
 position: relative;
 display: block;
 width: auto;
 align-self: stretch;
}
.model-img-zoom {
 position: absolute;
 right: var(--space-sm);
 bottom: var(--space-sm);
 display: inline-flex;
 align-items: center;
 gap: 6px;
 padding: 6px 10px;
 background: rgba(24,24,24,0.78);
 color: #fff;
 font-size: 12px;
 letter-spacing: 0.05em;
 text-transform: uppercase;
 opacity: 0;
 transform: translateY(4px);
 transition: opacity 0.2s ease, transform 0.2s ease;
 pointer-events: none;
}
.model-img-zoom i { width: 14px; height: 14px; }
.model-card:hover .model-img-zoom,
.model-img:focus-visible .model-img-zoom {
 opacity: 1;
 transform: translateY(0);
}
.model-card:hover .model-img img { transform: scale(1.03); }
.model-img img { transition: transform 0.4s ease; }

.lb {
 position: fixed;
 inset: 0;
 background: rgba(15,15,15,0.96);
 z-index: 9999;
 display: flex;
 flex-direction: column;
 align-items: center;
 justify-content: center;
 padding: clamp(40px, 6vh, 80px) clamp(16px, 4vw, 56px);
}
.lb[hidden] { display: none; }
.lb-close, .lb-prev, .lb-next {
 position: absolute;
 background: rgba(255,255,255,0.08);
 border: 1px solid rgba(255,255,255,0.18);
 color: #fff;
 width: 48px;
 height: 48px;
 display: inline-flex;
 align-items: center;
 justify-content: center;
 cursor: pointer;
 border-radius: 12px;
 transition: background 0.15s ease;
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: rgba(255,255,255,0.18); }
.lb-close { top: 24px; right: 24px; }
.lb-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 24px; top: 50%; transform: translateY(-50%); }
.lb-close i, .lb-prev i, .lb-next i { width: 24px; height: 24px; }

.lb-stage {
 margin: 0;
 display: flex;
 flex-direction: column;
 align-items: center;
 gap: var(--space-sm);
 max-width: min(1200px, 92vw);
 max-height: 80vh;
}
.lb-img {
 max-width: 100%;
 max-height: 68vh;
 object-fit: contain;
 background: #181818;
 display: block;
}
.lb-caption {
 display: flex;
 flex-wrap: wrap;
 align-items: baseline;
 gap: var(--space-sm);
 color: rgba(255,255,255,0.78);
 font-size: 14px;
 text-align: center;
 justify-content: center;
}
.lb-title { color: #fff; font-weight: 600; letter-spacing: 0.02em; }
.lb-price { color: var(--primary, #8d022f); font-weight: 700; }
.lb-counter { color: rgba(255,255,255,0.5); font-size: 12px; }

.lb-thumbs {
 display: flex;
 gap: 6px;
 margin-top: var(--space-sm);
 flex-wrap: wrap;
 justify-content: center;
 max-width: min(1200px, 92vw);
}
.lb-thumbs button {
 background: transparent;
 border: 2px solid transparent;
 padding: 0;
 cursor: pointer;
 width: 60px;
 height: 60px;
 overflow: hidden;
 opacity: 0.55;
 transition: opacity 0.15s ease, border-color 0.15s ease;
}
.lb-thumbs button.active { border-color: rgba(255,255,255,0.9); opacity: 1; }
.lb-thumbs button:hover { opacity: 1; }
.lb-thumbs img { width: 100%; height: 100%; object-fit: cover; display: block; }

@media (max-width: 600px) {
 .lb-prev, .lb-next { top: auto; bottom: 88px; transform: none; width: 44px; height: 44px; }
 .lb-prev { left: 16px; }
 .lb-next { right: 16px; }
 .lb-close { top: 16px; right: 16px; width: 40px; height: 40px; }
 .lb-thumbs button { width: 44px; height: 44px; }
}

body.lb-open { overflow: hidden; }

/* ============================================
 GRID/FLEX TRACK SAFETY — prevent children from pushing tracks wider than 1fr.
 Sets min-width:0 on all direct grid/flex items to allow shrinking below content.
 ============================================ */
.interiors-grid > *,
.catalog-grid > *,
.why-grid > *,
.section-split > *,
.steps-grid > *,
.reviews-grid > *,
.footer-grid > *,
.lead-form > *,
.split-inner > * { min-width: 0; }
.split-pane, .split-inner, .lead-form { min-width: 0; }
.lead-form input[type="text"],
.lead-form input[type="tel"] { width: 100%; }
img, video { max-width: 100%; height: auto; }

/* ============================================
 MOBILE OVERFLOW HARDENING (≤ 600px)
 ============================================ */
@media (max-width: 600px) {
 /* allow ALL buttons to wrap so long labels don't push parent wider */
 .btn { white-space: normal; line-height: 1.2; padding: 0 var(--space-sm); }
 .btn-lg { padding: 0 var(--space-md); }
 /* header: hide CTA-button on narrow phones — keep logo + phone + burger only */
 .header-right .btn-primary { display: none; }
 /* hero CTAs become full-width stack — no nowrap pushing parent */
 .hero-ctas { flex-direction: column; align-items: stretch; gap: var(--space-sm); }
 .hero-ctas .cta-stack { width: 100%; }
 .hero-ctas .btn { width: 100%; }
 /* prevent any flex/grid item from pushing parent wider */
 .model-card,
 .interior-tile,
 .review-card,
 .faq-item,
 .step-card { min-width: 0; }
 /* hero trust badges — wrap properly */
 .hero-trust { gap: var(--space-xs); }
 .hero-trust span { font-size: 12px; }
 /* big-font cards safety */
 .price-new { font-size: 32px; }
 /* container — chuть-чуть меньше паддингов на самых узких */
 .container { padding-left: 16px; padding-right: 16px; }
}

/* ============================================
 INTERIORS MARQUEE — slow seamless left→right scroll
 ============================================ */
.interiors-marquee {
 margin-top: var(--space-md);
 overflow: hidden;
 width: 100%;
 position: relative;
 /* fade edges for premium feel */
 -webkit-mask-image: linear-gradient(to right, transparent 0, #000 6%, #000 94%, transparent 100%);
 mask-image: linear-gradient(to right, transparent 0, #000 6%, #000 94%, transparent 100%);
}
.interiors-track {
 display: flex;
 gap: 16px;
 width: max-content;
 animation: interiorsMarquee 90s linear infinite;
 will-change: transform;
}
.interiors-marquee:hover .interiors-track { animation-play-state: paused; }
.interiors-track .interior-tile {
 flex: 0 0 auto;
 width: 320px;
 height: 240px;
 position: relative;
 overflow: hidden;
 background: var(--surface-strong-light);
}
.interiors-track .interior-tile img {
 width: 100%;
 height: 100%;
 object-fit: cover;
 aspect-ratio: auto;
}
.interiors-track .interior-tile figcaption {
 position: absolute;
 bottom: 12px;
 left: 12px;
 background: var(--canvas);
 color: var(--ink);
 padding: 4px 12px;
 font-weight: 600;
 font-size: 11px;
 letter-spacing: 0.1em;
 text-transform: uppercase;
}
@keyframes interiorsMarquee {
 from { transform: translate3d(0, 0, 0); }
 to { transform: translate3d(-50%, 0, 0); }
}
@media (max-width: 767px) {
 .interiors-track { gap: 12px; animation-duration: 75s; }
 .interiors-track .interior-tile { width: 240px; height: 180px; }
}
@media (prefers-reduced-motion: reduce) {
 .interiors-track { animation: none; transform: translate3d(0, 0, 0); }
}

/* ============================================
 CTA MODAL — короткая лид-форма (одно поле телефон + автосабмит)
 ============================================ */
.cta-modal {
 position: fixed;
 inset: 0;
 background: rgba(15, 15, 15, 0.92);
 z-index: 10000;
 display: flex;
 align-items: center;
 justify-content: center;
 padding: 16px;
 animation: ctaFadeIn 0.18s ease-out;
}
.cta-modal[hidden] { display: none; }
@keyframes ctaFadeIn {
 from { opacity: 0; }
 to { opacity: 1; }
}
.cta-modal-card {
 position: relative;
 background: var(--canvas-light);
 color: var(--body-on-light);
 max-width: 480px;
 width: 100%;
 padding: 40px 32px 32px;
 box-shadow: 0 24px 80px rgba(0,0,0,0.5);
 animation: ctaSlideUp 0.22s ease-out;
}
@keyframes ctaSlideUp {
 from { transform: translateY(20px); opacity: 0; }
 to { transform: translateY(0); opacity: 1; }
}
.cta-modal-close {
 position: absolute;
 top: 12px;
 right: 12px;
 width: 40px;
 height: 40px;
 display: inline-flex;
 align-items: center;
 justify-content: center;
 color: var(--muted);
 background: transparent;
 border: 0;
 cursor: pointer;
 transition: color var(--t-fast);
}
.cta-modal-close:hover { color: var(--body-on-light); }
.cta-modal-close i { width: 20px; height: 20px; }
.cta-modal-lead {
 color: var(--muted);
 margin-bottom: 20px;
 line-height: 1.5;
}
.cta-modal-input {
 width: 100%;
 height: 56px;
 padding: 0 16px;
 background: var(--surface-soft-light);
 border: 2px solid var(--hairline-on-light);
 border-radius: var(--r-input);
 font-family: inherit;
 font-size: 18px;
 font-weight: 500;
 color: var(--body-on-light);
 margin-bottom: 8px;
 transition: border-color var(--t-fast), background var(--t-fast);
}
.cta-modal-input:focus {
 outline: none;
 border-color: var(--primary);
 background: var(--canvas-light);
}
.cta-modal-hint {
 font-size: 12px;
 color: var(--muted);
 margin-bottom: 16px;
 letter-spacing: 0.02em;
}
.cta-modal-error {
 font-size: 13px;
 color: var(--primary);
 margin-bottom: 12px;
 font-weight: 500;
}
.cta-modal .btn-primary {
 width: 100%;
 height: 56px;
 font-size: 14px;
 letter-spacing: 0.1em;
 text-transform: uppercase;
}
.cta-modal-alt {
 display: block;
 text-align: center;
 margin-top: 12px;
 font-size: 13px;
 color: var(--muted);
 text-decoration: underline;
 text-underline-offset: 3px;
}
.cta-modal-alt:hover { color: var(--body-on-light); }
@media (max-width: 480px) {
 .cta-modal-card { padding: 32px 20px 24px; }
}

/* ============================================
 FORM HINT (под полем телефона в #final-form)
 ============================================ */
.form-hint {
 display: block;
 font-size: 12px;
 color: var(--muted);
 margin-top: 6px;
 letter-spacing: 0.02em;
}
.lead-form-simple .form-field { margin-bottom: 20px; }

/* ============================================
 PRINT (basic)
 ============================================ */
@media print {
 .float-panel, .site-header, .burger, .cta-modal, .interiors-marquee { display: none !important; }
 body { background: #fff; color: #000; }
}

/* ============================================
 ============================================
 REMA SUMMIT 2026 — кастом поверх labrea-системы
 ============================================
 ============================================ */
:root {
 --canvas-deep: #0c141e;
 --primary-glow: rgba(141, 2, 47, 0.35);
 --primary-glow-strong: rgba(141, 2, 47, 0.55);
 --font-display: 'Space Grotesk', 'Inter', sans-serif;
}

body { background: var(--canvas-deep); }

.rema-logo {
 display: inline-flex;
 align-items: center;
 gap: 10px;
 font-family: var(--font-display);
 font-weight: 700;
 letter-spacing: 0.04em;
 font-size: 22px;
 color: var(--ink);
}
.rema-logo__mark { width: 32px; height: 32px; flex-shrink: 0; }
.rema-logo__text { line-height: 1; }
.rema-logo .accent { color: var(--primary); }
.rema-logo__img { height: 44px; width: auto; display: block; max-width: 100%; }
.rema-logo__img--footer { height: 58px; }
@media (max-width: 480px) {
 .rema-logo__img { height: 32px; }
}

/* === REMA HERO (3-layer dark + portrait + red glow) === */
.rema-hero {
 position: relative;
 height: 100vh;
 min-height: 600px;
 padding-top: calc(var(--header-h) + var(--space-lg));
 padding-bottom: var(--space-sm);
 overflow: hidden;
 background: var(--canvas-deep);
 color: var(--ink);
 display: flex;
 align-items: center;
}
.rema-hero__bg {
 position: absolute;
 inset: 0;
 background: var(--canvas-deep);
 z-index: 0;
}
.rema-hero__bgimg {
 position: absolute;
 top: 0; left: 0;
 width: 100%;
 height: auto;
 z-index: 0;
 transform: translate(4px, -13px) scale(1.06);
 transform-origin: center top;
 pointer-events: none;
 -webkit-user-drag: none;
 user-select: none;
}
/* мобилка: картинка по высоте героя не помещается → cover, высота по контенту */
@media (max-width: 767px) {
 .rema-hero { height: auto; min-height: 700px; align-items: flex-start; }
 .rema-hero__bgimg { width: 100%; height: 100%; object-fit: cover; object-position: 78% 42%; transform: none; }
 /* затемняем правую сторону + низ, чтобы башни читались силуэтом, а текст/Рем не сливались */
 .rema-hero__overlay {
  background:
   linear-gradient(180deg, transparent 45%, rgba(12,20,30,0.8) 82%, #0c141e 100%),
   linear-gradient(270deg, rgba(12,20,30,0.62) 0%, rgba(12,20,30,0.15) 45%, transparent 65%);
 }
}
.rema-hero__overlay {
 position: absolute;
 inset: 0;
 background: linear-gradient(180deg, transparent 55%, rgba(12,20,30,0.85) 85%, #0c141e 100%);
 z-index: 1;
}
/* Рем — слой поверх города. right/bottom двигают, height масштаб, bottom<0 = подрезка снизу (overflow:hidden у .rema-hero) */
.rema-hero__rem {
 position: absolute;
 z-index: 2;
 right: 6.5%;
 bottom: -0.5%;
 height: 86%;
 width: auto;
 object-fit: contain;
 object-position: bottom center;
 pointer-events: none;
 -webkit-user-drag: none;
 user-select: none;
}
@media (max-width: 900px) { .rema-hero__rem { height: 70%; right: -6%; opacity: 0.5; } }
/* кнопка hero: полный текст на десктопе, короткий на мобилке */
.cta-short { display: none; }
@media (max-width: 767px) {
 .cta-full { display: none; }
 .cta-short { display: inline; }
}
/* мобилка: Рем — аккуратный акцент справа-снизу, позади текста */
@media (max-width: 767px) {
 .rema-hero__rem {
  display: block;
  height: 54%;
  right: -16%;
  bottom: 0;
  opacity: 0.85;
  transform: none;
 }
}
.rema-hero__city-layer {
 position: absolute;
 top: 0; left: 0;
 width: 45%;
 max-width: 600px;
 opacity: 0.35;
 mix-blend-mode: screen;
 pointer-events: none;
 z-index: 1;
}
.rema-hero > .container { max-width: 100%; padding-left: 40px; padding-right: 40px; }
.rema-hero__inner {
 position: relative;
 z-index: 2;
 width: 100%;
 display: block;
}
.rema-hero__text { min-width: 0; max-width: 560px; text-align: left; }
/* лого/меню/УТП — естественная раскладка на всех ширинах (без перекрытия Рема) */
.site-header .rema-logo { transform: none; }
/* широкий десктоп (≥1600px) — кадрирование фона, размер Рема и сдвиги по дроп-настройке */
@media (min-width: 1600px) {
 .rema-hero__bgimg { transform: translate(18px, -13px) scale(0.97); }
 .rema-hero__rem { right: 12.3%; bottom: 0.1%; height: 68%; transform: translateX(-60px); }
 .site-header .rema-logo { transform: translate(253px, 0); }
 .nav-desktop { transform: translate(-7px, 0); }
 .rema-hero__text { transform: translate(313px, -4px); }
}
.rema-hero__eyebrow {
 display: inline-block;
 font-size: 12px;
 font-weight: 700;
 letter-spacing: 0.18em;
 text-transform: uppercase;
 color: #fff;
 background: var(--primary);
 padding: 9px 18px;
 border-radius: 999px;
 margin-bottom: var(--space-md);
}
.rema-hero__title {
 font-family: var(--font-display);
 font-size: clamp(40px, 4.8vw, 76px);
 font-weight: 700;
 line-height: 0.95;
 letter-spacing: -0.03em;
 color: var(--ink);
 margin-bottom: var(--space-sm);
 display: flex;
 flex-direction: column;
}
.rema-hero__title .line-1,
.rema-hero__title .line-2 {
 background-clip: text;
 -webkit-background-clip: text;
 color: transparent;
 -webkit-text-fill-color: transparent;
 display: inline-block;
 filter: drop-shadow(0 4px 24px rgba(0,0,0,0.6));
}
.rema-hero__title .line-1 {
 background-image: linear-gradient(180deg, #ffffff 0%, #ffffff 30%, #c8c8c8 60%, #5a5a5a 100%);
}
.rema-hero__title .line-2 {
 background-image: linear-gradient(180deg, #ff7da0 0%, #ff4d78 40%, #e8205a 72%, #c1063f 100%);
 filter: drop-shadow(0 2px 18px rgba(255,60,110,0.45)) drop-shadow(0 4px 24px rgba(0,0,0,0.55));
}
.rema-hero__title .accent { color: var(--primary); }
.rema-hero__tagline {
 font-family: var(--font-display);
 font-size: clamp(20px, 2.4vw, 30px);
 font-weight: 600;
 letter-spacing: 0.04em;
 color: var(--ink);
 margin-bottom: var(--space-sm);
}
.rema-hero__lead {
 font-size: var(--fs-md);
 line-height: 1.5;
 color: rgba(255,255,255,0.92);
 margin-bottom: var(--space-md);
 max-width: 460px;
 border-left: 3px solid var(--primary);
 padding-left: 16px;
}
.rema-hero__trust {
 display: flex;
 flex-wrap: wrap;
 gap: 18px;
 row-gap: var(--space-sm);
 margin-bottom: var(--space-md);
 max-width: 100%;
}
.rema-hero__trust-item {
 display: flex;
 align-items: center;
 gap: 10px;
 font-size: 11px;
 line-height: 1.2;
 color: rgba(255,255,255,0.78);
 letter-spacing: 0.02em;
 flex: 0 1 auto;
}
.rema-hero__trust-ico {
 width: 32px; height: 32px;
 flex-shrink: 0;
 display: inline-flex;
 align-items: center;
 justify-content: center;
 border: 1px solid rgba(141, 2, 47,0.5);
 background: rgba(141, 2, 47,0.12);
 border-radius: 999px;
 color: var(--primary);
}
.rema-hero__trust-ico i { width: 14px; height: 14px; color: var(--primary); }
.rema-hero__meta-plate {
 position: static;
 z-index: 3;
 display: flex;
 flex-direction: row;
 flex-wrap: wrap;
 gap: 14px 32px;
 padding: 0;
 background: none;
 border: 0;
 backdrop-filter: none;
 -webkit-backdrop-filter: none;
 box-shadow: none;
 margin: 0 0 var(--space-md);
 max-width: 100%;
}
.rema-hero__meta-cell {
 display: flex;
 align-items: center;
 gap: 14px;
 padding: 0;
 transition: background var(--t-fast);
}
.rema-hero__meta-cell + .rema-hero__meta-cell {
 border-top: 0;
}
.rema-hero__meta-ico {
 width: 42px; height: 42px;
 flex-shrink: 0;
 display: inline-flex;
 align-items: center;
 justify-content: center;
 border-radius: 999px;
 border: 1.5px solid rgba(141, 2, 47,0.6);
 background: radial-gradient(circle at 50% 40%, rgba(141, 2, 47,0.22), rgba(141, 2, 47,0.08));
 box-shadow: 0 0 16px rgba(141, 2, 47,0.3), inset 0 0 12px rgba(141, 2, 47,0.15);
}
.rema-hero__meta-ico i { width: 19px; height: 19px; color: #c01a45; }
/* две иконки в одной плашке (пин + башня) */
.rema-hero__meta-ico.rema-hero__meta-ico--duo { width: auto; min-width: 42px; padding: 0 14px; gap: 9px; border-radius: 999px; }
.rema-hero__meta-txt { display: flex; flex-direction: column; line-height: 1.2; }
.rema-hero__meta-txt strong {
 color: var(--ink);
 font-weight: 700;
 font-size: 16px;
 letter-spacing: 0.01em;
}
.rema-hero__meta-txt em {
 font-style: normal;
 font-size: 11px;
 color: rgba(255,255,255,0.5);
 letter-spacing: 0.03em;
 margin-top: 4px;
}
.rema-hero__ctas {
 display: flex;
 flex-wrap: nowrap;
 gap: var(--space-xs);
 margin-bottom: var(--space-md);
}
.rema-hero__ctas .btn { padding-left: 26px; padding-right: 26px; }
@media (max-width: 560px) { .rema-hero__ctas { flex-wrap: wrap; } }

/* Portrait — встроен в hero-composite, отдельный блок не рендерим */
.rema-hero__portrait { display: none; }
.rema-hero__portrait-img { display: none; }
.rema-hero__signature {
 position: absolute;
 right: 31.92%;
 top: 77.48%;
 max-width: 220px;
 text-align: left;
 z-index: 3;
 padding: 0;
 background: transparent;
 border: 0;
}
.rema-hero__signature-name {
 display: block;
 font-family: 'Brush Script MT', 'Lucida Handwriting', 'Segoe Script', cursive;
 font-size: 56px;
 line-height: 0.85;
 color: var(--primary);
 font-weight: 400;
 letter-spacing: 0.02em;
 transform: rotate(-3deg);
 margin-bottom: 8px;
}
.rema-hero__signature-role {
 display: block;
 font-family: var(--font-display);
 font-size: 10px;
 font-weight: 700;
 letter-spacing: 0.22em;
 text-transform: uppercase;
 color: rgba(255,255,255,0.6);
 margin-top: 6px;
}
.rema-hero__signature-quote {
 font-size: 12px;
 line-height: 1.5;
 color: rgba(255,255,255,0.7);
 margin-top: 8px;
 max-width: 220px;
 font-style: italic;
}
@media (max-width: 1199px) {
 .rema-hero__signature { right: 32%; top: 60%; }
}
@media (max-width: 1023px) {
 .rema-hero__signature { position: relative; right: auto; top: auto; margin-top: var(--space-md); max-width: 100%; }
 .rema-hero__signature-name { transform: none; }
}
@media (max-width: 1023px) {
 .rema-hero__inner { grid-template-columns: 1fr; }
 .rema-hero__portrait { min-height: 480px; max-width: 100%; }
 .rema-hero__portrait-img { -webkit-mask-image: none; mask-image: none; }
 .rema-hero__signature {
  position: static;
  right: auto; top: auto; bottom: auto;
  margin-top: var(--space-md);
  max-width: 100%;
 }
 body { padding-bottom: 80px; }
}

/* Countdown */
.rema-countdown[hidden] { display: none !important; }
.rema-countdown {
 display: flex;
 gap: var(--space-xs);
 margin-top: var(--space-md);
}
.rema-countdown__cell {
 background: rgba(255,255,255,0.05);
 border: 1px solid rgba(255,255,255,0.1);
 padding: 12px 16px;
 min-width: 64px;
 text-align: center;
}
.rema-countdown__num {
 display: block;
 font-family: var(--font-display);
 font-size: 28px;
 font-weight: 700;
 color: var(--ink);
 line-height: 1;
}
.rema-countdown__label {
 display: block;
 font-size: 10px;
 letter-spacing: 0.15em;
 text-transform: uppercase;
 color: rgba(255,255,255,0.55);
 margin-top: 6px;
}

/* KPI — премиальный full-width band + стеклянные карточки */
.rema-kpiband {
 position: relative;
 width: 100vw;
 margin-left: calc(50% - 50vw);
 padding: 120px 0;
 overflow: hidden;
 background: var(--canvas-deep);
}
.rema-kpiband::before,
.rema-kpiband::after {
 content: '';
 position: absolute; inset: 0;
 pointer-events: none; z-index: 0;
}
.rema-kpiband::before { background: radial-gradient(60% 60% at 60% 50%, rgba(220,0,70,0.20) 0%, rgba(220,0,70,0.06) 38%, transparent 70%); }
.rema-kpiband::after  { background: radial-gradient(48% 56% at 8% 50%, rgba(44,54,75,0.40) 0%, transparent 72%); }
.rema-kpiband__inner {
 position: relative; z-index: 1;
 max-width: 1500px;
 margin: 0 auto;
 padding: 0 32px;
}
.rema-kpi {
 position: relative;
 z-index: 1;
 display: grid;
 grid-template-columns: repeat(4, minmax(0, 1fr));
 gap: 32px;
}
.rema-kpi--5 { grid-template-columns: repeat(5, minmax(0,1fr)); }
.rema-kpi__cell {
 position: relative;
 display: flex;
 flex-direction: column;
 align-items: center;
 justify-content: center;
 gap: 10px;
 padding: 44px 28px;
 text-align: center;
 border: 1px solid rgba(255,255,255,0.08);
 border-radius: 24px;
 background: rgba(12,16,28,0.55);
 -webkit-backdrop-filter: blur(18px);
 backdrop-filter: blur(18px);
 box-shadow: inset 0 1px 0 rgba(255,255,255,0.06), 0 0 60px rgba(220,0,70,0.14);
 transition: transform var(--t-med), box-shadow var(--t-med), border-color var(--t-med);
}
.rema-kpi__cell:hover {
 transform: translateY(-6px);
 border-color: rgba(220,0,70,0.45);
 box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 0 90px rgba(220,0,70,0.30);
}
.rema-kpi__cell--icon { gap: 8px; }
.rema-kpi__icon {
 width: 56px; height: 56px;
 display: inline-flex;
 align-items: center;
 justify-content: center;
 border: 1px solid rgba(141, 2, 47,0.4);
 background: rgba(141, 2, 47,0.1);
 border-radius: 12px;
 flex-shrink: 0;
 margin-bottom: 4px;
}
.rema-kpi__icon i { width: 26px; height: 26px; color: var(--primary); }
.rema-kpi__label--strong { color: var(--ink); font-weight: 600; font-size: 14px; }
.rema-kpi__num {
 font-family: var(--font-display);
 font-size: clamp(40px, 4vw, 56px);
 font-weight: 700;
 color: var(--primary);
 line-height: 1;
 margin-bottom: 4px;
 letter-spacing: -0.02em;
}
.rema-kpi__label {
 font-size: 14px;
 color: rgba(255,255,255,0.72);
 line-height: 1.45;
}

@media (max-width: 1199px) {
 .rema-kpi--5 { grid-template-columns: repeat(3, 1fr); }
 .rema-kpi--5 .rema-kpi__cell:nth-child(3) { border-right: 0; }
 .rema-kpi--5 .rema-kpi__cell:nth-child(-n+3) { border-bottom: 1px solid rgba(255,255,255,0.08); }
}
@media (max-width: 1023px) {
 .rema-hero__inner { grid-template-columns: 1fr; gap: var(--space-md); }
 .rema-hero__portrait { max-width: 360px; margin: 0 auto; }
 .rema-hero__city-layer { width: 70%; opacity: 0.18; }
 .rema-hero__meta-plate {
  position: static;
  right: auto; bottom: auto;
  margin-top: var(--space-md);
  max-width: 100%;
 }
}
@media (max-width: 767px) {
 .rema-hero__city-layer { display: none; }
 .rema-hero__trust { gap: var(--space-sm); }
 .rema-hero__trust-item { flex: 1 0 calc(50% - var(--space-sm)); font-size: 11px; }
 .rema-countdown__cell { min-width: 56px; padding: 10px 12px; }
 .rema-countdown__num { font-size: 22px; }
}
@media (max-width: 1100px) {
 .rema-kpi, .rema-kpi--5 { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 767px) {
 .rema-kpiband { padding: 64px 0; }
 .rema-kpiband__inner { padding: 0 20px; }
}
@media (max-width: 600px) {
 .rema-kpi, .rema-kpi--5 { grid-template-columns: 1fr; }
}

/* === REMA SECTION BASE === */
.rema-section {
 position: relative;
 padding: var(--space-xxl) 0;
 background: radial-gradient(120% 80% at 85% 0%, rgba(133,111,137,0.10) 0%, transparent 55%), var(--canvas-deep);
 color: var(--ink);
 overflow: hidden;
}
.rema-section--soft { background: radial-gradient(120% 80% at 15% 0%, rgba(44,54,75,0.55) 0%, transparent 60%), var(--canvas); }
.rema-section__header {
 max-width: 880px;
 margin: 0 auto var(--space-xl);
 text-align: center;
}
.rema-section__eyebrow {
 display: inline-block;
 font-size: 12px;
 font-weight: 700;
 letter-spacing: 0.18em;
 text-transform: uppercase;
 color: #fff;
 background: var(--primary);
 padding: 9px 18px;
 border-radius: 999px;
 margin-bottom: var(--space-sm);
}
.rema-section__title {
 font-family: var(--font-display);
 font-size: clamp(32px, 5vw, 56px);
 font-weight: 600;
 letter-spacing: -0.02em;
 line-height: 1.1;
 margin-bottom: var(--space-sm);
}
.rema-section__lead {
 font-size: var(--fs-body-lg);
 color: rgba(255,255,255,0.7);
 line-height: 1.6;
 max-width: 640px;
 margin: 0 auto;
}
@media (max-width: 767px) {
 .rema-section { padding: var(--space-xl) 0; }
}

/* === ABOUT v2 — «О событии» + «Кто стоит за REMA» === */
.rema-section__eyebrow .dot {
 display: inline-block;
 width: 6px; height: 6px;
 border-radius: 999px;
 background: #fff;
 margin-right: 8px;
 vertical-align: middle;
 box-shadow: none;
}

/* === ПРЕМИУМ БЛОК — Что происходит с нутбуком, карточками, НЕ/ДА === */
.rema-premium {
 position: relative;
 background: var(--canvas-deep);
 padding: 120px 0;
 overflow: hidden;
}
.rema-premium__bg {
 position: absolute;
 inset: 0;
 background: radial-gradient(60% 55% at 70% 30%, rgba(216,43,99,.12), transparent 60%), radial-gradient(50% 50% at 28% 55%, rgba(53,82,255,.07), transparent 65%);
 pointer-events: none;
 z-index: 0;
}
/* Верхний ряд: текст | ноутбук */
.rema-premium__top {
 display: grid;
 grid-template-columns: 1fr 1fr;
 gap: 48px;
 align-items: center;
 position: relative;
 z-index: 1;
}
/* Левая часть: текст */
.rema-premium__left { max-width: 560px; }
.rema-premium__badge {
 display: inline-flex;
 align-items: center;
 gap: 8px;
 padding: 11px 18px;
 border-radius: 999px;
 background: linear-gradient(90deg, #a0003c, #d91d5b);
 font-size: 13px;
 font-weight: 700;
 letter-spacing: 1px;
 text-transform: uppercase;
 color: #fff;
}
.rema-premium__badge i { width: 16px; height: 16px; }
.rema-premium__badge .dot { width: 8px; height: 8px; border-radius: 50%; background: #fff; }
.rema-premium__title {
 font-family: var(--font-display);
 font-size: clamp(28px, 2.8vw, 42px);
 font-weight: 800;
 line-height: 1.12;
 color: #fff;
 margin: 24px 0 0;
 max-width: 560px;
}
.rema-premium__title .highlight { color: #ff4d78; }
.rema-premium__desc {
 margin-top: 22px;
 font-size: clamp(15px, 1.15vw, 18px);
 line-height: 1.55;
 color: rgba(255,255,255,.72);
 max-width: 480px;
}
.rema-premium__left .btn { margin-top: 28px; }
/* Правая часть: визуал с ноутбуком */
.rema-premium__visual {
 position: relative;
 width: 100%;
 min-height: 420px;
 display: flex;
 align-items: center;
 justify-content: center;
}
.rema-premium__laptop {
 width: 600px;
 max-width: none;
 transform: perspective(1450px) translate(-5px, 30px) rotateY(-13deg) rotateX(11deg);
 filter: drop-shadow(0 50px 110px rgba(0,0,0,.5));
 z-index: 2;
}
.rema-premium__laptop img {
 width: 100%;
 height: auto;
 display: block;
}
.rema-premium__target {
 position: absolute;
 width: 150px;
 height: 150px;
 left: 4%;
 bottom: 8%;
 border-radius: 50%;
 border: 3px solid #ff3c6e;
 background: radial-gradient(circle at 38% 38%, rgba(255,60,110,0.22), transparent 62%);
 box-shadow: 0 0 90px rgba(255,60,110,.45);
 z-index: 3;
}
/* плавающие чипы вокруг ноутбука */
@keyframes float {
 0%, 100% { transform: translateY(0); }
 50% { transform: translateY(-9px); }
}
.rema-premium__chip {
 position: absolute;
 z-index: 4;
 display: inline-flex;
 align-items: center;
 gap: 10px;
 padding: 12px 16px;
 border-radius: 16px;
 background: rgba(22,28,45,.65);
 backdrop-filter: blur(24px);
 -webkit-backdrop-filter: blur(24px);
 border: 1px solid rgba(255,255,255,.08);
 box-shadow: 0 12px 40px rgba(0,0,0,.35);
 animation: float 6s ease-in-out infinite;
 white-space: nowrap;
}
.rema-premium__chip-ico {
 width: 30px; height: 30px;
 display: flex; align-items: center; justify-content: center;
 color: #ff466d;
}
.rema-premium__chip-ico i { width: 18px; height: 18px; }
.rema-premium__chip-text { font-size: 13px; font-weight: 600; color: #fff; }
.rema-premium__chip--tl { top: 2%;  left: -6%;  animation-delay: 0s; }
.rema-premium__chip--tr { top: 12%; right: -8%; animation-delay: .8s; }
.rema-premium__chip--bl { bottom: 8%; left: -8%; animation-delay: 1.6s; }
.rema-premium__chip--br { bottom: 0;  right: -4%; animation-delay: 2.4s; }
/* Нижний ряд: НЕ | VS | ДА — склеены в одну панель */
.rema-premium__compare {
 display: grid;
 grid-template-columns: 1fr 1fr;
 gap: 0;
 margin-top: 90px;
 align-items: stretch;
 position: relative;
 z-index: 1;
}
.rema-premium__compare-col {
 padding: 36px;
 background: rgba(10,17,32,.65);
}
.rema-premium__compare-col--no { border: 1px solid rgba(255,0,90,.18); border-radius: 32px 0 0 32px; }
.rema-premium__compare-col--yes { border: 1px solid rgba(55,255,170,.18); border-left: none; border-radius: 0 32px 32px 0; }
.rema-premium__compare-head {
 display: flex;
 align-items: center;
 gap: 14px;
 font-family: var(--font-display);
 font-size: 26px;
 font-weight: 700;
 color: #fff;
 margin-bottom: 24px;
}
.rema-premium__compare-mark {
 width: 44px; height: 44px;
 border-radius: 50%;
 display: flex; align-items: center; justify-content: center;
 flex-shrink: 0;
}
.rema-premium__compare-mark i { width: 22px; height: 22px; }
.rema-premium__compare-col--no .rema-premium__compare-mark { border: 2px solid #ff466d; background: rgba(255,70,109,.1); color: #ff466d; box-shadow: 0 0 24px rgba(255,70,109,.25); }
.rema-premium__compare-col--yes .rema-premium__compare-mark { border: 2px solid #4BE18F; background: rgba(75,225,143,.1); color: #4BE18F; box-shadow: 0 0 24px rgba(75,225,143,.22); }
/* строка-карточка пункта */
.rema-premium__compare-item {
 display: flex;
 align-items: center;
 gap: 18px;
 padding: 18px;
 border-radius: 18px;
 background: rgba(255,255,255,.02);
 border: 1px solid rgba(255,255,255,.05);
 transition: transform .3s ease, background .3s ease, border-color .3s ease;
}
.rema-premium__compare-item + .rema-premium__compare-item { margin-top: 16px; }
.rema-premium__compare-item:hover { transform: translateY(-4px); background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.1); }
.rema-premium__compare-ico {
 width: 56px; height: 56px;
 border-radius: 16px;
 background: rgba(255,255,255,.04);
 display: flex; align-items: center; justify-content: center;
 flex-shrink: 0;
}
.rema-premium__compare-ico i { width: 24px; height: 24px; }
.rema-premium__compare-col--no .rema-premium__compare-ico i { color: #ff466d; }
.rema-premium__compare-col--yes .rema-premium__compare-ico i { color: #4BE18F; }
.rema-premium__compare-itext { font-size: 15px; font-weight: 600; color: #fff; line-height: 1.3; }
.rema-premium__compare-sub { font-size: 13px; color: rgba(255,255,255,.5); line-height: 1.35; margin-top: 4px; }
/* VS-кружок — на стыке колонок */
.rema-premium__compare-vs {
 position: absolute;
 left: 50%; top: 50%;
 transform: translate(-50%, -50%);
 z-index: 5;
 width: 64px; height: 64px;
 border-radius: 50%;
 background: #0c1524;
 border: 1px solid rgba(255,255,255,.16);
 box-shadow: 0 8px 30px rgba(0,0,0,.5);
 display: flex; align-items: center; justify-content: center;
 font-family: var(--font-display);
 font-size: 22px; font-weight: 700; color: #fff;
 letter-spacing: 1px;
}

@media (max-width: 1100px) {
 .rema-premium { padding: 90px 0; }
 .rema-premium__top { gap: 32px; }
 .rema-premium__visual { min-height: 340px; }
 .rema-premium__laptop { width: 500px; transform: perspective(1400px) rotateY(-12deg) rotateX(7deg); }
 .rema-premium__compare { margin-top: 64px; }
}
/* узкие десктопы / планшеты — в одну ШИРОКУЮ колонку (текст не сжимается) */
@media (max-width: 980px) {
 .rema-premium__top { grid-template-columns: 1fr; gap: 28px; }
 .rema-premium__left { max-width: 100%; }
 .rema-premium__title { font-size: clamp(32px, 5vw, 46px); max-width: 100%; }
 .rema-premium__desc { max-width: 640px; }
 .rema-premium__visual { min-height: 0; padding: 16px 0; }
 .rema-premium__laptop { width: 100%; max-width: 620px; transform: perspective(1300px) rotateY(-10deg) rotateX(6deg); }
}
@media (max-width: 768px) {
 .rema-premium { padding: 64px 0; }
 .rema-premium__title { font-size: clamp(26px, 7vw, 38px); }
 .rema-premium__desc { font-size: 16px; }
 .rema-premium__laptop { max-width: 460px; transform: perspective(1200px) rotateY(-8deg) rotateX(5deg); }
 .rema-premium__compare { grid-template-columns: 1fr; gap: 18px; margin-top: 48px; }
 .rema-premium__compare-vs { display: none; }
 .rema-premium__compare-col { padding: 24px; }
 .rema-premium__compare-col--no { border-radius: 24px; }
 .rema-premium__compare-col--yes { border-left: 1px solid rgba(55,255,170,.18); border-radius: 24px; }
 .rema-premium__compare-head { font-size: 22px; }
}
.rema-about2 {
 display: grid;
 grid-template-columns: 1fr 1.25fr;
 gap: var(--space-xl);
 align-items: center;
}
.rema-about2 + .rema-about2 { margin-top: var(--space-xxl); }
.rema-about2--reverse { grid-template-columns: 1fr 1.25fr; }
.rema-about2__text { min-width: 0; }
.rema-about2__title {
 font-family: var(--font-display);
 font-size: clamp(22px, 2.4vw, 30px);
 font-weight: 600;
 line-height: 1.3;
 letter-spacing: -0.01em;
 color: var(--ink);
 margin: 0 0 var(--space-sm);
}
.rema-about2__lead {
 font-size: 15px;
 line-height: 1.6;
 color: rgba(255,255,255,0.6);
 margin: 0 0 var(--space-md);
 max-width: 460px;
}
.rema-about2__lead--lg {
 font-size: clamp(18px, 2vw, 22px);
 color: rgba(255,255,255,0.92);
 font-weight: 500;
 line-height: 1.4;
}

/* 4 KPI-карточки справа */
.rema-about2__cards {
 display: grid;
 grid-template-columns: repeat(4, 1fr);
 gap: 20px;
}
.rema-about2__cards--3 { grid-template-columns: repeat(3, 1fr) !important; }
.rema-about2__cards--3-stub {
}
.rema-statcard {
 background: rgba(12,16,28,0.55);
 -webkit-backdrop-filter: blur(14px);
 backdrop-filter: blur(14px);
 border: 1px solid rgba(255,255,255,0.08);
 border-radius: 20px;
 padding: 24px 18px;
 box-shadow: inset 0 1px 0 rgba(255,255,255,0.05), 0 0 60px rgba(220,0,70,0.07);
 transition: border-color var(--t-med), transform var(--t-med), box-shadow var(--t-med);
}
.rema-statcard:hover {
 transform: translateY(-5px);
 border-color: rgba(220,0,70,0.4);
 box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 0 80px rgba(220,0,70,0.18);
}
.rema-statcard__ico {
 display: inline-flex;
 align-items: center;
 justify-content: center;
 width: 40px; height: 40px;
 border-radius: 12px;
 border: 1px solid rgba(141, 2, 47,0.4);
 background: rgba(141, 2, 47,0.1);
 margin-bottom: 16px;
}
.rema-statcard__ico i { width: 20px; height: 20px; color: var(--primary); }
.rema-statcard__num {
 font-family: var(--font-display);
 font-size: 36px;
 font-weight: 700;
 color: var(--ink);
 line-height: 1;
 margin-bottom: 10px;
 letter-spacing: -0.02em;
}
.rema-statcard__label { font-size: 12px; line-height: 1.4; color: rgba(255,255,255,0.55); }

/* мини-статы (7+ / 100+ / ...) */
.rema-about2__stats {
 display: flex;
 flex-wrap: wrap;
 gap: var(--space-lg);
 margin-top: var(--space-lg);
}
.rema-ministat { display: flex; flex-direction: column; gap: 4px; }
.rema-ministat__num {
 font-family: var(--font-display);
 font-size: clamp(26px, 3vw, 34px);
 font-weight: 700;
 color: var(--primary);
 line-height: 1;
}
.rema-ministat__label { font-size: 12px; line-height: 1.3; color: rgba(255,255,255,0.55); }

/* большая карточка-сообщество */
.rema-community {
 position: relative;
 aspect-ratio: 16 / 10;
 border-radius: 20px;
 overflow: hidden;
 border: 1px solid rgba(255,255,255,0.1);
}
.rema-community__bg {
 position: absolute; inset: 0;
 width: 100%; height: 100%;
 object-fit: cover;
}
.rema-community::after {
 content: '';
 position: absolute; inset: 0;
 background: linear-gradient(180deg, rgba(10,10,10,0.45) 0%, rgba(10,10,10,0.78) 100%);
}
.rema-community__inner {
 position: absolute;
 inset: 0;
 z-index: 2;
 display: flex;
 flex-direction: column;
 align-items: center;
 justify-content: center;
 text-align: center;
 padding: var(--space-md);
}
.rema-community__logo {
 display: inline-flex;
 align-items: center;
 gap: 14px;
 margin-bottom: 16px;
}
.rema-community__logo svg { width: clamp(44px, 5vw, 64px); height: clamp(44px, 5vw, 64px); }
.rema-community__logo img { max-width: clamp(220px, 32vw, 380px); width: 100%; height: auto; display: block; }
.rema-community__logo b {
 font-family: var(--font-display);
 font-size: clamp(40px, 6vw, 72px);
 font-weight: 700;
 letter-spacing: 0.02em;
 color: var(--ink);
}
.rema-community__tag {
 font-size: clamp(13px, 1.5vw, 16px);
 font-weight: 600;
 letter-spacing: 0.15em;
 text-transform: uppercase;
 color: rgba(255,255,255,0.85);
 line-height: 1.5;
}

@media (max-width: 1023px) {
 .rema-about2, .rema-about2--reverse { grid-template-columns: 1fr; gap: var(--space-md); }
 .rema-about2__cards { grid-template-columns: repeat(2, 1fr); }
 .rema-about2 + .rema-about2 { margin-top: var(--space-xl); }
}
@media (max-width: 479px) {
 .rema-about2__cards { grid-template-columns: 1fr 1fr; gap: 8px; }
 .rema-about2__stats { gap: var(--space-md); }
}

/* === PROGRAM — timeline === */
.rema-program__list {
 display: grid;
 grid-template-columns: 1fr;
 gap: var(--space-xs);
 max-width: 880px;
 margin: 0 auto;
}
.rema-program__list { gap: 12px; }
.rema-program__row {
 display: grid;
 grid-template-columns: 160px 1fr;
 gap: 28px;
 padding: 20px 26px;
 border: 1px solid rgba(255,255,255,0.08);
 border-radius: 16px;
 background: rgba(255,255,255,0.025);
 align-items: center;
 transition: background var(--t-fast), border-color var(--t-fast), transform var(--t-fast);
}
.rema-program__row:hover {
 background: rgba(255,255,255,0.05);
 border-color: rgba(216,43,99,0.35);
 transform: translateX(4px);
}
.rema-program__time {
 font-family: var(--font-display);
 font-size: 20px;
 font-weight: 700;
 color: #ff4d78;
 letter-spacing: -0.01em;
 white-space: nowrap;
}
.rema-program__topic { font-size: 18px; font-weight: 600; margin-bottom: 6px; line-height: 1.3; color: #fff; }
.rema-program__speaker { font-size: 14px; color: rgba(255,255,255,0.6); }
.rema-program__speaker .role { color: rgba(255,255,255,0.4); }
.rema-program__tag {
 display: inline-block;
 padding: 5px 14px;
 font-size: 10px;
 font-weight: 700;
 letter-spacing: 0.12em;
 text-transform: uppercase;
 color: #fff;
 background: linear-gradient(90deg, #a0003c, #d91d5b);
 border-radius: 999px;
 margin-bottom: 10px;
}
@media (max-width: 767px) {
 .rema-program__row { grid-template-columns: 1fr; gap: 8px; padding: 18px 20px; }
 .rema-program__row:hover { transform: none; }
 .rema-program__time { font-size: 18px; }
}

/* === SPEAKERS — grid + mobile snap === */
.rema-speakers__grid {
 display: grid;
 grid-template-columns: repeat(4, 1fr);
 gap: var(--space-sm);
}
.rema-speaker {
 position: relative;
 border: 1px solid rgba(255,255,255,0.08);
 background: rgba(255,255,255,0.02);
 transition: border-color var(--t-med), transform var(--t-med), box-shadow var(--t-med);
}
.rema-speaker:hover {
 border-color: var(--primary);
 transform: translateY(-4px);
 box-shadow: 0 12px 40px rgba(141, 2, 47,0.25);
}
.rema-speaker__photo {
 aspect-ratio: 4 / 5;
 overflow: hidden;
 background: var(--canvas-elevated);
}
.rema-speaker__photo img {
 width: 100%; height: 100%; object-fit: cover;
}
.rema-speaker__info { padding: var(--space-sm); }
.rema-speaker__name {
 font-family: var(--font-display);
 font-size: 18px;
 font-weight: 600;
 margin-bottom: 4px;
 color: var(--ink);
}
.rema-speaker__role { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.4; }
@media (max-width: 1023px) {
 .rema-speakers__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 639px) {
 .rema-speakers__grid {
  grid-template-columns: none;
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-left: var(--space-sm);
  padding-bottom: var(--space-sm);
  margin: 0 calc(var(--space-sm) * -1);
  padding-left: var(--space-sm);
  padding-right: var(--space-sm);
  -webkit-overflow-scrolling: touch;
 }
 .rema-speaker {
  flex: 0 0 78vw;
  max-width: 320px;
  scroll-snap-align: start;
 }
}

/* === SPEAKERS TEASER (когда спикеров ещё нет) === */
.rema-speakers__teaser {
 max-width: 720px;
 margin: 0 auto;
 padding: 0 var(--space-sm);
}
.rema-speakers__teaser-inner {
 background: linear-gradient(180deg, rgba(30,30,32,0.6), rgba(16,16,18,0.6));
 border: 1px solid rgba(255,255,255,0.1);
 border-radius: 20px;
 padding: var(--space-xl) var(--space-lg);
 text-align: center;
}
.rema-speakers__teaser-ico {
 display: inline-flex;
 align-items: center;
 justify-content: center;
 width: 64px; height: 64px;
 border-radius: 16px;
 border: 1px solid rgba(141, 2, 47,0.4);
 background: rgba(141, 2, 47,0.1);
 margin-bottom: var(--space-md);
}
.rema-speakers__teaser-ico i { width: 28px; height: 28px; color: var(--primary); }
.rema-speakers__teaser-title {
 font-family: var(--font-display);
 font-size: clamp(22px, 2.6vw, 28px);
 font-weight: 600;
 color: var(--ink);
 margin: 0 0 var(--space-sm);
 line-height: 1.3;
}
.rema-speakers__teaser-text {
 font-size: 15px;
 line-height: 1.6;
 color: rgba(255,255,255,0.65);
 margin: 0 0 var(--space-lg);
 max-width: 540px;
 margin-left: auto;
 margin-right: auto;
}
.rema-speakers__teaser-ctas {
 display: flex;
 flex-wrap: wrap;
 gap: var(--space-xs);
 justify-content: center;
}
.rema-speakers__teaser-ctas .btn i { margin-right: 8px; }

/* === ЭКСПЕРТЫ: подкатегории + карточки === */
.rema-experts__group + .rema-experts__group { margin-top: 56px; }
.rema-experts__group-title {
 display: flex;
 align-items: center;
 justify-content: center;
 gap: 10px;
 font-family: var(--font-display);
 font-size: 22px;
 font-weight: 700;
 color: #fff;
 letter-spacing: 0.02em;
 margin: 0 0 28px;
}
.rema-experts__group-title .dot {
 width: 8px; height: 8px; border-radius: 50%;
 background: var(--primary);
 box-shadow: 0 0 14px rgba(216,43,99,0.6);
}
.rema-experts__grid {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(190px, 230px));
 justify-content: center;
 gap: 22px;
}
.rema-expert { display: flex; flex-direction: column; }
.rema-expert__photo {
 position: relative;
 aspect-ratio: 3 / 4;
 border-radius: 18px;
 overflow: hidden;
 background: linear-gradient(160deg, rgba(255,255,255,0.06), rgba(216,43,99,0.07));
 border: 1px solid rgba(255,255,255,0.08);
 display: flex;
 align-items: center;
 justify-content: center;
 transition: transform .3s ease, border-color .3s ease;
}
.rema-expert__photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.rema-expert__photo i { width: 46px; height: 46px; color: rgba(255,255,255,0.3); }
.rema-expert:hover .rema-expert__photo { transform: translateY(-5px); border-color: rgba(216,43,99,0.4); }
.rema-expert__name {
 font-family: var(--font-display);
 font-size: 16px;
 font-weight: 700;
 color: #fff;
 text-align: center;
 line-height: 1.25;
 margin-top: 14px;
}
.rema-expert__role {
 font-size: 13px;
 color: rgba(255,255,255,0.55);
 text-align: center;
 line-height: 1.35;
 margin-top: 5px;
}
.rema-expert--tba .rema-expert__photo { border-style: dashed; border-color: rgba(255,255,255,0.14); background: rgba(255,255,255,0.02); }
.rema-expert--tba:hover .rema-expert__photo { transform: none; }
.rema-expert--tba .rema-expert__name { color: rgba(255,255,255,0.4); font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 700; }
.rema-experts__ctas {
 display: flex;
 flex-wrap: wrap;
 gap: var(--space-xs);
 justify-content: center;
 margin-top: 48px;
}
.rema-experts__ctas .btn i { margin-right: 8px; }
@media (max-width: 900px) {
 .rema-experts__grid { grid-template-columns: repeat(2, minmax(0, 230px)); }
}
@media (max-width: 460px) {
 .rema-experts__grid { gap: 14px; }
 .rema-expert__name { font-size: 14px; }
 .rema-expert__role { font-size: 12px; }
}

/* === ЭКСПЕРТЫ: карусель (фото слева, инфо справа) === */
#speakers .container { max-width: 1340px; }
.rema-slider { position: relative; z-index: 0; }
/* свечение позади карточек у правого края */
.rema-slider::before {
 content: '';
 position: absolute;
 z-index: -1;
 right: -60px;
 top: 50%;
 transform: translateY(-50%);
 width: 560px; height: 560px;
 background: radial-gradient(circle, rgba(216,43,99,0.32), transparent 66%);
 filter: blur(40px);
 pointer-events: none;
}
.rema-slider__viewport { position: relative; z-index: 1; }
.rema-slider__track {
 display: grid;
 grid-template-columns: repeat(2, 1fr);
 grid-auto-rows: 1fr;
 gap: 24px;
}
/* стрелки и точки больше не нужны — сетка */
.rema-slider__nav, .rema-slider__dots { display: none !important; }
.rema-slide {
 display: flex;
 opacity: 1;
 user-select: none;
}
.rema-slide > .rema-slide__card { width: 100%; }
.rema-slide__card {
 position: relative;
 display: flex;
 align-items: stretch;
 min-height: 0;
 background: rgba(255,255,255,0.03);
 border: 1px solid rgba(255,255,255,0.08);
 border-radius: 24px;
 overflow: hidden;
 backdrop-filter: blur(10px);
 -webkit-backdrop-filter: blur(10px);
 box-shadow: 0 30px 70px rgba(0,0,0,0.4);
}
.rema-slide__card::after {
 content: '';
 position: absolute;
 inset: 0;
 z-index: 1;
 pointer-events: none;
 background: radial-gradient(58% 70% at 100% 100%, rgba(216,43,99,0.22), transparent 62%);
}
.rema-slide__photo {
 position: relative;
 z-index: 2;
 flex: 0 0 auto;
 width: 250px;
 aspect-ratio: 3 / 4;
 background: linear-gradient(160deg, rgba(255,255,255,0.05), rgba(216,43,99,0.08));
 display: flex; align-items: center; justify-content: center;
}
.rema-slide__photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center top; -webkit-user-drag: none; }
.rema-slide__photo i { width: 60px; height: 60px; color: rgba(255,255,255,0.3); }
.rema-slide__info {
 position: relative;
 z-index: 2;
 flex: 1;
 padding: 40px 36px;
 display: flex; flex-direction: column; justify-content: flex-start;
}
.rema-slide__name {
 font-family: var(--font-display);
 font-size: clamp(22px, 2vw, 29px);
 font-weight: 700;
 color: #fff;
 line-height: 1.15;
}
.rema-slide__name::after {
 content: '';
 display: block;
 width: 46px;
 height: 3px;
 border-radius: 2px;
 margin-top: 14px;
 background: linear-gradient(90deg, #8d022f, #d91d5b);
}
.rema-slide__role {
 margin-top: 14px;
 font-size: clamp(15px, 1.3vw, 18px);
 line-height: 1.4;
 color: rgba(255,255,255,0.82);
 font-weight: 600;
}
.rema-slide__role .hl { color: #ff4d78; }
.rema-slide__bio {
 margin-top: 14px;
 font-size: 14px;
 line-height: 1.55;
 color: rgba(255,255,255,0.6);
}
.rema-slide__bio a { color: #ff7da0; text-decoration: none; border-bottom: 1px solid rgba(255,125,160,0.4); }
.rema-slide__bio a:hover { color: #ff4d78; }
/* стрелки */
.rema-slider__nav {
 position: absolute;
 top: 44%;
 transform: translateY(-50%);
 z-index: 6;
 width: 50px; height: 50px;
 border-radius: 50%;
 background: rgba(12,20,30,0.72);
 backdrop-filter: blur(8px);
 -webkit-backdrop-filter: blur(8px);
 border: 1px solid rgba(255,255,255,0.16);
 color: #fff;
 display: flex; align-items: center; justify-content: center;
 cursor: pointer;
 transition: background .2s, border-color .2s, opacity .2s, transform .2s;
}
.rema-slider__nav:hover { background: var(--primary); border-color: var(--primary); }
.rema-slider__nav:active { transform: translateY(-50%) scale(0.92); }
.rema-slider__nav--prev { left: 2px; }
.rema-slider__nav--next { right: 2px; }
.rema-slider__nav i { width: 24px; height: 24px; }
.rema-slider__nav[disabled] { opacity: 0; pointer-events: none; }
/* точки */
.rema-slider__dots { display: flex; justify-content: center; gap: 8px; margin-top: 22px; flex-wrap: wrap; }
.rema-slider__dots button {
 width: 9px; height: 9px; padding: 0;
 border: 0; border-radius: 999px;
 background: rgba(255,255,255,0.25);
 cursor: pointer;
 transition: width .3s ease, background .3s ease;
}
.rema-slider__dots button.is-active { width: 26px; background: var(--primary); }
@media (max-width: 900px) {
 .rema-slider__track { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
 .rema-slide__card { flex-direction: column; min-height: 0; }
 .rema-slide__photo { flex: none; width: 100%; aspect-ratio: 3 / 4; height: auto; }
 .rema-slide__info { padding: 22px; text-align: center; align-items: center; }
}

/* === ФОРМАТ — Стол === */
.rema-table--inline { margin: 8px 0 var(--space-xl); }
.rema-table__grid {
 display: grid;
 grid-template-columns: 1fr 0.85fr;
 gap: var(--space-xl);
 align-items: center;
}
.rema-table__text { max-width: 600px; }
.rema-table__title {
 font-family: var(--font-display);
 font-size: clamp(28px, 3.4vw, 44px);
 font-weight: 800;
 color: #fff;
 line-height: 1.1;
 margin: 16px 0 20px;
}
.rema-table__lead {
 font-size: clamp(16px, 1.5vw, 19px);
 line-height: 1.6;
 color: rgba(255,255,255,0.78);
}
.rema-table__lead + .rema-table__lead { margin-top: 16px; }
.rema-table__hl { color: #ff4d78; font-weight: 600; }
.rema-table__media { position: relative; }
.rema-table__photo {
 position: relative;
 aspect-ratio: 4 / 3;
 border-radius: 22px;
 overflow: hidden;
 display: flex;
 flex-direction: column;
 align-items: center;
 justify-content: center;
 gap: 12px;
 border: 1px solid rgba(255,255,255,0.1);
 background:
  radial-gradient(70% 80% at 100% 100%, rgba(216,43,99,0.18), transparent 60%),
  linear-gradient(160deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
}
.rema-table__photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.rema-table__photo i { width: 56px; height: 56px; color: rgba(255,255,255,0.35); }
.rema-table__photo-label {
 font-size: 12px;
 letter-spacing: 0.22em;
 text-transform: uppercase;
 color: rgba(255,255,255,0.4);
}
@media (max-width: 900px) {
 .rema-table__grid { grid-template-columns: 1fr; gap: var(--space-lg); }
 .rema-table__text { max-width: 100%; }
 .rema-table__photo { aspect-ratio: 16 / 10; }
}

/* === AFTERPARTY — Танжирс === */
.rema-afterparty {
 position: relative;
 min-height: 560px;
 display: flex;
 align-items: center;
 overflow: hidden;
 background: var(--canvas-deep);
 padding: var(--space-xl) 0;
}
.rema-afterparty__bg {
 position: absolute; inset: 0;
 width: 100%; height: 100%;
 object-fit: cover; object-position: center;
 z-index: 0;
}
.rema-afterparty__overlay {
 position: absolute; inset: 0; z-index: 1;
 background:
  linear-gradient(90deg, rgba(12,20,30,0.94) 0%, rgba(12,20,30,0.78) 42%, rgba(12,20,30,0.25) 100%),
  radial-gradient(60% 80% at 0% 100%, rgba(216,43,99,0.22), transparent 60%);
}
.rema-afterparty .container { position: relative; z-index: 2; }
.rema-afterparty__content { max-width: 620px; }
.rema-afterparty__title {
 font-family: var(--font-display);
 font-size: clamp(28px, 3.4vw, 46px);
 font-weight: 800;
 color: #fff;
 line-height: 1.1;
 margin: 16px 0 18px;
}
.rema-afterparty__text {
 font-size: clamp(16px, 1.5vw, 19px);
 line-height: 1.6;
 color: rgba(255,255,255,0.86);
 max-width: 560px;
}
@media (max-width: 767px) {
 .rema-afterparty { min-height: 0; padding: var(--space-lg) 0; }
 .rema-afterparty__overlay {
  background:
   linear-gradient(180deg, rgba(12,20,30,0.55) 0%, rgba(12,20,30,0.88) 100%),
   radial-gradient(70% 60% at 0% 100%, rgba(216,43,99,0.22), transparent 65%);
 }
}

/* === ENTERTAINMENT === */
.rema-ents__grid {
 display: grid;
 grid-template-columns: repeat(4, 1fr);
 gap: var(--space-sm);
}
.rema-ent {
 position: relative;
 aspect-ratio: 4 / 5;
 overflow: hidden;
 background: var(--canvas-elevated);
 border: 1px solid rgba(255,255,255,0.08);
}
.rema-ent img {
 position: absolute; inset: 0;
 width: 100%; height: 100%;
 object-fit: cover;
 transition: transform 600ms ease;
}
.rema-ent:hover img { transform: scale(1.05); }
.rema-ent::after {
 content: '';
 position: absolute; inset: 0;
 background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(10,10,10,0.4) 50%, rgba(10,10,10,0.95) 100%);
}
.rema-ent__info {
 position: absolute; bottom: 0; left: 0; right: 0;
 padding: var(--space-sm);
 z-index: 2;
}
.rema-ent__title {
 font-family: var(--font-display);
 font-size: 20px;
 font-weight: 600;
 color: var(--ink);
 margin-bottom: 6px;
}
.rema-ent__text { font-size: 13px; color: rgba(255,255,255,0.7); line-height: 1.5; }
@media (max-width: 1023px) { .rema-ents__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 479px) { .rema-ents__grid { grid-template-columns: 1fr; } }

/* === HOTELS === */
.rema-hotels__grid {
 display: grid;
 grid-template-columns: repeat(3, 1fr);
 gap: var(--space-sm);
}
.rema-hotel {
 background: rgba(255,255,255,0.03);
 border: 1px solid rgba(255,255,255,0.08);
}
.rema-hotel__photo {
 aspect-ratio: 4 / 3;
 overflow: hidden;
 background: var(--canvas-elevated);
}
.rema-hotel__photo img { width: 100%; height: 100%; object-fit: cover; }
.rema-hotel__info { padding: var(--space-sm); }
.rema-hotel__name {
 font-family: var(--font-display);
 font-size: 18px;
 font-weight: 600;
 margin-bottom: 6px;
}
.rema-hotel__meta {
 display: flex;
 align-items: center;
 gap: var(--space-xs);
 font-size: 13px;
 color: rgba(255,255,255,0.55);
 margin-bottom: 12px;
}
.rema-hotel__meta i { width: 14px; height: 14px; color: var(--primary); }
.rema-hotel__price {
 font-family: var(--font-display);
 font-size: 16px;
 color: var(--ink);
 font-weight: 600;
}
.rema-hotel__price span { color: rgba(255,255,255,0.5); font-weight: 400; font-size: 13px; }
.rema-hotels__strip {
 margin-top: var(--space-lg);
 position: relative;
 padding: var(--space-md);
 background: url('assets/img/night-moscow.jpg') center/cover no-repeat;
 border: 1px solid rgba(255,255,255,0.08);
 overflow: hidden;
}
.rema-hotels__strip::before {
 content: '';
 position: absolute; inset: 0;
 background: linear-gradient(90deg, rgba(10,10,10,0.92), rgba(10,10,10,0.6));
}
.rema-hotels__strip > * { position: relative; z-index: 2; }
.rema-hotels__strip-title { font-family: var(--font-display); font-size: 20px; font-weight: 600; margin-bottom: 6px; }
.rema-hotels__strip-text { color: rgba(255,255,255,0.7); font-size: 14px; }
@media (max-width: 1023px) { .rema-hotels__grid { grid-template-columns: 1fr; } }

/* === LOCATION === */
.rema-location {
 position: relative;
 padding: 0 0 clamp(48px, 6vw, 96px);
 margin-top: 0;
 overflow: hidden;
 background: var(--canvas-deep);
}
/* город — фон на всю секцию (за карточкой, по бокам и под картой) */
.rema-location__bg {
 position: absolute;
 inset: 0;
 width: 100%; height: 100%;
 object-fit: cover;
 object-position: center 30%;
 z-index: 0;
}
.rema-location__shade {
 position: absolute; inset: 0; z-index: 1;
 background: linear-gradient(180deg, rgba(12,20,30,0.55) 0%, rgba(12,20,30,0.30) 35%, rgba(12,20,30,0.78) 100%),
             linear-gradient(90deg, rgba(12,20,30,0.50) 0%, transparent 45%, rgba(12,20,30,0.50) 100%);
}
/* верхняя область с карточкой */
.rema-location__hero {
 position: relative;
 z-index: 2;
 display: flex;
 align-items: flex-end;
 justify-content: center;
 padding: clamp(220px, 30vw, 360px) 16px clamp(32px, 4vw, 56px);
}
.rema-location__card {
 position: relative;
 z-index: 3;
 max-width: 720px;
 width: calc(100% - 32px);
 margin: 0 auto;
 background: rgba(10,10,10,0.82);
 backdrop-filter: blur(14px);
 -webkit-backdrop-filter: blur(14px);
 border: 1px solid rgba(255,255,255,0.12);
 border-radius: 16px;
 padding: var(--space-lg);
 text-align: center;
 box-shadow: 0 24px 60px rgba(0,0,0,0.5);
}
.rema-location__card-title {
 font-family: var(--font-display);
 font-size: clamp(26px, 4vw, 40px);
 font-weight: 600;
 margin-bottom: var(--space-xs);
}
.rema-location__card-addr {
 font-size: var(--fs-body-lg);
 color: rgba(255,255,255,0.8);
 margin-bottom: var(--space-md);
}
.rema-location__card-meta {
 display: flex;
 flex-wrap: wrap;
 justify-content: center;
 gap: var(--space-md);
 font-size: 13px;
 color: rgba(255,255,255,0.65);
}
.rema-location__card-meta span { display: inline-flex; align-items: center; gap: 6px; }
.rema-location__card-meta i { width: 14px; height: 14px; color: var(--primary); }
@media (max-width: 767px) {
 .rema-location__card { padding: var(--space-md); }
}

/* === PARTNERS === */
.rema-partners {
 position: relative;
 background: var(--canvas-deep);
 padding: var(--space-xxl) 0;
}
.rema-partners::before {
 content: '';
 position: absolute; inset: 0;
 background: url('assets/img/partner-bg.jpg') center/cover no-repeat;
 opacity: 0.4;
 z-index: 0;
}
.rema-partners > .container { position: relative; z-index: 2; }
.rema-partners__grid {
 display: grid;
 grid-template-columns: repeat(6, 1fr);
 gap: var(--space-xs);
}
.rema-partner-slot {
 aspect-ratio: 16 / 9;
 border: 1px dashed rgba(255,255,255,0.18);
 background: rgba(255,255,255,0.03);
 display: flex;
 align-items: center;
 justify-content: center;
 font-size: 11px;
 letter-spacing: 0.15em;
 text-transform: uppercase;
 color: rgba(255,255,255,0.35);
}
@media (max-width: 1023px) { .rema-partners__grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 479px) { .rema-partners__grid { grid-template-columns: repeat(2, 1fr); } }

/* Партнёры конференции — showcase */
.rema-partners__showcase {
 max-width: 980px;
 margin: 0 auto var(--space-xxl);
}
.rema-partners__showcase-head {
 text-align: center;
 margin-bottom: var(--space-lg);
}
.rema-partners__showcase-head .rema-partners__title { margin-top: var(--space-xs); }
.rema-partners__group { margin-bottom: var(--space-lg); }
.rema-partners__group:last-child { margin-bottom: 0; }
.rema-partners__group-title {
 font-family: var(--font-display);
 font-size: var(--fs-caption-up);
 letter-spacing: 0.18em;
 text-transform: uppercase;
 color: var(--gold);
 text-align: center;
 margin-bottom: var(--space-sm);
}
.rema-partners__logos {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
 gap: 16px;
 max-width: 920px;
 margin: 0 auto;
}
.rema-partner-card {
 min-height: 128px;
 padding: 26px 20px;
 display: flex;
 flex-direction: column;
 align-items: center;
 justify-content: center;
 gap: 14px;
 text-align: center;
 border: 1px solid rgba(255,255,255,0.08);
 background: rgba(255,255,255,0.025);
 backdrop-filter: blur(10px);
 -webkit-backdrop-filter: blur(10px);
 border-radius: 18px;
 transition: transform .3s ease, border-color .3s ease, background .3s ease;
}
.rema-partner-card:hover {
 transform: translateY(-5px);
 border-color: rgba(216,43,99,0.4);
 background: rgba(255,255,255,0.05);
}
.rema-partner-card__ico {
 width: 46px; height: 46px;
 border-radius: 13px;
 display: flex; align-items: center; justify-content: center;
 background: rgba(216,43,99,0.12);
 color: #ff4d78;
 flex-shrink: 0;
}
.rema-partner-card__ico i { width: 24px; height: 24px; }
.rema-partner-card__name {
 font-family: var(--font-display);
 font-size: 17px;
 font-weight: 700;
 letter-spacing: 0.06em;
 text-transform: uppercase;
 color: #fff;
 line-height: 1.2;
}
/* реальный партнёр — имя в обычном регистре */
.rema-partner-card--real .rema-partner-card__name {
 text-transform: none;
 letter-spacing: 0.01em;
 font-size: 16px;
}
.rema-partner-card--real .rema-partner-card__ico { background: rgba(255,77,120,0.16); }
/* плейсхолдер «Скоро» */
.rema-partner-card--ghost {
 border-style: dashed;
 border-color: rgba(255,255,255,0.14);
 background: rgba(255,255,255,0.015);
}
.rema-partner-card--ghost:hover {
 transform: none;
 border-color: rgba(255,255,255,0.22);
 background: rgba(255,255,255,0.025);
}
.rema-partner-card--ghost .rema-partner-card__name {
 font-size: 12px;
 letter-spacing: 0.22em;
 color: rgba(255,255,255,0.4);
}

.rema-partners__cta {
 max-width: 720px;
 margin: 0 auto;
 text-align: center;
}
.rema-partners__title {
 font-family: var(--font-display);
 font-size: clamp(28px, 4vw, 44px);
 font-weight: 600;
 color: var(--ink);
 margin: 0 0 var(--space-sm);
 line-height: 1.15;
}
.rema-partners__lead {
 font-size: var(--fs-body-lg);
 color: rgba(255,255,255,0.7);
 line-height: 1.6;
 margin: 0 0 var(--space-md);
}

/* === TICKETS v2 (4 карточки) === */
.rema-tickets__grid--4 {
 display: grid;
 grid-template-columns: repeat(4, 1fr);
 gap: 14px;
 align-items: stretch;
}
.rema-tickets__grid--3 {
 display: grid;
 grid-template-columns: repeat(3, 1fr);
 gap: 16px;
 align-items: stretch;
}
.rema-ticket2 {
 display: flex;
 flex-direction: column;
 padding: 32px 28px;
 background: rgba(12,16,28,0.55);
 -webkit-backdrop-filter: blur(18px);
 backdrop-filter: blur(18px);
 border: 1px solid rgba(255,255,255,0.10);
 border-radius: 24px;
 box-shadow: inset 0 1px 0 rgba(255,255,255,0.05), 0 0 80px rgba(220,0,70,0.06);
 transition: border-color var(--t-med), transform var(--t-med), box-shadow var(--t-med);
}
.rema-ticket2:hover { transform: translateY(-6px); border-color: rgba(220,0,70,0.4); box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 0 90px rgba(220,0,70,0.18); }
.rema-ticket2__badge {
 display: inline-flex;
 align-items: center;
 align-self: flex-start;
 font-size: 11px;
 font-weight: 700;
 letter-spacing: 0.15em;
 text-transform: uppercase;
 color: var(--primary);
 margin-bottom: 18px;
}
.rema-ticket2__badge .dot {
 width: 6px; height: 6px; border-radius: 999px;
 background: var(--primary); margin-right: 8px;
 box-shadow: 0 0 8px var(--primary);
}
.rema-ticket2__price {
 font-family: var(--font-display);
 font-size: 32px;
 font-weight: 700;
 color: var(--ink);
 line-height: 1;
 margin-bottom: 22px;
 letter-spacing: -0.02em;
 display: flex;
 align-items: baseline;
 flex-wrap: wrap;
 gap: 12px;
}
.rema-ticket2__price-old {
 font-size: 0.55em;
 color: rgba(255,255,255,0.35);
 text-decoration: line-through;
 font-weight: 500;
 letter-spacing: 0;
}
.rema-ticket2--featured .rema-ticket2__price-old { color: rgba(255,255,255,0.55); }
.rema-ticket2__features {
 list-style: none;
 padding: 0; margin: 0 0 24px;
 display: flex; flex-direction: column; gap: 12px;
 flex-grow: 1;
}
.rema-ticket2__features li {
 position: relative;
 padding-left: 26px;
 font-size: 13px;
 line-height: 1.4;
 color: rgba(255,255,255,0.82);
}
.rema-ticket2__features li::before {
 content: '';
 position: absolute;
 left: 0; top: 3px;
 width: 16px; height: 16px;
 border-radius: 999px;
 background: rgba(141, 2, 47,0.15);
 border: 1px solid rgba(141, 2, 47,0.5);
}
.rema-ticket2__features li::after {
 content: '';
 position: absolute;
 left: 5px; top: 7px;
 width: 5px; height: 8px;
 border: solid var(--primary);
 border-width: 0 2px 2px 0;
 transform: rotate(45deg);
}
.rema-ticket2__features li.off { color: rgba(255,255,255,0.3); text-decoration: line-through; order: 99; }
.rema-ticket2__features li.off::before { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.15); }
.rema-ticket2__features li.off::after { border-color: rgba(255,255,255,0.25); }

/* featured (красная) */
.rema-ticket2--featured {
 background: linear-gradient(180deg, #8d022f 0%, #5e021f 100%);
 border-color: var(--primary);
 box-shadow: 0 12px 40px rgba(141, 2, 47,0.4);
}
.rema-ticket2--featured .rema-ticket2__badge { color: #fff; }
.rema-ticket2--featured .rema-ticket2__badge .dot { background: #fff; box-shadow: 0 0 8px rgba(255,255,255,0.6); }
.rema-ticket2--featured .rema-ticket2__price { color: #fff; }
.rema-ticket2--featured .rema-ticket2__features li { color: rgba(255,255,255,0.95); }
.rema-ticket2--featured .rema-ticket2__features li::before { background: rgba(255,255,255,0.2); border-color: rgba(255,255,255,0.6); }
.rema-ticket2--featured .rema-ticket2__features li::after { border-color: #fff; }
.rema-ticket2__btn-dark {
 background: rgba(0,0,0,0.85);
 color: #fff;
 border: 1px solid rgba(0,0,0,0.3);
}
.rema-ticket2__btn-dark:hover { background: #000; }

/* промо-карточка */
.rema-tickets__note {
 font-size: 13px;
 color: rgba(255,255,255,0.5);
 margin-top: 12px;
 max-width: 480px;
 margin-left: auto;
 margin-right: auto;
 line-height: 1.5;
}
.rema-ticket2--promo {
 justify-content: center;
 background: url('assets/img/final-cta-bg.jpg') center/cover no-repeat;
 position: relative;
 overflow: hidden;
 border-color: rgba(255,255,255,0.12);
}
.rema-ticket2--promo::before {
 content: '';
 position: absolute; inset: 0;
 background: linear-gradient(180deg, rgba(10,10,10,0.7), rgba(10,10,10,0.88));
}
.rema-ticket2--promo > * { position: relative; z-index: 1; }
.rema-ticket2__promo-title {
 font-family: var(--font-display);
 font-size: 22px;
 font-weight: 700;
 line-height: 1.2;
 color: var(--ink);
 margin-bottom: 12px;
}
.rema-ticket2__promo-text {
 font-size: 13px;
 line-height: 1.5;
 color: rgba(255,255,255,0.7);
 margin-bottom: 22px;
}
@media (max-width: 1023px) { .rema-tickets__grid--4, .rema-tickets__grid--3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 559px) { .rema-tickets__grid--4, .rema-tickets__grid--3 { grid-template-columns: 1fr; } }

/* === TICKETS (старые, 3 карточки — не используются) === */
.rema-tickets__grid {
 display: grid;
 grid-template-columns: repeat(3, 1fr);
 gap: var(--space-sm);
 align-items: stretch;
}
.rema-ticket {
 position: relative;
 overflow: hidden;
 padding: var(--space-lg) var(--space-md);
 border: 1px solid rgba(255,255,255,0.1);
 background: rgba(255,255,255,0.03);
 box-shadow: inset 0 0 0 1px rgba(255,255,255,0.04);
 display: flex;
 flex-direction: column;
}
.rema-ticket--business {
 background-image: url('assets/img/night-moscow.jpg');
 background-size: cover; background-position: center;
}
.rema-ticket--vip {
 background-image: url('assets/img/vip-networking.jpg');
 background-size: cover; background-position: center;
 border-color: var(--primary);
 box-shadow: 0 0 32px var(--primary-glow);
}
.rema-ticket--business::before,
.rema-ticket--vip::before {
 content: '';
 position: absolute; inset: 0;
 background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(10,10,10,0.85) 60%, rgba(10,10,10,0.95) 100%);
 z-index: 0;
}
.rema-ticket--vip::after {
 content: '';
 position: absolute; inset: 0;
 background: radial-gradient(circle at top right, var(--primary-glow) 0%, transparent 60%);
 z-index: 0;
}
.rema-ticket > * { position: relative; z-index: 1; }
.rema-ticket__badge {
 display: inline-block;
 padding: 5px 12px;
 font-size: 10px;
 font-weight: 700;
 letter-spacing: 0.2em;
 text-transform: uppercase;
 color: var(--ink);
 background: rgba(255,255,255,0.1);
 align-self: flex-start;
 margin-bottom: var(--space-md);
}
.rema-ticket--vip .rema-ticket__badge { background: var(--primary); }
.rema-ticket__name {
 font-family: var(--font-display);
 font-size: 28px;
 font-weight: 700;
 margin-bottom: 4px;
}
.rema-ticket__hint { font-size: 13px; color: rgba(255,255,255,0.6); margin-bottom: var(--space-md); }
.rema-ticket__price {
 font-family: var(--font-display);
 font-size: 40px;
 font-weight: 700;
 color: var(--ink);
 margin-bottom: 6px;
 letter-spacing: -0.02em;
}
.rema-ticket__price-note { font-size: 12px; color: rgba(255,255,255,0.5); margin-bottom: var(--space-md); }
.rema-ticket__features {
 list-style: none;
 padding: 0;
 margin: 0 0 var(--space-md);
 display: flex;
 flex-direction: column;
 gap: 10px;
 flex-grow: 1;
}
.rema-ticket__features li {
 display: flex;
 align-items: flex-start;
 gap: 10px;
 font-size: 14px;
 line-height: 1.45;
 color: rgba(255,255,255,0.8);
}
.rema-ticket__features li i {
 width: 16px; height: 16px;
 flex-shrink: 0;
 color: var(--primary);
 margin-top: 3px;
}
.rema-ticket__seats {
 font-size: 12px;
 font-weight: 600;
 letter-spacing: 0.1em;
 text-transform: uppercase;
 color: var(--primary);
 margin-bottom: var(--space-sm);
}
.rema-ticket .btn { width: 100%; }
@media (max-width: 1023px) { .rema-tickets__grid { grid-template-columns: 1fr; } }

/* === FINAL CTA === */
.rema-final {
 position: relative;
 padding: var(--space-xxl) 0;
 background: url('assets/img/final-cta-bg.jpg') center/cover no-repeat;
 text-align: center;
 overflow: hidden;
}
.rema-final::before {
 content: '';
 position: absolute; inset: 0;
 background: linear-gradient(180deg, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.7) 50%, rgba(10,10,10,0.95) 100%);
}
.rema-final::after {
 content: '';
 position: absolute; inset: 0;
 background: radial-gradient(ellipse at center, var(--primary-glow) 0%, transparent 60%);
}
.rema-final > .container { position: relative; z-index: 2; }
.rema-final__title {
 font-family: var(--font-display);
 font-size: clamp(36px, 6vw, 72px);
 font-weight: 700;
 line-height: 1.05;
 letter-spacing: -0.02em;
 margin-bottom: var(--space-md);
 max-width: 720px;
 margin-left: auto; margin-right: auto;
}
.rema-final__lead {
 font-size: var(--fs-body-lg);
 color: rgba(255,255,255,0.8);
 margin-bottom: var(--space-lg);
 max-width: 560px;
 margin-left: auto; margin-right: auto;
}
.rema-final .btn { padding-left: 48px; padding-right: 48px; }

/* === FOOTER === */
.rema-footer {
 background: var(--canvas-deep);
 border-top: 1px solid rgba(255,255,255,0.08);
 padding: var(--space-xl) 0 var(--space-md);
 color: rgba(255,255,255,0.55);
 font-size: 13px;
}
.rema-footer__grid {
 display: grid;
 grid-template-columns: 1.5fr 1fr 1fr 1fr;
 gap: var(--space-lg);
 margin-bottom: var(--space-lg);
}
.rema-footer__title {
 font-size: 11px;
 font-weight: 700;
 letter-spacing: 0.2em;
 text-transform: uppercase;
 color: var(--ink);
 margin-bottom: var(--space-sm);
}
.rema-footer__list { display: flex; flex-direction: column; gap: 8px; }
.rema-footer__list a { color: rgba(255,255,255,0.6); transition: color var(--t-fast); }
.rema-footer__list a:hover { color: var(--primary); }
.rema-footer__copy {
 padding-top: var(--space-md);
 border-top: 1px solid rgba(255,255,255,0.08);
 display: flex;
 justify-content: space-between;
 flex-wrap: wrap;
 gap: var(--space-xs);
 font-size: 12px;
 color: rgba(255,255,255,0.4);
}
@media (max-width: 767px) {
 .rema-footer__grid { grid-template-columns: 1fr 1fr; }
}

/* === CTA MODAL (расширение под REMA: имя + radio тариф + email) === */
.cta-modal {
 position: fixed;
 inset: 0;
 z-index: 100;
 background: rgba(0,0,0,0.75);
 backdrop-filter: blur(8px);
 display: flex;
 align-items: center;
 justify-content: center;
 padding: var(--space-sm);
 overflow-y: auto;
}
.cta-modal[hidden] { display: none; }
.cta-modal__card {
 background: var(--canvas-deep);
 border: 1px solid rgba(255,255,255,0.12);
 max-width: 480px;
 width: 100%;
 padding: var(--space-lg);
 position: relative;
}
.cta-modal__close {
 position: absolute;
 top: 12px; right: 12px;
 width: 36px; height: 36px;
 display: inline-flex;
 align-items: center;
 justify-content: center;
 background: transparent;
 color: rgba(255,255,255,0.5);
 transition: color var(--t-fast);
}
.cta-modal__close:hover { color: var(--ink); }
.cta-modal__title {
 font-family: var(--font-display);
 font-size: 24px;
 font-weight: 600;
 margin-bottom: 6px;
}
.cta-modal__hint { font-size: 13px; color: rgba(255,255,255,0.6); margin-bottom: var(--space-md); }
.cta-modal__field { margin-bottom: var(--space-sm); }
.cta-modal__label {
 display: block;
 font-size: 11px;
 font-weight: 600;
 letter-spacing: 0.1em;
 text-transform: uppercase;
 color: rgba(255,255,255,0.55);
 margin-bottom: 6px;
}
.cta-modal__input {
 width: 100%;
 background: rgba(255,255,255,0.04);
 border: 1px solid rgba(255,255,255,0.12);
 padding: 12px 14px;
 font-size: 15px;
 color: var(--ink);
 font-family: inherit;
 transition: border-color var(--t-fast);
}
.cta-modal__input:focus {
 outline: none;
 border-color: var(--primary);
}
.cta-modal__tickets {
 display: grid;
 grid-template-columns: repeat(3, 1fr);
 gap: 8px;
}
.cta-modal__ticket {
 position: relative;
 padding: 12px 8px;
 text-align: center;
 background: rgba(255,255,255,0.04);
 border: 1px solid rgba(255,255,255,0.12);
 font-size: 13px;
 font-weight: 600;
 cursor: pointer;
 transition: all var(--t-fast);
}
.cta-modal__ticket input { position: absolute; opacity: 0; pointer-events: none; }
.cta-modal__ticket:has(input:checked) {
 background: var(--primary);
 border-color: var(--primary);
 color: var(--ink);
}
.cta-modal__error {
 padding: 10px 12px;
 background: rgba(141, 2, 47,0.15);
 border: 1px solid rgba(141, 2, 47,0.4);
 color: var(--primary);
 font-size: 13px;
 margin-bottom: var(--space-sm);
}
.cta-modal__hp {
 position: absolute;
 left: -9999px;
 width: 1px; height: 1px; overflow: hidden;
}
.cta-modal__legal {
 font-size: 11px;
 color: rgba(255,255,255,0.4);
 text-align: center;
 margin-top: var(--space-sm);
 line-height: 1.5;
}
.cta-modal__legal a { color: rgba(255,255,255,0.6); text-decoration: underline; text-underline-offset: 3px; }

body.lb-open { overflow: hidden; }

/* === Sticky floating CTA на mobile === */
.float-panel {
 display: none !important;
 position: fixed;
 bottom: 0; left: 0; right: 0;
 z-index: 40;
 background: rgba(10,10,10,0.95);
 backdrop-filter: blur(8px);
 border-top: 1px solid rgba(255,255,255,0.1);
 padding: 12px var(--space-sm);
 transform: translateY(100%);
 transition: transform var(--t-med);
}
.float-panel.visible { transform: translateY(0); }
.float-panel .btn { width: 100%; }
@media (min-width: 1024px) {
 .float-panel { display: none; }
}

/* === Header CTA button сверху === */
.site-header { background: transparent; }
.site-header.scrolled { background: rgba(10,10,10,0.95); backdrop-filter: blur(8px); }
.rema-header__cta {
 height: 42px;
 padding: 0 22px;
 background: transparent;
 color: #fff;
 border: 2.5px solid var(--primary);
 border-radius: 8px;
 font-size: 13px;
 font-weight: 700;
 letter-spacing: 0.08em;
 text-transform: uppercase;
 display: inline-flex;
 align-items: center;
 gap: 10px;
 transition: background var(--t-fast), color var(--t-fast);
}
.rema-header__cta i { width: 14px; height: 14px; }
.rema-header__cta:hover { background: var(--primary); color: #fff; }
/* шапка на всю ширину: лого к левому краю, кнопка к правому с отступом — не налезает */
.site-header .header-inner.container { max-width: 100%; padding-left: 34px; padding-right: 34px; }
.btn i { width: 18px; height: 18px; }
@media (max-width: 767px) {
 .rema-header__cta { padding: 0 14px; font-size: 12px; }
}

/* === Утилити === */
.text-center { text-align: center; }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }

/* === FOUNDER (про Рема) === */
.rema-founder {
 display: grid;
 grid-template-columns: 0.8fr 1.2fr;
 gap: var(--space-xl);
 align-items: center;
}
.rema-founder__photo {
 position: relative;
 aspect-ratio: 4 / 5;
 border-radius: 20px;
 overflow: hidden;
 border: 1px solid rgba(255,255,255,0.1);
 box-shadow: 0 0 60px rgba(141, 2, 47,0.2);
}
.rema-founder__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 25%; }
.rema-founder__name {
 font-family: var(--font-display);
 font-size: clamp(36px, 5vw, 56px);
 font-weight: 700;
 color: var(--ink);
 line-height: 1;
 margin: 0 0 8px;
}
.rema-founder__role {
 font-size: clamp(17px, 1.6vw, 20px);
 color: #ff4d78;
 font-weight: 600;
 letter-spacing: 0.01em;
 line-height: 1.4;
 margin: 0 0 var(--space-md);
}
.rema-founder__lead {
 font-size: clamp(17px, 1.8vw, 20px);
 line-height: 1.5;
 color: rgba(255,255,255,0.9);
 font-style: italic;
 margin: 0 0 var(--space-md);
 max-width: 560px;
}
.rema-founder__points { display: flex; flex-direction: column; gap: 12px; }
.rema-founder__point { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; color: rgba(255,255,255,0.7); line-height: 1.4; }
.rema-founder__point i { width: 18px; height: 18px; color: var(--primary); flex-shrink: 0; margin-top: 2px; }
@media (max-width: 1023px) {
 .rema-founder { grid-template-columns: 1fr; gap: var(--space-md); }
 .rema-founder__photo { max-width: 380px; width: 100%; margin: 0 auto; justify-self: center; }
}

/* === ДЛЯ КОГО === */
.rema-audience__grid {
 display: grid;
 grid-template-columns: repeat(2, minmax(0, 1fr));
 gap: 32px;
}
.rema-audience {
 display: flex;
 flex-direction: column;
 background: rgba(12,16,28,0.55);
 -webkit-backdrop-filter: blur(18px);
 backdrop-filter: blur(18px);
 border: 1px solid rgba(255,255,255,0.08);
 border-radius: 24px;
 padding: 44px 40px;
 box-shadow: inset 0 1px 0 rgba(255,255,255,0.05), 0 0 80px rgba(220,0,70,0.08);
 transition: border-color var(--t-med), transform var(--t-med), box-shadow var(--t-med);
}
.rema-audience:hover { transform: translateY(-6px); border-color: rgba(220,0,70,0.45); box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 0 100px rgba(220,0,70,0.22); }
.rema-audience__ico {
 display: inline-flex;
 align-items: center;
 justify-content: center;
 width: 52px; height: 52px;
 border-radius: 14px;
 border: 1px solid rgba(141, 2, 47,0.4);
 background: rgba(141, 2, 47,0.1);
 margin-bottom: var(--space-sm);
}
.rema-audience__ico i { width: 24px; height: 24px; color: var(--primary); }
.rema-audience__title {
 font-family: var(--font-display);
 font-size: 22px;
 font-weight: 600;
 color: var(--ink);
 margin: 0 0 10px;
}
.rema-audience__text { font-size: 15px; line-height: 1.65; color: rgba(255,255,255,0.68); margin: 0; }
/* «Для кого» — премиальный full-width блок */
#audience { padding: 120px 0; background: var(--canvas-deep); }
#audience::before, #audience::after { content: ''; position: absolute; inset: 0; pointer-events: none; z-index: 0; }
#audience::before { background: radial-gradient(42% 80% at 0% 28%, rgba(220,0,70,0.12) 0%, transparent 60%); }
#audience::after  { background: radial-gradient(42% 80% at 100% 72%, rgba(44,54,75,0.45) 0%, transparent 65%); }
#audience > .container { position: relative; z-index: 1; max-width: 1500px; }
#audience .rema-section__header { margin-bottom: 64px; }
#audience .rema-section__title { font-size: clamp(34px, 4.5vw, 56px); }
@media (max-width: 1100px) { #audience .rema-audience__grid { grid-template-columns: 1fr; } #audience { padding: 72px 0; } }
@media (max-width: 767px) { .rema-audience__grid { grid-template-columns: 1fr; } }

/* === 3 ПРИЧИНЫ === */
.rema-why__grid {
 display: grid;
 grid-template-columns: repeat(3, minmax(0, 1fr));
 gap: 32px;
}
@media (max-width: 1100px) { .rema-why__grid { grid-template-columns: 1fr; } }
.rema-why {
 display: flex;
 flex-direction: column;
 background: rgba(12,16,28,0.55);
 -webkit-backdrop-filter: blur(18px);
 backdrop-filter: blur(18px);
 border: 1px solid rgba(255,255,255,0.08);
 border-radius: 24px;
 padding: 44px 32px;
 text-align: center;
 box-shadow: inset 0 1px 0 rgba(255,255,255,0.05), 0 0 80px rgba(220,0,70,0.08);
 transition: border-color var(--t-med), transform var(--t-med), box-shadow var(--t-med);
}
.rema-why:hover { transform: translateY(-6px); border-color: rgba(220,0,70,0.45); box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 0 100px rgba(220,0,70,0.22); }
.rema-why__ico {
 display: inline-flex;
 align-self: center;
 align-items: center;
 justify-content: center;
 width: 64px; height: 64px;
 border-radius: 16px;
 border: 1px solid rgba(141, 2, 47,0.4);
 background: rgba(141, 2, 47,0.1);
 margin-bottom: var(--space-sm);
}
.rema-why__ico i { width: 30px; height: 30px; color: var(--primary); }
.rema-why__title {
 font-family: var(--font-display);
 font-size: 24px;
 font-weight: 600;
 color: var(--ink);
 margin: 0 0 10px;
}
.rema-why__text { font-size: 14px; line-height: 1.6; color: rgba(255,255,255,0.6); margin: 0; }
@media (max-width: 767px) { .rema-why__grid { grid-template-columns: 1fr; } }

/* === LOCATION MAP === */
.rema-location__map {
 position: relative;
 z-index: 2;
 width: 100%;
 max-width: var(--container-max);
 margin: 0 auto;
 padding: 0 var(--space-sm);
 margin-top: var(--space-md);
}
.rema-location__map iframe {
 width: 100%;
 height: 380px;
 border: 1px solid rgba(255,255,255,0.1);
 border-radius: 16px;
 filter: grayscale(0.3) contrast(1.05);
}
@media (max-width: 767px) { .rema-location__map iframe { height: 300px; } }

/* community logo — длинное «ReМиссия» */
.rema-community__logo b { font-size: clamp(30px, 4.5vw, 52px); }

/* === LOCATION — кнопка «Схема проезда» === */
.rema-location__route-btn {
 margin-top: var(--space-md);
 display: inline-flex;
 align-items: center;
 gap: 10px;
}
.rema-location__route-btn i { width: 18px; height: 18px; }

/* === ROUTE MAP MODAL === */
.route-modal {
 position: fixed;
 inset: 0;
 z-index: 110;
 background: rgba(0,0,0,0.85);
 backdrop-filter: blur(10px);
 display: flex;
 align-items: center;
 justify-content: center;
 padding: 24px 16px;
 overflow-y: auto;
}
.route-modal[hidden] { display: none; }
.route-modal__card {
 background: var(--canvas-deep);
 border: 1px solid rgba(255,255,255,0.12);
 border-radius: 16px;
 max-width: 1340px;
 width: 100%;
 padding: 28px;
 position: relative;
 box-shadow: 0 0 60px rgba(141, 2, 47,0.25);
}
.route-modal__close {
 position: absolute;
 top: 14px; right: 14px;
 width: 40px; height: 40px;
 display: inline-flex;
 align-items: center;
 justify-content: center;
 background: rgba(255,255,255,0.06);
 border-radius: 999px;
 color: rgba(255,255,255,0.7);
 transition: color var(--t-fast), background var(--t-fast);
}
.route-modal__close:hover { color: var(--ink); background: rgba(141, 2, 47,0.2); }
.route-modal__close i { width: 18px; height: 18px; }
.route-modal__title {
 font-family: var(--font-display);
 font-size: clamp(20px, 2.4vw, 28px);
 font-weight: 600;
 color: var(--ink);
 margin: 0 40px 20px 0;
 line-height: 1.3;
}
.route-modal__hint {
 font-size: 14px;
 color: rgba(255,255,255,0.55);
 margin: 0 0 16px;
}
.route-modal__images {
 display: grid;
 grid-template-columns: 1fr 1fr;
 gap: 16px;
 align-items: start;
}
.route-modal__imgbtn { display: block; width: 100%; padding: 0; border: 0; background: none; cursor: zoom-in; }
@media (max-width: 767px) {
 .route-modal__images { grid-template-columns: 1fr; }
}
.route-modal__images img {
 width: 100%;
 height: auto;
 border-radius: 10px;
 border: 1px solid rgba(255,255,255,0.08);
 display: block;
 transition: transform var(--t-med);
}
.route-modal__imgbtn:hover img { transform: scale(1.01); border-color: rgba(216,43,99,0.4); }
/* Лайтбокс изображений */
.img-lightbox {
 position: fixed; inset: 0; z-index: 200;
 background: rgba(0,0,0,0.93);
 display: flex; align-items: center; justify-content: center;
 padding: 32px;
}
.img-lightbox[hidden] { display: none; }
.img-lightbox__img {
 max-width: 100%; max-height: 100%;
 object-fit: contain;
 border-radius: 8px;
 cursor: zoom-in;
 transition: transform .25s ease;
}
.img-lightbox__img.is-zoomed { transform: scale(1.9); cursor: zoom-out; }
.img-lightbox__close {
 position: absolute; top: 18px; right: 18px;
 width: 48px; height: 48px;
 border: 0; border-radius: 50%;
 background: rgba(255,255,255,0.1);
 color: #fff;
 display: flex; align-items: center; justify-content: center;
 cursor: pointer;
 transition: background .2s;
}
.img-lightbox__close:hover { background: var(--primary); }
.img-lightbox__close i { width: 22px; height: 22px; }
.img-lightbox__hint {
 position: absolute; bottom: 18px; left: 0; right: 0;
 text-align: center;
 font-size: 13px;
 color: rgba(255,255,255,0.5);
 margin: 0;
}
@media (max-width: 767px) {
 .route-modal { padding: 16px 8px; }
 .route-modal__card { padding: 20px 16px; }
 .route-modal__title { font-size: 18px; margin-right: 32px; }
}

/* === Доп. мобильные фиксы для узких экранов === */
@media (max-width: 380px) {
 .rema-hero__meta-plate { padding: 8px; max-width: 100%; }
 .rema-hero__meta-cell { padding: 10px 12px; gap: 12px; }
 .rema-hero__meta-ico { width: 36px; height: 36px; }
}
@media (max-width: 360px) {
 .rema-hero__title { font-size: clamp(34px, 9vw, 52px); }
 .rema-hero__tagline { font-size: 16px; }
 .rema-ticket2__price { font-size: 26px; }
 .rema-statcard__num { font-size: 28px; }
 .rema-kpi__num { font-size: 28px; }
 .rema-section__title { font-size: clamp(24px, 7vw, 32px); }
 .rema-hero__trust-item { font-size: 10px; }
}


/* ===============================
   ICON GLOW-UP — premium SEO theme
   =============================== */

/* Hero trust иконки — кружки с red glow */
.rema-hero__trust-ico {
 background: radial-gradient(circle at 30% 30%, rgba(141, 2, 47,0.35), rgba(141, 2, 47,0.08));
 border: 1.5px solid rgba(141, 2, 47,0.65);
 box-shadow: 0 0 14px rgba(141, 2, 47,0.3), inset 0 0 8px rgba(141, 2, 47,0.15);
 transition: transform var(--t-med), box-shadow var(--t-med);
}
.rema-hero__trust-item:hover .rema-hero__trust-ico {
 transform: scale(1.08) rotate(-3deg);
 box-shadow: 0 0 22px rgba(141, 2, 47,0.55), inset 0 0 10px rgba(141, 2, 47,0.25);
}
.rema-hero__trust-ico i { filter: drop-shadow(0 0 4px rgba(141, 2, 47,0.6)); }

/* KPI icon (вилка фуршета) — premium box */
.rema-kpi__icon {
 background: radial-gradient(circle at 30% 30%, rgba(141, 2, 47,0.25), rgba(141, 2, 47,0.06)) !important;
 border: 1.5px solid rgba(141, 2, 47,0.5) !important;
 border-radius: 14px !important;
 box-shadow: 0 0 16px rgba(141, 2, 47,0.25), inset 0 0 8px rgba(141, 2, 47,0.12);
 transition: transform var(--t-med), box-shadow var(--t-med);
}
.rema-kpi__cell--icon:hover .rema-kpi__icon { transform: translateY(-3px); box-shadow: 0 6px 22px rgba(141, 2, 47,0.45); }
.rema-kpi__icon i { color: var(--primary) !important; filter: drop-shadow(0 0 4px rgba(141, 2, 47,0.6)); }

/* About statcard — выразительные icon-боксы */
.rema-statcard__ico {
 background: radial-gradient(circle at 30% 30%, rgba(141, 2, 47,0.25), rgba(141, 2, 47,0.06));
 border: 1.5px solid rgba(141, 2, 47,0.55);
 box-shadow: 0 0 14px rgba(141, 2, 47,0.25), inset 0 0 6px rgba(141, 2, 47,0.1);
 transition: transform var(--t-med), box-shadow var(--t-med);
}
.rema-statcard:hover .rema-statcard__ico {
 transform: rotate(-4deg) scale(1.05);
 box-shadow: 0 0 20px rgba(141, 2, 47,0.5);
}
.rema-statcard__ico i { filter: drop-shadow(0 0 3px rgba(141, 2, 47,0.5)); }

/* Audience — крупный icon-блок */
.rema-audience__ico {
 background: radial-gradient(circle at 30% 30%, rgba(141, 2, 47,0.3), rgba(141, 2, 47,0.08));
 border: 1.5px solid rgba(141, 2, 47,0.55);
 box-shadow: 0 0 18px rgba(141, 2, 47,0.28), inset 0 0 10px rgba(141, 2, 47,0.15);
 transition: transform var(--t-med), box-shadow var(--t-med);
}
.rema-audience:hover .rema-audience__ico {
 transform: translateY(-4px) scale(1.06);
 box-shadow: 0 8px 28px rgba(141, 2, 47,0.5);
}
.rema-audience__ico i { filter: drop-shadow(0 0 4px rgba(141, 2, 47,0.6)); }

/* Why icons — самые большие, фокус на премиум */
.rema-why__ico {
 background: radial-gradient(circle at 30% 30%, rgba(141, 2, 47,0.32), rgba(141, 2, 47,0.08));
 border: 1.5px solid rgba(141, 2, 47,0.6);
 box-shadow: 0 0 22px rgba(141, 2, 47,0.35), inset 0 0 12px rgba(141, 2, 47,0.18);
 transition: transform var(--t-med), box-shadow var(--t-med);
}
.rema-why:hover .rema-why__ico {
 transform: scale(1.1) rotate(-5deg);
 box-shadow: 0 0 32px rgba(141, 2, 47,0.6), inset 0 0 14px rgba(141, 2, 47,0.25);
}
.rema-why__ico i { filter: drop-shadow(0 0 5px rgba(141, 2, 47,0.7)); }

/* Speakers teaser — большая иконка с pulse */
.rema-speakers__teaser-ico {
 background: radial-gradient(circle at 30% 30%, rgba(141, 2, 47,0.35), rgba(141, 2, 47,0.1));
 border: 1.5px solid rgba(141, 2, 47,0.65);
 box-shadow: 0 0 28px rgba(141, 2, 47,0.4), inset 0 0 16px rgba(141, 2, 47,0.2);
 animation: pulse-glow 3s ease-in-out infinite;
}
@keyframes pulse-glow {
 0%, 100% { box-shadow: 0 0 28px rgba(141, 2, 47,0.4), inset 0 0 16px rgba(141, 2, 47,0.2); }
 50% { box-shadow: 0 0 40px rgba(141, 2, 47,0.65), inset 0 0 20px rgba(141, 2, 47,0.3); }
}
.rema-speakers__teaser-ico i { filter: drop-shadow(0 0 6px rgba(141, 2, 47,0.75)); }

/* Tickets — галочки фич ярче */
.rema-ticket2__features li::before {
 background: radial-gradient(circle at 30% 30%, rgba(141, 2, 47,0.3), rgba(141, 2, 47,0.1)) !important;
 box-shadow: 0 0 6px rgba(141, 2, 47,0.4);
}
.rema-ticket2--featured .rema-ticket2__features li::before {
 background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.4), rgba(255,255,255,0.15)) !important;
 box-shadow: 0 0 6px rgba(255,255,255,0.4);
}

/* Plate meta-cell — иконки в плашке даты */
.rema-hero__meta-ico {
 background: radial-gradient(circle at 30% 30%, rgba(141, 2, 47,0.3), rgba(141, 2, 47,0.08)) !important;
 border: 1.5px solid rgba(141, 2, 47,0.65) !important;
 box-shadow: 0 0 14px rgba(141, 2, 47,0.3), inset 0 0 8px rgba(141, 2, 47,0.15) !important;
}
.rema-hero__meta-ico i { filter: drop-shadow(0 0 4px rgba(141, 2, 47,0.6)); }

/* Founder check-points — красивые иконки */
.rema-founder__point i {
 background: radial-gradient(circle at 30% 30%, rgba(141, 2, 47,0.3), rgba(141, 2, 47,0.1));
 border-radius: 999px;
 padding: 4px;
 width: 22px !important;
 height: 22px !important;
 box-shadow: 0 0 8px rgba(141, 2, 47,0.4);
 filter: drop-shadow(0 0 2px rgba(141, 2, 47,0.5));
}

/* Hotel meta + Location meta — лёгкое свечение */
.rema-hotel__meta i,
.rema-location__card-meta i {
 filter: drop-shadow(0 0 3px rgba(141, 2, 47,0.5));
}

/* Header CTA arrow — лёгкое движение */
.rema-header__cta i {
 transition: transform var(--t-fast);
}
.rema-header__cta:hover i { transform: translateX(3px); }
