@charset "UTF-8";

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
}

:root {
  --red:    #ff0c3b;
  --red-d:  #d4002e;
  --red-g:  linear-gradient(135deg, #ff0c3b 0%, #d4002e 100%);
  --white:  #ffffff;
  --gray:   #f9f9f9;
  --text:   #1a1a2e;
  --muted:  #888;
  --container: 1300px;
  --container-gap: 64px;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: var(--red) #fff0f4;
}

#about,
#prices,
#advantages,
#why,
#delivery,
#cases,
#contacts,
#faq {
  scroll-margin-top: 104px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: #fff0f4;
}

::-webkit-scrollbar-thumb {
  background: var(--red-g);
  border: 3px solid #fff0f4;
  border-radius: 999px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--red-d);
}

.topbar {
  background: var(--red);
  padding: 6px 0;
  font-size: 12px;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.3px;
}
.topbar .wrap,
.header-inner {
  width: min(calc(100% - var(--container-gap)), var(--container));
  max-width: none;
  margin: 0 auto;
  padding: 0;
}
.topbar .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.topbar a { color: rgba(255,255,255,0.85); text-decoration: none; }
.topbar a:hover { color: #fff; }
.topbar-right { display: flex; gap: 24px; align-items: center; }
.topbar-right span { display: flex; align-items: center; gap: 5px; }

header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 24px rgba(255,12,59,0.10);
  border-bottom: 2px solid rgba(255,12,59,0.08);
}

.header-inner {
  height: 80px;
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.2vw, 32px);
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-icon {
  width: 52px;
  height: 52px;
  background: var(--red);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(255,12,59,0.35);
  transition: box-shadow .25s, transform .25s;
}
.logo:hover .logo-icon {
  box-shadow: 0 6px 24px rgba(255,12,59,0.55);
  transform: translateY(-1px);
}
.logo-icon img {
  display: block;
  width: 42px;
  height: 42px;
  object-fit: contain;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
  transition: transform .25s;
}
.logo:hover .logo-text {
  transform: translateY(-1px);
}
.logo-name {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--red);
  text-transform: uppercase;
}
.logo-name span { color: inherit; }
.logo-sub {
  font-size: 10px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-top: 3px;
}

.hdivider {
  width: 1px;
  height: 40px;
  background: rgba(0,0,0,0.1);
  flex-shrink: 0;
}

nav { flex: 1; display: flex; align-items: center; justify-content: center; height: 100%; }
nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 4px;
  height: 100%;
}
nav ul li a {
  display: block;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
  border-radius: 8px;
  position: relative;
  white-space: nowrap;
  transition: color .2s;
}
nav ul li a::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 4px;
  width: 0;
  height: 2px;
  background: var(--red);
  border-radius: 1px;
  transition: width .25s, left .25s;
}
nav ul li a:hover { color: var(--red); }
nav ul li a:hover::after { width: calc(100% - 28px); left: 14px; }

.socials {
  display: flex;
  gap: 8px;
  align-items: center;
}
.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--text);
  transition: background .2s, border-color .2s, color .2s, transform .2s;
}
.social-btn:hover {
  transform: translateY(-2px);
}
.social-btn.tg {
  background: #0088cc;
  border-color: #0088cc;
  color: #fff;
}
.social-btn.tg:hover  { background: #0088cc; border-color: #0088cc; color: #fff; }
.social-btn.max {
  background: linear-gradient(135deg, #1aa7ff 0%, #5867ff 48%, #7b42ff 100%);
  border-color: transparent;
}
.social-btn.max img {
  display: block;
  width: 21px;
  height: 21px;
  object-fit: contain;
}
.social-btn.max:hover {
  border-color: transparent;
}

.btn-call {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 22px;
  height: 46px;
  background: var(--red-g);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(255,12,59,0.35);
  transition: box-shadow .25s, transform .25s;
  white-space: nowrap;
  flex-shrink: 0;
  text-decoration: none;
}
.btn-call:hover {
  box-shadow: 0 6px 28px rgba(255,12,59,0.55);
  transform: translateY(-1px);
}
.btn-call svg { flex-shrink: 0; }

.btn-call .ring {
  position: relative;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn-call .ring::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  animation: pulse 2s ease-out infinite;
}
@keyframes pulse {
  0%   { transform: scale(1);   opacity: .6; }
  70%  { transform: scale(1.7); opacity: 0; }
  100% { transform: scale(1);   opacity: 0; }
}

.burger { display: none; }

.mobile-menu {
  display: none;
}

body.menu-open {
  overflow: hidden;
}

@media (max-width: 1320px) {
  .header-inner { gap: 18px; }
  nav ul li a {
    padding: 8px 10px;
    font-size: 11px;
    letter-spacing: 0.8px;
  }
  .btn-call { padding: 0 18px; }
}

@media (max-width: 1120px) {
  nav, .hdivider, .socials { display: none; }
  .header-inner { gap: 0; justify-content: space-between; }
  .burger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    position: relative;
    z-index: 4;
    transition: background .2s;
  }
  .burger:hover,
  .burger:focus-visible {
    background: rgba(255,12,59,0.07);
  }
  .burger span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--text);
    border-radius: 2px;
    transition: .3s;
  }
  .burger[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
  }
  .burger[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }
  .burger[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
  }

  .mobile-menu {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: calc(100vh - 80px);
    height: calc(100svh - 80px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    background: rgba(26,26,46,0.24);
    border-top: 1px solid rgba(255,12,59,0.08);
    transition: opacity .24s ease, visibility .24s ease;
  }

  header.is-menu-open .mobile-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .mobile-menu__panel {
    width: min(calc(100% - var(--container-gap)), var(--container));
    max-height: calc(100% - 18px);
    margin: 0 auto;
    padding: 18px;
    overflow-y: auto;
    background: rgba(255,255,255,0.98);
    border: 1px solid rgba(255,12,59,0.13);
    border-top: 0;
    border-radius: 0 0 22px 22px;
    box-shadow: 0 24px 54px rgba(24,18,32,0.18);
    transform: translateY(-14px);
    transition: transform .28s cubic-bezier(.2,.72,.2,1);
  }

  header.is-menu-open .mobile-menu__panel {
    transform: translateY(0);
  }

  .mobile-nav {
    display: flex;
    flex: none;
    height: auto;
    align-items: stretch;
    justify-content: stretch;
  }

  .mobile-nav ul {
    width: 100%;
    height: auto;
    display: grid;
    gap: 8px;
  }

  .mobile-nav ul li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 48px;
    padding: 0 14px;
    border: 1px solid rgba(255,12,59,0.10);
    border-radius: 12px;
    background: #fff7f9;
    color: var(--text);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .8px;
    line-height: 1.25;
    text-transform: uppercase;
  }

  .mobile-nav ul li a::after {
    content: '';
    position: static;
    width: 8px;
    height: 8px;
    flex: 0 0 8px;
    border-top: 2px solid rgba(255,12,59,0.72);
    border-right: 2px solid rgba(255,12,59,0.72);
    background: none;
    border-radius: 0;
    transform: rotate(45deg);
    transition: transform .2s;
  }

  .mobile-nav ul li a:hover,
  .mobile-nav ul li a:focus-visible {
    color: var(--red);
    border-color: rgba(255,12,59,0.22);
    background: #ffffff;
  }

  .mobile-nav ul li a:hover::after,
  .mobile-nav ul li a:focus-visible::after {
    width: 8px;
    left: auto;
    transform: translateX(2px) rotate(45deg);
  }

  .mobile-menu__bottom {
    display: grid;
    gap: 10px;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid rgba(26,26,46,0.08);
  }

  .mobile-phone {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    min-height: 52px;
    padding: 10px 14px;
    border: 1px solid rgba(255,12,59,0.14);
    border-radius: 14px;
    color: var(--text);
    text-decoration: none;
    background: #ffffff;
  }

  .mobile-phone span {
    color: #8c8995;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .7px;
    text-transform: uppercase;
  }

  .mobile-phone strong {
    color: var(--red);
    font-size: 14px;
    font-weight: 800;
    line-height: 1.2;
    text-align: right;
    white-space: nowrap;
  }

  .mobile-cta,
  .mobile-social {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 14px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .7px;
    text-decoration: none;
    text-transform: uppercase;
  }

  .mobile-cta {
    background: var(--red-g);
    box-shadow: 0 12px 28px rgba(255,12,59,0.22);
  }

  .mobile-socials {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .mobile-social--max {
    background: linear-gradient(135deg, #1aa7ff 0%, #5867ff 48%, #7b42ff 100%);
  }

  .mobile-social--tg {
    background: #0088cc;
  }

  .mobile-social img,
  .mobile-social svg {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
  }

  .mobile-social img {
    filter: brightness(10);
  }
}

@media (max-width: 900px) {
  :root { --container-gap: 40px; }
  .topbar { display: none; }
}

@media (max-width: 640px) {
  .btn-call { display: none; }
}

@media (max-width: 560px) {
  .mobile-menu__panel {
    width: min(calc(100% - 24px), var(--container));
    padding: 14px;
    border-radius: 0 0 18px 18px;
  }

  .mobile-phone {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .mobile-phone strong {
    text-align: left;
  }
}

.hero {
  background: var(--white);
  overflow: hidden;
  position: relative;
}

.hero-inner {
  width: min(calc(100% - var(--container-gap)), var(--container));
  margin: 0 auto;
  padding: 140px 0 10px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 28px;
  transform: translateY(-80px);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: rgba(255,12,59,0.06);
  border: 1px solid rgba(255,12,59,0.15);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--red);
  width: fit-content;
}
.badge-pulse {
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
  animation: badgePulse 2s ease-in-out infinite;
}
@keyframes badgePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .5; transform: scale(1.3); }
}

.hero-title {
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -1px;
  color: var(--text);
}
.hero-title em {
  font-style: normal;
  color: var(--red);
  position: relative;
}
.hero-title em::after {
  content: '';
  position: absolute;
  left: 0; bottom: 2px;
  width: 100%; height: 4px;
  background: var(--red-g);
  border-radius: 2px;
  opacity: .35;
}

