/* =========================================================
   01) GLOBAL — ROOT + RESET (Light Yellow/Grey Theme)
   Палитра: #F6F4E6 (bg) | #41444B (ink) | #52575D (muted) | #FDDB3A (accent)
========================================================= */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

/* ---- Theme tokens ---- */
:root{
  /* Base palette */
  --bg: #F6F4E6;             /* единый светлый фон */
  --surface: #FFFFFF;        /* карточки/панели */
  --surface-2: #F2F0E0;      /* мягкая подложка */
  --ink: #41444B;            /* основной текст */
  --muted: #52575D;          /* вторичный текст */
  --muted-2: rgba(82,87,93,.72);
  --stroke: rgba(65,68,75,.16);

  --accent: #FDDB3A;         /* желтый акцент */
  --accent-ink: #2B2D31;     /* текст на желтом */
  --accent-soft: rgba(253,219,58,.24);

  /* Radii */
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 26px;
  --radius-pill: 999px;

  /* Shadows (контрастные, но чистые) */
  --shadow-1: 0 10px 24px rgba(65,68,75,.10);
  --shadow-2: 0 18px 44px rgba(65,68,75,.14);
  --shadow-3: 0 30px 70px rgba(65,68,75,.18);

  /* Hover glow (желтый, аккуратный) */
  --glow: 0 0 0 6px rgba(253,219,58,.18);

  /* Motion */
  --ease: cubic-bezier(.2,.8,.2,1);
  --t-fast: .18s var(--ease);
  --t-med: .28s var(--ease);

  /* Layout */
  --container: 1400px;
}

/* Images */
img {
  max-width: 100%;
  display: block;
}

/* Selection */
::selection{
  background: var(--accent);
  color: var(--accent-ink);
}

/* Улучшенный фокус */
:focus-visible{
  outline: none;
  box-shadow: 0 0 0 3px rgba(65,68,75,.22), 0 0 0 8px rgba(253,219,58,.26);
  border-radius: 10px;
}

/* Убираем "неоновые" перекрытия из старой темы */
body::before,
body::after,
.section::before,
.section::after{
  content: none !important;
}
/* =========================================================
   02) LAYOUT BASICS — Containers / Sections / Grids
========================================================= */

.container{
  width: min(var(--container), 92%);
  margin-inline: auto;
}

.section{
  position: relative;
}


/* секции делаем "чистыми" на едином фоне */
.section-dark{
  background: transparent;
}

