

/* Start:/local/templates/r_conf_unit/assets/css/style.css?177939322842185*/
/* ============================================================
   Р-Конф — Layout CSS
   Базовые стили для интеграции в 1С-Битрикс
   ============================================================ */

/* ── Google Fonts ── */
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;600&display=swap");

/* ── CSS Variables / Brand Colors ── */
:root {
  --brand-red: #c9494b;
  --brand-red-deep: #6f201c;
  --brand-red-dark: #af3d40;
  --brand-blue: #356cac;
  --brand-gray: #ababab;
  --brand-dark: #0d1b2a;
  --brand-darker: #081220;
  --brand-mid: #0a1523;
  --brand-card: #091423;
}

/* ── Reset & Base ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family:
    "Roboto",
    system-ui,
    -apple-system,
    sans-serif;
  font-weight: 300;
  background-color: var(--brand-dark);
  color: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family:
    "Roboto",
    system-ui,
    -apple-system,
    sans-serif;
  font-weight: 400;
  letter-spacing: -0.03em;
}

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

a {
  text-decoration: none;
  color: inherit;
}

::selection {
  background-color: rgba(201, 73, 75, 0.35);
  color: #fff;
}

*:focus-visible {
  outline: 2px solid var(--brand-red);
  outline-offset: 2px;
}

/* ── Scrollbar ── */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--brand-dark);
}
::-webkit-scrollbar-thumb {
  background: #1e3347;
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: #2a4560;
}

/* ── Utility: hide scrollbar ── */
.hide-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.hide-scrollbar::-webkit-scrollbar {
  display: none;
}

/* Utility classes used in r_conf_unit header */
@media (min-width: 1024px) {
  .lg-flex {
    display: inline-flex !important;
  }

  .lg-hidden {
    display: none !important;
  }
}

/* ============================================================
   LAYOUT STRUCTURE
   ============================================================ */

.site-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: var(--brand-dark);
}

main {
  flex: 1;
}

.container {
  max-width: 1400px;
  margin-inline: auto;
  padding-inline: 1.25rem; /* 20px */
}

@media (min-width: 768px) {
  .container {
    padding-inline: 2rem;
  }
}

/* ============================================================
   HEADER
   ============================================================ */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition:
    background 0.5s,
    border-color 0.5s;
}

.site-header.scrolled {
  background: rgba(13, 27, 42, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.site-header.transparent {
  background: transparent;
}

.site-header.solid {
  background: var(--brand-dark);
}

/* Top bar (desktop) */
.header-topbar {
  display: none;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 1rem 3rem 0.5rem;
  transition:
    max-height 0.5s,
    opacity 0.5s;
  max-height: 88px;
  overflow: hidden;
}

.site-header.scrolled .header-topbar {
  max-height: 0;
  opacity: 0;
  pointer-events: none;
  padding: 0;
}

@media (min-width: 1024px) {
  .header-topbar {
    display: grid;
  }
}

.header-topbar__since {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

.header-topbar__logo img {
  height: 52px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: transform 0.25s;
}

.header-topbar__logo img:hover {
  transform: scale(1.05);
}

.header-topbar__cta {
  display: flex;
  justify-content: flex-end;
}

/* Nav bar (desktop) */
.header-nav {
  display: none;
  position: relative;
}

@media (min-width: 1024px) {
  .header-nav {
    display: block;
  }
}

.header-nav__inner {
  max-width: 1400px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-inline: 0;
  transition:
    padding 0.5s,
    justify-content 0.5s,
    height 0.5s;
}

.site-header.scrolled .header-nav__inner {
  justify-content: space-between;
  padding-inline: 2.5rem;
  height: 56px;
  border-top: none;
}

.header-nav__logo-scrolled {
  display: none;
  align-items: center;
  height: 100%;
}

.site-header.scrolled .header-nav__logo-scrolled {
  display: flex;
}

.header-nav__logo-scrolled img {
  height: 52px;
  width: auto;
  filter: brightness(0) invert(1);
  object-fit: contain;
  object-position: left;
}

.header-nav__links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.header-nav__links a {
  font-size: 11px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s;
  position: relative;
  padding-block: 0.75rem;
}

.header-nav__links a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--brand-red);
  transition: width 0.3s ease;
}

.header-nav__links a:hover,
.header-nav__links a.active {
  color: #fff;
}

.header-nav__links a:hover::after,
.header-nav__links a.active::after {
  width: 100%;
}

.header-nav__cta-scrolled {
  display: none;
}

.site-header.scrolled .header-nav__cta-scrolled {
  display: flex;
}

/* Mobile header */
.header-mobile {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: 1.25rem;
  height: 64px;
}

@media (min-width: 1024px) {
  .header-mobile {
    display: none;
  }
}

.header-mobile__logo img {
  height: 52px;
  width: auto;
  filter: brightness(0) invert(1);
}

.header-mobile__burger {
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.8);
  padding: 0.5rem;
  transition: color 0.2s;
}