.hero-desc {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  max-width: 620px;
}
.hero-desc strong {
  color: var(--red);
  font-weight: 700;
  white-space: nowrap;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 20px 24px;
  background: #f9f9f9;
  border-radius: 16px;
  width: fit-content;
}
.hero-stat { display: flex; flex-direction: column; gap: 2px; }
.hero-stat strong {
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
}
.hero-stat span {
  font-size: 11px;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0.3px;
}
.hero-stat-div { width: 1px; height: 36px; background: rgba(0,0,0,0.1); }

.hero-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.ha-primary {
  display: inline-flex;
  align-items: center;
  height: 52px;
  padding: 0 32px;
  background: var(--red-g);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  border-radius: 14px;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(255,12,59,0.35);
  transition: box-shadow .25s, transform .2s;
}
.ha-primary:hover { box-shadow: 0 10px 36px rgba(255,12,59,0.5); transform: translateY(-2px); }

.ha-tg, .ha-max {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 52px;
  padding: 0 22px;
  border-radius: 14px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
}
.ha-tg {
  background: #0088cc;
  color: #fff;
  box-shadow: 0 4px 16px rgba(0,136,204,0.3);
}
.ha-tg:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,136,204,0.45); }

.ha-max {
  background: linear-gradient(135deg, #1aa7ff 0%, #5867ff 48%, #7b42ff 100%);
  color: #fff;
  box-shadow: 0 4px 16px rgba(91,103,255,0.3);
}
.ha-max img { filter: brightness(10); }
.ha-max:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(91,103,255,0.45); }

.hero-hint {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.3px;
}

.hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  overflow: visible;
  min-height: 680px;
  transform: translate(40px, -30px);
}

.flowerglobus {
  --flower-base-x: 0px;
  --flower-base-y: 28px;
  --flower-base-scale: 1;
  position: relative;
  z-index: 2;
  display: block;
  width: min(620px, 100%);
  height: auto;
  transform: translate(var(--flower-base-x), var(--flower-base-y)) scale(var(--flower-base-scale));
  margin-top: -46px;
  object-fit: contain;
  pointer-events: none;
  filter: drop-shadow(0 24px 34px rgba(24,18,32,0.08));
  animation: heroFlowerFloat 7.5s ease-in-out infinite;
  transition: filter .65s cubic-bezier(.2,.7,.2,1);
  will-change: transform;
}

.supply-chain {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: -108px;
  transform: translateX(5px);
  overflow: hidden;
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(255,255,255,0.78);
  border-radius: 20px;
  padding: 16px 24px;
  backdrop-filter: blur(14px);
  box-shadow:
    0 22px 48px rgba(24,18,32,0.12),
    0 5px 18px rgba(255,12,59,0.08),
    inset 0 1px 0 rgba(255,255,255,0.86);
  z-index: 3;
  animation: supplyFloat 5.6s ease-in-out infinite;
  transition: box-shadow .65s cubic-bezier(.2,.7,.2,1);
  will-change: transform;
}

.hero:hover .supply-chain {
  box-shadow:
    0 28px 58px rgba(24,18,32,0.14),
    0 8px 22px rgba(255,12,59,0.12),
    inset 0 1px 0 rgba(255,255,255,0.9);
}

@keyframes heroFlowerFloat {
  0%, 100% {
    transform: translate(var(--flower-base-x), var(--flower-base-y)) scale(var(--flower-base-scale));
  }
  50% {
    transform: translate(var(--flower-base-x), calc(var(--flower-base-y) - 8px)) scale(var(--flower-base-scale));
  }
}

@keyframes supplyFloat {
  0%, 100% {
    transform: translateX(5px);
  }
  50% {
    transform: translate(5px, -9px);
  }
}

.supply-chain::before {
  content: '';
  position: absolute;
  left: 14px;
  right: 14px;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.95) 22%, rgba(255,255,255,0.95) 78%, transparent 100%);
  pointer-events: none;
}

.sc-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.sc-step span {
  font-size: 10px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.sc-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.8),
    0 8px 14px rgba(24,18,32,0.06);
}
.sc-rose  { background: linear-gradient(145deg, rgba(255,12,59,0.14), rgba(255,12,59,0.055));  color: var(--red); }
.sc-box   { background: linear-gradient(145deg, rgba(255,150,0,0.16), rgba(255,150,0,0.055));    color: #e07b00; }
.sc-plane { background: linear-gradient(145deg, rgba(0,136,204,0.15), rgba(0,136,204,0.055));    color: #0088cc; }
.sc-truck { background: linear-gradient(145deg, rgba(40,180,99,0.15), rgba(40,180,99,0.055));    color: #28b463; }

.sc-arrow {
  font-size: 16px;
  color: rgba(0,0,0,0.2);
  font-weight: 700;
  padding: 0 2px;
}

@media (prefers-reduced-motion: reduce) {
  .flowerglobus,
  .supply-chain {
    animation: none !important;
    transition-duration: 0.01ms !important;
    will-change: auto;
  }
}

.reveal-ready .reveal-on-scroll {
  opacity: 0;
  filter: blur(8px);
  transform: translate3d(0, 34px, 0);
  transition:
    opacity .78s cubic-bezier(.2,.72,.2,1),
    transform .78s cubic-bezier(.2,.72,.2,1),
    filter .78s cubic-bezier(.2,.72,.2,1),
    box-shadow .35s ease,
    border-color .35s ease,
    background .35s ease;
  transition-delay: 0ms;
}

.reveal-ready .reveal-on-scroll.reveal-delay-20 { transition-delay: 20ms; }
.reveal-ready .reveal-on-scroll.reveal-delay-40 { transition-delay: 40ms; }
.reveal-ready .reveal-on-scroll.reveal-delay-60 { transition-delay: 60ms; }
.reveal-ready .reveal-on-scroll.reveal-delay-80 { transition-delay: 80ms; }
.reveal-ready .reveal-on-scroll.reveal-delay-100 { transition-delay: 100ms; }
.reveal-ready .reveal-on-scroll.reveal-delay-120 { transition-delay: 120ms; }
.reveal-ready .reveal-on-scroll.reveal-delay-140 { transition-delay: 140ms; }
.reveal-ready .reveal-on-scroll.reveal-delay-160 { transition-delay: 160ms; }
.reveal-ready .reveal-on-scroll.reveal-delay-180 { transition-delay: 180ms; }
.reveal-ready .reveal-on-scroll.reveal-delay-200 { transition-delay: 200ms; }
.reveal-ready .reveal-on-scroll.reveal-delay-220 { transition-delay: 220ms; }
.reveal-ready .reveal-on-scroll.reveal-delay-240 { transition-delay: 240ms; }
.reveal-ready .reveal-on-scroll.reveal-delay-260 { transition-delay: 260ms; }
.reveal-ready .reveal-on-scroll.reveal-delay-280 { transition-delay: 280ms; }
.reveal-ready .reveal-on-scroll.reveal-delay-300 { transition-delay: 300ms; }
.reveal-ready .reveal-on-scroll.reveal-delay-320 { transition-delay: 320ms; }
.reveal-ready .reveal-on-scroll.reveal-delay-340 { transition-delay: 340ms; }
.reveal-ready .reveal-on-scroll.reveal-delay-360 { transition-delay: 360ms; }
.reveal-ready .reveal-on-scroll.reveal-delay-380 { transition-delay: 380ms; }
.reveal-ready .reveal-on-scroll.reveal-delay-400 { transition-delay: 400ms; }
.reveal-ready .reveal-on-scroll.reveal-delay-420 { transition-delay: 420ms; }
.reveal-ready .reveal-on-scroll.reveal-delay-440 { transition-delay: 440ms; }
.reveal-ready .reveal-on-scroll.reveal-delay-460 { transition-delay: 460ms; }
.reveal-ready .reveal-on-scroll.reveal-delay-480 { transition-delay: 480ms; }
.reveal-ready .reveal-on-scroll.reveal-delay-500 { transition-delay: 500ms; }
.reveal-ready .reveal-on-scroll.reveal-delay-520 { transition-delay: 520ms; }
.reveal-ready .reveal-on-scroll.reveal-delay-540 { transition-delay: 540ms; }
.reveal-ready .reveal-on-scroll.reveal-delay-560 { transition-delay: 560ms; }
.reveal-ready .reveal-on-scroll.reveal-delay-580 { transition-delay: 580ms; }
.reveal-ready .reveal-on-scroll.reveal-delay-600 { transition-delay: 600ms; }
.reveal-ready .reveal-on-scroll.reveal-delay-620 { transition-delay: 620ms; }
.reveal-ready .reveal-on-scroll.reveal-delay-640 { transition-delay: 640ms; }
.reveal-ready .reveal-on-scroll.reveal-delay-660 { transition-delay: 660ms; }
.reveal-ready .reveal-on-scroll.reveal-delay-680 { transition-delay: 680ms; }

.reveal-ready .reveal-on-scroll.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0);
  will-change: opacity, transform, filter;
}

@media (prefers-reduced-motion: reduce) {
  .reveal-ready .reveal-on-scroll,
  .reveal-ready .reveal-on-scroll.is-visible {
    opacity: 1;
    filter: none;
    transform: none;
    transition: none !important;
    will-change: auto;
  }
}

.products {
  position: relative;
  background: var(--white);
  padding: 43px 0 96px;
}

.products::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,12,59,0.18) 30%, rgba(255,12,59,0.18) 70%, transparent);
  pointer-events: none;
}

.products::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1px;
  height: 88px;
  background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,248,250,0.92) 100%);
  pointer-events: none;
}

.products-inner {
  position: relative;
  z-index: 1;
  width: min(calc(100% - var(--container-gap)), var(--container));
  margin: 0 auto;
}

.products-head {
  display: flex;
  align-items: flex-end;
  margin-bottom: 34px;
}

.section-kicker {
  display: block;
  margin-bottom: 10px;
  color: var(--red);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.section-title {
  color: var(--text);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

.hero-content,
.products-head,
.advantages-copy,
.why-head,
.delivery-head-left,
.dt-content,
.shipment-head,
.cases-head,
.contacts-copy,
.faq-head,
.question-copy,
.footer-brand,
.footer-nav,
.footer-contact,
.footer-socials {
  min-width: 0;
}

.carousel-controls {
  position: absolute;
  top: 50%;
  left: -70px;
  right: -70px;
  z-index: 4;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  pointer-events: none;
}

.carousel-btn {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,12,59,0.18);
  border-radius: 50%;
  background: var(--white);
  color: var(--red);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: auto;
  transition: background .2s, border-color .2s, color .2s, transform .2s;
}

.carousel-btn:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
  transform: translateY(-2px);
}