/* универсальные сетки */
.grid-2{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.grid-3{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.grid-4{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
/* =========================================================
   03) TYPOGRAPHY — Headings / Text / Section Head
========================================================= */

h1,h2,h3{
  margin: 0;
  color: var(--ink);
  letter-spacing: -0.02em;
}

p{
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

/* Заголовки секций */
.section-head{
  display: flex;
  align-items:start;
  justify-content: space-between;
  gap: 18px;
  flex-direction: column !important;
  margin-bottom: 22px;
}

.section-head h2{
  font-size: clamp(22px, 2.1vw, 30px);
  line-height: 1.1;
}

.section-sub{
  max-width: 420px;
  font-size: 14px;
  color: var(--muted-2);
}

/* Центрированный вариант */
.section-head--center{
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}
.section-sub--center{
  max-width: 560px;
  text-align: center;
}

/* Маленький "kicker" */
.kicker{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(65,68,75,.72);
}
.kicker::before{
  content:"";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 8px 18px rgba(253,219,58,.35);
}
/* =========================================================
   04) LINKS + MICRO UI — Links / Pills / Labels
========================================================= */

a{
  color: inherit;
}

.left a{
  position: relative;
  color: rgba(65,68,75,.86);
  text-decoration: none;
  font-weight: 650;
  letter-spacing: .10em;
  text-transform: uppercase;
  transition: transform var(--t-fast), color var(--t-fast);
}

.left a:hover{
  color: var(--ink);
  transform: translateY(-1px);
}

.left a::after{
  content:"";
  position: absolute;
  left: 0;
  bottom: -4px;
  height: 2px;
  width: 0%;
  border-radius: 999px;
  background: var(--accent);
  transition: width var(--t-med);
}

.left a::after{
  width: 100%;
}

.left a:hover::after{
 background: #000;
}


/* Pills */
.pill-row{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.pill{
  font-size: 11px;
  padding: 8px 12px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--stroke);
  color: rgba(65,68,75,.88);
  background: var(--surface);
  box-shadow: var(--shadow-1);
  transition: transform var(--t-fast), box-shadow var(--t-fast), border-color var(--t-fast);
}

.pill:hover{
  transform: translateY(-2px);
  border-color: rgba(253,219,58,.55);
  box-shadow: var(--shadow-2);
}

/* Labels */
.label-row{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}

.label{
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(65,68,75,.88);
  background: var(--surface);
  border: 1px solid rgba(65,68,75,.14);
  box-shadow: var(--shadow-1);
}

.label-hot{
  background: linear-gradient(0deg, rgba(253,219,58,.22), rgba(253,219,58,.22)), var(--surface);
  border-color: rgba(253,219,58,.55);
}

.label-outline{
  background: transparent;
  border-color: rgba(65,68,75,.24);
}
/* =========================================================
   05) PANELS / CARDS — New "Paper" Style (replaces glass)
========================================================= */

.glass-panel{
  position: relative;
  background: var(--surface);
  border: 1px solid var(--stroke);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-2);
  transition: transform var(--t-fast), box-shadow var(--t-fast), border-color var(--t-fast);
}

.glass-panel:hover{
  transform: translateY(-3px);
  border-color: rgba(253,219,58,.55);
  box-shadow: var(--shadow-3);
}

/* карточки-обертки, если нужно визуально отличить */
.panel-soft{
  background: var(--surface-2);
  border: 1px solid rgba(65,68,75,.10);
  box-shadow: 0 12px 28px rgba(65,68,75,.10);
}

/* внутренние отступы типовые */
.pad-sm{ padding: 14px; }
.pad-md{ padding: 18px; }
.pad-lg{ padding: 24px; }
/* =========================================================
   06) BUTTONS — Bright & Contrast (Yellow / Grey)
========================================================= */

.btn{
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  padding: 0 22px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid rgba(65,68,75,.18);
  background: var(--surface);
  color: var(--ink);
  box-shadow: var(--shadow-1);
  transition: transform var(--t-fast), box-shadow var(--t-fast), background var(--t-fast), border-color var(--t-fast);
  user-select: none;
}

.btn:hover{
  transform: translateY(-2px);
  box-shadow: var(--shadow-2);
  border-color: rgba(253,219,58,.55);
}

/* Primary */
.btn--primary,
.btn-primary{
  background: var(--accent);
  border-color: rgba(253,219,58,.9);
  color: var(--accent-ink);
  box-shadow: 0 18px 34px rgba(253,219,58,.22), 0 10px 26px rgba(65,68,75,.14);
}

.btn--primary:hover,
.btn-primary:hover{
  box-shadow: 0 24px 54px rgba(253,219,58,.26), 0 16px 40px rgba(65,68,75,.16);
  transform: translateY(-2px) scale(1.01);
}

/* Ghost */
.btn-ghost{
  background: transparent;
  border-color: rgba(65,68,75,.28);
  color: rgba(65,68,75,.92);
}

.btn-ghost:hover{
  background: rgba(65,68,75,.04);
  border-color: rgba(65,68,75,.40);
}

/* Block */
.btn-block{
  width: 100%;
}

/* Small */
.btn--xs{
  height: 40px;
  padding: 0 16px;
  font-size: 11px;
}
/* =========================================================
   07) HERO SECTION — Clean Light Hero (No neon)
   Использует твои классы: .hero .hero-grid .hero-copy .hero-side ...
========================================================= */
/* ===========================
   HERO (section.hero) — Light Contrast (Yellow/Grey)
   (matches your HTML: .hero, .hero-card, .hero-media, .mini-card, .chips, .chip, .hero-content, .hero-actions, .btn)
   Palette:
   #41444B (ink) • #52575D (muted) • #FDDB3A (accent) • #F6F4E6 (base)
=========================== */

.hero{
  position: relative;
  padding: 56px 0 34px;
  background: #F6F4E6;       /* единый светлый фон */
  color: #41444B;
  overflow: hidden;
}

/* мягкие пятна как на референсе, но “дневные” */
.hero::before,
.hero::after{
  content:"";
  position:absolute;
  inset:-16%;
  pointer-events:none;
  z-index:0;
}

.hero::before{
  background:
    radial-gradient(820px 420px at 18% 18%, rgba(253,219,58,.22), transparent 62%),
    radial-gradient(860px 520px at 86% 54%, rgba(82,87,93,.10), transparent 66%),
    radial-gradient(640px 420px at 38% 92%, rgba(253,219,58,.12), transparent 62%);
  opacity: 1;
}

.hero::after{
  background: linear-gradient(180deg, rgba(255,255,255,.72), transparent 62%);
  opacity: .9;
}

.hero .container{
  position: relative;
  z-index: 1;
}

/* ===========================
   HERO CARD (layout like screenshot)
=========================== */

.hero-card{
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  border-radius: 26px;
  overflow: hidden;

  background: #FFFFFF;
  border: 1px solid rgba(65,68,75,.16);
  box-shadow:
    0 34px 94px rgba(65,68,75,.18);
    height: 60vh;

  transition:
    transform .18s ease,
    box-shadow .18s ease,
    border-color .18s ease;
}

/* “VIP frame” — тонкая внутренняя линия */
.hero-card::before{
  content:"";
  position:absolute;
  inset: 10px;
  border-radius: 20px;
  pointer-events:none;
}


/* ===========================
   LEFT: MEDIA
=========================== */

.hero-media{
  position: relative;
  min-height: 420px;
  background: #F6F4E6;
}

.hero-media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display:block;
  transform: scale(1.02);
  transition: transform .25s ease, filter .25s ease;
}



/* поверх фото — лёгкая вуаль + желтоватый флер снизу */
.hero-media::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  /* background:
    linear-gradient(180deg, rgba(255,255,255,0) 55%, rgba(246,244,230,.92) 100%),
    radial-gradient(520px 240px at 20% 0%, rgba(253,219,58,.20), transparent 60%); */
  mix-blend-mode: normal;
}

/* ===========================
   MINI CARD (chips overlay)
=========================== */

.mini-card{
  position: absolute;
  left: 22px;
  bottom: 18px;
  z-index: 2;

  padding: 12px 12px;
  border-radius: 18px;

  background: rgba(255,255,255,.78);
  border: 1px solid rgba(65,68,75,.16);

  box-shadow:
    0 22px 60px rgba(65,68,75,.22),
    0 16px 40px rgba(253,219,58,.14);

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

/* chips row */
.chips{
  display:flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}

/* chip base */
.chip{
  display:inline-flex;
  align-items:center;
  padding: 7px 12px;
  border-radius: 999px;

  font-size: 11px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;

  color: rgba(65,68,75,.92);
  background: rgba(246,244,230,.95);
  border: 1px solid rgba(65,68,75,.14);

  box-shadow: 0 14px 28px rgba(65,68,75,.12);

  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}

.chip:hover{
  transform: translateY(-1px);
  border-color: rgba(65,68,75,.22);
  box-shadow: 0 18px 40px rgba(65,68,75,.16);
}

/* “highlight” chip (your chip--it) */
.chip--it{
  color: #2B2D31;
  border-color: rgba(253,219,58,.75);
  background: linear-gradient(180deg, rgba(255,231,131,.98), rgba(253,219,58,.98));
  box-shadow:
    0 18px 44px rgba(65,68,75,.16),
    0 18px 40px rgba(253,219,58,.20);
}

/* ===========================
   RIGHT: CONTENT
=========================== */

.hero-content{
  padding: 34px 28px 28px;
  display:flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}

/* заголовок как в референсе (bold + “gradient-ish” но в твоей гамме) */


.hero-content h1 strong{
  font-weight: 950;
  color: #41444B;
  position: relative;
  display: inline-block;
}

/* жёлтая подсветка под strong (контрастно, “интересно”) */
.hero-content h1 strong::after{
  content:"";
  position:absolute;
  left: -6px;
  right: -6px;
  bottom: -6px;
  height: 12px;
  border-radius: 999px;
  background: rgba(253,219,58,.75);
  z-index: -1;
  filter: blur(0.2px);
}



/* ===========================
   HERO ACTIONS + BUTTONS
=========================== */

.hero-actions{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* базовая кнопка */
.btn{
  position: relative;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height: 46px;
  padding: 0 22px;
  border-radius: 999px;

  font-size: 12px;
  font-weight: 950;
  letter-spacing: .16em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;

  color: rgba(65,68,75,.92);
  background: rgba(246,244,230,.92);
  border: 1px solid rgba(65,68,75,.18);

  box-shadow: 0 18px 44px rgba(65,68,75,.14);

  transition:
    transform .18s ease,
    box-shadow .18s ease,
    border-color .18s ease,
    filter .18s ease;
}

.btn:hover{
  transform: translateY(-2px);
  border-color: rgba(65,68,75,.26);
  box-shadow: 0 26px 70px rgba(65,68,75,.18);
  filter: contrast(1.02);
}

/* primary */
.btn--primary{
  color: #2B2D31;
  border: 1px solid rgba(253,219,58,.95);
  background: linear-gradient(90deg, #FFFFFF 0%, rgba(253,219,58,.98) 55%, rgba(253,219,58,.98) 100%);
  box-shadow:
    0 22px 58px rgba(65,68,75,.16),
    0 22px 54px rgba(253,219,58,.22);
}

.btn--primary:hover{
  box-shadow:
    0 30px 84px rgba(65,68,75,.20),
    0 28px 78px rgba(253,219,58,.28);
}

/* ===========================
   RESPONSIVE
=========================== */

@media (max-width: 1024px){
 
  .hero-media{
    min-height: 360px;
  }
  .hero-content{
    padding: 22px 18px 22px;
    text-align: center;
    height: 100%;
  }
  .hero-card{
  
    height: 65vh;

}
 
}

@media (max-width: 768px){
  .hero{
    padding: 44px 0 26px;
  }
  .hero-media{
    display:none; /* как у тебя было в неон-версии */
  }
  .hero-card{
    display:block;
  }
  .hero-content p{
    max-width: none;
  }
}

@media (max-width: 480px){
  .hero-actions{
    gap: 10px;
  }
  .btn{
    width: 100%;
  }
}

/* =========================================================
   08) CONCEPT / SPLIT SECTION — Clean Editorial
========================================================= */

.split{
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 22px;
  align-items: start;
}

.split-copy{
  padding: 22px 22px 20px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid rgba(65,68,75,.14);
  box-shadow: var(--shadow-1);
}

.split-copy h2{
  margin: 8px 0 10px;
  font-size: 22px;
}

.split-copy p{
  font-size: 14px;
  color: rgba(82,87,93,.88);
  max-width: 520px;
}

.split-copy p + p{
  margin-top: 8px;
}
/* =========================================================
   09) IMAGE CARDS — Gallery-like Cards
========================================================= */

.card-thumb{
  overflow: hidden;
  border-radius: calc(var(--radius-md) - 6px);
  margin: -10px -10px 12px;
  max-height: 190px;
  border: 1px solid rgba(65,68,75,.10);
  background: rgba(65,68,75,.04);
}

.card-thumb img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform var(--t-med), filter var(--t-med);
}

.img-card{
  padding: 16px 14px;
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1px solid rgba(65,68,75,.14);
  box-shadow: var(--shadow-1);
  transition: transform var(--t-fast), box-shadow var(--t-fast), border-color var(--t-fast);
}

.img-card:hover{
  transform: translateY(-3px);
  border-color: rgba(253,219,58,.55);
  box-shadow: var(--shadow-2);
}

.img-card:hover .card-thumb img{
  transform: scale(1.06);
  filter: contrast(1.03) brightness(1.03);
}

.img-card h3{
  font-size: 15px;
  margin-bottom: 6px;
}

.img-card p{
  font-size: 13px;
  color: rgba(82,87,93,.86);
}

.card-thumb-small{
  max-height: 130px;
}
/* =========================================================
   10) LINEUP / PERF CARDS — Bold Contrast Cards
========================================================= */

.card-row{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

.head-perf{
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}

/* perf card */
.perf-card{
  position: relative;
  padding: 18px 18px 16px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid rgba(65,68,75,.14);
  box-shadow: var(--shadow-2);
  overflow: hidden;
  transition: transform var(--t-fast), box-shadow var(--t-fast), border-color var(--t-fast);
}

.perf-card::before{
  content:"";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(900px 420px at 20% 0%, rgba(253,219,58,.22), transparent 55%);
  opacity: .9;
}

.perf-card:hover{
  transform: translateY(-4px);
  border-color: rgba(253,219,58,.60);
  box-shadow: var(--shadow-3);
}

/* big image */
.perf-card .card-thumb{
  margin: 0 0 14px;
  border-radius: 18px;
  height: 500px !important;
  max-height: none !important;
  border: 1px solid rgba(65,68,75,.12);
  background: rgba(65,68,75,.04);
}

.perf-card .card-thumb img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transform: scale(1.02);
  transition: transform var(--t-med), filter var(--t-med);
}

.perf-card:hover .card-thumb img{
  transform: scale(1.06);
  filter: contrast(1.05) brightness(1.03);
}

/* header row */
.perf-card header{
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 6px;
}

.perf-name{
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink);
}

.perf-tag{
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: var(--radius-pill);
  background: rgba(253,219,58,.18);
  border: 1px solid rgba(253,219,58,.55);
  color: var(--ink);
}


.perf-meta{
  margin-top: auto;
  list-style: none;
  padding: 0;
  font-size: 12px;
  color: rgba(82,87,93,.84);
}

.perf-meta strong{
  color: var(--ink);
  font-weight: 850;
}

/* responsive heights */
@media (max-width: 960px){
  .perf-card .card-thumb{ height: 360px !important; }
}
@media (max-width: 640px){
  .perf-card .card-thumb{ height: 240px !important; }
}
/* =========================================================
   11) BEFORE / AFTER SECTION — Switch Cards
========================================================= */

.switch-grid{
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.switch-pair{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.switch-card{
  padding: 18px 18px 16px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid rgba(65,68,75,.14);
  box-shadow: var(--shadow-2);
  transition: transform var(--t-fast), box-shadow var(--t-fast), border-color var(--t-fast);
}

.switch-card:hover{
  transform: translateY(-4px);
  border-color: rgba(253,219,58,.60);
  box-shadow: var(--shadow-3);
}

.switch-thumb{
  position: relative;
  margin-bottom: 14px;
}

.switch-card .card-thumb{
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  height: 500px;
  border: 1px solid rgba(65,68,75,.12);
  background: rgba(65,68,75,.04);
}

.switch-card .card-thumb img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform var(--t-med), filter var(--t-med);
}

.switch-card:hover .card-thumb img{
  transform: scale(1.06);
  filter: contrast(1.04) brightness(1.03);
}

/* tags */
.switch-tag{
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  padding: 7px 12px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent-ink);
  background: var(--accent);
  border: 1px solid rgba(253,219,58,.9);
  box-shadow: 0 18px 34px rgba(253,219,58,.20);
}

.switch-tag-before{
  background: linear-gradient(180deg, #FFE783, var(--accent));
}

.switch-tag-after{
  background: linear-gradient(180deg, var(--accent), #F7C900);
}

.switch-card h3{
  font-size: 16px;
  margin-bottom: 6px;
}

.switch-card p{
  font-size: 13px;
  color: rgba(82,87,93,.86);
}

@media (max-width: 960px){
  .switch-pair{ grid-template-columns: 1fr; }
  .switch-card .card-thumb{ height: 240px; }
}
/* =========================================================
   12) STATS / WHY US — High Contrast Tiles
========================================================= */

.stats-title{
  font-size: 26px;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.stats-title span{
  background: linear-gradient(90deg, var(--ink), var(--ink));
  color: var(--ink);
  padding-bottom: 2px;
  border-bottom: 6px solid rgba(253,219,58,.65);
}

.stats-grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.stat-card{
  border-radius: var(--radius-lg);
  padding: 22px 20px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;

  background:
    radial-gradient(900px 500px at 50% 0%, rgba(253,219,58,.18), transparent 55%),
    var(--surface);

  border: 1px solid rgba(65,68,75,.14);
  box-shadow: var(--shadow-2);
  transition: transform var(--t-fast), box-shadow var(--t-fast), border-color var(--t-fast);
}

.stat-card:hover{
  transform: translateY(-4px);
  border-color: rgba(253,219,58,.65);
  box-shadow: var(--shadow-3);
}

.stat-number{
  font-size: 30px;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: var(--ink);
}

.stat-text{
  font-size: 14px;
  line-height: 1.55;
  color: rgba(82,87,93,.86);
  margin-bottom: 14px;
}

.stat-icon{
  margin-top: 6px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  box-shadow: 0 18px 36px rgba(253,219,58,.22);
  border: 1px solid rgba(253,219,58,.9);
}

.stat-icon span{
  font-size: 18px;
  color: var(--accent-ink);
}

@media (max-width: 960px){
  .stats-grid{ grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 640px){
  .stats-grid{ grid-template-columns: 1fr; }
}
/* =========================================================
   13) TRANSFORMATIONS — Editorial Photo Cards
========================================================= */

.transform-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.transform-card{
  padding: 12px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid rgba(65,68,75,.14);
  box-shadow: var(--shadow-2);
  transition: transform var(--t-fast), box-shadow var(--t-fast), border-color var(--t-fast);
}

.transform-card:hover{
  transform: translateY(-4px);
  border-color: rgba(253,219,58,.60);
  box-shadow: var(--shadow-3);
}

.transform-thumb{
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  height: 500px;
  border: 1px solid rgba(65,68,75,.12);
  background: rgba(65,68,75,.04);
}

.transform-thumb img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transform: scale(1.02);
  transition: transform var(--t-med), filter var(--t-med);
}

.transform-card:hover .transform-thumb img{
  transform: scale(1.06);
  filter: contrast(1.05) brightness(1.03);
}

.transform-tag{
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  padding: 7px 12px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent-ink);
  background: var(--accent);
  border: 1px solid rgba(253,219,58,.9);
  box-shadow: 0 16px 30px rgba(253,219,58,.20);
}

.transform-tag--before{ background: linear-gradient(180deg, #FFE783, var(--accent)); }
.transform-tag--after { background: linear-gradient(180deg, var(--accent), #F7C900); }

.transform-censor{
  position: absolute;
  left: 50%;
  bottom: 18%;
  transform: translateX(-50%);
  padding: 8px 16px;
  border-radius: 10px;
  background: rgba(65,68,75,.92);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .20em;
  text-transform: uppercase;
}

@media (max-width: 960px){
  .transform-grid{ grid-template-columns: repeat(2, minmax(0,1fr)); }
  .transform-thumb{ height: 320px; }
}
@media (max-width: 640px){
  .transform-grid{ grid-template-columns: 1fr; }
  .transform-thumb{ height: 260px; }
}
/* =========================================================
   14) CTA SECTION — Big Yellow Accent Block
========================================================= */

#bezpecne-a-zdarma .cta-shell{
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  padding: 42px 40px;
  min-height: 260px;

  background:
    radial-gradient(1000px 420px at 18% 0%, rgba(253,219,58,.30), transparent 55%),
    linear-gradient(180deg, rgba(65,68,75,.04), rgba(65,68,75,.02)),
    var(--surface);

  border: 1px solid rgba(65,68,75,.14);
}

#bezpecne-a-zdarma .cta-copy{
  max-width: 560px;
  position: relative;
  z-index: 1;
}

#bezpecne-a-zdarma .cta-heading{
  margin: 10px 0 12px;
  font-size: 34px;
  line-height: 1.08;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--ink);
}



#bezpecne-a-zdarma .cta-btn{
  padding-inline: 28px;
}

#bezpecne-a-zdarma .cta-media{
  position: absolute;
  right: 0;
  bottom: 0;
  pointer-events: none;
  opacity: .95;
  filter: contrast(1.03);
}

#bezpecne-a-zdarma .cta-media img{
  width: min(440px, 44vw);
  max-height: 100%;
  object-fit: contain;
}

@media (max-width: 960px){
  .cta-media{ display: none; }
}
@media (max-width: 640px){
  #bezpecne-a-zdarma .cta-shell{ padding: 28px 18px; }
  #bezpecne-a-zdarma .cta-heading{ font-size: 26px; letter-spacing: .10em; }
  #bezpecne-a-zdarma .cta-text{ font-size: 15px; }
}
/* =========================================================
   15) ENERGY BOARD — YCColor BRIGHT (Light / Contrast)
   Цель: больше “вау”, ярче акцент, живые hover, аккуратные адаптивы
   Палитра: #41444B #52575D #FDDB3A #F6F4E6
========================================================= */

/* =========================
   GRID / WRAP
========================= */
.energy-grid{
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  gap: 22px;
}

/* общая “карточная” база этой секции */
.energy-left,
.energy-eq,
.energy-slots{
  border-radius: 22px;
  background: rgba(255,255,255,.70);
  border: 1px solid rgba(82,87,93,.16);
  box-shadow:
    0 18px 44px rgba(65,68,75,.12),
    0 1px 0 rgba(255,255,255,.95);
  backdrop-filter: blur(10px) saturate(140%);
  -webkit-backdrop-filter: blur(10px) saturate(140%);
  position: relative;
  overflow: hidden;
}

/* желтая “подсветка” внутри карточек */
.energy-left::before,
.energy-eq::before,
.energy-slots::before{
  content:"";
  position:absolute;
  inset:-30%;
  background:
    radial-gradient(40% 40% at 20% 10%, rgba(253,219,58,.42), transparent 60%),
    radial-gradient(35% 35% at 90% 85%, rgba(253,219,58,.18), transparent 62%);
  opacity: .9;
  pointer-events:none;
}

/* hover у больших карточек */
.energy-left:hover,
.energy-eq:hover,
.energy-slots:hover{
  border-color: rgba(253,219,58,.58);
  box-shadow:
    0 26px 60px rgba(65,68,75,.18),
    0 0 0 6px rgba(253,219,58,.10);
  transform: translateY(-2px);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

/* =========================
   LEFT PANEL
========================= */
.energy-left{
  padding: 22px 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* kicker + title */
.energy-kicker{
  font-size: 14px;              /* лейблы 14px */
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: .20em;
  text-transform: uppercase;
  color: rgba(82,87,93,.86);
}

.energy-title{
  font-size: 22px;
  line-height: 1.1;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #41444B;
}

/* tags */
.energy-tags{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.energy-pill{
  font-size: 14px;              /* лейблы 14px */
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;

  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(82,87,93,.18);

  color: rgba(65,68,75,.92);
  background:
    linear-gradient(180deg, rgba(255,255,255,.78), rgba(246,244,230,.78));
  box-shadow:
    0 12px 28px rgba(65,68,75,.10),
    0 1px 0 rgba(255,255,255,.95);

  position: relative;
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
}

/* лёгкий “маркер” */
.energy-pill::after{
  content:"";
  position:absolute;
  left:10px; right:10px;
  bottom:7px;
  height: 10px;
  border-radius: 999px;
  background: rgba(253,219,58,.45);
  opacity: 0;
  transform: translateY(5px);
  transition: opacity .18s ease, transform .18s ease;
}

.energy-pill:hover{
  transform: translateY(-2px);
  border-color: rgba(253,219,58,.60);
  box-shadow:
    0 18px 40px rgba(65,68,75,.16),
    0 0 0 6px rgba(253,219,58,.10);
}
.energy-pill:hover::after{
  opacity: 1;
  transform: translateY(0);
}

.energy-pill--hot{
  border-color: rgba(253,219,58,.78);
  background:
    linear-gradient(180deg, rgba(253,219,58,.40), rgba(253,219,58,.18));
}

/* badges */
.energy-badges{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.energy-badge{
  border-radius: 18px;
  padding: 12px 12px;

  background:
    linear-gradient(180deg, rgba(255,255,255,.68), rgba(246,244,230,.64));
  border: 1px solid rgba(82,87,93,.14);

  box-shadow:
    0 14px 30px rgba(65,68,75,.10),
    0 1px 0 rgba(255,255,255,.92);

  position: relative;
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.energy-badge::before{
  content:"";
  position:absolute;
  inset:-40%;
  background: radial-gradient(35% 35% at 15% 15%, rgba(253,219,58,.35), transparent 62%);
  opacity: .75;
  pointer-events:none;
}

.energy-badge:hover{
  transform: translateY(-2px);
  border-color: rgba(253,219,58,.60);
  box-shadow:
    0 20px 44px rgba(65,68,75,.16),
    0 0 0 6px rgba(253,219,58,.10);
}

.energy-badge-label{
  font-size: 14px;              /* лейблы 14px */
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(82,87,93,.78);
}

.energy-badge-value{
  margin-top: 4px;
  font-size: 18px;
  line-height: 1.1;
  font-weight: 950;
  letter-spacing: .04em;
  color: #41444B;
}

/* marquee */
.energy-strip{
  position: relative;
  overflow: hidden;
  border-radius: 999px;
  border: 1px solid rgba(82,87,93,.16);
  background:
    linear-gradient(90deg, rgba(253,219,58,.26), rgba(246,244,230,.90), rgba(253,219,58,.26));
  box-shadow:
    0 14px 32px rgba(65,68,75,.10),
    0 1px 0 rgba(255,255,255,.92);

  mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
}

.energy-marquee{
  display: flex;
  white-space: nowrap;
  animation: energy-marquee-loop 14s linear infinite; /* быстрее = энергичнее */
}

.energy-marquee span{
  display: inline-block;
  font-size: 14px;              /* лейблы 14px */
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: .22em;
  text-transform: uppercase;
  padding-inline: 28px;
  color: rgba(65,68,75,.92);
}

@keyframes energy-marquee-loop{
  0%{ transform: translateX(0); }
  100%{ transform: translateX(-33.33%); }
}

.energy-subline{
  margin-top: 10px;
  font-size: 16px;              /* min p = 16px */
  line-height: 1.35;
  font-weight: 700;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: rgba(82,87,93,.82);
}

/* =========================
   RIGHT COLUMN
========================= */
.energy-right{
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* EQ */
.energy-eq{
  padding: 18px 18px 16px;
}

.energy-eq-label-row{
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 12px;
}

.energy-eq-label{
  font-size: 14px;              /* лейблы 14px */
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(82,87,93,.82);
}

.energy-eq-status{
  font-size: 14px;              /* лейблы 14px */
  line-height: 1.1;
  font-weight: 950;
  letter-spacing: .16em;
  text-transform: uppercase;

  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid rgba(253,219,58,.80);

  color: #41444B;
  background: linear-gradient(180deg, rgba(253,219,58,.42), rgba(253,219,58,.18));
  box-shadow:
    0 14px 30px rgba(65,68,75,.12),
    0 0 0 6px rgba(253,219,58,.10);
}

/* eq bars */
.energy-eq-bars{
  display: flex;
  align-items: flex-end;
  gap: 10px;
  height: 96px;
  margin-bottom: 12px;
}

.energy-eq-bars .bar{
  flex: 1;
  border-radius: 999px;

  /* более яркая “жизнь”: серый + желтый отблеск */
  background:
    linear-gradient(180deg,
      rgba(82,87,93,.46),
      rgba(82,87,93,.14)
    );
  border: 1px solid rgba(82,87,93,.14);

  box-shadow:
    0 12px 22px rgba(65,68,75,.10),
    inset 0 -10px 18px rgba(253,219,58,.10);

  transform-origin: bottom center;
  animation: energy-bar 1.2s ease-in-out infinite;
}

/* чуть больше разброс */
.bar-1{ height: 38%; animation-delay: 0s; }
.bar-2{ height: 62%; animation-delay: .08s; }
.bar-3{ height: 88%; animation-delay: .16s; }
.bar-4{ height: 72%; animation-delay: .24s; }
.bar-5{ height: 52%; animation-delay: .32s; }
.bar-6{ height: 82%; animation-delay: .40s; }
.bar-7{ height: 60%; animation-delay: .48s; }

@keyframes energy-bar{
  0%,100%{ transform: scaleY(.90); filter: saturate(1); }
  50%{ transform: scaleY(1.10); filter: saturate(1.05); }
}

.energy-eq-legend{
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;              /* min p = 16px */
  line-height: 1.25;
  font-weight: 650;
  color: rgba(82,87,93,.84);
}

.energy-eq-legend .dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #FDDB3A;
  box-shadow: 0 8px 18px rgba(65,68,75,.16);
}

/* =========================
   SLOTS
========================= */
.energy-slots{
  padding: 18px 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.energy-slots-head{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.energy-slots-label{
  font-size: 14px;              /* лейблы 14px */
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(82,87,93,.82);
}

.energy-slot-row{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.energy-slot{
  border-radius: 18px;
  padding: 12px 12px;

  background:
    linear-gradient(180deg, rgba(255,255,255,.66), rgba(246,244,230,.66));
  border: 1px solid rgba(82,87,93,.14);
  box-shadow:
    0 12px 26px rgba(65,68,75,.10),
    0 1px 0 rgba(255,255,255,.92);

  position: relative;
  overflow: hidden;

  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
}

.energy-slot::before{
  content:"";
  position:absolute;
  inset:-40%;
  background: radial-gradient(38% 38% at 20% 10%, rgba(253,219,58,.34), transparent 60%);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .18s ease, transform .18s ease;
  pointer-events:none;
}

.energy-slot:hover{
  transform: translateY(-3px);
  border-color: rgba(253,219,58,.70);
  background: linear-gradient(180deg, rgba(253,219,58,.16), rgba(246,244,230,.70));
  box-shadow:
    0 22px 46px rgba(65,68,75,.16),
    0 0 0 6px rgba(253,219,58,.10);
}
.energy-slot:hover::before{
  opacity: 1;
  transform: translateY(0);
}

.energy-slot-time{
  font-size: 14px;              /* лейблы 14px */
  line-height: 1.1;
  font-weight: 950;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #41444B;
}

.energy-slot-tag{
  margin-top: 6px;
  font-size: 16px;              /* min p = 16px */
  line-height: 1.3;
  font-weight: 650;
  color: rgba(82,87,93,.86);
}

.energy-slot-tag--hot{
  color: rgba(65,68,75,.94);
  font-weight: 900;
}

.energy-note{
  font-size: 16px;              /* min p = 16px */
  line-height: 1.4;
  font-weight: 650;
  color: rgba(82,87,93,.86);
  margin: 0;
}

/* =========================================================
   RESPONSIVE — подробно
========================================================= */

/* ≤ 1200px: чуть плотнее */
@media (max-width: 1200px){
  .energy-grid{ gap: 18px; }
  .energy-title{ font-size: 20px; }
  .energy-badge-value{ font-size: 17px; }
}

/* ≤ 960px: 1 колонка, порядок — left сверху */
@media (max-width: 960px){
  .energy-grid{ grid-template-columns: 1fr; }
  .energy-left, .energy-eq, .energy-slots{ border-radius: 20px; }
  .energy-eq-bars{ height: 90px; }
}

/* ≤ 768px: сетки упрощаем, отступы меньше */
@media (max-width: 768px){
  .energy-left{ padding: 18px 16px 16px; }
  .energy-eq, .energy-slots{ padding: 16px 16px 14px; }

  .energy-badges{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .energy-slot-row{ grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .energy-title{ font-size: 19px; }
  .energy-eq-bars{ gap: 8px; height: 84px; }
}

/* ≤ 640px: все в 1 колонку, кликабельнее */
@media (max-width: 640px){
  .energy-badges{ grid-template-columns: 1fr; }
  .energy-slot-row{ grid-template-columns: 1fr; }

  .energy-pill{ padding: 10px 12px; }
  .energy-slot{ padding: 12px 12px; }

  .energy-marquee{ animation-duration: 16s; }
}

/* ≤ 420px: чуть компактнее */
@media (max-width: 420px){
  .energy-left{ padding: 16px 14px 14px; }
  .energy-eq, .energy-slots{ padding: 14px 14px 12px; }

  .energy-eq-bars{ height: 78px; gap: 7px; }
  .energy-title{ font-size: 18px; }
}

/* =========================================================
   16) EXPERT REVIEW — Clean Quote Cards
========================================================= */



.expertReview{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.review-card{
  background: var(--surface);
  border: 1px solid rgba(65,68,75,.14);
  border-radius: var(--radius-lg);
  padding: 22px 20px;
  box-shadow: var(--shadow-2);
  transition: transform var(--t-fast), box-shadow var(--t-fast), border-color var(--t-fast);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.review-card::before{
  content:"";
  position: absolute;
  inset: 0;
  background: radial-gradient(900px 420px at 15% 0%, rgba(253,219,58,.22), transparent 55%);
  opacity: .85;
  pointer-events: none;
}

.review-card:hover{
  transform: translateY(-3px);
  border-color: rgba(253,219,58,.60);
  box-shadow: var(--shadow-3);
}


.review-card span{
  color: rgba(82,87,93,.78);
  font-size: 12px;
  font-style: italic;
  margin-top: 6px;
}

/* links inside review */
.review-card p a{
  color: var(--ink);
  font-weight: 900;
  text-decoration: none;
  border-bottom: 2px solid rgba(253,219,58,.75);
  transition: background var(--t-fast), border-color var(--t-fast);
}

.review-card p a:hover{
  background: rgba(253,219,58,.18);
  border-color: rgba(253,219,58,.95);
}

@media (max-width: 1024px){
  .expertReview{ grid-template-columns: 1fr; }
}
/* =========================================================
   17) SCROLLBAR — Light Yellow Accent
========================================================= */

::-webkit-scrollbar{
  width: 10px;
}
::-webkit-scrollbar-track{
  background: rgba(65,68,75,.06);
  border-radius: 999px;
  margin: 10px 0;
}
::-webkit-scrollbar-thumb{
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(253,219,58,.95), rgba(253,219,58,.60));
  border: 2px solid rgba(246,244,230,1);
}
::-webkit-scrollbar-thumb:hover{
  background: linear-gradient(180deg, rgba(253,219,58,1), rgba(253,219,58,.70));
}
::-webkit-scrollbar-thumb:active{
  background: linear-gradient(180deg, rgba(253,219,58,.95), rgba(65,68,75,.25));
}
/* =========================================================
   18) RESPONSIVE — Global breakpoints for your layouts
========================================================= */

@media (max-width: 960px){
  .hero-grid,
  .split,
  .card-row,
  .tier-grid,
  .schedule-grid,
  .contact-grid,
  .contact-cols,
  .gallery-grid,
  .bar-grid,
  .member-grid,
  .events-grid,
  .safety-grid{
    grid-template-columns: 1fr;
  }

  .hero-meta{
    grid-template-columns: 1fr;
  }

  .section-head{
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px){
 

  .hero-copy{
    padding: 20px 18px;
  }

  .glass-panel{
    border-radius: 18px;
  }
}



/* ===========================
   SECTION: #varianty (VÝBĚR VARIANT) — “Pick your night” style
   Light base + Yellow/Grey contrast (palette from image)
   Bg: #F6F4E6 | Ink: #41444B | Muted: #52575D | Accent: #FDDB3A
=========================== */

#varianty.section {
  position: relative;
  background: #F6F4E6;          /* единый светлый фон */
  color: #41444B;
}

/* мягкие “пятна” как подложка (без темного неона) */
#varianty.section::before,
#varianty.section::after{
  content:"";
  position:absolute;
  inset:-10%;
  pointer-events:none;
  z-index:0;
}

#varianty.section::before{
  background:
    radial-gradient(700px 320px at 18% 18%, rgba(253,219,58,.22), transparent 60%),
    radial-gradient(780px 360px at 85% 35%, rgba(65,68,75,.10), transparent 62%),
    radial-gradient(620px 320px at 35% 85%, rgba(253,219,58,.12), transparent 60%);
  opacity: 1;
}

#varianty.section::after{
  background: linear-gradient(180deg, rgba(255,255,255,.55), transparent 55%);
  opacity: .9;
}

/* контент поверх подложки */
#varianty .container{
  position: relative;
  z-index: 1;
}

/* -------- SECTION HEAD (только внутри #varianty) -------- */



/* label в стиле “pill”, но под твою гамму */
#varianty .label{
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(65,68,75,.88);
  background: rgba(255,255,255,.75);
  border: 1px solid rgba(65,68,75,.16);
  box-shadow: 0 10px 22px rgba(65,68,75,.10);
}

#varianty .label-hot{
  color: #2B2D31;
  background: linear-gradient(180deg, rgba(255,231,131,.96), rgba(253,219,58,.96));
  border: 1px solid rgba(253,219,58,.95);
  box-shadow: 0 18px 34px rgba(253,219,58,.22);
}

/* -------- GRID -------- */
#varianty .schedule-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

/* -------- CARD BASE -------- */
/* ВАЖНО: .glass-panel у тебя уже есть — ниже мы “перекрываем” его только внутри #varianty */
#varianty .schedule-card.glass-panel{
  position: relative;
  padding: 20px 18px 18px;
  border-radius: 22px;

  /* белая карточка + легкая “тень плаката” */
  background: #FFFFFF;
  border: 1px solid rgba(65,68,75,.14);

  box-shadow:
    0 18px 44px rgba(65,68,75,.14);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;

  transition:
    transform .18s ease,
    box-shadow .18s ease,
    border-color .18s ease,
    background .18s ease;
  overflow: hidden;
}

/* subtle top accent line */
#varianty .schedule-card.glass-panel::before{
  content:"";
  position:absolute;
  left: 16px;
  right: 16px;
  top: 14px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(65,68,75,.22), rgba(253,219,58,.85), rgba(65,68,75,.22));
  opacity: .55;
}

/* hover: приподнимаем */
#varianty .schedule-card.glass-panel:hover{
  transform: translateY(-3px);
  border-color: rgba(65,68,75,.22);
  box-shadow:
    0 26px 64px rgba(65,68,75,.18);
}

/* -------- TYPO -------- */



/* list */
#varianty .schedule-list{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
  color: rgba(82,87,93,.90);
  font-size: 13px;
}

#varianty .schedule-list li{
  position: relative;
  padding-left: 18px;
}