.header-mobile__burger:hover {
  color: #fff;
}

/* Mobile menu */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 60;
  background: rgba(8, 18, 32, 0.85);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  animation: fadeIn 0.2s ease;
}

.mobile-menu-overlay.open {
  display: block;
}

.mobile-menu-panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 70;
  width: 100%;
  max-width: 340px;
  background: var(--brand-dark);
  border-left: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(0.25, 0.1, 0, 1);
}

.mobile-menu-panel.open {
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.mobile-menu-header img {
  height: 52px;
  width: auto;
  filter: brightness(0) invert(1);
}

.mobile-menu-close {
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.5);
  padding: 0.5rem;
  border-radius: 50%;
  transition:
    color 0.2s,
    background 0.2s;
}

.mobile-menu-close:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}

.mobile-menu-nav {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.5rem;
  overflow-y: auto;
}

.mobile-menu-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 16px;
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.2s;
}

.mobile-menu-nav a:hover,
.mobile-menu-nav a.active {
  color: #fff;
}

.mobile-menu-cta {
  margin-top: auto;
  padding-top: 2rem;
}

.mobile-menu-footer {
  padding: 1rem 1.5rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 10px;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
  background: var(--brand-darker);
  color: #fff;
}

.footer-cta {
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-cta__inner {
  max-width: 1400px;
  margin-inline: auto;
  padding: 5rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .footer-cta__inner {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    padding: 7rem 2.5rem;
  }
}

.footer-cta__badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.footer-cta__badge-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(201, 73, 75, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-cta__badge-circle-inner {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid rgba(201, 73, 75, 0.6);
}

.footer-cta__badge-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
}

.footer-cta__title {
  font-size: clamp(1.875rem, 4vw, 3rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 0.75rem;
}

.footer-cta__sub {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

.footer-grid {
  max-width: 1400px;
  margin-inline: auto;
  padding: 3.5rem 1.25rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem 2rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    padding: 4.5rem 2.5rem;
  }
}

.footer-logo {
  display: inline-block;
  margin-bottom: 1.25rem;
}

.footer-logo img {
  height: 32px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer-about {
  grid-column: span 2;
}

@media (min-width: 768px) {
  .footer-about {
    grid-column: span 1;
  }
}

.footer-desc {
  font-size: 12px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.55);
  max-width: 200px;
}

.footer-col-title {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.25);
  margin-bottom: 1.25rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  list-style: none;
}

.footer-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #fff;
}

.footer-contact-item {
  display: block;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.75rem;
  transition: color 0.2s;
}

a.footer-contact-item:hover {
  color: #fff;
}

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

.footer-bottom__inner {
  max-width: 1400px;
  margin-inline: auto;
  padding: 1.25rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.2);
}

@media (min-width: 768px) {
  .footer-bottom__inner {
    flex-direction: row;
    justify-content: space-between;
    padding-inline: 2.5rem;
  }
}