.carousel-btn:disabled {
  cursor: default;
  opacity: .38;
  transform: none;
}

.carousel-btn:disabled:hover {
  background: var(--white);
  border-color: rgba(255,12,59,0.18);
  color: var(--red);
}

.products-carousel {
  position: relative;
  overflow: visible;
  background: var(--white);
}

.products-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 72px) / 4);
  gap: 24px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 4px 2px 18px;
  background: var(--white);
}

.products-track::-webkit-scrollbar {
  display: none;
}

.products-track.is-looping {
  scroll-behavior: auto;
  scroll-snap-type: none;
}

.product-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background:
    linear-gradient(175deg, #ffffff 0%, #fff7f9 100%);
  border: 1px solid rgba(255,12,59,0.16);
  border-radius: 16px;
  box-shadow: none;
  scroll-snap-align: start;
  isolation: isolate;
  transition: border-color .35s, transform .35s, box-shadow .35s;
}

.product-card::before {
  content: '';
  position: absolute;
  inset: -40% -25% auto;
  height: 70%;
  background: radial-gradient(circle at 50% 50%, rgba(255,12,59,0.19), transparent 60%);
  opacity: 0;
  transform: translateY(30px) scale(0.85);
  transition: transform .45s ease, opacity .45s ease;
  pointer-events: none;
  z-index: 0;
}

.product-card::after {
  content: '';
  position: absolute;
  top: -140%;
  left: -42%;
  width: 64%;
  height: 290%;
  transform: rotate(20deg);
  background: linear-gradient(
    90deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.55) 45%,
    rgba(255,255,255,0) 100%
  );
  opacity: 0;
  transition: left .65s ease, opacity .35s ease;
  pointer-events: none;
  z-index: 2;
}

.product-card:hover,
.product-card:focus-within {
  border-color: rgba(255,12,59,0.36);
  box-shadow: none;
  transform: none;
}

.product-card:hover::before,
.product-card:focus-within::before {
  opacity: 0;
  transform: translateY(30px) scale(0.85);
}

.product-card:hover::after,
.product-card:focus-within::after {
  left: 110%;
  opacity: 1;
}

.product-img-wrap {
  position: relative;
  overflow: hidden;
}

.product-img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  border-bottom: 1px solid rgba(255,12,59,0.14);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 14px), 0 100%);
  filter: saturate(1.02) contrast(1.02);
  transform-origin: center;
  transition: transform .45s ease, filter .45s ease;
}

.product-card:hover .product-img {
  filter: saturate(1.11) contrast(1.08) brightness(0.82);
  transform: scale(1.07);
}

.product-card:focus-within .product-img {
  filter: saturate(1.11) contrast(1.08) brightness(0.82);
  transform: scale(1.07);
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 3;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  pointer-events: none;
}

.badge-hit {
  background: var(--red-g);
  color: #fff;
  box-shadow: 0 4px 12px rgba(255,12,59,0.4);
}

.badge-season {
  background: linear-gradient(135deg, #00c070 0%, #00a058 100%);
  color: #fff;
  box-shadow: 0 4px 12px rgba(0,180,100,0.38);
}

.badge-sale {
  background: linear-gradient(135deg, #ff8c00 0%, #e06600 100%);
  color: #fff;
  box-shadow: 0 4px 12px rgba(255,140,0,0.38);
}

.product-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(14,14,30,0.38);
  opacity: 0;
  transition: opacity .32s;
}

.product-card:hover .product-overlay,
.product-card:focus-within .product-overlay {
  opacity: 1;
}

.product-overlay-btn {
  padding: 9px 22px;
  border: 1.5px solid rgba(255,255,255,0.9);
  border-radius: 100px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-decoration: none;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(6px);
  transform: translateY(6px);
  transition: background .22s, border-color .22s, transform .32s;
}

.product-card:hover .product-overlay-btn,
.product-card:focus-within .product-overlay-btn {
  transform: translateY(0);
}

.product-overlay-btn:hover {
  background: rgba(255,12,59,0.5);
  border-color: var(--red);
}

.product-body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  padding: 22px 20px 20px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.82) 0%, rgba(255,255,255,0.98) 42%, #ffffff 100%);
}

.product-body::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 18%, rgba(255,12,59,0.07), transparent 34%);
  pointer-events: none;
  opacity: 0;
  transition: opacity .35s ease;
}

.product-card:hover .product-body::before,
.product-card:focus-within .product-body::before {
  opacity: 1;
}

.product-body h3 {
  margin-bottom: 14px;
  color: var(--text);
  font-size: 19px;
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: 0;
  transition: color .3s ease, transform .3s ease;
}

.product-card:hover .product-body h3,
.product-card:focus-within .product-body h3 {
  color: #11112f;
  transform: translateX(1px);
}

.product-meta {
  display: flex;
  align-items: stretch;
  border: 1px solid rgba(255,12,59,0.12);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 12px;
  background: #fef9fa;
}

.product-meta-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 9px 12px;
}

.product-meta-group + .product-meta-group {
  border-left: 1px solid rgba(255,12,59,0.12);
}

.product-meta-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--muted);
}

.product-meta-val {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}

.product-meta-price {
  color: var(--red);
  font-size: 15px;
}

.product-trend {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 14px;
  color: #18a963;
}

.product-trend svg { flex-shrink: 0; stroke: #18a963; }

.product-trend span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1px;
}

.product-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 46px;
  margin-top: auto;
  border: 1px solid rgba(255,12,59,0.98);
  border-radius: 12px;
  background:
    linear-gradient(140deg, #ff1b4d 0%, #ef0037 100%);
  color: var(--white);
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  box-shadow: none;
  transition: background .25s, color .25s, box-shadow .25s, transform .25s;
}

.product-btn::after {
  content: '→';
  font-size: 14px;
  line-height: 1;
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity .25s ease, transform .25s ease;
}

.product-btn:hover {
  background: linear-gradient(140deg, #ff335f 0%, #ff0c3b 100%);
  color: var(--white);
  box-shadow: none;
  transform: none;
}

.product-card:hover .product-btn::after,
.product-card:focus-within .product-btn::after {
  opacity: 1;
  transform: translateX(0);
}

@media (prefers-reduced-motion: reduce) {
  .product-card,
  .product-card::before,
  .product-card::after,
  .product-img,
  .product-body::before,
  .product-body h3,
  .product-body p,
  .product-btn,
  .product-btn::after {
    transition-duration: 0.01ms !important;
  }
}

.advantages {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, #fff 0%, #fff8fa 100%);
  padding: 92px 0 108px;
}

.advantages-inner {
  width: min(calc(100% - var(--container-gap)), var(--container));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(520px, 1.22fr);
  gap: 64px;
  align-items: center;
}

.advantages-copy {
  max-width: 440px;
}

.advantages-lead {
  margin-top: 22px;
  color: #5f5f6c;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
}

.advantages-panel {
  position: relative;
  min-height: 470px;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.warehouse-photo {
  position: absolute;
  z-index: 1;
  display: block;
  width: clamp(180px, 18vw, 245px);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 8px solid var(--white);
  border-radius: 18px;
  box-shadow: 0 18px 42px rgba(24,18,32,0.18);
}

.warehouse-photo-1 {
  top: -6px;
  left: -36px;
  transform: rotate(-4deg);
}

.warehouse-photo-2 {
  top: 22px;
  right: -34px;
  transform: rotate(4deg);
}

.warehouse-photo-3 {
  right: -24px;
  bottom: 18px;
  transform: rotate(-5deg);
}

.warehouse-photo-4 {
  left: -12px;
  bottom: 20px;
  transform: rotate(5deg);
}

.advantages-list-wrap {
  position: absolute;
  inset: 50% auto auto 50%;
  z-index: 2;
  width: min(72%, 520px);
  transform: translate(-50%, -50%);
  padding: 42px 48px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.58);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.82) 0%, rgba(255,255,255,0.62) 48%, rgba(255,249,251,0.74) 100%);
  backdrop-filter: blur(22px) saturate(1.2);
  -webkit-backdrop-filter: blur(22px) saturate(1.2);
  box-shadow:
    0 26px 58px rgba(24,18,32,0.12),
    0 12px 34px rgba(255,12,59,0.08),
    inset 0 1px 0 rgba(255,255,255,0.95),
    inset 0 -1px 0 rgba(255,12,59,0.08);
}

.advantages-list-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 18% 12%, rgba(255,255,255,0.95), transparent 28%),
    linear-gradient(115deg, rgba(255,255,255,0.36) 0%, transparent 42%);
  pointer-events: none;
}

.advantages-list-wrap::after {
  content: '';
  position: absolute;
  left: 18px;
  right: 18px;
  top: 12px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.9), transparent);
  pointer-events: none;
}

.advantages-label {
  display: block;
  margin-bottom: 22px;
  color: var(--text);
  font-size: 24px;
  font-weight: 800;
  line-height: 1.2;
}

.advantages-list {
  list-style: none;
  display: grid;
  gap: 16px;
  counter-reset: advantage;
}

.advantages-list li {
  position: relative;
  min-height: 42px;
  padding-left: 58px;
  color: #3e3e4a;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.45;
  counter-increment: advantage;
}

.advantages-list li::before {
  content: counter(advantage);
  position: absolute;
  left: 0;
  top: -3px;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--red-g);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(255,12,59,0.28);
}

.shipment-view {
  position: relative;
  padding: 96px 0 106px;
  overflow: hidden;
  background:
    linear-gradient(180deg, #fff8fa 0%, #ffffff 48%, #fff6f9 100%);
}

/*.shipment-view::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,12,59,0.05), transparent 34%, transparent 66%, rgba(255,12,59,0.04)),
    url('../img/bg1block.png') center / cover no-repeat;
  opacity: .28;
  pointer-events: none;
}*/

.shipment-inner {
  position: relative;
  z-index: 1;
  width: min(calc(100% - var(--container-gap)), var(--container));
  margin: 0 auto;
}

.shipment-head {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.58fr);
  gap: clamp(24px, 4vw, 58px);
  align-items: end;
  margin-bottom: 34px;
}

.shipment-head .section-title {
  max-width: 760px;
}