#varianty .schedule-list li::before{
  content:"";
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(253,219,58,.95);
  box-shadow: 0 10px 20px rgba(253,219,58,.22);
}

/* -------- FEATURED (как центральная карточка на скрине) -------- */
/* если хочешь управлять вручную — добавь class="is-featured" на нужную карточку.
   по умолчанию — подсветим 2-ю, как у тебя в макете */
#varianty .schedule-card.is-featured,
#varianty .schedule-grid .schedule-card:nth-child(2){
  background:
    radial-gradient(900px 420px at 10% 0%, rgba(253,219,58,.18), transparent 60%),
    #FFFFFF;
  border-color: rgba(253,219,58,.70);
  box-shadow:
    0 30px 80px rgba(65,68,75,.20),
    0 22px 60px rgba(253,219,58,.22);
}

/* “свечение” по краю для featured */
#varianty .schedule-card.is-featured::after,
#varianty .schedule-grid .schedule-card:nth-child(2)::after{
  content:"";
  position:absolute;
  inset:-2px;
  border-radius: 24px;
  pointer-events:none;
  background:
    radial-gradient(600px 260px at 50% 0%, rgba(253,219,58,.35), transparent 60%),
    linear-gradient(180deg, rgba(253,219,58,.24), transparent 55%);
  opacity: .9;
  filter: blur(10px);
  z-index: -1;
}