/* ============================================================
   BUTTONS & LINKS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: none;
  cursor: pointer;
  font-family: inherit;
  text-decoration: none;
  transition:
    background 0.2s,
    border-color 0.2s,
    color 0.2s;
  white-space: nowrap;
}

.btn-primary {
  background: var(--brand-red);
  color: #fff;
  border-radius: 9999px;
  padding-inline: 2rem;
  height: 3.5rem;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.btn-primary:hover {
  background: var(--brand-red-dark);
}

.btn-primary--sm {
  height: 2rem;
  padding-inline: 1rem;
  font-size: 10px;
  letter-spacing: 0.1em;
}

.btn-outline {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 9999px;
  padding-inline: 2rem;
  height: 3.5rem;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
}

.btn-ghost {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.75);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
}

.btn-ghost:hover {
  color: #fff;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.58);
  transition: color 0.2s;
}

.link-arrow:hover {
  color: #fff;
}

.link-arrow svg {
  transition: transform 0.2s;
}

.link-arrow:hover svg {
  transform: translate(2px, -2px);
}

/* ============================================================
   ACCENT ELEMENTS
   ============================================================ */

.accent-line {
  width: 36px;
  height: 2px;
  background: var(--brand-red);
  display: block;
}

.accent-line--center {
  margin-inline: auto;
}

.gradient-text {
  background: linear-gradient(135deg, #c9494b 0%, #356cac 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.tag--outline {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.72);
}

.tag--red {
  border: 1px solid rgba(201, 73, 75, 0.25);
  background: rgba(201, 73, 75, 0.12);
  color: #f3cbc8;
}

.tag--solid-red {
  background: var(--brand-red);
  color: #fff;
}

.tag--solid-blue {
  background: var(--brand-blue);
  color: #fff;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background: var(--brand-red);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  font-weight: 500;
}

.status-badge__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}

/* ============================================================
   HERO SECTIONS
   ============================================================ */

.hero-overlay {
  background: linear-gradient(
    180deg,
    rgba(13, 27, 42, 0.45) 0%,
    rgba(13, 27, 42, 0.25) 35%,
    rgba(13, 27, 42, 0.8) 100%
  );
}

.page-hero {
  padding-top: 8rem;
  padding-bottom: 5rem;
}

@media (min-width: 768px) {
  .page-hero {
    padding-top: 10rem;
    padding-bottom: 8rem;
  }
}

.page-hero__title {
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 600;
  margin-bottom: 1rem;
}

.page-hero__sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.65);
  max-width: 500px;
}

/* ============================================================
   CARDS
   ============================================================ */

.event-card {
  display: flex;
  flex-direction: column;
  background: #0d1a2a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  overflow: hidden;
  transition: border-color 0.2s;
}

.event-card:hover {
  border-color: rgba(255, 255, 255, 0.2);
}

.event-card__img {
  position: relative;
  height: 220px;
  overflow: hidden;
}

@media (min-width: 768px) {
  .event-card__img {
    height: 250px;
  }
}

.event-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.event-card:hover .event-card__img img {
  transform: scale(1.03);
}

.event-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
}

.event-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  min-height: 48px;
  align-items: center;
}

.event-card__title {
  font-size: 24px;
  line-height: 1.3;
  letter-spacing: -0.03em;
  font-weight: 400;
  color: #fff;
  min-height: 64px;
}

.event-card__desc {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
  min-height: 84px;
}

.event-card__location {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.52);
  margin-top: 1.5rem;
}

.event-card__more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: auto;
  padding-top: 1.5rem;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.74);
}

.event-card__more svg {
  transition: transform 0.3s;
}
.event-card:hover .event-card__more svg {
  transform: translate(2px, -2px);
}

/* News card */
.news-card {
  display: block;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 1rem;
  overflow: hidden;
  transition: background 0.3s;
  height: 100%;
}

.news-card:hover {
  background: rgba(255, 255, 255, 0.09);
}

.news-card__img {
  aspect-ratio: 16/10;
  overflow: hidden;
}

.news-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}

.news-card:hover .news-card__img img {
  transform: scale(1.05);
}