.shipment-head p {
  color: #5f5f6c;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.7;
}

.shipment-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: minmax(230px, auto);
  gap: 18px;
}

.shipment-card {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  border: 1px solid rgba(255,12,59,0.16);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: none;
  isolation: isolate;
  transition: border-color .35s ease;
}

.shipment-card::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(16,14,24,0.04) 0%, rgba(16,14,24,0.08) 44%, rgba(16,14,24,0.72) 100%);
  pointer-events: none;
}

.shipment-card::after {
  content: '';
  position: absolute;
  left: 18px;
  right: 18px;
  top: 16px;
  z-index: 2;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.84), transparent);
  opacity: .82;
  pointer-events: none;
}

.shipment-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform .65s ease, filter .65s ease;
}

.shipment-card-large {
  grid-column: 1 / span 6;
  grid-row: span 2;
  min-height: 578px;
}

.shipment-card-boxes {
  grid-column: 7 / span 3;
}

.shipment-card-stock {
  grid-column: 10 / span 3;
}

.shipment-card-ready {
  grid-column: 7 / span 6;
}

.shipment-card-boxes img {
  object-position: 20% center;
}

.shipment-card-stock img {
  object-position: 58% center;
}

.shipment-card-ready img {
  object-position: 84% center;
}

.shipment-card-content {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  color: #ffffff;
}

.shipment-card-content span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 30px;
  margin-bottom: 12px;
  padding: 0 12px;
  border: 1px solid rgba(255,255,255,0.42);
  border-radius: 999px;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(12px);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .3px;
}

.shipment-card-content h3 {
  max-width: 420px;
  margin-bottom: 8px;
  font-size: clamp(19px, 2vw, 30px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0;
}

.shipment-card-content p {
  max-width: 470px;
  color: rgba(255,255,255,0.84);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.55;
}

.shipment-card:not(.shipment-card-large) .shipment-card-content h3 {
  font-size: 20px;
}

.shipment-card:hover {
  border-color: rgba(255,12,59,0.34);
  box-shadow: none;
  transform: none;
}

.shipment-card:hover img {
  filter: saturate(1.05) contrast(1.04);
  transform: scale(1.07);
}

@media (max-width: 1120px) {
  .shipment-head {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .shipment-head p {
    max-width: 760px;
  }

  .shipment-card-large {
    grid-column: 1 / span 7;
  }

  .shipment-card-boxes,
  .shipment-card-stock {
    grid-column: span 5;
  }

  .shipment-card-ready {
    grid-column: 8 / span 5;
  }
}

@media (max-width: 760px) {
  .shipment-view {
    padding: 76px 0 84px;
  }

  .shipment-grid {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding: 0 58px 8px 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .shipment-grid::-webkit-scrollbar {
    display: none;
  }

  .shipment-card,
  .shipment-card-large {
    flex: 0 0 min(76vw, 320px);
    min-height: 430px;
    scroll-snap-align: start;
  }
  
  .product-body h3 {
    font-size: 17px;
  }
}

@media (max-width: 560px) {
  .shipment-inner {
    width: min(calc(100% - 24px), var(--container));
  }

  .shipment-card,
  .shipment-card-large {
    flex-basis: min(74vw, 292px);
    min-height: 390px;
  }

  .shipment-card-content {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }
}

.why-us {
  position: relative;
  overflow: hidden;
  padding: 104px 0 112px;
  background:
    linear-gradient(135deg, #fff6f8 0%, #ffffff 46%, #fff1f5 100%);
}

.why-us::before {
  content: '';
  position: absolute;
  inset: 32px auto auto -120px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(255,12,59,0.14);
  border-radius: 44% 56% 48% 52%;
  transform: rotate(-18deg);
}

.why-inner {
  position: relative;
  z-index: 1;
  width: min(calc(100% - var(--container-gap)), var(--container));
  margin: 0 auto;
}

.why-head {
  max-width: 720px;
  margin-bottom: 36px;
}

.why-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 14px;
  padding: 7px 13px;
  border: 1px solid rgba(255,12,59,0.22);
  border-radius: 999px;
  background: rgba(255,12,59,0.07);
  color: #d50035;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.why-kicker::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ff0c3b;
  box-shadow: 0 0 0 5px rgba(255,12,59,0.14);
}

.why-title {
  color: var(--text);
  font-size: clamp(30px, 3.2vw, 46px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0;
}

.why-title::first-letter {
  color: #ff0c3b;
}

.why-desc {
  max-width: 620px;
  margin-top: 18px;
  color: #5f5f6c;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.why-card {
  position: relative;
  min-height: 238px;
  overflow: hidden;
  padding: 30px 28px 28px;
  border: 1px solid rgba(255,12,59,0.16);
  border-radius: 8px;
  background:
    linear-gradient(164deg, rgba(255,255,255,0.98) 0%, rgba(255,246,250,0.93) 64%, rgba(255,255,255,0.96) 100%),
    radial-gradient(circle at 0% -12%, rgba(255,94,132,0.20), transparent 44%),
    radial-gradient(circle at 102% 112%, rgba(255,12,59,0.12), transparent 46%);
  background-size: 100% 100%, 130% 130%, 140% 140%;
  background-position: 0 0, 0 0, 100% 100%;
  box-shadow:
    0 14px 30px rgba(24,18,32,0.08),
    inset 0 1px 0 rgba(255,255,255,0.92);
  isolation: isolate;
  transition:
    border-color .35s ease,
    box-shadow .35s ease,
    background-position .45s ease;
}

.why-card::before {
  content: '';
  position: absolute;
  inset: -1px -1px auto -1px;
  height: 82px;
  background:
    linear-gradient(135deg, rgba(255,12,59,0.20), rgba(255,96,134,0.08));
  clip-path: polygon(0 0, 100% 0, 100% 54%, 74% 72%, 44% 58%, 0 78%);
  z-index: -1;
  opacity: .94;
  transition: height .4s ease, opacity .4s ease, transform .4s ease;
}

.why-card::after {
  content: '';
  position: absolute;
  right: -42px;
  bottom: -42px;
  width: 132px;
  height: 132px;
  border: 1px solid rgba(255,12,59,0.20);
  border-radius: 50%;
  background: radial-gradient(circle at 20% 20%, rgba(255,255,255,0.58), rgba(255,255,255,0) 58%);
  opacity: .72;
  transition: transform .45s ease, border-color .45s ease, opacity .45s ease;
}

.why-card:hover,
.why-card:focus-within {
  border-color: rgba(255,12,59,0.34);
  box-shadow:
    0 22px 44px rgba(24,18,32,0.13),
    0 10px 28px rgba(255,12,59,0.16),
    inset 0 1px 0 rgba(255,255,255,0.94);
  background-position: 0 0, -8% -6%, 116% 110%;
}

.why-card:hover::before,
.why-card:focus-within::before {
  height: 96px;
  opacity: .95;
  transform: translateY(-2px);
}

.why-card:hover::after,
.why-card:focus-within::after {
  border-color: rgba(255,12,59,0.28);
  opacity: .92;
  transform: scale(1.2) rotate(20deg);
}

.why-icon {
  position: relative;
  width: 58px;
  height: 58px;
  margin-bottom: 24px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, #ff2d5f, #d70036);
  color: #fff;
  box-shadow: 0 12px 24px rgba(255,12,59,0.26);
  transform: rotate(-3deg);
  transition: transform .35s ease, box-shadow .35s ease;
}

.why-icon::before {
  content: '';
  position: absolute;
  inset: 7px;
  border: 1px solid rgba(255,255,255,0.34);
  border-radius: 14px;
}

.why-icon::after {
  content: '';
  position: absolute;
  top: -120%;
  left: -90%;
  width: 70%;
  height: 280%;
  transform: rotate(22deg);
  background: linear-gradient(
    90deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.7) 48%,
    rgba(255,255,255,0) 100%
  );
  opacity: 0;
  transition: left .65s ease, opacity .35s ease;
}

.why-icon svg {
  position: relative;
  z-index: 1;
  width: 38px;
  height: 38px;
}

.why-icon svg path,
.why-icon svg circle,
.why-icon svg rect {
  stroke: currentColor;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.why-card:hover .why-icon,
.why-card:focus-within .why-icon {
  box-shadow:
    0 16px 30px rgba(255,12,59,0.26),
    0 6px 16px rgba(255,12,59,0.2);
  transform: rotate(0deg) translateY(-4px) scale(1.05);
}

.why-card:hover .why-icon::after,
.why-card:focus-within .why-icon::after {
  left: 125%;
  opacity: 1;
}

.why-card h3 {
  margin-bottom: 12px;
  color: var(--text);
  font-size: 21px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0;
  transition: color .3s ease, transform .3s ease;
}

.why-card p {
  color: #5b5b68;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.65;
  transition: color .3s ease;
}

.why-card:hover h3,
.why-card:focus-within h3 {
  color: #161634;
  transform: translateX(2px);
}

.why-card:hover p,
.why-card:focus-within p {
  color: #4f4e5e;
}

@media (prefers-reduced-motion: reduce) {
  .why-card,
  .why-card::before,
  .why-card::after,
  .why-icon,
  .why-icon::after,
  .why-card h3,
  .why-card p {
    transition-duration: 0.01ms !important;
  }
}

.why-stats {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 34px;
  overflow: hidden;
  border-radius: 8px;
  background:
    linear-gradient(135deg, #ff2b5d 0%, #ff0c3b 48%, #c7002d 100%);
  box-shadow: 0 18px 40px rgba(255,12,59,0.22);
}

.why-stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 92% 16%, rgba(255,148,178,0.4), transparent 28%),
    linear-gradient(110deg, rgba(255,255,255,0.24), transparent 36%, rgba(255,255,255,0.13) 68%, transparent);
  pointer-events: none;
}

.why-stat {
  position: relative;
  z-index: 1;
  padding: 24px 22px;
  text-align: center;
  color: #fff;
}

.why-stat + .why-stat {
  border-left: 1px solid rgba(255,255,255,0.22);
}

.why-stat strong {
  display: block;
  margin-bottom: 4px;
  font-size: 30px;
  font-weight: 800;
  line-height: 1;
}

.why-stat span {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  opacity: .88;
}

@media (max-width: 1120px) {
  .products-track {
    grid-auto-columns: calc((100% - 48px) / 3);
  }

  .advantages-inner {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .advantages-copy {
    max-width: 720px;
  }

  .advantages-panel {
    min-height: 440px;
  }

  .why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .products-track {
    grid-auto-columns: calc((100% - 24px) / 2);
  }

  .advantages {
    padding: 72px 0 88px;
  }

  .advantages-list-wrap {
    width: min(82%, 500px);
    padding: 34px 32px;
  }

  .warehouse-photo {
    width: 168px;
    border-width: 6px;
    border-radius: 14px;
  }

  .why-us {
    padding: 78px 0 86px;
  }

  .why-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .why-stat:nth-child(3) {
    border-left: 0;
  }

  .why-stat:nth-child(n + 3) {
    border-top: 1px solid rgba(255,255,255,0.22);
  }
}

@media (max-width: 760px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 88px 0 28px;
  }
  .hero-visual {
    width: min(100%, 390px);
    min-height: 430px;
    margin: 0 auto;
    transform: none;
  }
  .flowerglobus {
    --flower-base-y: 4px;
    --flower-base-scale: 1.08;
    width: min(100%, 360px);
    margin-top: -8px;
  }
  .supply-chain {
    width: min(100%, 340px);
    justify-content: space-between;
    gap: 5px;
    margin-top: -34px;
    padding: 12px 14px;
    border-radius: 18px;
  }
  .sc-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
  }
  .sc-step span {
    font-size: 9px;
    letter-spacing: 0.2px;
  }
  .sc-arrow {
    font-size: 13px;
    padding: 0;
  }

  .sc-step {
    min-width: 0;
  }

  .products {
    padding: 29px 0 70px;
  }

  .products-head {
    margin-bottom: 24px;
  }

  .carousel-controls {
    display: none;
  }

  .products-carousel {
    overflow: hidden;
    margin-inline: -12px;
    padding-inline: 12px;
    border-radius: 22px;
  }

  .products-carousel::before,
  .products-carousel::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 3;
    width: 16px;
    pointer-events: none;
  }

  .products-carousel::before {
    left: 0;
    background: linear-gradient(90deg, #fff 0%, rgba(255,255,255,0.68) 42%, rgba(255,255,255,0) 100%);
  }

  .products-carousel::after {
    right: 0;
    background: linear-gradient(270deg, #fff 0%, rgba(255,255,255,0.68) 42%, rgba(255,255,255,0) 100%);
  }

  .products-track {
    grid-auto-columns: min(70vw, 286px);
    gap: 14px;
    align-items: stretch;
    overflow-y: hidden;
    padding: 4px 58px 0 14px;
    scroll-padding-inline: 14px;
    -webkit-overflow-scrolling: touch;
  }

  .product-card {
    border-radius: 18px;
  }

  .product-card:hover,
  .product-card:focus-within,
  .product-btn:hover {
    transform: none;
  }

  .product-card:hover .product-img,
  .product-card:focus-within .product-img {
    filter: saturate(1.02) contrast(1.02);
    transform: none;
  }

  .product-body {
    padding: 18px;
  }

  .advantages {
    padding: 58px 0 72px;
  }

  .advantages-inner {
    width: min(calc(100vw - var(--container-gap)), var(--container));
    gap: 30px;
  }

  .advantages-panel {
    min-height: auto;
    padding: 140px 18px 132px;
  }

  .advantages-list-wrap {
    position: relative;
    inset: auto;
    width: 100%;
    transform: none;
    padding: 28px 22px;
    border-radius: 16px;
  }

  .advantages-label {
    margin-bottom: 18px;
    font-size: 21px;
  }

  .advantages-list {
    gap: 14px;
  }

  .advantages-list li {
    min-height: 38px;
    padding-left: 50px;
    font-size: 14px;
  }

  .advantages-list li::before {
    width: 36px;
    height: 36px;
    border-radius: 10px;
  }

  .warehouse-photo {
    width: 132px;
  }

  .warehouse-photo-1 {
    top: 18px;
    left: 12px;
  }

  .warehouse-photo-2 {
    top: 18px;
    right: 12px;
  }

  .warehouse-photo-3 {
    right: 12px;
    bottom: 18px;
  }

  .warehouse-photo-4 {
    left: 12px;
    bottom: 18px;
  }

  .why-us {
    padding: 62px 0 72px;
  }

  .why-head {
    margin-bottom: 26px;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .why-card {
    min-height: auto;
    padding: 24px 22px 24px;
  }

  .why-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 20px;
    border-radius: 16px;
  }

  .why-icon svg {
    width: 34px;
    height: 34px;
  }

  .why-card h3 {
    font-size: 19px;
  }

  .why-stats {
    margin-top: 22px;
  }

  .why-stat {
    padding: 20px 14px;
  }

  .why-stat strong {
    font-size: 24px;
  }
}

@media (max-width: 420px) {
  .advantages-list-wrap {
    padding: 26px 16px;
  }

  .advantages-list li {
    padding-left: 48px;
    font-size: 13px;
  }

  .advantages-list li::before {
    width: 34px;
    height: 34px;
  }
}

.delivery {
  position: relative;
  padding: 96px 0 108px;
  background: #ffffff;
  overflow: hidden;
}

.delivery::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 54% 38% at 16% 28%, rgba(255,12,59,0.07), transparent 62%),
    radial-gradient(ellipse 48% 34% at 88% 70%, rgba(255,12,59,0.055), transparent 66%);
  pointer-events: none;
}

.delivery::after {
  content: '';
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,12,59,0.2) 30%, rgba(255,12,59,0.2) 70%, transparent);
  pointer-events: none;
}