/* чуть “жирнее” заголовок внутри featured */
#varianty .schedule-card.is-featured h3,
#varianty .schedule-grid .schedule-card:nth-child(2) h3{
  font-weight: 900;
}

/* hover на featured — ещё более контрастно */
#varianty .schedule-card.is-featured:hover,
#varianty .schedule-grid .schedule-card:nth-child(2):hover{
  transform: translateY(-4px);
  border-color: rgba(253,219,58,.95);
  box-shadow:
    0 36px 96px rgba(65,68,75,.22),
    0 26px 78px rgba(253,219,58,.28);
}

/* -------- RESPONSIVE -------- */
@media (max-width: 960px){
  #varianty .schedule-grid{
    grid-template-columns: minmax(0, 1fr);
  }
  #varianty .schedule-card.glass-panel{
    border-radius: 20px;
  }
}
/* ===========================
   SECTION: #moznosti (MOŽNOSTI FINANCOVÁNÍ) — VIP/TIER CARDS STYLE
   Light base + Yellow/Grey (palette)
   Colors:
   - Ink: #41444B
   - Muted: #52575D
   - Accent: #FDDB3A
   - Base: #F6F4E6
=========================== */

#moznosti.section{
  position: relative;
  background: #F6F4E6;
  color: #41444B;
}

