/* ==========================================================================
   True Digital Day 2026 - 1440px Container & Exact Figma Title Alignment
   ========================================================================== */

:root {
  --bg-page: #f4f8ff;
  --accent-red: #9C162E;
  --accent-red-hover: #b82335;
  --text-white: #ffffff;
  --text-figma: #E5EBF4;
  --text-muted: rgba(229, 235, 244, 0.85);
  --font-inter-tight: 'Inter Tight', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-pragmatica: 'Pragmatica Extended', 'Inter Tight', sans-serif;
  --container-max-width: 1440px;
  --radius-hero-desktop: 30px;
  --radius-hero-mobile: 20px;
  --transition-fast: 0.25s ease;
  --transition-medium: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: var(--font-inter-tight);
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background-color: var(--bg-page);
  color: #111111;
  line-height: 1.5;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* Containers - 1440px Max Width */
.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 88px;
  position: relative;
  height: 100%;
}

/* Outer Wrapper */
.page-wrapper {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* ==========================================================================
   Hero Card Section (Full 100vh Height - Figma h1_bg.svg)
   ========================================================================== */

.hero-card {
  background-color: #080612;
  border-radius: 0 0 var(--radius-hero-desktop) var(--radius-hero-desktop);
  color: var(--text-white);
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(10, 8, 21, 0.4);
  height: 100vh;
  height: 100dvh;
  min-height: 660px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: 136px;
}

.hero-card::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 0;
  width: 100%;
  height: calc(100% + 20px);
  background-image: url('../img/Frame%201987297612.png');
  background-repeat: no-repeat;
  background-position: right center;
  background-size: cover;
  z-index: 1;
  pointer-events: none;
  animation: none !important;
  transition: none !important;
  transform: none !important;
  opacity: 1 !important;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  padding: calc(32px - var(--scroll-progress, 0) * 16px) 0 calc(16px - var(--scroll-progress, 0) * 4px);
  background-color: rgba(244, 248, 255, calc(var(--scroll-progress, 0) * 0.95));
  backdrop-filter: blur(calc(var(--scroll-progress, 0) * 12px));
  -webkit-backdrop-filter: blur(calc(var(--scroll-progress, 0) * 12px));
  box-shadow: 0 4px 20px rgba(0, 0, 0, calc(var(--scroll-progress, 0) * 0.08));
  border-bottom: 1px solid rgba(0, 0, 0, calc(var(--scroll-progress, 0) * 0.06));
  transition: padding 0.15s ease, background-color 0.15s ease, box-shadow 0.15s ease;
  will-change: background-color, padding, box-shadow;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo (Artics Vector SVG Logo) */
.header-logo {
  display: flex;
  align-items: center;
  z-index: 102;
}

.logo-artics-svg {
  width: 107px;
  height: 88px;
  object-fit: contain;
  transition: transform var(--transition-fast), filter 0.15s ease;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, calc(var(--scroll-progress, 0) * 0.12)));
}

.site-header.is-scrolled .logo-artics-svg {
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.12));
}

.header-logo:hover .logo-artics-svg {
  transform: scale(1.02);
}

/* Navigation Links */
.header-nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0;
  gap: 68px;
  margin: 0 auto;
}

.nav-link {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: color-mix(in srgb, #111111 calc(var(--scroll-progress, 0) * 100%), var(--text-muted) calc((1 - var(--scroll-progress, 0)) * 100%));
  transition: color 0.15s ease;
  position: relative;
  padding: 4px 0;
}

.site-header.is-scrolled .nav-link {
  color: #111111;
}

.header-nav.is-open .nav-link,
.site-header.is-scrolled .header-nav.is-open .nav-link,
.site-header.is-scrolled .header-nav.is-open .nav-list li a,
.header-nav.is-open .nav-list li a {
  color: #FFFFFF !important;
}

.site-header.is-scrolled .nav-link:hover {
  color: var(--accent-red);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-red);
  transition: width var(--transition-fast);
  border-radius: 2px;
}

.nav-link:hover {
  color: var(--text-white);
}

.nav-link:hover::after {
  width: 100%;
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 102;
}

/* Buy Ticket Button */
.btn-buy {
  background-color: var(--accent-red);
  color: var(--text-white);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 13px 32px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    background-color 0.3s ease,
    box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 18px rgba(156, 22, 46, 0.45);
  white-space: nowrap;
}

.btn-buy:hover {
  background-color: var(--accent-red-hover);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 30px rgba(156, 22, 46, 0.65);
}

.btn-buy:active {
  transform: translateY(-1px) scale(0.98);
  box-shadow: 0 4px 14px rgba(156, 22, 46, 0.4);
}

/* Burger Button (Mobile) */
.burger-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 32px;
  height: 22px;
  background: transparent;
  padding: 0;
  z-index: 105;
}

.burger-btn span {
  display: block;
  width: 100%;
  height: 2.5px;
  background-color: color-mix(in srgb, #111111 calc(var(--scroll-progress, 0) * 100%), var(--text-white) calc((1 - var(--scroll-progress, 0)) * 100%));
  border-radius: 2px;
  transition: all var(--transition-medium);
}

.site-header.is-scrolled .burger-btn span {
  background-color: #111111;
}

.burger-btn.is-active span,
.site-header.is-scrolled .burger-btn.is-active span {
  background-color: #FFFFFF !important;
}

/* Burger Active Animation */
.burger-btn.is-active span:nth-child(1) {
  transform: translateY(9.5px) rotate(45deg);
}

.burger-btn.is-active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}

.burger-btn.is-active span:nth-child(3) {
  transform: translateY(-9.5px) rotate(-45deg);
}

/* Mobile Nav Drawer CTA */
.mobile-nav-cta {
  display: none;
  margin-top: 36px;
  width: 100%;
}

.mobile-nav-cta .btn-buy {
  width: auto;
  min-width: 240px;
  max-width: 320px;
  padding: 16px 40px;
  font-size: 14px;
  letter-spacing: 0.08em;
  border-radius: 100px;
  box-shadow: 0 8px 28px rgba(156, 22, 46, 0.5);
  margin: 0 auto;
}

/* ==========================================================================
   Hero Content Layout (Exact Figma Specs & Title Offset)
   ========================================================================== */

.hero-section {
  position: relative;
  z-index: 10;
  padding: 10px 0 90px;
  flex: 1;
  display: flex;
  align-items: stretch;
}

.hero-body {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
}

/* Left Column Text */
.hero-left {
  position: relative;
  z-index: 10;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding-top: 10px;
}

.hero-info-top {
  margin-bottom: 0;
}

/* 26 августа - Exact Figma Spec */
.hero-date {
  font-family: var(--font-inter-tight);
  font-style: normal;
  font-weight: 700;
  font-size: 47px;
  line-height: 109%;
  text-transform: none;
  color: var(--text-figma);
  margin-bottom: 30px;
  width: auto;
}

/* Москва, Центр «Внутри» - Exact Figma Spec */
.hero-location {
  font-family: var(--font-inter-tight);
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 125%;
  text-transform: none;
  color: var(--text-figma);
  width: auto;
}

.hero-title-group {
  margin-top: auto;
}

/* Конференция о том, как расти... */
.hero-title {
  font-family: var(--font-inter-tight);
  font-style: normal;
  font-weight: 500;
  font-size: 46px;
  line-height: 125%;
  text-transform: none;
  color: #E5EBF4;
  max-width: 960px;
  width: 100%;
}

