*,*::before,*::after{margin:0;padding:0;box-sizing:border-box;-webkit-tap-highlight-color:transparent}
:root{
  --bg:#111111;
  --white:#F5F5F5;
  --red:#BB2560;
  --muted:rgba(245,245,240,.4);
  --border:rgba(245,245,240,.08);
  --r-sm:10px;
  --r-md:18px;
  --r-lg:28px;
  --gold:#CA8A04;
  --gold-btn-bg:linear-gradient(135deg, rgba(202,138,4,0.2) 0%, rgba(202,138,4,0.05) 100%);
  --gold-btn-hover:linear-gradient(135deg, rgba(202,138,4,0.35) 0%, rgba(202,138,4,0.1) 100%);
  --gold-border:rgba(202,138,4,0.5);
  --gold-border-hover:rgba(202,138,4,0.8);
  --gold-shadow:rgba(202,138,4,0.1);
  --gold-shadow-hover:rgba(202,138,4,0.2);
  --white-pure:#FAFAF9;
  --white-muted:rgba(250,250,249,0.6);
}
[data-theme="light"]{
  --bg:#F5F5F5;
  --white:#111111;
  --red:#BB2560;
  --muted:rgba(17,17,17,.45);
  --border:rgba(17,17,17,.1);
  --gold:#854D0E;
  --gold-btn-bg:linear-gradient(135deg, rgba(133,77,14,0.15) 0%, rgba(133,77,14,0.04) 100%);
  --gold-btn-hover:linear-gradient(135deg, rgba(133,77,14,0.25) 0%, rgba(133,77,14,0.08) 100%);
  --gold-border:rgba(133,77,14,0.4);
  --gold-border-hover:rgba(133,77,14,0.7);
  --gold-shadow:rgba(133,77,14,0.08);
  --gold-shadow-hover:rgba(133,77,14,0.15);
  --white-pure:#111111;
  --white-muted:rgba(17,17,17,0.65);
}
/* LENIS BASE CSS */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }
.lenis.lenis-scrolling iframe { pointer-events: none; }
body{transition:background .5s cubic-bezier(.4,0,.2,1),color .5s cubic-bezier(.4,0,.2,1)}
.r{opacity:0;transform:translateY(32px);transition:opacity .8s cubic-bezier(.16,1,0.3,1),transform .8s cubic-bezier(.16,1,0.3,1);animation:r-fallback 0s 4s forwards}
@keyframes r-fallback{to{opacity:1;transform:translateY(0)}}
.r.in{opacity:1;transform:translateY(0);animation:none}
body{
  font-family:'Inter',sans-serif;
  background:var(--bg);
  color:var(--white);
  overflow-x:hidden;
  cursor:none;
  -webkit-font-smoothing:antialiased;
}

/* Analog Film Grain / Noise Overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  opacity: 0.015;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px;
  pointer-events: none;
}

/* Custom Sleek Scrollbar */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: rgba(17,17,17, 0.6);
}
::-webkit-scrollbar-thumb {
  background: var(--red);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: #D42870;
}

/* Scroll Progress Bar */
#scrollBar {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--red), #D42870, var(--red));
  z-index: 10000;
  box-shadow: 0 0 8px rgba(187,37,96, 0.6);
  pointer-events: none;
  transition: width 0.05s linear;
}

/* CURSOR */
#cur{position:fixed;width:6px;height:6px;background:var(--red);border-radius:50%;pointer-events:none;z-index:9999;transform:translate(-50%,-50%);transition:width .15s,height .15s,border-radius .15s,background .3s;display:flex;align-items:center;justify-content:center;overflow:hidden;}
#cur span{display:none;font-family:'Inter',sans-serif;font-size:10px;font-weight:700;color:#000;text-transform:uppercase;letter-spacing:.05em;line-height:1;text-align:center;margin:0;padding:0;}
#cur.big{width:40px;height:40px;background:transparent;border:1px solid var(--white);}
#cur.next-mode{width:60px;height:60px;background:var(--white);border:none;}
#cur.next-mode span{display:block;}



/* SIDEBAR вЂ” surinder.design pattern */
.sidebar{
  position:fixed;
  top:0;left:0;
  width:280px;
  height:100vh;
  background:rgba(14,14,14,.97);
  backdrop-filter:blur(20px);
  -webkit-backdrop-filter:blur(20px);
  border-right:1px solid var(--border);
  z-index:1000;
  display:flex;
  flex-direction:column;
  padding:32px 24px;
  overflow-y:auto;
  /* Скрыт по умолчанию — выезжает только по клику */
  transform: translateX(-100%);
  transition:transform .4s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}
.sidebar.open{
  transform: translateX(0);
}
.sidebar-close{
  display:flex;  /* Всегда видима внутри сайдбара */
  position:absolute;
  top:20px;right:20px;
  width:32px;height:32px;
  border-radius:50%;
  background:rgba(255,255,255,.06);
  border:1px solid var(--border);
  color:var(--muted);
  font-size:14px;
  cursor:pointer;
  align-items:center;
  justify-content:center;
  transition:all .2s;
  z-index:10;
}
.sidebar-close:hover{color:var(--white);background:rgba(255,255,255,.1)}
[data-theme="light"] .sidebar{background:rgba(240,240,235,.95)}
.sidebar-logo{
  font-family:'Inter',sans-serif;
  font-size:13px;
  font-weight:900;
  letter-spacing:.15em;
  color:var(--white);
  text-transform:uppercase;
  text-decoration:none;
  display:flex;
  align-items:center;
  gap:8px;
  margin-bottom:28px;
}

.sidebar-photo{
  width:80px;
  height:80px;
  border-radius:50%;
  object-fit:cover;
  object-position:center top;
  border:2px solid var(--border);
  margin-bottom:16px;
  filter:grayscale(20%);
}
.sidebar-name{
  font-family:'Inter',sans-serif;
  font-size:16px;
  font-weight:700;
  margin-bottom:6px;
}
.sidebar-role{
  font-size:10px;
  letter-spacing:.2em;
  text-transform:uppercase;
  color:var(--muted);
  line-height:1.6;
  margin-bottom:16px;
}
.sidebar-avail{
  display:inline-flex;
  align-items:center;
  gap:6px;
  font-size:10px;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:var(--muted);
  border:1px solid var(--border);
  padding:6px 12px;
  border-radius:100px;
  margin-bottom:28px;
}
.sidebar-avail-dot{
  width:6px;height:6px;
  border-radius:50%;
  background:#4ade80;
  animation:pulse 1.8s ease infinite;
}

/* SECTIONS LIST */
.sidebar-label{
  font-size:9px;
  letter-spacing:.3em;
  text-transform:uppercase;
  color:var(--muted);
  margin-bottom:12px;
  padding-bottom:8px;
  border-bottom:1px dashed var(--border);
}
.sidebar-sections{
  list-style:none;
  display:flex;
  flex-direction:column;
  gap:2px;
  flex:1;
}
.sidebar-link{
  display:flex;
  align-items:center;
  gap:12px;
  padding:10px 12px;
  border-radius:var(--r-sm);
  text-decoration:none;
  color:var(--muted);
  transition:all .2s;
  cursor:pointer;
}
.sidebar-link:hover{background:rgba(255,255,255,.04);color:var(--white)}
.sidebar-link.active{background:rgba(187,37,96,.08);color:var(--white)}
.sidebar-link-num{
  width:24px;height:24px;
  border-radius:50%;
  border:1px solid var(--border);
  display:flex;
  align-items:center;
  justify-content:center;
  font-family:'Inter',sans-serif;
  font-size:9px;
  font-weight:700;
  flex-shrink:0;
  transition:all .2s;
}
.sidebar-link.active .sidebar-link-num{
  background:var(--red);
  border-color:var(--red);
  color:#fff;
}
.sidebar-link-text{
  font-size:13px;
  font-weight:400;
  flex:1;
}
.sidebar-link-meta{
  font-size:10px;
  color:var(--muted);
  font-family:'Inter',sans-serif;
  font-style:normal;
  opacity:.6;
}

/* SIDEBAR BOTTOM */
.sidebar-bottom{
  margin-top:auto;
  padding-top:20px;
  border-top:1px solid var(--border);
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.sidebar-controls{
  display:flex;
  align-items:center;
  gap:8px;
}
.sidebar-ctrl-btn{
  position: relative;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--white);
  background: none;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 6px 12px;
  cursor: pointer;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  transition: border-color 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), color 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.sidebar-ctrl-btn::before {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--white);
  z-index: -1;
  transition: top 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.sidebar-ctrl-btn:hover {
  color: #111111;
  border-color: var(--white);
}
.sidebar-ctrl-btn:hover::before {
  top: 0;
}
[data-theme="light"] .sidebar-ctrl-btn:hover {
  color: #F5F5F5;
}
[data-theme="light"] .sidebar-ctrl-btn::before {
  background: #111111;
}/* THEME TOGGLE SWITCH */
.theme-toggle{
  position:relative;
  width:52px;
  height:28px;
  flex-shrink:0;
  border-radius:14px;
  background:rgba(255,255,255,.08);
  border: 1px solid var(--border);
  cursor:pointer;
  transition:background .3s,border-color .3s;
  display:flex;
  align-items:center;
  padding:0 3px;
}
.theme-toggle:hover{
  border-color:var(--white);
}
[data-theme="light"] .theme-toggle{
  background:rgba(0,0,0,.06);
}
.theme-toggle-knob{
  width:22px;
  height:22px;
  border-radius:50%;
  background:var(--white);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:14px;
  transition:transform .35s cubic-bezier(.4,0,.2,1),background .3s;
  box-shadow:0 2px 8px rgba(0,0,0,.3);
  position: relative;
  overflow: hidden;
}
.theme-toggle:hover .theme-toggle-knob {
  transform: scale(1.05);
}
[data-theme="light"] .theme-toggle:hover .theme-toggle-knob {
  transform: translateX(24px) scale(1.05);
}
[data-theme="light"] .theme-toggle-knob{
  transform:translateX(24px);
  background:#111111;
}

/* Иконки Солнце и Луна */
.icon-sun, .icon-moon {
  position: absolute;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s ease;
}
.icon-sun {
  color:#111111;
  transform: translateY(0) rotate(0deg);
  opacity: 1;
}
.icon-moon {
  color:#F5F5F5;
  transform: translateY(20px) rotate(-90deg);
  opacity: 0;
}
[data-theme="light"] .icon-sun {
  transform: translateY(-20px) rotate(90deg);
  opacity: 0;
}
[data-theme="light"] .icon-moon {
  transform: translateY(0) rotate(0deg);
  opacity: 1;
}

/* Анимации при наведении и нажатии */
.theme-toggle:hover .icon-sun {
  transform: rotate(45deg);
}
.theme-toggle:active .icon-sun {
  transform: scale(0.8) rotate(90deg);
}
[data-theme="light"] .theme-toggle:hover .icon-moon {
  transform: rotate(-25deg);
}
[data-theme="light"] .theme-toggle:active .icon-moon {
  transform: scale(0.8) rotate(-45deg);
}