/* мягкая “аура” секции */
#moznosti.section::before,
#moznosti.section::after{
  content:"";
  position:absolute;
  inset:-12%;
  pointer-events:none;
  z-index:0;
}

#moznosti.section::before{
  background:
    radial-gradient(760px 320px at 12% 12%, rgba(253,219,58,.22), transparent 62%),
    radial-gradient(820px 380px at 88% 40%, rgba(82,87,93,.10), transparent 64%),
    radial-gradient(700px 360px at 30% 92%, rgba(253,219,58,.12), transparent 62%);
  opacity: 1;
}

#moznosti.section::after{
  background: linear-gradient(180deg, rgba(255,255,255,.65), transparent 55%);
  opacity: .9;
}

#moznosti .container{
  position: relative;
  z-index: 1;
}

/* ===========================
   SECTION HEAD (inside #moznosti)
=========================== */



#moznosti .section-head h2{
  margin-top: 10px;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: #41444B;
}

/* label-outline в твоей гамме */
#moznosti .label{
  display:inline-flex;
  align-items:center;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
  background: rgba(255,255,255,.75);
  border: 1px solid rgba(65,68,75,.16);
  color: rgba(65,68,75,.88);
  box-shadow: 0 10px 22px rgba(65,68,75,.10);
}

#moznosti .label-outline{
  background: linear-gradient(180deg, rgba(255,255,255,.85), rgba(246,244,230,.85));
  border-color: rgba(65,68,75,.22);
  color: rgba(65,68,75,.90);
}

