:root {
  --color-background: #f4f3ee;
  --color-surface: rgba(248, 248, 244, 0.72);
  --color-surface-strong: rgba(249, 249, 246, 0.92);
  --color-text: #080d10;
  --color-muted: #687076;
  --color-accent: #b8ef00;
  --color-accent-soft: #9bce3f;
  --color-border: rgba(8, 13, 16, 0.09);
  --font-primary: Inter, "Helvetica Neue", Arial, sans-serif;
  --font-secondary: Arial, Helvetica, sans-serif;
  --font-display: Inter, "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--color-text);
  background: var(--color-background);
  font-family: var(--font-primary);
  -webkit-font-smoothing: antialiased;
}
body.menu-open {
  overflow: hidden;
}
button,
a {
  font: inherit;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  color: inherit;
}

.container {
  width: min(100% - 60px, 1390px);
  margin-inline: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 45px;
  border: 0;
  border-radius: 10px;
  padding: 0 20px;
  font-size: 13px;
  font-weight: 5000;
  letter-spacing: -0.02em;
  transition:
    transform 0.35s cubic-bezier(0.2, 0.7, 0.2, 1),
    box-shadow 0.35s ease,
    filter 0.35s ease;
}
.btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}
.btn--primary {
  position: relative;
  overflow: hidden;

  background: linear-gradient(
    135deg,
    #c9ff00 0%,
    var(--color-accent) 58%,
    #a6d900 100%
  );

  color: #0a0d0a;
  border: 1px solid rgba(255, 255, 255, 0.28);

  box-shadow:
    0 8px 24px rgba(152, 198, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.55);

  transition:
    transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1),
    background 0.35s ease,
    color 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.btn--primary:hover {
  background: #0b0d0c;
  color: #c9ff00;

  border-color: rgba(201, 255, 0, 0.55);

  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.24),
    0 0 0 1px rgba(201, 255, 0, 0.08),
    0 0 28px rgba(201, 255, 0, 0.12);
}

.site-header {
  position: fixed;
  inset: 30px 60px auto;
  z-index: 70;
  height: 85px;

  background: rgba(247, 247, 243, 0.52);

  -webkit-backdrop-filter: blur(80px) saturate(1.18);
  backdrop-filter: blur(18px) saturate(1.18);
  border-radius: 10px;
  box-shadow: 0 8px 30px rgba(16, 20, 14, 0.045);

  transition:
    background-color 0.35s ease,
    box-shadow 0.35s ease;
}

.site-header {
  position: fixed;
  inset: 30px 60px auto;
  z-index: 70;
  height: 85px;

  background: rgba(247, 247, 243, 0.52);

  -webkit-backdrop-filter: blur(18px) saturate(1.18);
  backdrop-filter: blur(18px) saturate(1.18);

  border-radius: 10px;
  box-shadow: 0 8px 30px rgba(16, 20, 14, 0.045);

  isolation: isolate;

  transition:
    background-color 0.35s ease,
    box-shadow 0.35s ease;
}

/* ВЕЛИКА ЗЕЛЕНА БУЛЬБА */

.site-header::before {
  content: "";
  position: absolute;

  width: 280px;
  height: 170px;

  left: 14%;
  top: -75px;

  z-index: -1;

  background: radial-gradient(
    circle at 35% 30%,
    rgba(225, 255, 120, 0.95) 0%,
    rgba(195, 255, 0, 0.85) 28%,
    rgba(155, 210, 0, 0.68) 60%,
    rgba(126, 175, 0, 0.42) 100%
  );

  border-radius: 48% 52% 62% 38% / 42% 46% 54% 58%;

  filter: blur(3px);

  opacity: 0.75;

  pointer-events: none;

  animation: bubbleOne 12s ease-in-out infinite alternate;
}

/* ДРУГА БУЛЬБА */

.site-header::after {
  content: "";
  position: absolute;

  width: 220px;
  height: 150px;

  right: 15%;
  bottom: -85px;

  z-index: -1;

  background: radial-gradient(
    circle at 30% 25%,
    rgba(230, 255, 140, 0.9),
    rgba(190, 250, 0, 0.78) 35%,
    rgba(123, 170, 0, 0.55) 100%
  );

  border-radius: 58% 42% 47% 53% / 44% 58% 42% 56%;

  filter: blur(2px);

  opacity: 0.68;

  pointer-events: none;

  animation: bubbleTwo 15s ease-in-out infinite alternate;
}

@keyframes bubbleOne {
  0% {
    transform: translate3d(-40px, 0, 0) rotate(0deg) scale(1);
  }

  50% {
    transform: translate3d(160px, 20px, 0) rotate(15deg) scale(1.12);
  }

  100% {
    transform: translate3d(340px, -5px, 0) rotate(-8deg) scale(0.96);
  }
}

@keyframes bubbleTwo {
  0% {
    transform: translate3d(40px, 0, 0) rotate(0deg) scale(0.9);
  }

  50% {
    transform: translate3d(-180px, -18px, 0) rotate(-14deg) scale(1.15);
  }

  100% {
    transform: translate3d(-380px, 5px, 0) rotate(8deg) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-header::before,
  .site-header::after {
    animation: none;
  }
}

.nav__inner {
  height: 100%;

  display: flex;
  grid-template-columns: 300px 1fr 300px;
  align-items: center;
  column-gap: 30px;
  justify-content: space-between;
}
.nav__logo {
  display: inline-flex;
  width: 300px;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
}
.nav__logo img {
  display: block;
  height: auto;
  object-fit: contain;
}
.nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}
.nav__item {
  position: relative;
}
.nav__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 40px;
  color: #111512;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -0.025em;
  white-space: nowrap;
  text-transform: uppercase;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 2px;
  height: 1px;
  background: var(--color-accent);
  transition: right 0.3s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.nav__link:hover::after,
.nav__link:focus-visible::after,
.nav__item.is-open > .nav__link::after {
  right: 0;
}
.nav__link--button {
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.nav__chevron {
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transform-origin: center;
  transition: transform 0.25s ease;
}
.nav__item.is-open .nav__chevron {
  transform: rotate(225deg) translate(-1px, -1px);
}
.nav__cta {
  justify-self: end;
  min-width: 148px;
}

.dropdown {
  position: absolute;
  top: calc(100% + 5px);
  left: -3px;
  width: 214px;
  padding: 10px;
  border: 1px solid rgba(13, 18, 15, 0.08);
  border-radius: 10px;
  background: rgba(250, 250, 247, 0.92);
  -webkit-backdrop-filter: blur(18px) saturate(1.15);
  backdrop-filter: blur(18px) saturate(1.15);
  box-shadow: 0 18px 45px rgba(7, 11, 9, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px) scale(0.985);
  transform-origin: 36px top;
  transition:
    opacity 0.22s ease,
    transform 0.22s cubic-bezier(0.2, 0.7, 0.2, 1),
    visibility 0.22s;
  z-index: 1000;
}
.dropdown::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 33px;
  width: 11px;
  height: 11px;
  border-left: 1px solid rgba(13, 18, 15, 0.06);
  border-top: 1px solid rgba(13, 18, 15, 0.06);
  background: rgba(250, 250, 247, 0.92);
  transform: rotate(45deg);
}
.dropdown--compact {
  width: 162px;
}
.nav__item.is-open .dropdown,
.nav__item:hover .dropdown,
.nav__item:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}
.dropdown a {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: 38px;
  border-radius: 7px;
  padding: 0 10px;
  color: #141815;
  font-size: 13px;
  font-weight: 560;
  letter-spacing: -0.02em;
  transition:
    background-color 0.2s ease,
    padding-left 0.2s ease;
}
.dropdown a:hover,
.dropdown a:focus-visible {
  background: rgba(184, 239, 0, 0.13);
  padding-left: 14px;
  outline: none;
}

.burger {
  display: none;
}