/* VIEW TRANSITIONS API - RIPPLE WIPE */
::view-transition-old(root),
::view-transition-new(root) {
  animation: none;
  mix-blend-mode: normal;
}
::view-transition-old(root) {
  z-index: 1;
}
::view-transition-new(root) {
  z-index: 2;
}

.sidebar-socials{
  display:flex;
  gap:12px;
}
.sidebar-soc{
  position: relative;
  width: 32px;
  height: 32px;
  color: var(--white);
  text-decoration: none;
  border: 1px solid var(--border);
  border-radius: 50%;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  transition: border-color 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), color 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.sidebar-soc iconify-icon {
  font-size: 16px;
  display: flex;
}
.sidebar-soc::before {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--white);
  z-index: -1;
  transition: top 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.sidebar-soc:hover {
  color: #111111;
  border-color: var(--white);
}
.sidebar-soc:hover::before {
  top: 0;
}
[data-theme="light"] .sidebar-soc:hover {
  color: #F5F5F5;
}
[data-theme="light"] .sidebar-soc::before {
  background: #111111;
}

/* MAIN CONTENT — sidebar теперь скрыт, контент на всю ширину */
.main-content{
  margin-left: 0;
  width: 100%;
}

/* MOBILE BURGER */
.burger{
  display:none;
  position:fixed;
  top:16px;left:16px;
  z-index:200;
  width:40px;height:40px;
  border-radius:50%;
  background:rgba(14,14,14,.9);
  border:1px solid var(--border);
  color:var(--white);
  font-size:16px;
  cursor:pointer;
  align-items:center;
  justify-content:center;
  backdrop-filter:blur(8px);
}
.sidebar-overlay{
  display:none;
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.7);
  z-index:999;
  backdrop-filter: blur(2px);
  -webkit-tap-highlight-color:transparent;
  transition: opacity .4s ease;
}
.sidebar-overlay.open{
  display:block;
}

/* OLD NAV вЂ” kept as fallback classes */
.nav-cta{font-size:11px;letter-spacing:.15em;text-transform:uppercase;color:var(--bg);text-decoration:none;background:var(--red);padding:9px 18px;border-radius:var(--r-sm);transition:opacity .2s}
.nav-cta:hover{opacity:.85}
.nav-btn{background:none;border:1px solid var(--border);color:var(--white);cursor:none;padding:7px 14px;border-radius:var(--r-sm);font-family:'Inter',sans-serif;font-size:11px;letter-spacing:.1em;text-transform:uppercase;transition:border-color .2s,color .2s}
.nav-btn:hover{border-color:var(--white)}

/* HERO вЂ” surinder.design layout: label top, title fills, bottom row */
#hero{
  min-height:100vh;
  display:grid;
  grid-template-rows:1fr auto; /* Убрали первую строку (auto), так как верхнего блока больше нет */
  padding:0 5%;
  padding-top: 90px;
  padding-bottom: 24px; /* Уменьшили нижний отступ, чтобы кнопка влезала */
  position: relative;
}
/* в•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђ
   HERO MOSAIC вЂ” telescope.fyi scattered layout
   8 cards floating across full viewport
   в•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђ */
.hero-mosaic {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

/* Individual card wrapper */
.hm-card {
  position: absolute;
  pointer-events: auto;
  cursor: pointer;
  border-radius: var(--r-md);
  overflow: hidden;
  background: #0e0e0e;
  box-shadow: 0 12px 40px rgba(0,0,0,0.45), 0 2px 8px rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.07);
  transition:
    transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.5s ease,
    border-color 0.4s ease;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  -webkit-mask-image: -webkit-radial-gradient(white, black);
}

.hm-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(20%) brightness(0.9);
  transition:
    filter 0.5s ease,
    opacity 0.5s ease,
    transform 0.5s ease;
}

/* Hover state */
.hm-card:hover {
  box-shadow: 0 24px 60px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.14);
  z-index: 5;
}
.hm-card:hover img {
  filter: grayscale(0%) brightness(1);
}
.hm-card:active {
  transform: scale(0.97) !important;
  box-shadow: 0 8px 24px rgba(0,0,0,0.6) !important;
  transition: transform 0.1s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.1s ease !important;
}

.hm-card::after {
  content: attr(data-hint);
  position: absolute;
  bottom: 8px;
  left: 8px;
  background: rgba(17,17,17, 0.75);
  backdrop-filter: blur(4px);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 4px 8px;
  border-radius: var(--r-sm);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hm-card:hover::after {
  opacity: 1;
  transform: translateY(0);
}

/* Click to swap вЂ” fade out state */
.hm-card.swapping img {
  opacity: 0;
  transform: scale(0.92);
  filter: blur(8px) grayscale(100%);
}

/* в”Ђв”Ђ 8 card positions вЂ” aspect-ratio matches each image exactly в”Ђв”Ђ */

/* Card 1 вЂ” cafe.webp 600x1066 в‰€ 9:16 portrait */
.hm-1 {
  width: clamp(88px, 8.8vw, 115px);
  aspect-ratio: 600 / 1066;
  top: 4%;
  left: 4%;
  transform: rotate(-8deg);
  animation: float1 7s ease-in-out infinite;
}

/* Card 2 вЂ” jacket video, 9:16 portrait */
.hm-2 {
  width: clamp(105px, 10.5vw, 138px);
  aspect-ratio: 9 / 16;
  top: 5%;
  left: 19%;
  transform: rotate(5deg);
  animation: float2 9s ease-in-out infinite;
}

/* Card 3 вЂ” photo_2026-05-20_22-32-46.jpg 853x1280 в‰€ 2:3 portrait */
.hm-3 {
  width: clamp(85px, 8.5vw, 108px);
  aspect-ratio: 853 / 1280;
  top: 52%;
  left: 3%;
  transform: rotate(-6deg);
  animation: float3 8s ease-in-out infinite;
}

/* Card 4 вЂ” photo_2026-05-20_22-33-18.jpg 717x1280 в‰€ 9:16 portrait */
.hm-4 {
  width: clamp(88px, 8.8vw, 112px);
  aspect-ratio: 717 / 1280;
  bottom: 20%;
  left: 16%;
  transform: rotate(6deg);
  animation: float4 10s ease-in-out infinite;
}

/* Card 5 вЂ” yanovsky.webp 600x1066 в‰€ 9:16 portrait */
.hm-5 {
  width: clamp(92px, 9.2vw, 118px);
  aspect-ratio: 600 / 1066;
  top: 5%;
  right: 21%;
  transform: rotate(-5deg);
  animation: float5 8.5s ease-in-out infinite;
}

/* Card 6 вЂ” photo_2026-05-20_22-33-07.jpg 853x1280 в‰€ 2:3 portrait */
.hm-6 {
  width: clamp(85px, 8.5vw, 108px);
  aspect-ratio: 853 / 1280;
  top: 52%;
  right: 3%;
  transform: rotate(10deg);
  animation: float6 7.5s ease-in-out infinite;
}

/* Card 7 вЂ” photo_2026-05-20_22-33-10.jpg 853x1280 в‰€ 2:3 portrait */
.hm-7 {
  width: clamp(88px, 8.8vw, 112px);
  aspect-ratio: 853 / 1280;
  bottom: 22%;
  right: 16%;
  transform: rotate(-7deg);
  animation: float7 9.5s ease-in-out infinite;
}

/* Card 8 вЂ” IMG_2684.JPG 723x1280 в‰€ 9:16 portrait */
.hm-8 {
  width: clamp(62px, 6.2vw, 80px);
  aspect-ratio: 723 / 1280;
  top: 3%;
  right: 4%;
  transform: rotate(4deg);
  animation: float8 11s ease-in-out infinite;
}

/* в”Ђв”Ђ Floating keyframes (subtle to prevent overlaps) в”Ђв”Ђ */
@keyframes float1 { 0%,100%{translate:0 0}   50%{translate:3px -8px} }
@keyframes float2 { 0%,100%{translate:0 0}   50%{translate:-4px 6px} }
@keyframes float3 { 0%,100%{translate:0 0}   50%{translate:5px -5px} }
@keyframes float4 { 0%,100%{translate:0 0}   50%{translate:-3px 8px} }
@keyframes float5 { 0%,100%{translate:0 0}   50%{translate:3px -7px} }
@keyframes float6 { 0%,100%{translate:0 0}   50%{translate:-5px 4px} }
@keyframes float7 { 0%,100%{translate:0 0}   50%{translate:4px -6px} }
@keyframes float8 { 0%,100%{translate:0 0}   50%{translate:-2px 8px} }



.hero-top{
  display:flex;
  justify-content:space-between;
  align-items:center;
  opacity:1;              /* было opacity:0 — теперь видим сразу */
  transform:none;         /* было translateY(12px) */
  /* animation:up удалена */
}
.hero-label{
  font-size:11px;
  letter-spacing:.3em;
  text-transform:uppercase;
  color:var(--red);
}
.hero-year{
  font-size:11px;
  letter-spacing:.2em;
  text-transform:uppercase;
  color:var(--muted);
}
.hero-center{
  display:flex;
  align-items: flex-start;
  justify-content:center;
  padding: 24px 0 16px; /* Немного ужали отступы (было 40px 0 24px) */
  position: relative;
  z-index: 2;
  pointer-events: auto;
}
.hero-title-container{
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  width:100%;
}
.hero-tagline {
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0;
  transform: translateY(16px);
}
.hero-taglines-left {
  display: flex;
  flex-direction: column;
  align-self: flex-start;
  text-align: left;
  margin-left: 8%;
  margin-top: 12px;
  max-width: 320px;
  gap: 8px;
}
.hero-tagline--left {
  font-size: clamp(13px, 2.2vw, 18px);
  font-weight: 900;
  letter-spacing: -0.01em;
  line-height: 1.2;
  /* animation:up удалена */
}
.hero-tagline--left-sub {
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0.75;
  font-size: clamp(10px, 1.6vw, 12px);
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.3;
  /* animation:up удалена */
}
.hero-tagline--right {
  font-size: clamp(13px, 2.2vw, 18px);
  font-weight: 900;
  letter-spacing: -0.01em;
  align-self: flex-end;
  text-align: right;
  margin-right: 8%;
  margin-top: 8px;
  max-width: 280px;
  line-height: 1.2;
  /* animation:up удалена */
}

/* в”Ђв”Ђ Video Showcase Placeholder в”Ђв”Ђ */
/* Hero subtitle — new minimal design */
.hero-subtitle-main {
  font-family: 'Inter', sans-serif;
  font-size: clamp(14px, 2vw, 20px);
  font-weight: 400;
  color: var(--muted);
  line-height: 1.65;
  text-align: center;
  max-width: 580px;
  margin: 0 auto clamp(24px, 3vh, 36px);
  opacity: 1;      /* было 0 */
  transform: none; /* было translateY(16px) */
  /* animation:up удалена */
}

/* Hero logo-text — shown top-left in hero */
.hero-logo-text {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
}

/* Video Showcase Placeholder — wider 16:9 */
.hero-video-container {
  position: relative;
  width: 90%;
  max-width: 700px; /* Чуть меньше видео, чтобы 100% влезало по высоте (было 760px) */
  margin: clamp(16px, 3vh, 32px) auto 0; /* Ужали margin-top (было 24-48) */
  border-radius: var(--r-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.65), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  overflow: hidden;
  opacity: 1;      /* было 0 */
  transform: none; /* было translateY(20px) */
  animation: dynamicBoxGlow 5s infinite alternate ease-in-out 1s; /* оставляем glow эффект */
  pointer-events: auto;
  cursor: pointer;
}

@keyframes dynamicBoxGlow {
  0% { box-shadow: 0 20px 45px rgba(0, 0, 0, 0.65), 0 0 30px rgba(255, 255, 255, 0.02), inset 0 1px 0 rgba(255, 255, 255, 0.05); }
  100% { box-shadow: 0 20px 45px rgba(0, 0, 0, 0.65), 0 0 70px rgba(255, 255, 255, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.05); }
}

/* Muted video preview inside container */
.hero-video-preview {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  display: block;
  border-radius: var(--r-md);
}

/* Dark overlay on top of video */
.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.50);
  z-index: 1;
  transition: background 0.35s ease;
  border-radius: var(--r-md);
}