/* ===========================
   GRID
=========================== */

#moznosti .tier-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

/* ===========================
   TIER CARD — base
=========================== */
/* Перекрываем твой .glass-panel только внутри #moznosti */
#moznosti .tier-card.glass-panel{
  position: relative;
  padding: 22px 18px 18px;
  border-radius: 24px;
  background: #FFFFFF;
  border: 1px solid rgba(65,68,75,.14);
  box-shadow:
    0 20px 54px rgba(65,68,75,.14);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  overflow: hidden;

  transition:
    transform .18s ease,
    box-shadow .18s ease,
    border-color .18s ease;
}

/* верхняя тонкая линия как “VIP frame” */
#moznosti .tier-card.glass-panel::before{
  content:"";
  position:absolute;
  left: 16px;
  right: 16px;
  top: 14px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(65,68,75,.18), rgba(253,219,58,.85), rgba(65,68,75,.18));
  opacity: .55;
}

/* hover — подъём + чуть плотнее тень */
#moznosti .tier-card.glass-panel:hover{
  transform: translateY(-4px);
  border-color: rgba(65,68,75,.22);
  box-shadow:
    0 30px 80px rgba(65,68,75,.18);
}

/* ===========================
   CARD TYPO
=========================== */

#moznosti .tier-label{
  display:inline-flex;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(82,87,93,.82);
  margin-bottom: 10px;
}