/* ==========================================================================
   About Section
   ========================================================================== */

.about-section {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  padding: 40px 0;
  z-index: 25;
  overflow: visible;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-content-wrapper {
  position: relative;
  width: 100%;
}

.about-glow {
  position: absolute;
  width: 343px;
  height: 958px;
  left: 177px;
  top: -100px;
  background: #B2DCE1;
  opacity: 0.78;
  filter: blur(88px);
  transform: rotate(52deg);
  pointer-events: none;
  z-index: -1;
}

.about-title {
  font-family: var(--font-inter-tight);
  font-style: normal;
  font-weight: 400;
  font-size: 64px;
  line-height: 130%;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #000000;
  margin: 0 0 60px auto;
  width: 100%;
  position: relative;
  z-index: 2;
  text-align: right;
  white-space: nowrap;
}

.about-title br {
  display: none;
}

.about-card-wrapper {
  position: relative;
  width: 100%;
  max-width: 1025px;
  margin: 0 0 0 120px;
}

.about-card {
  position: relative;
  width: 100%;
  height: 574px;
  background: #000000;
  border-radius: 30px;
}

.about-card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 30px;
}

.about-text-year {
  position: absolute;
  left: 104px;
  top: 65px;
  font-family: var(--font-inter-tight);
  font-weight: 400;
  font-size: 32px;
  line-height: 130%;
  color: #FFFFFF;
  z-index: 2;
}

.about-text-desc {
  position: absolute;
  left: 236px;
  top: 116px;
  width: 727px;
  font-family: var(--font-inter-tight);
  font-weight: 400;
  font-size: 32px;
  line-height: 130%;
  color: #FFFFFF;
  z-index: 2;
}

.bubble {
  position: absolute;
  font-family: var(--font-inter-tight);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 0 48px;
  z-index: 10;
  cursor: pointer;
  transition: height var(--transition-fast), width var(--transition-fast), border-radius var(--transition-fast);
}

.bubble-title {
  font-weight: 600;
  font-size: 27px;
  line-height: 130%;
}

.bubble-desc {
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
  max-width: 260px;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  margin-top: 0;
  transition: opacity var(--transition-fast), max-height var(--transition-fast), margin-top var(--transition-fast);
}

.bubble:hover .bubble-desc {
  opacity: 1;
  max-height: 100px;
  margin-top: 12px;
}

.bubble::after {
  content: '';
  position: absolute;
  width: 26px;
  height: 28px;
  background: inherit;
  bottom: -28px;
  z-index: -1;
  transform: none;
}

.bubble-speed {
  width: 310px;
  height: 142px;
  left: -120px;
  top: 265px;
  background: #FF4A6B;
  border-radius: 27px;
  color: #FFFFFF;
  z-index: 15;
}

.bubble-speed:hover {
  width: 350px;
  height: 205px;
}

.bubble-speed::after {
  background: #FF4A6B;
  clip-path: polygon(0 0, 100% 0, 0 100%);
  left: 46.5px;
  bottom: -28px;
}

.bubble-ai {
  width: 310px;
  height: 142px;
  left: 360px;
  top: 365px;
  background: #FF4A6B;
  border-radius: 20px;
  color: #FFFFFF;
  z-index: 15;
}

.bubble-ai:hover {
  width: 350px;
  height: 222px;
}

.bubble-ai::after {
  background: #FF4A6B;
  clip-path: polygon(0 0, 100% 0, 0 100%);
  left: 45px;
  bottom: -28px;
}

.bubble-system {
  width: 350px;
  height: 135px;
  left: 80px;
  top: 440px;
  background: #9DA0FF;
  border-radius: 110px;
  color: #3F444F;
  z-index: 10;
}

.bubble-system:hover {
  height: 216px;
  border-radius: 84px;
}

.bubble-system::after {
  background: #9DA0FF;
  clip-path: polygon(0 0, 100% 0, 0 100%);
  left: 210px;
  bottom: -28px;
}

.bubble-human {
  width: 350px;
  height: 135px;
  left: 794px;
  top: 400px;
  background: #A79DFF;
  border-radius: 110px;
  color: #3F444F;
  z-index: 10;
}

.bubble-human:hover {
  height: 222px;
  border-radius: 63px;
}

.bubble-human::after {
  background: #A79DFF;
  clip-path: polygon(0 0, 100% 0, 0 100%);
  left: 60px;
  bottom: -28px;
}

/* ==========================================================================
   Speakers Section
   ========================================================================== */

.speakers-section {
  position: relative;
  padding: 120px 0;
  z-index: 20;
  background: var(--bg-page);
}

.speakers-title {
  font-family: var(--font-inter-tight);
  font-weight: 700;
  font-size: 64px;
  line-height: 130%;
  color: #000000;
  margin-bottom: 60px;
}

.speakers-slider-wrapper {
  width: 100%;
}

.speakers-slider {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.speakers-slide {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  max-width: 1280px;
}

.speakers-controls {
  display: none;
}

.speaker-card {
  width: 292px;
  height: 484px;
  background: #FFFFFF;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.speaker-photo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.speaker-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.speaker-info {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 17px 10px 20px 20px;
  background: rgba(0, 0, 0, 0.65);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  opacity: var(--card-info-opacity, 0);
  transform: translateY(calc((1 - var(--card-info-opacity, 0)) * 75px));
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.speaker-card.is-visible .speaker-info {
  --card-info-opacity: 1;
}

.speaker-card--placeholder .speaker-info,
.speaker-card:has(img[src*="placeholder"]) .speaker-info {
  display: none !important;
}

.speaker-company {
  font-family: var(--font-inter-tight);
  font-weight: 400;
  font-size: 18px;
  line-height: 22px;
  color: #FFFFFF;
}

.speaker-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.speaker-name {
  font-family: var(--font-inter-tight);
  font-weight: 700;
  font-size: 32px;
  line-height: 130%;
  color: #FFFFFF;
}

.speaker-role {
  font-family: var(--font-inter-tight);
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  color: #FFFFFF;
}

/* ==========================================================================
   Program Section
   ========================================================================== */

.program-section {
  position: relative;
  padding: 100px 0 80px;
  z-index: 20;
  background: var(--bg-page);
}

.program-title {
  font-family: var(--font-inter-tight);
  font-weight: 700;
  font-size: 64px;
  line-height: 130%;
  color: #000000;
  margin-bottom: 60px;
}

/* Universal Section Titles Slide-In From Left */
.program-title,
.speakers-title,
.reviews-title,
.partners-title,
.footer-title {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.75s cubic-bezier(0.16, 1, 0.3, 1) !important;
  animation: none !important;
  will-change: opacity, transform;
}

.program-title.is-visible,
.speakers-title.is-visible,
.reviews-title.is-visible,
.partners-title.is-visible,
.footer-title.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.program-list {
  width: 100%;
  max-width: 1280px;
}

/* Program Section Scroll-Bound Item & Line Animations */
.program-item {
  border-top: none !important;
  opacity: var(--item-progress, 0);
  transform: translateX(calc((1 - var(--item-progress, 0)) * -50px));
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
  position: relative;
}

.program-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 1px;
  background-color: #666666;
  width: calc(var(--item-progress, 0) * 100%);
  opacity: var(--item-progress, 0);
  transition: width 0.55s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.45s ease-out;
  will-change: width, opacity;
}

.program-item:last-child {
  border-bottom: none !important;
}

.program-item:last-child::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  background-color: #666666;
  width: calc(var(--item-progress, 0) * 100%);
  opacity: var(--item-progress, 0);
  transition: width 0.55s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.45s ease-out;
  will-change: width, opacity;
}