.hero-video-container:hover .hero-video-overlay {
  background: rgba(0, 0, 0, 0.30);
}
.hero-video-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(187,37,96, 0.12) 0%, rgba(0, 0, 0, 0) 70%);
  z-index: 1;
  pointer-events: none;
}
.hero-video-placeholder {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: calc(var(--r-md) - 1px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: background 0.3s;
}
.hero-video-container:hover .hero-video-placeholder {
  background: transparent;
}
.hero-video-placeholder .play-btn {
  width: clamp(52px, 8vw, 64px);
  height: clamp(52px, 8vw, 64px);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}
.hero-video-placeholder:hover .play-btn {
  transform: scale(1.1);
  background: rgba(187, 37, 96, 0.2);
  border-color: var(--red);
  box-shadow: 0 0 30px rgba(187, 37, 96, 0.4);
  animation: playPulse 1.5s infinite;
}

@keyframes playPulse {
  0% { box-shadow: 0 0 0 0 rgba(187, 37, 96, 0.6); }
  70% { box-shadow: 0 0 0 20px rgba(187, 37, 96, 0); }
  100% { box-shadow: 0 0 0 0 rgba(187, 37, 96, 0); }
}
.hero-video-placeholder .play-icon {
  font-size: clamp(20px, 3vw, 24px);
  color: var(--white);
  margin-left: 3px;
  transition: color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.hero-video-placeholder .video-badge {
  margin-top: 14px;
  font-family: 'Inter', sans-serif;
  font-size: clamp(8px, 1.2vw, 10px);
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--muted);
  text-transform: uppercase;
}
.hero-title {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(38px, 6.5vw, 76px);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  opacity: 1;      /* было 0 */
  transform: none; /* было translateY(32px) */
  animation: dynamicTextGlow 4s infinite alternate ease-in-out 0.3s; /* оставляем glow */
  text-align: center;
  margin-top: 0;
  margin-bottom: 16px;
}
@keyframes dynamicTextGlow {
  0% { text-shadow: 0 0 10px rgba(255, 255, 255, 0); }
  100% { text-shadow: 0 0 40px rgba(255, 255, 255, 0.15); }
}
.hero-title .serif {
  font-family: 'Unbounded', sans-serif;
  font-style: normal;
  font-weight: 300;
  color: var(--muted);
}
.hero-bottom{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  opacity:1;       /* было 0 */
  transform:none;  /* было translateY(16px) */
  /* animation:up удалена */
  border-top:1px solid var(--border);
  padding-top: 20px; /* Было 28px */
  position: relative;
  z-index: 2;
  pointer-events: auto;
}
.hero-sub{
  font-size:14px;
  color:var(--muted);
  line-height:1.75;
  max-width:340px;
}
.hero-link{
  display:inline-flex;
  align-items:center;
  gap:12px;
  font-size:11px;
  letter-spacing:.2em;
  text-transform:uppercase;
  color:#fff;
  text-decoration:none;
  background:var(--red);
  border:1px solid var(--red);
  padding:16px 28px;
  border-radius:var(--r-md);
  font-weight:700;
  transition:border-color .3s,background .3s,color .3s,transform .3s,box-shadow .3s;
  flex-shrink:0;
  box-shadow: 0 4px 15px rgba(187,37,96,0.25);
}
.hero-link:hover{
  background:transparent;
  border-color:var(--white);
  color:var(--white);
  transform:translateY(-2px);
  box-shadow: 0 8px 25px rgba(187,37,96,0.15);
}
@keyframes up{to{opacity:1;transform:translateY(0)}}
@keyframes up-muted{to{opacity:0.75;transform:translateY(0)}}

/* MARQUEE вЂ” telescope.fyi dual-row */
.marquee-wrap{border-top:1px solid var(--border);border-bottom:1px solid var(--border);overflow:hidden;padding:0;margin:80px 0;-webkit-mask-image:linear-gradient(to right,transparent,#000 8%,#000 92%,transparent);mask-image:linear-gradient(to right,transparent,#000 8%,#000 92%,transparent)}
.marquee-row{display:flex;gap:48px;width:max-content;padding:14px 0}
.marquee-row--fwd{animation:mq-fwd 20s linear infinite}
.marquee-row--rev{animation:mq-rev 24s linear infinite}
.marquee-wrap:hover .marquee-row{animation-play-state:paused}
.marquee-item{font-family:'Inter',sans-serif;font-size:11px;letter-spacing:.2em;text-transform:uppercase;color:var(--muted);white-space:nowrap;flex-shrink:0}
.marquee-item span{color:var(--red);margin:0 8px}
@keyframes mq-fwd{to{transform:translateX(-50%)}}
@keyframes mq-rev{from{transform:translateX(-50%)}to{transform:translateX(0)}}


/* URGENCY PILL вЂ” surinder.design */
.urgency{display:inline-flex;align-items:center;gap:8px;border:1px solid rgba(187,37,96,.3);padding:8px 16px;border-radius:100px;margin-bottom:32px}
.urgency-dot{width:6px;height:6px;border-radius:50%;background:var(--red);animation:pulse 1.8s ease infinite}
@keyframes pulse{0%,100%{opacity:1;transform:scale(1)}50%{opacity:.5;transform:scale(.7)}}
.urgency-text{font-size:11px;letter-spacing:.15em;text-transform:uppercase;color:var(--muted)}
.urgency-text strong{color:var(--white)}

/* SECTION */
.section{padding:50px 5% 100px}
.section-num{font-size:10px;letter-spacing:.3em;text-transform:uppercase;color:var(--red);margin-bottom:20px}
.section-title {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.02em;
  margin-bottom: 48px;
  word-break: keep-all;
  overflow-wrap: normal;
}
/* Заголовок секции кейсов выровнен по ширине с карточками (900px) */
#cases .section-title { max-width: 900px; margin-left: auto; margin-right: auto; }

/* ──── MAINTENANCE BANNER / ПЛАШКА ТЕХРАБОТ ──── */
.maintenance-bar {
  width: 100%;
  background: rgba(20, 16, 10, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(245, 158, 11, 0.25);
  padding: 8px 5%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: var(--white);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
  position: relative;
  z-index: 1002;
}

.maintenance-content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 12px;
  max-width: 1200px;
  text-align: center;
}

.maintenance-pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #f59e0b;
  box-shadow: 0 0 8px #f59e0b;
  animation: maintPulse 1.8s infinite ease-in-out;
  flex-shrink: 0;
}

@keyframes maintPulse {
  0% { transform: scale(0.9); opacity: 0.6; box-shadow: 0 0 4px #f59e0b; }
  50% { transform: scale(1.25); opacity: 1; box-shadow: 0 0 12px #f59e0b; }
  100% { transform: scale(0.9); opacity: 0.6; box-shadow: 0 0 4px #f59e0b; }
}

.maintenance-badge {
  font-family: 'Unbounded', sans-serif;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(245, 158, 11, 0.15);
  color: #fbbf24;
  border: 1px solid rgba(245, 158, 11, 0.35);
  padding: 2px 7px;
  border-radius: 6px;
  white-space: nowrap;
}

.maintenance-text {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.4;
}

.maintenance-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--white);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: var(--red);
  text-underline-offset: 3px;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.maintenance-link:hover {
  color: var(--red);
  text-decoration-color: var(--white);
}

[data-theme="light"] .maintenance-bar {
  background: rgba(255, 251, 235, 0.96);
  border-bottom-color: rgba(217, 119, 6, 0.3);
  color: #111;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .maintenance-text {
  color: #451a03;
}

[data-theme="light"] .maintenance-link {
  color: #92400e;
  text-decoration-color: #d97706;
}

[data-theme="light"] .maintenance-link:hover {
  color: var(--red);
}

/* FULL-WIDTH SITE HEADER */
.capsule-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1001;
  display: block;
}
.capsule-nav {
  display: flex;
  align-items: center;
  background: rgba(12, 12, 12, 0.82);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  /* Убираем border-radius — теперь это полноширинная шапка */
  border-radius: 0;
  padding: 0 5%;
  height: 60px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}
[data-theme="light"] .capsule-nav {
  background: rgba(245, 245, 240, 0.88);
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.capsule-logo {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 900;
  color: var(--white);
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 0.08em;
  /* логотип — слева */
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 6px;
}
.capsule-links {
  display: flex;
  align-items: center;
  gap: 32px;
  /* центр шапки */
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.capsule-links a {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--white-muted);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.25s ease;
}
.capsule-links a:hover {
  color: var(--white);
}
.capsule-cta-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.25s ease, opacity 0.25s ease;
  flex-shrink: 0;
  margin-left: 16px;
}
.capsule-cta-btn iconify-icon {
  font-size: 16px;
}
.capsule-cta-btn:hover {
  transform: scale(1.08);
  opacity: 0.9;
}

/* Правая группа шапки */
.capsule-right {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

/* Кнопка языка в шапке */
.capsule-lang-btn {
  background: none;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 6px;
  color: rgba(255,255,255,0.6);
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 5px 10px;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}
.capsule-lang-btn:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
[data-theme="light"] .capsule-lang-btn {
  border-color: rgba(0,0,0,0.15);
  color: rgba(0,0,0,0.5);
}





/* AGENCY */
#agency {
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
#agency::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(circle at 50% 50%, #000 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(circle at 50% 50%, #000 30%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
[data-theme="light"] #agency::before {
  background-image: 
    linear-gradient(to right, rgba(0, 0, 0, 0.015) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.015) 1px, transparent 1px);
}
.agency-intro-wrap {
  max-width: 680px;
  margin-bottom: 48px;
  position: relative;
  z-index: 1;
}
.agency-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 6px 14px;
  border-radius: 100px;
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 24px;
}
[data-theme="light"] .agency-tag {
  border-color: rgba(0, 0, 0, 0.08);
}
.tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 8px var(--red);
}
.agency-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
  position: relative;
  z-index: 1;
}
.agency-stat-tile {
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 200px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
[data-theme="light"] .agency-stat-tile {
  background: rgba(0, 0, 0, 0.015);
}
.agency-stat-tile:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}
[data-theme="light"] .agency-stat-tile:hover {
  border-color: rgba(0, 0, 0, 0.15);
  background: rgba(0, 0, 0, 0.03);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
}
.tile-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width 0.4s ease;
}
.agency-stat-tile:hover .tile-bar {
  width: 100%;
}
.tile-accent-dot {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transition: background 0.3s, box-shadow 0.3s;
}
[data-theme="light"] .tile-accent-dot {
  background: rgba(0, 0, 0, 0.1);
}
.agency-stat-tile:hover .tile-accent-dot {
  background: var(--red);
  box-shadow: 0 0 10px var(--red);
}
.agency-stat-tile .stat-num {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(32px, 3.5vw, 44px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  transition: color 0.3s;
}
.agency-stat-tile:hover .stat-num {
  color: var(--red);
}
.agency-stat-tile .stat-label {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 12px;
  line-height: 1.5;
  font-weight: 500;
}
.agency-stat-tile--brand {
  background: radial-gradient(circle at center, rgba(187,37,96, 0.12) 0%, rgba(17,17,17, 0) 80%), rgba(255, 255, 255, 0.01);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-color: rgba(187,37,96, 0.2);
}
[data-theme="light"] .agency-stat-tile--brand {
  background: radial-gradient(circle at center, rgba(187,37,96, 0.06) 0%, rgba(240, 240, 235, 0) 80%), rgba(0, 0, 0, 0.01);
  border-color: rgba(187,37,96, 0.1);
}
.brandy-logo-wrap {
  text-align: center;
  position: relative;
  z-index: 2;
}
.brandy-glow-logo {
  font-family: 'Unbounded', sans-serif;
  font-size: 28px;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: 0.05em;
  text-shadow: 0 0 20px rgba(187,37,96, 0.4);
}
.brandy-sub-glow {
  font-family: 'Inter', sans-serif;
  font-size: 8px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 8px;
}
.grid-scanning-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--red), transparent);
  opacity: 0.6;
  animation: scan 4s linear infinite;
  pointer-events: none;
  z-index: 1;
}
@keyframes scan {
  0% { top: 0%; }
  50% { top: 100%; }
  100% { top: 0%; }
}
.agency-trust {
  margin-top: 80px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
  position: relative;
  z-index: 1;
}
.trust-title {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.trust-ticker-wrap {
  overflow: hidden;
  position: relative;
  width: 100%;
  padding: 16px 0;
  mask-image: linear-gradient(to right, transparent, #000 15%, #000 85%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 15%, #000 85%, transparent);
}
.trust-ticker-track {
  display: flex;
  gap: 80px;
  width: max-content;
  animation: ticker 30s linear infinite;
  align-items: center;
}
@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.trust-logo {
  font-family: 'Inter', sans-serif;
  font-size: clamp(14px, 2vw, 18px);
  font-weight: 700;
  color: var(--muted);
  letter-spacing: .05em;
  text-transform: uppercase;
  transition: color 0.3s, text-shadow 0.3s;
  cursor: default;
  white-space: nowrap;
}
.trust-logo:hover {
  color: var(--white);
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

@media(max-width: 900px) {
  .agency-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .agency-stat-tile--brand {
    grid-column: span 2;
    min-height: 160px;
  }
}


/* ABOUT */
#about {
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.about-grid {
  display: grid;
  grid-template-columns: minmax(280px, 380px) 1fr;
  gap: 64px;
  align-items: stretch;
}
.about-photo-container {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 480px;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(187,37,96,0.1);
  border: 1px solid rgba(255,255,255,0.06);
}
[data-theme="light"] .about-photo-container {
  border-color: rgba(0, 0, 0, 0.05);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.05);
}
.about-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  display: block;
  border-radius: var(--r-lg);
  filter: grayscale(10%) contrast(1.08);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.about-photo-container:hover .about-photo {
  filter: grayscale(0%) contrast(1.1);
  transform: scale(1.03);
}

/* Photo Scanner Line */
.photo-scanner-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--red), transparent);
  box-shadow: 0 0 10px var(--red), 0 0 20px var(--red);
  opacity: 0.8;
  animation: photo-scan 5s ease-in-out infinite;
  z-index: 2;
  pointer-events: none;
}
@keyframes photo-scan {
  0% { top: 0%; }
  50% { top: 100%; }
  100% { top: 0%; }
}