.delivery-inner {
  position: relative;
  z-index: 1;
  width: min(calc(100% - var(--container-gap)), var(--container));
  margin: 0 auto;
}

.delivery-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 44px;
}

.delivery-head-left .section-kicker { color: var(--red); }

.delivery-st { color: var(--text); }

.delivery-lead {
  max-width: 460px;
  color: #5f5f6c;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.65;
  flex-shrink: 0;
}

.work-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin-bottom: 26px;
  padding: 30px 22px 26px;
  background:
    radial-gradient(circle at 12% 10%, rgba(255,12,59,0.08), transparent 28%),
    radial-gradient(circle at 88% 84%, rgba(255,12,59,0.06), transparent 26%),
    linear-gradient(135deg, rgba(255,255,255,0.94), rgba(255,246,249,0.82));
  border: 1px solid rgba(255,12,59,0.14);
  border-radius: 24px;
  box-shadow:
    0 24px 56px rgba(24,18,32,0.08),
    inset 0 1px 0 rgba(255,255,255,0.95);
  overflow: hidden;
}


.work-step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 0;
  text-align: center;
}

.work-photo {
  position: relative;
  width: min(148px, 72%);
  aspect-ratio: 1;
  padding: 8px;
  border-radius: 50%;
  background:
    conic-gradient(from 150deg, rgba(255,12,59,0.18), rgba(255,255,255,0.9), rgba(255,12,59,0.38), rgba(255,255,255,0.92), rgba(255,12,59,0.18));
  box-shadow: 0 18px 38px rgba(255,12,59,0.16);
  transition: transform .28s, box-shadow .28s;
}

.work-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 4px solid rgba(255,255,255,0.95);
  border-radius: inherit;
}

.work-num {
  position: absolute;
  right: 2px;
  bottom: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 32px;
  padding: 0 10px;
  color: #fff;
  background: linear-gradient(135deg, #ff4d7d, var(--red) 60%, var(--red-d));
  border: 2px solid #fff;
  border-radius: 999px;
  box-shadow: 0 10px 20px rgba(255,12,59,0.28);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
}

.work-card {
  position: relative;
  width: 100%;
  min-height: 142px;
  margin-top: 16px;
  padding: 22px 18px 18px;
  background: rgba(255,255,255,0.82);
  border: none;
  border-radius: 18px;
  box-shadow: 0 14px 34px rgba(24,18,32,0.06);
  overflow: hidden;
  transition: transform .28s, box-shadow .28s;
}

.work-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 24%;
  right: 24%;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  border-radius: 999px;
}

.work-card h3 {
  margin-bottom: 8px;
  color: var(--text);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.22;
}

.work-card p {
  color: #62616e;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.55;
}

.work-step:hover .work-photo {
  transform: translateY(-6px) rotate(-2deg);
  box-shadow: 0 24px 46px rgba(255,12,59,0.22);
}

.work-step:hover .work-card {
  transform: translateY(-3px);
  box-shadow: 0 20px 42px rgba(24,18,32,0.09);
}

.work-arrow {
  position: absolute;
  z-index: 2;
  top: 74px;
  width: 126px;
  color: rgba(255,12,59,0.48);
  filter: drop-shadow(0 8px 14px rgba(255,12,59,0.14));
  pointer-events: none;
}

.work-arrow-1 { left: calc(25% - 63px); }
.work-arrow-2 { left: calc(50% - 63px); top: 92px; }
.work-arrow-3 { left: calc(75% - 63px); }