.program-item.is-visible {
  --item-progress: 1;
}

/* Hide divider lines when an item is opened/expanded */
.program-item.is-open::before,
.program-item.is-open+.program-item::before {
  opacity: 0 !important;
  visibility: hidden !important;
}

.program-item-header {
  display: flex;
  align-items: center;
  padding: 27px 49px;
  cursor: pointer;
  transition: background var(--transition-fast), border-radius var(--transition-fast);
  border-radius: 20px;
}

.program-item.is-open .program-item-header {
  background: transparent;
  border-radius: 20px 20px 0 0;
}

.program-item .program-time {
  font-family: var(--font-inter-tight);
  font-weight: 700;
  font-size: 35px;
  line-height: 130%;
  color: #000000;
  min-width: 280px;
  flex-shrink: 0;
}

.program-item.is-open .program-item-header .program-time {
  color: #B2DCE1;
}

.program-item .program-name {
  font-family: var(--font-inter-tight);
  font-weight: 400;
  font-size: 32px;
  line-height: 130%;
  color: #000000;
  flex: 1;
}

.program-item.is-open .program-item-header .program-name {
  color: #FFFFFF;
}

.program-toggle {
  width: 56px;
  height: 55px;
  border: 1px solid #000000;
  border-radius: 53px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-left: auto;
  position: relative;
  transition: border-color var(--transition-fast);
}

.program-item.is-open .program-toggle {
  border-color: #FFFFFF;
}

.toggle-icon {
  position: relative;
  width: 24px;
  height: 24px;
}

.toggle-icon::before,
.toggle-icon::after {
  content: '';
  position: absolute;
  background: #000000;
  top: 50%;
  left: 50%;
  transition: transform var(--transition-fast), background var(--transition-fast);
}

/* Horizontal line */
.toggle-icon::before {
  width: 24px;
  height: 1px;
  transform: translate(-50%, -50%);
}

/* Vertical line (+ sign) */
.toggle-icon::after {
  width: 1px;
  height: 24px;
  transform: translate(-50%, -50%);
}

.program-item.is-open .toggle-icon::before,
.program-item.is-open .toggle-icon::after {
  background: #FFFFFF;
}

.program-item.is-open .toggle-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

/* Expandable body */
.program-item-body {
  max-height: 0;
  opacity: 0;
  transform: translateY(-20px);
  overflow: hidden;
  background: transparent;
  border-radius: 0 0 20px 20px;
  transition: max-height 0.45s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.4s ease,
    transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: max-height, opacity, transform;
}

.program-item.is-open .program-item-body {
  max-height: 500px;
  opacity: 1;
  transform: translateY(0);
}

.program-item.is-open {
  padding: 10px 0;
  background: #000000;
  border-radius: 20px;
}

.program-sub-item {
  display: flex;
  align-items: center;
  padding: 24px 49px;
}

.program-sub-item .program-time {
  font-family: var(--font-inter-tight);
  font-weight: 400;
  font-size: 35px;
  line-height: 130%;
  color: #B2DCE1;
  min-width: 280px;
  flex-shrink: 0;
}

.program-sub-item .program-name {
  font-family: var(--font-inter-tight);
  font-weight: 300;
  font-size: 32px;
  line-height: 130%;
  color: #FFFFFF;
  flex: 1;
}

/* ==========================================================================
   Responsive Adaptations (Tablet & Mobile 375px)
   ========================================================================== */

/* Tablet & Smaller Screens (< 1200px) */
@media (max-width: 1200px) {
  .container {
    padding: 0 40px;
  }

  .hero-date {
    font-size: 40px;
  }

  .hero-location {
    font-size: 22px;
  }

  .hero-subtitle {
    font-size: 22px;
  }

  .hero-title {
    font-size: 52px;
    width: 100%;
  }

  .about-content-wrapper {
    transform: scale(0.9);
    transform-origin: center top;
  }
}

/* Tablet & Smaller Screens (< 1024px) */
@media (max-width: 1024px) {
  .container {
    padding: 0 28px;
  }

  .nav-list {
    gap: 24px;
  }

  .nav-link {
    font-size: 12px;
  }

  .btn-buy {
    padding: 12px 24px;
    font-size: 12px;
  }

  .hero-date {
    font-size: 36px;
  }

  .hero-location {
    font-size: 20px;
  }

  .hero-subtitle {
    font-size: 18px;
    max-width: 100%;
  }

  .hero-title {
    font-size: 42px;
  }

  .hero-card {
    background-position: center top;
    background-size: cover;
  }

  .about-content-wrapper {
    transform: scale(0.75);
    transform-origin: right center;
  }

  .marketing-quote-wrapper {
    transform: none !important;
  }
}