/* Photo Viewfinder Corners */
.photo-corner {
  position: absolute;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  z-index: 3;
  pointer-events: none;
  transition: all 0.3s ease;
}
[data-theme="light"] .photo-corner {
  border-color: rgba(0, 0, 0, 0.3);
}
.about-photo-container:hover .photo-corner {
  border-color: var(--red);
  box-shadow: 0 0 8px var(--red);
}
.photo-corner--tl {
  top: 16px;
  left: 16px;
  border-right: none;
  border-bottom: none;
}
.photo-corner--tr {
  top: 16px;
  right: 16px;
  border-left: none;
  border-bottom: none;
}
.photo-corner--bl {
  bottom: 16px;
  left: 16px;
  border-right: none;
  border-top: none;
}
.photo-corner--br {
  bottom: 16px;
  right: 16px;
  border-left: none;
  border-top: none;
}

.about-text {
  padding-top: 20px;
  max-width: 680px;
}
.about-p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 20px;
}
.about-p strong {
  color: var(--white);
  font-weight: 500;
}
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 40px;
}
.stat-item {
  padding: 28px 24px 24px;
  border: 1px solid rgba(255,255,255,0.08);
  border-left: 2px solid var(--red);
  border-radius: var(--r-md);
  background: rgba(187,37,96,0.04);
  position: relative;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 110px;
}
.stat-item:hover {
  transform: translateY(-3px);
  border-color: rgba(187,37,96,0.5);
  border-left-color: var(--red);
  background: rgba(187,37,96,0.07);
  box-shadow: 0 12px 32px rgba(187,37,96,0.12);
}
/* Fix tile-bar for stat items */
.stat-item:hover .tile-bar {
  width: 100%;
}
.stat-item:hover .tile-accent-dot {
  background: var(--red);
  box-shadow: 0 0 8px var(--red);
}
.stat-item .stat-num {
  font-family: 'Unbounded', sans-serif;
  font-size: 34px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  transition: color 0.3s;
  margin-bottom: 6px;
}
.stat-item:hover .stat-num {
  color: var(--red);
}
.stat-item .stat-label {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  font-family: 'Inter', sans-serif;
}

.about-concept-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:40px;
  margin-top:80px;
  border-top:1px solid var(--border);
  padding-top:80px;
}
.concept-title{
  font-family:'Inter',sans-serif;
  font-size:14px;
  font-weight:700;
  color:var(--white);
  margin-bottom:16px;
  text-transform:uppercase;
  letter-spacing:.05em;
}
.concept-desc{
  font-size:14px;
  line-height:1.7;
  color:var(--muted);
}

.about-vs-wrap {
  width: 100%;
  margin-top: 80px;
  border-top: 1px solid var(--border);
  padding-top: 80px;
}
.vs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.vs-card {
  padding: 40px;
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.01);
  position: relative;
  overflow: hidden;
}
.vs-card--classic {
  background: rgba(255, 255, 255, 0.01);
}
.vs-card--ai {
  border-color: var(--gold);
  background: linear-gradient(135deg, rgba(202, 138, 4, 0.03) 0%, rgba(0, 0, 0, 0) 100%);
  box-shadow: 0 10px 30px var(--gold-shadow);
}
.vs-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--gold);
  color: #000;
  font-size: 10px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.vs-card-header {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 32px;
  text-transform: uppercase;
}
.vs-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.vs-list li {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 14px;
}
.vs-prop {
  font-weight: 500;
  color: var(--white);
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.05em;
}
.vs-val {
  color: var(--muted);
  line-height: 1.5;
}
.vs-card--ai .vs-prop {
  color: var(--gold);
}

/* в•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђ
   PROJECTS вЂ” GSAP Horizontal Scroll Gallery
   Card size locked: wrapper 65vh (max 600px), aspect-ratio 3/4
   в•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђ */
#projects, #iiavatar {
  border-top: 1px solid var(--border);
  /* overflow: hidden СѓР±СЂР°РЅ вЂ” GSAP РёСЃРїРѕР»СЊР·СѓРµС‚ transform, Р° РЅРµ overflow.
     РќР° РјРѕР±РёР»Рµ overflow:hidden Р±Р»РѕРєРёСЂСѓРµС‚ РЅР°С‚РёРІРЅС‹Р№ РіРѕСЂРёР·РѕРЅС‚Р°Р»СЊРЅС‹Р№ СЃРєСЂРѕР»Р» */
  padding-bottom: 50px;
}

/* Projects Filter Bar */
.projects-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0 5%;
  margin-top: 24px;
  margin-bottom: 40px;
  z-index: 10;
  position: relative;
}

.filter-btn {
  font-family: 'Unbounded', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  background: transparent;
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: var(--r-sm);
  cursor: none;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.filter-btn:hover {
  color: var(--white);
  border-color: var(--white);
}

.filter-btn.active {
  color: var(--white);
  background: var(--red);
  border-color: var(--red);
  box-shadow: 0 0 12px rgba(187,37,96, 0.3);
}

/* Horizontal track */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 0 5% 40px;
  width: 100%;
}

/* Hide scrollbar (GSAP handles scrolling) */
.projects-grid::-webkit-scrollbar { display: none; }

/* Individual card вЂ” strict size control */
.proj-card {
  flex-shrink: 0;
  position: relative;
  cursor: none;
  width: auto;
  /* Card height = wrapper + caption */
  display: flex;
  flex-direction: column;
}