/* заголовок */




/* список */
#moznosti .tier-list{
  list-style:none;
  margin: 0 0 16px;
  padding: 0;
  display:grid;
  gap: 8px;
  font-size: 13px;
  color: rgba(82,87,93,.92);
}

#moznosti .tier-list li{
  position: relative;
  padding-left: 18px;
}

#moznosti .tier-list li::before{
  content:"";
  position:absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(253,219,58,.95);
  box-shadow: 0 10px 20px rgba(253,219,58,.22);
}

/* ===========================
   BUTTONS (inside #moznosti)
   Pill button like on screenshot, but yellow/grey
=========================== */

#moznosti .btn.btn-primary.btn-block{
  width: 100%;
  height: 46px;
  border-radius: 999px;
  display: inline-flex;
  align-items:center;
  justify-content:center;

  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
  text-decoration: none;

  color: #2B2D31;
  background: linear-gradient(180deg, rgba(255,231,131,.98), rgba(253,219,58,.98));
  border: 1px solid rgba(253,219,58,.95);

  box-shadow:
    0 18px 46px rgba(65,68,75,.18),
    0 18px 40px rgba(253,219,58,.20);

  transition:
    transform .18s ease,
    box-shadow .18s ease,
    filter .18s ease;
}

#moznosti .btn.btn-primary.btn-block:hover{
  transform: translateY(-2px);
  filter: brightness(1.03) contrast(1.02);
  box-shadow:
    0 26px 70px rgba(65,68,75,.22),
    0 22px 58px rgba(253,219,58,.26);
}

/* ===========================
   ACCENT CARD (middle) — like neon highlighted
=========================== */