/* A neutral page stage is intentional: this task contains header/navigation only. */
.reference-backdrop {
  min-height: 100vh;
  background:
    radial-gradient(
      circle at 76% 32%,
      rgba(184, 239, 0, 0.16),
      transparent 24%
    ),
    linear-gradient(180deg, #eceee6 0%, #f7f7f2 54%, #efefe9 100%);
}
.reference-backdrop__veil {
  height: 86px;
}

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  overflow: auto;
  background:
    radial-gradient(
      circle at 82% 12%,
      rgba(184, 239, 0, 0.12),
      transparent 27%
    ),
    linear-gradient(
      180deg,
      rgba(248, 249, 243, 0.98),
      rgba(242, 243, 236, 0.985)
    );
  opacity: 0;
  visibility: hidden;
  clip-path: inset(0 0 100% 0 round 0 0 26px 26px);
  transition:
    opacity 0.42s ease,
    visibility 0.42s,
    clip-path 0.58s cubic-bezier(0.22, 0.8, 0.2, 1);
}
.mobile-nav.is-open {
  opacity: 1;
  visibility: visible;
  clip-path: inset(0 0 0 0 round 0);
}
.mobile-nav__top {
  position: relative;
  z-index: 4;
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mobile-nav__logo {
  display: inline-flex;
  width: 156px;
}
.mobile-nav__logo img {
  width: 156px;
  height: auto;
  display: block;
}
.mobile-nav__content {
  position: relative;
  z-index: 4;
  padding-top: 27px;
  padding-bottom: 38px;
}
.mobile-nav__link {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  align-items: center;
  min-height: 60px;
  color: #0b0f0d;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 1;
  cursor: pointer;
}
.mobile-nav__link > span {
  align-self: center;
  color: #81ab00;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
}
.mobile-nav__group {
  margin: 0;
}
.mobile-nav__group summary {
  list-style: none;
}
.mobile-nav__group summary::-webkit-details-marker {
  display: none;
}
.mobile-nav__arrow {
  width: 12px;
  height: 12px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translate(-3px, 3px);
  transition: transform 0.3s ease;
}
.mobile-nav__group[open] .mobile-nav__arrow {
  transform: rotate(225deg) translate(-1px, -1px);
}
.mobile-nav__submenu {
  display: grid;
  gap: 4px;
  padding: 12px 0 16px 48px;
  border-bottom: 1px solid rgba(8, 13, 16, 0.1);
}
.mobile-nav__submenu a {
  padding: 8px 0;
  color: #2d332f;
  font-size: 15px;
  font-weight: 620;
}
.mobile-nav__cta {
  width: 100%;
  min-height: 54px;
  margin-top: 28px;
  border-radius: 10px;
  font-size: 15px;
}

.mobile-nav__content > * {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.4s ease,
    transform 0.48s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.mobile-nav.is-open .mobile-nav__content > * {
  opacity: 1;
  transform: translateY(0);
}
.mobile-nav.is-open .mobile-nav__content > *:nth-child(1) {
  transition-delay: 0.12s;
}
.mobile-nav.is-open .mobile-nav__content > *:nth-child(2) {
  transition-delay: 0.16s;
}
.mobile-nav.is-open .mobile-nav__content > *:nth-child(3) {
  transition-delay: 0.2s;
}
.mobile-nav.is-open .mobile-nav__content > *:nth-child(4) {
  transition-delay: 0.24s;
}
.mobile-nav.is-open .mobile-nav__content > *:nth-child(5) {
  transition-delay: 0.28s;
}
.mobile-nav.is-open .mobile-nav__content > *:nth-child(6) {
  transition-delay: 0.32s;
}
.mobile-nav.is-open .mobile-nav__content > *:nth-child(7) {
  transition-delay: 0.36s;
}

.mobile-nav__decor {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.bubble {
  position: absolute;
  display: block;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: radial-gradient(
    circle at 32% 24%,
    rgba(255, 255, 255, 0.82),
    rgba(255, 255, 255, 0.2) 33%,
    rgba(184, 239, 0, 0.12) 66%,
    rgba(184, 239, 0, 0.03)
  );
  box-shadow:
    inset 6px 8px 16px rgba(255, 255, 255, 0.55),
    inset -7px -9px 18px rgba(95, 128, 0, 0.08),
    0 8px 22px rgba(66, 82, 35, 0.08);
  filter: blur(0.1px);
  opacity: 0.82;
  animation: bubble-float 13s ease-in-out infinite alternate;
}
.bubble--1 {
  width: 86px;
  height: 86px;
  right: -22px;
  top: 22%;
}
.bubble--2 {
  width: 38px;
  height: 38px;
  left: 7%;
  top: 17%;
  animation-duration: 10s;
  animation-delay: -3s;
}
.bubble--3 {
  width: 118px;
  height: 118px;
  right: 11%;
  bottom: 5%;
  opacity: 0.48;
  animation-duration: 17s;
}
.bubble--4 {
  width: 24px;
  height: 24px;
  left: 19%;
  bottom: 13%;
  opacity: 0.56;
  animation-duration: 9s;
}
@keyframes bubble-float {
  from {
    transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
    border-radius: 50% 46% 52% 48%;
  }
  to {
    transform: translate3d(7px, -10px, 0) rotate(5deg) scale(1.025);
    border-radius: 46% 54% 47% 53%;
  }
}

@media (max-width: 1180px) {
  .container {
    width: min(100% - 42px, 1120px);
  }
  .nav__inner {
    grid-template-columns: 180px 1fr 164px;
    column-gap: 16px;
  }
  .nav {
    gap: 20px;
  }

  .nav__link {
    font-size: 13px;
  }
}

@media (max-width: 980px) {
  .site-header {
    height: 82px;
    inset: 10px 10px auto;
  }
  .container {
    width: min(100% - 34px, 930px);
  }
  .nav__inner {
    grid-template-columns: 166px 1fr 56px;
  }
  .nav--desktop,
  .nav__inner .nav__cta {
    display: none;
  }
  .nav__logo,
  .nav__logo img {
    width: 154px;
  }
  .burger {
    justify-self: end;
    position: relative;
    display: inline-flex;
    width: 50px;
    height: 50px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    border: 0;
    border-radius: 10px;
    background: #111610;
    box-shadow:
      0 9px 25px rgba(139, 182, 0, 0.18),
      inset 0 1px 0 rgba(255, 255, 255, 0.55);
    cursor: pointer;
  }
  .burger span {
    display: block;
    width: 20px;
    height: 1px;
    border-radius: 999px;

    background: linear-gradient(135deg, #cfff00, #acd900);
    transform-origin: center;
    transition:
      transform 0.28s ease,
      opacity 0.2s ease,
      width 0.28s ease;
  }
  .burger.is-active span:nth-child(1),
  .burger--overlay span:nth-child(1) {
    transform: translateY(5px) rotate(45deg);
  }
  .burger.is-active span:nth-child(2),
  .burger--overlay span:nth-child(2) {
    opacity: 0;
    width: 0;
  }
  .burger.is-active span:nth-child(3),
  .burger--overlay span:nth-child(3) {
    transform: translateY(-5px) rotate(-45deg);
  }
  .mobile-nav {
    display: block;
  }
  .nav__cta {
    min-width: 100%;
  }
}

@media (max-width: 520px) {
  .site-header {
    height: 60px;
    border-bottom-color: rgba(255, 255, 255, 0.28);
    background: linear-gradient(
      180deg,
      rgba(248, 249, 243, 0.8),
      rgba(248, 249, 243, 0.58)
    );
    -webkit-backdrop-filter: blur(16px) saturate(1.2);
    backdrop-filter: blur(16px) saturate(1.2);
  }
  .mobile-nav__content {
    padding-top: 30px;
    height: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
  }
  .mobile-nav__link,
  .mobile-nav__group {
    width: 100%;
  }
  .container {
    width: calc(100% - 32px);
  }
  .nav__inner {
    grid-template-columns: 1fr auto;
  }
  .nav__logo {
    width: 150px;
    height: 64px;
  }
  .nav__logo img {
    width: 150px;
  }
  .burger {
    width: 40px;
    height: 40px;
    border-radius: 10px;
  }
  .mobile-nav__top {
    height: 80px;
  }
  .mobile-nav__logo,
  .mobile-nav__logo img {
    width: 150px;
  }
  .mobile-nav__content {
    padding-top: 30px;
    height: 80%;
  }
  .mobile-nav__link {
    grid-template-columns: 1fr auto;
    min-height: 50px;
  }
}

@media (max-width: 360px) {
  .container {
    width: calc(100% - 24px);
  }
  .nav__logo,
  .nav__logo img,
  .mobile-nav__logo,
  .mobile-nav__logo img {
    width: 138px;
  }
  .burger {
    width: 48px;
    height: 48px;
  }
  .mobile-nav__link {
    font-size: 20px;
    grid-template-columns: 1fr auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

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

.hero {
  position: relative;
  isolation: isolate;
  min-height: 110vh;
  overflow: hidden;
  background: #050606;
  color: var(--color-text);
}

/* ---------------------------------------------------------
   HERO IMAGE
   --------------------------------------------------------- */

.hero__media {
  position: absolute;
  inset: 0;
  z-index: -3;
  overflow: hidden;
}

.hero__image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transform: scale(1.005);
}

/* ---------------------------------------------------------
   DARK OVERLAY
   --------------------------------------------------------- */

.hero__shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;

  background: linear-gradient(
    90deg,
    rgba(3, 5, 4, 0.97) 0%,
    rgba(3, 5, 4, 0.92) 23%,
    rgba(3, 5, 4, 0.88) 42%,
    rgba(3, 5, 4, 0.26) 63%,
    rgba(3, 5, 4, 0.08) 78%,
    rgba(3, 5, 4, 0.1) 100%
  );
}

/* ---------------------------------------------------------
   CONTAINER
   --------------------------------------------------------- */

.hero__container {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  min-height: 100vh;

  padding-top: 150px;
  padding-bottom: 104px;
}

.hero__content {
  width: min(900px, 65%);
}

/* ---------------------------------------------------------
   EYEBROW
   --------------------------------------------------------- */

.hero__eyebrow {
  width: fit-content;

  display: inline-flex;
  align-items: center;
  gap: 10px;

  margin-bottom: 20px;
  padding: 8px 15px;

  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 9px;

  background: rgba(255, 255, 255, 0.105);

  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);

  font-family: var(--font-primary);
  font-size: 11px;
  line-height: 1.25;
  font-weight: 600;
  letter-spacing: 0.015em;
  text-transform: uppercase;

  color: rgba(255, 255, 255, 0.9);

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 8px 28px rgba(0, 0, 0, 0.08);
}

.hero__eyebrow-dot {
  flex: 0 0 auto;

  width: 8px;
  height: 8px;

  border-radius: 50%;

  background: var(--color-accent);

  box-shadow:
    0 0 0 4px rgba(188, 255, 0, 0.08),
    0 0 18px rgba(188, 255, 0, 0.35);
}

/* ---------------------------------------------------------
   TITLE
   --------------------------------------------------------- */

.hero__title {
  max-width: 950px;

  margin: 0;

  font-family: var(--font-display);
  font-size: clamp(50px, 5vw, 70px);
  line-height: 0.9;
  font-weight: 800;
  letter-spacing: -0.05em;

  color: #fff;
}

.hero__title .hero__title-line--accent {
  display: block;
  font-size: 170px;
  margin: 5px 0 6px;

  color: var(--color-accent);
}

/* ---------------------------------------------------------
   DESCRIPTION
   --------------------------------------------------------- */

.hero__description {
  max-width: 530px;

  margin: 20px 0 0;

  font-family: var(--font-primary);
  font-size: 18px;
  line-height: 1.55;
  font-weight: 400;

  color: rgba(255, 255, 255, 0.83);
}

/* ---------------------------------------------------------
   BENEFITS
   --------------------------------------------------------- */

.hero__benefits {
  display: grid;
  grid-template-columns:
    minmax(0, 1fr)
    minmax(0, 1fr)
    minmax(0, 1fr);

  gap: 20px;

  width: 900px;
  max-width: 70vw;

  margin-top: 30px;
}

.hero-benefit {
  display: flex;
  align-items: flex-start;
  gap: 11px;
}

.hero-benefit__icon {
  flex: 0 0 auto;

  width: 31px;
  height: 31px;

  margin-top: 1px;

  display: grid;
  place-items: center;

  color: var(--color-accent);
}

.hero-benefit__icon svg {
  width: 28px;
  height: 28px;

  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-benefit__content {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.hero-benefit__content strong {
  font-family: var(--font-primary);
  font-size: 15px;
  line-height: 1.35;
  font-weight: 700;

  color: #fff;
}

.hero-benefit__content span {
  font-family: var(--font-primary);
  font-size: 15px;
  line-height: 1.5;
  font-weight: 400;

  color: rgba(255, 255, 255, 0.72);
}

/* ---------------------------------------------------------
   ACTIONS
   --------------------------------------------------------- */

.hero__actions {
  display: flex;
  align-items: center;
  gap: 15px;

  margin-top: 34px;
}

.hero__primary {
  min-width: 252px;
  height: 50px;

  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;

  padding: 0 23px;

  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;

  background: linear-gradient(180deg, #c7ff00 0%, #b8ef00 100%);

  color: #060806;

  font-size: 14px;
  font-weight: 700;

  box-shadow:
    0 8px 28px rgba(170, 230, 0, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.38);

  transition:
    transform 260ms ease,
    box-shadow 260ms ease,
    filter 260ms ease;
}

.hero__primary:hover {
  transform: translateY(-2px);

  filter: brightness(1.025);

  box-shadow:
    0 13px 38px rgba(170, 230, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.btn__icon {
  width: 20px;
  height: 20px;

  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero__secondary {
  min-width: 174px;
  height: 50px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;

  padding: 0 20px;

  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 8px;

  background: rgba(7, 8, 8, 0.23);

  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);

  color: #fff;

  font-size: 14px;
  font-weight: 600;

  transition:
    background 250ms ease,
    border-color 250ms ease,
    transform 250ms ease;
}

.hero__secondary:hover {
  transform: translateY(-2px);

  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.7);
}

.hero__secondary svg {
  width: 16px;
  height: 16px;

  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* =========================================================
   1280
   ========================================================= */

@media (max-width: 1280px) {
  .hero {
    min-height: 680px;
  }

  .hero__container {
    min-height: 680px;
  }

  .hero__content {
    width: 53%;
  }

  .hero__benefits {
    width: 620px;
    gap: 18px;
  }

  .hero__image {
    object-position: 61% center;
  }
}

/* =========================================================
   1024
   ========================================================= */

@media (max-width: 1024px) {
  .hero {
    min-height: 650px;
  }

  .hero__container {
    min-height: 650px;

    padding-top: 115px;
    padding-bottom: 90px;
  }

  .hero__content {
    width: 58%;
  }

  .hero__title {
    font-size: 58px;
  }

  .hero__benefits {
    width: 570px;
    max-width: 100%;
    gap: 14px;
  }

  .hero-benefit__content strong {
    font-size: 11px;
  }

  .hero-benefit__content span {
    font-size: 10.5px;
  }

  .hero__image {
    object-position: 57% center;
  }
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {
  .hero {
    min-height: auto;

    padding-top: 0;

    background: #050606;
  }

  /*
   * На мобільному фото знаходиться ВГОРІ.
   * Воно не закінчується різко, а плавно розчиняється
   * в темному фоні hero.
   */

  .hero__media {
    position: relative;
    inset: auto;

    z-index: 0;

    width: 100%;
    height: 600px;
  }

  .hero__image {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: 61% 23%;

    transform: none;
  }

  .hero__media::after {
    content: "";

    position: absolute;
    inset: 0;

    background: linear-gradient(
      180deg,
      rgba(5, 6, 6, 0.04) 0%,
      rgba(5, 6, 6, 0.04) 45%,
      rgba(5, 6, 6, 0.22) 61%,
      rgba(5, 6, 6, 0.74) 79%,
      #050606 100%
    );
  }

  .hero__shade {
    z-index: 1;

    background: linear-gradient(
      180deg,
      transparent 0%,
      transparent 31%,
      rgba(0, 0, 0, 0.08) 55%,
      #050606 100%
    );
  }

  .hero__container {
    z-index: 3;

    display: block;

    min-height: 0;

    margin-top: -124px;

    padding-top: 0;
    padding-bottom: 60px;
  }

  .hero__content {
    width: 100%;
  }

  .hero__eyebrow {
    margin-bottom: 17px;

    padding: 8px 11px;

    font-size: 9.5px;
    line-height: 1.35;

    background: rgba(255, 255, 255, 0.11);

    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
  }

  .hero__title {
    max-width: 385px;

    font-size: clamp(40px, 9vw, 50px);
    line-height: 0.98;
    letter-spacing: -0.05em;
  }

  .hero__title span {
    margin-top: 4px;
    margin-bottom: 4px;
  }

  .hero__description {
    max-width: 380px;

    margin-top: 21px;

    font-size: 16px;
    line-height: 1.58;

    color: rgba(255, 255, 255, 0.8);
  }

  .hero__benefits {
    display: flex;
    flex-direction: column;

    width: 100%;
    max-width: none;

    gap: 21px;

    margin-top: 32px;
  }

  .hero-benefit {
    gap: 15px;
  }

  .hero-benefit__icon {
    width: 33px;
    height: 33px;
  }

  .hero-benefit__icon svg {
    width: 31px;
    height: 31px;
  }

  .hero-benefit__content {
    gap: 3px;
  }

  .hero-benefit__content strong {
    font-size: 14px;
    line-height: 1.35;
  }

  .hero-benefit__content span {
    max-width: 310px;

    font-size: 13px;
    line-height: 1.5;
  }

  .hero__actions {
    flex-direction: column;

    width: 100%;

    gap: 13px;

    margin-top: 35px;
  }

  .hero__primary,
  .hero__secondary {
    width: 100%;
    min-width: 0;
    height: 56px;

    border-radius: 8px;

    font-size: 14px;
  }

  .hero__secondary {
    background: transparent;
  }

  .hero__bubbles {
    display: none;
  }
}

/* =========================================================
   430 / 390 / 375
   ========================================================= */

@media (max-width: 430px) {
  .hero__container {
    margin-top: -117px;
  }
}

@media (max-width: 390px) {
  .hero__media {
    height: 390px;
  }

  .hero__container {
    margin-top: -111px;
  }

  .hero__title {
    font-size: 46px;
  }
}

@media (max-width: 375px) {
  .hero__media {
    height: 380px;
  }

  .hero__container {
    margin-top: -105px;
  }

  .hero__title {
    font-size: 35px;
  }

  .hero__description {
    font-size: 15px;
  }
}

/* =========================================================
   320
   ========================================================= */

@media (max-width: 340px) {
  .hero__media {
    height: 355px;
  }

  .hero__container {
    margin-top: -91px;
  }

  .hero__eyebrow {
    max-width: 270px;
  }

  .hero__title {
    font-size: 39px;
  }

  .hero__description {
    font-size: 14px;
  }

  .hero-benefit__content strong {
    font-size: 13px;
  }

  .hero-benefit__content span {
    font-size: 12px;
  }
}

/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
  .hero-bubble,
  .hero__primary,
  .hero__secondary {
    animation: none;
    transition: none;
  }
}

.hero-benefit {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* ЗОВНІШНЄ LIME-КОЛО */

.hero-benefit__icon {
  position: relative;

  flex: 0 0 auto;

  width: 54px;
  height: 54px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  background: #c8ff00;

  box-shadow:
    0 0 0 1px rgba(201, 255, 0, 0.18),
    0 0 22px rgba(201, 255, 0, 0.18);

  transition:
    transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.35s ease;
}

/* ЧОРНЕ КОЛО ВСЕРЕДИНІ */

.hero-benefit__icon-core {
  width: 39px;
  height: 39px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  background: #050505;

  box-shadow:
    0 5px 10px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);

  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* SVG */

.hero-benefit__icon svg {
  width: 23px;
  height: 23px;

  fill: none;

  stroke: #ffffff;
  stroke-width: 1.8;

  stroke-linecap: round;
  stroke-linejoin: round;

  filter: drop-shadow(0 1px 1px rgba(255, 255, 255, 0.15));
}

/* HOVER */

.hero-benefit:hover .hero-benefit__icon {
  transform: translateY(-3px);

  box-shadow:
    0 0 0 1px rgba(201, 255, 0, 0.3),
    0 8px 24px rgba(201, 255, 0, 0.24);
}

.hero-benefit:hover .hero-benefit__icon-core {
  transform: scale(1.06);
}

/* =========================================
   HERO LIVE BUBBLES
   ========================================= */

.hero__bubbles {
  position: absolute;
  inset: 0;
  z-index: 2;

  overflow: hidden;
  pointer-events: none;
}

.hero-bubble {
  --bubble-size: 50px;
  --bubble-duration: 6s;
  --bubble-y: 0px;
  --bubble-rise: -100px;
  --bubble-drift: -700px;

  position: absolute;

  right: calc(var(--bubble-size) * -1.2);
  bottom: var(--bubble-y);

  width: var(--bubble-size);
  height: var(--bubble-size);

  border-radius: 50%;

  border: 1px solid rgba(255, 255, 255, 0.7);

  background:
    radial-gradient(
      circle at 28% 22%,
      rgba(255, 255, 255, 1) 0%,
      rgba(255, 255, 255, 0.9) 2.5%,
      rgba(255, 255, 255, 0.28) 7%,
      transparent 17%
    ),
    radial-gradient(
      circle at 72% 75%,
      rgba(201, 255, 0, 0.24) 0%,
      rgba(184, 239, 0, 0.09) 28%,
      transparent 55%
    ),
    radial-gradient(
      circle at 50% 50%,
      rgba(255, 255, 255, 0.02) 35%,
      rgba(255, 255, 255, 0.08) 68%,
      rgba(255, 255, 255, 0.32) 94%,
      rgba(255, 255, 255, 0.68) 100%
    );

  box-shadow:
    inset 5px 6px 12px rgba(255, 255, 255, 0.2),
    inset -6px -8px 16px rgba(0, 0, 0, 0.22),
    0 3px 16px rgba(0, 0, 0, 0.15),
    0 0 14px rgba(201, 255, 0, 0.05);

  opacity: 0;

  will-change: transform, opacity;

  animation: heroBubbleTravel var(--bubble-duration) linear forwards;
}

.hero-bubble::before {
  content: "";

  position: absolute;

  top: 15%;
  left: 18%;

  width: 24%;
  height: 11%;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.88);

  filter: blur(1px);

  transform: rotate(-32deg);
}

.hero-bubble::after {
  content: "";

  position: absolute;
  inset: 5%;

  border-radius: 50%;

  border-top: 1px solid rgba(255, 255, 255, 0.38);
  border-left: 1px solid rgba(255, 255, 255, 0.13);
}

/* найбільш ефектні великі bubbles */

.hero-bubble.is-large {
  border-width: 1.5px;

  box-shadow:
    inset 8px 10px 20px rgba(255, 255, 255, 0.22),
    inset -9px -12px 22px rgba(0, 0, 0, 0.25),
    0 8px 25px rgba(0, 0, 0, 0.18),
    0 0 20px rgba(201, 255, 0, 0.08);
}

/* маленькі майже як spray */

.hero-bubble.is-small {
  opacity: 0.65;
}

/* РУХ З ПРАВОЇ СТОРОНИ */

@keyframes heroBubbleTravel {
  0% {
    opacity: 0;

    transform: translate3d(0, 0, 0) scale(0.65);
  }

  8% {
    opacity: 0.82;
  }

  25% {
    transform: translate3d(
        calc(var(--bubble-drift) * 0.25),
        calc(var(--bubble-rise) * 0.18),
        0
      )
      scale(1);
  }

  50% {
    transform: translate3d(
        calc(var(--bubble-drift) * 0.5),
        calc(var(--bubble-rise) * 0.55),
        0
      )
      scale(1.06);
  }

  75% {
    opacity: 0.8;

    transform: translate3d(
        calc(var(--bubble-drift) * 0.75),
        calc(var(--bubble-rise) * 0.73),
        0
      )
      scale(0.98);
  }

  100% {
    opacity: 0;

    transform: translate3d(var(--bubble-drift), var(--bubble-rise), 0)
      scale(0.78);
  }
}

@media (max-width: 767px) {
  .hero__bubbles {
    display: block;

    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 108vh;

    z-index: 2;

    overflow: hidden;
    pointer-events: none;
  }
  .site-header::after {
    display: none;
  }
  .hero__title .hero__title-line--accent {
    font-size: 17vw;
  }
}

/* =========================================
   HERO TEXT REVEAL
   ========================================= */

.hero__title-line {
  display: block;
  overflow: hidden;

  margin-bottom: -0.06em;
  padding-bottom: 0.06em;
}

.hero__title-word {
  display: block;

  opacity: 0;

  transform: translate3d(0, 115%, 0) rotate(2deg);

  filter: blur(8px);

  animation: heroTitleReveal 1.05s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* STAGGER */

.hero__title-line:nth-child(1) .hero__title-word {
  animation-delay: 0.15s;
}

.hero__title-line:nth-child(2) .hero__title-word {
  animation-delay: 0.28s;
}

.hero__title-line:nth-child(3) .hero__title-word {
  animation-delay: 0.41s;
}

/* ACCENT */

.hero__title-line--accent .hero__title-word {
  color: var(--color-accent);
}

@keyframes heroTitleReveal {
  0% {
    opacity: 0;

    transform: translate3d(0, 115%, 0) rotate(2deg);

    filter: blur(8px);
  }

  60% {
    opacity: 1;
  }

  100% {
    opacity: 1;

    transform: translate3d(0, 0, 0) rotate(0);

    filter: blur(0);
  }
}

.hero__subtitle,
.hero__text,
.hero__actions,
.hero__benefits {
  opacity: 0;

  transform: translate3d(0, 24px, 0);

  filter: blur(5px);

  animation: heroContentReveal 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero__subtitle {
  animation-delay: 0.62s;
}

.hero__text {
  animation-delay: 0.74s;
}

.hero__actions {
  animation-delay: 0.88s;
}

.hero__benefits {
  animation-delay: 1.02s;
}

@keyframes heroContentReveal {
  from {
    opacity: 0;

    transform: translate3d(0, 24px, 0);

    filter: blur(5px);
  }

  to {
    opacity: 1;

    transform: translate3d(0, 0, 0);

    filter: blur(0);
  }
}

.hero__benefits {
  opacity: 1;
  transform: none;
  filter: none;
  animation: none;
}

.hero-benefit {
  opacity: 0;

  transform: translate3d(0, 22px, 0) scale(0.97);

  filter: blur(4px);

  animation: heroBenefitReveal 0.75s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-benefit:nth-child(1) {
  animation-delay: 1.05s;
}

.hero-benefit:nth-child(2) {
  animation-delay: 1.17s;
}

.hero-benefit:nth-child(3) {
  animation-delay: 1.29s;
}

@keyframes heroBenefitReveal {
  to {
    opacity: 1;

    transform: translate3d(0, 0, 0) scale(1);

    filter: blur(0);
  }
}
.hero__title-line--accent .hero__title-word {
  position: relative;
  width: fit-content;
}

.hero__title-line--accent .hero__title-word::after {
  display: none;
}

@keyframes heroAccentShine {
  to {
    transform: translateX(130%) skewX(-15deg);
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero__title-word,
  .hero__subtitle,
  .hero__text,
  .hero__actions,
  .hero-benefit {
    opacity: 1;
    transform: none;
    filter: none;
    animation: none;
  }

  .hero__title-line--accent .hero__title-word::after {
    display: none;
  }
}

/* =========================================================
   GLOBAL SECTION SYSTEM
   ========================================================= */

.section {
  position: relative;
  isolation: isolate;

  overflow: hidden;

  padding: clamp(100px, 9vw, 160px) 0;

  background: var(--color-background);
}

.section > .container {
  position: relative;
  text-align: center;
  z-index: 3;
}

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

.section-head {
  position: relative;
}

.section-head--center {
  max-width: 1000px;

  margin-inline: auto;

  text-align: center;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 34px;

  padding: 0 20px;

  border-radius: 999px;

  background: linear-gradient(135deg, #c9ff00, var(--color-accent-soft));

  color: #0b0e0b;

  font-size: 12px;
  line-height: 1;

  font-weight: 800;

  letter-spacing: 0.15em;

  text-transform: uppercase;
}

.section-title {
  margin: 38px 0 0;

  font-family: var(--font-display);

  font-size: clamp(64px, 6.5vw, 108px);

  line-height: 0.93;

  font-weight: 600;

  letter-spacing: -0.07em;
}

.section-title__line {
  display: block;
}

.text-accent {
  color: var(--color-accent-soft);
  font-size: clamp(50px, 20vw, 80px);
}

.section-divider {
  display: block;

  width: 100px;
  height: 2px;

  margin: 30px auto 0;

  border-radius: 999px;

  background: var(--color-accent-soft);
}

.section-description {
  max-width: 620px;

  margin: 28px auto 0;

  color: var(--color-muted);

  font-size: 18px;

  line-height: 1.55;

  letter-spacing: -0.025em;
}

/* =========================================================
   PROCESS SECTION
   ========================================================= */

.process-section {
  min-height: 100vh;

  background:
    radial-gradient(
      circle at 3% 100%,
      rgba(184, 239, 0, 0.22),
      transparent 25%
    ),
    radial-gradient(circle at 94% 7%, rgba(184, 239, 0, 0.08), transparent 21%),
    #f4f3ee;
}

/* =========================================================
   STEPS
   ========================================================= */

.process {
  position: relative;

  display: grid;

  grid-template-columns: repeat(3, minmax(0, 1fr));

  gap: clamp(50px, 6vw, 115px);

  margin-top: clamp(80px, 8vw, 120px);
}

.process-item {
  position: relative;

  min-width: 0;

  text-align: center;
}

/* =========================================================
   NUMBER
   ========================================================= */

.process-item__top {
  position: relative;

  display: flex;
  flex-direction: column;

  align-items: center;

  margin-bottom: 20px;
}

.process-item__number {
  font-size: clamp(40px, 7vw, 70px);

  line-height: 1;

  font-weight: 500;

  letter-spacing: -0.07em;

  color: #080d10;
}

.process-item__top--accent .process-item__number {
  color: var(--color-accent-soft);
}

.process-item__top--muted .process-item__number {
  color: #777b79;
}

.process-item__pin {
  position: relative;

  display: block;

  width: 2px;
  height: 35px;

  margin-top: 13px;

  background: currentColor;

  opacity: 0.75;
}

.process-item__pin::before {
  content: "";

  position: absolute;

  top: -4px;
  left: 50%;

  width: 8px;
  height: 8px;

  border-radius: 50%;

  background: currentColor;

  transform: translateX(-50%);
}

/* =========================================================
   TRIANGLE
   ========================================================= */

.process-triangle {
  position: relative;

  width: min(100%, 300px);

  aspect-ratio: 1.05 / 1;

  margin-inline: auto;

  display: grid;

  place-items: center;

  clip-path: polygon(5% 8%, 95% 8%, 52% 96%, 48% 96%);

  transform-origin: center;
  border-radius: 8px;
  will-change: transform, opacity;
}

.process-triangle--dark {
  background: linear-gradient(145deg, #171918 0%, #070909 68%, #020303 100%);

  color: #fff;
}

.process-triangle--accent {
  background: linear-gradient(145deg, #d1ff08 0%, #b8ef00 55%, #9ecd00 100%);

  color: #080b08;

  box-shadow: 0 28px 70px rgba(163, 210, 0, 0.18);
}

.process-triangle--muted {
  background: linear-gradient(145deg, #929493, #727573);

  color: #fff;
}

.process-triangle__icon {
  position: relative;

  z-index: 2;

  width: clamp(58px, 5vw, 82px);

  height: auto;

  margin-top: -13%;

  fill: none;

  stroke: currentColor;

  stroke-width: 1.4;

  stroke-linecap: round;

  stroke-linejoin: round;
}

/* =========================================================
   CONTENT
   ========================================================= */

.process-item__content {
  max-width: 380px;

  margin: 24px auto 0;
}

.process-item__accent {
  display: block;

  width: 20px;
  height: 2px;

  margin: 0 auto 20px;

  border-radius: 999px;

  background: var(--color-accent-soft);
}

.process-item__title {
  margin: 0;

  font-size: clamp(22px, 1.7vw, 29px);

  line-height: 1.04;

  font-weight: 700;

  letter-spacing: -0.055em;

  text-transform: uppercase;
}

.process-item__text {
  max-width: 330px;

  margin: 24px auto 0;

  color: var(--color-muted);

  font-size: 16px;

  line-height: 1.55;

  letter-spacing: -0.02em;
}

/* =========================================================
   CONNECTOR
   ========================================================= */

.process-connector {
  position: absolute;

  top: 190px;

  right: calc(clamp(50px, 6vw, 115px) * -0.72);

  width: 72px;
  height: 72px;

  display: grid;

  grid-template-columns: repeat(5, 5px);

  gap: 6px;

  align-content: center;

  transform: rotate(45deg);
}

.process-connector span {
  display: block;

  width: 5px;
  height: 5px;

  border-radius: 50%;

  background: var(--color-accent-soft);

  opacity: 0;
}

/* =========================================================
   CTA
   ========================================================= */

.section-actions {
  display: flex;

  justify-content: center;

  margin-top: clamp(70px, 7vw, 110px);
}

.btn--outline {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  gap: 13px;

  min-height: 56px;

  padding: 0 27px;

  border: 1px solid rgba(155, 206, 63, 0.75);

  border-radius: 10px;

  background: rgba(255, 255, 255, 0.28);

  color: #090d0a;

  font-size: 14px;

  font-weight: 700;

  letter-spacing: 0.1em;

  text-transform: uppercase;

  transition:
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    background 0.3s ease,
    box-shadow 0.3s ease;
}

.btn--outline svg {
  width: 23px;
  height: 23px;

  fill: var(--color-accent-soft);
}

.btn--outline:hover {
  transform: translateY(-4px);

  background: rgba(184, 239, 0, 0.1);

  box-shadow: 0 15px 40px rgba(120, 158, 0, 0.12);
}

/* =========================================================
   BUBBLES
   ========================================================= */

.section-bubbles {
  position: absolute;

  inset: 0;

  z-index: 1;

  overflow: hidden;

  pointer-events: none;
}

.section-bubble {
  --bubble-size: 55px;
  --bubble-x: 50%;
  --bubble-duration: 10s;
  --bubble-drift: 40px;

  position: absolute;

  left: var(--bubble-x);

  bottom: calc(var(--bubble-size) * -1.2);

  width: var(--bubble-size);

  height: var(--bubble-size);

  border: 1px solid rgba(255, 255, 255, 0.8);

  border-radius: 50%;

  background:
    radial-gradient(
      circle at 27% 20%,
      rgba(255, 255, 255, 0.96) 0%,
      rgba(255, 255, 255, 0.42) 7%,
      transparent 18%
    ),
    radial-gradient(
      circle at 70% 75%,
      rgba(184, 239, 0, 0.25),
      transparent 54%
    ),
    radial-gradient(
      circle at center,
      rgba(255, 255, 255, 0.02) 42%,
      rgba(255, 255, 255, 0.55) 100%
    );

  box-shadow:
    inset 7px 8px 18px rgba(255, 255, 255, 0.35),
    inset -8px -10px 20px rgba(100, 135, 0, 0.08),
    0 7px 25px rgba(50, 70, 20, 0.08);

  opacity: 0;

  will-change: transform, opacity;

  animation: processBubbleMove var(--bubble-duration) linear forwards;
}

@keyframes processBubbleMove {
  0% {
    opacity: 0;

    transform: translate3d(0, 0, 0) scale(0.65);
  }

  10% {
    opacity: 0.75;
  }

  40% {
    transform: translate3d(var(--bubble-drift), -38vh, 0) rotate(55deg) scale(1);
  }

  70% {
    opacity: 0.62;

    transform: translate3d(calc(var(--bubble-drift) * -0.5), -72vh, 0)
      rotate(120deg) scale(1.08);
  }

  100% {
    opacity: 0;

    transform: translate3d(var(--bubble-drift), -110vh, 0) rotate(210deg)
      scale(0.78);
  }
}

/* =========================================================
   SCROLL REVEAL
   ========================================================= */

.reveal-item {
  opacity: 0;

  transform: translate3d(0, 45px, 0);

  filter: blur(7px);

  transition:
    opacity 0.9s ease,
    transform 1.05s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.9s ease;
}

[data-reveal-section].is-visible .reveal-item {
  opacity: 1;

  transform: translate3d(0, 0, 0);

  filter: blur(0);
}

/* Header */

[data-reveal-section].is-visible .section-eyebrow {
  transition-delay: 0.05s;
}

[data-reveal-section].is-visible .section-title {
  transition-delay: 0.12s;
}

[data-reveal-section].is-visible .section-divider {
  transition-delay: 0.2s;
}

[data-reveal-section].is-visible .section-description {
  transition-delay: 0.28s;
}

/* Steps */

[data-reveal-section].is-visible .process-item:nth-child(1) {
  transition-delay: 0.25s;
}

[data-reveal-section].is-visible .process-item:nth-child(2) {
  transition-delay: 0.5s;
}

[data-reveal-section].is-visible .process-item:nth-child(3) {
  transition-delay: 0.75s;
}

/* =========================================================
   TRIANGLE REVEAL
   ========================================================= */

[data-reveal-section].is-visible .process-item:nth-child(1) .process-triangle {
  animation: triangleReveal 1.25s 0.28s cubic-bezier(0.16, 1, 0.3, 1) both;
}

[data-reveal-section].is-visible .process-item:nth-child(2) .process-triangle {
  animation: triangleReveal 1.25s 0.53s cubic-bezier(0.16, 1, 0.3, 1) both;
}

[data-reveal-section].is-visible .process-item:nth-child(3) .process-triangle {
  animation: triangleReveal 1.25s 0.78s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes triangleReveal {
  0% {
    opacity: 0;

    transform: translate3d(0, 70px, 0) rotate(-115deg) scale(0.3);
  }

  65% {
    opacity: 1;

    transform: translate3d(0, -5px, 0) rotate(9deg) scale(1.06);
  }

  82% {
    transform: translate3d(0, 2px, 0) rotate(-3deg) scale(0.985);
  }

  100% {
    opacity: 1;

    transform: translate3d(0, 0, 0) rotate(0) scale(1);
  }
}

/* connector dots */

[data-reveal-section].is-visible
  .process-item:nth-child(1)
  .process-connector
  span {
  animation: connectorReveal 0.4s forwards;
}

[data-reveal-section].is-visible
  .process-item:nth-child(1)
  .process-connector
  span:nth-child(1) {
  animation-delay: 1.05s;
}

[data-reveal-section].is-visible
  .process-item:nth-child(1)
  .process-connector
  span:nth-child(2) {
  animation-delay: 1.11s;
}

[data-reveal-section].is-visible
  .process-item:nth-child(1)
  .process-connector
  span:nth-child(3) {
  animation-delay: 1.17s;
}

[data-reveal-section].is-visible
  .process-item:nth-child(1)
  .process-connector
  span:nth-child(4) {
  animation-delay: 1.23s;
}

[data-reveal-section].is-visible
  .process-item:nth-child(1)
  .process-connector
  span:nth-child(5) {
  animation-delay: 1.29s;
}

[data-reveal-section].is-visible
  .process-item:nth-child(2)
  .process-connector
  span {
  animation: connectorReveal 0.4s forwards;
}

[data-reveal-section].is-visible
  .process-item:nth-child(2)
  .process-connector
  span:nth-child(1) {
  animation-delay: 1.3s;
}

[data-reveal-section].is-visible
  .process-item:nth-child(2)
  .process-connector
  span:nth-child(2) {
  animation-delay: 1.36s;
}

[data-reveal-section].is-visible
  .process-item:nth-child(2)
  .process-connector
  span:nth-child(3) {
  animation-delay: 1.42s;
}

[data-reveal-section].is-visible
  .process-item:nth-child(2)
  .process-connector
  span:nth-child(4) {
  animation-delay: 1.48s;
}

[data-reveal-section].is-visible
  .process-item:nth-child(2)
  .process-connector
  span:nth-child(5) {
  animation-delay: 1.54s;
}

@keyframes connectorReveal {
  from {
    opacity: 0;

    transform: scale(0);
  }

  to {
    opacity: 1;

    transform: scale(1);
  }
}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1024px) {
  .section-title {
    font-size: clamp(58px, 7vw, 78px);
  }

  .process {
    gap: 35px;
  }

  .process-triangle {
    width: min(100%, 250px);
  }

  .process-connector {
    display: none;
  }
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {
  .section {
    padding: 60px 0;
  }

  .section-head--center {
    text-align: left;
  }

  .section-eyebrow {
    min-height: 30px;
    width: 100%;
    padding: 0 15px;

    font-size: 10px;
  }

  .section-title {
    margin-top: 25px;

    font-size: clamp(40px, 11vw, 50px);

    line-height: 0.94;

    letter-spacing: -0.065em;
  }

  .section-divider {
    width: 50px;

    margin: 25px auto 0;
  }

  .section-description {
    max-width: 340px;

    margin: 20px 0 0;

    font-size: 18px;

    line-height: 1.55;
  }

  /* process */

  .process {
    display: flex;

    flex-direction: column;

    gap: 12px;

    margin-top: 70px;
  }

  .process-item {
    text-align: left;
  }

  .process-item__top {
    display: none;
  }

  .process-item__body {
    position: relative;

    display: grid;

    grid-template-columns:
      120px
      minmax(0, 1fr);

    gap: 24px;

    align-items: start;
  }

  .process-triangle {
    width: 120px;

    margin: 0;
  }

  .process-triangle__icon {
    width: 43px;
  }

  .process-item__content {
    max-width: none;

    margin: 0;

    padding-top: 4px;
  }

  .process-item__content::before {
    content: counter(process-step, decimal-leading-zero);

    display: block;

    margin-bottom: 13px;

    color: #101411;

    font-size: 30px;

    line-height: 1;

    font-weight: 500;

    letter-spacing: -0.06em;
  }

  .process {
    counter-reset: process-step;
  }

  .process-item {
    counter-increment: process-step;
  }

  .process-item:nth-child(2) .process-item__content::before {
    color: var(--color-accent-soft);
  }

  .process-item:nth-child(3) .process-item__content::before {
    color: #777b79;
  }

  .process-item__accent {
    width: 22px;

    height: 2px;

    margin: 0 0 14px;
  }

  .process-item__title {
    max-width: 230px;

    font-size: clamp(22px, 6vw, 27px);

    line-height: 1.02;
  }

  .process-item__text {
    max-width: 220px;

    margin: 15px 0 0;

    font-size: 16px;

    line-height: 1.5;
  }

  /* vertical line */

  .process-item:not(:last-child) {
    padding-bottom: 54px;
  }

  .process-item:not(:last-child)::after {
    content: "";

    position: absolute;

    left: 59px;

    bottom: 4px;

    width: 1px;
    height: 42px;

    background: repeating-linear-gradient(
      to bottom,
      var(--color-accent-soft) 0 5px,
      transparent 5px 11px
    );

    transform-origin: top;

    opacity: 0;
  }

  /* mobile stagger */

  [data-reveal-section].is-visible .process-item:nth-child(1) {
    transition-delay: 0.25s;
  }

  [data-reveal-section].is-visible .process-item:nth-child(2) {
    transition-delay: 0.7s;
  }

  [data-reveal-section].is-visible .process-item:nth-child(3) {
    transition-delay: 1.15s;
  }

  /* much stronger rotation */

  [data-reveal-section].is-visible
    .process-item:nth-child(1)
    .process-triangle {
    animation: triangleMobile 1.35s 0.28s cubic-bezier(0.16, 1, 0.3, 1) both;
  }

  [data-reveal-section].is-visible
    .process-item:nth-child(2)
    .process-triangle {
    animation: triangleMobile 1.35s 0.73s cubic-bezier(0.16, 1, 0.3, 1) both;
  }

  [data-reveal-section].is-visible
    .process-item:nth-child(3)
    .process-triangle {
    animation: triangleMobile 1.35s 1.18s cubic-bezier(0.16, 1, 0.3, 1) both;
  }

  [data-reveal-section].is-visible .process-item:nth-child(1)::after {
    animation: mobileLineReveal 0.7s 1.05s forwards;
  }

  [data-reveal-section].is-visible .process-item:nth-child(2)::after {
    animation: mobileLineReveal 0.7s 1.5s forwards;
  }

  @keyframes triangleMobile {
    0% {
      opacity: 0;

      transform: translate3d(-45px, 70px, 0) rotate(-170deg) scale(0.25);
    }

    55% {
      opacity: 1;

      transform: translate3d(7px, -5px, 0) rotate(15deg) scale(1.08);
    }

    75% {
      transform: translate3d(-2px, 2px, 0) rotate(-5deg) scale(0.98);
    }

    100% {
      opacity: 1;

      transform: translate3d(0, 0, 0) rotate(0) scale(1);
    }
  }

  @keyframes mobileLineReveal {
    from {
      opacity: 0;

      transform: scaleY(0);
    }

    to {
      opacity: 1;

      transform: scaleY(1);
    }
  }

  .section-actions {
    justify-content: flex-start;

    margin-top: 65px;
  }

  .process-section__cta {
    width: 100%;
  }
}

/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 390px) {
  .section-title {
    font-size: 46px;
  }

  .process-item__body {
    grid-template-columns:
      105px
      minmax(0, 1fr);

    gap: 19px;
  }

  .process-triangle {
    width: 105px;
  }

  .process-item:not(:last-child)::after {
    left: 52px;
  }
}

@media (max-width: 350px) {
  .section-title {
    font-size: 40px;
  }

  .process-item__body {
    grid-template-columns:
      92px
      minmax(0, 1fr);
  }

  .process-triangle {
    width: 92px;
  }

  .process-item:not(:last-child)::after {
    left: 45px;
  }
}

/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
  .reveal-item {
    opacity: 1;

    transform: none;

    filter: none;
  }

  .process-triangle,
  .section-bubble,
  .process-connector span {
    animation: none !important;
  }
}

/* =========================================================
   MARQUEE
   ========================================================= */

.marquee-section {
  position: relative;

  overflow: hidden;

  padding: 0;

  background: #070909;

  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);

  color: #fff;
}

/* subtle green glow */

.marquee-section::before {
  content: "";

  position: absolute;

  width: 420px;
  height: 180px;

  left: 16%;
  top: 50%;

  background: radial-gradient(circle, rgba(184, 239, 0, 0.2), transparent 68%);

  filter: blur(25px);

  transform: translateY(-50%);

  pointer-events: none;
}

.marquee {
  position: relative;

  width: 100%;

  overflow: hidden;

  padding: clamp(28px, 3vw, 46px) 0;
}

/* soft fade on both sides */

.marquee::before,
.marquee::after {
  content: "";

  position: absolute;

  top: 0;
  bottom: 0;

  z-index: 3;

  width: clamp(40px, 8vw, 160px);

  pointer-events: none;
}

.marquee::before {
  left: 0;

  background: linear-gradient(90deg, #070909, rgba(7, 9, 9, 0));
}

.marquee::after {
  right: 0;

  background: linear-gradient(-90deg, #070909, rgba(7, 9, 9, 0));
}

/* moving track */

.marquee__track {
  display: flex;

  width: max-content;

  will-change: transform;

  animation: marqueeMove 32s linear infinite;
}

.marquee__group {
  display: flex;

  flex-shrink: 0;

  align-items: center;

  gap: clamp(28px, 3vw, 60px);

  padding-right: clamp(28px, 3vw, 60px);
}

/* item */

.marquee__item {
  display: inline-flex;

  flex-shrink: 0;

  align-items: center;

  gap: clamp(15px, 1.5vw, 23px);

  white-space: nowrap;

  font-family: var(--font-display);

  font-size: clamp(32px, 3.5vw, 66px);

  line-height: 1;

  font-weight: 500;

  letter-spacing: -0.055em;

  text-transform: uppercase;

  color: #f7f7f2;
}

/* alternating green word */

.marquee__item--accent {
  color: var(--color-accent);
}

.marquee__item--place {
  color: rgba(255, 255, 255, 0.53);
}

/* svg */

.marquee__icon {
  width: clamp(34px, 3.5vw, 60px);

  height: clamp(34px, 3.5vw, 60px);

  flex: 0 0 auto;

  fill: none;

  stroke: currentColor;

  stroke-width: 1.6;

  stroke-linecap: round;

  stroke-linejoin: round;

  transition:
    transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.4s ease;
}

/* divider */

.marquee__dot {
  position: relative;

  flex: 0 0 auto;

  width: 10px;
  height: 10px;

  border-radius: 50%;

  background: var(--color-accent);

  box-shadow:
    0 0 0 5px rgba(184, 239, 0, 0.08),
    0 0 24px rgba(184, 239, 0, 0.36);
}

/* hover */

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

.marquee__item:hover .marquee__icon {
  transform: rotate(-9deg) scale(1.14);

  filter: drop-shadow(0 0 12px rgba(184, 239, 0, 0.3));
}

/* animation */

@keyframes marqueeMove {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {
  .marquee {
    padding: 26px 0;
  }

  .marquee__track {
    animation-duration: 22s;
  }

  .marquee__group {
    gap: 24px;

    padding-right: 24px;
  }

  .marquee__item {
    gap: 13px;

    font-size: clamp(29px, 9vw, 39px);
  }

  .marquee__icon {
    width: 34px;
    height: 34px;
  }

  .marquee__dot {
    width: 7px;
    height: 7px;
  }
}

/* accessibility */

@media (prefers-reduced-motion: reduce) {
  .marquee__track {
    animation-play-state: paused;
  }
}

/* =========================================================
   PROCESS CONNECTOR — DESKTOP
   ========================================================= */

.process-connector {
  position: absolute;

  top: 205px;
  right: calc(clamp(50px, 6vw, 115px) * -0.82);

  width: clamp(70px, 6vw, 105px);
  height: 52px;

  display: block;

  pointer-events: none;

  transform: none;
}

/* horizontal dotted line */

.process-connector::before {
  content: "";

  position: absolute;

  left: 0;
  top: 50%;

  width: calc(100% - 22px);
  height: 2px;

  transform: translateY(-50%) scaleX(0);
  transform-origin: left center;

  background: repeating-linear-gradient(
    90deg,
    var(--color-accent-soft) 0 5px,
    transparent 5px 11px
  );

  opacity: 0;
}

/* arrow head */

.process-connector::after {
  content: "";

  position: absolute;

  right: -5px;
  top: 50%;

  width: 18px;
  height: 18px;

  border-top: 2px solid var(--color-accent-soft);
  border-right: 2px solid var(--color-accent-soft);

  transform: translateY(-50%) rotate(45deg) scale(0);

  opacity: 0;
}

/* старі span більше не потрібні */

.process-connector span {
  display: none;
}
/* =========================================================
   CONNECTOR ANIMATION
   ========================================================= */

[data-reveal-section].is-visible
  .process-item:nth-child(1)
  .process-connector::before {
  animation: processConnectorLine 0.65s 1.08s cubic-bezier(0.16, 1, 0.3, 1)
    forwards;
}

[data-reveal-section].is-visible
  .process-item:nth-child(1)
  .process-connector::after {
  animation: processConnectorArrow 0.45s 1.55s cubic-bezier(0.16, 1, 0.3, 1)
    forwards;
}

[data-reveal-section].is-visible
  .process-item:nth-child(2)
  .process-connector::before {
  animation: processConnectorLine 0.65s 1.34s cubic-bezier(0.16, 1, 0.3, 1)
    forwards;
}

[data-reveal-section].is-visible
  .process-item:nth-child(2)
  .process-connector::after {
  animation: processConnectorArrow 0.45s 1.81s cubic-bezier(0.16, 1, 0.3, 1)
    forwards;
}

@keyframes processConnectorLine {
  from {
    opacity: 0;

    transform: translateY(-50%) scaleX(0);
  }

  to {
    opacity: 1;

    transform: translateY(-50%) scaleX(1);
  }
}

@keyframes processConnectorArrow {
  0% {
    opacity: 0;

    transform: translateY(-50%) translateX(-10px) rotate(45deg) scale(0.3);
  }

  70% {
    opacity: 1;

    transform: translateY(-50%) translateX(3px) rotate(45deg) scale(1.15);
  }

  100% {
    opacity: 1;

    transform: translateY(-50%) translateX(0) rotate(45deg) scale(1);
  }
}

@media (max-width: 767px) {
  .process-connector {
    display: none;
  }
}

.process-section .btn {
  margin: 30px auto;
}

/* =========================================================
   SERVICES SECTION
   ========================================================= */

.services-section {
  position: relative;

  background:
    radial-gradient(circle at 4% 15%, rgba(184, 239, 0, 0.12), transparent 23%),
    radial-gradient(
      circle at 96% 82%,
      rgba(184, 239, 0, 0.08),
      transparent 22%
    ),
    #070909;

  color: #fff;
}

/* section bubble tuning */

.services-section__bubbles {
  opacity: 0.65;
}

.services-section .section-bubble {
  border-color: rgba(201, 255, 0, 0.28);

  background:
    radial-gradient(
      circle at 28% 20%,
      rgba(255, 255, 255, 0.72) 0%,
      rgba(255, 255, 255, 0.13) 8%,
      transparent 18%
    ),
    radial-gradient(circle at 70% 74%, rgba(201, 255, 0, 0.2), transparent 56%),
    radial-gradient(
      circle at center,
      rgba(0, 0, 0, 0.08) 35%,
      rgba(184, 239, 0, 0.08) 72%,
      rgba(255, 255, 255, 0.3) 100%
    );

  box-shadow:
    inset 5px 6px 16px rgba(255, 255, 255, 0.12),
    inset -7px -9px 18px rgba(184, 239, 0, 0.08),
    0 0 35px rgba(184, 239, 0, 0.08);
}

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

.services-section__head {
  margin-bottom: clamp(70px, 7vw, 110px);
}

.services-section__title {
  color: #fff;
}

.services-section .text-accent {
  color: var(--color-accent);
}

.services-section .section-description {
  color: rgba(255, 255, 255, 0.66);
}

/* =========================================================
   GRID
   ========================================================= */

.services-grid {
  position: relative;

  z-index: 3;

  display: grid;

  grid-template-columns: repeat(3, minmax(0, 1fr));

  gap: 22px;
}

/* =========================================================
   CARD
   ========================================================= */

.service-card {
  --card-delay: 0s;

  position: relative;

  display: flex;
  flex-direction: column;

  min-height: 560px;

  overflow: hidden;

  border: 1px solid rgba(255, 255, 255, 0.1);

  border-radius: 20px;

  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.055),
    rgba(255, 255, 255, 0.018)
  );

  color: #fff;

  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2);

  opacity: 0;

  transform: translate3d(0, 100px, 0) rotateX(10deg) scale(0.94);

  transform-origin: center bottom;

  filter: blur(12px);

  transition:
    transform 0.75s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.45s ease,
    box-shadow 0.5s ease,
    background 0.45s ease;

  will-change: transform, opacity, filter;
}

/* stagger */

.service-card:nth-child(1) {
  --card-delay: 0.08s;
}

.service-card:nth-child(2) {
  --card-delay: 0.18s;
}

.service-card:nth-child(3) {
  --card-delay: 0.28s;
}

.service-card:nth-child(4) {
  --card-delay: 0.38s;
}

.service-card:nth-child(5) {
  --card-delay: 0.48s;
}

.service-card:nth-child(6) {
  --card-delay: 0.58s;
}

/* reveal */

.services-section.is-visible .service-card {
  animation: serviceCardReveal 1.15s var(--card-delay)
    cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes serviceCardReveal {
  0% {
    opacity: 0;

    transform: translate3d(0, 110px, 0) rotateX(12deg) rotateZ(1.5deg)
      scale(0.92);

    filter: blur(14px);
  }

  55% {
    opacity: 1;

    transform: translate3d(0, -8px, 0) rotateX(-1deg) rotateZ(-0.4deg)
      scale(1.015);

    filter: blur(0);
  }

  78% {
    transform: translate3d(0, 3px, 0) scale(0.995);
  }

  100% {
    opacity: 1;

    transform: translate3d(0, 0, 0) rotate(0) scale(1);

    filter: blur(0);
  }
}

/* =========================================================
   IMAGE
   ========================================================= */

.service-card__media {
  position: relative;

  height: 295px;

  overflow: hidden;

  background: #101312;
}

.service-card__image {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;

  transform: scale(1.025);

  filter: saturate(0.82) contrast(1.02);

  transition:
    transform 1.05s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.7s ease;
}

.service-card__media-overlay {
  position: absolute;

  inset: 0;

  background: linear-gradient(
    180deg,
    rgba(4, 7, 6, 0.02) 0%,
    rgba(4, 7, 6, 0.08) 55%,
    rgba(4, 7, 6, 0.78) 100%
  );

  transition: background 0.55s ease;
}

.service-card__index {
  position: absolute;

  z-index: 3;

  top: 18px;
  left: 18px;

  display: grid;

  place-items: center;

  width: 44px;
  height: 44px;

  border-radius: 50%;

  background: rgba(5, 7, 6, 0.48);

  border: 1px solid rgba(255, 255, 255, 0.15);

  backdrop-filter: blur(12px);

  color: var(--color-accent);

  font-size: 12px;

  font-weight: 700;

  letter-spacing: 0.05em;

  transition:
    transform 0.55s cubic-bezier(0.16, 1, 0.3, 1),
    background 0.35s ease;
}

/* =========================================================
   CARD CONTENT
   ========================================================= */

.service-card__content {
  position: relative;

  display: flex;

  flex: 1;

  flex-direction: column;

  padding: 28px 28px 30px;
}

.service-card__top {
  display: flex;

  align-items: flex-start;

  justify-content: space-between;

  gap: 20px;
}

.service-card__title {
  margin: 0;

  max-width: 300px;

  font-size: clamp(24px, 1.8vw, 31px);

  line-height: 1;

  font-weight: 650;

  letter-spacing: -0.055em;

  transition:
    color 0.35s ease,
    transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card__text {
  max-width: 330px;

  margin: 18px 0 0;

  color: rgba(255, 255, 255, 0.6);

  font-size: 15px;

  line-height: 1.55;

  letter-spacing: -0.02em;
}

.service-card__price {
  display: flex;

  align-items: baseline;

  gap: 6px;

  margin-top: auto;

  padding-top: 30px;

  color: rgba(255, 255, 255, 0.65);

  font-size: 15px;
}

.service-card__price strong {
  color: var(--color-accent);

  font-size: 24px;

  font-weight: 650;

  letter-spacing: -0.05em;
}

/* =========================================================
   ARROW
   ========================================================= */

.service-card__arrow {
  position: relative;

  flex: 0 0 auto;

  width: 48px;
  height: 48px;

  display: grid;

  place-items: center;

  overflow: hidden;

  border: 1px solid rgba(184, 239, 0, 0.65);

  border-radius: 50%;

  color: var(--color-accent);

  transition:
    transform 0.55s cubic-bezier(0.16, 1, 0.3, 1),
    color 0.35s ease,
    background 0.35s ease,
    box-shadow 0.4s ease;
}

.service-card__arrow svg {
  width: 21px;
  height: 21px;

  fill: none;

  stroke: currentColor;

  stroke-width: 1.7;

  stroke-linecap: round;

  stroke-linejoin: round;

  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* =========================================================
   PREMIUM HOVER
   ========================================================= */

@media (hover: hover) {
  .service-card:hover {
    transform: translateY(-12px) scale(1.015);

    border-color: rgba(184, 239, 0, 0.38);

    background: linear-gradient(
      180deg,
      rgba(184, 239, 0, 0.055),
      rgba(255, 255, 255, 0.02)
    );

    box-shadow:
      0 35px 90px rgba(0, 0, 0, 0.38),
      0 0 0 1px rgba(184, 239, 0, 0.05),
      0 0 42px rgba(184, 239, 0, 0.07);
  }

  /* photo zoom */

  .service-card:hover .service-card__image {
    transform: scale(1.11) rotate(0.7deg);

    filter: saturate(1.06) contrast(1.04) brightness(1.02);
  }

  /* dark overlay becomes greener */

  .service-card:hover .service-card__media-overlay {
    background: linear-gradient(
      180deg,
      rgba(184, 239, 0, 0.01) 0%,
      rgba(5, 8, 7, 0.08) 50%,
      rgba(5, 8, 7, 0.92) 100%
    );
  }

  /* number rotates */

  .service-card:hover .service-card__index {
    transform: rotate(-10deg) scale(1.08);

    background: rgba(184, 239, 0, 0.14);
  }

  .service-card:hover .service-card__title {
    color: var(--color-accent);

    transform: translateX(4px);
  }

  /* button becomes lime */

  .service-card:hover .service-card__arrow {
    transform: rotate(-45deg) scale(1.08);

    background: var(--color-accent);

    color: #050705;

    box-shadow: 0 0 30px rgba(184, 239, 0, 0.25);
  }

  .service-card:hover .service-card__arrow svg {
    transform: rotate(45deg) translateX(2px);
  }
}

/* =========================================================
   CTA
   ========================================================= */

.services-cta {
  position: relative;

  z-index: 3;

  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    minmax(340px, 0.7fr);

  align-items: center;

  gap: 50px;

  margin-top: 28px;

  padding: clamp(34px, 4vw, 54px);

  border: 1px solid rgba(255, 255, 255, 0.1);

  border-radius: 22px;

  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.055),
    rgba(255, 255, 255, 0.018)
  );

  overflow: hidden;
}

.services-cta::before {
  content: "";

  position: absolute;

  width: 260px;
  height: 260px;

  left: -80px;
  top: -100px;

  border-radius: 50%;

  background: radial-gradient(circle, rgba(184, 239, 0, 0.21), transparent 67%);

  pointer-events: none;
}

.services-cta__content {
  position: relative;

  z-index: 2;
}

.services-cta__label {
  color: var(--color-accent);

  font-size: 12px;

  font-weight: 700;

  letter-spacing: 0.12em;

  text-transform: uppercase;
}

.services-cta__title {
  margin: 12px 0 0;

  font-size: clamp(28px, 2.4vw, 40px);

  line-height: 1;

  letter-spacing: -0.055em;
}

.services-cta__text {
  max-width: 630px;

  margin: 17px 0 0;

  color: rgba(255, 255, 255, 0.6);

  font-size: 16px;

  line-height: 1.55;
}

/* WhatsApp */

.services-cta__button {
  position: relative;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 25px;

  min-height: 86px;

  padding: 0 28px;

  border-radius: 14px;

  background: linear-gradient(135deg, #d1ff00, #a9df00);

  color: #070a07;

  box-shadow: 0 20px 60px rgba(171, 224, 0, 0.18);

  transition:
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.4s ease;
}

.services-cta__button span {
  display: flex;

  flex-direction: column;

  gap: 5px;

  font-size: 16px;

  font-weight: 750;
}

.services-cta__button small {
  font-size: 13px;

  font-weight: 500;

  opacity: 0.68;
}

.services-cta__button svg {
  width: 28px;
  height: 28px;

  fill: none;

  stroke: currentColor;

  stroke-width: 1.6;

  transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

.services-cta__button:hover {
  transform: translateY(-6px) scale(1.015);

  box-shadow: 0 25px 75px rgba(171, 224, 0, 0.28);
}

.services-cta__button:hover svg {
  transform: translateX(8px);
}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1100px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {
  .services-section {
    padding-top: 90px;
  }

  .services-section__head {
    margin-bottom: 55px;
  }

  .services-grid {
    display: flex;

    flex-direction: column;

    gap: 14px;
  }

  /* card becomes horizontal */

  .service-card {
    min-height: 0;

    display: grid;

    grid-template-columns:
      120px
      minmax(0, 1fr);

    border-radius: 15px;

    transform: translate3d(35px, 70px, 0) rotate(3deg) scale(0.9);
  }

  .service-card:nth-child(even) {
    transform: translate3d(-35px, 70px, 0) rotate(-3deg) scale(0.9);
  }

  .services-section.is-visible .service-card {
    animation-name: serviceCardRevealMobile;
  }

  @keyframes serviceCardRevealMobile {
    0% {
      opacity: 0;

      transform: translate3d(50px, 65px, 0) rotate(7deg) scale(0.82);

      filter: blur(10px);
    }

    62% {
      opacity: 1;

      transform: translate3d(-4px, -2px, 0) rotate(-1deg) scale(1.025);

      filter: blur(0);
    }

    100% {
      opacity: 1;

      transform: translate3d(0, 0, 0) rotate(0) scale(1);

      filter: blur(0);
    }
  }

  .service-card__media {
    height: 100%;

    min-height: 180px;
  }

  .service-card__index {
    width: 33px;
    height: 33px;

    top: 10px;
    left: 10px;

    font-size: 9px;
  }

  .service-card__content {
    padding: 20px 18px 18px;
  }

  .service-card__title {
    font-size: clamp(21px, 6vw, 26px);
  }

  .service-card__text {
    margin-top: 11px;

    font-size: 13px;

    line-height: 1.45;
  }

  .service-card__price {
    padding-top: 18px;

    font-size: 12px;
  }

  .service-card__price strong {
    font-size: 18px;
  }

  .service-card__arrow {
    width: 38px;
    height: 38px;
  }

  .service-card__arrow svg {
    width: 17px;
  }

  /* CTA */

  .services-cta {
    grid-template-columns: 1fr;

    gap: 26px;

    margin-top: 18px;

    padding: 28px 22px;
  }

  .services-cta__button {
    width: 100%;

    min-height: 74px;
  }
}

/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 390px) {
  .service-card {
    grid-template-columns:
      104px
      minmax(0, 1fr);
  }

  .service-card__content {
    padding: 17px 14px;
  }

  .service-card__title {
    font-size: 20px;
  }

  .service-card__text {
    font-size: 12px;
  }
}
.service-card,
.services-cta {
  text-align: left;
}

/* =========================================================
   SHORT CONTACT
   ========================================================= */

.contact-mini {
  position: relative;

  background:
    radial-gradient(circle at 7% 5%, rgba(184, 239, 0, 0.12), transparent 23%),
    radial-gradient(circle at 92% 88%, rgba(184, 239, 0, 0.1), transparent 22%),
    var(--color-background);

  color: var(--color-text);
}

/* bubbles трохи делікатніші */

.contact-mini__bubbles {
  opacity: 0.62;
}

/* =========================================================
   BIG DAVAMA BACKGROUND
   ========================================================= */

.contact-mini__brand {
  position: absolute;

  z-index: 0;

  top: 30px;
  left: 50%;

  transform: translateX(-50%);

  width: 100%;

  color: transparent;

  font-family: var(--font-display);

  font-size: clamp(150px, 17vw, 300px);
  line-height: 0.8;

  font-weight: 700;

  letter-spacing: -0.09em;

  text-align: center;

  -webkit-text-stroke: 1px rgba(8, 13, 16, 0.055);

  pointer-events: none;

  user-select: none;
}

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

.contact-mini__container {
  position: relative;

  z-index: 3;

  display: grid;

  grid-template-columns:
    minmax(0, 0.78fr)
    minmax(520px, 1.22fr);

  gap: clamp(70px, 8vw, 145px);

  align-items: center;
}

/* =========================================================
   LEFT
   ========================================================= */

.contact-mini__info {
  text-align: left;
}

.contact-mini__head {
  max-width: 580px;
}

.contact-mini__head .section-eyebrow {
  display: inline-flex;

  align-items: center;

  gap: 10px;

  margin-bottom: 34px;
}

.contact-mini__title {
  margin-top: 0;

  font-size: clamp(60px, 5vw, 90px);

  line-height: 0.88;

  text-align: left;
}

.contact-mini__description {
  max-width: 520px;

  margin: 35px 0 0;

  text-align: left;

  font-size: 18px;

  line-height: 1.6;
}

/* =========================================================
   CONTACT LINKS
   ========================================================= */

.contact-mini__links {
  display: grid;

  gap: 0;

  max-width: 520px;

  margin-top: 40px;
}

.contact-mini__link {
  display: flex;

  align-items: center;

  gap: 18px;

  min-height: 72px;

  border-bottom: 1px solid var(--color-border);

  transition:
    padding-left 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.3s ease;
}

.contact-mini__link:first-child {
  border-top: 1px solid var(--color-border);
}

.contact-mini__link > span:last-child {
  display: flex;

  flex-direction: column;

  gap: 4px;
}

.contact-mini__link small {
  color: #7a920d;

  font-size: 10px;

  font-weight: 750;

  letter-spacing: 0.12em;

  text-transform: uppercase;
}

.contact-mini__link strong {
  font-size: 16px;

  font-weight: 500;

  letter-spacing: -0.025em;
}

/* ICON */

.contact-mini__icon {
  width: 42px;
  height: 42px;

  flex: 0 0 auto;

  display: grid;

  place-items: center;

  border-radius: 50%;

  background: rgba(184, 239, 0, 0.12);

  color: #7e9e00;

  transition:
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    background 0.3s ease,
    color 0.3s ease;
}

.contact-mini__icon svg {
  width: 19px;
  height: 19px;

  fill: none;

  stroke: currentColor;

  stroke-width: 1.6;

  stroke-linecap: round;

  stroke-linejoin: round;
}

/* hover */

@media (hover: hover) {
  .contact-mini__link:hover {
    padding-left: 7px;

    border-color: rgba(184, 239, 0, 0.45);
  }

  .contact-mini__link:hover .contact-mini__icon {
    transform: rotate(-8deg) scale(1.08);

    background: var(--color-accent);

    color: #0a0d0a;
  }
}

/* =========================================================
   WHATSAPP
   ========================================================= */

.contact-mini__whatsapp {
  position: relative;

  display: grid;

  grid-template-columns:
    auto
    1fr
    auto;

  align-items: center;

  gap: 17px;

  max-width: 520px;

  min-height: 66px;

  margin-top: 25px;

  padding: 0 20px;

  overflow: hidden;

  border: 1px solid rgba(155, 206, 63, 0.75);

  border-radius: 10px;

  background: rgba(255, 255, 255, 0.25);

  font-size: 13px;

  font-weight: 700;

  letter-spacing: 0.05em;

  text-transform: uppercase;

  transition:
    color 0.4s ease,
    transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.4s ease;
}

.contact-mini__whatsapp::before {
  content: "";

  position: absolute;

  inset: 0;

  z-index: -1;

  background: var(--color-accent);

  transform: translateY(102%);

  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-mini__whatsapp-icon {
  color: #89ae00;
}

.contact-mini__whatsapp-icon svg {
  width: 25px;
  height: 25px;

  fill: none;

  stroke: currentColor;

  stroke-width: 1.6;

  stroke-linecap: round;

  stroke-linejoin: round;
}

.contact-mini__arrow {
  width: 23px;
  height: 23px;

  fill: none;

  stroke: currentColor;

  stroke-width: 1.7;

  stroke-linecap: round;

  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

@media (hover: hover) {
  .contact-mini__whatsapp:hover {
    transform: translateY(-4px);

    color: #080d10;

    box-shadow: 0 16px 40px rgba(139, 182, 0, 0.16);
  }

  .contact-mini__whatsapp:hover::before {
    transform: translateY(0);
  }

  .contact-mini__whatsapp:hover .contact-mini__arrow {
    transform: translateX(6px);
  }
}

/* =========================================================
   FORM SIDE
   ========================================================= */

.contact-mini__form-wrap {
  position: relative;

  padding-left: clamp(42px, 5vw, 80px);

  border-left: 1px solid var(--color-border);

  text-align: left;
}

.contact-mini__form-head {
  margin-bottom: 30px;
}

.contact-mini__form-head > span {
  display: block;

  margin-bottom: 4px;

  font-size: clamp(24px, 2vw, 32px);

  line-height: 1;

  font-weight: 400;

  letter-spacing: -0.045em;

  text-transform: uppercase;
}

.contact-mini__form-head h3 {
  margin: 0;

  font-size: clamp(48px, 4.3vw, 72px);

  line-height: 0.95;

  font-weight: 650;

  letter-spacing: -0.07em;

  text-transform: uppercase;
}

.contact-mini__form-head h3 span {
  color: var(--color-accent);
}

/* =========================================================
   FORM
   ========================================================= */

.contact-form {
  display: grid;

  gap: 14px;
}

.contact-form__row {
  display: grid;

  grid-template-columns: repeat(2, minmax(0, 1fr));

  gap: 14px;
}

/* field */

.form-field {
  position: relative;

  display: block;
}

.form-field__label {
  position: absolute;

  z-index: 2;

  top: 50%;
  left: 20px;

  color: #505750;

  font-size: 14px;

  pointer-events: none;

  transform: translateY(-50%);

  transition:
    top 0.25s ease,
    transform 0.25s ease,
    font-size 0.25s ease,
    color 0.25s ease;
}

.form-field:has(textarea) .form-field__label {
  top: 20px;

  transform: none;
}

.form-field__label em,
.contact-form__consent em {
  color: #8eae00;

  font-style: normal;
}

.form-field input,
.form-field textarea {
  width: 100%;

  border: 1px solid rgba(8, 13, 16, 0.13);

  border-radius: 10px;

  outline: none;

  background: rgba(255, 255, 255, 0.27);

  color: var(--color-text);

  font: inherit;

  transition:
    border-color 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease;
}

.form-field input {
  height: 64px;

  padding: 20px 20px 8px;
}

.form-field textarea {
  min-height: 135px;

  padding: 38px 20px 18px;

  resize: vertical;
}

/* placeholder textarea */

.form-field textarea::placeholder {
  color: rgba(8, 13, 16, 0.38);
}

/* FLOAT LABEL */

.form-field:focus-within .form-field__label,
.form-field:has(input:not(:placeholder-shown)) .form-field__label {
  top: 11px;

  color: #769500;

  font-size: 10px;

  font-weight: 700;

  letter-spacing: 0.07em;

  text-transform: uppercase;

  transform: none;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--color-accent-soft);

  background: rgba(255, 255, 255, 0.58);

  box-shadow: 0 0 0 4px rgba(184, 239, 0, 0.08);
}

/* =========================================================
   CHECKBOX
   ========================================================= */

.contact-form__consent {
  display: flex;

  align-items: center;

  gap: 11px;

  margin: 5px 0 3px;

  color: var(--color-muted);

  font-size: 13px;

  line-height: 1.35;

  cursor: pointer;
}

.contact-form__consent input {
  position: absolute;

  opacity: 0;

  pointer-events: none;
}

.contact-form__checkbox {
  position: relative;

  width: 21px;
  height: 21px;

  flex: 0 0 auto;

  border: 1px solid rgba(8, 13, 16, 0.22);

  border-radius: 5px;

  background: rgba(255, 255, 255, 0.4);

  transition:
    border-color 0.25s ease,
    background 0.25s ease,
    transform 0.25s ease;
}

.contact-form__checkbox::after {
  content: "";

  position: absolute;

  left: 6px;
  top: 3px;

  width: 5px;
  height: 9px;

  border-right: 2px solid #0a0d0a;

  border-bottom: 2px solid #0a0d0a;

  opacity: 0;

  transform: rotate(45deg) scale(0.4);

  transition:
    opacity 0.2s ease,
    transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-form__consent input:checked + .contact-form__checkbox {
  background: var(--color-accent);

  border-color: var(--color-accent);
}

.contact-form__consent input:checked + .contact-form__checkbox::after {
  opacity: 1;

  transform: rotate(45deg) scale(1);
}

/* =========================================================
   SUBMIT
   ========================================================= */

.contact-form__submit {
  width: 100%;

  min-height: 62px;

  margin-top: 6px;

  justify-content: space-between;

  padding: 0 25px;

  border-radius: 10px;

  font-size: 15px;

  font-weight: 700;

  text-transform: uppercase;
}

.contact-form__submit svg {
  width: 24px;
  height: 24px;

  fill: none;

  stroke: currentColor;

  stroke-width: 1.7;

  stroke-linecap: round;

  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-form__submit:hover svg {
  transform: translateX(6px);
}

.contact-form__note {
  margin: 3px 0 0;

  color: var(--color-muted);

  font-size: 13px;

  text-align: center;
}

/* =========================================================
   REVEAL STAGGER
   ========================================================= */

.contact-mini.is-visible .contact-mini__head .reveal-item:nth-child(1) {
  transition-delay: 0.05s;
}

.contact-mini.is-visible .contact-mini__title {
  transition-delay: 0.12s;
}

.contact-mini.is-visible .contact-mini__description {
  transition-delay: 0.2s;
}

.contact-mini.is-visible .contact-mini__links .reveal-item:nth-child(1) {
  transition-delay: 0.28s;
}

.contact-mini.is-visible .contact-mini__links .reveal-item:nth-child(2) {
  transition-delay: 0.36s;
}

.contact-mini.is-visible .contact-mini__whatsapp {
  transition-delay: 0.44s;
}

.contact-mini.is-visible .contact-mini__form-wrap {
  transition-delay: 0.25s;
}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 980px) {
  .contact-mini__container {
    grid-template-columns: 1fr;

    gap: 65px;
  }

  .contact-mini__info,
  .contact-mini__head {
    max-width: 720px;
  }

  .contact-mini__form-wrap {
    padding-left: 0;

    padding-top: 55px;

    border-left: 0;

    border-top: 1px solid var(--color-border);
  }
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {
  .contact-mini__brand {
    top: 20px;

    left: -15px;

    width: auto;

    transform: none;

    font-size: 110px;

    opacity: 0.55;

    writing-mode: vertical-rl;

    text-orientation: mixed;
  }

  .contact-mini__container {
    gap: 52px;
  }

  .contact-mini__title {
    font-size: clamp(48px, 14vw, 64px);

    line-height: 0.9;
  }

  .contact-mini__description {
    max-width: 360px;

    margin-top: 25px;

    font-size: 16px;
  }

  .contact-mini__links {
    margin-top: 28px;
  }

  .contact-mini__link {
    min-height: 66px;
  }

  .contact-mini__link strong {
    font-size: 14px;
  }

  /* WhatsApp раніше за форму */

  .contact-mini__whatsapp {
    width: 100%;

    min-height: 60px;

    margin-top: 18px;
  }

  .contact-mini__form-wrap {
    padding-top: 42px;
  }

  .contact-mini__form-head {
    margin-bottom: 25px;
  }

  .contact-mini__form-head > span {
    font-size: 21px;
  }

  .contact-mini__form-head h3 {
    font-size: clamp(43px, 12vw, 55px);
  }

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

  .form-field input {
    height: 58px;
  }

  .form-field textarea {
    min-height: 125px;
  }

  .contact-form__submit {
    min-height: 58px;
  }
}

/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 390px) {
  .contact-mini__title {
    font-size: 48px;
  }

  .contact-mini__link {
    gap: 13px;
  }

  .contact-mini__icon {
    width: 38px;
    height: 38px;
  }

  .contact-mini__whatsapp {
    padding: 0 15px;

    font-size: 11px;
  }

  .contact-form__consent {
    font-size: 12px;
  }
}

.contact-mini__info .btn {
  margin-top: 30px;
  width: 100%;
}
/* ==================================================
   DAVAMA — COMPACT FOOTER
================================================== */

.site-footer {
  --footer-green: #c6ff00;
  --footer-black: #080808;

  position: relative;
  overflow: hidden;

  background: var(--footer-green);
  color: var(--footer-black);

  padding: 42px 0 24px;
}

/* ==================================================
   MAIN
================================================== */

.site-footer__main {
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  align-items: start;

  gap: clamp(50px, 8vw, 140px);

  padding-bottom: 42px;
}

/* ==================================================
   BRAND
================================================== */

.site-footer__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.site-footer__logo {
  display: inline-flex;
}

.site-footer__logo img {
  display: block;

  width: clamp(125px, 10vw, 165px);
  height: auto;
}

.site-footer__brand-text {
  margin-top: 8px;

  font-size: 9px;
  font-weight: 700;

  letter-spacing: 0.32em;
  text-transform: uppercase;
}

/* ==================================================
   PAGES
================================================== */

.site-footer__pages {
  width: 100%;
}

.site-footer__label {
  display: block;

  margin-bottom: 17px;

  font-size: 10px;
  font-weight: 800;

  letter-spacing: 0.32em;
  text-transform: uppercase;
}

/* LINKS */

.site-footer__nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.site-footer__link {
  position: relative;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 0 18px;

  color: var(--footer-black);
  text-decoration: none;

  overflow: hidden;

  transition:
    color 0.4s ease,
    padding 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

/* black hover layer */

.site-footer__link::before {
  content: "";

  position: absolute;
  inset: 0;

  background: var(--footer-black);

  transform: translateY(102%);

  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);

  z-index: -1;
}

.site-footer__link > span {
  position: relative;
  z-index: 2;
}

.site-footer__link > span:first-child {
  font-size: clamp(13px, 1vw, 16px);
  font-weight: 500;
}

.site-footer__arrow {
  flex: 0 0 auto;

  margin-left: 14px;

  font-size: 25px;
  line-height: 1;

  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* HOVER */

@media (hover: hover) {
  .site-footer__link:hover {
    color: var(--footer-green);
    padding-left: 24px;
  }

  .site-footer__link:hover::before {
    transform: translateY(0);
  }

  .site-footer__link:hover .site-footer__arrow {
    transform: rotate(45deg);
  }
}

/* ==================================================
   BOTTOM
================================================== */

.site-footer__bottom {
  position: relative;
  z-index: 2;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 30px;

  padding-top: 22px;

  border-top: 1px solid rgba(0, 0, 0, 0.35);
}

/* SECURITY */

.site-footer__safe {
  display: flex;
  align-items: center;

  gap: 12px;
}

.site-footer__check {
  display: grid;
  place-items: center;

  width: 34px;
  height: 34px;

  flex: 0 0 34px;

  border: 1px solid var(--footer-black);
  border-radius: 50%;

  font-size: 14px;
  font-weight: 800;
}

.site-footer__safe div {
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-footer__safe strong {
  font-size: 10px;
  font-weight: 800;

  letter-spacing: 0.08em;
}

.site-footer__safe div > span {
  font-size: 11px;
  opacity: 0.72;
}

/* COPYRIGHT */

.site-footer__copy {
  display: flex;
  align-items: center;
  gap: 20px;

  font-size: 11px;
}

.site-footer__copy span:last-child {
  opacity: 0.65;
}

/* ==================================================
   BUBBLE
================================================== */

.site-footer__bubble {
  position: absolute;

  width: 105px;
  height: 105px;

  top: -45px;
  right: 6%;

  border-radius: 50%;

  background: radial-gradient(
    circle at 32% 25%,
    rgba(255, 255, 255, 0.9),
    rgba(255, 255, 255, 0.28) 22%,
    rgba(255, 255, 255, 0.05) 55%,
    rgba(0, 0, 0, 0.08) 100%
  );

  border: 1px solid rgba(255, 255, 255, 0.65);

  box-shadow:
    inset 6px 6px 18px rgba(255, 255, 255, 0.35),
    inset -8px -8px 20px rgba(0, 0, 0, 0.07);

  pointer-events: none;

  animation: footerBubble 6s ease-in-out infinite;
}

@keyframes footerBubble {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(10px);
  }
}

/* ==================================================
   MOBILE
================================================== */

@media (max-width: 767px) {
  .site-footer {
    padding: 30px 0 20px;
  }

  /* MAIN */

  .site-footer__main {
    display: block;

    padding-bottom: 28px;
  }

  /* LOGO */

  .site-footer__logo img {
    width: 120px;
  }

  .site-footer__brand-text {
    margin-top: 6px;
    font-size: 8px;
  }

  /* PAGES */

  .site-footer__pages {
    margin-top: 42px;
  }

  .site-footer__label {
    margin-bottom: 14px;

    font-size: 9px;
  }

  .site-footer__nav {
    display: block;
  }

  .site-footer__link {
    padding: 5px 0;

    border-left: 0 !important;
    border-right: 0;
  }

  .site-footer__link > span:first-child {
    font-size: 14px;
  }

  .site-footer__arrow {
    margin-left: 15px;

    font-size: 23px;
  }

  /* BOTTOM */

  .site-footer__bottom {
    display: block;

    padding-top: 20px;
  }

  .site-footer__safe {
    align-items: center;
  }

  .site-footer__safe div {
    display: block;
  }

  .site-footer__safe strong {
    display: block;

    margin: 2px 0 4px;

    font-size: 9px;
  }

  .site-footer__safe div > span {
    display: block;

    font-size: 10px;
  }

  /* COPYRIGHT */

  .site-footer__copy {
    justify-content: space-between;

    margin-top: 24px;

    font-size: 9px;
  }

  /* BUBBLE */

  .site-footer__bubble {
    width: 75px;
    height: 75px;

    top: -25px;
    right: -18px;
  }
}

.site-footer__arrow svg {
  display: block;

  width: 36px;
  height: 18px;

  fill: none;
  stroke: currentColor;

  /* дуже тонка лінія */
  stroke-width: 0.9;

  stroke-linecap: round;
  stroke-linejoin: round;
}

/* =========================================================
   CONTACT FORM SUBMIT
   same interaction as footer links
   ========================================================= */

.contact-form__submit {
  position: relative;
  isolation: isolate;
  overflow: hidden;

  width: 100%;
  min-height: 62px;
  margin-top: 6px;

  justify-content: space-between;

  padding: 0 25px;

  border-radius: 10px;

  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;

  background: var(--color-accent);
  color: #080808;

  transition:
    color 0.4s ease,
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

/* чорний шар — так само як у footer links */

.contact-form__submit::before {
  content: "";

  position: absolute;
  inset: 0;

  z-index: -1;

  background: #080808;

  transform: translateY(102%);

  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* текст */

.contact-form__submit > span {
  position: relative;
  z-index: 2;
}

/* arrow wrapper */

.contact-form__submit-arrow {
  display: grid;
  place-items: center;

  width: 44px;
  height: 24px;

  flex: 0 0 44px;

  margin-left: 20px;

  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* та сама довга тонка arrow */

.contact-form__submit-arrow svg {
  display: block;

  width: 44px;
  height: 24px;

  fill: none;
  stroke: currentColor;

  stroke-width: 0.9;
  stroke-linecap: round;
  stroke-linejoin: round;

  overflow: visible;
}

/* =========================================================
   HOVER
   ========================================================= */

@media (hover: hover) {
  .contact-form__submit:hover {
    color: var(--color-accent);
  }

  .contact-form__submit:hover::before {
    transform: translateY(0);
  }

  .contact-form__submit:hover .contact-form__submit-arrow {
    transform: translateX(7px);
  }
}

/* keyboard */

.contact-form__submit:focus-visible {
  outline: 2px solid #080808;
  outline-offset: 3px;
}

.services-cta__arrow {
  display: grid;
  place-items: center;

  width: 44px;
  height: 24px;

  flex: 0 0 44px;
  margin-left: 20px;

  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.services-cta__arrow svg {
  display: block;

  width: 44px;
  height: 24px;

  fill: none;
  stroke: currentColor;

  stroke-width: 0.9;
  stroke-linecap: round;
  stroke-linejoin: round;

  overflow: visible;
}

/* =========================================================
   IMAGE MESSAGE / BEFORE CONTACT
   ========================================================= */

.image-message {
  position: relative;

  min-height: max-content;

  display: flex;
  align-items: center;

  overflow: hidden;

  background: #050606;
  color: #fff;

  isolation: isolate;
}

/* =========================================================
   IMAGE
   ========================================================= */

.image-message__media {
  position: absolute;
  inset: 0;

  z-index: -3;

  overflow: hidden;
}

.image-message__image {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;
  object-position: center;

  transform: scale(1.04);

  transition: transform 2s cubic-bezier(0.16, 1, 0.3, 1);
}

/* при появі легкий cinematic zoom */

.image-message.is-visible .image-message__image {
  transform: scale(1);
}

/* =========================================================
   SHADE
   ========================================================= */

.image-message__shade {
  position: absolute;
  inset: 0;

  z-index: -2;

  background:
    linear-gradient(
      90deg,
      rgba(3, 5, 4, 0.94) 0%,
      rgba(3, 5, 4, 0.78) 34%,
      rgba(3, 5, 4, 0.34) 68%,
      rgba(3, 5, 4, 0.18) 100%
    ),
    linear-gradient(180deg, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.38));
}

/* =========================================================
   CONTENT
   ========================================================= */

.image-message__container {
  position: relative;

  z-index: 3;
}

.image-message__content {
  max-width: 1050px;

  text-align: left;
}

/* eyebrow */

.image-message__eyebrow {
  display: inline-flex;

  align-items: center;

  gap: 10px;

  margin-bottom: 35px;

  color: rgba(255, 255, 255, 0.78);

  border-color: rgba(255, 255, 255, 0.14);

  background: rgba(255, 255, 255, 0.07);

  backdrop-filter: blur(14px);
}

/* =========================================================
   TITLE
   ========================================================= */

.image-message__title {
  margin: 0;

  font-family: var(--font-display);

  font-size: clamp(64px, 7vw, 90px);

  line-height: 0.86;

  font-weight: 650;

  letter-spacing: -0.075em;

  text-transform: uppercase;
}

.image-message__line {
  display: block;
}

.image-message__line--accent {
  color: var(--color-accent);
}

/* =========================================================
   TEXT
   ========================================================= */

.image-message__text {
  max-width: 440px;

  margin: 35px 0 0;

  color: rgba(255, 255, 255, 0.68);

  font-size: clamp(16px, 1.2vw, 19px);

  line-height: 1.55;

  letter-spacing: -0.025em;
}

/* =========================================================
   BUBBLES
   ========================================================= */

.image-message__bubbles {
  z-index: 2;

  opacity: 0.72;
}

.image-message .section-bubble {
  border-color: rgba(255, 255, 255, 0.45);

  box-shadow:
    inset 7px 8px 18px rgba(255, 255, 255, 0.28),
    inset -8px -10px 20px rgba(184, 239, 0, 0.06),
    0 10px 35px rgba(0, 0, 0, 0.18);
}

/* =========================================================
   STAGGER REVEAL
   ========================================================= */

.image-message.is-visible .image-message__eyebrow {
  transition-delay: 0.05s;
}

.image-message.is-visible .image-message__line:nth-child(1) {
  transition-delay: 0.12s;
}

.image-message.is-visible .image-message__line:nth-child(2) {
  transition-delay: 0.2s;
}

.image-message.is-visible .image-message__line:nth-child(3) {
  transition-delay: 0.31s;
}

.image-message.is-visible .image-message__line:nth-child(4) {
  transition-delay: 0.4s;
}

.image-message.is-visible .image-message__text {
  transition-delay: 0.5s;
}

/* =========================================================
   DESKTOP DECORATIVE GLOW
   ========================================================= */

.image-message::after {
  content: "";

  position: absolute;

  z-index: -1;

  width: 430px;
  height: 430px;

  left: -160px;
  bottom: -190px;

  border-radius: 50%;

  background: radial-gradient(circle, rgba(184, 239, 0, 0.17), transparent 68%);

  filter: blur(15px);

  pointer-events: none;
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {
  .image-message {
    min-height: 680px;

    align-items: flex-end;

    padding: 80px 0 70px;
  }

  .image-message__image {
    object-position: 62% center;
  }

  .image-message__shade {
    background: linear-gradient(
      180deg,
      rgba(3, 5, 4, 0.18) 0%,
      rgba(3, 5, 4, 0.43) 33%,
      rgba(3, 5, 4, 0.9) 72%,
      rgba(3, 5, 4, 0.97) 100%
    );
  }

  .image-message__eyebrow {
    margin-bottom: 25px;
  }

  .image-message__title {
    font-size: clamp(40px, 12vw, 60px);

    line-height: 0.9;

    letter-spacing: -0.065em;
  }

  .image-message__text {
    max-width: 315px;

    margin-top: 25px;

    font-size: 15px;
  }

  /* трохи менше bubbles на mobile */

  .image-message__bubbles {
    opacity: 0.48;
  }
}

/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 390px) {
  .image-message {
    min-height: 620px;
  }

  .image-message__title {
    font-size: 46px;
  }
}
/* =========================================
   SERVICE PROCESS — DESKTOP
   01   02   03
      04   05
========================================= */

.process-section .process {
  display: grid;

  grid-template-columns: repeat(6, minmax(0, 1fr));

  column-gap: 42px;
  row-gap: 80px;

  width: 100%;
  max-width: 1180px;

  margin: 72px auto 0;
}

/* 01 */

.process-section .process-item:nth-child(1) {
  grid-column: 1 / span 2;
  grid-row: 1;
}

/* 02 */

.process-section .process-item:nth-child(2) {
  grid-column: 3 / span 2;
  grid-row: 1;
}

/* 03 */

.process-section .process-item:nth-child(3) {
  grid-column: 5 / span 2;
  grid-row: 1;
}

/* 04 */

.process-section .process-item:nth-child(4) {
  grid-column: 2 / span 2;
  grid-row: 2;
}

/* 05 */

.process-section .process-item:nth-child(5) {
  grid-column: 4 / span 2;
  grid-row: 2;
}

.process-section .process-item {
  position: relative;

  width: 100%;
  min-width: 0;
}

@media (max-width: 767px) {
  /* =========================================
     PROCESS — MOBILE / ORIGINAL STYLE
  ========================================= */

  .process-section .process {
    display: flex;
    flex-direction: column;

    width: 100%;
    max-width: 440px;

    margin: 48px auto 0;
  }

  .process-section .process-item {
    width: 100%;

    transform: none !important;
  }

  /* повертаємо старий connector */

  .process-section .process-connector {
    display: none;
  }

  .process-section .process-item__body {
    width: 100%;
  }

  /* CTA */

  .process-section .section-actions {
    display: flex;
    justify-content: center;

    width: 100%;

    margin-top: 44px;
  }

  .process-section .process-section__cta {
    width: 100%;
    max-width: 440px;
  }
}

/* =========================================================
   VALUES SECTION
========================================================= */

.values-section {
  position: relative;
  overflow: hidden;

  background:
    radial-gradient(
      circle at 78% 18%,
      rgba(184, 239, 0, 0.08),
      transparent 24%
    ),
    radial-gradient(
      circle at 15% 82%,
      rgba(184, 239, 0, 0.045),
      transparent 28%
    ),
    var(--color-background);

  isolation: isolate;
}

/* =========================================================
   HEAD
========================================================= */

.values-section__head {
  position: relative;

  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 0.85fr);
  align-items: center;

  gap: clamp(60px, 8vw, 130px);

  margin-bottom: clamp(70px, 8vw, 120px);
}

.values-section__intro {
  position: relative;
  z-index: 3;
}

.values-section__title {
  max-width: 850px;
}

.values-section__description {
  max-width: 650px;
}

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

.values-map {
  position: relative;

  min-height: 390px;

  display: grid;
  place-items: center;

  opacity: 0;
  transform: translate3d(70px, 30px, 0) scale(0.92);

  transition:
    opacity 1s ease,
    transform 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.values-section.is-visible .values-map {
  opacity: 1;

  transform: translate3d(0, 0, 0) scale(1);
}

.values-map__shape {
  position: relative;

  width: min(100%, 620px);
}

.values-map__shape svg {
  display: block;

  width: 100%;
  height: auto;

  overflow: visible;
}

.values-map__outline {
  fill: rgba(184, 239, 0, 0.025);

  stroke: rgba(125, 165, 0, 0.34);
  stroke-width: 1.2;

  stroke-dasharray: 1200;
  stroke-dashoffset: 1200;

  transition: stroke-dashoffset 2.4s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
}

.values-section.is-visible .values-map__outline {
  stroke-dashoffset: 0;
}

/* маршрути */

.values-map__route {
  fill: none;

  stroke: var(--color-accent-soft);
  stroke-width: 1.2;

  stroke-linecap: round;

  stroke-dasharray: 8 8;

  opacity: 0;

  transition: opacity 0.8s ease 1s;
}

.values-section.is-visible .values-map__route {
  opacity: 0.52;

  animation: valuesRoute 8s linear infinite;
}

.values-map__route--2 {
  animation-delay: -2s !important;
}

.values-map__route--3 {
  animation-delay: -4s !important;
}

.values-map__route--4 {
  animation-delay: -6s !important;
}

.values-map__point {
  fill: var(--color-accent);

  filter: drop-shadow(0 0 8px rgba(184, 239, 0, 0.7));

  opacity: 0;

  transform-box: fill-box;
  transform-origin: center;

  transition: opacity 0.5s ease 1.4s;
}

.values-section.is-visible .values-map__point {
  opacity: 1;

  animation: valuesPointPulse 2.5s ease-in-out infinite;
}

/* central pulse */

.values-map__pulse {
  fill: none;

  stroke: var(--color-accent);
  stroke-width: 1;

  opacity: 0;

  transform-box: fill-box;
  transform-origin: center;
}

.values-section.is-visible .values-map__pulse {
  animation: valuesPulse 2.8s ease-out infinite;
}

.values-map__pulse--2 {
  animation-delay: 0.8s !important;
}

/* pin */

.values-map__pin {
  position: absolute;

  left: 50%;
  top: 49%;

  width: 72px;
  height: 72px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  background: radial-gradient(
    circle at 35% 28%,
    #d8ff4d,
    var(--color-accent) 54%,
    #95c600
  );

  box-shadow:
    0 20px 50px rgba(139, 184, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.55);

  opacity: 0;

  transform: translate(-50%, -50%) scale(0.3) rotate(-18deg);

  transition:
    opacity 0.7s ease 1.05s,
    transform 1s cubic-bezier(0.34, 1.56, 0.64, 1) 1.05s;
}

.values-section.is-visible .values-map__pin {
  opacity: 1;

  transform: translate(-50%, -50%) scale(1) rotate(0);
}

.values-map__pin svg {
  width: 34px;

  fill: none;
  stroke: #0a0d0a;

  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.values-map__caption {
  position: absolute;

  right: 5%;
  bottom: 10%;

  display: flex;
  align-items: center;

  gap: 10px;

  color: rgba(8, 13, 16, 0.55);

  font-size: 11px;
  font-weight: 700;

  letter-spacing: 0.08em;
  text-transform: uppercase;

  opacity: 0;

  transform: translateY(12px);

  transition:
    opacity 0.6s ease 1.65s,
    transform 0.7s ease 1.65s;
}

.values-section.is-visible .values-map__caption {
  opacity: 1;
  transform: translateY(0);
}

.values-map__caption span {
  width: 7px;
  height: 7px;

  border-radius: 50%;

  background: var(--color-accent);

  box-shadow: 0 0 0 5px rgba(184, 239, 0, 0.13);
}

/* =========================================================
   GRID
========================================================= */

.values-grid {
  position: relative;

  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));

  gap: 22px;
}

/* лінія за картками */

.values-grid::before {
  content: "";

  position: absolute;

  left: 3%;
  right: 3%;
  top: 46%;

  height: 1px;

  background: linear-gradient(
    90deg,
    transparent,
    rgba(139, 185, 0, 0.28),
    rgba(139, 185, 0, 0.28),
    transparent
  );

  transform: scaleX(0);

  transform-origin: left center;

  transition: transform 1.6s cubic-bezier(0.16, 1, 0.3, 1) 0.45s;
}

.values-section.is-visible .values-grid::before {
  transform: scaleX(1);
}

/* =========================================================
   CARD
========================================================= */

.value-card {
  --card-delay: 0s;

  position: relative;

  min-width: 0;

  border: 1px solid rgba(8, 13, 16, 0.075);

  border-radius: 22px;

  background: rgba(249, 249, 246, 0.72);

  box-shadow: 0 18px 50px rgba(20, 27, 18, 0.04);

  overflow: hidden;

  isolation: isolate;

  opacity: 0;

  transform: translate3d(0, 70px, 0) scale(0.94) rotateX(8deg);

  transform-origin: center bottom;

  transition:
    opacity 0.8s ease var(--card-delay),
    transform 1.1s cubic-bezier(0.16, 1, 0.3, 1) var(--card-delay),
    box-shadow 0.5s ease,
    border-color 0.5s ease;
}

.value-card:nth-child(1) {
  --card-delay: 0.15s;
}

.value-card:nth-child(2) {
  --card-delay: 0.28s;
}

.value-card:nth-child(3) {
  --card-delay: 0.41s;
}

.value-card:nth-child(4) {
  --card-delay: 0.54s;
}

.values-section.is-visible .value-card {
  opacity: 1;

  transform: translate3d(0, 0, 0) scale(1) rotateX(0);
}

/* spotlight */

.value-card__spotlight {
  position: absolute;

  width: 230px;
  height: 230px;

  left: var(--spot-x, 50%);
  top: var(--spot-y, 50%);

  z-index: -1;

  transform: translate(-50%, -50%);

  border-radius: 50%;

  background: radial-gradient(
    circle,
    rgba(184, 239, 0, 0.18),
    rgba(184, 239, 0, 0.06) 38%,
    transparent 70%
  );

  opacity: 0;

  pointer-events: none;

  transition: opacity 0.4s ease;
}

/* =========================================================
   MEDIA
========================================================= */

.value-card__media {
  position: relative;

  height: 290px;

  overflow: hidden;

  clip-path: inset(0 0 100% 0 round 22px 22px 0 0);

  transition: clip-path 1.1s cubic-bezier(0.16, 1, 0.3, 1)
    calc(var(--card-delay) + 0.2s);
}

.values-section.is-visible .value-card__media {
  clip-path: inset(0 0 0 0 round 22px 22px 0 0);
}

.value-card__image {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;

  transform: scale(1.14);

  filter: saturate(0.8) contrast(0.95);

  transition:
    transform 1s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.6s ease;
}

.values-section.is-visible .value-card__image {
  animation: valueImageReveal 1.6s cubic-bezier(0.16, 1, 0.3, 1)
    calc(var(--card-delay) + 0.15s) both;
}

.value-card__media-shade {
  position: absolute;
  inset: 0;

  background: linear-gradient(180deg, rgba(6, 8, 7, 0.02), rgba(6, 8, 7, 0.18));

  pointer-events: none;
}

/* moving shine */

.value-card__media::after {
  content: "";

  position: absolute;

  top: -20%;
  bottom: -20%;

  width: 35%;

  left: -60%;

  background: linear-gradient(
    100deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );

  transform: skewX(-18deg);

  pointer-events: none;
}

.values-section.is-visible .value-card__media::after {
  animation: valuesShine 1.2s cubic-bezier(0.16, 1, 0.3, 1)
    calc(var(--card-delay) + 0.55s) both;
}

/* =========================================================
   NUMBER + ICON
========================================================= */

.value-card__number {
  position: absolute;

  left: 18px;
  bottom: 18px;

  z-index: 3;

  min-width: 42px;
  height: 30px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 8px;

  background: var(--color-accent);

  color: #0b0e0b;

  font-size: 11px;
  font-weight: 800;

  letter-spacing: 0.08em;

  transform: translateY(16px);

  opacity: 0;

  transition:
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1) calc(var(--card-delay) + 0.7s),
    opacity 0.6s ease calc(var(--card-delay) + 0.7s);
}

.values-section.is-visible .value-card__number {
  opacity: 1;

  transform: translateY(0);
}

.value-card__icon {
  position: absolute;

  right: 18px;
  top: 18px;

  z-index: 3;

  width: 58px;
  height: 58px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  background: rgba(248, 249, 244, 0.92);

  backdrop-filter: blur(12px);

  border: 1px solid rgba(255, 255, 255, 0.55);

  box-shadow: 0 12px 28px rgba(10, 15, 10, 0.11);

  opacity: 0;

  transform: scale(0.35) rotate(-45deg);

  transition:
    opacity 0.6s ease calc(var(--card-delay) + 0.62s),
    transform 0.9s cubic-bezier(0.34, 1.56, 0.64, 1)
      calc(var(--card-delay) + 0.62s);
}

.values-section.is-visible .value-card__icon {
  opacity: 1;

  transform: scale(1) rotate(0);
}

.value-card__icon svg {
  width: 27px;
  height: 27px;

  fill: none;

  stroke: #7ca300;

  stroke-width: 1.4;

  stroke-linecap: round;
  stroke-linejoin: round;
}

/* =========================================================
   CONTENT
========================================================= */

.value-card__content {
  position: relative;

  min-height: 230px;

  padding: 30px 26px 28px;
}

.value-card__line {
  display: block;

  width: 32px;
  height: 2px;

  margin-bottom: 20px;

  background: var(--color-accent);

  transform: scaleX(0);

  transform-origin: left;

  transition: transform 0.75s cubic-bezier(0.16, 1, 0.3, 1)
    calc(var(--card-delay) + 0.65s);
}

.values-section.is-visible .value-card__line {
  transform: scaleX(1);
}

.value-card__title {
  margin: 0 0 15px;

  font-size: clamp(24px, 2.2vw, 34px);

  line-height: 0.95;

  letter-spacing: -0.055em;

  text-transform: uppercase;

  opacity: 0;

  transform: translateY(20px);

  transition:
    opacity 0.65s ease calc(var(--card-delay) + 0.72s),
    transform 0.75s cubic-bezier(0.16, 1, 0.3, 1)
      calc(var(--card-delay) + 0.72s);
}

.values-section.is-visible .value-card__title {
  opacity: 1;
  transform: translateY(0);
}

.value-card__text {
  max-width: 270px;

  margin: 0;

  color: rgba(8, 13, 16, 0.62);

  font-size: 15px;
  line-height: 1.55;

  opacity: 0;

  transform: translateY(18px);

  transition:
    opacity 0.65s ease calc(var(--card-delay) + 0.82s),
    transform 0.75s cubic-bezier(0.16, 1, 0.3, 1)
      calc(var(--card-delay) + 0.82s);
}

.values-section.is-visible .value-card__text {
  opacity: 1;
  transform: translateY(0);
}

.value-card__dot {
  position: absolute;

  left: 27px;
  bottom: 27px;

  width: 7px;
  height: 7px;

  border-radius: 50%;

  background: #8dbb00;

  box-shadow: 0 0 0 7px rgba(184, 239, 0, 0.09);

  transform: scale(0);

  transition: transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1)
    calc(var(--card-delay) + 0.95s);
}

.values-section.is-visible .value-card__dot {
  transform: scale(1);
}

/* =========================================================
   CARD HOVER
========================================================= */

@media (hover: hover) and (pointer: fine) {
  .value-card:hover {
    border-color: rgba(139, 185, 0, 0.28);

    box-shadow: 0 28px 70px rgba(20, 27, 18, 0.11);
  }

  .value-card:hover .value-card__spotlight {
    opacity: 1;
  }

  .value-card:hover .value-card__image {
    transform: scale(1.09) translate3d(var(--image-x, 0), var(--image-y, 0), 0);

    filter: saturate(1) contrast(1);
  }

  .value-card:hover .value-card__icon {
    transform: translateY(-4px) rotate(6deg);

    box-shadow: 0 17px 34px rgba(10, 15, 10, 0.16);
  }

  .value-card:hover .value-card__line {
    width: 60px;
  }
}

/* =========================================================
   CTA
========================================================= */

.values-cta {
  position: relative;

  margin-top: 70px;

  min-height: 110px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 40px;

  padding: 24px 28px 24px 34px;

  border: 1px solid rgba(8, 13, 16, 0.08);

  border-radius: 18px;

  background: rgba(249, 249, 246, 0.68);

  backdrop-filter: blur(18px);

  overflow: hidden;
}

.values-cta::before {
  content: "";

  position: absolute;

  inset: 0;

  background: linear-gradient(
    100deg,
    transparent 0%,
    rgba(184, 239, 0, 0.08) 50%,
    transparent 100%
  );

  transform: translateX(-110%);

  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.values-cta:hover::before {
  transform: translateX(110%);
}

.values-cta__content {
  position: relative;
  z-index: 2;

  display: flex;
  align-items: center;

  gap: 20px;
}

.values-cta__quote {
  color: var(--color-accent-soft);

  font-size: 62px;
  line-height: 0.7;

  font-weight: 800;
}

.values-cta__content p {
  margin: 0;

  font-size: clamp(15px, 1.5vw, 19px);

  line-height: 1.45;
}

.values-cta__content strong {
  color: #7fa700;
}

.values-cta__button {
  position: relative;
  z-index: 2;

  min-width: 310px;

  justify-content: space-between;

  min-height: 62px;

  padding: 0 26px;
}

.values-cta__button:hover .services-cta__arrow {
  transform: translateX(7px);
}

/* =========================================================
   KEYFRAMES
========================================================= */

@keyframes valuesRoute {
  to {
    stroke-dashoffset: -32;
  }
}

@keyframes valuesPointPulse {
  0%,
  100% {
    opacity: 0.55;
    transform: scale(0.8);
  }

  50% {
    opacity: 1;
    transform: scale(1.35);
  }
}

@keyframes valuesPulse {
  0% {
    opacity: 0.6;
    transform: scale(0.55);
  }

  100% {
    opacity: 0;
    transform: scale(1.8);
  }
}

@keyframes valueImageReveal {
  from {
    transform: scale(1.16) translateY(18px);
  }

  to {
    transform: scale(1) translateY(0);
  }
}

@keyframes valuesShine {
  0% {
    left: -60%;
  }

  100% {
    left: 145%;
  }
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {
  .values-section__head {
    grid-template-columns: 1fr 0.8fr;

    gap: 45px;
  }

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

  .values-grid::before {
    display: none;
  }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {
  .values-section__head {
    display: block;

    margin-bottom: 48px;
  }

  .values-map {
    min-height: 230px;

    margin-top: 42px;
  }

  .values-map__shape {
    width: 112%;

    margin-left: -6%;
  }

  .values-map__pin {
    width: 54px;
    height: 54px;
  }

  .values-map__caption {
    right: 0;
    bottom: 1%;
  }

  .values-grid {
    display: flex;
    flex-direction: column;

    gap: 18px;
  }

  .value-card {
    display: grid;

    grid-template-columns: 150px minmax(0, 1fr);

    min-height: 178px;

    border-radius: 18px;
  }

  .value-card__media {
    height: 100%;
    min-height: 178px;

    border-radius: 18px 0 0 18px;

    clip-path: inset(0 100% 0 0 round 18px 0 0 18px);
  }

  .values-section.is-visible .value-card__media {
    clip-path: inset(0 0 0 0 round 18px 0 0 18px);
  }

  .value-card__number {
    left: 10px;
    bottom: 10px;

    min-width: 34px;
    height: 26px;
  }

  .value-card__icon {
    display: none;
  }

  .value-card__icon svg {
    width: 22px;
    height: 22px;
  }

  .value-card__content {
    min-height: 178px;

    padding: 28px 20px 22px 28px;
  }

  .value-card__title {
    margin-bottom: 10px;

    font-size: clamp(20px, 6vw, 27px);
  }

  .value-card__text {
    font-size: 13px;
    line-height: 1.45;
  }

  .value-card__dot {
    left: 28px;
    bottom: 18px;
  }

  .values-cta {
    margin-top: 42px;

    display: grid;

    gap: 24px;

    padding: 25px 20px;

    border-radius: 16px;
  }

  .values-cta__content {
    align-items: flex-start;
  }

  .values-cta__button {
    width: 100%;
    min-width: 0;
  }
}

/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {
  .values-map,
  .value-card,
  .value-card__media,
  .value-card__number,
  .value-card__icon,
  .value-card__title,
  .value-card__text,
  .value-card__line,
  .value-card__dot {
    opacity: 1 !important;

    transform: none !important;

    clip-path: none !important;

    animation: none !important;

    transition: none !important;
  }

  .values-map__outline {
    stroke-dashoffset: 0;
  }

  .values-map__route,
  .values-map__point {
    opacity: 0.5;
    animation: none;
  }
}

.image-message__actions {
  margin-top: 30px;
}

.about-page .section-title {
  font-size: clamp(35px, 2.5vw, 80px);
}

/* =========================================================
   VALUES RADAR
========================================================= */

.values-radar {
  position: relative;

  width: min(100%, 610px);
  aspect-ratio: 1;

  margin-inline: auto;

  border-radius: 50%;

  opacity: 0;

  transform: translate3d(50px, 20px, 0) scale(0.82);

  transition:
    opacity 0.9s ease,
    transform 1.4s cubic-bezier(0.16, 1, 0.3, 1);

  isolation: isolate;
}

/* reveal всієї композиції */

.values-section.is-visible .values-radar {
  opacity: 1;

  transform: translate3d(0, 0, 0) scale(1);
}

/* =========================================================
   SOFT GLOW
========================================================= */

.values-radar::before {
  content: "";

  position: absolute;

  inset: 13%;

  z-index: -3;

  border-radius: 50%;

  background: radial-gradient(
    circle,
    rgba(184, 239, 0, 0.14) 0%,
    rgba(184, 239, 0, 0.055) 36%,
    transparent 70%
  );

  filter: blur(8px);

  transform: scale(0.75);

  opacity: 0;

  transition:
    opacity 1s ease 0.3s,
    transform 1.5s cubic-bezier(0.16, 1, 0.3, 1) 0.3s;
}

.values-section.is-visible .values-radar::before {
  opacity: 1;

  transform: scale(1);
}

/* =========================================================
   ORBITS
========================================================= */

.values-radar__orbit {
  position: absolute;

  left: 50%;
  top: 43%;

  border-radius: 50%;

  border: 1px solid rgba(8, 13, 16, 0.085);

  transform: translate(-50%, -50%) scale(0.4);

  opacity: 0;

  transition:
    transform 1.5s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.8s ease;
}

.values-radar__orbit--01 {
  display: none;
}

.values-radar__orbit--02 {
  width: 64%;
  aspect-ratio: 1;

  border-style: dashed;

  transition-delay: 0.38s;
}

.values-radar__orbit--03 {
  width: 92%;
  aspect-ratio: 1;

  border-color: rgba(139, 185, 0, 0.16);

  transition-delay: 0.5s;
}

.values-section.is-visible .values-radar__orbit {
  opacity: 1;

  transform: translate(-50%, -50%) scale(1);
}

/* middle orbit slowly rotates */

.values-section.is-visible .values-radar__orbit--02 {
  animation: valuesRadarRotate 22s linear infinite;
}

/* =========================================================
   SVG ROUTES
========================================================= */

.values-radar__lines {
  position: absolute;

  inset: 0;

  width: 100%;
  height: 100%;

  overflow: visible;
}

.values-radar__line {
  fill: none;

  stroke: rgba(126, 166, 0, 0.5);

  stroke-width: 1;

  stroke-linecap: round;

  stroke-dasharray: 330;
  stroke-dashoffset: 330;

  transition: stroke-dashoffset 1.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.values-radar__line--01 {
  transition-delay: 0.55s;
}

.values-radar__line--02 {
  transition-delay: 0.7s;
}

.values-radar__line--03 {
  transition-delay: 0.85s;
}

.values-radar__line--04 {
  transition-delay: 1s;
}

.values-section.is-visible .values-radar__line {
  stroke-dashoffset: 0;
}

/* після промальовування —
   по лініях ніби тече маршрут */

.values-section.is-visible .values-radar__line {
  animation: valuesRadarRoute 9s linear infinite 2s;
}

/* =========================================================
   OUTSIDE POINTS
========================================================= */

.values-radar__point {
  position: absolute;

  z-index: 4;

  width: 8px;
  height: 8px;

  border-radius: 50%;

  background: var(--color-accent);

  box-shadow: 0 0 0 6px rgba(184, 239, 0, 0.09);

  opacity: 0;

  transform: scale(0);

  transition:
    transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1),
    opacity 0.5s ease;
}

.values-radar__point--01 {
  left: 18.5%;
  top: 26%;

  transition-delay: 1.1s;
}

.values-radar__point--02 {
  right: 18%;
  top: 26%;

  transition-delay: 1.2s;
}

.values-radar__point--03 {
  right: 17.5%;
  bottom: 24.5%;

  transition-delay: 1.3s;
}

.values-radar__point--04 {
  left: 18%;
  bottom: 25%;

  transition-delay: 1.4s;
}

.values-section.is-visible .values-radar__point {
  opacity: 1;
  transform: scale(1);
}

.values-section.is-visible .values-radar__point {
  animation: valuesRadarPoint 2.8s ease-in-out infinite;
}

.values-radar__point--02 {
  animation-delay: -0.8s !important;
}

.values-radar__point--03 {
  animation-delay: -1.5s !important;
}

.values-radar__point--04 {
  animation-delay: -2.2s !important;
}

/* =========================================================
   CENTER
========================================================= */

.values-radar__center {
  position: absolute;

  left: 50%;
  top: 50%;

  z-index: 8;

  display: flex;
  flex-direction: column;
  align-items: center;

  transform: translate(-50%, -50%);
}

/* =========================================================
   PULSES
========================================================= */

.values-radar__pulse {
  position: absolute;

  left: 50%;
  top: 42px;

  width: 92px;
  height: 92px;

  border-radius: 50%;

  border: 1px solid rgba(139, 185, 0, 0.55);

  transform: translate(-50%, -50%) scale(0.4);

  opacity: 0;

  pointer-events: none;
}

.values-section.is-visible .values-radar__pulse {
  animation: valuesRadarPulse 3.2s ease-out infinite;
}

.values-radar__pulse--02 {
  animation-delay: 1.05s !important;
}

.values-radar__pulse--03 {
  animation-delay: 2.1s !important;
}

/* =========================================================
   LOCATION ICON
========================================================= */

.values-radar__pin {
  position: relative;

  z-index: 8;

  width: 84px;
  height: 84px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  background: linear-gradient(
    135deg,
    #d3ff34 0%,
    var(--color-accent) 58%,
    #97c800 100%
  );

  box-shadow:
    0 18px 44px rgba(129, 171, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.55);

  opacity: 0;

  transform: scale(0.2) rotate(-25deg);

  transition:
    opacity 0.65s ease 1.05s,
    transform 1s cubic-bezier(0.34, 1.56, 0.64, 1) 1.05s;
}

.values-section.is-visible .values-radar__pin {
  opacity: 1;

  transform: scale(1) rotate(0);

  /*
   * ОЦЕ саме постійне
   * збільшення / зменшення іконки
   */
  animation: valuesLocationBreath 2.6s cubic-bezier(0.45, 0, 0.55, 1) 2.1s
    infinite;
}

.values-radar__pin svg {
  width: 38px;
  height: 38px;

  fill: none;

  stroke: #080d10;

  stroke-width: 1.35;

  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ще й сама svg трохи живе */

.values-section.is-visible .values-radar__pin svg {
  animation: valuesPinFloat 2.6s ease-in-out 2.1s infinite;
}

/* =========================================================
   PLACE NAME
========================================================= */

.values-radar__place {
  margin-top: 20px;

  text-align: center;

  opacity: 0;

  transform: translateY(16px);

  transition:
    opacity 0.65s ease 1.45s,
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) 1.45s;
}

.values-section.is-visible .values-radar__place {
  opacity: 1;

  transform: translateY(0);
}

.values-radar__place strong {
  display: block;

  font-size: clamp(22px, 2.3vw, 32px);

  line-height: 0.95;

  letter-spacing: -0.055em;

  text-transform: uppercase;
}

.values-radar__place span {
  display: block;

  margin-top: 5px;

  color: var(--color-muted);

  font-size: 12px;

  letter-spacing: 0.035em;
}

/* =========================================================
   FLOATING CAPTION
========================================================= */

.values-radar__label {
  position: absolute;

  right: -1%;
  bottom: 12%;

  z-index: 10;

  display: flex;
  align-items: center;

  gap: 13px;

  min-width: 190px;

  padding: 13px 16px;

  border: 1px solid var(--color-border);

  border-radius: 12px;

  background: rgba(249, 249, 246, 0.78);

  backdrop-filter: blur(14px);

  box-shadow: 0 16px 45px rgba(14, 19, 13, 0.06);

  opacity: 0;

  transform: translate3d(25px, 15px, 0);

  transition:
    opacity 0.65s ease 1.6s,
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) 1.6s;
}

.values-section.is-visible .values-radar__label {
  opacity: 1;

  transform: translate3d(0, 0, 0);
}

.values-radar__label-dot {
  width: 8px;
  height: 8px;

  flex: 0 0 8px;

  border-radius: 50%;

  background: var(--color-accent);

  box-shadow: 0 0 0 6px rgba(184, 239, 0, 0.1);

  animation: valuesLabelDot 2s ease-in-out infinite;
}

.values-radar__label > span:last-child {
  font-size: 10px;
  line-height: 1.35;

  letter-spacing: 0.04em;

  text-transform: uppercase;
}

.values-radar__label strong {
  display: block;

  margin-top: 2px;

  font-size: 11px;
}

/* =========================================================
   HUGE BACKGROUND WORD
========================================================= */

.values-radar__word {
  position: absolute;

  left: 50%;
  bottom: 3%;

  z-index: -2;

  color: rgba(8, 13, 16, 0.025);

  font-size: clamp(75px, 9vw, 145px);

  font-weight: 800;

  letter-spacing: -0.075em;

  transform: translateX(-50%) scaleX(1.2);

  user-select: none;

  pointer-events: none;
}

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

@keyframes valuesRadarRotate {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes valuesRadarRoute {
  to {
    stroke-dashoffset: -48;
  }
}

@keyframes valuesRadarPoint {
  0%,
  100% {
    transform: scale(0.82);

    box-shadow: 0 0 0 5px rgba(184, 239, 0, 0.08);
  }

  50% {
    transform: scale(1.28);

    box-shadow: 0 0 0 10px rgba(184, 239, 0, 0.03);
  }
}

@keyframes valuesRadarPulse {
  0% {
    opacity: 0.6;

    transform: translate(-50%, -50%) scale(0.45);
  }

  100% {
    opacity: 0;

    transform: translate(-50%, -50%) scale(2.5);
  }
}

/*
 * ГОЛОВНА АНІМАЦІЯ ICON
 * плавно більша -> менша
 */

@keyframes valuesLocationBreath {
  0%,
  100% {
    transform: scale(0.94) translateY(0);

    box-shadow:
      0 15px 38px rgba(129, 171, 0, 0.18),
      inset 0 1px 0 rgba(255, 255, 255, 0.55);
  }

  50% {
    transform: scale(1.13) translateY(-4px);

    box-shadow:
      0 25px 60px rgba(129, 171, 0, 0.3),
      0 0 0 9px rgba(184, 239, 0, 0.055),
      inset 0 1px 0 rgba(255, 255, 255, 0.6);
  }
}

@keyframes valuesPinFloat {
  0%,
  100% {
    transform: translateY(1px) scale(0.98);
  }

  50% {
    transform: translateY(-3px) scale(1.05);
  }
}

@keyframes valuesLabelDot {
  0%,
  100% {
    transform: scale(0.85);
  }

  50% {
    transform: scale(1.3);
  }
}

/* =========================================================
   HOVER
========================================================= */

@media (hover: hover) and (pointer: fine) {
  .values-radar__pin:hover {
    animation-play-state: paused;

    transform: scale(1.2);

    box-shadow:
      0 30px 70px rgba(129, 171, 0, 0.35),
      0 0 0 12px rgba(184, 239, 0, 0.08);
  }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {
  .values-radar {
    width: min(118%, 450px);

    margin: 35px auto 15px;

    margin-left: -9%;
  }

  .values-radar__pin {
    width: 66px;
    height: 66px;
  }

  .values-radar__pin svg {
    width: 30px;
    height: 30px;
  }

  .values-radar__pulse {
    top: 33px;

    width: 72px;
    height: 72px;
  }

  .values-radar__place {
    margin-top: 15px;
  }

  .values-radar__place strong {
    font-size: 21px;
  }

  .values-radar__label {
    right: 1%;
    bottom: 3%;

    min-width: 0;

    padding: 10px 12px;
  }

  .values-radar__label > span:last-child {
    font-size: 8px;
  }

  .values-radar__label strong {
    font-size: 9px;
  }

  .values-radar__word {
    font-size: 70px;
  }
}

/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {
  .values-radar,
  .values-radar__orbit,
  .values-radar__pin,
  .values-radar__place,
  .values-radar__label,
  .values-radar__point {
    opacity: 1 !important;

    transform: none !important;

    animation: none !important;

    transition: none !important;
  }

  .values-radar__line {
    stroke-dashoffset: 0;

    animation: none !important;
  }

  .values-radar__pulse {
    display: none;
  }
}

/* =========================================================
   PRICE LIST
========================================================= */

.price-list {
  position: relative;

  overflow: hidden;

  background:
    radial-gradient(circle at 82% 9%, rgba(184, 239, 0, 0.07), transparent 22%),
    var(--color-background);

  isolation: isolate;
}

/* =========================================================
   HEAD
========================================================= */

.price-list__head {
  position: relative;
  z-index: 2;
}

.price-list__title {
  margin-bottom: 0;
}

.price-list__quote {
  position: relative;

  width: min(100%, 690px);

  margin: 42px auto 0;

  display: flex;
  justify-content: center;

  gap: 14px;
}

.price-list__quote p {
  margin: 0;

  color: rgba(8, 13, 16, 0.66);

  font-size: clamp(15px, 1.4vw, 18px);

  line-height: 1.65;

  text-align: center;
}

.price-list__quote-mark {
  color: var(--color-accent-soft);

  font-size: 38px;
  font-weight: 800;

  line-height: 0.8;
}

.price-list__quote-mark--end {
  align-self: flex-end;
}

/* =========================================================
   GRID
========================================================= */

.price-list__grid {
  position: relative;
  z-index: 3;

  margin-top: clamp(60px, 7vw, 95px);

  display: grid;

  grid-template-columns: 0.95fr 1.1fr 0.95fr;

  align-items: start;

  gap: clamp(18px, 2vw, 28px);
}

/* =========================================================
   CARD
========================================================= */

.price-card {
  --price-delay: 0s;

  position: relative;

  border: 1px solid rgba(8, 13, 16, 0.075);

  border-radius: 22px;

  background: rgba(249, 249, 246, 0.72);

  box-shadow: 0 18px 55px rgba(22, 28, 20, 0.045);

  overflow: hidden;

  backdrop-filter: blur(14px);

  opacity: 0;

  transform: translateY(60px) scale(0.96);

  transition:
    opacity 0.8s ease var(--price-delay),
    transform 1s cubic-bezier(0.16, 1, 0.3, 1) var(--price-delay),
    border-color 0.45s ease,
    box-shadow 0.45s ease;
}

.price-card:nth-child(1) {
  --price-delay: 0.12s;
}

.price-card:nth-child(2) {
  --price-delay: 0.24s;
}

.price-card:nth-child(3) {
  --price-delay: 0.36s;
}

.price-list.is-visible .price-card {
  opacity: 1;

  transform: translateY(0) scale(1);
}

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

.price-card__header {
  width: 100%;

  min-height: 118px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 20px;

  padding: 24px 24px 21px;

  border: 0;

  background: transparent;

  text-align: left;

  cursor: default;
}

.price-card__heading {
  display: flex;
  align-items: center;

  gap: 16px;
}

.price-card__number {
  width: 40px;
  height: 40px;

  flex: 0 0 40px;

  display: grid;
  place-items: center;

  border-radius: 10px;

  background: rgba(184, 239, 0, 0.13);

  color: #739800;

  font-size: 11px;
  font-weight: 850;

  letter-spacing: 0.05em;

  transition:
    transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
    background 0.35s ease;
}

.price-card__label {
  display: block;

  margin-bottom: 7px;

  color: var(--color-muted);

  font-size: 9px;
  font-weight: 750;

  letter-spacing: 0.13em;

  text-transform: uppercase;
}

.price-card__title {
  margin: 0;

  font-size: clamp(22px, 2vw, 30px);

  line-height: 1;

  letter-spacing: -0.055em;
}

/* hidden on desktop */

.price-card__toggle {
  display: none;
}

/* =========================================================
   COLUMN HEAD
========================================================= */

.price-card__columns {
  min-height: 47px;

  padding: 0 24px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  border-top: 1px solid var(--color-border);

  border-bottom: 1px solid var(--color-border);

  color: rgba(8, 13, 16, 0.46);

  font-size: 9px;
  font-weight: 800;

  letter-spacing: 0.12em;

  text-transform: uppercase;
}

/* =========================================================
   ROW
========================================================= */

.price-row {
  position: relative;

  min-height: 88px;

  display: grid;

  grid-template-columns:
    52px minmax(0, 1fr)
    auto 0px;

  align-items: center;

  gap: 13px;

  padding: 0 22px;

  border-bottom: 1px solid var(--color-border);

  overflow: hidden;

  transition:
    padding 0.45s cubic-bezier(0.16, 1, 0.3, 1),
    background 0.4s ease;
}

.price-row:last-child {
  border-bottom: 0;
}

/* green hover background */

.price-row::before {
  content: "";

  position: absolute;
  inset: 0;

  z-index: -1;

  background: linear-gradient(
    90deg,
    rgba(184, 239, 0, 0.11),
    rgba(184, 239, 0, 0.02)
  );

  transform: translateX(-102%);

  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ICON */

.price-row__icon {
  width: 44px;
  height: 44px;

  display: grid;
  place-items: center;

  border: 1px solid rgba(139, 185, 0, 0.18);

  border-radius: 50%;

  background: rgba(184, 239, 0, 0.055);

  transition:
    background 0.4s ease,
    border-color 0.4s ease,
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.price-row__icon svg {
  width: 21px;
  height: 21px;

  fill: none;

  stroke: #7fa600;

  stroke-width: 1.2;

  stroke-linecap: round;
  stroke-linejoin: round;
}

/* DOT */

.price-row__dot {
  width: 7px;
  height: 7px;

  margin-left: 17px;

  border-radius: 50%;

  background: var(--color-accent-soft);

  transition:
    transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.4s ease;
}

/* TEXT */

.price-row__name {
  min-width: 0;

  font-size: 14px;

  font-weight: 550;

  line-height: 1.35;

  letter-spacing: -0.025em;
}

.price-row__price {
  justify-self: end;

  white-space: nowrap;

  font-size: 13px;

  font-weight: 800;

  letter-spacing: -0.025em;
}

.price-row__price--accent {
  color: #729800;
}

/* ARROW */

.price-row__arrow {
  width: 0;

  opacity: 0;

  overflow: visible;

  transform: translateX(-10px);

  transition:
    width 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.35s ease,
    transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.price-row__arrow svg {
  width: 42px;
  height: 22px;

  fill: none;

  stroke: #080d10;

  stroke-width: 0.9;

  stroke-linecap: round;
  stroke-linejoin: round;
}

/* =========================================================
   CHEMICAL — tighter rows
========================================================= */

.price-row--compact {
  min-height: 59px;

  grid-template-columns:
    24px minmax(0, 1fr)
    auto 0px;

  padding: 0 22px;
}

/* =========================================================
   HOVER
========================================================= */

@media (hover: hover) and (pointer: fine) {
  .price-card:hover {
    border-color: rgba(130, 171, 0, 0.2);

    box-shadow: 0 30px 80px rgba(22, 28, 20, 0.085);
  }

  .price-card:hover .price-card__number {
    background: var(--color-accent);

    transform: rotate(-4deg) scale(1.08);
  }

  .price-row:hover::before {
    transform: translateX(0);
  }

  .price-row:hover {
    padding-left: 27px;
  }

  .price-row:hover .price-row__icon {
    background: var(--color-accent);

    border-color: var(--color-accent);

    transform: rotate(-5deg) scale(1.08);
  }

  .price-row:hover .price-row__icon svg {
    stroke: #080d10;
  }

  .price-row:hover .price-row__dot {
    transform: scale(1.5);

    box-shadow: 0 0 0 7px rgba(184, 239, 0, 0.09);
  }

  .price-row:hover .price-row__price {
    color: #719700;
  }

  .price-row:hover .price-row__arrow {
    width: 42px;

    opacity: 1;

    transform: translateX(0);
  }
}

/* =========================================================
   TRANSPORT
========================================================= */

.price-delivery {
  position: relative;
  z-index: 3;

  min-height: 92px;

  margin-top: 25px;

  padding: 20px 28px;

  display: flex;
  align-items: center;

  gap: 18px;

  border: 1px solid var(--color-border);

  border-radius: 18px;

  background: linear-gradient(
    90deg,
    rgba(184, 239, 0, 0.06),
    rgba(249, 249, 246, 0.72)
  );

  overflow: hidden;
}

.price-delivery__icon {
  width: 46px;
  height: 46px;

  flex: 0 0 46px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  background: rgba(184, 239, 0, 0.13);
}

.price-delivery__icon svg {
  width: 24px;
  height: 24px;

  fill: none;

  stroke: #739a00;

  stroke-width: 1.3;

  stroke-linecap: round;
  stroke-linejoin: round;
}

.price-delivery p {
  margin: 0;

  font-size: 14px;

  line-height: 1.45;
}

.price-delivery strong {
  color: #729800;

  font-size: 16px;
}

.price-delivery__line {
  flex: 1;

  height: 1px;

  margin-left: 20px;

  background: repeating-linear-gradient(
    90deg,
    rgba(122, 162, 0, 0.6) 0 5px,
    transparent 5px 11px
  );

  transform: scaleX(0);

  transform-origin: left;

  transition: transform 1.6s cubic-bezier(0.16, 1, 0.3, 1) 0.55s;
}

.price-list.is-visible .price-delivery__line {
  transform: scaleX(1);
}

.price-delivery__car {
  width: 60px;

  transform: translateX(-40px);

  opacity: 0;

  transition:
    transform 1.2s cubic-bezier(0.16, 1, 0.3, 1) 1.2s,
    opacity 0.6s ease 1.2s;
}

.price-list.is-visible .price-delivery__car {
  opacity: 1;

  transform: translateX(0);
}

.price-delivery__car svg {
  width: 58px;
  height: 30px;

  fill: none;

  stroke: #799f00;

  stroke-width: 1.15;

  stroke-linecap: round;
  stroke-linejoin: round;
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1050px) {
  .price-list__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .price-card:nth-child(2) {
    grid-row: span 2;
  }

  .price-card:nth-child(3) {
    grid-column: 1;
  }
}

/* =========================================================
   MOBILE — ACCORDION
========================================================= */

@media (max-width: 767px) {
  .price-list__quote {
    margin-top: 30px;

    gap: 8px;
  }

  .price-list__quote p {
    font-size: 13px;

    text-align: left;
  }

  .price-list__quote-mark {
    font-size: 27px;
  }

  .price-list__grid {
    display: flex;
    flex-direction: column;

    gap: 12px;

    margin-top: 42px;
  }

  .price-card {
    width: 100%;

    border-radius: 16px;
  }

  .price-card__header {
    min-height: 78px;

    padding: 15px 16px;

    cursor: pointer;
  }

  .price-card__heading {
    gap: 12px;
  }

  .price-card__number {
    width: 36px;
    height: 36px;

    flex-basis: 36px;

    border-radius: 9px;
  }

  .price-card__label {
    display: none;
  }

  .price-card__title {
    font-size: 19px;
  }

  /* + / − */

  .price-card__toggle {
    position: relative;

    width: 34px;
    height: 34px;

    flex: 0 0 34px;

    display: block;

    border-radius: 50%;

    background: rgba(184, 239, 0, 0.08);
  }

  .price-card__toggle span {
    position: absolute;

    left: 50%;
    top: 50%;

    width: 12px;
    height: 1px;

    background: #080d10;

    transform: translate(-50%, -50%);

    transition:
      transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
      opacity 0.3s ease;
  }

  .price-card__toggle span:last-child {
    transform: translate(-50%, -50%) rotate(90deg);
  }

  .price-card.is-open .price-card__toggle span:last-child {
    transform: translate(-50%, -50%) rotate(0);

    opacity: 0;
  }

  /* body animation */

  .price-card__body {
    display: grid;

    grid-template-rows: 0fr;

    transition: grid-template-rows 0.65s cubic-bezier(0.16, 1, 0.3, 1);

    overflow: hidden;
  }

  .price-card__body > * {
    min-height: 0;
  }

  /*
   * JS ставить inline max-height container,
   * тому для мобільного робимо body wrapper
   * через клас is-open.
   */

  .price-card:not(.is-open) .price-card__body {
    max-height: 0 !important;

    overflow: hidden;
  }

  .price-card.is-open .price-card__body {
    max-height: 1000px !important;
  }

  .price-card__columns {
    display: none;
  }

  .price-row,
  .price-row--compact {
    min-height: 67px;

    grid-template-columns: 28px minmax(0, 1fr) auto;

    gap: 10px;

    padding: 0 16px;
  }

  .price-row__icon {
    width: 28px;
    height: 28px;

    border: 0;

    background: rgba(184, 239, 0, 0.08);
  }

  .price-row__icon svg {
    width: 16px;
    height: 16px;
  }

  .price-row__dot {
    width: 6px;
    height: 6px;

    margin-left: 11px;
  }

  .price-row__name {
    font-size: 13px;
  }

  .price-row__price {
    font-size: 12px;
  }

  .price-row__arrow {
    display: none;
  }

  .price-delivery {
    min-height: 100px;

    margin-top: 18px;

    padding: 18px;

    border-radius: 15px;
  }

  .price-delivery__icon {
    width: 40px;
    height: 40px;

    flex-basis: 40px;
  }

  .price-delivery p {
    font-size: 12px;
  }

  .price-delivery strong {
    display: inline;

    font-size: 13px;
  }

  .price-delivery__line,
  .price-delivery__car {
    display: none;
  }
}

/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {
  .price-card,
  .price-delivery__line,
  .price-delivery__car {
    opacity: 1 !important;

    transform: none !important;

    transition: none !important;
  }
}

/* =========================================================
   PRICE GUARANTEE
========================================================= */

.price-guarantee {
  position: relative;

  min-height: 760px;

  display: flex;
  align-items: center;

  overflow: hidden;

  background:
    radial-gradient(
      circle at 50% 52%,
      rgba(184, 239, 0, 0.07),
      transparent 30%
    ),
    #090c0a;

  color: #f6f7f1;

  isolation: isolate;
}

/* =========================================================
   MOUSE GLOW
========================================================= */

.price-guarantee__glow {
  position: absolute;

  left: var(--glow-x, 50%);
  top: var(--glow-y, 50%);

  width: 420px;
  height: 420px;

  border-radius: 50%;

  background: radial-gradient(
    circle,
    rgba(184, 239, 0, 0.13),
    rgba(184, 239, 0, 0.035) 36%,
    transparent 70%
  );

  transform: translate(-50%, -50%);

  filter: blur(8px);

  opacity: 0;

  pointer-events: none;

  transition: opacity 0.4s ease;

  z-index: 0;
}

@media (hover: hover) and (pointer: fine) {
  .price-guarantee:hover .price-guarantee__glow {
    opacity: 1;
  }
}

/* =========================================================
   CONTAINER
========================================================= */

.price-guarantee__container {
  position: relative;

  min-height: 600px;

  z-index: 2;
}

/* =========================================================
   HUGE BACKGROUND NUMBER
========================================================= */

.price-guarantee__background-number {
  position: absolute;

  left: 50%;
  top: 51%;

  z-index: -2;

  transform: translate(-50%, -50%) translateX(var(--number-shift, 0px));

  color: transparent;

  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.055);

  text-stroke: 1px rgba(255, 255, 255, 0.055);

  font-size: clamp(130px, 19vw, 310px);

  font-weight: 800;

  line-height: 0.8;

  letter-spacing: -0.085em;

  white-space: nowrap;

  pointer-events: none;

  user-select: none;

  transition: transform 0.15s linear;
}

/* =========================================================
   CENTER
========================================================= */

.price-guarantee__center {
  position: absolute;

  left: 50%;
  top: 50%;

  width: min(100%, 900px);

  transform: translate(-50%, -50%);

  text-align: center;

  z-index: 5;
}

.price-guarantee__eyebrow {
  color: var(--color-accent);

  border-color: rgba(184, 239, 0, 0.2);

  background: rgba(184, 239, 0, 0.05);
}

/* =========================================================
   SEAL
========================================================= */

.price-guarantee__seal {
  position: relative;

  width: 150px;
  height: 150px;

  margin: 32px auto 36px;

  opacity: 0;

  transform: scale(0.5);

  transition:
    opacity 0.8s ease 0.25s,
    transform 1.1s cubic-bezier(0.34, 1.56, 0.64, 1) 0.25s;
}

.price-guarantee.is-visible .price-guarantee__seal {
  opacity: 1;

  transform: scale(1);
}

.price-guarantee__seal-svg {
  width: 100%;
  height: 100%;

  overflow: visible;

  animation: guaranteeSealRotate 18s linear infinite;
}

.price-guarantee__seal-svg text {
  fill: rgba(184, 239, 0, 0.82);

  font-size: 9px;

  font-weight: 700;

  letter-spacing: 2.7px;
}

.price-guarantee__seal-core {
  position: absolute;

  left: 50%;
  top: 50%;

  width: 60px;
  height: 60px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  transform: translate(-50%, -50%);

  border: 1px solid rgba(184, 239, 0, 0.22);

  background: rgba(184, 239, 0, 0.04);
}

.price-guarantee__seal-core::before,
.price-guarantee__seal-core::after {
  content: "";

  position: absolute;

  inset: -15px;

  border-radius: 50%;

  border: 1px solid rgba(184, 239, 0, 0.18);

  animation: guaranteeSealPulse 2.8s ease-out infinite;
}

.price-guarantee__seal-core::after {
  animation-delay: 1.4s;
}

.price-guarantee__seal-core span {
  width: 10px;
  height: 10px;

  border-radius: 50%;

  background: var(--color-accent);

  box-shadow: 0 0 0 8px rgba(184, 239, 0, 0.08);

  animation: guaranteeCorePulse 2.2s ease-in-out infinite;
}

/* =========================================================
   TITLE
========================================================= */

.price-guarantee__title {
  margin: 0;

  font-size: clamp(62px, 8.6vw, 138px);

  line-height: 0.78;

  letter-spacing: -0.075em;

  font-weight: 800;

  text-transform: uppercase;
}

.price-guarantee__title-line {
  display: block;
}

/* SKRYTÉ starts outlined */

.price-guarantee__title-line--wipe {
  position: relative;

  display: block;

  color: transparent;

  -webkit-text-stroke: 1.4px rgba(255, 255, 255, 0.28);

  text-stroke: 1.4px rgba(255, 255, 255, 0.28);

  overflow: hidden;
}

.price-guarantee__title-line--wipe::after {
  content: "SKRYTÉ";

  position: absolute;

  left: 0;
  top: 0;

  width: 0%;

  color: var(--color-accent);

  -webkit-text-stroke: 0;

  overflow: hidden;

  white-space: nowrap;

  transition: width 1.4s cubic-bezier(0.16, 1, 0.3, 1) 0.55s;
}

.price-guarantee.is-visible .price-guarantee__title-line--wipe::after {
  width: 100%;
}

/* =========================================================
   TEXT
========================================================= */

.price-guarantee__text {
  width: min(100%, 530px);

  margin: 105px auto 0;

  color: rgba(255, 255, 255, 0.58);

  font-size: 15px;

  line-height: 1.6;
}

/* =========================================================
   FLOATING STATEMENTS
========================================================= */

.price-guarantee__statement {
  position: absolute;

  z-index: 6;

  display: flex;
  align-items: center;

  gap: 11px;

  font-size: 10px;

  font-weight: 700;

  letter-spacing: 0.085em;

  text-transform: uppercase;

  white-space: nowrap;

  color: rgba(255, 255, 255, 0.58);

  transition:
    color 0.4s ease,
    transform 0.4s ease;
}

.price-guarantee__statement--01 {
  left: 3%;
  top: 5%;

  animation: guaranteeFloat01 6s ease-in-out infinite;
}

.price-guarantee__statement--02 {
  right: 0;
  top: 25%;

  animation: guaranteeFloat02 7s ease-in-out infinite;
}

.price-guarantee__statement--03 {
  right: 4%;
  bottom: 8%;

  animation: guaranteeFloat03 6.5s ease-in-out infinite;
}

.price-guarantee__statement--04 {
  left: 0;
  bottom: 19%;

  animation: guaranteeFloat04 7.4s ease-in-out infinite;
}

.price-guarantee__statement-index {
  color: var(--color-accent);

  font-size: 9px;
}

.price-guarantee__statement-line {
  width: 35px;
  height: 1px;

  background: rgba(255, 255, 255, 0.18);
}

.price-guarantee__statement-dot {
  width: 6px;
  height: 6px;

  border-radius: 50%;

  background: var(--color-accent);

  box-shadow: 0 0 0 5px rgba(184, 239, 0, 0.07);

  animation: guaranteeDotPulse 2.2s ease-in-out infinite;
}

/* =========================================================
   STATEMENT HOVER
========================================================= */

@media (hover: hover) and (pointer: fine) {
  .price-guarantee__statement:hover {
    color: var(--color-accent);

    transform: scale(1.05);
  }

  .price-guarantee__statement:hover .price-guarantee__statement-line {
    background: var(--color-accent);
  }
}

/* =========================================================
   SCANNER
========================================================= */

.price-guarantee__scanner {
  position: absolute;

  left: 0;
  right: 0;
  bottom: 0;

  height: 36px;

  display: flex;
  align-items: center;

  gap: 20px;

  overflow: hidden;
}

.price-guarantee__scanner-line {
  position: relative;

  flex: 1;

  height: 1px;

  background: rgba(255, 255, 255, 0.12);
}

.price-guarantee__scanner-dot {
  position: absolute;

  left: 0;

  top: 50%;

  width: 9px;
  height: 9px;

  border-radius: 50%;

  background: var(--color-accent);

  box-shadow: 0 0 18px rgba(184, 239, 0, 0.9);

  transform: translateY(-50%);

  animation: guaranteeScanner 7s cubic-bezier(0.45, 0, 0.55, 1) infinite;
}

.price-guarantee__scanner-label {
  flex: 0 0 auto;

  color: rgba(255, 255, 255, 0.32);

  font-size: 8px;

  font-weight: 800;

  letter-spacing: 0.16em;
}

/* =========================================================
   KEYFRAMES
========================================================= */

@keyframes guaranteeSealRotate {
  to {
    transform: rotate(360deg);
  }
}

@keyframes guaranteeSealPulse {
  0% {
    opacity: 0.55;

    transform: scale(0.55);
  }

  100% {
    opacity: 0;

    transform: scale(1.7);
  }
}

@keyframes guaranteeCorePulse {
  0%,
  100% {
    transform: scale(0.82);
  }

  50% {
    transform: scale(1.25);
  }
}

@keyframes guaranteeDotPulse {
  0%,
  100% {
    transform: scale(0.85);
  }

  50% {
    transform: scale(1.35);
  }
}

@keyframes guaranteeFloat01 {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(12px, -9px, 0);
  }
}

@keyframes guaranteeFloat02 {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(-14px, 12px, 0);
  }
}

@keyframes guaranteeFloat03 {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(-10px, -12px, 0);
  }
}

@keyframes guaranteeFloat04 {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(15px, 11px, 0);
  }
}

@keyframes guaranteeScanner {
  0% {
    left: 0%;
  }

  50% {
    left: calc(100% - 115px);
  }

  100% {
    left: 0%;
  }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {
  .price-guarantee {
    min-height: auto;
  }

  .price-guarantee__container {
    margin-top: 0;
  }

  .price-guarantee__background-number {
    top: 54%;

    font-size: clamp(90px, 30vw, 135px);

    writing-mode: vertical-rl;

    transform: translate(-50%, -50%) rotate(180deg);

    opacity: 0.8;
  }

  .price-guarantee__center {
    position: relative;

    left: auto;
    top: auto;

    transform: none;

    padding-top: 30px;
  }

  .price-guarantee__seal {
    width: 116px;
    height: 116px;

    margin: 25px auto 30px;
  }

  .price-guarantee__seal-svg text {
    font-size: 8px;

    letter-spacing: 2px;
  }

  .price-guarantee__seal-core {
    width: 48px;
    height: 48px;
  }

  .price-guarantee__title {
    font-size: clamp(55px, 16vw, 78px);

    line-height: 0.82;
  }

  .price-guarantee__text {
    width: min(100%, 320px);

    margin-top: 27px;
    margin-bottom: 60px;

    font-size: 13px;
  }

  /* statements become vertical */

  .price-guarantee__statement {
    position: relative;

    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;

    width: 100%;

    margin-top: 23px;

    white-space: normal;

    animation: none;
  }

  .price-guarantee__statement--01 {
    margin-top: 0;

    transform: translateX(35px);
  }

  .price-guarantee__statement--02 {
    transform: translateX(-20px);
  }

  .price-guarantee__statement--03 {
    transform: translateX(30px);
  }

  .price-guarantee__statement--04 {
    transform: translateX(-14px);
  }

  .price-guarantee.is-visible .price-guarantee__statement {
    transform: translateX(0);
  }

  .price-guarantee__statement-text {
    font-size: 9px;

    line-height: 1.45;
  }

  .price-guarantee__statement-line {
    width: 25px;
  }

  .price-guarantee__scanner {
    bottom: -5px;
  }

  .price-guarantee__scanner-label {
    font-size: 7px;
  }
}

/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {
  .price-guarantee__seal-svg,
  .price-guarantee__seal-core::before,
  .price-guarantee__seal-core::after,
  .price-guarantee__seal-core span,
  .price-guarantee__statement,
  .price-guarantee__statement-dot,
  .price-guarantee__scanner-dot {
    animation: none !important;
  }

  .price-guarantee__title-line--wipe::after {
    width: 100%;
  }
}
/* =========================================================
   WHATSAPP BUBBLE
========================================================= */

.whatsapp-bubble {
  position: fixed;
  right: 30px;
  bottom: 30px;

  z-index: 999;

  width: 72px;
  height: 72px;

  display: grid;
  place-items: center;

  text-decoration: none;

  isolation: isolate;
}

/* =========================================================
   MAIN BUBBLE
========================================================= */

.whatsapp-bubble__core {
  position: relative;

  width: 72px;
  height: 72px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  background:
    radial-gradient(
      circle at 28% 22%,
      rgba(255, 255, 255, 0.8),
      rgba(255, 255, 255, 0.1) 24%,
      transparent 36%
    ),
    radial-gradient(
      circle at 68% 72%,
      rgba(184, 239, 0, 0.95),
      rgba(142, 191, 0, 0.88)
    );

  border: 1px solid rgba(255, 255, 255, 0.42);

  box-shadow:
    inset 0 0 18px rgba(255, 255, 255, 0.26),
    inset -8px -10px 18px rgba(102, 138, 0, 0.16),
    0 16px 38px rgba(26, 38, 10, 0.2);

  animation: whatsappMainBubble 3.4s ease-in-out infinite;

  transition:
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.4s ease;
}

/* inner shine */

.whatsapp-bubble__shine {
  position: absolute;

  left: 15px;
  top: 12px;

  width: 18px;
  height: 10px;

  border-radius: 50%;

  border-top: 2px solid rgba(255, 255, 255, 0.75);

  transform: rotate(-30deg);

  opacity: 0.75;

  pointer-events: none;
}

/* ICON */

.whatsapp-bubble__core svg {
  position: relative;
  z-index: 2;

  width: 32px;
  height: 32px;

  fill: #080d10;

  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* =========================================================
   SMALL BUBBLES
========================================================= */

.whatsapp-bubble__small {
  position: absolute;

  z-index: -1;

  display: block;

  border-radius: 50%;

  background: radial-gradient(
    circle at 28% 25%,
    rgba(255, 255, 255, 0.9),
    rgba(255, 255, 255, 0.18) 28%,
    rgba(184, 239, 0, 0.15) 55%,
    rgba(184, 239, 0, 0.04)
  );

  border: 1px solid rgba(184, 239, 0, 0.4);

  box-shadow:
    inset 0 0 8px rgba(255, 255, 255, 0.22),
    0 5px 15px rgba(91, 120, 0, 0.08);

  opacity: 0;

  pointer-events: none;
}

/* BUBBLE 01 */

.whatsapp-bubble__small--1 {
  width: 18px;
  height: 18px;

  right: 4px;
  top: 4px;

  animation: whatsappBubbleOne 4.2s ease-in-out infinite;
}

/* BUBBLE 02 */

.whatsapp-bubble__small--2 {
  width: 12px;
  height: 12px;

  right: -2px;
  top: 14px;

  animation: whatsappBubbleTwo 4.2s ease-in-out 1.25s infinite;
}

/* BUBBLE 03 */

.whatsapp-bubble__small--3 {
  width: 9px;
  height: 9px;

  right: 16px;
  top: -2px;

  animation: whatsappBubbleThree 4.2s ease-in-out 2.5s infinite;
}

/* =========================================================
   MAIN BUBBLE ANIMATION
========================================================= */

@keyframes whatsappMainBubble {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  25% {
    transform: translateY(-2px) scale(1.025, 0.985);
  }

  50% {
    transform: translateY(-5px) scale(0.98, 1.035);
  }

  75% {
    transform: translateY(-2px) scale(1.02, 0.99);
  }
}

/* =========================================================
   SMALL BUBBLE ANIMATIONS
========================================================= */

@keyframes whatsappBubbleOne {
  0% {
    opacity: 0;
    transform: translate(0, 0) scale(0.4);
  }

  12% {
    opacity: 0.85;
  }

  45% {
    opacity: 0.72;
    transform: translate(16px, -30px) scale(1);
  }

  75% {
    opacity: 0.25;
    transform: translate(27px, -53px) scale(1.18);
  }

  100% {
    opacity: 0;
    transform: translate(34px, -70px) scale(1.32);
  }
}

@keyframes whatsappBubbleTwo {
  0% {
    opacity: 0;
    transform: translate(0, 0) scale(0.35);
  }

  14% {
    opacity: 0.75;
  }

  48% {
    opacity: 0.65;
    transform: translate(-4px, -27px) scale(1);
  }

  78% {
    opacity: 0.2;
    transform: translate(-14px, -51px) scale(1.22);
  }

  100% {
    opacity: 0;
    transform: translate(-20px, -67px) scale(1.4);
  }
}

@keyframes whatsappBubbleThree {
  0% {
    opacity: 0;
    transform: translate(0, 0) scale(0.25);
  }

  15% {
    opacity: 0.8;
  }

  48% {
    opacity: 0.65;
    transform: translate(7px, -24px) scale(1);
  }

  76% {
    opacity: 0.2;
    transform: translate(13px, -47px) scale(1.25);
  }

  100% {
    opacity: 0;
    transform: translate(18px, -63px) scale(1.45);
  }
}

/* =========================================================
   HOVER
========================================================= */

@media (hover: hover) and (pointer: fine) {
  .whatsapp-bubble:hover .whatsapp-bubble__core {
    animation-play-state: paused;

    transform: translateY(-6px) scale(1.1);

    box-shadow:
      inset 0 0 20px rgba(255, 255, 255, 0.34),
      inset -8px -10px 18px rgba(102, 138, 0, 0.14),
      0 22px 52px rgba(26, 38, 10, 0.28),
      0 0 0 8px rgba(184, 239, 0, 0.07);
  }

  .whatsapp-bubble:hover .whatsapp-bubble__core svg {
    transform: scale(1.08) rotate(-6deg);
  }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {
  .whatsapp-bubble {
    right: 18px;
    bottom: 18px;

    width: 60px;
    height: 60px;
  }

  .whatsapp-bubble__core {
    width: 60px;
    height: 60px;
  }

  .whatsapp-bubble__core svg {
    width: 28px;
    height: 28px;
  }

  .whatsapp-bubble__small--1 {
    width: 15px;
    height: 15px;
  }

  .whatsapp-bubble__small--2 {
    width: 10px;
    height: 10px;
  }

  .whatsapp-bubble__small--3 {
    width: 8px;
    height: 8px;
  }
}

/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {
  .whatsapp-bubble__core,
  .whatsapp-bubble__small {
    animation: none;
  }

  .whatsapp-bubble__small {
    display: none;
  }
}
/* =========================================================
         CONTACT PAGE — FULLSCREEN MAP EXPERIENCE
      ========================================================= */

.contact-page--cinematic {
  background: var(--color-background);
}

.contact-map {
  --map-x: 50%;
  --map-y: 50%;

  position: relative;
  width: 100%;
  min-height: max(820px, 100svh);
  overflow: hidden;
  background: #0a0d0b;
  color: #fff;
  isolation: isolate;
}

.contact-map__canvas,
.contact-map__iframe,
.contact-map__veil {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.contact-map__canvas {
  z-index: 0;
  overflow: hidden;
  transform: scale(1.04);
  opacity: 0;
  transition:
    opacity 1.25s ease,
    transform 2.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-map.is-visible .contact-map__canvas {
  opacity: 1;
  transform: scale(1);
}

.contact-map__iframe {
  border: 0;
  filter: grayscale(0.88) saturate(0.45) contrast(1.06) brightness(0.73);
}

.contact-map__veil {
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      rgba(6, 9, 7, 0.94) 0%,
      rgba(6, 9, 7, 0.82) 34%,
      rgba(6, 9, 7, 0.26) 66%,
      rgba(6, 9, 7, 0.38) 100%
    ),
    linear-gradient(
      180deg,
      rgba(6, 9, 7, 0.44),
      transparent 30%,
      transparent 70%,
      rgba(6, 9, 7, 0.65)
    );
}

.contact-map__cursor-glow {
  position: absolute;
  left: var(--map-x);
  top: var(--map-y);
  z-index: 2;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(
    circle,
    rgba(184, 239, 0, 0.16),
    rgba(184, 239, 0, 0.045) 34%,
    transparent 70%
  );
  filter: blur(5px);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s ease;
}

@media (hover: hover) and (pointer: fine) {
  .contact-map:hover .contact-map__cursor-glow {
    opacity: 1;
  }
}

.contact-map__content {
  position: relative;
  z-index: 5;
  min-height: max(820px, 100svh);
  display: flex;
  align-items: center;
}

.contact-map__copy {
  width: min(100%, 680px);
  position: relative;
  z-index: 6;
}

.contact-map__eyebrow {
  color: var(--color-accent);
  border-color: rgba(184, 239, 0, 0.2);
}

.contact-map__title {
  margin: 22px 0 0;
  font-size: clamp(66px, 8.2vw, 138px);
  line-height: 0.78;
  letter-spacing: -0.075em;
  text-transform: uppercase;
}

.contact-map__title-line {
  display: block;
  overflow: hidden;
}

.contact-map__title-line:last-child span {
  color: transparent;
  -webkit-text-stroke: 1px rgba(184, 239, 0, 0.82);
  text-stroke: 1px rgba(184, 239, 0, 0.82);
}

.contact-map__lead {
  width: min(100%, 590px);
  margin: 34px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(14px, 1.25vw, 17px);
  line-height: 1.75;
}

.contact-map__transport {
  margin-top: 34px;
  display: flex;
  align-items: center;
  gap: 17px;
}

.contact-map__transport-km {
  display: flex;
  place-items: center;
  align-items: center;
  gap: 5px;
  width: 72px;
  height: 72px;
  flex: 0 0 72px;
  border-radius: 50%;
  background: var(--color-accent);
  color: #080d10;
  font-size: 23px;
  font-weight: 850;
  letter-spacing: -0.05em;
  animation: contactTransportPulse 3s ease-in-out infinite;
}

.contact-map__transport-km span {
  font-size: 12px;
}

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

.contact-map__transport small {
  margin-bottom: 5px;
  color: var(--color-accent);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-map__transport strong {
  max-width: 390px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  line-height: 1.45;
}

.contact-map__question {
  margin-top: 30px;
}

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

.contact-map__question span {
  color: rgba(255, 255, 255, 0.42);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-map__question strong {
  margin-top: 7px;
  font-size: clamp(22px, 2.2vw, 34px);
  line-height: 1;
  letter-spacing: -0.045em;
}

.contact-map__cta {
  width: fit-content;
  min-width: 280px;
  min-height: 62px;
  margin-top: 28px;
  justify-content: space-between;
  padding-inline: 24px;
}

/* location pulse */
.contact-map__pin {
  position: absolute;
  left: 70%;
  top: 47%;
  z-index: 4;
  width: 120px;
  height: 120px;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.contact-map__pin-core {
  position: relative;
  z-index: 3;
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 22px 65px rgba(153, 201, 0, 0.28);
  opacity: 0;
  transform: scale(0.2) rotate(-20deg);
  transition:
    opacity 0.7s ease 0.55s,
    transform 1s cubic-bezier(0.34, 1.56, 0.64, 1) 0.55s;
}

.contact-map.is-visible .contact-map__pin-core {
  opacity: 1;
  transform: scale(1) rotate(0);
  animation: contactPinBreath 2.8s ease-in-out 1.7s infinite;
}

.contact-map__pin-core svg {
  width: 35px;
  height: 35px;
  fill: none;
  stroke: #080d10;
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-map__pulse {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 1px solid rgba(184, 239, 0, 0.62);
  transform: translate(-50%, -50%) scale(0.4);
  opacity: 0;
}

.contact-map.is-visible .contact-map__pulse {
  animation: contactMapPulse 3.4s ease-out infinite;
}

.contact-map__pulse--02 {
  animation-delay: 1.1s !important;
}
.contact-map__pulse--03 {
  animation-delay: 2.2s !important;
}

/* abstract routes */
.contact-map__route {
  position: absolute;
  z-index: 3;
  height: 1px;
  border-top: 1px dashed rgba(184, 239, 0, 0.45);
  transform-origin: left center;
  transform: scaleX(0) rotate(var(--route-angle));
  opacity: 0;
  transition:
    transform 1.8s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.5s ease;
  pointer-events: none;
}

.contact-map__route--01 {
  --route-angle: -23deg;
  left: 70%;
  top: 47%;
  width: 25vw;
  transition-delay: 0.8s;
}

.contact-map__route--02 {
  --route-angle: 13deg;
  left: 70%;
  top: 47%;
  width: 22vw;
  transition-delay: 1s;
}

.contact-map__route--03 {
  --route-angle: 168deg;
  left: 70%;
  top: 47%;
  width: 25vw;
  transition-delay: 1.2s;
}

.contact-map.is-visible .contact-map__route {
  opacity: 0.7;
  transform: scaleX(1) rotate(var(--route-angle));
  animation: contactRouteBlink 4.8s ease-in-out 2.6s infinite;
}

/* floating city chips */
.contact-map__cities {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
}

.contact-map__city {
  position: absolute;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(8, 12, 9, 0.63);
  color: rgba(255, 255, 255, 0.66);
  backdrop-filter: blur(10px);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.04em;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(18px) scale(0.92);
  transition:
    opacity 0.6s ease,
    transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-map.is-visible .contact-map__city {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.contact-map__city--01 {
  left: 77%;
  top: 19%;
  transition-delay: 1.05s;
  animation: contactFloatA 6s ease-in-out 2.1s infinite;
}
.contact-map__city--02 {
  left: 82%;
  top: 34%;
  transition-delay: 1.15s;
  animation: contactFloatB 7s ease-in-out 2.4s infinite;
}
.contact-map__city--03 {
  left: 67%;
  top: 71%;
  transition-delay: 1.25s;
  animation: contactFloatA 6.4s ease-in-out 2.7s infinite;
}
.contact-map__city--04 {
  left: 85%;
  top: 62%;
  transition-delay: 1.35s;
  animation: contactFloatB 7.2s ease-in-out 3s infinite;
}
.contact-map__city--05 {
  left: 61%;
  top: 24%;
  transition-delay: 1.45s;
  animation: contactFloatA 7s ease-in-out 3.2s infinite;
}
.contact-map__city--06 {
  left: 74%;
  top: 79%;
  transition-delay: 1.55s;
  animation: contactFloatB 6.8s ease-in-out 3.4s infinite;
}
.contact-map__city--07 {
  left: 88%;
  top: 47%;
  transition-delay: 1.65s;
  animation: contactFloatA 6.2s ease-in-out 3.6s infinite;
}
.contact-map__city--08 {
  left: 59%;
  top: 59%;
  transition-delay: 1.75s;
  animation: contactFloatB 7.4s ease-in-out 3.8s infinite;
}

.contact-map__base {
  position: absolute;
  right: 5%;
  bottom: 7%;
  z-index: 7;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 13px 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  background: rgba(7, 10, 8, 0.68);
  backdrop-filter: blur(12px);
}

.contact-map__base-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 0 7px rgba(184, 239, 0, 0.08);
  animation: contactBaseDot 2.2s ease-in-out infinite;
}

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

.contact-map__base small {
  color: rgba(255, 255, 255, 0.42);
  font-size: 8px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-map__base strong {
  margin-top: 3px;
  font-size: 11px;
}

.contact-map__scroll {
  position: absolute;
  left: 50%;
  bottom: 24px;
  z-index: 7;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.32);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.18em;
  pointer-events: none;
}

.contact-map__scroll i {
  position: relative;
  display: block;
  width: 90px;
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
  overflow: hidden;
}

.contact-map__scroll i::after {
  content: "";
  position: absolute;
  top: 0;
  left: -30%;
  width: 30%;
  height: 1px;
  background: var(--color-accent);
  animation: contactScanner 3s ease-in-out infinite;
}

@keyframes contactPinBreath {
  0%,
  100% {
    transform: scale(0.94) translateY(0);
  }
  50% {
    transform: scale(1.14) translateY(-5px);
  }
}

@keyframes contactMapPulse {
  0% {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(0.45);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(2.5);
  }
}

@keyframes contactTransportPulse {
  0%,
  100% {
    transform: scale(0.95);
    box-shadow: 0 16px 34px rgba(139, 184, 0, 0.18);
  }
  50% {
    transform: scale(1.1);
    box-shadow: 0 22px 54px rgba(139, 184, 0, 0.3);
  }
}

@keyframes contactRouteBlink {
  0%,
  100% {
    opacity: 0.35;
  }
  50% {
    opacity: 0.8;
  }
}

@keyframes contactFloatA {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 12px -9px;
  }
}

@keyframes contactFloatB {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: -10px 10px;
  }
}

@keyframes contactBaseDot {
  0%,
  100% {
    transform: scale(0.85);
  }
  50% {
    transform: scale(1.3);
  }
}

@keyframes contactScanner {
  0% {
    left: -30%;
  }
  50%,
  100% {
    left: 100%;
  }
}

@media (max-width: 900px) {
  .contact-map__veil {
    background: linear-gradient(
      180deg,
      rgba(6, 9, 7, 0.91) 0%,
      rgba(6, 9, 7, 0.76) 56%,
      rgba(6, 9, 7, 0.42) 100%
    );
  }

  .contact-map__pin {
    left: 76%;
    top: 68%;
  }

  .contact-map__city {
    display: none;
  }
}

@media (max-width: 767px) {
  .ml-0 {
    margin-left: 0;
  }
  .contact-map {
    min-height: 1080px;
  }

  .contact-map__content {
    min-height: 1080px;
    align-items: flex-start;
  }

  .contact-map__title {
    font-size: clamp(58px, 17vw, 82px);
  }

  .contact-map__lead {
    font-size: 13px;
    line-height: 1.65;
  }

  .contact-map__pin {
    left: 72%;
    top: 75%;
    transform: translate(-50%, -50%) scale(0.82);
  }

  .contact-map__transport-km {
    width: 62px;
    height: 62px;
    flex-basis: 62px;
    font-size: 26px;
  }

  .contact-map__cta {
    width: 100%;
    min-width: 0;
  }

  .contact-map__base {
    right: 16px;
    bottom: 52px;
  }

  .contact-map__scroll {
    left: 16px;
    transform: none;
  }

  .contact-map__route {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .contact-map__pin-core,
  .contact-map__pulse,
  .contact-map__route,
  .contact-map__city,
  .contact-map__base-dot,
  .contact-map__transport-km,
  .contact-map__scroll i::after {
    animation: none !important;
  }
}

/* =========================================================
   DAVAMA — COOKIE CONSENT
========================================================= */

.cookie-consent {
  --cookie-black: #080d10;
  --cookie-green: var(--color-accent, #b8ef00);
  --cookie-bg: #f4f3ee;
  --cookie-muted: #687076;

  position: relative;

  z-index: 9999;
}

/* =========================================================
   ACCESSIBILITY
========================================================= */

.sr-only {
  position: absolute !important;

  width: 1px !important;
  height: 1px !important;

  padding: 0 !important;
  margin: -1px !important;

  overflow: hidden !important;

  clip: rect(0, 0, 0, 0) !important;

  white-space: nowrap !important;

  border: 0 !important;
}

/* =========================================================
   BANNER
========================================================= */

.cookie-banner {
  position: fixed;

  left: 24px;
  right: 24px;
  bottom: 24px;

  z-index: 10000;

  display: none;

  overflow: hidden;

  border: 1px solid rgba(255, 255, 255, 0.09);

  border-radius: 18px;

  background:
    radial-gradient(
      circle at 92% 15%,
      rgba(184, 239, 0, 0.12),
      transparent 25%
    ),
    linear-gradient(135deg, #080b09 0%, #0d110e 55%, #10180c 100%);

  color: #fff;

  box-shadow:
    0 26px 90px rgba(0, 0, 0, 0.28),
    0 4px 15px rgba(0, 0, 0, 0.12);

  transform: translateY(calc(100% + 50px)) scale(0.985);

  opacity: 0;

  transition:
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.45s ease;
}

.cookie-banner.is-visible {
  display: block;
}

.cookie-banner.is-entered {
  transform: translateY(0) scale(1);

  opacity: 1;
}

/* =========================================================
   INNER
========================================================= */

.cookie-banner__inner {
  position: relative;

  z-index: 3;

  min-height: 190px;

  padding: 30px clamp(28px, 4vw, 62px);

  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    auto;

  align-items: center;

  gap: clamp(30px, 6vw, 90px);
}

/* =========================================================
   CONTENT
========================================================= */

.cookie-banner__content {
  max-width: 820px;
}

.cookie-banner__eyebrow {
  display: flex;
  align-items: center;

  gap: 8px;

  margin-bottom: 13px;

  color: rgba(255, 255, 255, 0.52);

  font-size: 8px;

  font-weight: 800;

  letter-spacing: 0.18em;

  text-transform: uppercase;
}

.cookie-banner__dot {
  width: 7px;
  height: 7px;

  flex: 0 0 7px;

  border-radius: 50%;

  background: var(--cookie-green);

  box-shadow: 0 0 0 5px rgba(184, 239, 0, 0.08);

  animation: cookieDotPulse 2.5s ease-in-out infinite;
}

.cookie-banner__title {
  margin: 0;

  color: #fff;

  font-size: clamp(28px, 3.2vw, 50px);

  font-weight: 750;

  line-height: 0.95;

  letter-spacing: -0.055em;
}

.cookie-banner__title span {
  color: var(--cookie-green);
}

.cookie-banner__text {
  max-width: 760px;

  margin: 17px 0 0;

  color: rgba(255, 255, 255, 0.58);

  font-size: 12px;

  line-height: 1.65;
}

/* =========================================================
   SETTINGS TEXT LINK
========================================================= */

.cookie-banner__details {
  margin-top: 16px;

  padding: 0;

  display: inline-flex;

  align-items: center;

  gap: 9px;

  border: 0;

  background: transparent;

  color: rgba(255, 255, 255, 0.72);

  font-size: 10px;

  font-weight: 750;

  cursor: pointer;

  transition:
    color 0.3s ease,
    gap 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-banner__details svg {
  width: 24px;
  height: 14px;

  fill: none;

  stroke: currentColor;

  stroke-width: 1.3;

  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-banner__details:hover {
  color: var(--cookie-green);

  gap: 14px;
}

.cookie-banner__details:hover svg {
  transform: translateX(3px);
}

/* =========================================================
   BUTTONS
========================================================= */

.cookie-banner__actions {
  width: min(330px, 30vw);

  display: grid;

  grid-template-columns: 1fr;

  gap: 9px;
}

.cookie-btn {
  position: relative;

  min-height: 54px;

  padding: 0 20px;

  display: flex;

  align-items: center;
  justify-content: center;

  gap: 16px;

  border-radius: 10px;

  font-family: inherit;

  font-size: 11px;

  font-weight: 800;

  cursor: pointer;

  overflow: hidden;

  transition:
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    color 0.35s ease,
    background 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.cookie-btn svg {
  width: 37px;
  height: 20px;

  fill: none;

  stroke: currentColor;

  stroke-width: 1.2;
}

.cookie-btn--primary {
  border: 1px solid rgba(255, 255, 255, 0.25);

  background: linear-gradient(
    135deg,
    #c9ff00 0%,
    var(--cookie-green) 58%,
    #a6d900 100%
  );

  color: var(--cookie-black);

  box-shadow: 0 9px 25px rgba(161, 210, 0, 0.15);
}

.cookie-btn--secondary {
  border: 1px solid rgba(255, 255, 255, 0.17);

  background: rgba(255, 255, 255, 0.055);

  color: rgba(255, 255, 255, 0.9);

  backdrop-filter: blur(10px);

  -webkit-backdrop-filter: blur(10px);
}

@media (hover: hover) {
  .cookie-btn:hover {
    transform: translateY(-2px);
  }

  .cookie-btn--primary:hover {
    background: #fff;

    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.18);
  }

  .cookie-btn--secondary:hover {
    border-color: rgba(184, 239, 0, 0.5);

    color: var(--cookie-green);
  }
}

/* =========================================================
   DECORATIVE BUBBLES
========================================================= */

.cookie-banner__bubble {
  position: absolute;

  border-radius: 50%;

  pointer-events: none;

  border: 1px solid rgba(184, 239, 0, 0.16);

  background:
    radial-gradient(
      circle at 30% 25%,
      rgba(255, 255, 255, 0.13),
      transparent 25%
    ),
    rgba(184, 239, 0, 0.025);
}

.cookie-banner__bubble--1 {
  width: 125px;
  height: 125px;

  right: 33%;

  top: -70px;

  animation: cookieBubbleOne 8s ease-in-out infinite;
}

.cookie-banner__bubble--2 {
  width: 52px;
  height: 52px;

  right: 3%;

  bottom: -23px;

  animation: cookieBubbleTwo 6.5s ease-in-out infinite;
}

.cookie-banner__bubble--3 {
  width: 22px;
  height: 22px;

  left: 42%;

  bottom: 17px;

  animation: cookieBubbleThree 5.5s ease-in-out infinite;
}

/* =========================================================
   SETTINGS MODAL
========================================================= */

.cookie-settings {
  position: fixed;

  inset: 0;

  z-index: 10020;

  display: none;

  place-items: center;

  padding: 24px;

  opacity: 0;

  transition: opacity 0.4s ease;
}

.cookie-settings.is-visible {
  display: grid;
}

.cookie-settings.is-entered {
  opacity: 1;
}

.cookie-settings__backdrop {
  position: absolute;

  inset: 0;

  background: rgba(4, 6, 5, 0.72);

  backdrop-filter: blur(10px);

  -webkit-backdrop-filter: blur(10px);
}

/* =========================================================
   SETTINGS PANEL
========================================================= */

.cookie-settings__panel {
  position: relative;

  z-index: 2;

  width: min(100%, 760px);

  max-height: min(88svh, 760px);

  overflow-y: auto;

  border-radius: 22px;

  border: 1px solid rgba(8, 13, 16, 0.08);

  background: var(--cookie-bg);

  color: var(--cookie-black);

  box-shadow: 0 35px 110px rgba(0, 0, 0, 0.28);

  transform: translateY(35px) scale(0.965);

  opacity: 0;

  transition:
    transform 0.65s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.35s ease;

  scrollbar-width: thin;

  scrollbar-color: var(--cookie-green) transparent;
}

.cookie-settings.is-entered .cookie-settings__panel {
  transform: translateY(0) scale(1);

  opacity: 1;
}

/* =========================================================
   SETTINGS HEAD
========================================================= */

.cookie-settings__head {
  position: relative;

  padding: 42px 46px 30px;

  border-bottom: 1px solid rgba(8, 13, 16, 0.08);
}

.cookie-settings__head .cookie-banner__eyebrow {
  color: var(--cookie-muted);
}

.cookie-settings__title {
  margin: 0;

  font-size: clamp(38px, 5vw, 67px);

  font-weight: 760;

  line-height: 0.92;

  letter-spacing: -0.065em;
}

.cookie-settings__title span {
  color: #8fbd00;
}

.cookie-settings__intro {
  max-width: 550px;

  margin: 18px 0 0;

  color: var(--cookie-muted);

  font-size: 12px;

  line-height: 1.65;
}

/* =========================================================
   CLOSE
========================================================= */

.cookie-settings__close {
  position: absolute;

  top: 22px;
  right: 22px;

  z-index: 4;

  width: 42px;
  height: 42px;

  display: grid;

  place-items: center;

  border: 1px solid rgba(8, 13, 16, 0.12);

  border-radius: 50%;

  background: transparent;

  cursor: pointer;

  transition:
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    background 0.3s ease;
}

.cookie-settings__close span {
  position: absolute;

  width: 15px;
  height: 1px;

  background: var(--cookie-black);
}

.cookie-settings__close span:first-child {
  transform: rotate(45deg);
}

.cookie-settings__close span:last-child {
  transform: rotate(-45deg);
}

.cookie-settings__close:hover {
  transform: rotate(90deg);

  background: var(--cookie-green);
}

/* =========================================================
   COOKIE OPTIONS
========================================================= */

.cookie-settings__list {
  padding: 0 46px;
}

.cookie-option {
  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    auto;

  align-items: center;

  gap: 30px;

  padding: 26px 0;

  border-bottom: 1px solid rgba(8, 13, 16, 0.09);
}

.cookie-option__top {
  display: flex;

  align-items: center;

  gap: 12px;
}

.cookie-option__number {
  width: 29px;
  height: 29px;

  flex: 0 0 29px;

  display: grid;

  place-items: center;

  border-radius: 50%;

  background: rgba(184, 239, 0, 0.17);

  color: #6e9200;

  font-size: 8px;

  font-weight: 850;
}

.cookie-option h3 {
  margin: 0;

  font-size: 18px;

  font-weight: 750;

  letter-spacing: -0.035em;
}

.cookie-option p {
  max-width: 500px;

  margin: 8px 0 0 41px;

  color: var(--cookie-muted);

  font-size: 11px;

  line-height: 1.55;
}

/* =========================================================
   REQUIRED SWITCH
========================================================= */

.cookie-switch {
  min-width: 125px;

  display: flex;
  align-items: center;
  justify-content: flex-end;

  gap: 9px;
}

.cookie-switch > span {
  width: 8px;
  height: 8px;

  border-radius: 50%;

  background: var(--cookie-green);

  box-shadow: 0 0 0 6px rgba(184, 239, 0, 0.1);
}

.cookie-switch strong {
  font-size: 9px;

  font-weight: 800;

  white-space: nowrap;
}

/* =========================================================
   TOGGLE
========================================================= */

.cookie-toggle {
  position: relative;

  display: block;

  cursor: pointer;
}

.cookie-toggle input {
  position: absolute;

  width: 1px;
  height: 1px;

  opacity: 0;
}

.cookie-toggle__track {
  width: 54px;
  height: 30px;

  display: block;

  padding: 3px;

  border-radius: 999px;

  background: #dadbd5;

  box-shadow: inset 0 0 0 1px rgba(8, 13, 16, 0.06);

  transition:
    background 0.35s ease,
    box-shadow 0.35s ease;
}

.cookie-toggle__thumb {
  width: 24px;
  height: 24px;

  display: block;

  border-radius: 50%;

  background: #fff;

  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);

  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-toggle input:checked + .cookie-toggle__track {
  background: var(--cookie-green);
}

.cookie-toggle input:checked + .cookie-toggle__track .cookie-toggle__thumb {
  transform: translateX(24px);
}

.cookie-toggle input:focus-visible + .cookie-toggle__track {
  box-shadow: 0 0 0 3px rgba(184, 239, 0, 0.25);
}

/* =========================================================
   SETTINGS ACTIONS
========================================================= */

.cookie-settings__actions {
  padding: 28px 46px 38px;

  display: grid;

  grid-template-columns: 1fr 1.35fr;

  gap: 10px;
}

.cookie-settings .cookie-btn--secondary {
  border-color: rgba(8, 13, 16, 0.13);

  background: transparent;

  color: var(--cookie-black);
}

.cookie-settings .cookie-btn--secondary:hover {
  border-color: var(--cookie-black);

  background: var(--cookie-black);

  color: var(--cookie-green);
}

/* =========================================================
   FOOTER SETTINGS BUTTON
========================================================= */

.cookie-footer-button {
  display: inline-flex;

  align-items: center;

  gap: 8px;

  padding: 0;

  border: 0;

  background: transparent;

  color: inherit;

  font-family: inherit;

  font-size: 10px;

  cursor: pointer;

  opacity: 0.72;

  transition:
    opacity 0.3s ease,
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-footer-button__dot {
  width: 6px;
  height: 6px;

  border: 1px solid currentColor;

  border-radius: 50%;

  transition:
    background 0.3s ease,
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-footer-button:hover {
  opacity: 1;

  transform: translateY(-1px);
}

.cookie-footer-button:hover .cookie-footer-button__dot {
  background: currentColor;

  transform: scale(1.25);
}

/* fallback */

.cookie-footer-button--floating {
  position: fixed;

  left: 15px;
  bottom: 15px;

  z-index: 9000;

  padding: 9px 12px;

  border-radius: 999px;

  background: rgba(8, 13, 16, 0.8);

  color: #fff;

  backdrop-filter: blur(10px);
}

/* =========================================================
   BODY
========================================================= */

body.cookie-modal-open {
  overflow: hidden;
}

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

@keyframes cookieDotPulse {
  0%,
  100% {
    transform: scale(0.85);
  }

  50% {
    transform: scale(1.25);
  }
}

@keyframes cookieBubbleOne {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(-18px, 12px, 0);
  }
}

@keyframes cookieBubbleTwo {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(-10px, -15px, 0) scale(1.08);
  }
}

@keyframes cookieBubbleThree {
  0%,
  100% {
    transform: translateY(0);

    opacity: 0.5;
  }

  50% {
    transform: translateY(-17px);

    opacity: 1;
  }
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 980px) {
  .cookie-banner {
    left: 15px;
    right: 15px;
    bottom: 15px;
  }

  .cookie-banner__inner {
    grid-template-columns: 1fr;

    gap: 24px;

    padding: 28px;
  }

  .cookie-banner__actions {
    width: 100%;

    grid-template-columns: 1fr 1fr;
  }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {
  .cookie-banner {
    left: 10px;
    right: 10px;
    bottom: 10px;

    border-radius: 17px;
  }

  .cookie-banner__inner {
    min-height: 0;

    padding: 23px 20px 19px;

    gap: 19px;
  }

  .cookie-banner__title {
    font-size: clamp(27px, 9vw, 38px);

    max-width: 330px;
  }

  .cookie-banner__text {
    margin-top: 13px;

    font-size: 10.5px;

    line-height: 1.55;
  }

  .cookie-banner__details {
    margin-top: 12px;
  }

  .cookie-banner__actions {
    grid-template-columns: 1fr;

    gap: 7px;
  }

  .cookie-btn {
    min-height: 50px;
  }

  /* SETTINGS AS BOTTOM SHEET */

  .cookie-settings {
    align-items: end;

    padding: 0;
  }

  .cookie-settings__panel {
    width: 100%;

    max-height: 91svh;

    border-radius: 22px 22px 0 0;

    transform: translateY(100%);
  }

  .cookie-settings.is-entered .cookie-settings__panel {
    transform: translateY(0);
  }

  .cookie-settings__head {
    padding: 35px 20px 24px;
  }

  .cookie-settings__close {
    top: 15px;
    right: 15px;

    width: 37px;
    height: 37px;
  }

  .cookie-settings__title {
    font-size: clamp(39px, 13vw, 57px);
  }

  .cookie-settings__intro {
    max-width: calc(100% - 20px);

    font-size: 10.5px;
  }

  .cookie-settings__list {
    padding: 0 20px;
  }

  .cookie-option {
    gap: 15px;

    padding: 20px 0;
  }

  .cookie-option p {
    margin-left: 0;

    padding-right: 8px;

    font-size: 10px;
  }

  .cookie-switch {
    min-width: 0;
  }

  .cookie-switch strong {
    display: none;
  }

  .cookie-settings__actions {
    position: sticky;

    bottom: 0;

    padding: 15px 20px calc(15px + env(safe-area-inset-bottom));

    grid-template-columns: 1fr;

    background: rgba(244, 243, 238, 0.94);

    backdrop-filter: blur(15px);

    -webkit-backdrop-filter: blur(15px);

    border-top: 1px solid rgba(8, 13, 16, 0.08);
  }

  .cookie-banner__bubble--1 {
    right: -25px;
  }

  .cookie-banner__bubble--3 {
    display: none;
  }
}

/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {
  .cookie-banner,
  .cookie-settings__panel,
  .cookie-banner__dot,
  .cookie-banner__bubble {
    animation: none !important;

    transition-duration: 0.01ms !important;
  }
}
/* =========================================================
   DAVAMA — LEGAL PAGES
   Obchodní podmínky
   Ochrana osobních údajů
   Zásady cookies
   ========================================================= */

/* =========================
   PAGE
   ========================= */

.legal-page {
  min-height: 100vh;

  background:
    radial-gradient(
      circle at 82% 12%,
      rgba(184, 239, 0, 0.16),
      transparent 26%
    ),
    linear-gradient(180deg, #eceee6 0%, #f7f7f2 38%, #f4f3ee 100%);
}

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

.legal-hero {
  position: relative;
  overflow: hidden;

  padding: 190px 0 78px;
}

.legal-hero__inner {
  position: relative;
  z-index: 2;
  text-align: center;
}

/* small DAVAMA label */

.legal-kicker {
  display: inline-flex;

  margin-bottom: 18px;

  color: #6f9200;

  font-size: 12px;
  font-weight: 800;

  letter-spacing: 0.16em;
}

/* main title */

.legal-hero h1 {
  max-width: 1000px;

  margin: 0 auto;

  color: var(--color-text);

  font-family: var(--font-display);

  font-size: clamp(44px, 6vw, 92px);
  font-weight: 650;

  line-height: 0.94;
  text-align: center;
  letter-spacing: -0.065em;
}

/* =========================
   DECORATIVE BUBBLES
   ========================= */

.legal-orb {
  position: absolute;

  border-radius: 50%;

  pointer-events: none;

  filter: blur(2px);
}

/* large green bubble */

.legal-orb--one {
  width: 330px;
  height: 330px;

  right: 7%;
  top: 115px;

  background: radial-gradient(
    circle at 32% 25%,
    rgba(236, 255, 173, 0.95),
    rgba(184, 239, 0, 0.58) 38%,
    rgba(184, 239, 0, 0.05) 72%
  );
}

/* glass bubble */

.legal-orb--two {
  width: 130px;
  height: 130px;

  right: 31%;
  top: 270px;

  border: 1px solid rgba(255, 255, 255, 0.75);

  background: rgba(255, 255, 255, 0.2);

  box-shadow: inset 8px 10px 22px rgba(255, 255, 255, 0.62);
}

/* =========================
   CONTENT SECTION
   ========================= */

.legal-content {
  padding: 0 0 110px;
}

/* =========================
   MAIN LEGAL CARD
   ========================= */

.legal-card {
  position: relative;

  max-width: 1120px;

  margin: 0 auto;

  padding: clamp(30px, 5vw, 72px);

  border: 1px solid rgba(8, 13, 16, 0.08);

  border-radius: 22px;

  background: rgba(249, 249, 246, 0.78);

  -webkit-backdrop-filter: blur(18px) saturate(1.08);

  backdrop-filter: blur(18px) saturate(1.08);

  box-shadow: 0 24px 70px rgba(16, 20, 14, 0.07);
}

/* =========================
   HEADINGS
   ========================= */

.legal-card h2 {
  margin: 48px 0 18px;

  color: var(--color-text);

  font-family: var(--font-display);

  font-size: clamp(22px, 2.3vw, 32px);
  font-weight: 650;

  line-height: 1.15;

  letter-spacing: -0.035em;
}

.legal-card h2:first-child {
  margin-top: 0;
}

/* =========================
   BODY TEXT
   ========================= */

.legal-card p,
.legal-list {
  color: #303733;

  font-size: 16px;

  line-height: 1.75;
}

/* first introductory paragraph */

.legal-lead {
  margin-top: 0;

  color: #171c19 !important;

  font-size: clamp(18px, 2vw, 22px) !important;

  line-height: 1.6 !important;
}

/* =========================
   LISTS
   ========================= */

.legal-list {
  margin: 0;

  padding-left: 1.35em;
}

.legal-list li + li {
  margin-top: 10px;
}

.legal-list li::marker {
  color: #82aa00;

  font-weight: 750;
}

/* =========================
   APPENDIX
   ========================= */

.legal-appendix {
  margin-top: 56px;

  padding: clamp(24px, 4vw, 42px);

  border-radius: 16px;

  background: rgba(184, 239, 0, 0.09);

  border: 1px solid rgba(126, 164, 0, 0.16);
}

.legal-appendix h2 {
  margin-top: 0;
}

/* =========================
   EFFECTIVE DATE
   ========================= */

.legal-effective {
  margin-top: 44px;

  padding-top: 22px;

  border-top: 1px solid rgba(8, 13, 16, 0.1);

  font-weight: 650;
}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 980px) {
  .legal-hero {
    padding: 145px 0 54px;
  }

  .legal-hero h1 {
    max-width: 750px;
  }

  .legal-orb--one {
    width: 270px;
    height: 270px;

    right: 1%;
  }

  .legal-orb--two {
    right: 28%;
  }
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 640px) {
  .legal-hero {
    padding: 90px 0 30px;
  }

  .legal-hero h1 {
    font-size: clamp(30px, 10vw, 50px);
    line-height: 0.98;

    letter-spacing: -0.055em;
  }

  .legal-kicker {
    margin-bottom: 14px;
  }

  .legal-content {
    padding-bottom: 50px;
  }

  .legal-card {
    padding: 28px 22px 34px;

    border-radius: 16px;
  }

  .legal-card p,
  .legal-list {
    font-size: 15px;

    line-height: 1.7;
  }

  .legal-card h2 {
    margin-top: 38px;

    font-size: 23px;
  }

  .legal-lead {
    font-size: 17px !important;
  }

  .legal-appendix {
    margin-top: 42px;

    padding: 24px 20px;
  }

  /* bubble partly outside viewport */

  .legal-orb--one {
    width: 210px;
    height: 210px;

    right: -70px;
    top: 100px;
  }

  .legal-orb--two {
    display: none;
  }
}

/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 420px) {
  .legal-card {
    padding: 25px 18px 30px;
  }

  .legal-card h2 {
    font-size: 21px;

    letter-spacing: -0.025em;
  }

  .legal-card p,
  .legal-list {
    font-size: 14.5px;
  }

  .legal-list {
    padding-left: 1.2em;
  }
}

/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
  .legal-orb {
    animation: none !important;
  }
}
/* =========================================================
   DAVAMA — RADY A TIPY / ARTICLE PAGE
   ========================================================= */

.nav__link.is-current::after {
  right: 0;
}

.tips-page-body {
  background: #f4f3ee;
}

.tips-hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  padding: 190px 0 105px;
  background:
    radial-gradient(circle at 82% 28%, rgba(201, 255, 0, 0.2), transparent 28%),
    linear-gradient(180deg, #eeefe9 0%, #f4f3ee 100%);
}

.tips-hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(340px, 0.82fr);
  align-items: center;
  gap: clamp(60px, 8vw, 130px);
}

.tips-hero__content {
  max-width: 900px;
}

.tips-hero__title {
  margin: 38px 0 0;
  max-width: 950px;
  font-size: clamp(66px, 7.1vw, 122px);
  line-height: 0.88;
  font-weight: 600;
  letter-spacing: -0.075em;
}

.tips-hero__title span {
  color: var(--color-accent-soft);
}

.tips-hero__lead {
  max-width: 610px;
  margin: 34px 0 0;
  color: var(--color-muted);
  font-size: clamp(18px, 1.45vw, 23px);
  line-height: 1.48;
  letter-spacing: -0.03em;
}

.tips-hero__scroll {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-top: 42px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(8, 13, 16, 0.22);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.tips-hero__scroll span:last-child {
  font-size: 20px;
  color: #82ad00;
}

.tips-hero__visual {
  position: relative;
  width: min(100%, 510px);
  aspect-ratio: 1;
  justify-self: end;
}

.tips-orbit {
  position: absolute;
  border: 1px solid rgba(8, 13, 16, 0.12);
  border-radius: 50%;
}

.tips-orbit--outer {
  inset: 0;
  animation: tipsOrbit 16s linear infinite;
}

.tips-orbit--inner {
  inset: 17%;
  border-color: rgba(130, 173, 0, 0.35);
  animation: tipsOrbit 11s linear infinite reverse;
}

.tips-orbit--outer::before,
.tips-orbit--inner::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -8px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 0 9px rgba(184, 239, 0, 0.12);
}

.tips-hero__badge {
  position: absolute;
  inset: 31%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px;
  border-radius: 50%;
  background: #0a0d0b;
  color: #fff;
  box-shadow: 0 25px 70px rgba(8, 13, 16, 0.16);
}

.tips-hero__badge strong {
  color: var(--color-accent);
  font-size: 13px;
  letter-spacing: 0.18em;
}

.tips-hero__badge span {
  margin-top: 8px;
  font-size: clamp(20px, 2vw, 30px);
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.tips-hero__glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(2px);
}

.tips-hero__glow--one {
  width: 230px;
  height: 230px;
  right: 5%;
  top: 14%;
  background: radial-gradient(
    circle at 35% 30%,
    #eaff8c,
    #b8ef00 55%,
    rgba(184, 239, 0, 0.1)
  );
  opacity: 0.45;
}

.tips-hero__glow--two {
  width: 110px;
  height: 110px;
  right: 39%;
  bottom: 12%;
  background: rgba(184, 239, 0, 0.28);
}

@keyframes tipsOrbit {
  to {
    transform: rotate(360deg);
  }
}

/* =========================
   ARTICLE
   ========================= */

.tips-article-section {
  position: relative;
  padding: 110px 0 140px;
  background: #f8f8f4;
}

.tips-layout {
  display: grid;
  grid-template-columns: minmax(190px, 0.33fr) minmax(0, 1fr);
  gap: clamp(55px, 8vw, 130px);
  align-items: start;
}

/* =========================
   SIDEBAR
   ========================= */

.tips-sidebar__sticky {
  position: sticky;
  top: 150px;
}

.tips-sidebar__label,
.tips-article__kicker,
.tips-social__eyebrow,
.tips-cta__eyebrow {
  color: #719600;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.tips-sidebar__meta {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 28px;
  font-size: 12px;
}

.tips-sidebar__meta span {
  color: var(--color-muted);
}

.tips-sidebar__rule {
  height: 1px;
  margin: 18px 0;
  background: rgba(8, 13, 16, 0.12);
}

.tips-sidebar p {
  margin: 0;
  color: var(--color-muted);
  font-size: 13px;
  line-height: 1.55;
}

/* =========================
   ARTICLE CONTENT
   ========================= */

.tips-article {
  max-width: 930px;
}

.tips-article__header {
  padding-bottom: 68px;
  border-bottom: 1px solid rgba(8, 13, 16, 0.1);
}

.tips-article__header h1 {
  margin: 20px 0 0;
  max-width: 880px;
  font-size: clamp(44px, 5vw, 78px);
  line-height: 0.98;
  font-weight: 600;
  letter-spacing: -0.065em;
}

.tips-article__intro {
  max-width: 800px;
  margin: 32px 0 0;
  color: #4f5853;
  font-size: clamp(18px, 1.55vw, 22px);
  line-height: 1.62;
  letter-spacing: -0.025em;
}

/* =========================
   IMAGES
   ========================= */

.tips-feature-image {
  position: relative;
  overflow: hidden;
  margin: 72px 0 25px;
  min-height: 430px;
  border-radius: 20px;
  background: #e8eae2;
}

.tips-feature-image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.tips-feature-image:hover img {
  transform: scale(1.035);
}

.tips-feature-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.5));
}

.tips-feature-image > span {
  position: absolute;
  left: 25px;
  bottom: 22px;
  z-index: 2;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

/* =========================
   ARTICLE BLOCKS
   ========================= */

.tips-article__block {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  gap: 25px;
  padding: 52px 0;
  border-bottom: 1px solid rgba(8, 13, 16, 0.1);
}

.tips-article__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--color-accent);
  font-size: 11px;
  font-weight: 850;
}

.tips-article__block h2 {
  margin: 0;
  font-size: clamp(28px, 3vw, 43px);
  line-height: 1.05;
  font-weight: 600;
  letter-spacing: -0.055em;
}

.tips-article__block p {
  margin: 18px 0 0;
  color: #525b56;
  font-size: 17px;
  line-height: 1.72;
  letter-spacing: -0.018em;
}

/* =========================
   CHECKLIST
   ========================= */

.tips-checklist {
  margin: 65px 0 10px;
  padding: 38px;
  border-radius: 18px;
  background: #0a0d0b;
  color: #fff;
}

.tips-checklist__head {
  display: grid;
  gap: 10px;
}

.tips-checklist__head span {
  color: var(--color-accent);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.tips-checklist__head strong {
  max-width: 580px;
  font-size: clamp(28px, 3.3vw, 48px);
  line-height: 1;
  letter-spacing: -0.055em;
}

.tips-checklist__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.17);
  border-left: 1px solid rgba(255, 255, 255, 0.17);
}

.tips-checklist__grid span {
  padding: 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.17);
  border-bottom: 1px solid rgba(255, 255, 255, 0.17);
  font-size: 14px;
}

.tips-checklist__grid span::before {
  content: "✓";
  margin-right: 10px;
  color: var(--color-accent);
}

/* =========================
   CTA
   ========================= */

.tips-cta {
  margin-top: 80px;
  padding: clamp(38px, 5vw, 66px);
  border-radius: 22px;
  background:
    radial-gradient(
      circle at 87% 14%,
      rgba(255, 255, 255, 0.3),
      transparent 22%
    ),
    var(--color-accent);
  color: #080d10;
}

.tips-cta h2 {
  max-width: 740px;
  margin: 14px 0 0;
  font-size: clamp(38px, 4.4vw, 66px);
  line-height: 0.98;
  font-weight: 600;
  letter-spacing: -0.065em;
}

.tips-cta p {
  max-width: 690px;
  margin: 25px 0 0;
  font-size: 17px;
  line-height: 1.62;
}

.tips-cta__button {
  margin-top: 28px;
  background: #080d10;
  color: #c9ff00;
  border-color: rgba(8, 13, 16, 0.1);
}

.tips-cta__button:hover {
  background: #fff;
  color: #080d10;
  border-color: rgba(255, 255, 255, 0.8);
}

/* =========================
   SOCIAL
   ========================= */

.tips-social {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(330px, 1.2fr);
  gap: 55px;
  align-items: end;
  margin-top: 95px;
  padding-top: 60px;
  border-top: 1px solid rgba(8, 13, 16, 0.12);
}

.tips-social h2 {
  margin: 12px 0 0;
  font-size: clamp(30px, 3.4vw, 50px);
  line-height: 1;
  font-weight: 600;
  letter-spacing: -0.055em;
}

.tips-social__links {
  display: grid;
  gap: 12px;
}

.tips-social__link {
  position: relative;
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 14px;
  min-height: 68px;
  padding: 0 22px;
  border: 1px solid rgba(8, 13, 16, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.55);
  transition:
    background 0.3s ease,
    color 0.3s ease,
    transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.tips-social__link svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}

.tips-social__link:nth-child(2) svg {
  fill: currentColor;
  stroke: none;
}

.tips-social__link span {
  font-size: 16px;
  font-weight: 650;
}

.tips-social__link i {
  font-style: normal;
  font-size: 22px;
}

.tips-social__link:hover {
  transform: translateY(-2px);
  background: #080d10;
  color: var(--color-accent);
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1100px) {
  .tips-hero__inner {
    grid-template-columns: 1fr 0.62fr;
    gap: 40px;
  }

  .tips-layout {
    grid-template-columns: 170px minmax(0, 1fr);
    gap: 45px;
  }

  .tips-social {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 800px) {
  .tips-hero {
    min-height: auto;
    padding: 150px 0 78px;
  }

  .tips-hero__inner {
    grid-template-columns: 1fr;
  }

  .tips-hero__visual {
    width: min(78vw, 390px);
    justify-self: center;
    margin-top: 16px;
  }

  .tips-layout {
    display: block;
  }

  .tips-sidebar {
    display: none;
  }

  .tips-article-section {
    padding: 80px 0;
  }

  .tips-feature-image,
  .tips-feature-image img {
    min-height: 330px;
  }

  .tips-social {
    gap: 32px;
  }
}

@media (max-width: 560px) {
  .tips-hero {
    padding-top: 130px;
  }

  .tips-hero__title {
    font-size: clamp(52px, 16vw, 78px);
  }

  .tips-hero__lead {
    font-size: 17px;
  }

  .tips-article__header {
    padding-bottom: 45px;
  }

  .tips-article__header h1 {
    font-size: clamp(37px, 11vw, 52px);
  }

  .tips-article__intro,
  .tips-article__block p,
  .tips-cta p {
    font-size: 15px;
  }

  .tips-feature-image {
    margin-top: 50px;
    border-radius: 14px;
  }

  .tips-feature-image,
  .tips-feature-image img {
    min-height: 260px;
  }

  .tips-article__block {
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 15px;
    padding: 38px 0;
  }

  .tips-article__number {
    width: 36px;
    height: 36px;
  }

  .tips-checklist {
    padding: 28px 20px;
  }

  .tips-checklist__grid {
    grid-template-columns: 1fr;
  }

  .tips-cta {
    margin-top: 55px;
    border-radius: 16px;
  }

  .tips-social {
    margin-top: 70px;
    padding-top: 45px;
  }

  .tips-social__link {
    grid-template-columns: 34px 1fr auto;
    min-height: 62px;
    padding: 0 17px;
  }
}

/* =========================
   REDUCED MOTION
   ========================= */

@media (prefers-reduced-motion: reduce) {
  .tips-orbit--outer,
  .tips-orbit--inner {
    animation: none;
  }

  .tips-feature-image img,
  .tips-social__link {
    transition: none;
  }
}
.site-footer__social-icons {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-footer__social-icon {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 42px;
  height: 42px;

  border: 1px solid rgba(8, 8, 8, 0.2);
  border-radius: 50%;

  color: #080808;
  text-decoration: none;

  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

.site-footer__social-icon svg {
  width: 19px;
  height: 19px;

  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}

.site-footer__social-icon .facebook-icon {
  fill: currentColor;
  stroke: none;
}

.site-footer__social-icon:hover {
  color: #c9ff00;
  background: #080808;
  transform: translateY(-3px);
}

@media (max-width: 700px) {
  .site-footer__social-icons {
    gap: 8px;
  }

  .site-footer__social-icon {
    width: 38px;
    height: 38px;
  }

  .site-footer__social-icon svg {
    width: 17px;
    height: 17px;
  }
}