.proj-card-img-wrap {
  overflow: hidden;
  border-radius: var(--r-md);
  background: #111;
  position: relative;
  width: 100%;
  height: 65vh;
  max-height: 700px;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  touch-action: manipulation; /* СѓР±РёСЂР°РµРј 300ms tap delay РЅР° РјРѕР±РёР»Рµ */
  /* РђСЃРёРјРјРµС‚СЂРёС‡РЅР°СЏ РїР»Р°РІРЅР°СЏ Р°РЅРёРјР°С†РёСЏ РІРѕР·РІСЂР°С‰РµРЅРёСЏ (0.6s) */
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s ease;
}
.proj-card-img-wrap:active {
  /* Р‘С‹СЃС‚СЂС‹Р№ РѕС‚РєР»РёРє РЅР° С„РёР·РёС‡РµСЃРєРѕРµ РЅР°Р¶Р°С‚РёРµ (0.1s) */
  transform: scale(0.975) translateY(2px) !important;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.8) !important;
  transition: transform 0.1s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.1s ease !important;
}

.proj-card-img-wrap img,
.proj-card-img-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: var(--r-md);
  pointer-events: none; /* РєР»РёРєРё РїСЂРѕС…РѕРґСЏС‚ Рє .proj-card-img-wrap */
  transition:
    transform 0.8s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.4s ease;
}

.proj-card:hover .proj-card-img-wrap img,
.proj-card:hover .proj-card-img-wrap video {
  transform: scale(1.03);
}

.proj-card.changing .proj-card-img-wrap img,
.proj-card.changing .proj-card-img-wrap video {
  opacity: 0.4;
  transform: scale(1.05);
}

/* Caption below image */
.proj-caption {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-top: 16px;
  flex-shrink: 0;
}

.proj-name {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
}

.proj-tag {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}



/* CASES */
#cases{border-top:1px solid var(--border)}
.case-cards-container {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 32px 0 48px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.case-cards-container::-webkit-scrollbar {
  display: none;
}
.case-card {
  flex: 0 0 380px;
  scroll-snap-align: start;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 480px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
[data-theme="light"] .case-card {
  background: rgba(0, 0, 0, 0.02);
}
.case-card:hover {
  border-color: rgba(187,37,96, 0.4);
  background: rgba(187,37,96, 0.02);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}
.case-card-profile {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.case-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red) 0%, #ff4d61 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(187,37,96, 0.2);
}
.case-user-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.case-user-name {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin: 0;
}
.case-user-handle {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--muted);
}
.case-comment {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.7;
  color: var(--white);
  opacity: 0.9;
  margin-bottom: 32px;
  flex-grow: 1;
}
.case-results {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  border-top: 1px solid var(--border);
  padding-top: 24px;
}
.case-res-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  padding: 12px 8px;
  border-radius: var(--r-sm);
  text-align: center;
  transition: all 0.3s;
}
[data-theme="light"] .case-res-item {
  background: rgba(0, 0, 0, 0.03);
}
.case-card:hover .case-res-item {
  border-color: rgba(187,37,96, 0.2);
  background: rgba(187,37,96, 0.01);
}
.case-res-val {
  font-family: 'Unbounded', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--red);
}
.case-res-lbl {
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

/* в•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђ
   CASE CARDS вЂ” redesign v2
в•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђв•ђ */
.cases-new-list {
  display: flex;
  flex-direction: column;
  gap: 24px;          /* было 32px — уменьшаем отступ между карточками */
  padding-top: 40px;
  max-width: 900px;   /* ОГРАНИЧИВАЕМ ШИРИНУ БЛОКА КЕЙСОВ */
  margin: 0 auto;     /* центрируем */
  width: 100%;
}

/* в”Ђв”Ђ Card shell в”Ђв”Ђ */
/* в”Ђв”Ђ Two-column card: [inner: phone|media] | [info] в”Ђв”Ђ */
/* ──── ДЕСКТОП: Карточка кейса — 3-колоночный grid ──── */
.case-new-card {
  background: #111;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  padding: 28px 30px;  /* было 32px 36px */
  position: relative;
  transition: border-color 0.35s, box-shadow 0.35s;
  display: grid;
  /* INFO=180px | SCREENSHOT+STATS=1fr | PHONE=180px */
  grid-template-columns: 180px 1fr 180px;
  gap: 20px;           /* было 24px */
  align-items: center;
  min-height: 320px;   /* было 380px */
}

.case-new-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 30%; height: 100%;
  background: radial-gradient(ellipse at 0% 50%, rgba(187,37,96,0.07), transparent 70%);
  pointer-events: none;
  border-radius: inherit;
}
.case-new-card:hover {
  border-color: rgba(187,37,96,0.3);
  box-shadow: 0 0 60px rgba(187,37,96,0.07);
}

/* ──── КОЛ 1: ИНФО (визуально первая, order:0 по умолчанию) ──── */
.case-new-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  height: 100%;
  position: relative;
  z-index: 1;
  order: 0; /* явно задаём первый */
}

/* ──── КОЛ 2: IG + цифры (визуально вторая, order:1) ──── */
.case-mid-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
  justify-content: center;
  border-left: 1px solid rgba(255,255,255,0.06);
  border-right: 1px solid rgba(255,255,255,0.06);
  padding: 0 24px;
  order: 1;
}

/* ──── КОЛ 3: ТЕЛЕФОН (визуально третий, order:2) ──── */
.case-new-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  order: 2;
}

/* ──── КОЛ 3: ИНФО (заголовок + цель + кнопка) ──── */

/* ──── IG-скриншот — контейнер ──── */
.case-new-media {
  position: relative;
  width: 100%;
  max-width: 360px;   /* было 480px — уменьшаем скрин */
  margin: 0 auto;     /* центр в колонке */
  aspect-ratio: 16 / 9;  /* 360px × 202px */
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 6px 22px rgba(0,0,0,0.5);
  transition: box-shadow 0.4s ease;
  flex-shrink: 0;
}
.case-new-media:hover {
  box-shadow: 0 12px 36px rgba(0,0,0,0.65);
}
.case-new-inner:hover .case-new-media {
  transform: none;
}
.case-ig-screenshot {
  width: 100%;
  height: 100%;       /* заполняет контейнер с aspect-ratio */
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.case-mid-col:hover .case-ig-screenshot {
  transform: scale(1.012);
}
.case-ig-label { display: none; }
.case-inner-name { display: none; }

/* ──── Phone mockup ──── */
.phone-frame {
  width: 100%;
  aspect-ratio: 9 / 16;   /* РїСЂРѕРїРѕСЂС†РёРё С‚РµР»РµС„РѕРЅР° */
  height: auto;
  background: #0d0d0d;
  border-radius: 28px;
  border: 1.5px solid rgba(187,37,96,0.5);
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
  touch-action: manipulation; /* СѓР±РёСЂР°РµРј 300ms tap delay РЅР° РјРѕР±РёР»Рµ */
  box-shadow:
    0 0 0 5px rgba(187,37,96,0.06),
    0 24px 56px rgba(0,0,0,0.7),
    inset 0 0 0 1px rgba(255,255,255,0.05);
  /* РђСЃРёРјРјРµС‚СЂРёС‡РЅР°СЏ РїР»Р°РІРЅР°СЏ Р°РЅРёРјР°С†РёСЏ РІРѕР·РІСЂР°С‰РµРЅРёСЏ (0.6s) */
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s ease;
}
.phone-frame:active {
  /* Р‘С‹СЃС‚СЂС‹Р№ РѕС‚РєР»РёРє РЅР° С„РёР·РёС‡РµСЃРєРѕРµ РЅР°Р¶Р°С‚РёРµ (0.1s) */
  transform: scale(0.97) translateY(2px) !important;
  box-shadow:
    0 0 0 3px rgba(187,37,96,0.04),
    0 12px 28px rgba(0,0,0,0.8),
    inset 0 0 0 1px rgba(255,255,255,0.03) !important;
  transition: transform 0.1s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.1s ease !important;
}
/* Notch */
.phone-frame::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 52px;
  height: 5px;
  background: rgba(255,255,255,0.1);
  border-radius: 3px;
  z-index: 5;
}
.phone-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  /* Р‘Р»РѕРєРёСЂСѓРµРј РЅР°С‚РёРІРЅС‹Р№ fullscreen: РєР»РёРєРё РїСЂРѕС…РѕРґСЏС‚ РЅР°СЃРєРІРѕР·СЊ Рє phone-frame */
  pointer-events: none;
}

/* в”Ђв”Ђ Play button overlay on case phone frames в”Ђв”Ђ */
.case-new-card .phone-frame {
  cursor: pointer;
}
.case-new-card .phone-frame::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  background: rgba(0,0,0,0.58) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23fff'%3E%3Cpath d='M8 5v14l11-7z'/%3E%3C/svg%3E") center 50%/26px no-repeat;
  border-radius: 50%;
  z-index: 6;
  pointer-events: none;
  border: 1.5px solid rgba(255,255,255,0.28);
  transition: transform 0.25s ease, background-color 0.25s ease;
  /* backdrop-filter СѓР±СЂР°РЅ вЂ” СЃРѕР·РґР°РІР°Р» РѕС‚РґРµР»СЊРЅС‹Р№ GPU СЃР»РѕР№, РєРѕС‚РѕСЂС‹Р№
     РЅР° iOS Safari РїРµСЂРµС…РІР°С‚С‹РІР°Р» С‚Р°С‡Рё РЅРµСЃРјРѕС‚СЂСЏ РЅР° pointer-events:none */
}
.case-new-card .phone-frame:hover::after {
  transform: translate(-50%, -50%) scale(1.15);
  background-color: rgba(187,37,96,0.65);
}

/* в”Ђв”Ђ Case Video Modal в”Ђв”Ђ */
.case-modal {
  position: fixed;
  inset: 0;
  z-index: 9998;
  background: rgba(0,0,0,0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  /* РЈСЃРєРѕСЂРµРЅРѕ: 0.15s РІРјРµСЃС‚Рѕ 0.3s */
  transition: opacity 0.15s ease, visibility 0.15s ease;
}
.case-modal.open {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
.case-modal-inner {
  position: relative;
  width: min(340px, 88vw);
  aspect-ratio: 9 / 16;
  max-height: 82vh;
  border-radius: 28px;
  overflow: hidden;          /* clip video to border-radius */
  transform: scale(0.88) translateY(20px);
  /* РЈСЃРєРѕСЂРµРЅРѕ: 0.2s, ease-out РІРјРµСЃС‚Рѕ spring вЂ” РЅРµС‚ overshoot РЅР° РјРѕР±РёР»Рµ */
  transition: transform 0.2s cubic-bezier(0.25, 1, 0.5, 1);
  box-shadow: 0 40px 100px rgba(0,0,0,0.85), 0 0 0 1px rgba(255,255,255,0.06);
}
.case-modal.open .case-modal-inner {
  transform: scale(1) translateY(0);
}
.case-modal-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  /* border-radius СѓР±СЂР°РЅ вЂ” parent (case-modal-inner) РґРµР»Р°РµС‚ overflow:hidden + border-radius.
     border-radius РїСЂСЏРјРѕ РЅР° <video> РІ WebKit РѕР±СЂРµР·Р°РµС‚ shadow DOM РЅР°С‚РёРІРЅС‹С… РєРѕРЅС‚СЂРѕР»РѕРІ */
  pointer-events: auto;
  cursor: auto;
  touch-action: auto;
}
.case-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 10;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(17,17,17,0.7);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background 0.2s ease, transform 0.2s ease;
}
.case-modal-close:hover {
  background: rgba(187,37,96,0.75);
  transform: scale(1.1);
}