.news-card__body {
  padding: 1.5rem;
}

.news-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.news-card__cat {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-blue);
}

.news-card__date {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
}

.news-card__title {
  font-size: 17px;
  font-weight: 500;
  line-height: 1.3;
  color: #fff;
  margin-bottom: 0.75rem;
  transition: color 0.2s;
}

.news-card:hover .news-card__title {
  color: var(--brand-red);
}

.news-card__excerpt {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

/* Team card */
.team-card {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1rem;
  overflow: hidden;
  transition: border-color 0.3s;
}

.team-card:hover {
  border-color: rgba(255, 255, 255, 0.15);
}

.team-card__img {
  aspect-ratio: 1/1;
  overflow: hidden;
  background: #132134;
}

.team-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  opacity: 0.88;
  transition:
    filter 0.7s,
    opacity 0.7s,
    transform 0.7s;
}

.team-card:hover .team-card__img img {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.05);
}

.team-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
}

.team-card__name {
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 0.25rem;
  min-height: 56px;
}

.team-card__pos {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 1rem;
  min-height: 44px;
}

.team-card__email {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  margin-top: auto;
  transition: color 0.2s;
}

.team-card__email:hover {
  color: var(--brand-red);
}

/* Contact card */
.contact-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1rem;
  padding: 1.75rem;
  transition: border-color 0.3s;
}

.contact-card:hover {
  border-color: rgba(255, 255, 255, 0.15);
}

.contact-card__icon {
  color: var(--brand-red);
  margin-bottom: 1.25rem;
}

.contact-card__title {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 0.5rem;
}

.contact-card__content {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.2s;
}

a.contact-card__content:hover {
  color: #fff;
}

/* Benefit card */
.benefit-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 2rem;
  transition: border-color 0.3s;
}

.benefit-card:hover {
  border-color: rgba(201, 73, 75, 0.3);
}

.benefit-card__icon {
  width: 48px;
  height: 48px;
  background: rgba(201, 73, 75, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-red);
  margin-bottom: 1.5rem;
  transition: transform 0.2s;
}

.benefit-card:hover .benefit-card__icon {
  transform: scale(1.1);
}

.benefit-card__title {
  font-size: 24px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.benefit-card__desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

/* Ticket card */
.ticket-card {
  position: relative;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 2rem;
  transition: border-color 0.3s;
}

.ticket-card:hover {
  border-color: rgba(201, 73, 75, 0.5);
}

.ticket-card--featured {
  background: linear-gradient(135deg, rgba(201, 73, 75, 0.1), rgba(201, 73, 75, 0.05));
  border-color: rgba(201, 73, 75, 0.3);
}

.ticket-card__popular {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brand-red);
  color: #fff;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 1rem;
  border-radius: 9999px;
}

.ticket-card__type {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.5rem;
}

.ticket-card__price {
  font-size: 2.5rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 0.25rem;
}

.ticket-card__deadline {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1.5rem;
}

.ticket-card__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.ticket-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

.ticket-card__features li svg {
  color: var(--brand-red);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ============================================================
   STATS & METRICS
   ============================================================ */

.stats-band {
  background: var(--brand-darker);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-block: 4rem 5rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  text-align: center;
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-value {
  font-size: 2.5rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .stat-value {
    font-size: 3rem;
  }
}

.stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

.metrics-block {
  background: rgba(9, 20, 35, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  padding: 1.25rem;
  backdrop-filter: blur(20px);
}

@media (min-width: 768px) {
  .metrics-block {
    padding: 1.75rem;
  }
}

.metrics-label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 2rem;
}

.metrics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .metrics-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.metric-value {
  font-size: 1.875rem;
  font-weight: 500;
  letter-spacing: -0.05em;
  color: #fff;
}

@media (min-width: 768px) {
  .metric-value {
    font-size: 2.25rem;
  }
}

.metric-label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.48);
  margin-top: 0.5rem;
}

/* ============================================================
   PARTNERS / TRUST
   ============================================================ */

.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .trust-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.trust-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 24px;
  padding: 1rem;
}