.delivery-map {
  position: relative;
  margin: 34px 0 38px;
  padding: clamp(10px, 1.5vw, 18px);
  overflow: hidden;
  text-align: center;
  background: linear-gradient(180deg, #ffffff 0%, #fff9fb 100%);
  border: 1px solid rgba(255,12,59,0.14);
  border-radius: 22px;
  box-shadow: none;
}

.delivery-map-stage {
  width: 100%;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.delivery-map-stage picture {
  display: block;
}

.delivery-map-image {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  object-fit: contain;
}

@media (max-width: 640px) {
  .delivery-map {
    margin-left: calc(var(--container-gap) / -2);
    margin-right: calc(var(--container-gap) / -2);
    border-radius: 0;
    border-left: 0;
    border-right: 0;
  }

  .delivery-map-stage {
    overflow-x: auto;
  }
}

.delivery-types {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.delivery-type {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 24px 22px;
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(255,12,59,0.12);
  border-radius: 18px;
  box-shadow: 0 14px 32px rgba(24,18,32,0.06);
  transition: border-color .28s, background .28s, transform .28s;
}

.delivery-type:hover {
  border-color: rgba(255,12,59,0.38);
  background: #ffffff;
  transform: translateY(-4px);
}

.dt-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dt-icon svg { width: 26px; height: 26px; }

.dt-icon-cold {
  background: rgba(255,12,59,0.08);
  border: 1px solid rgba(255,12,59,0.18);
  color: var(--red);
}

.dt-icon-air {
  background: rgba(255,74,118,0.1);
  border: 1px solid rgba(255,74,118,0.2);
  color: #ff315f;
}

.dt-icon-pickup {
  background: rgba(212,0,46,0.08);
  border: 1px solid rgba(212,0,46,0.18);
  color: var(--red-d);
}

.dt-content { flex: 1; min-width: 0; }

.dt-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.dt-header h3 {
  color: var(--text);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.2;
}

.dt-time {
  font-size: 12px;
  font-weight: 700;
  color: var(--red);
  white-space: nowrap;
}

.dt-content p {
  color: #5f5f6c;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 0;
}

@media (max-width: 1120px) {
  .delivery-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 32px;
  }
  .delivery-lead { max-width: 100%; }
}

@media (max-width: 900px) {
  .work-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .work-arrow {
    display: none;
  }

  .delivery-types {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

@media (max-width: 760px) {
  .delivery {
    padding: 68px 0 80px;
  }

  .work-flow {
    grid-template-columns: 1fr;
    padding: 18px;
  }



  .work-step {
    flex-direction: row;
    align-items: center;
    gap: 14px;
    text-align: left;
  }

  .work-photo {
    width: 96px;
    height: 96px;
    flex: 0 0 96px;
    align-self: center;
    padding: 6px;
  }

  .work-num {
    right: -2px;
    bottom: 4px;
    min-width: 34px;
    height: 26px;
    font-size: 11px;
  }

  .work-card {
    flex: 1 1 auto;
    width: auto;
    min-width: 0;
    min-height: 0;
    margin-top: 0;
    padding: 18px 16px 16px;
  }

  .work-card h3 { font-size: 16px; }
  .delivery-type { padding: 18px 16px; }
}

.cases {
  position: relative;
  padding: 92px 0 98px;
  overflow: hidden;
  background:
    linear-gradient(180deg, #fff 0%, #fff7fa 100%);
}

.cases::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 16% 18%, rgba(255,12,59,0.08), transparent 28%),
    radial-gradient(circle at 88% 82%, rgba(255,12,59,0.06), transparent 30%);
  pointer-events: none;
}

.cases-inner {
  position: relative;
  z-index: 1;
  width: min(calc(100% - var(--container-gap)), var(--container));
  margin: 0 auto;
}

.cases-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.cases-head p {
  max-width: 640px;
  margin-top: 18px;
  color: #5f5f6c;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.7;
}

.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.case-card {
  position: relative;
  min-height: 318px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid rgba(255,12,59,0.14);
  border-radius: 8px;
  background:
    linear-gradient(160deg, rgba(255,255,255,0.96) 0%, rgba(255,250,252,0.96) 100%);
  box-shadow: 0 18px 38px rgba(24,18,32,0.07);
  transition: transform .32s ease, border-color .32s ease, box-shadow .32s ease;
}

.case-card::before {
  content: '“';
  position: absolute;
  right: 24px;
  top: 4px;
  color: rgba(255,12,59,0.09);
  font-size: 116px;
  font-weight: 800;
  line-height: 1;
  pointer-events: none;
}

.case-card::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--red), rgba(255,12,59,0.14));
  opacity: .72;
  pointer-events: none;
}

.case-card-accent {
  background:
    radial-gradient(circle at 18% 0%, rgba(255,12,59,0.13), transparent 34%),
    linear-gradient(160deg, #ffffff 0%, #fff1f5 100%);
  box-shadow:
    0 24px 52px rgba(24,18,32,0.10),
    0 12px 30px rgba(255,12,59,0.10);
}

.case-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 14px;
}

.case-avatar {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: var(--red-g);
  color: #ffffff;
  box-shadow: 0 14px 26px rgba(255,12,59,0.24);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .4px;
}

.case-top h3 {
  color: var(--text);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.2;
}

.case-top p {
  margin-top: 4px;
  color: #7a7783;
  font-size: 13px;
  font-weight: 600;
}

.case-card blockquote {
  position: relative;
  z-index: 1;
  flex: 1 1 auto;
  color: #4d4b57;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.7;
}

.case-meta {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 56px;
  padding: 12px 14px;
  border: 1px solid rgba(255,12,59,0.11);
  border-radius: 8px;
  background: rgba(255,255,255,0.78);
}

.case-meta span,
.case-meta strong {
  display: block;
  line-height: 1.25;
}

.case-meta span {
  color: #8b8792;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .6px;
  text-transform: uppercase;
}

.case-meta strong {
  color: var(--red);
  font-size: 14px;
  font-weight: 800;
  text-align: right;
}

.case-card:hover {
  border-color: rgba(255,12,59,0.30);
  box-shadow:
    0 26px 54px rgba(24,18,32,0.12),
    0 10px 28px rgba(255,12,59,0.10);
  transform: translateY(-6px);
}

@media (max-width: 900px) {
  .cases-grid {
    grid-template-columns: 1fr;
  }

  .case-card {
    min-height: 0;
  }
}

@media (max-width: 560px) {
  .cases {
    padding: 76px 0 82px;
  }

  .cases-inner {
    width: min(calc(100% - 24px), var(--container));
  }

  .case-card {
    padding: 22px;
  }

  .case-meta {
    align-items: flex-start;
    flex-direction: column;
  }

  .case-meta strong {
    text-align: left;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.contacts {
  position: relative;
  padding: 104px 0 96px;
  overflow: hidden;
  background: #ffffff;
}

.contacts::before {
  content: none;
}

.contacts::after {
  content: none;
}

.contacts-inner,
.faq-inner,
.question-inner,
.footer-inner,
.footer-bottom {
  width: min(calc(100% - var(--container-gap)), var(--container));
  margin: 0 auto;
}

.contacts-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 600px) minmax(520px, 1fr);
  gap: clamp(36px, 5vw, 76px);
  align-items: start;
}

.contacts-copy {
  width: 100%;
  max-width: 600px;
}

.contacts-copy .section-title {
  max-width: 590px;
}

.contacts-lead {
  margin-top: 18px;
  color: #5f5f6c;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.75;
}

.contact-actions {
  display: grid;
  grid-template-columns: minmax(230px, 1fr) 154px 126px;
  gap: 12px;
  margin-top: 28px;
  max-width: 580px;
  align-items: stretch;
}

.contact-phone-copy {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0 16px;
  border: 1px solid rgba(255,12,59,0.16);
  border-radius: 14px;
  background: #ffffff;
  color: var(--text);
  box-shadow: 0 12px 26px rgba(24,18,32,0.045);
  user-select: text;
}

.contact-phone-icon {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 34px;
  border-radius: 11px;
  color: var(--red);
  background: rgba(255,12,59,0.08);
}

.contact-phone-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-phone-copy small,
.contact-phone-copy strong {
  display: block;
}

.contact-phone-copy small {
  margin-bottom: 2px;
  color: #9b98a2;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .7px;
  text-transform: uppercase;
}

.contact-phone-copy strong {
  color: var(--text);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0;
}

.contact-social.ha-tg,
.contact-social.ha-max {
  width: 100%;
  height: 50px;
  justify-content: center;
  padding: 0 18px;
  font-size: 13px;
  font-weight: 800;
  box-shadow: none;
}

.contact-social.ha-tg:hover,
.contact-social.ha-max:hover {
  box-shadow: none;
}

.contact-social.ha-tg svg {
  flex: 0 0 18px;
}

.contact-social.ha-max img {
  flex: 0 0 18px;
}

.contact-facts {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 32px;
  max-width: 580px;
}

.contact-fact {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 78px;
  padding: 14px 18px;
  background: #ffffff;
  border: 1px solid rgba(255,12,59,0.12);
  border-radius: 16px;
}

.contact-fact-icon {
  position: relative;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  border-radius: 15px;
  color: #ffffff;
  background: linear-gradient(145deg, #ff4d70 0%, var(--red) 58%, #d90032 100%);
  box-shadow:
    0 12px 24px rgba(255,12,59,0.22),
    inset 0 1px 0 rgba(255,255,255,0.36);
}

.contact-fact-icon svg {
  position: absolute;
  left: 50%;
  top: 50%;
  display: block;
  width: 24px;
  height: 24px;
  fill: none;
  color: #ffffff;
  stroke: #ffffff;
  stroke-width: 2.25;
  stroke-linecap: round;
  stroke-linejoin: round;
  overflow: visible;
  transform: translate(-50%, -50%);
}

.contact-fact-icon svg * {
  stroke: #ffffff;
}

.contact-fact > div {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-fact strong,
.contact-fact span {
  display: block;
}

.contact-fact strong {
  margin-bottom: 4px;
  color: var(--text);
  font-size: 13px;
  font-weight: 800;
}

.contact-fact span {
  color: #656370;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
}

.contacts-map {
  position: relative;
  width: 100%;
  margin-top: 28px;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid rgba(255,12,59,0.16);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 28px 70px rgba(24,18,32,0.11);
}

.contacts-map::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.34) 0%, transparent 14%, transparent 84%, rgba(255,246,249,0.38) 100%),
    linear-gradient(90deg, rgba(255,255,255,0.26) 0%, transparent 12%, transparent 88%, rgba(255,255,255,0.28) 100%);
}

.contacts-map-top,
.contacts-map-bottom {
  position: absolute;
  left: 18px;
  right: 18px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.contacts-map-top {
  top: 28px;
  justify-content: flex-end;
}

.contacts-map-top a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  border-radius: 12px;
  background: rgba(255,255,255,0.94);
  border: 1px solid rgba(255,12,59,0.12);
  backdrop-filter: blur(10px);
}

.contacts-map-top a {
  padding: 0 14px;
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
}

.contacts-map iframe {
  width: 100%;
  height: 520px;
  display: block;
  border: 0;
  filter: saturate(.92) contrast(1.04);
}

.contacts-map img{
  width: 100%;
  height: 520px;
  display: block;
  filter: saturate(.92) contrast(1.04);
  aspect-ratio: 16 / 11;
  object-fit: cover;
  border-bottom: 1px solid rgba(255, 12, 59, 0.14);

  
} 

.contacts-map-bottom {
  bottom: 18px;
  align-items: stretch;
}