/* ── Info block styles (layout defined above in grid section) ── */
.case-new-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  height: 100%;
  position: relative;
  z-index: 1;
}
.case-new-header { display: flex; align-items: center; gap: 12px; }
.case-new-num { padding: 4px 10px; border-radius: 6px; font-size: 12px; border: 1px solid rgba(255,255,255,0.2); }
.case-new-title { font-size: 15px; }
.case-new-goal-label { font-size: 13px; margin-bottom: 4px; }
.case-new-goal-text { font-size: 12px; line-height: 1.5; color: rgba(255,255,255,0.5); }

/* в”Ђв”Ђ iOS unmute overlay button в”Ђв”Ђ */
.case-modal-unmute {
  display: none;
  position: absolute;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  align-items: center;
  gap: 8px;
  background: rgba(187,37,96,0.92);
  color: #fff;
  border: none;
  border-radius: 100px;
  padding: 10px 22px;
  font-family: 'Unbounded', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  cursor: pointer;
  z-index: 10;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 24px rgba(187,37,96,0.4);
  transition: transform 0.2s ease;
  white-space: nowrap;
}
.case-modal-unmute:active { transform: translateX(-50%) scale(0.96); }

/* в”Ђв”Ђ Custom Modal Controls (cmc) в”Ђв”Ђ */
.cmc {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  border-radius: 28px;
  pointer-events: none;          /* РїСЂРѕРїСѓСЃРєР°РµРј РєР»РёРєРё РЅР°СЃРєРІРѕР·СЊ Рє РІРёРґРµРѕ */
  transition: opacity 0.25s ease;
  z-index: 5;
}
.cmc.hidden { opacity: 0; }

/* Р¦РµРЅС‚СЂР°Р»СЊРЅР°СЏ Р±РѕР»СЊС€Р°СЏ РєРЅРѕРїРєР° play/pause */
.cmc-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 2px solid rgba(255,255,255,0.3);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  pointer-events: auto;          /* СЌС‚Р° РєРЅРѕРїРєР° РєР»РёРєР°Р±РµР»СЊРЅР° */
  transition: transform 0.15s ease, background 0.15s ease;
  z-index: 6;
}
.cmc-center:active { transform: translate(-50%, -50%) scale(0.9); }
.cmc-center svg { width: 26px; height: 26px; }

/* РќРёР¶РЅСЏСЏ РїР°РЅРµР»СЊ */
.cmc-bar {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px 16px;
  background: linear-gradient(transparent, rgba(0,0,0,0.72));
  border-radius: 0 0 28px 28px;
  pointer-events: auto;
  box-sizing: border-box;
}
.cmc-time, .cmc-dur {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  min-width: 30px;
  white-space: nowrap;
  flex-shrink: 0;
}
.cmc-dur { text-align: right; }

/* РџСЂРѕРіСЂРµСЃСЃ-Р±Р°СЂ */
.cmc-progress {
  flex: 1;
  height: 4px;
  background: rgba(255,255,255,0.25);
  border-radius: 4px;
  position: relative;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.cmc-progress-fill {
  height: 100%;
  background: #BB2560;
  border-radius: 4px;
  width: 0%;
  pointer-events: none;
}
.cmc-progress-thumb {
  position: absolute;
  top: 50%; right: auto;
  left: 0%;
  transform: translate(-50%, -50%);
  width: 14px; height: 14px;
  background: #fff;
  border-radius: 50%;
  pointer-events: none;
  transition: transform 0.1s;
}
.cmc-progress:active .cmc-progress-thumb {
  transform: translate(-50%, -50%) scale(1.3);
}

/* в”Ђв”Ђ Info block (now outside inner, side by side on desktop) в”Ђв”Ђ */
.case-new-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  height: 100%;
  position: relative;
  z-index: 1;
}

.case-new-header {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}
.case-new-num {
  width: auto;
  padding: 6px 14px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.4);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Unbounded', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
  letter-spacing: 0.03em;
}
.case-new-title {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--red);
  line-height: 1.2;
  margin: 0;
}
.case-new-handle {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-top: 5px;
}
.case-new-goal-label {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 8px;
}
.case-new-goal-text {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  line-height: 1.65;
  color: rgba(255,255,255,0.65);
  margin: 0;
}
.case-new-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--red);
  color: #fff;
  font-family: 'Unbounded', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 15px 32px;
  border-radius: 100px;
  text-decoration: none;
  width: fit-content;
  margin-top: 4px;
  transition: all 0.25s ease;
}
.case-new-cta:hover {
  opacity: 0.88;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(187,37,96,0.4);
}

/* Кнопка в карточке кейса */
.case-cta-bottom {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 12px 28px;
  border-radius: 10px;
  margin-top: 12px;
  box-shadow: 0 6px 24px rgba(187, 37, 96, 0.22);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.case-cta-bottom:hover {
  transform: scale(1.02) translateY(-2px);
  box-shadow: 0 15px 50px rgba(187, 37, 96, 0.5);
  background: #d82b6e;
  opacity: 1;
}

/* Мобильная цель (скрыта на десктопе) */
.case-goal-mobile {
  display: none;
}

/* ──── Stats: сетка 2x2 в средней колонке ──── */
.case-new-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 20px;
}
.case-new-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1 1 40%;
  min-width: max-content;
}
.case-stat-arrows {
  display: block;
  color: var(--red);
  font-size: 11px;
  letter-spacing: -1px;
  margin-bottom: 2px;
}
.case-stat-val {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(16px, 1.6vw, 22px);
  font-weight: 700;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 2px;
}
.case-stat-lbl {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  line-height: 1.4;
}

.cta-btn {

  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  background: var(--red);
  border: 1px solid var(--red);
  color: #fff;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 20px rgba(187,37,96,0.25);
}
.cta-btn:hover {
  background: transparent;
  border-color: var(--white);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(187,37,96,0.15);
}

/* CTA SECTION */
#cta {
  border-top: 1px solid var(--border);
  padding: 120px 5%;
}
.cta-container {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
  text-align: left;
}
/* ─── New clean centered CTA ─── */
.cta-container-new {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}
.cta-top-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.cta-heading {
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text);
  margin: 0;
}
.cta-heading .serif {
  font-style: italic;
}
.cta-sub {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}
.cta-reply-hint {
  font-size: 13px;
  color: var(--muted);
  opacity: 0.6;
  margin: 0;
  letter-spacing: 0.01em;
}
.cta-header-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 32px;
}
.cta-text-side {
  flex: 1;
  min-width: 280px;
}
.cta-avatar-cluster {
  display: flex;
  align-items: center;
  position: relative;
  height: 52px;
  padding-left: 20px;
}
.cluster-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 3px solid var(--bg);
  margin-left: -20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s;
}
.cluster-avatar:hover {
  transform: translateY(-6px) scale(1.08);
  z-index: 10;
}
.cta-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 700px;
  width: 100%;
}
.cta-form .form-group:nth-child(3),
.cta-form .checkbox-group,
.cta-form .cta-submit-btn {
  grid-column: span 2;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-group label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}
/* Лейбл чекбокса НЕ должен быть uppercase */
.checkbox-group label {
  text-transform: none;
  letter-spacing: 0;
  font-size: 13px;
  font-weight: 400;
}
.form-group input {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  outline: none;
  transition: border-color 0.3s;
  border-radius: 0;
}
.form-group input:focus {
  border-bottom-color: var(--red);
}
.cta-submit-btn {
  margin-top: 20px;
  padding: 22px 48px;
  background: var(--red);
  border: 1px solid var(--red);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s ease;
  box-shadow: 0 6px 28px rgba(187,37,96, 0.3);
  position: relative;
  overflow: hidden;
}
.cta-submit-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.08);
  opacity: 0;
  transition: opacity 0.3s;
}
.cta-submit-btn:hover::before { opacity: 1; }
.cta-submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(187,37,96, 0.4);
}
.cta-submit-btn:active {
  transform: translateY(-1px) scale(0.985);
  box-shadow: 0 4px 16px rgba(187,37,96, 0.2);
  transition: transform 0.1s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.1s ease;
}