.trust-card__mark {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.trust-card__name {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.48);
  margin-top: 0.5rem;
}

/* ============================================================
   FORMS
   ============================================================ */

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
}

.form-input,
.form-textarea,
.form-select {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: #fff;
  font-family: inherit;
  font-size: 14px;
  transition: border-color 0.2s;
  padding-inline: 1.25rem;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: rgba(201, 73, 75, 0.4);
}

.form-input {
  height: 48px;
}

.form-textarea {
  padding-top: 1rem;
  resize: none;
}

.form-select {
  height: 48px;
  appearance: none;
  color: rgba(255, 255, 255, 0.6);
}

.form-select option {
  background: var(--brand-dark);
}

.form-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  cursor: pointer;
}

.form-checkbox {
  margin-top: 2px;
  accent-color: var(--brand-red);
}

::placeholder {
  color: rgba(255, 255, 255, 0.32);
}

/* ============================================================
   SECTION HELPERS
   ============================================================ */

.section {
  padding-block: 6rem;
}
.section--sm {
  padding-block: 3rem;
}
.section--lg {
  padding-block: 8rem;
}

@media (min-width: 768px) {
  .section {
    padding-block: 8rem;
  }
  .section--sm {
    padding-block: 5rem;
  }
  .section--lg {
    padding-block: 11rem;
  }
}

.section-label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 1.5rem;
}

.section-title {
  font-size: clamp(1.875rem, 4vw, 3rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.section-title--lg {
  font-size: clamp(1.875rem, 5vw, 3.75rem);
}

.section-desc {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.62);
  max-width: 560px;
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

@media (min-width: 768px) {
  .section-header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 3.5rem;
  }
}

.bg-dark {
  background: var(--brand-dark);
}
.bg-darker {
  background: var(--brand-darker);
}
.bg-mid {
  background: var(--brand-mid);
}

/* ============================================================
   PROGRAM / AGENDA
   ============================================================ */

.program-session {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  transition:
    background 0.2s,
    border-color 0.2s;
  cursor: pointer;
}

.program-session:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(201, 73, 75, 0.25);
}

.program-session__time {
  text-align: center;
  flex-shrink: 0;
}

.program-session__time-val {
  font-size: 24px;
  font-weight: 500;
  color: #fff;
}

.program-session__time-type {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 4px;
}

.program-session__title {
  font-size: 18px;
  color: #fff;
  transition: color 0.2s;
}

.program-session:hover .program-session__title {
  color: var(--brand-red);
}