.contacts-map-bottom div {
  flex: 1 1 0;
  padding: 16px 18px;
  border: 1px solid rgba(255,12,59,0.12);
  border-radius: 16px;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(12px);
}

.contacts-map-bottom strong,
.contacts-map-bottom span {
  display: block;
}

.contacts-map-bottom strong {
  color: var(--red);
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
}

.contacts-map-bottom span {
  margin-top: 6px;
  color: #67636f;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
}

.faq {
  padding: 94px 0 102px;
  background: #ffffff;
}

.faq-inner {
  display: grid;
  grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr);
  gap: clamp(34px, 5vw, 68px);
  align-items: start;
}

.faq-head {
  position: static;
}

.faq-head .section-title {
  max-width: 430px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  overflow: hidden;
  border: 1px solid rgba(255,12,59,0.14);
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #fffafb 100%);
  box-shadow: 0 14px 32px rgba(24,18,32,0.045);
  transition: border-color .32s ease, background .32s ease, box-shadow .32s ease, transform .32s ease;
}

.faq-question {
  width: 100%;
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 22px;
  border: 0;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.35;
  text-align: left;
  letter-spacing: 0;
}

.faq-question:focus-visible {
  outline: 3px solid rgba(255,12,59,0.18);
  outline-offset: -6px;
}

.faq-question i {
  position: relative;
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  border-radius: 50%;
  background: rgba(255,12,59,0.08);
  border: 1px solid rgba(255,12,59,0.13);
  transition: background .32s ease, border-color .32s ease, transform .42s cubic-bezier(.2,.8,.2,1);
}

.faq-question i::before,
.faq-question i::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 2px;
  border-radius: 999px;
  background: var(--red);
  transform: translate(-50%, -50%);
}

.faq-question i::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform .32s ease, background .32s ease;
}

.faq-item.is-open {
  border-color: rgba(255,12,59,0.32);
  background: #ffffff;
  box-shadow: 0 20px 42px rgba(255,12,59,0.08);
}

.faq-item.is-open .faq-question i {
  background: var(--red);
  transform: rotate(180deg);
}

.faq-item.is-open .faq-question i::before,
.faq-item.is-open .faq-question i::after {
  background: #ffffff;
}

.faq-item.is-open .faq-question i::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-panel {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transform: translateY(-6px);
  transition:
    grid-template-rows .42s cubic-bezier(.2,.8,.2,1),
    opacity .28s ease,
    transform .42s cubic-bezier(.2,.8,.2,1);
}

.faq-item.is-open .faq-panel {
  grid-template-rows: 1fr;
  opacity: 1;
  transform: translateY(0);
}

.faq-panel-inner {
  min-height: 0;
  overflow: hidden;
}

.faq-panel p {
  margin: -4px 22px 22px;
  padding: 0 58px 0 0;
  color: #5e5c68;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7;
}

.question-cta {
  padding: 0 0 96px;
  background: linear-gradient(180deg, #ffffff 0%, #fff6f9 100%);
}

.question-inner {
  position: relative;
  min-height: 220px;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(420px, .9fr);
  gap: 20px 46px;
  align-items: center;
  overflow: hidden;
  padding: clamp(24px, 3.4vw, 42px);
  border-radius: 26px;
  background:
    radial-gradient(ellipse 44% 78% at 82% 40%, rgba(255,255,255,0.22), transparent 68%),
    linear-gradient(135deg, #ff0c3b 0%, #da0030 68%, #aa0028 100%);
  color: #ffffff;
  box-shadow: 0 28px 70px rgba(255,12,59,0.22);
}

.question-inner::before {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 20px;
  pointer-events: none;
}

.question-copy {
  position: relative;
  z-index: 1;
  max-width: 560px;
}

.question-copy .section-kicker {
  color: rgba(255,255,255,0.74);
}

.question-copy h2 {
  max-width: 500px;
  font-size: clamp(28px, 2.8vw, 40px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0;
}

.question-copy p {
  max-width: 480px;
  margin-top: 12px;
  color: rgba(255,255,255,0.78);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7;
}

.question-form {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 154px 126px auto;
  gap: 12px;
  align-items: center;
  justify-content: start;
  width: max-content;
  max-width: 100%;
  padding: 8px;
  border-radius: 18px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  backdrop-filter: blur(10px);
}

.question-form .question-social,
.question-form button {
  height: 52px;
  border-radius: 12px;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0;
}

.question-form .question-social {
  width: 100%;
  justify-content: center;
  padding: 0 18px;
  font-size: 14px;
}

.question-form button {
  padding: 0 22px;
  border: 0;
  background: #ffffff;
  color: var(--red);
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  white-space: nowrap;
  transition: transform .22s, box-shadow .22s;
}

.question-form button:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 26px rgba(84,0,22,0.2);
}

.question-flower {
  position: absolute;
  top: 0;
  right: -8px;
  bottom: 0;
  width: min(44vw, 560px);
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 1; /*sad*/
  filter: saturate(.98) contrast(1.02) brightness(.94) drop-shadow(0 26px 48px rgba(80,0,16,0.22));
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,.22) 8%, rgba(0,0,0,.82) 20%, #000 34%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,.22) 8%, rgba(0,0,0,.82) 20%, #000 34%, #000 100%);
  pointer-events: none;
  z-index: 0;
}

.site-footer {
  position: relative;
  padding: 46px 0 22px;
  overflow: hidden;
  background:
    linear-gradient(180deg, #ffffff 0%, #fff7f9 100%);
  border-top: 1px solid rgba(255,12,59,0.10);
  color: #4d515b;
}

.site-footer::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background: linear-gradient(90deg, rgba(255,12,59,0), rgba(255,12,59,0.58), rgba(255,12,59,0));
  opacity: .52;
}

.footer-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(230px, 1.1fr) minmax(150px, .72fr) minmax(170px, .78fr) minmax(250px, 1fr) auto;
  gap: clamp(28px, 4vw, 54px);
  align-items: start;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.footer-brand p {
  max-width: 300px;
  color: #626771;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.62;
}

.footer-copy {
  color: #7c8089;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.45;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  text-decoration: none;
}

.footer-logo img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 14px;
  background: var(--red);
  box-shadow: 0 10px 24px rgba(255,12,59,0.18);
}

.footer-logo strong,
.footer-logo small {
  display: block;
}