#moznosti .tier-card--accent{
  background:
    radial-gradient(900px 420px at 12% 0%, rgba(253,219,58,.18), transparent 62%),
    #FFFFFF !important;

  border-color: rgba(253,219,58,.75) !important;

  box-shadow:
    0 34px 96px rgba(65,68,75,.20),
    0 26px 78px rgba(253,219,58,.26) !important;
}

/* “glow” вокруг accent card */
#moznosti .tier-card--accent::after{
  content:"";
  position:absolute;
  inset:-2px;
  border-radius: 26px;
  pointer-events:none;
  background:
    radial-gradient(560px 220px at 50% 0%, rgba(253,219,58,.38), transparent 62%),
    linear-gradient(180deg, rgba(253,219,58,.26), transparent 60%);
  opacity: .9;
  filter: blur(12px);
  z-index: -1;
}

/* accent card: label чуть более контрастный */
#moznosti .tier-card--accent .tier-label{
  color: rgba(65,68,75,.90);
}

/* accent card: кнопка “VIP” — чуть более “премиум” */
#moznosti .tier-card--accent .btn.btn-primary.btn-block{
  background: linear-gradient(90deg, #FFFFFF 0%, rgba(253,219,58,.98) 55%, rgba(253,219,58,.98) 100%);
  border-color: rgba(253,219,58,.95);
}

/* ===========================
   RESPONSIVE
=========================== */

@media (max-width: 960px){
  #moznosti .tier-grid{
    grid-template-columns: minmax(0, 1fr);
  }
  #moznosti .tier-card.glass-panel{
    border-radius: 20px;
  }
  
}



/* ===========================
   CTA — FULL WIDTH BG IMAGE
   (yellow/grey palette, juicy contrast)
=========================== */

:root{
  /* palette from image */
  --g-900:#41444B;
  --g-800:#52575D;
  --y-500:#FDDB3A;
  --paper:#F6F4E6;

  /* helpers */
  --cta-radius: 26px;
  --cta-radius-sm: 18px;
  --cta-border: rgba(65,68,75,.18);
  --cta-shadow: 0 22px 60px rgba(65,68,75,.14);
  --cta-shadow-2: 0 14px 30px rgba(65,68,75,.10);
  --cta-ease: cubic-bezier(.2,.75,.2,1);

  --cta-title: #2B2E34;
  --cta-text: rgba(82,87,93,.92);
}

.cta-card{
  position: relative;
  border-radius: var(--cta-radius);
  overflow: hidden;
  border: 1px solid var(--cta-border);
  background: var(--paper);
  box-shadow: var(--cta-shadow);
  min-height: 320px;
  isolation: isolate;
      justify-content: center;
    align-items: center;
    display: flex;
}

/* IMG background (in HTML) */
.cta-bg{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  filter: saturate(1.05) contrast(1.05);
  z-index: 0;
}

/* overlay to keep text readable + yellow “energy” */
.cta-overlay{
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(900px 420px at 12% 30%, rgba(253,219,58,.40), transparent 60%),
    radial-gradient(760px 520px at 85% 30%, rgba(65,68,75,.25), transparent 62%),
    linear-gradient(90deg, rgba(246,244,230,.92) 0%, rgba(246,244,230,.80) 42%, rgba(246,244,230,.40) 100%);
    justify-content: center;
    align-items: center;
}

/* content layout */
.cta-content{
position: relative;
    z-index: 2;
    padding: 28px 28px 26px;
    /* max-width: 820px; */
    justify-content: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.cta-label{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 32px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 14px;               /* как просили для лейблов */
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(65,68,75,.92);
  background: rgba(246,244,230,.78);
  border: 1px solid rgba(65,68,75,.16);
  box-shadow: 0 10px 22px rgba(65,68,75,.10);
}

.cta-title{
  margin: 14px 0 10px;
  font-weight: 950;
  letter-spacing: .02em;
  color: var(--cta-title);
  font-size: 38px;
  line-height: 1.08;
}

.cta-title-accent{
  display: inline-block;
  margin-left: 8px;
  color: var(--g-800);
  position: relative;
}


.cta-text{
  margin: 0;
  color: var(--cta-text);
  font-size: 18px;
  line-height: 1.55;
  font-weight: 500;
}

.cta-actions{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* buttons */
.cta-btn{
  height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
  transition: transform .18s var(--cta-ease), box-shadow .18s var(--cta-ease), background .18s var(--cta-ease), border-color .18s var(--cta-ease);
  will-change: transform;
}

.cta-btn--primary{
  color: #1E2126;
  background: linear-gradient(135deg, #FFE784 0%, var(--y-500) 55%, #F3C400 100%);
  border: 1px solid rgba(65,68,75,.18);
  box-shadow:
    0 16px 34px rgba(65,68,75,.16),
    0 10px 0 rgba(253,219,58,.25) inset;
}
.cta-btn--primary:hover{
  transform: translateY(-2px);
  box-shadow:
    0 22px 50px rgba(65,68,75,.18),
    0 12px 0 rgba(253,219,58,.30) inset;
}

.cta-btn--ghost{
  color: rgba(65,68,75,.92);
  background: rgba(246,244,230,.72);
  border: 1px solid rgba(65,68,75,.22);
  box-shadow: var(--cta-shadow-2);
}
.cta-btn--ghost:hover{
  transform: translateY(-2px);
  border-color: rgba(253,219,58,.65);
  box-shadow:
    0 18px 40px rgba(65,68,75,.14),
    0 0 0 4px rgba(253,219,58,.16);
}

/* meta chips */
.cta-meta{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.cta-chip{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  color: rgba(65,68,75,.86);
  background: rgba(246,244,230,.78);
  border: 1px solid rgba(65,68,75,.14);
}

/* subtle “gloss” line */
.cta-card::after{
  content:"";
  position:absolute;
  inset: -40% -30%;
  background: linear-gradient(120deg, transparent 38%, rgba(255,255,255,.55) 48%, transparent 58%);
  transform: translateX(-35%) rotate(8deg);
  opacity: .35;
  z-index: 2;
  pointer-events: none;
}

/* ===========================
   Responsive
=========================== */

@media (max-width: 1100px){
  .cta-title{ font-size: 34px; }
  .cta-text{ font-size: 17px; }
}

@media (max-width: 820px){
  .cta-content{ padding: 22px 18px 18px; }
  .cta-title{ font-size: 30px; line-height: 1.10; }
  .cta-text{ font-size: 16px; }
  .cta-overlay{
    background:
      radial-gradient(720px 420px at 12% 20%, rgba(253,219,58,.38), transparent 62%),
      linear-gradient(180deg, rgba(246,244,230,.92) 0%, rgba(246,244,230,.78) 70%, rgba(246,244,230,.62) 100%);
  }
   .cta-meta {display: none;}
}

@media (max-width: 520px){
  .cta-card{ border-radius: 22px; }
  .cta-label{ font-size: 14px; letter-spacing: .12em; }
  .cta-title{ font-size: 26px; }
  .cta-actions{ gap: 10px; }
  .cta-btn{ width: 100%; height: 48px; }
  .cta-chip{ width: 100%; justify-content: center; }
}