.program-session__track {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

/* ============================================================
   EVENT HEADER (special nav for event pages)
   ============================================================ */

.event-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(13, 27, 42, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.event-header__inner {
  max-width: 1400px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.25rem;
  height: 56px;
}

.event-header__nav {
  display: none;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

@media (min-width: 768px) {
  .event-header__nav {
    display: flex;
  }
}

.event-header__nav a {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s;
}

.event-header__nav a:hover,
.event-header__nav a.active {
  color: #fff;
}

.event-header__logo img {
  height: 36px;
  width: auto;
  filter: brightness(0) invert(1);
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */

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

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 1.5rem;
  background: none;
  border: none;
  color: #fff;
  font-family: inherit;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.01em;
  text-align: left;
  cursor: pointer;
  transition: color 0.2s;
}

.faq-trigger:hover {
  color: var(--brand-red);
}

.faq-trigger__icon {
  flex-shrink: 0;
  transition: transform 0.3s;
  color: rgba(255, 255, 255, 0.4);
}

.faq-item.open .faq-trigger__icon {
  transform: rotate(45deg);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-item.open .faq-content {
  max-height: 500px;
}

.faq-content__inner {
  padding-bottom: 1.5rem;
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.62);
}

/* ============================================================
   MAP PLACEHOLDER
   ============================================================ */

.map-placeholder {
  aspect-ratio: 21/9;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-placeholder__inner {
  text-align: center;
}

.map-placeholder__icon {
  color: rgba(255, 255, 255, 0.15);
  margin-inline: auto;
  margin-bottom: 0.75rem;
  display: block;
}

.map-placeholder__title {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.55);
}

.map-placeholder__sub {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.15);
  margin-top: 0.25rem;
}

/* ============================================================
   FILTER BAR
   ============================================================ */

.filter-bar {
  background: rgba(13, 27, 42, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding-block: 1rem;
  position: sticky;
  top: 64px;
  z-index: 40;
}

@media (min-width: 1024px) {
  .filter-bar {
    top: 112px;
  }
}

.filter-bar__inner {
  max-width: 1400px;
  margin-inline: auto;
  padding-inline: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 768px) {
  .filter-bar__inner {
    flex-direction: row;
    align-items: center;
  }
}

.search-input-wrap {
  position: relative;
  flex: 1;
  max-width: 28rem;
}

.search-input-wrap svg {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.6);
}

.search-input {
  width: 100%;
  padding-left: 2.75rem;
  padding-right: 1rem;
  height: 44px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 9999px;
  color: #fff;
  font-family: inherit;
  font-size: 14px;
  transition: border-color 0.2s;
}

.search-input:focus {
  outline: none;
  border-color: rgba(201, 73, 75, 0.4);
}

.filter-tabs {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding-bottom: 4px;
}

@media (min-width: 768px) {
  .filter-tabs {
    padding-bottom: 0;
  }
}

.filter-tab {
  padding: 0 1.25rem;
  height: 44px;
  border-radius: 9999px;
  font-size: 13px;
  white-space: nowrap;
  cursor: pointer;
  font-family: inherit;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.85);
  transition:
    background 0.2s,
    color 0.2s;
}

.filter-tab:hover {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
}

.filter-tab.active {
  background: var(--brand-red);
  color: #fff;
  border-color: var(--brand-red);
}

/* ============================================================
   ANIMATIONS
   ============================================================ */

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

@keyframes slideInRight {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}

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

@keyframes bounceY {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
}

.animate-marquee {
  animation: marquee 40s linear infinite;
}

.animate-marquee:hover {
  animation-play-state: paused;
}

.animate-bounce-y {
  animation: bounceY 2s ease-in-out infinite;
}

/* Fade-in on scroll — requires JS to add .visible */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE GRID HELPERS
   ============================================================ */

.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: 1fr 1fr;
  }
}

.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .grid-3 {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .grid-3 {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.grid-4 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (min-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Slider (horizontal scroll) */
.slider-wrap {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none;
  scrollbar-width: none;
  padding-bottom: 0.5rem;
  cursor: grab;
}

.slider-wrap::-webkit-scrollbar {
  display: none;
}
.slider-wrap:active {
  cursor: grabbing;
}

.slider-item {
  flex: 0 0 88%;
  scroll-snap-align: start;
}

@media (min-width: 640px) {
  .slider-item {
    flex: 0 0 560px;
  }
}
@media (min-width: 1024px) {
  .slider-item {
    flex: 0 0 440px;
  }
}
@media (min-width: 1280px) {
  .slider-item {
    flex: 0 0 420px;
  }
}

.slider-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.24);
  border: none;
  cursor: pointer;
  transition:
    width 0.3s,
    background 0.3s;
}

.slider-dot.active {
  width: 40px;
  background: #fff;
}

.slider-arrows {
  display: none;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .slider-arrows {
    display: flex;
  }
}

.slider-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #0d1a2a;
  color: rgba(255, 255, 255, 0.72);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    border-color 0.2s,
    color 0.2s;
}

.slider-arrow:hover {
  border-color: rgba(255, 255, 255, 0.24);
  color: #fff;
}

/* CTA Newsletter block */
.newsletter-block {
  max-width: 620px;
  margin-inline: auto;
  text-align: center;
  padding-inline: 1.25rem;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 2.5rem;
}

.newsletter-input {
  height: 56px;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  padding-inline: 1.5rem;
  font-size: 15px;
  color: #fff;
  font-family: inherit;
  transition: border-color 0.2s;
}