/* FOOTER */
/* CALENDAR BOOKING */
.cta-calendar {
  max-width: 560px;
  width: 100%;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-lg);
  padding: 24px 28px;
  box-sizing: border-box;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.05);
  transition: box-shadow 0.4s ease;
}
.cal-hint {
  font-size: 12px;
  color: var(--red);
  letter-spacing: 0.04em;
  margin-bottom: 16px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
}
.cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.cal-month-name {
  font-family: 'Unbounded', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.05em;
}
.cal-nav {
  background: none;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  width: 28px;
  height: 28px;
  color: var(--white);
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.cal-nav:hover { border-color: var(--red); color: var(--red); }
.cal-wds {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
  margin-bottom: 4px;
}
.cal-wd {
  text-align: center;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.25);
  text-transform: uppercase;
  padding: 3px 0;
  font-family: 'Inter', sans-serif;
}
.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
  margin-bottom: 20px;
}
.cal-day {
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  border-radius: 6px;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: default;
  user-select: none;
  position: relative;
}
.cal-avail {
  color: var(--white);
  cursor: pointer;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
}
.cal-avail:hover { 
  background: rgba(187,37,96,0.25); 
  border-color: rgba(187,37,96,0.7); 
  transform: scale(1.08);
  box-shadow: 0 0 12px rgba(187,37,96,0.4);
  z-index: 2;
}
.cal-sel {
  background: var(--red) !important;
  border-color: var(--red) !important;
  color: #fff !important;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(187,37,96,0.4);
}
.cal-disabled { color: rgba(255,255,255,0.13); }
.cal-empty { background: transparent; border: none; }
.cal-times-section { margin-bottom: 18px; }
.cal-times-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 10px;
  font-family: 'Inter', sans-serif;
}
.cal-times { display: flex; flex-wrap: wrap; gap: 8px; }
.cal-time {
  padding: 7px 14px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 40px;
  background: transparent;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.2s;
  font-weight: 500;
}
.cal-time:hover:not(:disabled) { 
  border-color: var(--red); 
  color: var(--red); 
  transform: scale(1.05);
  box-shadow: 0 0 10px rgba(187,37,96,0.2);
}
.cal-time-sel {
  background: var(--red) !important;
  border-color: var(--red) !important;
  color: #fff !important;
  box-shadow: 0 4px 14px rgba(187,37,96,0.35);
}
.cal-time-bk { opacity: 0.25; cursor: not-allowed; text-decoration: line-through; }
.cal-confirm-section {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cal-sel-info { font-family: 'Inter', sans-serif; font-size: 15px; color: var(--muted); }
.cal-done { text-align: center; padding: 32px 20px; }
.cal-done-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 8px 32px rgba(187,37,96,0.45);
}
.cal-done-title {
  font-family: 'Unbounded', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.cal-done-date { font-size: 15px; color: var(--white); margin-bottom: 8px; font-weight: 500; }
.cal-done-sub { font-size: 14px; color: var(--muted); line-height: 1.7; }

footer{border-top:1px solid var(--border);padding:40px 5%;display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:20px}
.footer-logo{font-family:'Inter',sans-serif;font-size:11px;font-weight:700;letter-spacing:.15em;color:var(--muted)}
.footer-socials{display:flex;gap:24px;flex-wrap:wrap}
.footer-social{
  font-size:11px;
  letter-spacing:.15em;
  text-transform:uppercase;
  color:var(--muted);
  text-decoration:none;
  position:relative;
  transition:color .3s ease;
}
.footer-social::after{
  content:'';
  position:absolute;
  left:0;
  bottom:-2px;
  width:0;
  height:1px;
  background:var(--red);
  transition:width .3s ease;
}
.footer-social:hover{color:var(--white)}
.footer-social:hover::after{width:100%}
.footer-icons{display:flex;gap:12px}

/* SERIF ACCENT */
.serif{font-family:'Unbounded',sans-serif;font-style:normal;font-weight:300;font-size:1em;color:var(--white)}


/* TESTIMONIALS */
#testimonials{border-top:1px solid var(--border)}
.testimonial-carousel{position:relative;overflow:hidden;min-height:200px}
.testimonial-track{display:flex;transition:transform .5s ease}
.testimonial-slide{min-width:100%;padding:0 20px;box-sizing:border-box}
.testimonial-quote{font-family:'Inter',sans-serif;font-size:clamp(22px,3vw,36px);font-style:normal;font-weight:300;line-height:1.5;color:var(--white);margin-bottom:24px;position:relative;padding-left:32px}
.testimonial-quote::before{content:'вЂњ';position:absolute;left:0;top:-8px;font-size:48px;color:var(--red);font-family:'Inter',sans-serif}
.testimonial-author{font-size:13px;color:var(--muted);letter-spacing:.05em}
.testimonial-author strong{color:var(--white);font-weight:500}
.testimonial-dots{display:flex;gap:8px;margin-top:32px}
.testimonial-dot{width:8px;height:8px;border-radius:50%;background:var(--border);cursor:pointer;transition:background .2s,transform .2s;border:none}
.testimonial-dot.active{background:var(--red);transform:scale(1.3)}
.testimonial-mini{display:grid;grid-template-columns:repeat(4,1fr);gap:12px;margin-top:48px}
.testimonial-mini-card{padding:16px;border:1px solid var(--border);border-radius:var(--r-sm);text-align:center}
.testimonial-mini-stars{color:var(--red);font-size:12px;margin-bottom:6px;letter-spacing:2px}
.testimonial-mini-text{font-size:11px;color:var(--muted);letter-spacing:.08em;text-transform:uppercase}

/* FAQ */
#faq{border-top:1px solid var(--border)}
.faq-list{display:flex;flex-direction:column;gap:0}
.faq-item{border-bottom:1px solid var(--border);cursor:pointer;user-select:none}
.faq-question{display:flex;justify-content:space-between;align-items:center;padding:24px 0;gap:16px}
.faq-question-text{font-family:'Inter',sans-serif;font-size:14px;font-weight:500}
.faq-icon{font-size:20px;color:var(--muted);transition:transform .3s,color .2s;flex-shrink:0}
.faq-item.open .faq-icon{transform:rotate(45deg);color:var(--red)}
.faq-answer{max-height:0;overflow:hidden;transition:max-height .4s ease}
.faq-item.open .faq-answer{max-height:300px}
.faq-answer-inner{padding:0 0 24px;font-size:14px;color:var(--muted);line-height:1.8}

@media(min-width:769px) {
  .faq-item{
    display:grid;
    grid-template-columns:4.5fr 5.5fr;
    gap:40px;
    align-items:start;
    padding:32px 0;
    pointer-events:none;
    cursor:default;
  }
  .faq-question{
    padding:0;
    pointer-events:none;
    cursor:default;
  }
  .faq-icon{
    display:none;
  }
  .faq-answer{
    max-height:none !important;
    overflow:visible !important;
  }
  .faq-answer-inner{
    padding:0;
  }
}

/* COUNTER ANIMATION */
.counter-animated{display:inline-block}

/* IMAGE REVEAL */
.img-reveal{clip-path:inset(100% 0 0 0);transition:clip-path .8s ease}
.img-reveal.in{clip-path:inset(0 0 0 0)}


/* STAGGER REVEAL DELAYS */
.r[data-delay="1"]{transition-delay:.1s}
.r[data-delay="2"]{transition-delay:.2s}
.r[data-delay="3"]{transition-delay:.3s}
.r[data-delay="4"]{transition-delay:.4s}



/* SERVICES SECTION */
#services {
  border-top: 1px solid var(--border);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.service-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s, background-color 0.4s, box-shadow 0.4s;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(800px circle at var(--x, 0px) var(--y, 0px), rgba(187,37,96, 0.06), transparent 40%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  z-index: 1;
}
.service-card:hover::before {
  opacity: 1;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(187,37,96, 0.3);
  background: rgba(187,37,96, 0.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}
.service-card .tile-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 2;
}
.service-card:hover .tile-bar {
  transform: scaleX(1);
}
.service-card .tile-accent-dot {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 10px var(--red);
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 2;
}
.service-card:hover .tile-accent-dot {
  opacity: 1;
}
.service-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
.service-num {
  font-family: 'Unbounded', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--red);
}
.service-badge-price {
  font-family: 'Unbounded', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 0.02em;
}
.service-card-title {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.service-card-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}
.service-badge-pill {
  display: inline-block;
  align-self: flex-start;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--bg);
  background: var(--white);
  padding: 6px 12px;
  border-radius: 20px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.service-highlight-badge {
  color: var(--red);
  font-family: 'Unbounded', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.service-volume-tag {
  font-size: 11px;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 700;
  margin-bottom: 24px;
  letter-spacing: 0.06em;
}
.service-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-top: 1px solid var(--border);
  padding-top: 24px;
}
.service-features li {
  font-size: 13px;
  color: var(--white);
  position: relative;
  padding-left: 20px;
  line-height: 1.5;
}
.service-features li::before {
  content: 'В·';
  position: absolute;
  left: 4px;
  top: -2px;
  color: var(--red);
  font-size: 18px;
  font-weight: 900;
}
.service-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  color: var(--white);
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s;
  background: transparent;
  width: 100%;
}
.service-card:hover .service-btn {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
  box-shadow: 0 0 15px rgba(187,37,96, 0.4);
}

@media(max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}




/* в”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђ
   SAFARI BORDER-RADIUS CLIPPING BUG FIX (GPU)
   в”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђ */
.service-card,
.case-card,
.proj-card-img-wrap,
.about-photo-container,
.hm-card {
  transform: translate3d(0, 0, 0);
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  isolation: isolate;
}

/* в”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђ
   SPLIT TEXT CHARACTER BOUNCE ANIMATION
   в”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђв”Ђ */
.chars {
  display: inline-flex;
}
.chars span {
  display: inline-block;
  will-change: transform;
}

@keyframes jumpUp {
  0% { transform: translateY(0); }
  45% { transform: translateY(-55%); }
  100% { transform: translateY(0); }
}

/* Hover animation triggers */
.split-text:hover .chars span,
.capsule-links a:hover .chars span,
.sidebar-link:hover .split-text .chars span,
.service-card:hover .service-btn.split-text .chars span,
.cta-submit-btn:hover .split-text .chars span {
  animation: jumpUp 0.4s cubic-bezier(0.25, 1, 0.5, 1) calc(var(--i) * 14ms) both;
}

/* в”Ђв”Ђ CURSOR FIX: raise above grain overlay, video pass-through в”Ђв”Ђ */
#cur { z-index: 99999 !important; }
video { pointer-events: none; }

.video-click-overlay {
  position: absolute;
  inset: 0;
  z-index: 7;
  background: transparent;
  cursor: pointer;
}

/* в•ђв•ђ VIDEO SOON OVERLAY в•ђв•ђ */
.video-soon-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px 24px;
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.3) 70%, transparent 100%);
  pointer-events: none;
  z-index: 10;
}
.video-soon-inner { display: flex; flex-direction: column; gap: 4px; }
.video-soon-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 8px var(--red);
  margin-bottom: 4px;
  animation: soonPulse 1.4s ease-in-out infinite;
}
@keyframes soonPulse {
  0%,100%{opacity:1;transform:scale(1)}
  50%{opacity:.3;transform:scale(.7)}
}
.video-soon-label {
  font-family:'Inter',sans-serif; font-size:9px; font-weight:700;
  letter-spacing:.2em; text-transform:uppercase; color:var(--red); opacity:.9;
}
.video-soon-title {
  font-family:'Unbounded',sans-serif; font-size:28px; font-weight:900;
  color:#fff; letter-spacing:-.02em; line-height:1;
}
.video-soon-sub {
  font-family:'Inter',sans-serif; font-size:11px;
  color:rgba(255,255,255,.45); letter-spacing:.04em; margin-top:2px;
}
.video-soon-bar {
  width:100%; height:1.5px;
  background:rgba(255,255,255,.1); border-radius:2px;
  margin-top:12px; overflow:hidden;
}
.video-soon-bar-fill {
  height:100%; width:60%;
  background:linear-gradient(90deg,var(--red),rgba(187,37,96,.3));
  border-radius:2px;
  animation:soonBarAnim 2.8s ease-in-out infinite alternate;
}
@keyframes soonBarAnim {
  0%{width:45%;opacity:.7}
  100%{width:78%;opacity:1}
}

/* в”Ђв”Ђ CASE INSTAGRAM SCREENSHOT в”Ђв”Ђ */
.case-ig-screenshot {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  display: block;
  margin-bottom: 16px;
  border: 1px solid rgba(255,255,255,0.07);
}