/* Mobile & Tablet (< 840px) */
@media (max-width: 840px) {
  .hero-card {
    border-radius: 0 0 var(--radius-hero-mobile) var(--radius-hero-mobile);
    height: 100vh;
    height: 100dvh;
    min-height: 540px;
  }

  .hero-card::before {
    background-position: 40% center;
    background-size: cover;
  }

  .site-header {
    padding: 20px 0;
  }

  /* Show Burger Button */
  .burger-btn {
    display: flex;
  }

  /* Hide Desktop Buy Button in Header Actions */
  .header-actions .btn-buy {
    display: none;
  }

  /* Mobile Fullscreen Navigation Overlay */
  .header-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(8, 6, 18, 0.96);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    display: none;
    pointer-events: none;
    transform: scale(1.03) translateY(-10px);
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1),
      transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
      visibility 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .header-nav.is-open {
    display: flex;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: scale(1) translateY(0);
  }

  .nav-list {
    flex-direction: column;
    gap: 28px;
    text-align: center;
    width: 100%;
  }

  .header-nav .nav-list li,
  .header-nav .mobile-nav-cta {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.45s cubic-bezier(0.16, 1, 0.3, 1),
      transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .header-nav.is-open .nav-list li:nth-child(1) {
    transition-delay: 0.08s;
    opacity: 1;
    transform: translateY(0);
  }

  .header-nav.is-open .nav-list li:nth-child(2) {
    transition-delay: 0.14s;
    opacity: 1;
    transform: translateY(0);
  }

  .header-nav.is-open .nav-list li:nth-child(3) {
    transition-delay: 0.20s;
    opacity: 1;
    transform: translateY(0);
  }

  .header-nav.is-open .nav-list li:nth-child(4) {
    transition-delay: 0.26s;
    opacity: 1;
    transform: translateY(0);
  }

  .header-nav.is-open .mobile-nav-cta {
    transition-delay: 0.32s;
    opacity: 1;
    transform: translateY(0);
  }

  .nav-link {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.08em;
    padding: 8px 0;
  }

  .header-nav.is-open .nav-link,
  .site-header.is-scrolled .header-nav.is-open .nav-link,
  .header-nav.is-open .nav-list li a.nav-link {
    color: #FFFFFF !important;
  }

  .mobile-nav-cta {
    display: flex;
    justify-content: center;
  }

  .hero-body {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-left {
    max-width: 100%;
    height: 100%;
  }

  .hero-info-top {
    margin-bottom: 24px;
  }

  .hero-date {
    font-size: 32px;
    margin-bottom: 8px;
    width: auto;
  }

  .hero-location {
    font-size: 17px;
    width: auto;
  }

  .hero-subtitle {
    font-size: 15px;
    margin-bottom: 8px;
    max-width: 100%;
  }

  .hero-title {
    font-size: 30px;
    line-height: 1.15;
    width: 100%;
  }

  .title-line-2 {
    text-align: left;
  }

  .about-section {
    min-height: auto;
    padding: 60px 0;
  }

  .about-content-wrapper {
    transform: none;
  }

  .about-title {
    font-size: 26px;
    margin-bottom: 40px;
    text-align: center;
    padding: 0 20px;
  }

  .about-card-wrapper {
    width: 100%;
    padding: 0;
  }

  .about-card {
    height: auto;
    padding: 40px 20px 80px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .about-card-bg {
    border-radius: 20px;
  }

  .about-text-year,
  .about-text-desc {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    text-align: center;
    font-size: 20px;
    margin-bottom: 20px;
    max-width: 100%;
  }

  .bubble {
    position: relative;
    left: auto !important;
    top: auto !important;
    width: 100% !important;
    max-width: 320px;
    height: auto !important;
    min-height: 80px;
    margin: 10px auto;
    border-radius: 20px !important;
    padding: 20px 24px;
  }

  .bubble:hover {
    width: 100% !important;
    height: auto !important;
    border-radius: 20px !important;
  }

  .bubble-title {
    font-size: 20px;
  }

  .bubble-desc {
    opacity: 1;
    max-height: 200px;
    margin-top: 8px;
    font-size: 14px;
    max-width: 100%;
  }

  .bubble::after {
    content: '';
    position: absolute;
    display: block;
    width: 14px;
    height: 14px;
    background: inherit;
    clip-path: polygon(0 0, 100% 0, 0 100%);
    bottom: -14px;
    z-index: 10;
  }

  .bubble-speed::after {
    left: 24px;
  }

  .bubble-system::after {
    left: 120px;
  }

  .bubble-ai::after {
    left: 24px;
  }

  .bubble-human::after {
    left: 24px;
  }

  .program-section {
    padding: 60px 0;
  }

  .program-title {
    font-size: 36px;
    margin-bottom: 32px;
  }

  .program-item .program-time {
    font-size: 20px;
    min-width: 140px;
  }

  .program-item .program-name {
    font-size: 18px;
  }

  .program-item-header {
    padding: 20px 20px;
  }

  .program-item.is-open .program-item-header {
    padding: 20px 20px;
  }

  .program-sub-item {
    padding: 16px 20px;
  }

  .program-sub-item .program-time {
    font-size: 20px;
    min-width: 140px;
  }

  .program-sub-item .program-name {
    font-size: 18px;
  }

  .program-toggle {
    width: 40px;
    height: 40px;
  }

  .toggle-icon {
    width: 18px;
    height: 18px;
  }

  .toggle-icon::before {
    width: 18px;
  }

  .toggle-icon::after {
    height: 18px;
  }

  .speakers-section {
    padding: 60px 0;
  }

  .speakers-title {
    font-size: 36px;
    margin-bottom: 32px;
  }

  .speakers-grid {
    gap: 16px;
    justify-content: center;
  }

  .speaker-card {
    width: calc(50% - 8px);
    height: 360px;
  }

  .speaker-photo {
    left: -30px;
    width: calc(100% + 60px);
    height: 100%;
  }

  .speaker-name {
    font-size: 22px;
  }

  .speaker-company {
    font-size: 14px;
  }

  .speaker-role {
    font-size: 13px;
  }

  .speaker-info {
    padding: 12px 10px 14px 14px;
  }
}

/* Mobile Strict Target (375px) */
@media (max-width: 480px) {
  .container {
    padding: 0 18px;
  }

  .site-header {
    padding: 16px 0;
  }

  .logo-artics-svg {
    height: 20px;
  }

  .hero-card {
    border-radius: 0 0 20px 20px;
    min-height: 600px;
    background-position: 40% center;
    background-size: cover;
  }

  .hero-info-top {
    margin-bottom: 30px;
  }

  .hero-date {
    font-size: 42px;
    margin-bottom: 8px;
  }

  .hero-location {
    font-size: 20px;
    line-height: 1.3;
  }

  .hero-subtitle {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .hero-title {
    font-size: 34px;
    line-height: 1.15;
  }
}

/* Marketing Quote Section */
.marketing-quote-section {
  position: relative;
  padding: 0 0 160px;
  background: var(--bg-page);
  z-index: 25;
}

.marketing-quote-wrapper {
  position: relative;
  max-width: 1116px;
  margin: 0 auto;
  transform: translateX(-82px);
  z-index: 2;
}

.marketing-quote-bg {
  position: absolute;
  width: 639.43px;
  height: 958.7px;
  right: 100px;
  top: -220px;
  transform: rotate(51.97deg);
  background: #CAC5F4;
  opacity: 0.5;
  filter: blur(88.4px);
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
}

.marketing-quote-text {
  position: relative;
  max-width: 1116px;
  margin: 0 auto;
  font-family: var(--font-inter-tight);
  font-style: normal;
  font-weight: 400;
  font-size: clamp(22px, 4vw, 39px);
  line-height: 130%;
  text-indent: 140px;
  color: #000000;
  z-index: 2;
}

/* Tickets Section */
.tickets-section {
  position: relative;
  padding: 60px 0 0;
  background: var(--bg-page);
  z-index: 20;
}

.tickets-card {
  position: relative;
  width: 100%;
  max-width: 1280px;
  min-height: 421px;
  margin: 0 auto;
  background: #000000;
  border-radius: 20px;
  overflow: hidden;
  padding: 58px 73px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  opacity: var(--ticket-card-progress, 0);
  transform: translateX(calc((1 - var(--ticket-card-progress, 0)) * -80px));
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}


.tickets-glow-1 {
  position: absolute;
  width: 322.07px;
  height: 867.86px;
  left: 475px;
  top: -23px;
  background: #FF4053;
  opacity: 0.23;
  filter: blur(73px);
  transform: rotate(51.97deg);
  pointer-events: none;
  z-index: 1;
}

.tickets-glow-2 {
  position: absolute;
  width: 779.32px;
  height: 799px;
  left: 221px;
  top: -666px;
  background: #965EEB;
  opacity: 0.4;
  filter: blur(119.85px);
  transform: rotate(51.97deg);
  pointer-events: none;
  z-index: 1;
}

.tickets-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.tickets-title {
  font-family: var(--font-inter-tight);
  font-weight: 700;
  font-size: 64px;
  line-height: 1.3;
  color: #FFFFFF;
  margin: 0;
}

.tickets-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 100px;
}

.tickets-desc {
  width: 548.26px;
  max-width: 100%;
  font-family: var(--font-inter-tight);
  font-weight: 400;
  font-size: 21px;
  line-height: 1.3;
  color: #FFFFFF;
  margin: 0;
  opacity: var(--ticket-desc-opacity, 0);
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity;
}

.tickets-btn {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 28px 62px;
  gap: 28px;
  background: #FFFFFF;
  border: 1.55615px solid #FFFFFF;
  border-radius: 41.5742px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  opacity: var(--ticket-btn-opacity, 0);
  transform: translateX(calc((1 - var(--ticket-btn-opacity, 0)) * 50px)) scale(calc(0.92 + (var(--ticket-btn-opacity, 0) * 0.08)));
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.75s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.35s ease,
    background var(--transition-fast);
  will-change: opacity, transform;
}

.tickets-btn svg {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.tickets-btn:hover {
  opacity: 1;
  transform: scale(1.04) translateY(-2px) !important;
  box-shadow: 0 12px 35px rgba(255, 255, 255, 0.35);
}

.tickets-btn:hover svg {
  transform: translateX(10px);
}

/* Light shimmer sweep flare on hover */
.tickets-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent 0%,
      rgba(255, 255, 255, 0.7) 50%,
      transparent 100%);
  transform: skewX(-25deg);
  transition: left 0.75s ease;
  pointer-events: none;
}

.tickets-btn:hover::before {
  left: 140%;
}

.tickets-btn span {
  font-family: 'Pragmatica Extended', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 24.8984px;
  line-height: 1.25;
  text-align: center;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #000000;
}

/* Reviews Section */
.reviews-section {
  position: relative;
  min-height: 100vh;
  padding: 80px 0;
  z-index: 30;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
}

.reviews-glow {
  position: absolute;
  width: 566.95px;
  height: 1063.59px;
  left: 121.95px;
  top: 50%;
  transform: translateY(-50%) rotate(127.14deg);
  background: #CAC5F4;
  opacity: 0.4;
  filter: blur(88.4px);
  pointer-events: none;
  z-index: -1;
}

.reviews-header {
  margin-bottom: 40px;
}

.reviews-title {
  font-family: var(--font-inter-tight);
  font-weight: 700;
  font-size: 64px;
  line-height: 1.3;
  color: #000000;
  margin: 0;
}

.reviews-slider-container {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.reviews-slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none;
  scrollbar-width: none;
  padding-bottom: 20px;
}

.reviews-slider::-webkit-scrollbar {
  display: none;
}

.review-card {
  flex: 0 0 calc((100% - 40px) / 3);
  height: 390px;
  min-height: 390px;
  background: #FFFFFF;
  border-radius: 20px;
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  scroll-snap-align: start;
  box-sizing: border-box;
  opacity: var(--review-card-progress, 0);
  transform: translateX(calc((1 - var(--review-card-progress, 0)) * -120px));
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.review-card.is-visible {
  --review-card-progress: 1;
}

.review-text {
  font-family: var(--font-inter-tight);
  font-weight: 300;
  font-size: 22px;
  line-height: 1.3;
  color: #000000;
  margin: 0;
}

.review-author {
  font-family: var(--font-inter-tight);
  font-weight: 500;
  font-size: 20px;
  line-height: 1.87;
  text-align: right;
  color: #000000;
  display: block;
}

.reviews-controls {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
}

/* Position controls to match Figma approximately */
@media (min-width: 769px) {
  .reviews-controls {
    justify-content: center;
    position: absolute;
    right: 0;
    bottom: -85px;
    margin-top: 0;
    padding-right: calc(50% - 640px + 631px);
    /* Math from Figma coordinates */
    /* Wait, Figma has right aligned controls, I'll just right align them or center them if it's easier. The spec had absolute coordinates, but it's responsive. I'll center them by default like in standard sliders. */
    justify-content: center;
  }
}

.review-btn {
  width: 76px;
  height: 45px;
  border: 1px solid #000000;
  border-radius: 53px;
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.review-btn:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

@media (max-width: 768px) {
  .marketing-quote-section {
    padding: 40px 0 60px;
  }

  .marketing-quote-wrapper {
    transform: none !important;
    max-width: 287px !important;
    margin: 0 auto !important;
    position: relative !important;
  }

  .marketing-quote-bg {
    position: absolute !important;
    width: 219.77px !important;
    height: 329.5px !important;
    left: -32px !important;
    top: -40px !important;
    background: #B2DCE1 !important;
    opacity: 0.3 !important;
    filter: blur(30.3829px) !important;
    transform: rotate(51.97deg) !important;
    border-radius: 50% !important;
  }

  .marketing-quote-text {
    font-size: 14px !important;
    line-height: 130% !important;
    max-width: 287px !important;
    margin: 0 auto !important;
    text-indent: 0 !important;
  }

  .tickets-section {
    padding: 40px 0 60px;
  }

  .tickets-card {
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    min-height: 285px;
    height: 285px;
    margin: 0 auto;
    background: #000000;
    border: 1px solid #CACACA;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    padding: 22px 24px 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }


  .tickets-glow-1 {
    position: absolute;
    width: 239.64px;
    height: 645.75px;
    left: -172.01px;
    top: -83.56px;
    background: #FF4053;
    opacity: 0.23;
    filter: blur(54.3173px);
    transform: rotate(51.97deg);
    pointer-events: none;
    z-index: 1;
  }

  .tickets-glow-2 {
    position: absolute;
    width: 579.87px;
    height: 594.51px;
    left: -361px;
    top: -562px;
    background: #965EEB;
    opacity: 0.4;
    filter: blur(89.177px);
    transform: rotate(51.97deg);
    pointer-events: none;
    z-index: 1;
  }

  .tickets-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .tickets-title {
    font-family: var(--font-inter-tight);
    font-weight: 700;
    font-size: 32px;
    line-height: 130%;
    color: #FFFFFF;
    margin: 0 0 10px 0;
  }

  .tickets-bottom {
    margin-top: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .tickets-desc {
    font-family: var(--font-inter-tight);
    font-weight: 400;
    font-size: 13px;
    line-height: 130%;
    color: #FFFFFF;
    max-width: 282px;
    width: 100%;
    margin: 0;
  }

  .tickets-btn {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 17.5px 24px;
    gap: 17px;
    width: 100%;
    max-width: 280px;
    height: 55px;
    margin: 0 auto;
    background: #FFFFFF;
    border: 0.97px solid #FFFFFF;
    border-radius: 26px;
    text-decoration: none;
  }

  .tickets-btn span {
    font-family: 'Pragmatica Extended', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    text-align: center;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #000000;
  }

  .reviews-section {
    padding: 40px 0 50px !important;
    min-height: auto !important;
    height: auto !important;
  }

  .reviews-header {
    margin-bottom: 20px !important;
  }

  .reviews-title {
    font-size: 36px !important;
    line-height: 1.2 !important;
  }

  .reviews-slider {
    padding-bottom: 10px !important;
  }

  .review-card {
    flex: 0 0 100% !important;
    height: auto !important;
    min-height: 130px !important;
    padding: 20px 16px !important;
    border-radius: 16px !important;
    box-sizing: border-box !important;
  }

  .review-text {
    font-size: 15px !important;
    line-height: 1.35 !important;
    margin-bottom: 12px !important;
  }

  .review-author {
    font-size: 14px !important;
    line-height: 1.2 !important;
  }

  .reviews-controls {
    margin-top: 16px !important;
  }

  .reviews-glow {
    width: 300px;
    height: 600px;
    left: -50px;
    top: 50%;
  }
}

/* ==========================================================================
   Partners Section
   ========================================================================== */
.partners-section {
  padding: 100px 0;
  position: relative;
  z-index: 20;
}

.partners-block {
  margin-bottom: 80px;
}

.partners-title {
  font-family: var(--font-inter-tight);
  font-weight: 700;
  font-size: 64px;
  line-height: 1.3;
  color: #000000;
  margin-bottom: 40px;
}

.partners-grid {
  display: flex;
  flex-wrap: nowrap;
  gap: 32px;
  margin-bottom: 32px;
}

.partners-grid img {
  height: auto;
  max-height: 128px;
  width: auto;
  border-radius: 20px;
  min-width: 0;
  flex-shrink: 1;
}

.organizer-block {
  margin-bottom: 0;
}

.organizer-logo-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
}

.organizer-logo {
  height: 50px;
  width: auto;
}

.organizer-desc {
  font-family: var(--font-pragmatica-extended);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.3;
  text-transform: uppercase;
  color: #000000;
}

/* ==========================================================================
   Footer Section
   ========================================================================== */
.footer {
  padding: 80px 0 0;
  position: relative;
  z-index: 20;
}

.footer-card {
  display: flex;
  align-items: center;
  gap: 90px;
  margin-bottom: 94px;
  background: transparent;
}

.footer-map {
  width: 650px;
  height: 429px;
  background: #FFFFFF;
  border-radius: 20px;
  flex-shrink: 0;
  overflow: hidden;
}

.footer-map iframe {
  display: block;
  width: 100%;
  height: calc(100% + 50px);
  margin-bottom: -50px;
  border: none;
}

.footer-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 425px;
}

.footer-title {
  font-family: var(--font-inter-tight);
  font-weight: 400;
  font-size: 52px;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: #000;
}

.footer-address {
  font-family: var(--font-inter-tight);
  font-weight: 400;
  font-size: 28px;
  line-height: 1.3;
  text-transform: uppercase;
  font-style: normal;
  margin-bottom: 28px;
  color: #000;
}

.footer-email {
  font-family: var(--font-inter-tight);
  font-weight: 400;
  font-size: 24px;
  text-decoration: underline;
  color: #000000;
  margin-bottom: 40px;
}

.footer-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 250px;
  height: 80px;
  border: 2px solid #000000;
  border-radius: 40px;
  font-family: var(--font-pragmatica-extended);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #000000;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-btn:hover {
  background: #000000;
  color: #FFFFFF;
}

.footer-bottom {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-social-text {
  font-family: var(--font-inter-tight);
  font-weight: 500;
  font-size: 24px;
}

.footer-link {
  font-family: var(--font-pragmatica);
  font-weight: 500;
  font-size: 24px;
  text-decoration: underline;
  color: #000000;
}

.footer-divider {
  font-family: var(--font-inter-tight);
  font-weight: 700;
  font-size: 24px;
  color: #000;
  margin: 0 4px;
}

.footer-massive-text {
  margin-top: 100px;
  width: 100%;
  height: auto;
  max-height: 152px;
  display: block;
}

/* ==========================================================================
   Responsive adaptions
   ========================================================================== */
@media (max-width: 1300px) and (min-width: 769px) {
  .about-content-wrapper {
    transform: scale(0.85) !important;
    transform-origin: center center !important;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }

  .about-card-wrapper {
    margin: 0 0 0 auto !important;
  }

  .about-title {
    text-align: right;
    margin: 0 0 80px auto;
  }

  .speakers-slide {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 16px !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .speaker-card {
    width: 100% !important;
    height: 400px !important;
  }
}

@media (max-width: 1024px) {
  .about-content-wrapper {
    transform: scale(0.68) !important;
    transform-origin: center center !important;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }

  .about-card-wrapper {
    margin: 0 0 0 auto !important;
  }

  .about-title {
    text-align: right;
    margin: 0 0 100px auto;
  }

  .marketing-quote-wrapper {
    transform: none !important;
  }

  .footer-card {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 40px;
  }

  .footer-map {
    width: 100%;
    height: 350px;
  }

  .footer-email {
    margin-bottom: 40px;
  }

  .footer-info {
    max-width: 100%;
  }

  .partners-grid {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 840px) {
  .about-content-wrapper {
    transform: none !important;
    display: block !important;
  }
}

@media (max-width: 768px) {
  .about-title {
    white-space: normal !important;
  }

  .about-title br {
    display: inline !important;
  }

  .container {
    padding: 0 20px;
  }

  .site-header {
    padding: 20px 0 10px;
  }

  .site-header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    z-index: 1000 !important;
    padding: calc(20px - var(--scroll-progress, 0) * 10px) 20px !important;
    box-sizing: border-box !important;
  }

  .logo-artics-svg,
  .site-header .logo img,
  .site-header .logo svg {
    width: 64px !important;
    height: 52.68px !important;
  }

  /* Block 1: Hero Section */
  .hero-card {
    height: 500px !important;
    min-height: 500px !important;
    max-height: 500px !important;
    border-radius: 0 0 20px 20px !important;
    position: relative !important;
    overflow: hidden !important;
    background: #000000 !important;
  }

  .hero-card::before {
    background-image: url('../img/Frame%201987297641.png') !important;
    background-repeat: no-repeat !important;
    background-position: center top !important;
    background-size: cover !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
  }

  .hero-section {
    padding: 0 !important;
    height: 100% !important;
    min-height: 100% !important;
    max-height: 100% !important;
    position: relative !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-end !important;
  }

  .hero-body {
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-end !important;
  }

  .hero-left {
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-end !important;
    padding: 0 20px 24px 20px !important;
    height: 100% !important;
    position: relative !important;
  }

  .hero-info-top {
    position: static !important;
    margin-bottom: 16px !important;
  }

  .hero-date {
    font-size: 18px !important;
    line-height: 109% !important;
    font-weight: 700 !important;
    margin-bottom: 4px !important;
    color: #E5EBF4 !important;
  }

  .hero-location {
    font-size: 12px !important;
    line-height: 147% !important;
    font-weight: 400 !important;
    color: #E5EBF4 !important;
  }

  .hero-title-group {
    position: static !important;
    width: 100% !important;
    max-width: 330px !important;
    margin: 0 !important;
  }

  .hero-title {
    font-size: 24px !important;
    line-height: 125% !important;
    font-weight: 500 !important;
    color: #E5EBF4 !important;
    margin: 0 !important;
  }

  .hero-title br {
    display: none !important;
  }

  /* Block 2: About Section */
  .about-section {
    min-height: auto !important;
    padding: 50px 0 40px 0 !important;
    display: block !important;
  }

  .about-content-wrapper {
    transform: none !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    width: 100% !important;
    margin-top: 0 !important;
  }

  .about-title {
    text-align: left !important;
    margin: 0 0 30px 0 !important;
    font-size: 28px !important;
    line-height: 120% !important;
    max-width: 100% !important;
    text-transform: uppercase !important;
  }

  .about-title-offset {
    display: block !important;
    margin-left: 36px !important;
  }

  .about-card-wrapper {
    margin: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    position: relative !important;
  }

  .about-card {
    height: 580px !important;
    width: 100% !important;
    max-width: 100% !important;
    border-radius: 24px !important;
    position: relative !important;
    overflow: visible !important;
  }

  .about-card-bg,
  .about-card-bg img {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 24px !important;
    z-index: 1 !important;
  }

  .about-text-year {
    position: absolute !important;
    left: 24px !important;
    top: 24px !important;
    text-align: left !important;
    font-size: 18px !important;
    line-height: 130% !important;
    color: #FFFFFF !important;
    z-index: 2 !important;
  }

  .about-text-desc {
    position: absolute !important;
    left: 24px !important;
    top: 54px !important;
    text-align: left !important;
    width: auto !important;
    max-width: 290px !important;
    font-size: 13px !important;
    line-height: 135% !important;
    color: #FFFFFF !important;
    z-index: 2 !important;
  }

  .about-text-desc br {
    display: none !important;
  }

  /* Speech Bubbles on Mobile */
  .bubble,
  .bubble:hover {
    padding: 12px 14px !important;
    height: auto !important;
    min-height: auto !important;
    position: absolute !important;
    transform: none !important;
    transition: none !important;
    cursor: default !important;
  }

  .bubble::after {
    content: '' !important;
    position: absolute !important;
    display: block !important;
    width: 18px !important;
    height: 20px !important;
    background: inherit !important;
    bottom: -20px !important;
    z-index: 10 !important;
    transform: none !important;
  }

  .bubble-speed::after {
    clip-path: polygon(0 0, 100% 0, 0 100%) !important;
    left: 24px !important;
    right: auto !important;
    bottom: -20px !important;
  }

  .bubble-system::after {
    clip-path: polygon(0 0, 100% 0, 0 100%) !important;
    right: 28px !important;
    left: auto !important;
    bottom: -20px !important;
  }

  .bubble-ai::after {
    clip-path: polygon(0 0, 100% 0, 0 100%) !important;
    left: 28px !important;
    right: auto !important;
    bottom: -20px !important;
  }

  .bubble-human::after {
    clip-path: polygon(0 0, 100% 0, 0 100%) !important;
    left: 24px !important;
    right: auto !important;
    bottom: -20px !important;
  }

  .bubble-title {
    font-size: 15px !important;
    margin-bottom: 2px !important;
  }

  .bubble-desc {
    font-size: 11px !important;
    line-height: 130% !important;
    opacity: 1 !important;
    max-height: none !important;
    margin-top: 2px !important;
    max-width: 100% !important;
    transition: none !important;
  }

  .bubble-speed,
  .bubble-speed:hover {
    width: 180px !important;
    height: 120px !important;
    left: -10px !important;
    top: 170px !important;
    border-radius: 16px !important;
    z-index: 4 !important;
  }

  .bubble-system,
  .bubble-system:hover {
    width: 180px !important;
    height: 120px !important;
    left: 170px !important;
    right: auto !important;
    top: 200px !important;
    border-radius: 24px !important;
    z-index: 3 !important;
  }

  .bubble-ai,
  .bubble-ai:hover {
    width: 170px !important;
    height: 120px !important;
    left: 100px !important;
    top: 320px !important;
    border-radius: 16px !important;
    z-index: 5 !important;
  }

  .bubble-human,
  .bubble-human:hover {
    width: 170px !important;
    height: 120px !important;
    left: 30px !important;
    top: 450px !important;
    border-radius: 24px !important;
    z-index: 2 !important;
  }

  /* Speakers Carousel 2x2 on Mobile */
  .speakers-section {
    padding: 40px 0 60px;
  }

  .speakers-title {
    font-size: 36px;
    margin-bottom: 24px;
  }

  .speakers-slider-wrapper {
    overflow: hidden;
    width: 100%;
  }

  .speakers-slider {
    display: flex;
    flex-direction: row;
    transition: transform 0.4s ease;
    width: 100%;
    gap: 0;
  }

  .speakers-slide {
    min-width: 100% !important;
    flex: 0 0 100% !important;
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 12px !important;
  }

  .speaker-card {
    width: 100% !important;
    height: 260px !important;
    border-radius: 16px !important;
    position: relative !important;
    overflow: hidden !important;
  }

  .speaker-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
  }

  .speaker-info {
    padding: 10px;
    gap: 4px;
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.85) 40%, rgba(0, 0, 0, 0.95) 100%);
  }

  .speaker-company {
    font-size: 11px;
    line-height: 14px;
  }

  .speaker-details {
    gap: 2px;
  }

  .speaker-name {
    font-size: 16px;
    line-height: 120%;
  }

  .speaker-role {
    font-size: 11px;
  }

  .speakers-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 24px;
  }

  .speaker-btn {
    box-sizing: border-box;
    width: 76px;
    height: 45px;
    border: 1px solid #000000;
    border-radius: 53px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.25s ease;
  }

  .speaker-btn:active {
    background-color: rgba(0, 0, 0, 0.08);
  }

  /* Block 3: Program */
  .program-section {
    padding: 50px 0 !important;
    min-height: auto !important;
  }

  .program-title {
    font-size: 36px !important;
    margin-bottom: 30px !important;
  }

  .program-item-header {
    padding: 16px 12px !important;
  }

  .program-item .program-time {
    font-size: 16px !important;
    min-width: 110px !important;
    width: 110px !important;
    margin-right: 12px !important;
  }

  .program-item .program-name {
    font-size: 15px !important;
    line-height: 130% !important;
  }

  .program-toggle {
    width: 36px !important;
    height: 36px !important;
  }

  .program-sub-item {
    padding: 12px 12px !important;
    align-items: flex-start !important;
  }

  .program-sub-item .program-time {
    font-size: 14px !important;
    min-width: 110px !important;
    width: 110px !important;
    margin-right: 12px !important;
    flex-shrink: 0 !important;
  }

  .program-sub-item .program-name {
    font-size: 14px !important;
    line-height: 130% !important;
  }

  /* Marketing Quote Section on Mobile */
  .marketing-quote-section {
    position: relative !important;
    padding: 0 0 50px 0 !important;
    overflow: visible !important;
    z-index: 25 !important;
  }

  .marketing-quote-wrapper {
    position: relative !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 20px 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto !important;
    transform: none !important;
    box-sizing: border-box !important;
    z-index: 2 !important;
  }

  .marketing-quote-bg {
    position: absolute !important;
    width: 100% !important;
    height: 100% !important;
    top: 0 !important;
    left: 0 !important;
    background: #CAC5F4 !important;
    opacity: 0.4 !important;
    filter: blur(40px) !important;
    border-radius: 50% !important;
    pointer-events: none !important;
    z-index: 1 !important;
  }

  .marketing-quote-text {
    position: relative !important;
    z-index: 2 !important;
    font-size: 20px !important;
    line-height: 140% !important;
    text-indent: 0 !important;
    color: #000000 !important;
    text-align: left !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .marketing-quote-text .quote-line {
    display: inline !important;
  }

  .partners-section,
  .footer {
    padding: 40px 0;
  }

  .partners-title,
  .footer-title {
    font-size: clamp(32px, 8vw, 64px);
  }

  .partners-grid {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
    align-items: stretch !important;
    margin-bottom: 10px !important;
  }

  .partners-grid img,
  .partners-grid .partner-card {
    width: calc(50% - 5px) !important;
    height: 96px !important;
    min-height: 96px !important;
    max-height: 96px !important;
    object-fit: contain !important;
    background-color: #ffffff !important;
    border-radius: 16px !important;
    box-sizing: border-box !important;
  }

  .organizer-logo-wrapper {
    flex-direction: row !important;
    align-items: center !important;
    gap: 24px !important;
  }

  .organizer-logo {
    width: 139.94px !important;
    height: 21.12px !important;
    flex-shrink: 0 !important;
  }

  .organizer-desc {
    width: 192.74px !important;
    font-family: var(--font-pragmatica-extended) !important;
    font-weight: 700 !important;
    font-size: 9.42px !important;
    line-height: 130% !important;
    text-transform: uppercase !important;
    color: #000000 !important;
  }

  .footer-card {
    flex-direction: column !important;
    gap: 24px !important;
    margin-bottom: 40px !important;
  }

  .footer-map {
    width: 100% !important;
    height: 280px !important;
  }

  .footer-address {
    font-size: 20px;
    margin-bottom: 16px !important;
  }

  .footer-email {
    font-size: 20px;
    margin-bottom: 24px !important;
  }

  .footer-btn {
    width: 100%;
    height: 60px;
    font-size: 16px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px !important;
  }

  .footer-massive-text {
    margin-top: 40px !important;
  }

  .footer-divider {
    display: none;
  }
}

/* ==========================================================================
   Scroll-Reveal & Entrance Animations
   ========================================================================== */

/* Marketing Quote Line-by-Line Scroll-Bound Fade-In */
.marketing-quote-text .quote-line {
  display: inline;
  opacity: var(--line-opacity, 0);
  transition: opacity 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity;
}

/* Partners Section Alternating Row Slide Animations */
.partners-grid.row-1 {
  opacity: var(--row-1-progress, 0);
  transform: translateX(calc((1 - var(--row-1-progress, 0)) * -100px));
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.partners-grid.row-2 {
  opacity: var(--row-2-progress, 0);
  transform: translateX(calc((1 - var(--row-2-progress, 0)) * 100px));
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.partners-grid.row-3 {
  opacity: var(--row-3-progress, 0);
  transform: translateX(calc((1 - var(--row-3-progress, 0)) * -100px));
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.organizer-logo-wrapper {
  opacity: var(--organizer-progress, 0);
  transform: translateX(calc((1 - var(--organizer-progress, 0)) * -60px));
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

/* Partners Section Alternating Row Slide Animations (Slowed Down) */
.partners-grid.row-1 {
  opacity: var(--row-1-progress, 0);
  transform: translateX(calc((1 - var(--row-1-progress, 0)) * -120px));
  transition: opacity 1.1s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1.1s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.partners-grid.row-2 {
  opacity: var(--row-2-progress, 0);
  transform: translateX(calc((1 - var(--row-2-progress, 0)) * 120px));
  transition: opacity 1.1s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1.1s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.partners-grid.row-3 {
  opacity: var(--row-3-progress, 0);
  transform: translateX(calc((1 - var(--row-3-progress, 0)) * -120px));
  transition: opacity 1.1s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1.1s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.organizer-logo-wrapper {
  display: flex;
  align-items: center;
  gap: 24px;
}

/* Organizer & Footer Sequential Fade-In & Slide-Up (1 to 8 + Massive Text) - Slowed Down */
.organizer-logo {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.1s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1.1s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.organizer-logo.is-visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.organizer-desc {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.1s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1.1s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: 0.1s;
  will-change: opacity, transform;
}

.organizer-desc.is-visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.footer-map {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.1s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1.1s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.footer-map.is-visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.footer-title {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.1s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1.1s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: 0.15s;
  will-change: opacity, transform;
}

.footer-title.is-visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.footer-address {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.1s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1.1s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: 0.3s;
  will-change: opacity, transform;
}

.footer-address.is-visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.footer-email {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.1s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1.1s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: 0.45s;
  will-change: opacity, transform;
}

.footer-email.is-visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.footer-btn {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.1s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1.1s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: 0.6s;
  will-change: opacity, transform;
}

.footer-btn.is-visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.footer-bottom {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.1s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1.1s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: 0.75s;
  will-change: opacity, transform;
}

.footer-bottom.is-visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.footer-massive-text {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: 0.4s;
  will-change: opacity, transform;
}

.footer-massive-text.is-visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* Scroll Reveal Base States */
[data-anim] {
  opacity: 0;
  will-change: opacity, transform;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-anim].is-visible {
  opacity: 1;
  transform: none;
}

/* Keyframes for Hero Block Entrance Animations */
@keyframes heroSlideFromLeft {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes heroFadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

/* Staggered Hero Entrance Animations (Line-by-Line Top to Bottom) */
.hero-date {
  opacity: 0;
  transform: translateX(-50px);
  will-change: opacity, transform;
}

.hero-location {
  opacity: 0;
  transform: translateX(-50px);
  will-change: opacity, transform;
}

.hero-title {
  opacity: 0;
  transform: translateX(-50px);
  will-change: opacity, transform;
}

body.is-loaded .hero-date {
  animation: heroSlideFromLeft 0.75s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards;
}

body.is-loaded .hero-location {
  animation: heroSlideFromLeft 0.75s cubic-bezier(0.16, 1, 0.3, 1) 0.25s forwards;
}

body.is-loaded .hero-title {
  animation: heroSlideFromLeft 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
}

/* ==========================================================================
   Block 2 (About Section) Scroll Animations
   ========================================================================== */
@keyframes aboutCardSlideFromRight {
  0% {
    opacity: 0;
    transform: translateX(80px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes bubblePopFromTail {
  0% {
    opacity: 0;
    transform: scale(0);
  }

  70% {
    opacity: 1;
    transform: scale(1.06);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.about-card-wrapper {
  opacity: 0;
  transform: translateX(80px);
  will-change: opacity, transform;
}

.about-card-wrapper.is-visible {
  animation: aboutCardSlideFromRight 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards;
}

.about-text-year {
  opacity: 0;
  will-change: opacity;
}

.about-text-desc {
  opacity: 0;
  will-change: opacity;
}

.about-card-wrapper.is-visible .about-text-year {
  animation: heroFadeIn 0.65s ease-out 0.45s forwards;
}

.about-card-wrapper.is-visible .about-text-desc {
  animation: heroFadeIn 0.75s ease-out 0.65s forwards;
}

/* Speech Bubbles Scale Pop-in from Arrow Tails */
.bubble {
  opacity: 0;
  transform: scale(0);
  will-change: opacity, transform;
}

.bubble-speed {
  transform-origin: 46.5px bottom;
}

.bubble-ai {
  transform-origin: 45px bottom;
}

.bubble-human {
  transform-origin: 60px bottom;
}

.bubble-system {
  transform-origin: 210px bottom;
}

.about-card-wrapper.is-visible .bubble-speed {
  animation: bubblePopFromTail 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.75s forwards;
}

.about-card-wrapper.is-visible .bubble-ai {
  animation: bubblePopFromTail 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.9s forwards;
}

.about-card-wrapper.is-visible .bubble-human {
  animation: bubblePopFromTail 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 1.05s forwards;
}

.about-card-wrapper.is-visible .bubble-system {
  animation: bubblePopFromTail 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 1.2s forwards;
}

.about-glow,
.tickets-glow-1,
.tickets-glow-2,
.reviews-glow {
  animation: none !important;
}

/* Hover micro-animations (retained) */
.review-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.bubble {
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    height 0.25s ease, width 0.25s ease, border-radius 0.25s ease;
}

.bubble:hover {
  transform: translateY(-4px);
}

.about-glow,
.tickets-glow-1,
.tickets-glow-2,
.reviews-glow {
  animation: none !important;
}