.newsletter-input:focus {
  outline: none;
  border-color: rgba(201, 73, 75, 0.6);
}

.newsletter-submit {
  height: 56px;
  border-radius: 1rem;
  background: var(--brand-red);
  color: #fff;
  border: none;
  font-family: inherit;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
}

.newsletter-submit:hover {
  background: var(--brand-red-dark);
}

/* Value card */
.value-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1rem;
  padding: 2rem 2.5rem;
  transition: border-color 0.3s;
}

.value-card:hover {
  border-color: rgba(201, 73, 75, 0.2);
}

.value-card__num {
  font-size: 13px;
  color: rgba(201, 73, 75, 0.6);
  letter-spacing: 0.1em;
}

.value-card__title {
  font-size: 1.75rem;
  font-weight: 500;
  color: #fff;
  margin-top: 1rem;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.value-card__desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

/* Timeline */
.timeline-row {
  display: grid;
  grid-template-columns: 3fr 9fr;
  gap: 1rem 2rem;
  padding-block: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  transition: background 0.2s;
  margin-inline: -1.25rem;
  padding-inline: 1.25rem;
}

@media (min-width: 768px) {
  .timeline-row {
    grid-template-columns: 2fr 10fr;
    gap: 2rem;
    margin-inline: -2rem;
    padding-inline: 2rem;
  }
}

.timeline-row:hover {
  background: rgba(255, 255, 255, 0.02);
}

.timeline-year {
  font-size: clamp(1.875rem, 3vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: rgba(255, 255, 255, 0.25);
  transition: color 0.2s;
}

.timeline-row:hover .timeline-year {
  color: rgba(201, 73, 75, 0.3);
}

.timeline-text {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
}

@media (min-width: 768px) {
  .timeline-text {
    font-size: 16px;
  }
}

/* Dept card */
.dept-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1rem;
  padding: 1.75rem;
  transition: border-color 0.3s;
}

.dept-card:hover {
  border-color: rgba(201, 73, 75, 0.2);
}

.dept-card__title {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 0.5rem;
}

.dept-card__desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 1rem;
}

.dept-card__email {
  font-size: 14px;
  color: rgba(201, 73, 75, 0.7);
  transition: color 0.2s;
}

.dept-card__email:hover {
  color: var(--brand-red);
}

/* Feature card (mini stats) */
.feature-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  padding: 1.5rem;
}

.feature-card__val {
  font-size: 1.875rem;
  font-weight: 500;
  letter-spacing: -0.04em;
  margin-top: 1.5rem;
}

.feature-card__desc {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.58);
  margin-top: 0.5rem;
}

/* ============================================================
   PAGINATION
   ============================================================ */

.rconf-pagination {
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  display: flex;
  justify-content: center;
}

.rconf-pagination__pages {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.rconf-pagination__item,
.rconf-pagination__arrow,
.rconf-pagination__dots {
  min-width: 2.25rem;
  height: 2.25rem;
  padding: 0 0.8rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition:
    border-color 0.2s,
    background 0.2s,
    color 0.2s,
    opacity 0.2s;
}

.rconf-pagination__item:hover,
.rconf-pagination__arrow:hover {
  border-color: rgba(201, 73, 75, 0.45);
  background: rgba(201, 73, 75, 0.15);
  color: #fff;
}

.rconf-pagination__item.is-active {
  border-color: var(--brand-red);
  background: var(--brand-red);
  color: #fff;
  font-weight: 500;
}

.rconf-pagination__dots {
  border-style: dashed;
  color: rgba(255, 255, 255, 0.45);
  pointer-events: none;
}

.rconf-pagination__arrow.is-disabled {
  opacity: 0.35;
  pointer-events: none;
}

.rconf-pagination__toggle {
  margin-left: 0.5rem;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: color 0.2s;
}

.rconf-pagination__toggle:hover {
  color: #fff;
}

/* End */
/* /local/templates/r_conf_unit/assets/css/style.css?177939322842185 */