/* ──── CONSENT CHECKBOX ──── */
.checkbox-group {
  display: flex;
  flex-direction: row !important;
  align-items: center;
  gap: 14px;
  margin-top: 8px;
  margin-bottom: 24px;
  padding: 14px 18px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  background: rgba(255,255,255,0.025);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  grid-column: span 2;
}
.checkbox-group:hover {
  border-color: rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.04);
}
.checkbox-group input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  min-width: 20px;
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: 6px;
  background: rgba(255,255,255,0.04);
  cursor: pointer;
  position: relative;
  transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
  flex-shrink: 0;
}
.checkbox-group input[type="checkbox"]:hover {
  border-color: rgba(255,255,255,0.45);
}
.checkbox-group input[type="checkbox"]:checked {
  background: var(--red);
  border-color: var(--red);
  box-shadow: 0 0 10px rgba(187,37,96,0.4);
}
.checkbox-group input[type="checkbox"]:checked::after {
  content: "";
  display: block;
  position: absolute;
  top: 3px; left: 6px;
  width: 5px; height: 9px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.consent-label {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
  cursor: pointer;
  text-transform: none !important;
  letter-spacing: 0;
  user-select: none;
}
.consent-label a {
  color: rgba(255,255,255,0.85);
  text-decoration: underline;
  text-decoration-color: rgba(255,255,255,0.25);
  text-underline-offset: 2px;
  transition: color 0.2s, text-decoration-color 0.2s;
  font-weight: 500;
}
.consent-label a:hover {
  color: #fff;
  text-decoration-color: rgba(255,255,255,0.6);
}
/* Light theme */
[data-theme="light"] .checkbox-group {
  border-color: rgba(0,0,0,0.08);
  background: rgba(0,0,0,0.02);
}
[data-theme="light"] .checkbox-group:hover {
  border-color: rgba(0,0,0,0.15);
  background: rgba(0,0,0,0.04);
}
[data-theme="light"] .checkbox-group input[type="checkbox"] {
  border-color: rgba(0,0,0,0.2);
  background: rgba(0,0,0,0.02);
}
[data-theme="light"] .consent-label {
  color: rgba(0,0,0,0.5);
}
[data-theme="light"] .consent-label a {
  color: rgba(0,0,0,0.75);
  text-decoration-color: rgba(0,0,0,0.25);
}
[data-theme="light"] .consent-label a:hover {
  color: #000;
}

/* ──── COOKIE BANNER BAR ──── */
.cookie-banner-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(14, 14, 14, 0.98);
  border-top: 1px solid rgba(255,255,255,0.08);
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.cookie-banner-bar.show {
  transform: translateY(0);
}
.cookie-bar-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.cookie-bar-text {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin: 0;
  line-height: 1.4;
}
.cookie-bar-text a {
  color: rgba(255,255,255,0.9);
  text-decoration: underline;
  text-decoration-color: rgba(255,255,255,0.2);
  transition: color 0.2s;
}
.cookie-bar-text a:hover {
  color: #fff;
}
.cookie-bar-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}
.cookie-bar-btn-outline {
  background: transparent;
  color: rgba(255,255,255,0.8);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 10px 20px;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 13px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.cookie-bar-btn-outline:hover {
  background: rgba(255,255,255,0.05);
  color: #fff;
}
.cookie-bar-btn-solid {
  background: var(--red);
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  transition: opacity 0.2s;
}
.cookie-bar-btn-solid:hover {
  opacity: 0.9;
}
[data-theme="light"] .cookie-banner-bar {
  background: rgba(255,255,255,0.98);
  border-top: 1px solid rgba(0,0,0,0.08);
}
[data-theme="light"] .cookie-bar-text { color: rgba(0,0,0,0.6); }
[data-theme="light"] .cookie-bar-text a { color: rgba(0,0,0,0.9); text-decoration-color: rgba(0,0,0,0.2); }
[data-theme="light"] .cookie-bar-text a:hover { color: #000; }
[data-theme="light"] .cookie-bar-btn-outline { color: rgba(0,0,0,0.8); border-color: rgba(0,0,0,0.2); }
[data-theme="light"] .cookie-bar-btn-outline:hover { background: rgba(0,0,0,0.03); color: #000; }

@media(max-width: 768px) {
  .cookie-bar-container {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px;
    gap: 16px;
  }
  .cookie-bar-actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}



/* PREMIUM FOOTER */
.footer-new {
  background-color: #000;
  border-top: 1px solid var(--border);
  padding: 60px 40px 40px;
  font-family: 'Inter', sans-serif;
  color: var(--white);
}

.footer-new-container { width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 2fr 3fr 2fr;
  gap: 30px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  font-family: 'Unbounded', sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.footer-slogan {
  font-size: 12px;
  color: rgba(245, 245, 240, 0.7);
  line-height: 1.5;
  margin-bottom: 24px;
}

.footer-copyright {
  font-size: 11px;
  color: rgba(245, 245, 240, 0.4);
  line-height: 1.4;
  margin-top: auto;
}

.nav-col {
  gap: 16px;
}

.footer-nav-link {
  font-size: 13px;
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-nav-link:hover {
  color: var(--red);
}

.contact-col {
  gap: 12px;
}

.footer-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 100px;
  color: var(--white);
  text-decoration: none;
  font-size: 13px;
  transition: all 0.3s ease;
}

.footer-contact-btn:hover {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.05);
}

.footer-contact-btn iconify-icon {
  font-size: 16px;
}

.footer-messengers {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 10px;
}

.footer-messengers span {
  font-size: 11px;
  color: rgba(245, 245, 240, 0.6);
  line-height: 1.3;
}

.footer-msg-icons {
  display: flex;
  gap: 8px;
}

.footer-msg-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--white);
  color: var(--bg);
  border-radius: 50%;
  font-size: 18px;
  text-decoration: none;
  transition: transform 0.3s ease, background 0.3s ease;
}

.footer-msg-icons a:hover {
  transform: scale(1.1);
  background: var(--red);
  color: var(--white);
}

.social-legal-col {
  padding-left: 20px;
}

.footer-social-header,
.footer-nav-header {
  font-size: 18px;
  font-family: 'Unbounded', sans-serif;
  margin-bottom: 16px;
}

.footer-social-links {
  display: flex;
  gap: 30px;
  margin-bottom: 20px;
}

.footer-social-links a {
  font-size: 13px;
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s ease;
  line-height: 1.4;
}

.footer-social-links a:hover {
  color: var(--red);
}

.footer-meta-note {
  font-size: 10px;
  color: rgba(245, 245, 240, 0.4);
  line-height: 1.4;
}

.details-col {
  text-align: right;
}

.footer-legal-details {
  font-size: 10px;
  color: rgba(245, 245, 240, 0.4);
  line-height: 1.5;
}

.footer-bottom-links {
  max-width: 1200px;
  margin: 20px auto 0;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
}

.footer-bottom-links a {
  font-size: 11px;
  color: rgba(245, 245, 240, 0.4);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
  color: var(--white);
}

@media (max-width: 1024px) {
  .footer-new-container { width: 100%;
    grid-template-columns: 1fr 1fr;
  }
  .social-legal-col {
    padding-left: 0;
  }
  .details-col {
    text-align: left;
  }
}

@media (max-width: 768px) {
  .footer-new-container { width: 100%;
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-new {
    padding: 40px 20px 20px;
  }
  .footer-bottom-links {
    flex-direction: column;
    gap: 12px;
  }
}


/* PREMIUM FOOTER */
.footer-new {
  background-color: var(--bg);
  border-top: 1px solid var(--border);
  padding: 80px 40px 40px;
  font-family: 'Inter', sans-serif;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.footer-new::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  opacity: 0.5;
}

.footer-new-container { width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.footer-top-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}

.footer-brand-massive {
  font-family: 'Unbounded', sans-serif;
  font-size: 80px;
  font-weight: 900;
  letter-spacing: 0.1em;
  background: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 150%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}

.footer-slogan {
  font-size: 16px;
  color: var(--muted);
  max-width: 500px;
  line-height: 1.5;
}

.footer-middle-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding: 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-heading {
  font-family: 'Unbounded', sans-serif;
  font-size: 14px;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-nav-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.footer-nav-grid a, .footer-contact-link {
  font-size: 14px;
  color: var(--muted);
  text-decoration: none;
  transition: all 0.3s ease;
  display: block;
}

.footer-contact-link {
  margin-bottom: 16px;
}

.footer-nav-grid a:hover, .footer-contact-link:hover {
  color: var(--red);
  transform: translateX(5px);
}

.footer-msg-icons {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.footer-msg-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(187, 37, 96, 0.1);
  color: var(--red);
  border: 1px solid rgba(187, 37, 96, 0.3);
  border-radius: 50%;
  font-size: 22px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-msg-icons a:hover {
  background: var(--red);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(187, 37, 96, 0.2);
}

.footer-legal-details {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.8;
}

.footer-meta-block {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.25);
  line-height: 1.6;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.footer-bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-copyright {
  font-size: 12px;
  color: var(--muted);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-bottom-links a {
  font-size: 12px;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
  color: var(--white);
}

@media (max-width: 960px) {
  .footer-middle-row {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 60px;
  }
  .footer-heading {
    margin-bottom: 20px;
  }
  .footer-msg-icons {
    justify-content: center;
  }
  .footer-bottom-row {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .footer-brand-massive {
    font-size: 50px;
  }
  .footer-new {
    padding: 60px 20px 30px;
  }
}

/* PREMIUM FOOTER */
.footer-new {
  background-color: var(--bg);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 60px 40px 40px;
  font-family: 'Inter', sans-serif;
  position: relative;
}
.footer-new-container { width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 2fr 2fr;
  gap: 40px;
}
.footer-logo {
  font-family: 'Unbounded', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}
.footer-slogan {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 24px;
  max-width: 250px;
}
.footer-copyright {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  line-height: 1.5;
}
.footer-nav-link {
  display: block;
  font-size: 14px;
  color: var(--white);
  text-decoration: none;
  margin-bottom: 16px;
  transition: color 0.3s ease;
}
.footer-nav-link:hover {
  color: var(--red);
}
.footer-contact-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  color: var(--white);
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 12px;
  transition: all 0.3s ease;
  width: fit-content;
}
.footer-contact-btn:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.3);
}
.footer-social-header,
.footer-nav-header {
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-social-links {
  display: flex;
  gap: 24px;
  margin-bottom: 16px;
}
.footer-social-links a {
  font-weight: 600;
  color: var(--white);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}
.footer-social-links a:hover {
  color: var(--red);
}
.footer-meta-note {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.25);
  line-height: 1.5;
}
.footer-bottom-bar { width: 100%;
  max-width: 1200px;
  margin: 60px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-bottom-bar a {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-bottom-bar a:hover {
  color: var(--white);
}

@media (max-width: 960px) {
  .footer-new-container { width: 100%;
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .footer-new-container { width: 100%;
    grid-template-columns: 1fr;
    text-align: center;
    gap: 32px;
  }
  .footer-slogan {
    margin: 0 auto 16px;
  }
  .footer-contact-btn {
    margin: 0 auto 12px;
  }
  .social-legal-col {
    padding-left: 0;
  }
  .footer-social-links {
    justify-content: center;
    gap: 40px;
  }
  .footer-msg-icons {
    justify-content: center;
  }
  .footer-bottom-bar { width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-top: 40px;
  }
}