.footer-logo strong {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.footer-logo small {
  margin-top: 3px;
  color: #7b8089;
  font-size: 11px;
  font-weight: 600;
}

.footer-nav {
  flex: 0 1 auto;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 10px;
}

.footer-nav h2,
.footer-contact h2 {
  margin-bottom: 2px;
  color: var(--text);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0;
}

.footer-nav a,
.footer-contact a,
.footer-bottom a {
  color: #5d626c;
  text-decoration: none;
  transition: color .2s, transform .2s;
}

.footer-nav a {
  width: fit-content;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.35;
}

.footer-nav a:hover,
.footer-contact a:hover,
.footer-bottom a:hover {
  color: var(--red);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer-contact-link {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 9px;
  align-items: center;
  color: #5d626c;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.35;
}

.footer-contact-link svg {
  width: 18px;
  height: 18px;
  color: var(--red);
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 34px;
}

.footer-social {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,12,59,0.14);
  border-radius: 14px;
  background: #ffffff;
  color: var(--red);
  text-decoration: none;
  box-shadow: 0 12px 24px rgba(33, 21, 27, 0.06);
  transition: transform .2s, border-color .2s, box-shadow .2s, background .2s;
}

.footer-social:hover {
  transform: translateY(-2px);
  border-color: rgba(255,12,59,0.35);
  background: #fff0f4;
  box-shadow: 0 16px 28px rgba(255,12,59,0.14);
}

.footer-social-max {
  border-color: transparent;
  background: linear-gradient(135deg, #4b78ff 0%, #774cff 100%);
}

.footer-social-max:hover {
  border-color: transparent;
  background: linear-gradient(135deg, #3e70ff 0%, #7042ff 100%);
  box-shadow: 0 16px 28px rgba(90,76,255,0.20);
}

.footer-social svg,
.footer-social img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.footer-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid rgba(26,26,46,0.08);
}

.footer-bottom span,
.footer-bottom a {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
}

.footer-bottom span {
  color: #7c8089;
}

.footer-bottom a {
  color: var(--red);
}

@media (max-width: 1120px) {
  .contacts-inner,
  .faq-inner {
    grid-template-columns: 1fr;
  }

  .contacts-copy,
  .contacts-copy .section-title,
  .faq-head .section-title {
    max-width: 760px;
  }

  .faq-head {
    position: static;
  }

  .question-inner {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-socials {
    padding-top: 0;
  }
}

@media (max-width: 820px) {
  .contacts,
  .faq {
    padding: 72px 0;
  }

  .contacts-map,
  .contacts-map iframe, .contacts-map img {
    min-height: 420px;
    height: 420px;
  }

  .contacts-map-top,
  .contacts-map-bottom {
    display: none;
  }

  .question-form {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .question-form button {
    width: 100%;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .footer-brand,
  .footer-nav,
  .footer-contact {
    align-items: center;
    text-align: center;
  }

  .footer-brand p {
    margin: 0 auto;
  }

  .footer-contact-link {
    width: fit-content;
    text-align: left;
  }

  .footer-socials {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 560px) {
  .contacts-inner,
  .faq-inner,
  .question-inner,
  .footer-inner,
  .footer-bottom {
    width: min(calc(100% - 24px), var(--container));
  }

  .contacts-copy .section-title,
  .faq-head .section-title,
  .question-copy h2 {
    font-size: 26px;
    line-height: 1.14;
    overflow-wrap: break-word;
  }

  .contact-phone-copy,
  .contact-social.ha-tg,
  .contact-social.ha-max {
    width: 100%;
    justify-content: center;
  }

  .contact-actions {
    grid-template-columns: 1fr;
  }

  .faq-question {
    min-height: 64px;
    padding: 18px 16px;
    font-size: 14px;
  }

  .faq-panel p {
    margin: -4px 16px 18px;
    padding-right: 0;
    font-size: 13px;
  }

  .question-inner {
    padding: 28px 18px;
    border-radius: 20px;
  }

  .question-flower {
    right: -27px;
    width: min(86vw, 340px);
    opacity: 1;
    object-position: center left; /*sad*/
  }

  .question-inner::before {
    inset: 10px;
    border-radius: 16px;
  }

  .footer-nav {
    width: auto;
    display: flex;
  }

  .footer-nav a {
    text-align: center;
  }
}

.request-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 24px;
  visibility: hidden;
  pointer-events: none;
  contain: layout style paint;
}

.request-modal.is-active {
  visibility: visible;
  pointer-events: auto;
}

.request-modal__backdrop {
  position: absolute;
  inset: 0;
  opacity: 0;
  background: rgba(25,25,38,0.58);
  transition: opacity .18s linear;
  will-change: opacity;
}

.request-modal.is-open .request-modal__backdrop {
  opacity: 1;
}

.request-modal__dialog {
  position: relative;
  width: min(100%, 940px);
  max-height: calc(100vh - 48px);
  max-height: calc(100svh - 48px);
  display: grid;
  grid-template-columns: minmax(280px, .86fr) minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.78);
  border-radius: 26px;
  background: #ffffff;
  box-shadow:
    0 26px 66px rgba(24,18,32,0.24),
    0 10px 26px rgba(255,12,59,0.11);
  opacity: 0;
  transform: translate3d(0, 10px, 0) scale(.985);
  transform-origin: center;
  backface-visibility: hidden;
  transition:
    opacity .18s ease,
    transform .22s cubic-bezier(.22,1,.36,1);
  will-change: opacity, transform;
}

.request-modal.is-open .request-modal__dialog {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.request-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 4;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,12,59,0.16);
  border-radius: 14px;
  background: rgba(255,255,255,0.92);
  color: var(--text);
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(24,18,32,0.08);
  transition: background .2s, border-color .2s, transform .2s;
}

.request-modal__close:hover,
.request-modal__close:focus-visible {
  border-color: rgba(255,12,59,0.30);
  background: #fff5f7;
  transform: translateY(-1px);
}

.request-modal__close span {
  position: absolute;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.request-modal__close span:first-child {
  transform: rotate(45deg);
}

.request-modal__close span:last-child {
  transform: rotate(-45deg);
}

.request-modal__visual {
  position: relative;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow: hidden;
  padding: 32px 34px;
  color: #ffffff;
  background:
    radial-gradient(circle at 78% 62%, rgba(255,82,122,0.26) 0%, transparent 34%),
    linear-gradient(150deg, #241826 0%, #5f1730 54%, #ff0c3b 138%);
  isolation: isolate;
}

.request-modal__visual::before,
.request-modal__visual::after {
  content: '';
  position: absolute;
  pointer-events: none;
}

.request-modal__visual::before {
  inset: 16px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 20px;
  z-index: 3;
}

.request-modal__visual::after {
  left: 0;
  right: 0;
  bottom: 0;
  height: 36%;
  background: linear-gradient(180deg, transparent 0%, rgba(66,17,36,0.50) 100%);
  z-index: 2;
}

.request-modal__watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 0;
  width: min(31%, 140px);
  aspect-ratio: 1;
  background: url('../img/logored.png') center / contain no-repeat;
  opacity: .18;
  filter:
    brightness(.96)
    drop-shadow(0 18px 30px rgba(0,0,0,0.42))
    drop-shadow(0 0 16px rgba(36,0,16,0.32));
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.request-modal__kicker {
  position: relative;
  z-index: 4;
  width: fit-content;
  margin-bottom: 13px;
  padding: 7px 12px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 999px;
  color: rgba(255,255,255,0.82);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .9px;
  text-transform: uppercase;
}

.request-modal__visual h2 {
  position: relative;
  z-index: 4;
  max-width: 330px;
  font-size: 32px;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0;
}

.request-modal__visual p {
  position: relative;
  z-index: 4;
  max-width: 300px;
  margin-top: 12px;
  color: rgba(255,255,255,0.78);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.65;
}
/*
.request-modal__roses {
  position: absolute;
  z-index: 1;
  right: -133px;
  bottom: -90px;
  width: min(560px, 150%);
  min-width: 410px;
  pointer-events: none;
  filter: brightness(1.12) saturate(1.12) contrast(1.04) drop-shadow(0 24px 36px rgba(0,0,0,0.24));
  transform: rotate(-10deg);
}*/

.request-modal__roses {
    position: absolute;
    z-index: 1;
    right: -54px;
    bottom: -130px;
    width: min(390px, 100%);
    min-width: 390px;
    pointer-events: none;
    filter: brightness(1.12) saturate(1.12) contrast(1.04) drop-shadow(0 24px 36px rgba(0, 0, 0, 0.24));
    transform: rotate(-10deg);
}

.request-form {
  position: relative;
  display: grid;
  gap: 11px;
  align-content: start;
  min-width: 0;
  overflow-y: auto;
  scrollbar-width: none;
  padding: 34px 42px;
  background:
    linear-gradient(180deg, #ffffff 0%, #fff8fa 100%);
}

.request-form::-webkit-scrollbar {
  display: none;
}

.request-form__badge {
  width: fit-content;
  padding: 7px 12px;
  border: 1px solid rgba(255,12,59,0.14);
  border-radius: 999px;
  background: rgba(255,12,59,0.06);
  color: var(--red);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .9px;
  text-transform: uppercase;
}

.request-form h2 {
  margin-top: 2px;
  color: var(--text);
  font-size: clamp(27px, 3vw, 38px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0;
}

.request-form__lead {
  max-width: 440px;
  color: #62606b;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.55;
}

.request-field {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.request-field span {
  color: var(--text);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .4px;
}

.request-field em {
  color: #96939e;
  font-style: normal;
  font-weight: 700;
}

.request-field input,
.request-field textarea {
  width: 100%;
  border: 1px solid rgba(255,12,59,0.16);
  border-radius: 14px;
  background: #ffffff;
  color: var(--text);
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
  outline: none;
  transition: border-color .2s, box-shadow .2s, background .2s;
}

.request-field input {
  height: 48px;
  padding: 0 15px;
}

.request-field textarea {
  min-height: 94px;
  resize: vertical;
  padding: 14px 15px;
}

.request-field input::placeholder,
.request-field textarea::placeholder {
  color: #aaa6b0;
  font-weight: 500;
}

.request-field input:focus,
.request-field textarea:focus {
  border-color: rgba(255,12,59,0.42);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(255,12,59,0.08);
}

.request-field small {
  min-height: 16px;
  color: var(--red);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.35;
}

.request-field.is-invalid input,
.request-field.is-invalid textarea {
  border-color: rgba(255,12,59,0.66);
  background: #fff7f9;
}

.request-form__submit {
  min-height: 50px;
  margin-top: 2px;
  border: 0;
  border-radius: 15px;
  background: var(--red-g);
  color: #ffffff;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .8px;
  text-transform: uppercase;
  box-shadow: 0 14px 30px rgba(255,12,59,0.24);
  transition: transform .2s, box-shadow .2s;
}

.request-form__submit:hover,
.request-form__submit:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 18px 38px rgba(255,12,59,0.32);
}

.request-form__submit:disabled {
  cursor: not-allowed;
  opacity: .48;
  box-shadow: none;
  transform: none;
}

.request-form.is-sending .request-form__submit:disabled {
  cursor: wait;
  opacity: .72;
}

.request-form__submit:disabled:hover,
.request-form__submit:disabled:focus-visible {
  box-shadow: none;
  transform: none;
}

.request-form__status {
  min-height: 18px;
  color: #287a5a;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.45;
}

.request-form__status.is-info {
  color: #725f12;
}

.request-form__status.is-error {
  color: var(--red);
}

body.modal-open {
  overflow: hidden;
}

@media (max-width: 820px) {
  .request-modal {
    padding: 10px;
    align-items: center;
    overflow: hidden;
  }

  .request-modal__dialog {
    max-height: calc(100vh - 20px);
    max-height: calc(100svh - 20px);
    grid-template-columns: 1fr;
    grid-template-rows: auto minmax(0, 1fr);
    border-radius: 22px;
  }

  .request-modal__visual {
    min-height: 188px;
    padding: 28px 24px;
  }

  .request-modal__visual h2 {
    max-width: 420px;
    padding-right: 54px;
    font-size: 28px;
  }

  .request-modal__visual p {
    max-width: 420px;
    padding-right: 68px;
    font-size: 13px;
  }

  .request-modal__watermark {
    width: 100px;
    opacity: .11;
  }

  .request-modal__roses {
    right: -129px;
    bottom: -80px;
    width: 370px;
    min-width: 370px;
    filter: brightness(1.1) saturate(1.08) contrast(1.03) drop-shadow(0 18px 28px rgba(0,0,0,0.22));
  }

  .request-form {
    min-height: 0;
    overflow-y: auto;
    padding: 22px 24px 24px;
  }
}

@media (max-width: 560px) {
  .request-modal {
    padding: 8px;
  }

  .request-modal__dialog {
    max-height: calc(100vh - 16px);
    max-height: calc(100svh - 16px);
    border-radius: 18px;
  }

  .request-modal__close {
    top: 12px;
    right: 12px;
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }

  .request-modal__visual {
    min-height: 156px;
    padding: 24px 18px;
  }

  .request-modal__visual::before {
    inset: 10px;
    border-radius: 14px;
  }

  .request-modal__kicker {
    margin-bottom: 12px;
    font-size: 9px;
  }

  .request-modal__visual h2 {
    max-width: 220px;
    padding-right: 0;
    font-size: 24px;
  }

  .request-modal__visual p {
    max-width: 218px;
    padding-right: 0;
    font-size: 12px;
    line-height: 1.5;
  }

  .request-modal__watermark {
    width: 77px;
    opacity: .10;
  }

  .request-modal__roses {
    right: -145px;
    bottom: -60px;
    width: 292px;
    min-width: 292px;
    filter: brightness(1.08) saturate(1.06) contrast(1.02) drop-shadow(0 16px 24px rgba(0,0,0,0.20));
  }

  .request-form {
    gap: 10px;
    padding: 20px 16px 18px;
  }

  .request-form h2 {
    font-size: 25px;
  }

  .request-field input {
    height: 46px;
  }

  .request-field textarea {
    min-height: 86px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .request-modal,
  .request-modal__dialog,
  .request-modal__close,
  .request-form__submit,
  .request-field input,
  .request-field textarea {
    transition-duration: 0.01ms !important;
  }
}
