* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  min-width: 320px;
  margin: 0;
  padding: 0;
}

body {
  overflow-x: hidden;
  background: #ffffff;
  color: #121316;
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

button {
  font: inherit;
}


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

:root {
  --dc-header-height: clamp(96px, 7vw, 116px);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top:
    calc(var(--dc-header-height) + 18px);
}

section[id],
footer[id] {
  scroll-margin-top:
    calc(var(--dc-header-height) + 18px);
}

body.dc-menu-open {
  overflow: hidden;
}

.dc-header {
  position: sticky;
  top: 0;
  z-index: 900;

  width: 100%;
  height: var(--dc-header-height);

  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(24, 24, 24, 0.055);

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

.dc-header.is-scrolled,
.dc-header.is-menu-open {
  border-bottom-color: rgba(24, 24, 24, 0.08);

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

  box-shadow:
    0 12px 34px rgba(24, 24, 24, 0.075);
}

.dc-header__inner {
  position: relative;
  z-index: 5;

  width: 100%;
  height: 100%;
  padding: 0 3.7vw;

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


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

.dc-header__brand {
  display: inline-flex;
  align-items: center;
  gap: clamp(14px, 1vw, 18px);

  flex: 0 0 auto;
}

.dc-header__brand-mark {
  width: clamp(52px, 3.4vw, 59px);
  height: clamp(52px, 3.4vw, 59px);

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

  flex: 0 0 auto;

  border-radius: 50%;
  background: #f7b800;

  color: #0b0b0b;
  font-size: clamp(20px, 1.3vw, 23px);
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.8px;

  box-shadow:
    0 12px 27px rgba(234, 174, 0, 0.22);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.dc-header__brand:hover
.dc-header__brand-mark,
.dc-header__brand:focus-visible
.dc-header__brand-mark {
  transform: rotate(-4deg) scale(1.04);

  box-shadow:
    0 15px 31px rgba(234, 174, 0, 0.3);
}

.dc-header__brand:focus-visible {
  outline: none;
}

.dc-header__brand-name {
  color: #171717;
  font-size: clamp(23px, 1.55vw, 28px);
  line-height: 1;
  font-weight: 500;
  letter-spacing: -0.8px;
  white-space: nowrap;
}


/* =========================================================
   DESKTOP NAVIGATION
   ========================================================= */

.dc-header__desktop-nav {
  position: absolute;
  top: 50%;
  left: 53%;

  display: flex;
  align-items: center;
  gap: clamp(31px, 2.6vw, 53px);

  transform: translate(-50%, -50%);
}

.dc-header__desktop-nav a {
  position: relative;

  padding: 13px 0;

  color: #292929;
  font-size: clamp(14px, 0.92vw, 17px);
  line-height: 1;
  font-weight: 550;
  letter-spacing: -0.2px;
  white-space: nowrap;

  transition: color 0.22s ease;
}

.dc-header__desktop-nav a::after {
  content: "";

  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;

  height: 2px;

  border-radius: 999px;
  background: #efad00;

  transform: scaleX(0);
  transform-origin: right center;

  transition:
    transform 0.25s ease;
}

.dc-header__desktop-nav a:hover,
.dc-header__desktop-nav a:focus-visible,
.dc-header__desktop-nav a.is-active {
  color: #b57d00;
}

.dc-header__desktop-nav a:hover::after,
.dc-header__desktop-nav a:focus-visible::after,
.dc-header__desktop-nav a.is-active::after {
  transform: scaleX(1);
  transform-origin: left center;
}

.dc-header__desktop-nav a:focus-visible {
  outline: none;
}


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

.dc-header__actions {
  display: flex;
  align-items: center;
  gap: 14px;

  flex: 0 0 auto;
}

.dc-header__project-button {
  width: clamp(215px, 13.8vw, 240px);
  height: clamp(56px, 3.7vw, 62px);
  padding: 0 20px;

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

  border-radius: 15px;
  background: #f7b800;

  color: #111111;
  font-size: clamp(15px, 0.95vw, 17px);
  line-height: 1;
  font-weight: 650;
  white-space: nowrap;

  box-shadow:
    0 15px 34px rgba(235, 174, 0, 0.21);

  transition:
    transform 0.24s ease,
    background 0.24s ease,
    box-shadow 0.24s ease;
}

.dc-header__project-button b {
  font-size: 25px;
  line-height: 1;
  font-weight: 400;

  transition: transform 0.24s ease;
}

.dc-header__project-button:hover,
.dc-header__project-button:focus-visible {
  transform: translateY(-3px);

  background: #ffc52a;

  box-shadow:
    0 18px 39px rgba(235, 174, 0, 0.29);

  outline: none;
}

.dc-header__project-button:hover b,
.dc-header__project-button:focus-visible b {
  transform: translateX(5px);
}


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

.dc-header__toggle {
  position: relative;
  z-index: 12;

  width: 52px;
  height: 52px;
  padding: 0;

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

  border: 1px solid rgba(24, 24, 24, 0.08);
  border-radius: 14px;
  background: #ffffff;

  box-shadow:
    0 8px 22px rgba(24, 24, 24, 0.075);

  cursor: pointer;

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

.dc-header__toggle:hover,
.dc-header__toggle:focus-visible {
  transform: translateY(-2px);

  border-color: rgba(239, 173, 0, 0.4);
  background: #fffaf0;

  outline: none;
}

.dc-header__toggle span {
  position: absolute;
  left: 50%;

  width: 24px;
  height: 2px;

  border-radius: 999px;
  background: #171717;

  transform: translateX(-50%);

  transition:
    top 0.28s ease,
    transform 0.28s ease,
    opacity 0.2s ease;
}

.dc-header__toggle span:nth-child(1) {
  top: 17px;
}

.dc-header__toggle span:nth-child(2) {
  top: 24px;
}

.dc-header__toggle span:nth-child(3) {
  top: 31px;
}

.dc-header.is-menu-open
.dc-header__toggle span:nth-child(1) {
  top: 24px;

  transform:
    translateX(-50%)
    rotate(45deg);
}

.dc-header.is-menu-open
.dc-header__toggle span:nth-child(2) {
  opacity: 0;

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

.dc-header.is-menu-open
.dc-header__toggle span:nth-child(3) {
  top: 24px;

  transform:
    translateX(-50%)
    rotate(-45deg);
}


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

.dc-header__backdrop,
.dc-header__mobile-menu {
  display: none;
}

@media (max-width: 1180px) {
  :root {
    --dc-header-height: 92px;
  }

  .dc-header__inner {
    padding: 0 24px;
  }

  .dc-header__brand {
    gap: 12px;
  }

  .dc-header__brand-mark {
    width: 48px;
    height: 48px;

    font-size: 18px;
  }

  .dc-header__brand-name {
    font-size: 22px;
  }

  .dc-header__desktop-nav {
    display: none;
  }

  .dc-header__project-button {
    width: 192px;
    height: 54px;
    padding: 0 18px;

    border-radius: 12px;

    font-size: 15px;
  }

  .dc-header__toggle {
    display: flex;
  }

  .dc-header__backdrop {
    position: fixed;
    top: var(--dc-header-height);
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;

    display: block;

    background: rgba(18, 18, 18, 0.38);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition:
      opacity 0.3s ease,
      visibility 0.3s ease;
  }

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

  .dc-header__mobile-menu {
    position: fixed;
    top: calc(var(--dc-header-height) + 10px);
    right: 12px;
    z-index: 4;

    width: min(430px, calc(100vw - 24px));
    max-height:
      calc(100svh - var(--dc-header-height) - 22px);
    padding: 25px;

    display: flex;
    flex-direction: column;

    overflow-x: hidden;
    overflow-y: auto;

    border: 1px solid rgba(24, 24, 24, 0.07);
    border-radius: 24px;
    background: #ffffff;

    box-shadow:
      0 26px 70px rgba(18, 18, 18, 0.19);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transform:
      translateY(-18px)
      scale(0.975);

    transform-origin: top right;

    transition:
      opacity 0.3s ease,
      visibility 0.3s ease,
      transform 0.34s cubic-bezier(0.22, 1, 0.36, 1);
  }

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

    transform:
      translateY(0)
      scale(1);
  }

  .dc-header__mobile-head {
    padding-bottom: 21px;

    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;

    border-bottom: 1px solid rgba(24, 24, 24, 0.08);
  }

  .dc-header__mobile-head > div {
    display: flex;
    flex-direction: column;
    gap: 7px;
  }

  .dc-header__mobile-head > div > span {
    color: #d99700;
    font-size: 10px;
    line-height: 1;
    font-weight: 750;
    letter-spacing: 0.2em;
    text-transform: uppercase;
  }

  .dc-header__mobile-head strong {
    color: #181818;
    font-size: 21px;
    line-height: 1.2;
    font-weight: 620;
    letter-spacing: -0.03em;
  }

  .dc-header__mobile-status {
    padding: 8px 11px;

    border-radius: 999px;
    background: #fff6d8;

    color: #7a5a00;
    font-size: 11px;
    line-height: 1;
    font-weight: 650;
    white-space: nowrap;
  }

  .dc-header__mobile-nav {
    margin-top: 11px;

    display: flex;
    flex-direction: column;
  }

  .dc-header__mobile-nav a {
    min-height: 65px;
    padding: 0 7px;

    display: grid;
    grid-template-columns: 35px minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;

    border-bottom: 1px solid rgba(24, 24, 24, 0.07);
    border-radius: 11px;

    transition:
      padding 0.22s ease,
      background 0.22s ease,
      color 0.22s ease;
  }

  .dc-header__mobile-nav a:hover,
  .dc-header__mobile-nav a:focus-visible,
  .dc-header__mobile-nav a.is-active {
    padding-right: 13px;
    padding-left: 13px;

    background: #fff8df;
    color: #9a6c00;

    outline: none;
  }

  .dc-header__mobile-number {
    color: #d49a00;
    font-size: 11px;
    line-height: 1;
    font-weight: 750;
    letter-spacing: 0.08em;
  }

  .dc-header__mobile-label {
    color: #1b1b1b;
    font-size: 18px;
    line-height: 1;
    font-weight: 600;
    letter-spacing: -0.025em;
  }

  .dc-header__mobile-nav b {
    color: #d99b00;
    font-size: 23px;
    line-height: 1;
    font-weight: 400;

    transition: transform 0.22s ease;
  }

  .dc-header__mobile-nav a:hover b,
  .dc-header__mobile-nav a:focus-visible b {
    transform: translateX(5px);
  }

  .dc-header__mobile-bottom {
    padding-top: 23px;
  }

  .dc-header__mobile-cta {
    width: 100%;
    min-height: 59px;
    padding: 0 20px;

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

    border-radius: 14px;
    background: #f7b500;

    color: #161616;
    font-size: 15px;
    line-height: 1.2;
    font-weight: 670;

    box-shadow:
      0 14px 30px rgba(235, 174, 0, 0.2);

    transition:
      transform 0.22s ease,
      background 0.22s ease,
      box-shadow 0.22s ease;
  }

  .dc-header__mobile-cta:hover,
  .dc-header__mobile-cta:focus-visible {
    transform: translateY(-2px);

    background: #ffc52a;

    box-shadow:
      0 17px 35px rgba(235, 174, 0, 0.28);

    outline: none;
  }

  .dc-header__mobile-cta b {
    font-size: 25px;
    line-height: 1;
    font-weight: 400;
  }

  .dc-header__mobile-contact {
    margin-top: 18px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
  }

  .dc-header__mobile-contact a {
    color: #656565;
    font-size: 12px;
    line-height: 1.35;
    font-weight: 500;

    transition: color 0.2s ease;
  }

  .dc-header__mobile-contact a:hover,
  .dc-header__mobile-contact a:focus-visible {
    color: #c48b00;
    outline: none;
  }
}


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

@media (max-width: 620px) {
  :root {
    --dc-header-height: 78px;
  }

  .dc-header__inner {
    padding: 0 16px;
  }

  .dc-header__brand {
    gap: 9px;
  }

  .dc-header__brand-mark {
    width: 44px;
    height: 44px;

    font-size: 16px;
  }

  .dc-header__brand-name {
    font-size: 17px;
    letter-spacing: -0.5px;
  }

  .dc-header__project-button {
    display: none;
  }

  .dc-header__actions {
    gap: 0;
  }

  .dc-header__toggle {
    width: 48px;
    height: 48px;

    border-radius: 13px;
  }

  .dc-header__toggle span:nth-child(1) {
    top: 15px;
  }

  .dc-header__toggle span:nth-child(2) {
    top: 22px;
  }

  .dc-header__toggle span:nth-child(3) {
    top: 29px;
  }

  .dc-header.is-menu-open
  .dc-header__toggle span:nth-child(1),
  .dc-header.is-menu-open
  .dc-header__toggle span:nth-child(3) {
    top: 22px;
  }

  .dc-header__mobile-menu {
    top: calc(var(--dc-header-height) + 8px);
    right: 8px;

    width: calc(100vw - 16px);
    max-height:
      calc(100svh - var(--dc-header-height) - 16px);
    padding: 21px 18px;

    border-radius: 21px;
  }

  .dc-header__mobile-head {
    padding-bottom: 18px;
  }

  .dc-header__mobile-head strong {
    font-size: 19px;
  }

  .dc-header__mobile-status {
    padding: 7px 9px;

    font-size: 10px;
  }

  .dc-header__mobile-nav {
    margin-top: 8px;
  }

  .dc-header__mobile-nav a {
    min-height: 61px;
  }

  .dc-header__mobile-label {
    font-size: 17px;
  }

  .dc-header__mobile-bottom {
    padding-top: 19px;
  }

  .dc-header__mobile-cta {
    min-height: 57px;
    padding: 0 17px;

    font-size: 14px;
  }

  .dc-header__mobile-contact {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }

  .dc-header__mobile-contact a {
    font-size: 12px;
  }
}


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

@media (max-width: 390px) {
  .dc-header__inner {
    padding: 0 13px;
  }

  .dc-header__brand {
    gap: 7px;
  }

  .dc-header__brand-mark {
    width: 41px;
    height: 41px;

    font-size: 15px;
  }

  .dc-header__brand-name {
    font-size: 15px;
  }

  .dc-header__toggle {
    width: 45px;
    height: 45px;
  }

  .dc-header__mobile-menu {
    padding-right: 16px;
    padding-left: 16px;
  }

  .dc-header__mobile-status {
    display: none;
  }
}


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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .dc-header,
  .dc-header__brand-mark,
  .dc-header__desktop-nav a,
  .dc-header__desktop-nav a::after,
  .dc-header__project-button,
  .dc-header__project-button b,
  .dc-header__toggle,
  .dc-header__toggle span,
  .dc-header__backdrop,
  .dc-header__mobile-menu,
  .dc-header__mobile-nav a,
  .dc-header__mobile-nav b,
  .dc-header__mobile-cta {
    animation: none !important;
    transition: none !important;
  }
}


/* =========================================================
   SCROLL TO TOP
   ========================================================= */

.dc-scroll-top {
  position: fixed;
  right: clamp(18px, 2vw, 38px);
  bottom: clamp(18px, 2vw, 38px);
  z-index: 850;

  width: clamp(52px, 3.5vw, 68px);
  height: clamp(52px, 3.5vw, 68px);
  padding: 0;

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

  border: 1px solid rgba(225, 162, 0, 0.26);
  border-radius: clamp(15px, 1vw, 20px);
  background: rgba(255, 255, 255, 0.96);

  color: #171717;

  box-shadow:
    0 14px 35px rgba(25, 25, 25, 0.13),
    0 5px 14px rgba(235, 174, 0, 0.1);

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transform:
    translateY(18px)
    scale(0.92);

  cursor: pointer;

  transition:
    opacity 0.3s ease,
    visibility 0.3s ease,
    transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease;
}

.dc-scroll-top::before {
  content: "";

  position: absolute;
  inset: 6px;

  border-radius: calc(clamp(15px, 1vw, 20px) - 5px);
  background: #f7b500;

  transition:
    background 0.22s ease,
    transform 0.22s ease;
}

.dc-scroll-top svg {
  position: relative;
  z-index: 2;

  width: 45%;
  height: 45%;

  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;

  transition: transform 0.22s ease;
}

.dc-scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;

  transform:
    translateY(0)
    scale(1);
}

.dc-scroll-top:hover,
.dc-scroll-top:focus-visible {
  transform:
    translateY(-4px)
    scale(1.03);

  border-color: rgba(225, 162, 0, 0.48);

  box-shadow:
    0 19px 42px rgba(25, 25, 25, 0.16),
    0 8px 20px rgba(235, 174, 0, 0.18);

  outline: none;
}

.dc-scroll-top:hover::before,
.dc-scroll-top:focus-visible::before {
  background: #ffc52a;
  transform: scale(1.03);
}

.dc-scroll-top:hover svg,
.dc-scroll-top:focus-visible svg {
  transform: translateY(-3px);
}

body.dc-menu-open .dc-scroll-top {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}


/* =========================================================
   SCROLL TO TOP — MOBILE
   ========================================================= */

@media (max-width: 620px) {
  .dc-scroll-top {
    right: 16px;
    bottom: 16px;

    width: 52px;
    height: 52px;

    border-radius: 15px;
  }

  .dc-scroll-top::before {
    inset: 5px;
    border-radius: 11px;
  }
}


/* =========================================================
   SCROLL TO TOP — REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
  .dc-scroll-top,
  .dc-scroll-top::before,
  .dc-scroll-top svg {
    transition: none !important;
  }
}


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

.hero {
  position: relative;

  width: 100%;
  min-height: calc(100svh - clamp(96px, 7vw, 116px));

  overflow: hidden;

  background:
    radial-gradient(
      circle at 80% 46%,
      rgba(255, 211, 61, 0.25) 0%,
      rgba(255, 211, 61, 0.11) 22%,
      rgba(255, 255, 255, 0) 44%
    ),
    linear-gradient(
      90deg,
      #fbfaf7 0%,
      #fbfaf7 36%,
      #faf7ee 100%
    );
}

.hero::after {
  content: "";

  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;

  height: 95px;

  background: linear-gradient(
    180deg,
    rgba(248, 247, 242, 0) 0%,
    rgba(222, 222, 216, 0.56) 100%
  );

  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;

  width: 100%;
  min-height: calc(100svh - clamp(96px, 7vw, 116px));
  padding:
    clamp(58px, 4vw, 76px)
    3.7vw
    42px;

  display: grid;
  grid-template-columns: 39% 61%;
  grid-template-rows: max-content max-content;
  column-gap: 0;
  row-gap: clamp(38px, 2.8vw, 50px);

  align-content: start;
  align-items: start;
}


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

.hero-left {
  grid-column: 1;
  grid-row: 1;

  width: 100%;
  padding-right: 20px;
}

.eyebrow {
  margin: 0 0 clamp(28px, 2vw, 35px);

  color: #705a36;
  font-size: clamp(12px, 0.78vw, 14px);
  line-height: 1.25;
  font-weight: 600;
  letter-spacing: 2px;
  white-space: nowrap;
}

.hero-left h1 {
  margin: 0;

  color: #111216;
  font-size: clamp(68px, 4.85vw, 91px);
  line-height: 0.99;
  font-weight: 600;
  letter-spacing: -3.8px;
}

.hero-left h1 span {
  color: #efb000;
}

.hero-text {
  margin: clamp(27px, 1.8vw, 33px) 0 0;

  color: #5f5c59;
  font-size: clamp(19px, 1.3vw, 24px);
  line-height: 1.48;
  font-weight: 400;
  letter-spacing: -0.2px;
}

.hero-actions {
  margin-top: clamp(30px, 2.2vw, 39px);

  display: flex;
  align-items: center;
  gap: clamp(18px, 1.45vw, 25px);
}

.primary-btn,
.secondary-btn {
  height: clamp(58px, 3.7vw, 66px);

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

  border-radius: 12px;

  font-size: clamp(14px, 0.92vw, 16px);
  line-height: 1;
  font-weight: 650;
  letter-spacing: -0.15px;
  white-space: nowrap;
}

.primary-btn {
  width: clamp(330px, 20vw, 382px);
  gap: 15px;

  background: #f7b800;
  color: #171717;

  box-shadow: 0 15px 30px rgba(235, 174, 0, 0.17);
}

.secondary-btn {
  width: clamp(195px, 12vw, 225px);
  gap: 15px;

  border: 2px solid #a2a2a2;
  background: rgba(255, 255, 255, 0.7);
  color: #252525;
}

.primary-btn img {
  width: clamp(27px, 1.55vw, 30px);
  height: clamp(27px, 1.55vw, 30px);
  object-fit: contain;
}

.secondary-btn img {
  width: clamp(29px, 1.7vw, 33px);
  height: clamp(29px, 1.7vw, 33px);
  object-fit: contain;
}


/* =========================================================
   BENEFITS — СРАЗУ ПОД КНОПКАМИ
   ========================================================= */

.hero-benefits {
  grid-column: 1;
  grid-row: 2;

  width: 100%;

  display: flex;
  align-items: center;
}

.benefit {
  min-height: 67px;
  padding-right: clamp(24px, 1.8vw, 34px);
  margin-right: clamp(21px, 1.55vw, 28px);

  display: flex;
  align-items: center;
  gap: clamp(13px, 0.85vw, 16px);

  border-right: 1px solid rgba(28, 28, 28, 0.13);
}

.benefit:last-child {
  padding-right: 0;
  margin-right: 0;
  border-right: 0;
}

.benefit-icon {
  width: clamp(55px, 3.45vw, 66px);
  height: clamp(55px, 3.45vw, 66px);

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

  flex: 0 0 auto;

  border-radius: 50%;
  background: rgba(255, 255, 255, 0.87);

  box-shadow:
    0 5px 16px rgba(79, 65, 31, 0.08),
    inset 0 0 0 1px rgba(210, 198, 171, 0.22);
}

.benefit-icon img {
  width: 68%;
  height: 68%;
  object-fit: contain;
}

.benefit-text {
  color: #313131;
  font-size: clamp(13px, 0.83vw, 15px);
  line-height: 1.17;
  font-weight: 600;
  letter-spacing: -0.15px;
}


/* =========================================================
   RIGHT VISUAL
   ========================================================= */

.hero-right {
  grid-column: 2;
  grid-row: 1 / span 2;

  width: 100%;

  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.hero-compare {
  position: relative;

  width: 100%;
  height: 620px;
}

.compare-item {
  position: absolute;

  display: flex;
  flex-direction: column;
  align-items: center;
}

.compare-old {
  top: 0;
  left: -3%;

  width: 57%;
}

.compare-new {
  top: 18px;
  right: -1%;

  width: 59%;
}

.old-dino,
.new-card {
  display: block;

  width: 100%;
  height: auto;

  object-fit: contain;
}

.old-dino {
  filter: drop-shadow(
    0 24px 32px rgba(122, 89, 45, 0.16)
  );
}

.new-card {
  filter: drop-shadow(
    0 30px 44px rgba(92, 73, 40, 0.17)
  );
}


/* =========================================================
   ARROW — НАСТОЯЩАЯ КАРТИНКА МЕЖДУ ОБЪЕКТАМИ
   ========================================================= */

.arrow-glow {
  position: absolute;
  top: 52%;
  left: 35.5%;
  z-index: 12;

  width: clamp(460px, 27vw, 540px);
  height: auto;

  transform: translate(-50%, -50%);
  object-fit: contain;
  pointer-events: none;
}


/* =========================================================
   TAGS — ПРЯМО ПОД КАРТИНКАМИ
   ========================================================= */

.tag {
  min-width: 118px;
  height: 37px;
  margin-top: 30px;
  padding: 0 28px;

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

  border-radius: 999px;

  font-size: 15px;
  line-height: 1;
  font-weight: 600;
  white-space: nowrap;
}

.tag-old {
  color: #6d6559;
  background: rgba(222, 219, 211, 0.82);
}

.tag-new {
  color: #bd8500;
  background: rgba(255, 222, 135, 0.52);
}


/* =========================================================
   RELAUNCH HERO - SECOND SCREEN
   ========================================================= */

.relaunch-hero {
  position: relative;

  width: 100%;
  min-height: 100svh;
  overflow: hidden;

  background:
    radial-gradient(
      circle at 77% 45%,
      rgba(248, 187, 0, 0.18) 0%,
      rgba(248, 187, 0, 0.07) 23%,
      rgba(248, 187, 0, 0) 48%
    ),
    linear-gradient(
      90deg,
      #ffffff 0%,
      #fffefb 43%,
      #fffaf0 100%
    );
}

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

  position: absolute;
  top: 12%;
  right: -11%;

  width: 45vw;
  height: 45vw;

  border: 1px solid rgba(237, 169, 0, 0.08);
  border-radius: 50%;

  pointer-events: none;
}

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

  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;

  height: clamp(55px, 5vw, 120px);

  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(222, 221, 215, 0.51) 100%
    );

  pointer-events: none;
}

.relaunch-hero__inner {
  position: relative;
  z-index: 2;

  width: 100%;
  min-height: 100svh;
  padding:
    clamp(52px, 4vw, 96px)
    3.7vw
    clamp(48px, 3.5vw, 84px);

  display: grid;
  grid-template-columns:
    minmax(0, 40.5%)
    minmax(0, 59.5%);

  align-items: center;
}


/* =========================================================
   RELAUNCH HERO - LEFT
   ========================================================= */

.relaunch-hero__left {
  position: relative;
  z-index: 7;

  min-width: 0;
  padding-right: clamp(22px, 2vw, 50px);
}

.relaunch-hero__content {
  min-width: 0;
}

.relaunch-hero__kicker {
  margin-bottom: clamp(25px, 1.9vw, 46px);

  color: #8b6820;
  font-size: clamp(10px, 0.72vw, 17px);
  line-height: 1;
  font-weight: 730;
  letter-spacing: 0.18em;
}

.relaunch-hero__content h2 {
  margin: 0;

  color: #111216;
  font-size: clamp(58px, 4.25vw, 102px);
  line-height: 0.99;
  font-weight: 620;
  letter-spacing: -0.052em;
}

.relaunch-hero__title-line {
  display: block;
}

.relaunch-hero__title-line--accent {
  color: #efac00;
}

.relaunch-hero__text {
  width: min(95%, 790px);
  margin: clamp(26px, 1.8vw, 43px) 0 0;

  color: #595959;
  font-size: clamp(16px, 1.15vw, 27px);
  line-height: 1.53;
  font-weight: 400;
  letter-spacing: -0.012em;
}


/* =========================================================
   RELAUNCH HERO - BUTTONS
   ========================================================= */

.relaunch-hero__actions {
  margin-top: clamp(28px, 2.1vw, 50px);

  display: flex;
  align-items: center;
  gap: clamp(15px, 1.15vw, 28px);
}

.relaunch-hero__button {
  min-height: clamp(56px, 3.65vw, 88px);
  padding:
    0
    clamp(18px, 1.35vw, 33px);

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 0.85vw, 20px);

  border-radius: clamp(10px, 0.72vw, 17px);

  font-size: clamp(13px, 0.86vw, 21px);
  line-height: 1;
  font-weight: 670;
  white-space: nowrap;

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

.relaunch-hero__button img {
  width: clamp(25px, 1.55vw, 38px);
  height: clamp(25px, 1.55vw, 38px);

  display: block;
  flex: 0 0 auto;
  object-fit: contain;
}

.relaunch-hero__button--primary {
  min-width: clamp(295px, 20.2vw, 485px);

  justify-content: space-between;

  background: #f7b600;
  color: #151515;

  box-shadow:
    0 1vw 2.2vw rgba(231, 169, 0, 0.2);
}

.relaunch-hero__button--secondary {
  min-width: clamp(190px, 12.3vw, 295px);

  border: 1.5px solid rgba(31, 31, 31, 0.44);
  background: rgba(255, 255, 255, 0.88);
  color: #242424;
}

.relaunch-hero__button b {
  font-size: clamp(20px, 1.3vw, 32px);
  line-height: 1;
  font-weight: 400;

  transition: transform 0.25s ease;
}

.relaunch-hero__button:hover,
.relaunch-hero__button:focus-visible {
  transform: translateY(-3px);
  outline: none;
}

.relaunch-hero__button--primary:hover,
.relaunch-hero__button--primary:focus-visible {
  background: #ffc62c;

  box-shadow:
    0 1.25vw 2.8vw rgba(231, 169, 0, 0.29);
}

.relaunch-hero__button--secondary:hover,
.relaunch-hero__button--secondary:focus-visible {
  border-color: #e5a300;
  background: #fffaf0;

  box-shadow:
    0 0.9vw 2vw rgba(36, 36, 36, 0.08);
}

.relaunch-hero__button:hover b {
  transform: translateX(5px);
}


/* =========================================================
   RELAUNCH HERO - BENEFITS
   ========================================================= */

.relaunch-hero__benefits-shell {
  width: 100%;
  margin-top: clamp(30px, 2.35vw, 56px);
}

.relaunch-hero__benefits {
  width: 100%;

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

.relaunch-hero__benefit {
  min-width: 0;
  min-height: clamp(64px, 4.5vw, 108px);
  padding: 0 clamp(13px, 1.05vw, 25px);

  display: flex;
  align-items: center;
  gap: clamp(11px, 0.8vw, 19px);

  border-right: 1px solid rgba(28, 28, 28, 0.11);
}

.relaunch-hero__benefit:first-child {
  padding-left: 0;
}

.relaunch-hero__benefit:last-child {
  padding-right: 0;
  border-right: 0;
}

.relaunch-hero__benefit-icon {
  width: clamp(48px, 3.2vw, 77px);
  height: clamp(48px, 3.2vw, 77px);

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

  flex: 0 0 auto;

  border: 1px solid rgba(232, 167, 0, 0.14);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);

  box-shadow:
    0 8px 22px rgba(101, 75, 22, 0.07);
}

.relaunch-hero__benefit-icon img {
  width: 100%;
  height: 100%;

  display: block;
  object-fit: contain;
}

.relaunch-hero__benefit > div:last-child {
  min-width: 0;

  display: flex;
  flex-direction: column;
  gap: 4px;
}

.relaunch-hero__benefit strong,
.relaunch-hero__benefit span {
  color: #343434;
  font-size: clamp(12px, 0.78vw, 19px);
  line-height: 1.2;
  font-weight: 620;
}

.relaunch-hero__benefit span {
  color: #575757;
  font-weight: 500;
}

.relaunch-hero__benefit-tools {
  display: none;
}


/* =========================================================
   RELAUNCH HERO - VISUAL
   ========================================================= */

.relaunch-hero__visual {
  position: relative;
  z-index: 3;

  min-width: 0;
}

.relaunch-hero__stage {
  position: relative;

  width: 100%;
  height: clamp(620px, 42vw, 920px);

  isolation: isolate;
}

.relaunch-hero__project {
  position: absolute;
  z-index: 3;

  margin: 0;

  display: flex;
  flex-direction: column;
  align-items: center;
}

.relaunch-hero__project img {
  width: 100%;
  height: auto;

  display: block;
  object-fit: contain;
}

.relaunch-hero__project--old {
  top: 2%;
  left: -1.5%;

  width: 59%;
}

.relaunch-hero__project--new {
  top: 4%;
  right: -1.5%;
  z-index: 4;

  width: 62%;
}

.relaunch-hero__project figcaption {
  min-width: clamp(110px, 7.2vw, 173px);
  min-height: clamp(34px, 2.3vw, 55px);
  margin-top: clamp(11px, 0.8vw, 19px);
  padding: 0 clamp(17px, 1.1vw, 26px);

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

  border-radius: 999px;

  font-size: clamp(12px, 0.78vw, 19px);
  line-height: 1;
  font-weight: 620;
}

.relaunch-hero__project--old figcaption {
  background: rgba(225, 222, 214, 0.85);
  color: #686158;
}

.relaunch-hero__project--new figcaption {
  background: rgba(255, 224, 139, 0.56);
  color: #b77d00;
}

.relaunch-hero__arrow {
  position: absolute;
  top: 54%;
  left: 40.5%;
  z-index: 8;

  width: clamp(420px, 26vw, 650px);
  max-width: none;
  height: auto;

  display: block;
  object-fit: contain;

  transform: translate(-50%, -50%);

  pointer-events: none;
}


/* =========================================================
   RELAUNCH HERO - ANIMATIONS
   ========================================================= */

.relaunch-hero.relaunch-animations-ready
[data-relaunch-reveal] {
  opacity: 0;
  transform: translateY(34px);
}

.relaunch-hero.relaunch-animations-ready
[data-relaunch-reveal="content"] {
  transform: translateX(-42px);
}

.relaunch-hero.relaunch-animations-ready
[data-relaunch-reveal="visual"] {
  transform: translateX(45px);
}

.relaunch-hero.relaunch-animations-ready.is-visible
[data-relaunch-reveal] {
  opacity: 1;
  transform: translate(0, 0);

  transition:
    opacity 0.78s ease,
    transform 0.78s cubic-bezier(0.22, 1, 0.36, 1);
}

.relaunch-hero.is-visible
[data-relaunch-reveal="visual"] {
  transition-delay: 0.12s;
}

.relaunch-hero.is-visible
[data-relaunch-reveal="benefits"] {
  transition-delay: 0.25s;
}

.relaunch-hero.is-visible
.relaunch-hero__project--old img {
  animation:
    relaunch-old-float 7s ease-in-out infinite alternate;
}

.relaunch-hero.is-visible
.relaunch-hero__project--new img {
  animation:
    relaunch-new-float 6.3s -1.4s ease-in-out infinite alternate;
}

.relaunch-hero.is-visible
.relaunch-hero__arrow {
  animation:
    relaunch-arrow-light 2.8s ease-in-out infinite alternate;
}

@keyframes relaunch-old-float {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-6px);
  }
}

@keyframes relaunch-new-float {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-5px);
  }
}

@keyframes relaunch-arrow-light {
  from {
    opacity: 0.78;
  }

  to {
    opacity: 1;
  }
}


/* =========================================================
   RELAUNCH HERO - MEDIUM DESKTOP
   ========================================================= */

@media (max-width: 1500px) and (min-width: 1181px) {
  .relaunch-hero__inner {
    padding:
      46px
      40px
      44px;

    grid-template-columns:
      minmax(0, 41%)
      minmax(0, 59%);
  }

  .relaunch-hero__left {
    padding-right: 24px;
  }

  .relaunch-hero__content h2 {
    font-size: clamp(58px, 4.3vw, 66px);
  }

  .relaunch-hero__text {
    font-size: 17px;
  }

  .relaunch-hero__button {
    min-height: 58px;

    font-size: 14px;
  }

  .relaunch-hero__button--primary {
    min-width: 315px;
  }

  .relaunch-hero__button--secondary {
    min-width: 190px;
  }

  .relaunch-hero__benefit-icon {
    width: 52px;
    height: 52px;
  }

  .relaunch-hero__benefit strong,
  .relaunch-hero__benefit span {
    font-size: 12px;
  }

  .relaunch-hero__stage {
    height: 640px;
  }

  .relaunch-hero__project--old {
    left: -3%;

    width: 59%;
  }

  .relaunch-hero__project--new {
    right: -2%;

    width: 62%;
  }

  .relaunch-hero__arrow {
    left: 40%;

    width: 430px;
  }
}


/* =========================================================
   RELAUNCH HERO - 1180
   ========================================================= */

@media (max-width: 1180px) {
  .relaunch-hero {
    min-height: 0;
  }

  .relaunch-hero__inner {
    min-height: 0;
    padding: 64px 32px 54px;

    grid-template-columns: 1fr;
    align-items: start;
    gap: 42px;
  }

  .relaunch-hero__left {
    width: 100%;
    max-width: 1000px;
    padding-right: 0;
  }

  .relaunch-hero__content h2 {
    font-size: clamp(58px, 6.8vw, 76px);
  }

  .relaunch-hero__text {
    width: 100%;
    max-width: 830px;

    font-size: 18px;
  }

  .relaunch-hero__actions {
    margin-top: 30px;
  }

  .relaunch-hero__button {
    min-height: 61px;

    font-size: 15px;
  }

  .relaunch-hero__benefits-shell {
    max-width: 850px;
    margin-top: 37px;
  }

  .relaunch-hero__benefit {
    min-height: 75px;
  }

  .relaunch-hero__benefit-icon {
    width: 57px;
    height: 57px;
  }

  .relaunch-hero__benefit strong,
  .relaunch-hero__benefit span {
    font-size: 14px;
  }

  .relaunch-hero__visual {
    width: 100%;
  }

  .relaunch-hero__stage {
    height: clamp(610px, 69vw, 760px);
  }

  .relaunch-hero__project--old {
    left: 0;

    width: 58%;
  }

  .relaunch-hero__project--new {
    right: 0;

    width: 61%;
  }

  .relaunch-hero__arrow {
    left: 41%;

    width: clamp(390px, 46vw, 540px);
  }
}


/* =========================================================
   RELAUNCH HERO - 900
   ========================================================= */

@media (max-width: 900px) {
  .relaunch-hero__inner {
    padding: 56px 24px 48px;
    gap: 36px;
  }

  .relaunch-hero__content h2 {
    font-size: clamp(51px, 7.5vw, 64px);
  }

  .relaunch-hero__text {
    font-size: 17px;
  }

  .relaunch-hero__stage {
    height: clamp(520px, 69vw, 620px);
  }

  .relaunch-hero__project--old {
    top: 2%;
    left: -2%;

    width: 59%;
  }

  .relaunch-hero__project--new {
    top: 4%;
    right: -2%;

    width: 62%;
  }

  .relaunch-hero__arrow {
    left: 40%;

    width: clamp(330px, 47vw, 430px);
  }
}


/* =========================================================
   RELAUNCH HERO - MOBILE
   ========================================================= */

@media (max-width: 620px) {
  .relaunch-hero::before {
    display: none;
  }

  .relaunch-hero__inner {
    padding: 48px 18px 43px;
    gap: 33px;
  }

  .relaunch-hero__kicker {
    margin-bottom: 20px;

    font-size: 10px;
    line-height: 1.35;
    letter-spacing: 0.18em;
  }

  .relaunch-hero__content h2 {
    font-size: clamp(40px, 11vw, 48px);
    line-height: 1.02;
    letter-spacing: -0.047em;
  }

  .relaunch-hero__text {
    margin-top: 23px;

    font-size: 16.5px;
    line-height: 1.54;
  }

  .relaunch-hero__actions {
    margin-top: 26px;

    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .relaunch-hero__button,
  .relaunch-hero__button--primary,
  .relaunch-hero__button--secondary {
    width: 100%;
    min-width: 0;
    min-height: 60px;

    font-size: 14px;
  }


  /* BENEFITS MOBILE SLIDER */

  .relaunch-hero__benefits-shell {
    width: calc(100% + 18px);
    max-width: none;
    margin-top: 29px;
  }

  .relaunch-hero__benefits {
    width: 100%;
    padding:
      3px
      58px
      22px
      0;

    display: flex;
    gap: 13px;

    overflow-x: auto;
    overflow-y: visible;

    scroll-snap-type: x mandatory;
    scroll-padding-left: 0;
    overscroll-behavior-inline: contain;

    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .relaunch-hero__benefits::-webkit-scrollbar {
    display: none;
  }

  .relaunch-hero__benefit,
  .relaunch-hero__benefit:first-child,
  .relaunch-hero__benefit:last-child {
    width: calc(100vw - 93px);
    min-height: 92px;
    padding: 15px 17px;

    flex: 0 0 calc(100vw - 93px);

    border: 1px solid rgba(229, 164, 0, 0.13);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.95);

    box-shadow:
      0 11px 27px rgba(45, 42, 32, 0.06);

    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .relaunch-hero__benefit-icon {
    width: 57px;
    height: 57px;
  }

  .relaunch-hero__benefit strong,
  .relaunch-hero__benefit span {
    font-size: 15px;
  }

  .relaunch-hero__benefit-tools {
    padding-right: 58px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
  }

  .relaunch-hero__swipe-hint {
    display: flex;
    align-items: center;
    gap: 8px;

    color: #666666;
    font-size: 13px;
    line-height: 1;
    font-weight: 600;
  }

  .relaunch-hero__swipe-hint b {
    color: #e5a300;
    font-size: 21px;
    line-height: 1;

    animation:
      relaunch-swipe-hint 1.4s ease-in-out infinite;
  }

  .relaunch-hero__dots {
    display: flex;
    align-items: center;
    gap: 7px;
  }

  .relaunch-hero__dots button {
    width: 8px;
    height: 8px;
    padding: 0;

    border: 0;
    border-radius: 50%;
    background: #ded8ca;

    cursor: pointer;

    transition:
      width 0.25s ease,
      border-radius 0.25s ease,
      background 0.25s ease;
  }

  .relaunch-hero__dots button.is-active {
    width: 24px;

    border-radius: 999px;
    background: #f3b300;
  }


  /* MOBILE VISUAL - SEPARATE COMPOSITION */

  .relaunch-hero__stage {
    height: auto;
    min-height: 0;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;

    overflow: visible;
  }

  .relaunch-hero__project {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;

    width: 100%;
  }

  .relaunch-hero__project--old {
    width: 110%;
    margin-left: -5%;
  }

  .relaunch-hero__project--new {
    width: 108%;
    margin-right: -4%;
  }

  .relaunch-hero__project figcaption {
    min-width: 116px;
    min-height: 37px;
    margin-top: 8px;

    font-size: 13px;
  }

  .relaunch-hero__arrow {
    position: relative;
    top: auto;
    left: auto;

    width: 235px;
    margin: -29px auto -23px;

    transform: rotate(90deg);
  }

  @keyframes relaunch-swipe-hint {
    0%,
    100% {
      transform: translateX(0);
    }

    50% {
      transform: translateX(6px);
    }
  }
}


/* =========================================================
   RELAUNCH HERO - 390
   ========================================================= */

@media (max-width: 390px) {
  .relaunch-hero__inner {
    padding-right: 16px;
    padding-left: 16px;
  }

  .relaunch-hero__content h2 {
    font-size: 39px;
  }

  .relaunch-hero__text {
    font-size: 16px;
  }

  .relaunch-hero__button {
    padding-right: 16px;
    padding-left: 16px;

    font-size: 13px;
  }

  .relaunch-hero__benefit {
    width: calc(100vw - 85px);
    flex-basis: calc(100vw - 85px);
  }

  .relaunch-hero__project--old {
    width: 114%;
    margin-left: -7%;
  }

  .relaunch-hero__project--new {
    width: 112%;
    margin-right: -6%;
  }
}


/* =========================================================
   RELAUNCH HERO - REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
  .relaunch-hero.relaunch-animations-ready
  [data-relaunch-reveal],
  .relaunch-hero__project img,
  .relaunch-hero__arrow,
  .relaunch-hero__button,
  .relaunch-hero__swipe-hint b {
    animation: none !important;
    transition: none !important;
  }

  .relaunch-hero.relaunch-animations-ready
  [data-relaunch-reveal] {
    opacity: 1;
    transform: none;
  }
}


/* =========================================================
   SERVICES + PROCESS
   ========================================================= */

.services-process {
  position: relative;

  width: 100%;
  min-height: 100svh;
  overflow: hidden;

  background:
    radial-gradient(
      circle at 86% 56%,
      rgba(247, 183, 0, 0.08) 0%,
      rgba(247, 183, 0, 0.025) 27%,
      rgba(255, 255, 255, 0) 52%
    ),
    linear-gradient(
      180deg,
      #ffffff 0%,
      #ffffff 88%,
      #f4f3ef 100%
    );
}

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

  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;

  height: clamp(52px, 4.5vw, 112px);

  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(222, 221, 216, 0.54) 100%
    );

  pointer-events: none;
}

.services-process__inner {
  position: relative;
  z-index: 2;

  width: 100%;
  min-height: 100svh;

  padding:
    clamp(56px, 3.4vw, 88px)
    clamp(28px, 5vw, 128px)
    clamp(62px, 4vw, 104px);
}

.services-process__kicker {
  margin: 0 0 clamp(20px, 1.45vw, 36px);

  color: #e7a400;
  font-size: clamp(10px, 0.66vw, 16px);
  line-height: 1;
  font-weight: 750;
  letter-spacing: 0.21em;
}

.services-process__services {
  display: grid;
  grid-template-columns:
    minmax(300px, 1.28fr)
    minmax(0, 3fr);

  gap: clamp(34px, 3vw, 76px);
  align-items: end;
}

.services-process__intro {
  min-width: 0;
  padding-bottom: clamp(7px, 0.55vw, 14px);
}

.services-process__intro h2,
.services-process__process-copy > h2 {
  margin: 0;

  color: #111214;
  font-size: clamp(48px, 3.45vw, 88px);
  line-height: 1.03;
  font-weight: 610;
  letter-spacing: -0.048em;
}

.services-process__intro h2 span {
  color: #efad00;
}

.services-process__intro p {
  max-width: 670px;
  margin: clamp(24px, 1.65vw, 41px) 0 0;

  color: #595959;
  font-size: clamp(16px, 1.02vw, 25px);
  line-height: 1.58;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.services-process__cards-shell {
  min-width: 0;
}

.services-process__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));

  gap: clamp(18px, 1.35vw, 35px);
}

.services-process__card {
  min-width: 0;
  min-height: clamp(280px, 18.5vw, 470px);

  padding:
    clamp(25px, 1.75vw, 44px)
    clamp(22px, 1.55vw, 40px)
    clamp(23px, 1.55vw, 39px);

  display: flex;
  flex-direction: column;

  border: 1px solid rgba(22, 22, 22, 0.045);
  border-radius: clamp(18px, 1.3vw, 33px);
  background: rgba(255, 255, 255, 0.98);

  box-shadow:
    0 1.25vw 3vw rgba(37, 37, 37, 0.075),
    0 0.16vw 0.62vw rgba(37, 37, 37, 0.025);

  transition:
    transform 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease;
}

.services-process__card:hover,
.services-process__card:focus-visible {
  transform: translateY(-7px);

  border-color: rgba(238, 170, 0, 0.16);

  box-shadow:
    0 1.65vw 3.55vw rgba(37, 37, 37, 0.105),
    0 0.2vw 0.75vw rgba(37, 37, 37, 0.035);

  outline: none;
}

.services-process__card-icon {
  width: clamp(60px, 4.05vw, 103px);
  height: clamp(60px, 4.05vw, 103px);
  margin-bottom: clamp(20px, 1.35vw, 34px);

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

  overflow: hidden;
  flex: 0 0 auto;
}

.services-process__card-icon img {
  width: 160%;
  height: 160%;
  max-width: none;

  display: block;
  object-fit: contain;
}

.services-process__card h3 {
  margin: 0;

  color: #171717;
  font-size: clamp(21px, 1.45vw, 36px);
  line-height: 1.18;
  font-weight: 650;
  letter-spacing: -0.035em;
}

.services-process__card p {
  margin: clamp(13px, 0.9vw, 22px) 0 0;

  color: #565656;
  font-size: clamp(14px, 0.94vw, 23px);
  line-height: 1.55;
  font-weight: 400;
}

.services-process__card-link {
  margin-top: auto;
  padding-top: clamp(24px, 1.5vw, 38px);

  display: flex;
  align-items: center;
  gap: clamp(10px, 0.7vw, 18px);

  color: #181818;
  font-size: clamp(14px, 0.9vw, 22px);
  line-height: 1;
  font-weight: 650;
}

.services-process__card-link b {
  color: #e8a500;
  font-size: clamp(22px, 1.45vw, 36px);
  line-height: 1;
  font-weight: 400;

  transition: transform 0.25s ease;
}

.services-process__card:hover .services-process__card-link b,
.services-process__card:focus-visible .services-process__card-link b {
  transform: translateX(6px);
}

.services-process__cards-tools,
.services-process__steps-tools {
  display: none;
}


/* =========================================================
   SERVICES + PROCESS - PROCESS
   ========================================================= */

.services-process__process {
  margin-top: clamp(74px, 5vw, 128px);

  display: grid;
  grid-template-columns:
    minmax(0, 54%)
    minmax(0, 46%);

  gap: clamp(28px, 2.5vw, 64px);
  align-items: center;
}

.services-process__process-copy {
  min-width: 0;
}

.services-process__process-copy > h2 {
  font-size: clamp(35px, 2.4vw, 61px);
  line-height: 1.08;
}

.services-process__steps-shell {
  min-width: 0;
}

.services-process__steps {
  position: relative;

  margin-top: clamp(34px, 2.35vw, 60px);

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

  gap: clamp(18px, 1.3vw, 34px);
}

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

  position: absolute;
  top: clamp(29px, 2vw, 51px);
  right: 8%;
  left: 8%;
  z-index: 0;

  border-top: 1px dashed rgba(47, 47, 47, 0.2);
}

.services-process__step {
  position: relative;
  z-index: 2;

  min-width: 0;
}

.services-process__step-number {
  position: relative;
  z-index: 2;

  width: clamp(58px, 4vw, 102px);
  height: clamp(58px, 4vw, 102px);
  margin-bottom: clamp(18px, 1.25vw, 32px);

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

  border: 1.5px solid #efad00;
  border-radius: 50%;
  background: #ffffff;

  color: #e9a600;
  font-size: clamp(20px, 1.35vw, 34px);
  line-height: 1;
  font-weight: 700;

  box-shadow:
    0 0.7vw 1.7vw rgba(226, 164, 0, 0.1);
}

.services-process__step h3 {
  margin: 0;

  color: #1a1a1a;
  font-size: clamp(15px, 1vw, 25px);
  line-height: 1.3;
  font-weight: 650;
  letter-spacing: -0.025em;
}

.services-process__step p {
  margin: clamp(10px, 0.7vw, 18px) 0 0;

  color: #595959;
  font-size: clamp(13px, 0.82vw, 20px);
  line-height: 1.58;
  font-weight: 400;
}

.services-process__process-button {
  width: clamp(230px, 16vw, 410px);
  min-height: clamp(56px, 3.8vw, 96px);
  margin-top: clamp(34px, 2.35vw, 60px);
  padding: 0 clamp(22px, 1.45vw, 37px);

  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;

  border-radius: clamp(11px, 0.75vw, 19px);
  background: #f7b500;

  color: #151515;
  font-size: clamp(14px, 0.94vw, 23px);
  line-height: 1;
  font-weight: 660;

  box-shadow:
    0 1vw 2.35vw rgba(234, 172, 0, 0.2);

  transition:
    transform 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
}

.services-process__process-button b {
  font-size: clamp(23px, 1.5vw, 38px);
  line-height: 1;
  font-weight: 400;

  transition: transform 0.25s ease;
}

.services-process__process-button:hover,
.services-process__process-button:focus-visible {
  transform: translateY(-3px);

  background: #ffc424;

  box-shadow:
    0 1.35vw 2.8vw rgba(234, 172, 0, 0.28);

  outline: none;
}

.services-process__process-button:hover b,
.services-process__process-button:focus-visible b {
  transform: translateX(5px);
}

.services-process__visual {
  min-width: 0;

  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.services-process__visual img {
  width: 112%;
  max-width: none;
  height: auto;

  display: block;

  transform: translateX(5%);
  object-fit: contain;
}


/* =========================================================
   SERVICES + PROCESS - ANIMATIONS
   ========================================================= */

.services-process.services-process--js
[data-services-reveal] {
  opacity: 0;
  transform: translateY(34px);
}

.services-process.services-process--js
[data-services-reveal="intro"],
.services-process.services-process--js
[data-services-reveal="process"] {
  transform: translateX(-38px);
}

.services-process.services-process--js
[data-services-reveal="visual"] {
  transform: translateX(42px);
}

.services-process.services-process--js.is-visible
[data-services-reveal] {
  opacity: 1;
  transform: translate(0, 0);

  transition:
    opacity 0.72s ease,
    transform 0.72s cubic-bezier(0.22, 1, 0.36, 1);
}

.services-process.is-visible
[data-services-reveal="cards"] {
  transition-delay: 0.1s;
}

.services-process.is-visible
[data-services-reveal="visual"] {
  transition-delay: 0.18s;
}


/* =========================================================
   SERVICES + PROCESS - 1500
   ========================================================= */

@media (max-width: 1500px) and (min-width: 1181px) {
  .services-process__inner {
    padding:
      58px
      42px
      66px;
  }

  .services-process__services {
    grid-template-columns:
      minmax(280px, 1.15fr)
      minmax(0, 3fr);

    gap: 34px;
  }

  .services-process__intro h2 {
    font-size: 53px;
  }

  .services-process__intro p {
    font-size: 17px;
  }

  .services-process__cards {
    gap: 18px;
  }

  .services-process__card {
    min-height: 315px;
    padding: 27px 24px 24px;
  }

  .services-process__card-icon {
    width: 67px;
    height: 67px;
  }

  .services-process__card h3 {
    font-size: 23px;
  }

  .services-process__card p,
  .services-process__card-link {
    font-size: 15px;
  }

  .services-process__process {
    margin-top: 76px;

    grid-template-columns:
      minmax(0, 56%)
      minmax(0, 44%);

    gap: 28px;
  }

  .services-process__process-copy > h2 {
    font-size: 39px;
  }

  .services-process__steps {
    margin-top: 38px;
    gap: 20px;
  }

  .services-process__step-number {
    width: 62px;
    height: 62px;
  }

  .services-process__step h3 {
    font-size: 16px;
  }

  .services-process__step p {
    font-size: 13px;
  }

  .services-process__process-button {
    width: 255px;
    min-height: 58px;
    margin-top: 38px;

    font-size: 14px;
  }
}


/* =========================================================
   SERVICES + PROCESS - 1180
   ========================================================= */

@media (max-width: 1180px) {
  .services-process {
    min-height: 0;
  }

  .services-process__inner {
    min-height: 0;
    padding: 64px 32px 58px;
  }

  .services-process__services {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .services-process__intro {
    max-width: 860px;
    padding-bottom: 0;
  }

  .services-process__intro h2 {
    font-size: clamp(48px, 6vw, 68px);
  }

  .services-process__intro p {
    max-width: 760px;
    margin-top: 25px;

    font-size: 18px;
  }

  .services-process__cards {
    gap: 20px;
  }

  .services-process__card {
    min-height: 330px;
    padding: 29px 25px 25px;
  }

  .services-process__card-icon {
    width: 68px;
    height: 68px;
  }

  .services-process__card h3 {
    font-size: 24px;
  }

  .services-process__card p,
  .services-process__card-link {
    font-size: 16px;
  }

  .services-process__process {
    margin-top: 82px;

    grid-template-columns: 1fr;
    gap: 44px;
  }

  .services-process__process-copy > h2 {
    font-size: 42px;
  }

  .services-process__steps {
    margin-top: 42px;
    gap: 25px;
  }

  .services-process__step-number {
    width: 66px;
    height: 66px;
    margin-bottom: 20px;
  }

  .services-process__step h3 {
    font-size: 17px;
  }

  .services-process__step p {
    font-size: 14px;
  }

  .services-process__process-button {
    width: 292px;
    min-height: 62px;
    margin-top: 42px;

    font-size: 16px;
  }

  .services-process__visual {
    justify-content: center;
  }

  .services-process__visual img {
    width: min(1000px, 106%);
    transform: none;
  }
}


/* =========================================================
   SERVICES + PROCESS - 900
   ========================================================= */

@media (max-width: 900px) {
  .services-process__inner {
    padding: 58px 24px 52px;
  }

  .services-process__intro h2 {
    font-size: clamp(46px, 7vw, 60px);
  }

  .services-process__cards-shell {
    width: calc(100% + 24px);
  }

  .services-process__cards {
    width: 100%;
    padding: 4px 78px 28px 0;

    display: flex;
    gap: 17px;

    overflow-x: auto;
    overflow-y: visible;

    scroll-snap-type: x mandatory;
    scroll-padding-left: 0;
    overscroll-behavior-inline: contain;

    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .services-process__cards::-webkit-scrollbar {
    display: none;
  }

  .services-process__card {
    width: min(72vw, 500px);
    min-height: 340px;

    flex: 0 0 min(72vw, 500px);

    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .services-process__card:hover {
    transform: none;
  }

  .services-process__cards-tools {
    padding-right: 78px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
  }

  .services-process__swipe-hint {
    display: flex;
    align-items: center;
    gap: 9px;

    color: #686868;
    font-size: 13px;
    line-height: 1;
    font-weight: 600;
  }

  .services-process__swipe-hint b {
    color: #e8a500;
    font-size: 22px;
    line-height: 1;
    font-weight: 400;

    animation:
      services-process-swipe 1.35s ease-in-out infinite;
  }

  .services-process__dots {
    display: flex;
    align-items: center;
    gap: 7px;
  }

  .services-process__dots button {
    width: 8px;
    height: 8px;
    padding: 0;

    border: 0;
    border-radius: 50%;
    background: #ddd7c9;

    cursor: pointer;

    transition:
      width 0.25s ease,
      border-radius 0.25s ease,
      background 0.25s ease;
  }

  .services-process__dots button.is-active {
    width: 24px;

    border-radius: 999px;
    background: #f2b200;
  }

  .services-process__steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 26px;
  }

  .services-process__steps::before {
    display: none;
  }

  .services-process__step {
    padding: 24px;

    border: 1px solid rgba(22, 22, 22, 0.05);
    border-radius: 20px;
    background: #ffffff;

    box-shadow:
      0 15px 34px rgba(37, 37, 37, 0.06);
  }

  .services-process__step-number {
    margin-bottom: 17px;
  }

  .services-process__visual {
    margin-top: 4px;
  }

  @keyframes services-process-swipe {
    0%,
    100% {
      transform: translateX(0);
    }

    50% {
      transform: translateX(6px);
    }
  }
}


/* =========================================================
   SERVICES + PROCESS - 620
   ========================================================= */

@media (max-width: 620px) {
  .services-process__inner {
    padding: 50px 18px 46px;
  }

  .services-process__kicker {
    margin-bottom: 19px;

    font-size: 10px;
    letter-spacing: 0.2em;
  }

  .services-process__intro h2 {
    font-size: clamp(40px, 11vw, 48px);
    line-height: 1.05;
  }

  .services-process__intro p {
    margin-top: 22px;

    font-size: 17px;
    line-height: 1.52;
  }

  .services-process__services {
    gap: 34px;
  }

  .services-process__cards-shell {
    width: calc(100% + 18px);
  }

  .services-process__cards {
    padding:
      4px
      52px
      24px
      0;

    gap: 14px;
  }

  .services-process__card {
    width: calc(100vw - 68px);
    min-height: 315px;
    padding: 25px 22px 22px;

    flex: 0 0 calc(100vw - 68px);

    border-radius: 19px;
  }

  .services-process__card-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 20px;
  }

  .services-process__card h3 {
    font-size: 23px;
  }

  .services-process__card p {
    font-size: 15.5px;
  }

  .services-process__card-link {
    font-size: 15px;
  }

  .services-process__cards-tools {
    padding-right: 52px;
  }

  .services-process__process {
    margin-top: 72px;
    gap: 34px;
  }

  .services-process__process-copy > h2 {
    font-size: clamp(34px, 9.6vw, 42px);
    line-height: 1.08;
  }

  .services-process__steps-shell {
    width: calc(100% + 18px);
  }

  .services-process__steps {
    width: 100%;
    margin-top: 32px;

    padding:
      4px
      52px
      24px
      0;

    display: flex;
    gap: 14px;

    overflow-x: auto;
    overflow-y: visible;

    scroll-snap-type: x mandatory;
    scroll-padding-left: 0;
    overscroll-behavior-inline: contain;

    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .services-process__steps::-webkit-scrollbar {
    display: none;
  }

  .services-process__step {
    width: calc(100vw - 68px);
    min-height: 270px;
    padding: 24px 22px;

    flex: 0 0 calc(100vw - 68px);

    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .services-process__step-number {
    width: 62px;
    height: 62px;

    font-size: 23px;
  }

  .services-process__step h3 {
    font-size: 20px;
  }

  .services-process__step p {
    font-size: 15px;
  }

  .services-process__steps-tools {
    padding-right: 52px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
  }

  .services-process__process-button {
    width: calc(100% - 18px);
    min-height: 60px;
    margin-top: 30px;

    font-size: 15px;
  }

  .services-process__visual img {
    width: 118%;
    max-width: none;
  }
}


/* =========================================================
   SERVICES + PROCESS - 390
   ========================================================= */

@media (max-width: 390px) {
  .services-process__inner {
    padding-right: 16px;
    padding-left: 16px;
  }

  .services-process__cards-shell,
  .services-process__steps-shell {
    width: calc(100% + 16px);
  }

  .services-process__card,
  .services-process__step {
    width: calc(100vw - 62px);
    flex-basis: calc(100vw - 62px);
  }

  .services-process__cards,
  .services-process__steps {
    padding-right: 46px;
  }

  .services-process__cards-tools,
  .services-process__steps-tools {
    padding-right: 46px;
  }

  .services-process__process-button {
    width: calc(100% - 16px);
  }
}


/* =========================================================
   SERVICES + PROCESS - REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
  .services-process.services-process--js
  [data-services-reveal],
  .services-process__card,
  .services-process__process-button,
  .services-process__swipe-hint b {
    animation: none !important;
    transition: none !important;
  }

  .services-process.services-process--js
  [data-services-reveal] {
    opacity: 1;
    transform: none;
  }
}

/* =========================================================
   PROBLEM SECTION
   ========================================================= */

.problem-section {
  position: relative;

  width: 100%;
  min-height: 100svh;
  overflow: hidden;

  background:
    radial-gradient(
      circle at 85% 38%,
      rgba(247, 184, 0, 0.075) 0%,
      rgba(247, 184, 0, 0.025) 26%,
      rgba(255, 255, 255, 0) 52%
    ),
    #ffffff;
}

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

  position: absolute;
  right: -2vw;
  bottom: 3vw;

  width: 18vw;
  height: 14vw;

  background-image:
    radial-gradient(
      circle,
      rgba(239, 174, 0, 0.18) 1.3px,
      transparent 1.5px
    );

  background-size: 11px 11px;
  opacity: 0.5;
  pointer-events: none;
}

.problem-section::after {
  content: "";

  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;

  height: clamp(54px, 4.8vw, 120px);

  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(218, 218, 214, 0.6) 100%
    );

  pointer-events: none;
}

.problem-section__inner {
  position: relative;
  z-index: 2;

  width: 100%;
  min-height: 100svh;

  padding:
    clamp(62px, 3.7vw, 95px)
    clamp(30px, 4.3vw, 110px)
    clamp(66px, 4.4vw, 112px)
    clamp(32px, 5.1vw, 130px);

  display: grid;
  grid-template-columns:
    minmax(0, 54%)
    minmax(0, 46%);
  grid-template-rows: auto 1fr;
  column-gap: clamp(32px, 3vw, 77px);
  align-items: start;
}


/* =========================================================
   PROBLEM SECTION - INTRO
   ========================================================= */

.problem-section__intro {
  grid-column: 1;
  grid-row: 1;

  min-width: 0;
  padding-right: clamp(18px, 1.6vw, 41px);
}

.problem-section__kicker {
  margin: 0 0 clamp(24px, 1.75vw, 45px);

  color: #e9a600;
  font-size: clamp(10px, 0.68vw, 17px);
  line-height: 1;
  font-weight: 750;
  letter-spacing: 0.22em;
}

.problem-section__intro h2 {
  margin: 0;

  color: #111214;
  font-size: clamp(52px, 4.15vw, 106px);
  line-height: 0.99;
  font-weight: 610;
  letter-spacing: -0.05em;
}

.problem-section__intro h2 span {
  display: block;
}

.problem-section__intro h2 em {
  color: #efad00;
  font-style: normal;
}

.problem-section__intro > p {
  width: min(95%, 900px);
  margin: clamp(25px, 1.75vw, 45px) 0 0;

  color: #555555;
  font-size: clamp(16px, 1.08vw, 27px);
  line-height: 1.55;
  font-weight: 400;
  letter-spacing: -0.01em;
}


/* =========================================================
   PROBLEM SECTION - VISUAL
   ========================================================= */

.problem-section__visual {
  grid-column: 2;
  grid-row: 1 / span 2;

  min-width: 0;
  padding-top: clamp(4px, 0.45vw, 12px);

  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}

.problem-section__visual img {
  width: 118%;
  max-width: none;
  height: auto;

  display: block;

  transform: translateX(5%);
  object-fit: contain;
}


/* =========================================================
   PROBLEM SECTION - CARDS
   ========================================================= */

.problem-section__cards-shell {
  grid-column: 1;
  grid-row: 2;

  min-width: 0;
  margin-top: clamp(42px, 3.2vw, 82px);
}

.problem-section__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));

  gap:
    clamp(16px, 1vw, 26px)
    clamp(16px, 1.05vw, 27px);
}

.problem-section__card {
  min-width: 0;
  min-height: clamp(188px, 13.2vw, 338px);

  padding:
    clamp(22px, 1.45vw, 37px)
    clamp(21px, 1.45vw, 37px)
    clamp(20px, 1.25vw, 32px);

  border: 1px solid rgba(24, 24, 24, 0.04);
  border-radius: clamp(16px, 1.12vw, 29px);
  background: rgba(255, 255, 255, 0.98);

  box-shadow:
    0 1.15vw 2.7vw rgba(38, 38, 38, 0.065),
    0 0.14vw 0.55vw rgba(38, 38, 38, 0.025);

  transition:
    transform 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease;
}

.problem-section__card:hover {
  transform: translateY(-6px);

  border-color: rgba(239, 174, 0, 0.16);

  box-shadow:
    0 1.5vw 3.2vw rgba(38, 38, 38, 0.095),
    0 0.2vw 0.7vw rgba(38, 38, 38, 0.035);
}

.problem-section__card-icon {
  width: clamp(51px, 3.55vw, 91px);
  height: clamp(51px, 3.55vw, 91px);
  margin-bottom: clamp(16px, 1.05vw, 27px);

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

  border-radius: 50%;
  background: #fafafa;

  box-shadow:
    inset 0 0 0 1px rgba(30, 30, 30, 0.025),
    0 6px 17px rgba(35, 35, 35, 0.045);
}

.problem-section__card-icon img {
  width: 64%;
  height: 64%;

  display: block;
  object-fit: contain;
}

.problem-section__card h3 {
  margin: 0;

  color: #171717;
  font-size: clamp(17px, 1.17vw, 30px);
  line-height: 1.22;
  font-weight: 650;
  letter-spacing: -0.035em;
}

.problem-section__card p {
  margin: clamp(10px, 0.68vw, 17px) 0 0;

  color: #575757;
  font-size: clamp(13px, 0.82vw, 21px);
  line-height: 1.52;
  font-weight: 400;
}

.problem-section__cards-tools {
  display: none;
}


/* =========================================================
   PROBLEM SECTION - ANIMATIONS
   ========================================================= */

.problem-section.problem-section--js
[data-problem-reveal] {
  opacity: 0;
  transform: translateY(34px);
}

.problem-section.problem-section--js
[data-problem-reveal="intro"] {
  transform: translateX(-40px);
}

.problem-section.problem-section--js
[data-problem-reveal="visual"] {
  transform: translateX(44px);
}

.problem-section.problem-section--js.is-visible
[data-problem-reveal] {
  opacity: 1;
  transform: translate(0, 0);

  transition:
    opacity 0.74s ease,
    transform 0.74s cubic-bezier(0.22, 1, 0.36, 1);
}

.problem-section.is-visible
[data-problem-reveal="visual"] {
  transition-delay: 0.1s;
}

.problem-section.is-visible
[data-problem-reveal="cards"] {
  transition-delay: 0.2s;
}


/* =========================================================
   PROBLEM SECTION - 1500
   ========================================================= */

@media (max-width: 1500px) and (min-width: 1181px) {
  .problem-section__inner {
    padding:
      62px
      42px
      70px
      54px;

    grid-template-columns:
      minmax(0, 55%)
      minmax(0, 45%);

    column-gap: 28px;
  }

  .problem-section__intro h2 {
    font-size: 62px;
  }

  .problem-section__intro > p {
    font-size: 17px;
  }

  .problem-section__cards-shell {
    margin-top: 46px;
  }

  .problem-section__cards {
    gap: 15px;
  }

  .problem-section__card {
    min-height: 205px;
    padding: 23px 21px 21px;
  }

  .problem-section__card-icon {
    width: 56px;
    height: 56px;
  }

  .problem-section__card h3 {
    font-size: 18px;
  }

  .problem-section__card p {
    font-size: 13px;
  }
}


/* =========================================================
   PROBLEM SECTION - 1180
   ========================================================= */

@media (max-width: 1180px) {
  .problem-section {
    min-height: 0;
  }

  .problem-section__inner {
    min-height: 0;
    padding: 64px 32px 60px;

    grid-template-columns:
      minmax(0, 52%)
      minmax(0, 48%);

    grid-template-rows: auto auto;
    column-gap: 26px;
  }

  .problem-section__intro {
    grid-column: 1;
    grid-row: 1;

    padding-right: 0;
    align-self: center;
  }

  .problem-section__intro h2 {
    font-size: clamp(50px, 6vw, 68px);
  }

  .problem-section__intro > p {
    width: 100%;
    margin-top: 26px;

    font-size: 18px;
  }

  .problem-section__visual {
    grid-column: 2;
    grid-row: 1;

    padding-top: 0;
    align-self: center;
  }

  .problem-section__visual img {
    width: 110%;

    transform: translateX(3%);
  }

  .problem-section__cards-shell {
    grid-column: 1 / -1;
    grid-row: 2;

    margin-top: 50px;
  }

  .problem-section__cards {
    gap: 20px;
  }

  .problem-section__card {
    min-height: 225px;
    padding: 26px 24px 23px;
  }

  .problem-section__card-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 18px;
  }

  .problem-section__card h3 {
    font-size: 20px;
  }

  .problem-section__card p {
    margin-top: 12px;

    font-size: 15px;
  }
}


/* =========================================================
   PROBLEM SECTION - 900
   ========================================================= */

@media (max-width: 900px) {
  .problem-section__inner {
    padding: 58px 24px 54px;

    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }

  .problem-section__intro {
    grid-column: 1;
    grid-row: 1;

    max-width: 780px;
  }

  .problem-section__intro h2 {
    font-size: clamp(48px, 7.2vw, 60px);
  }

  .problem-section__visual {
    grid-column: 1;
    grid-row: 2;

    margin-top: 34px;
    justify-content: center;
  }

  .problem-section__visual img {
    width: min(760px, 108%);

    transform: none;
  }

  .problem-section__cards-shell {
    grid-column: 1;
    grid-row: 3;

    margin-top: 40px;
  }

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

  .problem-section__card {
    min-height: 218px;
  }

  .problem-section::before {
    right: -7vw;
    bottom: 5vw;
  }
}


/* =========================================================
   PROBLEM SECTION - 620
   ========================================================= */

@media (max-width: 620px) {
  .problem-section::before {
    display: none;
  }

  .problem-section__inner {
    padding: 50px 18px 47px;
  }

  .problem-section__kicker {
    margin-bottom: 20px;

    font-size: 10px;
    letter-spacing: 0.2em;
  }

  .problem-section__intro h2 {
    font-size: clamp(40px, 11vw, 48px);
    line-height: 1.02;
  }

  .problem-section__intro > p {
    margin-top: 23px;

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

  .problem-section__visual {
    margin-top: 28px;
  }

  .problem-section__visual img {
    width: 118%;
    max-width: none;
  }

  .problem-section__cards-shell {
    width: calc(100% + 18px);
    margin-top: 34px;
  }

  .problem-section__cards {
    width: 100%;

    padding:
      4px
      52px
      25px
      0;

    display: flex;
    gap: 14px;

    overflow-x: auto;
    overflow-y: visible;

    scroll-snap-type: x mandatory;
    scroll-padding-left: 0;
    overscroll-behavior-inline: contain;

    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .problem-section__cards::-webkit-scrollbar {
    display: none;
  }

  .problem-section__card {
    width: calc(100vw - 68px);
    min-height: 238px;
    padding: 24px 22px 22px;

    flex: 0 0 calc(100vw - 68px);

    border-radius: 18px;

    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .problem-section__card:hover {
    transform: none;
  }

  .problem-section__card-icon {
    width: 58px;
    height: 58px;
    margin-bottom: 17px;
  }

  .problem-section__card h3 {
    font-size: 20px;
  }

  .problem-section__card p {
    font-size: 15px;
  }

  .problem-section__cards-tools {
    padding-right: 52px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
  }

  .problem-section__swipe-hint {
    display: flex;
    align-items: center;
    gap: 8px;

    color: #686868;
    font-size: 13px;
    line-height: 1;
    font-weight: 600;
  }

  .problem-section__swipe-hint b {
    color: #e8a500;
    font-size: 22px;
    line-height: 1;
    font-weight: 400;

    animation:
      problem-section-swipe 1.35s ease-in-out infinite;
  }

  .problem-section__dots {
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .problem-section__dots button {
    width: 7px;
    height: 7px;
    padding: 0;

    border: 0;
    border-radius: 50%;
    background: #ddd7c9;

    cursor: pointer;

    transition:
      width 0.25s ease,
      border-radius 0.25s ease,
      background 0.25s ease;
  }

  .problem-section__dots button.is-active {
    width: 22px;

    border-radius: 999px;
    background: #f2b200;
  }

  @keyframes problem-section-swipe {
    0%,
    100% {
      transform: translateX(0);
    }

    50% {
      transform: translateX(6px);
    }
  }
}


/* =========================================================
   PROBLEM SECTION - 390
   ========================================================= */

@media (max-width: 390px) {
  .problem-section__inner {
    padding-right: 16px;
    padding-left: 16px;
  }

  .problem-section__cards-shell {
    width: calc(100% + 16px);
  }

  .problem-section__cards {
    padding-right: 46px;
  }

  .problem-section__card {
    width: calc(100vw - 62px);
    flex-basis: calc(100vw - 62px);
  }

  .problem-section__cards-tools {
    padding-right: 46px;
  }

  .problem-section__swipe-hint {
    font-size: 12px;
  }
}


/* =========================================================
   PROBLEM SECTION - REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
  .problem-section.problem-section--js
  [data-problem-reveal],
  .problem-section__card,
  .problem-section__swipe-hint b {
    animation: none !important;
    transition: none !important;
  }

  .problem-section.problem-section--js
  [data-problem-reveal] {
    opacity: 1;
    transform: none;
  }
}

/* =========================================================
   BEFORE & AFTER
   ========================================================= */

.before-after {
  position: relative;

  width: 100%;
  min-height: 100svh;
  overflow: hidden;

  background: #ffffff;
}

.before-after__panel {
  position: relative;

  width: 100%;
  max-width: none;
  min-height: 100svh;
  margin: 0;

  padding:
    3.6vw
    3.4vw
    3.4vw
    3.7vw;

  display: grid;
  grid-template-columns:
    19.5%
    62.5%
    18%;
  column-gap: 1.35vw;
  align-items: start;

  border: 0;
  border-radius: 0;
  background:
    radial-gradient(
      circle at 67% 43%,
      rgba(247, 183, 0, 0.045) 0%,
      rgba(247, 183, 0, 0) 37%
    ),
    #ffffff;

  box-shadow: none;
}


/* =========================================================
   INTRO
   ========================================================= */

.before-after__intro {
  min-width: 0;
  padding-top: 4.8vw;
}

.before-after__kicker {
  margin: 0 0 2.2vw;

  color: #efa900;
  font-size: clamp(10px, 0.68vw, 14px);
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.22em;
}

.before-after__intro h2 {
  margin: 0;

  color: #111214;
  font-size: clamp(38px, 2.75vw, 55px);
  line-height: 1.12;
  font-weight: 600;
  letter-spacing: -0.045em;
}

.before-after__intro h2 span {
  color: #f0ae00;
}

.before-after__intro p {
  width: 94%;
  margin: 2vw 0 0;

  color: #575757;
  font-size: clamp(14px, 1vw, 20px);
  line-height: 1.62;
  font-weight: 400;
  letter-spacing: -0.01em;
}


/* =========================================================
   VISUAL COMPARISON
   ========================================================= */

.before-after__visuals {
  position: relative;

  width: 104%;
  min-width: 0;
  margin-top: 0.4vw;
  margin-left: -2%;

  display: grid;
  grid-template-columns:
    40.5%
    59.5%;
  gap: 1.25vw;
  align-items: start;
}

.before-after__mockup {
  position: relative;

  width: 100%;
  min-width: 0;
  margin: 0;
}

.before-after__mockup img {
  width: 100%;
  max-width: none;
  height: auto;

  display: block;
  object-fit: contain;
}

.before-after__mockup--old {
  padding-top: 3.9vw;
}

.before-after__mockup--new {
  padding-top: 0;
}

.before-after__arrow {
  position: absolute;
  top: 49%;
  left: 40.9%;
  z-index: 6;

  width: clamp(52px, 3.65vw, 72px);
  height: clamp(52px, 3.65vw, 72px);

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

  transform: translate(-50%, -50%);

  border-radius: 50%;
  background: #f7b500;

  color: #151515;

  box-shadow:
    0 0.9vw 1.8vw rgba(225, 163, 0, 0.24);

  pointer-events: none;
}

.before-after__arrow span {
  font-size: clamp(27px, 1.9vw, 38px);
  line-height: 1;
  font-weight: 400;

  transform: translateY(-1px);
}


/* =========================================================
   RESULTS
   ========================================================= */

.before-after__results {
  width: 100%;
  padding-top: 12.7vw;

  display: grid;
  grid-template-columns: 1fr;
  gap: 1vw;
}

.before-after__result {
  width: 100%;
  min-height: 4.4vw;
  padding: 0 1.15vw;

  display: flex;
  align-items: center;
  gap: 0.95vw;

  border: 1px solid rgba(24, 24, 24, 0.055);
  border-radius: clamp(11px, 0.85vw, 17px);
  background: #ffffff;

  color: #242424;
  font-size: clamp(13px, 0.9vw, 18px);
  line-height: 1.3;
  font-weight: 500;

  box-shadow:
    0 0.85vw 2vw rgba(34, 34, 34, 0.07),
    0 0.1vw 0.45vw rgba(34, 34, 34, 0.025);
}

.before-after__check {
  position: relative;

  width: clamp(28px, 1.8vw, 36px);
  height: clamp(28px, 1.8vw, 36px);

  flex: 0 0 auto;

  border: 2px solid #f0ae00;
  border-radius: 8px;
}

.before-after__check::before {
  content: "";

  position: absolute;
  top: 45%;
  left: 50%;

  width: 38%;
  height: 20%;

  border-left: 2px solid #f0ae00;
  border-bottom: 2px solid #f0ae00;

  transform:
    translate(-50%, -50%)
    rotate(-45deg);
}


/* =========================================================
   BEFORE & AFTER RESPONSIVE
   ========================================================= */

@media (max-width: 1180px) {
  .before-after {
    min-height: 0;
  }

  .before-after__panel {
    min-height: 0;
    padding: 60px 24px 55px;

    grid-template-columns: 1fr;
    row-gap: 45px;
  }

  .before-after__intro {
    padding-top: 0;
  }

  .before-after__intro h2 {
    font-size: 52px;
  }

  .before-after__intro p {
    width: 100%;
    max-width: 720px;
    margin-top: 25px;

    font-size: 18px;
  }

  .before-after__visuals {
    width: 100%;
    max-width: none;
    margin: 0;

    grid-template-columns:
      40.5%
      59.5%;
    gap: 18px;
  }

  .before-after__mockup--old {
    padding-top: 45px;
  }

  .before-after__results {
    padding-top: 0;

    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .before-after__result {
    min-height: 68px;
    padding: 0 20px;

    font-size: 16px;
  }
}

@media (max-width: 900px) {
  .before-after__panel {
    padding: 52px 24px;
  }

  .before-after__intro h2 {
    font-size: 46px;
  }

  .before-after__visuals {
    gap: 12px;
  }

  .before-after__arrow {
    width: 54px;
    height: 54px;
  }
}

@media (max-width: 620px) {
  .before-after__panel {
    padding: 46px 18px;
  }

  .before-after__kicker {
    margin-bottom: 20px;

    font-size: 10px;
  }

  .before-after__intro h2 {
    font-size: clamp(39px, 11vw, 48px);
    line-height: 1.08;
  }

  .before-after__intro p {
    margin-top: 22px;

    font-size: 17px;
  }

  .before-after__visuals {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .before-after__mockup--old {
    padding-top: 0;
  }

  .before-after__arrow {
    top: 50%;
    left: 50%;

    width: 52px;
    height: 52px;

    transform:
      translate(-50%, -50%)
      rotate(90deg);
  }

  .before-after__results {
    grid-template-columns: 1fr;
  }

  .before-after__result {
    min-height: 64px;
    padding: 0 17px;
  }
}

/* =========================================================
   PACKAGES
   ========================================================= */

.packages-section {
  position: relative;

  width: 100%;
  min-height: 100svh;
  overflow: hidden;

  background:
    radial-gradient(
      circle at 50% 42%,
      rgba(247, 183, 0, 0.08) 0%,
      rgba(247, 183, 0, 0.035) 20%,
      rgba(247, 183, 0, 0) 42%
    ),
    #ffffff;
}

.packages-section::before,
.packages-section::after {
  content: "";

  position: absolute;
  width: 8vw;
  height: 8vw;

  background-image:
    radial-gradient(circle, rgba(240, 174, 0, 0.25) 1.15px, transparent 1.2px);
  background-size: 13px 13px;

  opacity: 0.6;
  pointer-events: none;
}

.packages-section::before {
  left: 7.2vw;
  bottom: 10.2vw;
}

.packages-section::after {
  right: 5.2vw;
  top: 7.6vw;
}

.packages-section__inner {
  position: relative;
  z-index: 2;

  width: 100%;
  min-height: 100svh;
  margin: 0;
  padding:
    4.7vw
    4.4vw
    4.2vw
    4.2vw;

  display: grid;
  grid-template-columns: 18.5% 63% 18.5%;
  column-gap: 1.25vw;
  align-items: start;
}


/* =========================================================
   INTRO
   ========================================================= */

.packages-intro {
  min-width: 0;
  padding-top: 1.1vw;
}

.packages-kicker {
  margin-bottom: 2.3vw;

  color: #efad00;
  font-size: clamp(10px, 0.72vw, 14px);
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.22em;
}

.packages-intro h2 {
  margin: 0;

  color: #111214;
  font-size: clamp(38px, 3.15vw, 62px);
  line-height: 1.12;
  font-weight: 600;
  letter-spacing: -0.045em;
}

.packages-intro p {
  width: 92%;
  margin: 2.25vw 0 0;

  color: #565656;
  font-size: clamp(15px, 1vw, 20px);
  line-height: 1.62;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.packages-intro__line {
  display: block;
  width: 3.4vw;
  min-width: 44px;
  max-width: 70px;
  height: 3px;
  margin-top: 2.25vw;

  border-radius: 999px;
  background: #f3b300;
}


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

.packages-grid {
  width: 100%;
  min-width: 0;
  padding-top: 2.2vw;

  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25vw;
  align-items: start;
}

.package-card {
  position: relative;

  min-width: 0;
  min-height: 38vw;
  padding:
    1.95vw
    1.42vw
    1.35vw;

  display: flex;
  flex-direction: column;

  border: 1px solid rgba(22, 22, 22, 0.07);
  border-radius: clamp(18px, 1.25vw, 24px);
  background: #ffffff;

  box-shadow:
    0 1vw 2.4vw rgba(34, 34, 34, 0.045),
    0 0.12vw 0.42vw rgba(34, 34, 34, 0.02);
}

.package-card--featured {
  border-color: #f2b300;
  box-shadow:
    0 1.35vw 3vw rgba(243, 179, 0, 0.17),
    0 0.12vw 0.42vw rgba(34, 34, 34, 0.02);
}

.package-card__badge {
  position: absolute;
  top: 0;
  left: 50%;

  padding: 0.72vw 1.3vw;

  transform: translate(-50%, -50%);

  border-radius: 999px;
  background: #f3b300;

  color: #171717;
  font-size: clamp(11px, 0.78vw, 14px);
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.08em;

  box-shadow: 0 0.55vw 1vw rgba(243, 179, 0, 0.22);
}

.package-card__label {
  color: #f1b200;
  font-size: clamp(12px, 0.84vw, 16px);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.package-card h3 {
  margin: 1.05vw 0 0;

  color: #171717;
  font-size: clamp(22px, 1.72vw, 33px);
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: -0.035em;
}

.package-card__desc {
  margin: 1.45vw 0 0;

  color: #5d5d5d;
  font-size: clamp(14px, 0.97vw, 18px);
  line-height: 1.65;
  font-weight: 400;
}

.package-card__divider {
  width: 100%;
  height: 1px;
  margin: 1.55vw 0 1.5vw;

  background: rgba(26, 26, 26, 0.08);
}

.package-card__list {
  margin: 0;
  padding: 0;

  list-style: none;
}

.package-card__list li {
  display: flex;
  align-items: center;
  gap: 0.82vw;

  color: #3d3d3d;
  font-size: clamp(14px, 0.95vw, 18px);
  line-height: 1.45;
  font-weight: 500;
}

.package-card__list li + li {
  margin-top: 1vw;
}

.package-card__list img {
  width: 1.22vw;
  min-width: 16px;
  max-width: 22px;
  height: auto;

  display: block;
  flex: 0 0 auto;
}

.package-card__price-wrap {
  margin-top: auto;
  padding-top: 2.35vw;
}

.package-card__price-note {
  display: block;

  color: #5f5f5f;
  font-size: clamp(14px, 0.92vw, 18px);
  line-height: 1.3;
  font-weight: 500;
}

.package-card__price {
  margin-top: 0.45vw;

  color: #101010;
  font-size: clamp(44px, 3vw, 58px);
  line-height: 1;
  font-weight: 650;
  letter-spacing: -0.045em;
}

.package-card__button {
  width: 100%;
  height: 3.45vw;
  min-height: 48px;
  max-height: 66px;
  margin-top: 1.7vw;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: clamp(10px, 0.72vw, 14px);

  font-size: clamp(14px, 0.94vw, 18px);
  line-height: 1;
  font-weight: 600;
}

.package-card__button--outline {
  border: 2px solid #f1b200;
  color: #1a1a1a;
  background: #ffffff;
}

.package-card__button--filled {
  border: 2px solid #f1b200;
  color: #1a1a1a;
  background: #f8bf09;

  box-shadow:
    0 0.85vw 1.7vw rgba(243, 179, 0, 0.18);
}


/* =========================================================
   SIDE FEATURES
   ========================================================= */

.packages-side {
  width: 100%;
  min-width: 0;
  margin-top: 9.35vw;
  padding:
    1.55vw
    1.35vw;

  border: 1px solid rgba(22, 22, 22, 0.07);
  border-radius: clamp(18px, 1.2vw, 24px);
  background: #ffffff;

  box-shadow:
    0 1vw 2.4vw rgba(34, 34, 34, 0.045),
    0 0.12vw 0.42vw rgba(34, 34, 34, 0.02);
}

.packages-side__item {
  display: flex;
  align-items: flex-start;
  gap: 1vw;
}

.packages-side__icon {
  width: 3vw;
  min-width: 42px;
  max-width: 58px;
  height: 3vw;
  min-height: 42px;
  max-height: 58px;

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

  flex: 0 0 auto;
}

.packages-side__icon img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.packages-side__content h4 {
  margin: 0;

  color: #1a1a1a;
  font-size: clamp(15px, 1vw, 19px);
  line-height: 1.35;
  font-weight: 600;
}

.packages-side__content p {
  margin: 0.5vw 0 0;

  color: #5b5b5b;
  font-size: clamp(13px, 0.88vw, 16px);
  line-height: 1.65;
  font-weight: 400;
}

.packages-side__divider {
  width: 100%;
  height: 1px;
  margin: 1.65vw 0;

  background: rgba(26, 26, 26, 0.08);
}


/* =========================================================
   PACKAGES RESPONSIVE
   ========================================================= */

@media (max-width: 1180px) {
  .packages-section::before,
  .packages-section::after {
    display: none;
  }

  .packages-section__inner {
    min-height: 0;
    padding: 60px 24px 54px;

    grid-template-columns: 1fr;
    row-gap: 38px;
  }

  .packages-intro {
    padding-top: 0;
  }

  .packages-intro h2 {
    font-size: 52px;
  }

  .packages-intro p {
    width: 100%;
    max-width: 700px;
    margin-top: 24px;

    font-size: 18px;
  }

  .packages-intro__line {
    margin-top: 24px;
  }

  .packages-grid {
    padding-top: 0;
    gap: 20px;
  }

  .package-card {
    min-height: 540px;
    padding: 28px 22px 22px;
  }

  .package-card__badge {
    padding: 10px 18px;
  }

  .package-card h3 {
    margin-top: 14px;
    font-size: 28px;
  }

  .package-card__desc {
    margin-top: 16px;
    font-size: 16px;
  }

  .package-card__divider {
    margin: 18px 0;
  }

  .package-card__list li {
    gap: 12px;
    font-size: 15px;
  }

  .package-card__list li + li {
    margin-top: 12px;
  }

  .package-card__list img {
    width: 18px;
  }

  .package-card__price-wrap {
    padding-top: 30px;
  }

  .package-card__price {
    margin-top: 8px;
    font-size: 52px;
  }

  .package-card__button {
    height: 56px;
    margin-top: 22px;
  }

  .packages-side {
    margin-top: 0;
    padding: 24px 20px;
  }

  .packages-side__item {
    gap: 16px;
  }

  .packages-side__content p {
    margin-top: 8px;
    font-size: 15px;
  }

  .packages-side__divider {
    margin: 22px 0;
  }
}

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

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

@media (max-width: 620px) {
  .packages-section__inner {
    padding: 50px 18px 44px;
    row-gap: 32px;
  }

  .packages-kicker {
    margin-bottom: 20px;

    font-size: 10px;
  }

  .packages-intro h2 {
    font-size: clamp(40px, 11vw, 48px);
    line-height: 1.08;
  }

  .packages-intro p {
    margin-top: 22px;
    font-size: 17px;
  }

  .packages-grid {
    gap: 18px;
  }

  .package-card {
    padding: 24px 18px 18px;
  }

  .package-card__badge {
    padding: 9px 16px;
    font-size: 11px;
  }

  .package-card h3 {
    font-size: 26px;
  }

  .package-card__desc {
    font-size: 15px;
  }

  .package-card__price {
    font-size: 46px;
  }

  .package-card__button {
    height: 54px;
  }

  .packages-side {
    padding: 22px 18px;
  }

  .packages-side__item {
    gap: 14px;
  }
}

/* =========================================================
   PACKAGES
   ========================================================= */

.packages-intro[data-package-reveal],
.packages-side[data-package-reveal],
.package-card[data-package-reveal] {
  opacity: 1;
}

.packages-intro > p:not(.packages-vat-note) {
  width: 92%;
  margin: 2.25vw 0 0;
}

.packages-vat-note {
  width: fit-content;
  margin: 1.1vw 0 0;
  padding: 0.55vw 0.8vw;

  border: 1px solid rgba(240, 174, 0, 0.2);
  border-radius: 999px;
  background: rgba(255, 247, 222, 0.68);

  color: #7b5b00;
  font-size: clamp(12px, 0.8vw, 15px);
  line-height: 1;
  font-weight: 600;
  white-space: nowrap;
}

.packages-grid-shell {
  min-width: 0;
}

.packages-grid {
  align-items: stretch;
}

.package-card {
  min-height: 40.5vw;

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

.package-card:hover {
  transform: translateY(-0.45vw);

  box-shadow:
    0 1.45vw 3.1vw rgba(34, 34, 34, 0.075),
    0 0.16vw 0.55vw rgba(34, 34, 34, 0.025);
}

.package-card--featured:hover {
  box-shadow:
    0 1.65vw 3.4vw rgba(243, 179, 0, 0.23),
    0 0.14vw 0.5vw rgba(34, 34, 34, 0.025);
}

.package-card__badge {
  z-index: 3;
}

.package-card__info {
  position: absolute;
  top: 1.25vw;
  right: 1.2vw;
  z-index: 4;

  width: clamp(34px, 2.25vw, 44px);
  height: clamp(34px, 2.25vw, 44px);
  padding: 0;

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

  border: 1.5px solid #f0ae00;
  border-radius: 50%;
  background: #ffffff;

  color: #d79500;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(17px, 1.12vw, 22px);
  line-height: 1;
  font-weight: 700;

  box-shadow:
    0 0.45vw 1.1vw rgba(226, 166, 0, 0.12);

  cursor: pointer;

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

.package-card__info::after {
  content: "";

  position: absolute;
  inset: -1px;

  border: 1px solid rgba(240, 174, 0, 0.55);
  border-radius: inherit;

  opacity: 0;
  pointer-events: none;
}

.package-card__info:hover,
.package-card__info:focus-visible {
  transform: translateY(-2px) scale(1.05);

  background: #f7b500;
  color: #151515;

  box-shadow:
    0 0.7vw 1.4vw rgba(226, 166, 0, 0.22);

  outline: none;
}

.package-card__info.is-pulsing {
  animation:
    package-info-pulse 1.05s ease;
}

.package-card__info.is-pulsing::after {
  animation:
    package-info-ring 1.05s ease;
}

@keyframes package-info-pulse {
  0%,
  100% {
    transform: scale(1);

    box-shadow:
      0 0.45vw 1.1vw rgba(226, 166, 0, 0.12);
  }

  45% {
    transform: scale(1.14);

    background: #f7b500;
    color: #151515;

    box-shadow:
      0 0 0 0.5vw rgba(247, 181, 0, 0.12),
      0 0.8vw 1.7vw rgba(226, 166, 0, 0.28);
  }
}

@keyframes package-info-ring {
  0% {
    opacity: 0.7;
    transform: scale(1);
  }

  75%,
  100% {
    opacity: 0;
    transform: scale(1.85);
  }
}

.package-card__label {
  padding-right: 3vw;
}

.package-card h3 {
  padding-right: 2.4vw;
}

.package-card__individual {
  position: relative;

  margin: 1.65vw 0 0;
  padding:
    0.75vw
    0.85vw
    0.75vw
    2.15vw;

  border: 1px solid rgba(240, 174, 0, 0.16);
  border-radius: clamp(9px, 0.65vw, 13px);
  background: rgba(255, 248, 229, 0.72);

  color: #665127;
  font-size: clamp(12px, 0.8vw, 15px);
  line-height: 1.45;
  font-weight: 500;
}

.package-card__individual::before {
  content: "";

  position: absolute;
  top: 50%;
  left: 0.82vw;

  width: 0.65vw;
  min-width: 9px;
  height: 0.65vw;
  min-height: 9px;

  border: 2px solid #f0ae00;
  border-radius: 50%;

  transform: translateY(-50%);
}

.package-card__price-wrap {
  padding-top: 1.75vw;
}

.package-card__price-note {
  font-size: clamp(12px, 0.82vw, 16px);
}

.package-card__button {
  margin-top: 1.35vw;

  transition:
    transform 0.22s ease,
    background 0.22s ease,
    box-shadow 0.22s ease;
}

.package-card__button:hover,
.package-card__button:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.package-card__button--outline:hover,
.package-card__button--outline:focus-visible {
  background: #fff7dc;

  box-shadow:
    0 0.75vw 1.5vw rgba(243, 179, 0, 0.13);
}

.package-card__button--filled:hover,
.package-card__button--filled:focus-visible {
  background: #ffc928;

  box-shadow:
    0 1vw 2vw rgba(243, 179, 0, 0.25);
}

.packages-mobile-tools {
  display: none;
}

.packages-animations-ready [data-package-reveal] {
  opacity: 0;
  transform: translateY(32px);

  transition:
    opacity 0.72s ease,
    transform 0.72s cubic-bezier(0.22, 1, 0.36, 1);
}

.packages-animations-ready [data-package-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.packages-animations-ready .package-card:nth-child(1) {
  transition-delay: 0.08s;
}

.packages-animations-ready .package-card:nth-child(2) {
  transition-delay: 0.18s;
}

.packages-animations-ready .package-card:nth-child(3) {
  transition-delay: 0.28s;
}

.packages-animations-ready .packages-side {
  transition-delay: 0.38s;
}

.package-card.is-visible .package-card__list li {
  animation:
    package-list-in 0.45s both;
}

.package-card.is-visible .package-card__list li:nth-child(2) {
  animation-delay: 0.07s;
}

.package-card.is-visible .package-card__list li:nth-child(3) {
  animation-delay: 0.14s;
}

.package-card.is-visible .package-card__list li:nth-child(4) {
  animation-delay: 0.21s;
}

.package-card.is-visible .package-card__list li:nth-child(5) {
  animation-delay: 0.28s;
}

@keyframes package-list-in {
  from {
    opacity: 0;
    transform: translateX(-10px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (max-width: 1180px) {
  .packages-intro > p:not(.packages-vat-note) {
    width: 100%;
    max-width: 700px;
    margin-top: 24px;

    font-size: 18px;
  }

  .packages-intro__line {
    margin-top: 24px;
  }

  .packages-vat-note {
    margin-top: 16px;
    padding: 9px 13px;
  }

  .packages-grid {
    padding-top: 15px;
  }

  .package-card {
    min-height: 610px;
  }

  .package-card__info {
    top: 20px;
    right: 20px;
  }

  .package-card__individual {
    margin-top: 22px;
    padding:
      12px
      14px
      12px
      38px;

    font-size: 14px;
  }

  .package-card__individual::before {
    left: 15px;
  }

  .package-card__price-wrap {
    padding-top: 26px;
  }

  .package-card__button {
    margin-top: 19px;
  }
}

@media (max-width: 900px) {
  .packages-side {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }

  .packages-side__divider {
    display: none;
  }
}

@media (max-width: 620px) {
  .packages-section {
    overflow: hidden;
  }

  .packages-section__inner {
    row-gap: 30px;
  }

  .packages-intro > p:not(.packages-vat-note) {
    margin-top: 22px;

    font-size: 17px;
  }

  .packages-vat-note {
    margin-top: 15px;

    font-size: 12px;
  }

  .packages-grid-shell {
    width: calc(100% + 18px);
    min-width: 0;
  }

  .packages-grid {
    width: 100%;
    padding:
      20px
      46px
      28px
      0;

    display: flex;
    gap: 14px;

    overflow-x: auto;
    overflow-y: visible;

    scroll-snap-type: x mandatory;
    scroll-padding-left: 0;
    overscroll-behavior-inline: contain;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

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

  .package-card {
    width: calc(100vw - 64px);
    min-height: 630px;
    padding: 25px 20px 20px;

    flex: 0 0 calc(100vw - 64px);

    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .package-card:hover {
    transform: none;
  }

  .package-card__info {
    top: 18px;
    right: 18px;

    width: 38px;
    height: 38px;
  }

  .package-card h3 {
    padding-right: 42px;
  }

  .package-card__individual {
    margin-top: 20px;
  }

  .package-card__price-note {
    font-size: 12px;
  }

  .packages-mobile-tools {
    padding: 2px 46px 0 0;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
  }

  .packages-swipe-hint {
    display: flex;
    align-items: center;
    gap: 9px;

    color: #6a6a6a;
    font-size: 13px;
    line-height: 1;
    font-weight: 600;
  }

  .packages-swipe-hint span {
    color: #e9a600;
    font-size: 22px;
    line-height: 1;

    animation:
      packages-swipe-arrow 1.35s ease-in-out infinite;
  }

  @keyframes packages-swipe-arrow {
    0%,
    100% {
      transform: translateX(0);
    }

    50% {
      transform: translateX(6px);
    }
  }

  .packages-slider-dots {
    display: flex;
    align-items: center;
    gap: 7px;
  }

  .packages-slider-dots button {
    width: 8px;
    height: 8px;
    padding: 0;

    border: 0;
    border-radius: 50%;
    background: #ddd7c9;

    cursor: pointer;

    transition:
      width 0.25s ease,
      border-radius 0.25s ease,
      background 0.25s ease;
  }

  .packages-slider-dots button.is-active {
    width: 24px;

    border-radius: 999px;
    background: #f3b300;
  }

  .packages-side {
    grid-template-columns: 1fr;
  }

  .packages-side__divider {
    display: block;
  }

}

@media (prefers-reduced-motion: reduce) {
  .packages-animations-ready [data-package-reveal],
  .package-card,
  .package-card__info,
  .package-card__button {
    animation: none !important;
    transition: none !important;
  }

  .packages-animations-ready [data-package-reveal] {
    opacity: 1;
    transform: none;
  }

  .packages-swipe-hint span {
    animation: none;
  }
}

/* =========================================================
   PACKAGES — UPDATED CONTENT
   ========================================================= */

.packages-intro h2 span {
  color: #f0ae00;
}

.packages-intro > p.packages-intro__price-info {
  width: 92%;
  margin: 18px 0 0;

  color: #6a6a6a;
  font-size: clamp(12px, 0.76vw, 15px);
  line-height: 1.55;
}

.package-card__button {
  border: 0;
  font-family: inherit;
  cursor: pointer;
}

.package-card__button--outline {
  border: 2px solid #f1b200;
}

.package-card__button--filled {
  border: 2px solid #f1b200;
}


/* =========================================================
   PACKAGE MODAL
   ========================================================= */

body.package-modal-open {
  overflow: hidden;
}

.package-modal {
  position: fixed;
  inset: 0;
  z-index: 1800;

  padding: clamp(16px, 2vw, 40px);

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

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition:
    opacity 0.28s ease,
    visibility 0.28s ease;
}

.package-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.package-modal__backdrop {
  position: absolute;
  inset: 0;

  background: rgba(16, 17, 19, 0.72);
}

.package-modal__dialog {
  position: relative;
  z-index: 2;

  width: min(1240px, 100%);
  max-height: calc(100svh - 40px);
  padding: clamp(28px, 2.2vw, 48px);

  overflow-x: hidden;
  overflow-y: auto;

  border: 1px solid rgba(240, 174, 0, 0.18);
  border-radius: clamp(22px, 1.45vw, 32px);

  background:
    radial-gradient(
      circle at 94% 5%,
      rgba(247, 183, 0, 0.11) 0%,
      rgba(247, 183, 0, 0) 28%
    ),
    #ffffff;

  box-shadow:
    0 35px 105px rgba(12, 12, 12, 0.28);

  transform:
    translateY(22px)
    scale(0.985);

  transition:
    transform 0.34s cubic-bezier(0.22, 1, 0.36, 1);

  outline: none;
}

.package-modal.is-open .package-modal__dialog {
  transform:
    translateY(0)
    scale(1);
}

.package-modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 5;

  width: 44px;
  height: 44px;
  padding: 0;

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

  border: 1px solid rgba(24, 24, 24, 0.1);
  border-radius: 50%;
  background: #ffffff;

  color: #222222;
  font-size: 28px;
  line-height: 1;

  cursor: pointer;

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

.package-modal__close:hover,
.package-modal__close:focus-visible {
  transform: rotate(7deg);

  border-color: rgba(239, 174, 0, 0.45);
  background: #fff8df;

  outline: none;
}


/* HEADER */

.package-modal__header {
  padding-right: 62px;

  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(25px, 2vw, 45px);
}

.package-modal__label {
  margin-bottom: 12px;

  color: #e5a300;
  font-size: 12px;
  line-height: 1;
  font-weight: 750;
  letter-spacing: 0.17em;
}

.package-modal__header h3 {
  margin: 0;

  color: #15161a;
  font-size: clamp(36px, 3vw, 59px);
  line-height: 1.05;
  font-weight: 630;
  letter-spacing: -0.045em;
}

.package-modal__lead {
  max-width: 760px;
  margin: 17px 0 0;

  color: #5a5b60;
  font-size: clamp(15px, 0.95vw, 18px);
  line-height: 1.62;
}

.package-modal__price-box {
  min-width: clamp(190px, 13vw, 250px);
  padding: 22px 25px;

  display: flex;
  align-items: flex-start;
  flex-direction: column;

  border: 1px solid rgba(239, 174, 0, 0.22);
  border-radius: 18px;
  background: #fff9e6;

  box-shadow:
    0 15px 34px rgba(226, 164, 0, 0.1);
}

.package-modal__price-box span,
.package-modal__price-box small {
  color: #76623c;
  font-size: 12px;
  line-height: 1.3;
  font-weight: 600;
}

.package-modal__price-box strong {
  margin: 6px 0;

  color: #171717;
  font-size: clamp(34px, 2.5vw, 48px);
  line-height: 1;
  font-weight: 680;
  letter-spacing: -0.045em;
}


/* METRICS */

.package-modal__metrics {
  margin-top: 27px;

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

  border: 1px solid rgba(24, 24, 24, 0.08);
  border-radius: 16px;
  background: #fbfbf9;
}

.package-modal__metric {
  min-width: 0;
  padding: 17px 20px;

  display: flex;
  flex-direction: column;
  gap: 6px;

  border-right: 1px solid rgba(24, 24, 24, 0.08);
}

.package-modal__metric:last-child {
  border-right: 0;
}

.package-modal__metric span {
  color: #777777;
  font-size: 11px;
  line-height: 1;
  font-weight: 650;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.package-modal__metric strong {
  color: #242424;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 650;
}


/* BODY */

.package-modal__body {
  margin-top: 28px;

  display: grid;
  grid-template-columns:
    minmax(0, 1.05fr)
    minmax(380px, 0.95fr);

  gap: clamp(24px, 2vw, 42px);
  align-items: start;
}

.package-modal__details {
  min-width: 0;
}

.package-modal__section + .package-modal__section {
  margin-top: 27px;
}

.package-modal__section h4 {
  margin: 0 0 16px;

  color: #1b1b1d;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 660;
}

.package-modal__list,
.package-modal__advantages {
  margin: 0;
  padding: 0;

  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 20px;

  list-style: none;
}

.package-modal__list li,
.package-modal__advantages li {
  position: relative;

  min-width: 0;
  padding-left: 27px;

  color: #505156;
  font-size: 14px;
  line-height: 1.5;
}

.package-modal__list li::before,
.package-modal__advantages li::before {
  content: "✓";

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

  color: #e6a400;
  font-weight: 800;
}

.package-modal__advantages li::before {
  content: "→";
}

.package-modal__ideal {
  margin-top: 28px;
  padding: 19px 20px;

  border: 1px solid rgba(239, 174, 0, 0.16);
  border-radius: 15px;
  background: #fffaf0;
}

.package-modal__ideal span {
  display: block;
  margin-bottom: 8px;

  color: #a47700;
  font-size: 11px;
  line-height: 1;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.package-modal__ideal p {
  margin: 0;

  color: #555555;
  font-size: 14px;
  line-height: 1.55;
}

.package-modal__price-disclaimer {
  margin: 18px 0 0;

  color: #737373;
  font-size: 12px;
  line-height: 1.55;
}


/* FORM CARD */

.package-modal__form-card {
  padding: clamp(22px, 1.6vw, 31px);

  border: 1px solid rgba(24, 24, 24, 0.08);
  border-radius: 20px;
  background: #ffffff;

  box-shadow:
    0 18px 48px rgba(28, 28, 28, 0.09);
}

.package-modal__form-kicker {
  display: block;
  margin-bottom: 11px;

  color: #df9f00;
  font-size: 10px;
  line-height: 1;
  font-weight: 750;
  letter-spacing: 0.18em;
}

.package-modal__form-card > h4 {
  margin: 0;

  color: #18191c;
  font-size: clamp(25px, 1.75vw, 34px);
  line-height: 1.1;
  font-weight: 640;
  letter-spacing: -0.04em;
}

.package-modal__form-card > p {
  margin: 13px 0 0;

  color: #606166;
  font-size: 14px;
  line-height: 1.55;
}

.package-modal__form {
  margin-top: 21px;
}

.package-modal__form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.package-modal__field {
  min-width: 0;
}

.package-modal__field--full {
  grid-column: 1 / -1;
}

.package-modal__field label {
  position: absolute;

  width: 1px;
  height: 1px;
  overflow: hidden;

  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.package-modal__field input,
.package-modal__field textarea {
  width: 100%;

  border: 1px solid rgba(29, 29, 29, 0.15);
  border-radius: 11px;
  background: #ffffff;
  color: #282828;

  font-family: inherit;
  font-size: 14px;
  line-height: 1.4;

  outline: none;

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

.package-modal__field input {
  height: 52px;
  padding: 0 15px;
}

.package-modal__field textarea {
  min-height: 105px;
  padding: 14px 15px;

  resize: vertical;
}

.package-modal__field input:focus,
.package-modal__field textarea:focus {
  border-color: #e6a300;
  background: #fffefa;

  box-shadow:
    0 0 0 3px rgba(240, 174, 0, 0.11);
}

.package-modal__field.is-invalid input,
.package-modal__field.is-invalid textarea {
  border-color: #c94c42;
  background: #fffafa;
}


/* PRIVACY CHECKBOX — ALL FORMS */

.dc-form-consent {
  margin-top: 17px;
}

.dc-form-consent label {
  position: relative;

  display: grid;
  grid-template-columns: 23px minmax(0, 1fr);
  gap: 11px;
  align-items: start;

  cursor: pointer;
}

.dc-form-consent input {
  position: absolute;

  width: 1px;
  height: 1px;

  opacity: 0;
}

.dc-form-consent__box {
  position: relative;

  width: 22px;
  height: 22px;

  border: 1.5px solid rgba(30, 30, 30, 0.3);
  border-radius: 6px;
  background: #ffffff;

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

.dc-form-consent__box::after {
  content: "";

  position: absolute;
  top: 44%;
  left: 50%;

  width: 8px;
  height: 4px;

  border-left: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;

  opacity: 0;

  transform:
    translate(-50%, -50%)
    rotate(-45deg);
}

.dc-form-consent input:checked
+ .dc-form-consent__box {
  border-color: #e7a500;
  background: #f5b400;
}

.dc-form-consent input:checked
+ .dc-form-consent__box::after {
  opacity: 1;
}

.dc-form-consent input:focus-visible
+ .dc-form-consent__box {
  box-shadow:
    0 0 0 3px rgba(240, 174, 0, 0.18);
}

.dc-form-consent__text {
  color: #626368;
  font-size: 12px;
  line-height: 1.5;
}

.dc-form-consent__text a {
  color: #806000;
  font-weight: 650;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.dc-form-consent.is-invalid
.dc-form-consent__box {
  border-color: #c94c42;
  background: #fff7f6;
}

.dc-form-consent__error {
  min-height: 17px;
  margin: 7px 0 0 34px;

  display: block;

  color: #b43e35;
  font-size: 11px;
  line-height: 1.4;
}


/* SUBMIT */

.package-modal__submit {
  width: 100%;
  min-height: 56px;
  margin-top: 15px;
  padding: 0 20px;

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

  border: 0;
  border-radius: 12px;
  background: #f7b500;

  color: #171717;
  font-family: inherit;
  font-size: 14px;
  line-height: 1;
  font-weight: 670;

  box-shadow:
    0 13px 28px rgba(235, 174, 0, 0.2);

  cursor: pointer;

  transition:
    transform 0.22s ease,
    background 0.22s ease,
    box-shadow 0.22s ease;
}

.package-modal__submit:hover,
.package-modal__submit:focus-visible {
  transform: translateY(-2px);

  background: #ffc526;

  box-shadow:
    0 17px 35px rgba(235, 174, 0, 0.28);

  outline: none;
}

.package-modal__submit span:last-child {
  font-size: 23px;
  line-height: 1;
}

.package-modal__form-note {
  margin: 12px 0 0;

  color: #777777;
  font-size: 11px;
  line-height: 1.5;
  text-align: center;
}

.package-modal__form-status {
  min-height: 18px;
  margin: 8px 0 0;

  color: #745900;
  font-size: 12px;
  line-height: 1.4;
  text-align: center;
}

.package-modal__form-status.is-error {
  color: #b43e35;
}

.package-modal__form-status.is-success {
  color: #347044;
}


/* =========================================================
   PACKAGE MODAL RESPONSIVE
   ========================================================= */

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

  .package-modal__price-box {
    width: 100%;
    min-width: 0;
  }

  .package-modal__body {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .packages-intro > p.packages-intro__price-info {
    width: 100%;

    font-size: 13px;
  }

  .package-modal {
    padding: 8px;

    align-items: flex-end;
  }

  .package-modal__dialog {
    width: 100%;
    max-height: calc(100svh - 16px);
    padding: 27px 18px 22px;

    border-radius: 23px 23px 15px 15px;

    transform: translateY(40px);
  }

  .package-modal__close {
    top: 14px;
    right: 14px;

    width: 40px;
    height: 40px;
  }

  .package-modal__header {
    padding-right: 43px;
  }

  .package-modal__header h3 {
    font-size: 34px;
  }

  .package-modal__metrics {
    grid-template-columns: 1fr;
  }

  .package-modal__metric {
    border-right: 0;
    border-bottom: 1px solid rgba(24, 24, 24, 0.08);
  }

  .package-modal__metric:last-child {
    border-bottom: 0;
  }

  .package-modal__list,
  .package-modal__advantages {
    grid-template-columns: 1fr;
  }

  .package-modal__form-grid {
    grid-template-columns: 1fr;
  }

  .package-modal__field--full {
    grid-column: auto;
  }

  .package-modal__form-card {
    padding: 21px 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .package-modal,
  .package-modal__dialog,
  .package-modal__close,
  .package-modal__submit,
  .dc-form-consent__box {
    animation: none !important;
    transition: none !important;
  }
}

/* =========================================================
   WORKFLOW / DETAILED PROCESS
   ========================================================= */

.workflow-section {
  position: relative;

  width: 100%;
  min-height: 100svh;
  overflow: hidden;

  background:
    radial-gradient(
      circle at 64% 42%,
      rgba(247, 183, 0, 0.055) 0%,
      rgba(247, 183, 0, 0.02) 23%,
      rgba(247, 183, 0, 0) 48%
    ),
    #ffffff;
}

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

  position: absolute;
  left: -4vw;
  bottom: -4vw;

  width: 20vw;
  height: 15vw;

  background-image:
    radial-gradient(
      circle,
      rgba(239, 174, 0, 0.17) 1.2px,
      transparent 1.4px
    );

  background-size: 12px 12px;
  opacity: 0.4;
  pointer-events: none;
}

.workflow-section__inner {
  position: relative;
  z-index: 2;

  width: 100%;
  max-width: none;
  min-height: 100svh;
  margin: 0;

  padding:
    3.6vw
    3.6vw
    3.2vw
    3.35vw;

  display: grid;
  grid-template-columns: 25.5% 74.5%;
  column-gap: 2vw;
  align-items: start;
}


/* =========================================================
   WORKFLOW INTRO
   ========================================================= */

.workflow-intro {
  min-width: 0;
  padding-top: 1.2vw;
}

.workflow-kicker {
  margin: 0 0 1.9vw;

  color: #efa900;
  font-size: clamp(10px, 0.68vw, 14px);
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.22em;
}

.workflow-intro h2 {
  margin: 0;

  color: #111214;
  font-size: clamp(46px, 3.75vw, 73px);
  line-height: 1.05;
  font-weight: 600;
  letter-spacing: -0.047em;
}

.workflow-intro h2 span {
  color: #f0ae00;
}

.workflow-intro__text {
  width: 91%;
  margin: 1.8vw 0 0;

  color: #575757;
  font-size: clamp(15px, 1.04vw, 20px);
  line-height: 1.62;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.workflow-button {
  width: 15.5vw;
  min-width: 230px;
  max-width: 302px;

  height: 3.7vw;
  min-height: 54px;
  max-height: 70px;

  margin-top: 2.25vw;
  padding: 0 1.35vw 0 1.55vw;

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

  border-radius: clamp(10px, 0.75vw, 14px);
  background: #f7b500;

  color: #161616;
  font-size: clamp(14px, 0.92vw, 18px);
  line-height: 1;
  font-weight: 650;

  box-shadow:
    0 1vw 2.2vw rgba(234, 172, 0, 0.19);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.workflow-button:hover {
  transform: translateY(-3px);
  background: #ffc426;

  box-shadow:
    0 1.35vw 2.7vw rgba(234, 172, 0, 0.27);
}

.workflow-button__arrow {
  font-size: clamp(23px, 1.55vw, 30px);
  line-height: 1;

  transition: transform 0.25s ease;
}

.workflow-button:hover .workflow-button__arrow {
  transform: translateX(5px);
}


/* =========================================================
   SERVICE TYPES
   ========================================================= */

.workflow-services {
  width: 100%;
  margin-top: 2.3vw;

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

.workflow-service {
  min-width: 0;
  min-height: 4vw;
  padding: 0 0.75vw;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55vw;

  border-right: 1px solid rgba(30, 30, 30, 0.1);

  color: #454545;
  font-size: clamp(11px, 0.76vw, 15px);
  line-height: 1.2;
  font-weight: 600;
  text-align: center;
}

.workflow-service:first-child {
  justify-content: flex-start;
  padding-left: 0;
}

.workflow-service:last-child {
  border-right: 0;
}

.workflow-service img {
  width: 2.45vw;
  min-width: 34px;
  max-width: 48px;
  height: 2.45vw;
  min-height: 34px;
  max-height: 48px;

  display: block;
  object-fit: contain;
  flex: 0 0 auto;
}


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

.workflow-main {
  width: 100%;
  min-width: 0;
}

.workflow-steps {
  position: relative;

  width: 100%;
  min-width: 0;

  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.15vw;
  align-items: stretch;
}

.workflow-steps::before {
  content: "";

  position: absolute;
  top: 2.2vw;
  right: 12.5%;
  left: 12.5%;
  z-index: 0;

  height: 2px;
  border-radius: 999px;
  background: #f0ae00;

  transform-origin: left center;
}


/* =========================================================
   WORKFLOW STEP
   ========================================================= */

.workflow-step {
  position: relative;
  z-index: 2;

  min-width: 0;

  display: flex;
  flex-direction: column;
}

.workflow-step__number {
  position: relative;
  z-index: 3;

  width: 4.45vw;
  height: 4.45vw;
  min-width: 62px;
  min-height: 62px;
  max-width: 86px;
  max-height: 86px;
  margin: 0 auto 1.05vw;

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

  border: 2px solid rgba(240, 174, 0, 0.42);
  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      #ffffff 52%,
      rgba(255, 246, 216, 0.95) 100%
    );

  color: #eca900;
  font-size: clamp(28px, 2vw, 39px);
  line-height: 1;
  font-weight: 700;

  box-shadow:
    0 0 0 0.4vw rgba(255, 245, 211, 0.65),
    0 0.55vw 1.4vw rgba(226, 166, 0, 0.16);
}

.workflow-step:first-child .workflow-step__number::before,
.workflow-step:last-child .workflow-step__number::after {
  content: "";

  position: absolute;
  top: 50%;

  width: 8px;
  height: 8px;

  border-radius: 50%;
  background: #f0ae00;

  transform: translateY(-50%);
}

.workflow-step:first-child .workflow-step__number::before {
  right: calc(100% + 3.1vw);
}

.workflow-step:last-child .workflow-step__number::after {
  left: calc(100% + 3.1vw);
}

.workflow-step__card {
  min-width: 0;
  min-height: 28vw;
  padding:
    1.2vw
    1.15vw
    1vw;

  display: flex;
  flex-direction: column;

  border: 1px solid rgba(24, 24, 24, 0.045);
  border-radius: clamp(16px, 1vw, 20px);
  background: rgba(255, 255, 255, 0.98);

  box-shadow:
    0 1.1vw 2.6vw rgba(35, 35, 35, 0.055),
    0 0.13vw 0.55vw rgba(35, 35, 35, 0.025);

  transition:
    transform 0.32s ease,
    border-color 0.32s ease,
    box-shadow 0.32s ease;
}

.workflow-step:hover .workflow-step__card {
  transform: translateY(-0.5vw);

  border-color: rgba(240, 174, 0, 0.22);

  box-shadow:
    0 1.55vw 3.2vw rgba(35, 35, 35, 0.085),
    0 0.2vw 0.7vw rgba(35, 35, 35, 0.03);
}

.workflow-step__icon {
  width: 4.3vw;
  height: 4.3vw;
  min-width: 58px;
  min-height: 58px;
  max-width: 83px;
  max-height: 83px;
  margin: 0 auto 0.7vw;

  display: flex;
  align-items: center;
  justify-content: center;
}

.workflow-step__icon img {
  width: 100%;
  height: 100%;

  display: block;
  object-fit: contain;
}

.workflow-step__card h3 {
  min-height: 2.7vw;
  margin: 0;

  color: #181818;
  font-size: clamp(15px, 1.02vw, 20px);
  line-height: 1.3;
  font-weight: 650;
  letter-spacing: -0.025em;
  text-align: center;
}

.workflow-step__description {
  min-height: 6vw;
  margin: 0.75vw 0 0;

  color: #5c5c5c;
  font-size: clamp(12px, 0.79vw, 15px);
  line-height: 1.58;
  font-weight: 400;
  text-align: center;
}

.workflow-step__visual {
  width: 100%;
  margin-top: 0.9vw;
}

.workflow-step__visual img {
  width: 100%;
  height: auto;

  display: block;
  object-fit: contain;

  filter:
    drop-shadow(
      0 0.45vw 0.8vw rgba(36, 36, 36, 0.035)
    );
}

.workflow-step__result {
  min-height: 2.45vw;
  margin-top: auto;
  padding: 0.7vw 0.6vw 0;

  display: flex;
  align-items: center;
  gap: 0.55vw;

  color: #555555;
  font-size: clamp(10px, 0.68vw, 13px);
  line-height: 1.3;
  font-weight: 600;
}

.workflow-step__check {
  position: relative;

  width: 1.15vw;
  height: 1.15vw;
  min-width: 16px;
  min-height: 16px;
  max-width: 22px;
  max-height: 22px;

  flex: 0 0 auto;

  border-radius: 50%;
  background: #f5b600;
}

.workflow-step__check::before {
  content: "";

  position: absolute;
  top: 45%;
  left: 50%;

  width: 38%;
  height: 20%;

  border-left: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;

  transform:
    translate(-50%, -50%)
    rotate(-45deg);
}


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

.workflow-benefits {
  width: 100%;
  margin-top: 1.15vw;
  padding: 1.15vw 1.2vw;

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

  border: 1px solid rgba(24, 24, 24, 0.045);
  border-radius: clamp(16px, 1vw, 20px);
  background: rgba(255, 255, 255, 0.98);

  box-shadow:
    0 0.9vw 2.3vw rgba(35, 35, 35, 0.045);
}

.workflow-benefit {
  min-width: 0;
  padding: 0 1.2vw;

  display: flex;
  align-items: center;
  gap: 0.95vw;

  border-right: 1px solid rgba(24, 24, 24, 0.09);
}

.workflow-benefit:first-child {
  padding-left: 0;
}

.workflow-benefit:last-child {
  padding-right: 0;
  border-right: 0;
}

.workflow-benefit__icon {
  width: 3.55vw;
  height: 3.55vw;
  min-width: 50px;
  min-height: 50px;
  max-width: 69px;
  max-height: 69px;

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

  flex: 0 0 auto;
}

.workflow-benefit__icon img {
  width: 100%;
  height: 100%;

  display: block;
  object-fit: contain;
}

.workflow-benefit h4 {
  margin: 0;

  color: #1c1c1c;
  font-size: clamp(14px, 0.93vw, 18px);
  line-height: 1.25;
  font-weight: 650;
}

.workflow-benefit p {
  margin: 0.35vw 0 0;

  color: #666666;
  font-size: clamp(11px, 0.73vw, 14px);
  line-height: 1.5;
  font-weight: 400;
}

.workflow-mobile-tools {
  display: none;
}


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

.workflow-animations-ready .workflow-intro {
  opacity: 0;
  transform: translateX(-34px);
}

.workflow-animations-ready .workflow-step {
  opacity: 0;
  transform: translateY(38px);
}

.workflow-animations-ready .workflow-benefits {
  opacity: 0;
  transform: translateY(26px);
}

.workflow-animations-ready .workflow-steps::before {
  transform: scaleX(0);
}

.workflow-animations-ready.is-visible .workflow-intro {
  opacity: 1;
  transform: translateX(0);

  transition:
    opacity 0.75s ease,
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.workflow-animations-ready.is-visible .workflow-steps::before {
  transform: scaleX(1);

  transition:
    transform 1.15s 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}

.workflow-animations-ready.is-visible .workflow-step {
  opacity: 1;
  transform: translateY(0);

  transition:
    opacity 0.68s ease,
    transform 0.68s cubic-bezier(0.22, 1, 0.36, 1);
}

.workflow-animations-ready.is-visible .workflow-step:nth-child(1) {
  transition-delay: 0.18s;
}

.workflow-animations-ready.is-visible .workflow-step:nth-child(2) {
  transition-delay: 0.32s;
}

.workflow-animations-ready.is-visible .workflow-step:nth-child(3) {
  transition-delay: 0.46s;
}

.workflow-animations-ready.is-visible .workflow-step:nth-child(4) {
  transition-delay: 0.6s;
}

.workflow-animations-ready.is-visible .workflow-step__number {
  animation:
    workflow-number-pop 0.65s both;
}

.workflow-animations-ready.is-visible .workflow-step:nth-child(1) .workflow-step__number {
  animation-delay: 0.26s;
}

.workflow-animations-ready.is-visible .workflow-step:nth-child(2) .workflow-step__number {
  animation-delay: 0.4s;
}

.workflow-animations-ready.is-visible .workflow-step:nth-child(3) .workflow-step__number {
  animation-delay: 0.54s;
}

.workflow-animations-ready.is-visible .workflow-step:nth-child(4) .workflow-step__number {
  animation-delay: 0.68s;
}

.workflow-animations-ready.is-visible .workflow-benefits {
  opacity: 1;
  transform: translateY(0);

  transition:
    opacity 0.7s 0.78s ease,
    transform 0.7s 0.78s cubic-bezier(0.22, 1, 0.36, 1);
}

.workflow-section.is-visible .workflow-step__visual img {
  animation:
    workflow-visual-float 5s ease-in-out infinite alternate;
}

.workflow-section.is-visible .workflow-step:nth-child(2) .workflow-step__visual img {
  animation-delay: -1.2s;
}

.workflow-section.is-visible .workflow-step:nth-child(3) .workflow-step__visual img {
  animation-delay: -2.4s;
}

.workflow-section.is-visible .workflow-step:nth-child(4) .workflow-step__visual img {
  animation-delay: -3.6s;
}

@keyframes workflow-number-pop {
  0% {
    opacity: 0;
    transform: scale(0.7);
  }

  68% {
    opacity: 1;
    transform: scale(1.08);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes workflow-visual-float {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-5px);
  }
}


/* =========================================================
   WORKFLOW RESPONSIVE
   ========================================================= */

@media (max-width: 1180px) {
  .workflow-section {
    min-height: 0;
  }

  .workflow-section__inner {
    min-height: 0;
    padding: 62px 24px 55px;

    grid-template-columns: 1fr;
    row-gap: 50px;
  }

  .workflow-intro {
    padding-top: 0;
  }

  .workflow-intro h2 {
    font-size: 58px;
  }

  .workflow-intro__text {
    width: 100%;
    max-width: 760px;
    margin-top: 25px;

    font-size: 18px;
  }

  .workflow-button {
    width: 290px;
    height: 62px;
    margin-top: 30px;
    padding: 0 24px;
  }

  .workflow-services {
    width: min(540px, 100%);
    margin-top: 28px;
  }

  .workflow-service {
    min-height: 58px;
    padding: 0 14px;
    gap: 9px;

    font-size: 14px;
  }

  .workflow-service img {
    width: 42px;
    height: 42px;
  }

  .workflow-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px 22px;
  }

  .workflow-steps::before {
    display: none;
  }

  .workflow-step__number {
    width: 72px;
    height: 72px;
    margin-bottom: 16px;

    font-size: 31px;
  }

  .workflow-step:first-child .workflow-step__number::before,
  .workflow-step:last-child .workflow-step__number::after {
    display: none;
  }

  .workflow-step__card {
    min-height: 535px;
    padding: 21px 19px 17px;
  }

  .workflow-step__icon {
    width: 70px;
    height: 70px;
    margin-bottom: 11px;
  }

  .workflow-step__card h3 {
    min-height: 0;
    font-size: 20px;
  }

  .workflow-step__description {
    min-height: 0;
    margin-top: 13px;

    font-size: 15px;
  }

  .workflow-step__visual {
    margin-top: 18px;
  }

  .workflow-step__result {
    min-height: 42px;
    padding-top: 12px;

    font-size: 13px;
  }

  .workflow-benefits {
    margin-top: 24px;
    padding: 20px;
  }

  .workflow-benefit {
    padding: 0 18px;
    gap: 14px;
  }

  .workflow-benefit__icon {
    width: 58px;
    height: 58px;
  }

  .workflow-benefit h4 {
    font-size: 17px;
  }

  .workflow-benefit p {
    margin-top: 6px;

    font-size: 13px;
  }
}

@media (max-width: 900px) {
  .workflow-intro h2 {
    font-size: 52px;
  }

  .workflow-benefits {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .workflow-benefit {
    padding: 18px 0;

    border-right: 0;
    border-bottom: 1px solid rgba(24, 24, 24, 0.09);
  }

  .workflow-benefit:first-child {
    padding-top: 0;
  }

  .workflow-benefit:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }
}


/* =========================================================
   WORKFLOW MOBILE SLIDER
   ========================================================= */

@media (max-width: 620px) {
  .workflow-section__inner {
    padding: 50px 18px 45px;
    row-gap: 37px;
  }

  .workflow-kicker {
    margin-bottom: 20px;

    font-size: 10px;
  }

  .workflow-intro h2 {
    font-size: clamp(41px, 11.6vw, 51px);
    line-height: 1.05;
  }

  .workflow-intro__text {
    margin-top: 23px;

    font-size: 17px;
  }

  .workflow-button {
    width: 100%;
    min-width: 0;
    height: 60px;
    margin-top: 26px;
  }

  .workflow-services {
    width: 100%;
    margin-top: 25px;
  }

  .workflow-service {
    min-height: 82px;
    padding: 0 8px;

    flex-direction: column;
    gap: 7px;

    font-size: 12px;
  }

  .workflow-service:first-child {
    justify-content: center;
    padding-left: 8px;
  }

  .workflow-service img {
    width: 46px;
    height: 46px;
  }

  .workflow-main {
    width: calc(100% + 18px);
  }

  .workflow-steps {
    width: 100%;
    padding:
      5px
      48px
      26px
      0;

    display: flex;
    gap: 14px;

    overflow-x: auto;
    overflow-y: visible;

    scroll-snap-type: x mandatory;
    scroll-padding-left: 0;
    overscroll-behavior-inline: contain;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .workflow-steps::-webkit-scrollbar {
    display: none;
  }

  .workflow-step {
    width: calc(100vw - 66px);

    flex: 0 0 calc(100vw - 66px);

    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .workflow-step__number {
    width: 66px;
    height: 66px;
    margin-bottom: 15px;

    font-size: 29px;
  }

  .workflow-step__card {
    min-height: 550px;
    padding: 21px 18px 17px;
  }

  .workflow-step:hover .workflow-step__card {
    transform: none;
  }

  .workflow-step__description {
    font-size: 15px;
  }

  .workflow-mobile-tools {
    padding: 0 48px 0 0;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
  }

  .workflow-swipe-hint {
    display: flex;
    align-items: center;
    gap: 8px;

    color: #666666;
    font-size: 13px;
    line-height: 1;
    font-weight: 600;
  }

  .workflow-swipe-hint span {
    color: #e9a600;
    font-size: 22px;

    animation:
      workflow-swipe-arrow 1.35s ease-in-out infinite;
  }

  .workflow-slider-dots {
    display: flex;
    align-items: center;
    gap: 7px;
  }

  .workflow-slider-dots button {
    width: 8px;
    height: 8px;
    padding: 0;

    border: 0;
    border-radius: 50%;
    background: #ded8ca;

    cursor: pointer;

    transition:
      width 0.25s ease,
      border-radius 0.25s ease,
      background 0.25s ease;
  }

  .workflow-slider-dots button.is-active {
    width: 25px;

    border-radius: 999px;
    background: #f3b300;
  }

  .workflow-benefits {
    width: calc(100% - 18px);
    margin-top: 28px;
  }

  @keyframes workflow-swipe-arrow {
    0%,
    100% {
      transform: translateX(0);
    }

    50% {
      transform: translateX(6px);
    }
  }
}

@media (prefers-reduced-motion: reduce) {
  .workflow-animations-ready .workflow-intro,
  .workflow-animations-ready .workflow-step,
  .workflow-animations-ready .workflow-benefits,
  .workflow-animations-ready .workflow-steps::before,
  .workflow-step__visual img,
  .workflow-swipe-hint span {
    animation: none !important;
    transition: none !important;
  }

  .workflow-animations-ready .workflow-intro,
  .workflow-animations-ready .workflow-step,
  .workflow-animations-ready .workflow-benefits {
    opacity: 1;
    transform: none;
  }

  .workflow-animations-ready .workflow-steps::before {
    transform: scaleX(1);
  }
}

/* =========================================================
   WORK PORTFOLIO
   ========================================================= */

.work-portfolio {
  position: relative;

  width: 100%;
  min-height: 100svh;
  overflow: hidden;

  background:
    radial-gradient(
      circle at 52% 78%,
      rgba(248, 183, 0, 0.13) 0%,
      rgba(248, 183, 0, 0.035) 27%,
      rgba(255, 255, 255, 0) 52%
    ),
    linear-gradient(
      180deg,
      #ffffff 0%,
      #fffefa 72%,
      #fff9e9 100%
    );
}

.work-portfolio::before {
  content: "";

  position: absolute;
  top: 4vw;
  right: -3vw;

  width: 24vw;
  height: 19vw;

  background:
    repeating-linear-gradient(
      -23deg,
      transparent 0,
      transparent 10px,
      rgba(241, 174, 0, 0.11) 11px,
      rgba(241, 174, 0, 0.11) 12px
    );

  clip-path: polygon(35% 0, 100% 0, 100% 100%, 0 100%);
  pointer-events: none;
}

.work-portfolio::after {
  content: "";

  position: absolute;
  right: 8%;
  bottom: 5%;
  left: 8%;

  height: 7vw;

  background:
    radial-gradient(
      ellipse at center,
      rgba(247, 181, 0, 0.17) 0%,
      rgba(247, 181, 0, 0) 70%
    );

  pointer-events: none;
}

.work-portfolio__inner {
  position: relative;
  z-index: 2;

  width: 100%;
  min-height: 100svh;
  padding:
    clamp(52px, 4vw, 96px)
    5.25vw
    clamp(42px, 3.5vw, 84px);

  display: grid;
  grid-template-rows: auto auto auto;
  row-gap: clamp(28px, 2.2vw, 52px);
}


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

.work-portfolio__head {
  width: 100%;

  display: grid;
  grid-template-columns: 39% 61%;
  align-items: center;
}

.work-portfolio__intro {
  min-width: 0;
}

.work-portfolio__kicker {
  margin-bottom: clamp(20px, 1.5vw, 36px);

  color: #df9e00;
  font-size: clamp(11px, 0.72vw, 17px);
  line-height: 1;
  font-weight: 750;
  letter-spacing: 0.24em;
}

.work-portfolio__intro h2 {
  margin: 0;

  color: #111216;
  font-size: clamp(48px, 3.75vw, 90px);
  line-height: 1.02;
  font-weight: 620;
  letter-spacing: -0.05em;
}

.work-portfolio__intro h2 span {
  color: #eaa600;
}

.work-portfolio__intro > p {
  width: min(92%, 720px);
  margin: clamp(20px, 1.45vw, 35px) 0 0;

  color: #5c5c5c;
  font-size: clamp(15px, 0.98vw, 23px);
  line-height: 1.57;
  font-weight: 400;
}

.work-portfolio__scroll-hint {
  width: fit-content;
  margin-top: clamp(18px, 1.2vw, 29px);

  display: inline-flex;
  align-items: center;
  gap: clamp(8px, 0.55vw, 13px);

  color: #656565;
  font-size: clamp(13px, 0.82vw, 19px);
  line-height: 1;
  font-weight: 500;
}

.work-portfolio__scroll-hint > span:first-child {
  color: #e7a400;
  font-size: clamp(20px, 1.25vw, 30px);
  line-height: 1;

  transition: transform 0.25s ease;
}

.work-portfolio__scroll-hint:hover > span:first-child {
  transform: translateX(5px);
}


/* =========================================================
   PORTFOLIO STATS
   ========================================================= */

.work-portfolio__stats {
  min-width: 0;

  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(22px, 2vw, 48px);
}

.work-portfolio__stat {
  min-width: 0;

  display: flex;
  align-items: center;
  gap: clamp(13px, 0.95vw, 23px);
}

.work-portfolio__stat-icon {
  width: clamp(58px, 3.75vw, 90px);
  height: clamp(58px, 3.75vw, 90px);

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

  flex: 0 0 auto;

  border: 1px solid rgba(237, 169, 0, 0.17);
  border-radius: 50%;

  background:
    linear-gradient(
      145deg,
      #ffffff 0%,
      #fff7dc 100%
    );

  box-shadow:
    0 12px 28px rgba(224, 160, 0, 0.09);
}

.work-portfolio__stat-icon img {
  width: 100%;
  height: 100%;

  display: block;
  object-fit: contain;
}

.work-portfolio__stat > div:last-child {
  min-width: 0;

  display: flex;
  flex-direction: column;
}

.work-portfolio__stat strong {
  color: #181818;
  font-size: clamp(20px, 1.45vw, 35px);
  line-height: 1.1;
  font-weight: 680;
  letter-spacing: -0.035em;
}

.work-portfolio__stat span {
  margin-top: clamp(4px, 0.3vw, 7px);

  color: #666666;
  font-size: clamp(12px, 0.78vw, 19px);
  line-height: 1.35;
  font-weight: 400;
}


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

.work-portfolio__slider-shell {
  position: relative;
  min-width: 0;
}

.work-portfolio__cards {
  width: 100%;

  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(22px, 1.9vw, 46px);
}

.work-portfolio__card {
  position: relative;

  min-width: 0;
  min-height: clamp(420px, 29vw, 590px);
  overflow: hidden;

  display: flex;
  flex-direction: column;

  border: 1px solid rgba(25, 25, 25, 0.045);
  border-radius: clamp(19px, 1.35vw, 32px);
  background: #ffffff;

  box-shadow:
    0 1.4vw 3.4vw rgba(34, 34, 34, 0.085),
    0 0.2vw 0.7vw rgba(34, 34, 34, 0.025);

  scroll-margin-inline-start: 0;

  transition:
    transform 0.32s ease,
    box-shadow 0.32s ease;
}

.work-portfolio__card:hover {
  transform: translateY(-8px);

  box-shadow:
    0 1.8vw 4vw rgba(34, 34, 34, 0.12),
    0 0.3vw 0.9vw rgba(34, 34, 34, 0.035);
}

.work-portfolio__card::after {
  content: "";

  position: absolute;
  right: 8%;
  bottom: -6%;
  left: 8%;

  height: 17%;

  border-radius: 50%;
  pointer-events: none;
}

.work-portfolio__card--yellow::after {
  background:
    radial-gradient(
      ellipse,
      rgba(247, 181, 0, 0.2) 0%,
      rgba(247, 181, 0, 0) 72%
    );
}

.work-portfolio__card--teal::after {
  background:
    radial-gradient(
      ellipse,
      rgba(0, 144, 139, 0.16) 0%,
      rgba(0, 144, 139, 0) 72%
    );
}

.work-portfolio__card--red::after {
  background:
    radial-gradient(
      ellipse,
      rgba(214, 48, 39, 0.16) 0%,
      rgba(214, 48, 39, 0) 72%
    );
}

.work-portfolio__card-image {
  position: relative;
  z-index: 2;

  width: 100%;
  height: clamp(265px, 19.5vw, 395px);
  padding:
    clamp(18px, 1.3vw, 31px)
    clamp(15px, 1.1vw, 26px);

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

  overflow: hidden;

  background:
    radial-gradient(
      circle at 50% 50%,
      #ffffff 0%,
      #f8f7f3 72%,
      #f3f1ea 100%
    );
}

.work-portfolio__card-image img {
  width: 100%;
  height: 100%;
  max-width: none;

  display: block;
  object-fit: contain;

  transition: transform 0.42s ease;
}

.work-portfolio__card:hover
.work-portfolio__card-image img {
  transform: scale(1.025);
}

.work-portfolio__card-body {
  position: relative;
  z-index: 3;

  min-height: clamp(135px, 9.5vw, 190px);
  padding:
    clamp(19px, 1.35vw, 32px)
    clamp(20px, 1.5vw, 36px);

  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(15px, 1vw, 24px);

  background: #ffffff;
}

.work-portfolio__card-copy {
  min-width: 0;
}

.work-portfolio__card-type {
  display: block;
  margin-bottom: clamp(9px, 0.6vw, 15px);

  font-size: clamp(10px, 0.62vw, 15px);
  line-height: 1;
  font-weight: 750;
  letter-spacing: 0.18em;
}

.work-portfolio__card--yellow
.work-portfolio__card-type {
  color: #e6a200;
}

.work-portfolio__card--teal
.work-portfolio__card-type {
  color: #008d89;
}

.work-portfolio__card--red
.work-portfolio__card-type {
  color: #dc3a31;
}

.work-portfolio__card h3 {
  margin: 0;

  color: #171717;
  font-size: clamp(19px, 1.28vw, 31px);
  line-height: 1.2;
  font-weight: 670;
  letter-spacing: -0.035em;
}

.work-portfolio__card p {
  margin: clamp(6px, 0.4vw, 10px) 0 0;

  color: #686868;
  font-size: clamp(13px, 0.82vw, 20px);
  line-height: 1.4;
}

.work-portfolio__card-link {
  width: clamp(50px, 3.3vw, 80px);
  height: clamp(50px, 3.3vw, 80px);

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

  flex: 0 0 auto;

  border-radius: clamp(11px, 0.8vw, 18px);

  transition: transform 0.25s ease;
}

.work-portfolio__card-link:hover,
.work-portfolio__card-link:focus-visible {
  transform:
    translateY(-3px)
    rotate(-3deg);

  outline: none;
}

.work-portfolio__card-link img {
  width: 100%;
  height: 100%;

  display: block;
  object-fit: contain;
}


/* =========================================================
   DESKTOP SLIDER ARROWS
   ========================================================= */

.work-portfolio__slider-arrow {
  position: absolute;
  top: 48%;
  z-index: 8;

  width: clamp(48px, 3.4vw, 82px);
  height: clamp(48px, 3.4vw, 82px);

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

  transform: translateY(-50%);

  border-radius: 50%;

  transition:
    transform 0.25s ease,
    filter 0.25s ease;
}

.work-portfolio__slider-arrow:hover,
.work-portfolio__slider-arrow:focus-visible {
  transform:
    translateY(-50%)
    scale(1.08);

  outline: none;
}

.work-portfolio__slider-arrow img {
  width: 100%;
  height: 100%;

  display: block;
  object-fit: contain;
}

.work-portfolio__slider-arrow--left {
  left: clamp(-34px, -2.15vw, -55px);
}

.work-portfolio__slider-arrow--right {
  right: clamp(-34px, -2.15vw, -55px);
}

.work-portfolio__swipe-hint {
  display: none;
}


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

.work-portfolio__cta {
  position: relative;
  z-index: 3;

  width: 100%;
  min-height: clamp(86px, 6.2vw, 150px);
  padding:
    clamp(15px, 1vw, 24px)
    clamp(21px, 1.55vw, 38px);

  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  align-items: center;
  gap: clamp(17px, 1.3vw, 31px);

  border: 1px solid rgba(235, 170, 0, 0.16);
  border-radius: clamp(16px, 1.15vw, 28px);

  background:
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.98) 0%,
      rgba(255, 253, 246, 0.98) 100%
    );

  box-shadow:
    0 1.2vw 3vw rgba(225, 161, 0, 0.12);
}

.work-portfolio__cta-icon {
  width: clamp(58px, 4vw, 96px);
  height: clamp(58px, 4vw, 96px);

  flex: 0 0 auto;
}

.work-portfolio__cta-icon img {
  width: 100%;
  height: 100%;

  display: block;
  object-fit: contain;
}

.work-portfolio__cta-copy {
  min-width: 0;

  display: flex;
  flex-direction: column;
}

.work-portfolio__cta-copy strong {
  color: #181818;
  font-size: clamp(17px, 1.15vw, 28px);
  line-height: 1.25;
  font-weight: 680;
  letter-spacing: -0.025em;
}

.work-portfolio__cta-copy span {
  margin-top: clamp(4px, 0.3vw, 8px);

  color: #686868;
  font-size: clamp(13px, 0.82vw, 20px);
  line-height: 1.35;
}

.work-portfolio__cta-button {
  min-width: clamp(190px, 13.5vw, 325px);
  min-height: clamp(54px, 3.45vw, 82px);
  padding: 0 clamp(18px, 1.25vw, 30px);

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

  border-radius: clamp(10px, 0.7vw, 16px);
  background: #f7b500;

  color: #171717;
  font-size: clamp(14px, 0.86vw, 21px);
  line-height: 1;
  font-weight: 680;
  white-space: nowrap;

  box-shadow:
    0 13px 30px rgba(235, 174, 0, 0.2);

  transition:
    transform 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
}

.work-portfolio__cta-button:hover,
.work-portfolio__cta-button:focus-visible {
  transform: translateY(-3px);
  background: #ffc426;

  box-shadow:
    0 17px 36px rgba(235, 174, 0, 0.28);

  outline: none;
}

.work-portfolio__process-link {
  min-width: clamp(175px, 12vw, 290px);
  padding-left: clamp(18px, 1.3vw, 31px);

  display: flex;
  align-items: center;
  gap: clamp(10px, 0.7vw, 17px);

  border-left: 1px solid rgba(28, 28, 28, 0.1);
}

.work-portfolio__process-link img {
  width: clamp(45px, 3vw, 72px);
  height: clamp(45px, 3vw, 72px);

  display: block;
  flex: 0 0 auto;
}

.work-portfolio__process-link > span {
  display: flex;
  flex-direction: column;
}

.work-portfolio__process-link strong {
  color: #272727;
  font-size: clamp(13px, 0.8vw, 19px);
  line-height: 1.25;
  font-weight: 650;
}

.work-portfolio__process-link small {
  margin-top: 3px;

  color: #777777;
  font-size: clamp(11px, 0.7vw, 16px);
  line-height: 1.25;
}


/* =========================================================
   PORTFOLIO CASE MODAL
   ========================================================= */

.work-portfolio__card[data-portfolio-card] {
  cursor: pointer;
}

.work-portfolio__card-link {
  padding: 0;

  border: 0;
  background: transparent;

  font: inherit;
  cursor: pointer;
}

body.work-portfolio-modal-open {
  overflow: hidden;
}


/* PROJECT COLORS */

.work-portfolio-modal {
  --case-accent: #f2b300;
  --case-accent-dark: #9b7100;
  --case-soft: #fff7dc;
  --case-surface: #fffdf7;

  position: fixed;
  inset: 0;
  z-index: 1800;

  padding: clamp(12px, 1.5vw, 32px);

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

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition:
    opacity 0.28s ease,
    visibility 0.28s ease;
}

.work-portfolio-modal[data-project="hand"] {
  --case-accent: #169f99;
  --case-accent-dark: #08746f;
  --case-soft: #e8f8f6;
  --case-surface: #f8fffe;
}

.work-portfolio-modal[data-project="law"] {
  --case-accent: #ce1822;
  --case-accent-dark: #941018;
  --case-soft: #fff0f1;
  --case-surface: #fffafb;
}

.work-portfolio-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}


/* BACKDROP */

.work-portfolio-modal__backdrop {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;
  padding: 0;

  border: 0;
  background: rgba(13, 14, 17, 0.82);

  cursor: pointer;
}


/* DIALOG */

.work-portfolio-modal__dialog {
  position: relative;
  z-index: 2;

  width: min(1540px, calc(100vw - 32px));
  max-height: calc(100svh - 32px);

  overflow: hidden;

  border: 1px solid rgba(25, 25, 25, 0.08);
  border-radius: clamp(22px, 1.5vw, 34px);
  background: #ffffff;

  box-shadow:
    0 42px 120px rgba(0, 0, 0, 0.34);

  transform:
    translateY(28px)
    scale(0.985);

  transition:
    transform 0.38s cubic-bezier(0.22, 1, 0.36, 1);

  outline: none;
}

.work-portfolio-modal.is-open
.work-portfolio-modal__dialog {
  transform:
    translateY(0)
    scale(1);
}

.work-portfolio-modal__scroll {
  width: 100%;
  max-height: calc(100svh - 32px);

  overflow-x: hidden;
  overflow-y: auto;

  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color:
    var(--case-accent)
    #eeeeea;
}

.work-portfolio-modal__scroll::-webkit-scrollbar {
  width: 10px;
}

.work-portfolio-modal__scroll::-webkit-scrollbar-track {
  background: #eeeeea;
}

.work-portfolio-modal__scroll::-webkit-scrollbar-thumb {
  border: 2px solid #eeeeea;
  border-radius: 999px;
  background: var(--case-accent);
}


/* CLOSE */

.work-portfolio-modal__close {
  position: absolute;
  top: clamp(15px, 1.1vw, 24px);
  right: clamp(15px, 1.1vw, 24px);
  z-index: 10;

  width: clamp(45px, 3vw, 58px);
  height: clamp(45px, 3vw, 58px);
  padding: 0;

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

  border: 1px solid rgba(22, 22, 22, 0.1);
  border-radius: 50%;
  background: #ffffff;

  color: #1a1a1a;
  font-size: clamp(28px, 1.8vw, 37px);
  line-height: 1;

  box-shadow:
    0 12px 28px rgba(25, 25, 25, 0.1);

  cursor: pointer;

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

.work-portfolio-modal__close:hover,
.work-portfolio-modal__close:focus-visible {
  transform:
    rotate(7deg)
    scale(1.05);

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

  outline: none;
}


/* CASE HEADER */

.work-portfolio-modal__case-head {
  padding:
    clamp(42px, 3.6vw, 78px)
    clamp(32px, 4vw, 86px)
    clamp(31px, 2.6vw, 56px);

  display: grid;
  grid-template-columns:
    minmax(0, 1fr)
    minmax(210px, 270px);
  gap: clamp(32px, 3vw, 70px);
  align-items: end;

  background:
    linear-gradient(
      135deg,
      var(--case-surface) 0%,
      #ffffff 70%
    );
}

.work-portfolio-modal__case-copy {
  min-width: 0;
}

.work-portfolio-modal__eyebrow,
.work-portfolio-modal__section-kicker {
  display: block;

  color: var(--case-accent-dark);
  font-size: clamp(10px, 0.7vw, 13px);
  line-height: 1.3;
  font-weight: 750;
  letter-spacing: 0.2em;
}

.work-portfolio-modal__case-head h3 {
  max-width: 1000px;
  margin: clamp(17px, 1.25vw, 27px) 0 0;

  color: #111216;
  font-size: clamp(46px, 4.1vw, 82px);
  line-height: 1;
  font-weight: 630;
  letter-spacing: -0.052em;
}

.work-portfolio-modal__lead {
  max-width: 970px;
  margin: clamp(21px, 1.5vw, 32px) 0 0;

  color: #55575c;
  font-size: clamp(17px, 1.12vw, 22px);
  line-height: 1.58;
  font-weight: 400;
}

.work-portfolio-modal__case-actions {
  display: flex;
  align-items: stretch;
  flex-direction: column;
  gap: 13px;
}

.work-portfolio-modal__status {
  min-height: 45px;
  padding: 0 18px;

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

  border: 1px solid var(--case-accent);
  border-radius: 999px;
  background: var(--case-soft);

  color: var(--case-accent-dark);
  font-size: 13px;
  line-height: 1;
  font-weight: 700;
}

.work-portfolio-modal__status::before {
  content: "";

  width: 8px;
  height: 8px;
  margin-right: 9px;

  border-radius: 50%;
  background: var(--case-accent);
}

.work-portfolio-modal__live-link {
  min-height: 59px;
  padding: 0 21px;

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

  border-radius: 14px;
  background: #17181b;

  color: #ffffff;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 650;

  transition:
    transform 0.22s ease,
    background 0.22s ease;
}

.work-portfolio-modal__live-link:hover,
.work-portfolio-modal__live-link:focus-visible {
  transform: translateY(-3px);

  background: var(--case-accent-dark);

  outline: none;
}

.work-portfolio-modal__live-link span:last-child {
  font-size: 22px;
}


/* META */

.work-portfolio-modal__meta {
  margin: 0 clamp(32px, 4vw, 86px);

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

  border: 1px solid rgba(24, 24, 24, 0.08);
  border-radius: 17px;
  background: #ffffff;

  box-shadow:
    0 16px 38px rgba(31, 31, 31, 0.06);
}

.work-portfolio-modal__meta-item {
  min-width: 0;
  min-height: 94px;
  padding: 19px 22px;

  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 8px;

  border-right: 1px solid rgba(24, 24, 24, 0.08);
}

.work-portfolio-modal__meta-item:last-child {
  border-right: 0;
}

.work-portfolio-modal__meta-item span {
  color: #888888;
  font-size: 11px;
  line-height: 1;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.work-portfolio-modal__meta-item strong {
  color: #242424;
  font-size: clamp(13px, 0.9vw, 17px);
  line-height: 1.35;
  font-weight: 650;
}


/* SHOWCASE */

.work-portfolio-modal__showcase {
  min-height: clamp(420px, 38vw, 700px);
  margin:
    clamp(30px, 2.6vw, 56px)
    clamp(32px, 4vw, 86px)
    0;
  padding:
    clamp(24px, 2.2vw, 48px);

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

  overflow: hidden;

  border: 1px solid rgba(24, 24, 24, 0.06);
  border-radius: clamp(20px, 1.5vw, 31px);
  background:
    radial-gradient(
      circle at center,
      var(--case-soft) 0%,
      #ffffff 72%
    );
}

.work-portfolio-modal__showcase img {
  width: min(100%, 1260px);
  max-height: 650px;

  display: block;
  object-fit: contain;
}


/* OVERVIEW */

.work-portfolio-modal__overview {
  padding:
    clamp(34px, 3.2vw, 68px)
    clamp(32px, 4vw, 86px);

  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 1.25vw, 25px);
}

.work-portfolio-modal__insight {
  min-width: 0;
  padding:
    clamp(24px, 1.8vw, 37px);

  border: 1px solid rgba(24, 24, 24, 0.07);
  border-radius: 20px;
  background: #ffffff;

  box-shadow:
    0 14px 34px rgba(30, 30, 30, 0.055);
}

.work-portfolio-modal__insight-number {
  width: 44px;
  height: 44px;

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

  border-radius: 12px;
  background: var(--case-soft);

  color: var(--case-accent-dark);
  font-size: 13px;
  line-height: 1;
  font-weight: 750;
}

.work-portfolio-modal__insight h4 {
  margin: 23px 0 0;

  color: #17181b;
  font-size: clamp(21px, 1.35vw, 27px);
  line-height: 1.2;
  font-weight: 650;
  letter-spacing: -0.03em;
}

.work-portfolio-modal__insight p {
  margin: 14px 0 0;

  color: #5b5c61;
  font-size: clamp(14px, 0.92vw, 17px);
  line-height: 1.65;
}


/* SOLUTION */

.work-portfolio-modal__solution {
  padding:
    clamp(43px, 3.8vw, 80px)
    clamp(32px, 4vw, 86px);

  display: grid;
  grid-template-columns:
    minmax(280px, 0.75fr)
    minmax(0, 1.25fr);
  gap: clamp(40px, 5vw, 105px);

  background: var(--case-surface);
}

.work-portfolio-modal__section-copy h4,
.work-portfolio-modal__devices-head h4,
.work-portfolio-modal__technology h4,
.work-portfolio-modal__result h4 {
  margin: 17px 0 0;

  color: #141518;
  font-size: clamp(31px, 2.4vw, 48px);
  line-height: 1.08;
  font-weight: 630;
  letter-spacing: -0.045em;
}

.work-portfolio-modal__section-copy p,
.work-portfolio-modal__technology > p {
  margin: 23px 0 0;

  color: #57595e;
  font-size: clamp(15px, 1vw, 18px);
  line-height: 1.68;
}

.work-portfolio-modal__features {
  min-width: 0;
}

.work-portfolio-modal__features-head {
  padding-bottom: 18px;

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

  border-bottom: 1px solid rgba(24, 24, 24, 0.1);
}

.work-portfolio-modal__features-head span {
  color: #26272a;
  font-size: 17px;
  font-weight: 650;
}

.work-portfolio-modal__features-head strong {
  color: var(--case-accent-dark);
  font-size: 14px;
}

.work-portfolio-modal__features ul {
  margin: 22px 0 0;
  padding: 0;

  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px;

  list-style: none;
}

.work-portfolio-modal__features li {
  position: relative;

  min-height: 64px;
  padding: 14px 16px 14px 48px;

  display: flex;
  align-items: center;

  border: 1px solid rgba(24, 24, 24, 0.07);
  border-radius: 13px;
  background: #ffffff;

  color: #35363a;
  font-size: clamp(13px, 0.88vw, 16px);
  line-height: 1.4;
  font-weight: 550;
}

.work-portfolio-modal__features li::before {
  content: "✓";

  position: absolute;
  left: 17px;

  width: 22px;
  height: 22px;

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

  border-radius: 7px;
  background: var(--case-soft);

  color: var(--case-accent-dark);
  font-size: 13px;
  font-weight: 750;
}


/* DEVICES */

.work-portfolio-modal__devices {
  padding:
    clamp(43px, 3.8vw, 80px)
    clamp(32px, 4vw, 86px);
}

.work-portfolio-modal__devices-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.75fr);
  gap: 50px;
  align-items: end;
}

.work-portfolio-modal__devices-head p {
  margin: 0;

  color: #626368;
  font-size: clamp(14px, 0.92vw, 17px);
  line-height: 1.65;
}

.work-portfolio-modal__device-grid {
  margin-top: clamp(30px, 2.7vw, 56px);

  display: grid;
  grid-template-columns:
    minmax(0, 1.25fr)
    minmax(0, 0.85fr)
    minmax(190px, 0.5fr);
  gap: clamp(15px, 1.3vw, 27px);
  align-items: stretch;
}

.work-portfolio-modal__device {
  min-width: 0;
  min-height: 380px;
  margin: 0;
  padding:
    19px
    clamp(17px, 1.4vw, 28px)
    clamp(21px, 1.8vw, 35px);

  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;

  overflow: hidden;

  border: 1px solid rgba(24, 24, 24, 0.07);
  border-radius: 20px;
  background:
    linear-gradient(
      160deg,
      var(--case-surface) 0%,
      #ffffff 72%
    );
}

.work-portfolio-modal__device figcaption {
  width: 100%;
  margin-bottom: 18px;

  color: #77787c;
  font-size: 11px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.work-portfolio-modal__device img {
  width: 100%;
  max-height: 430px;

  display: block;
  object-fit: contain;
}

.work-portfolio-modal__device--mobile img {
  max-height: 470px;
}


/* TECHNOLOGY + RESULT */

.work-portfolio-modal__bottom {
  padding:
    clamp(43px, 3.8vw, 80px)
    clamp(32px, 4vw, 86px);

  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(26px, 2.5vw, 52px);

  background: #f8f8f6;
}

.work-portfolio-modal__technology,
.work-portfolio-modal__result {
  min-width: 0;
  padding:
    clamp(25px, 2vw, 40px);

  border: 1px solid rgba(24, 24, 24, 0.07);
  border-radius: 21px;
  background: #ffffff;
}

.work-portfolio-modal__technology ul {
  margin: 27px 0 0;
  padding: 0;

  display: flex;
  flex-wrap: wrap;
  gap: 10px;

  list-style: none;
}

.work-portfolio-modal__technology li {
  padding: 10px 14px;

  border: 1px solid rgba(24, 24, 24, 0.09);
  border-radius: 999px;
  background: var(--case-surface);

  color: #38393d;
  font-size: 13px;
  line-height: 1;
  font-weight: 600;
}

.work-portfolio-modal__result {
  border-color: var(--case-accent);
  background:
    linear-gradient(
      145deg,
      var(--case-surface) 0%,
      #ffffff 82%
    );
}

.work-portfolio-modal__result > p {
  margin: 22px 0 0;

  color: #4e5055;
  font-size: clamp(15px, 1vw, 18px);
  line-height: 1.7;
}

.work-portfolio-modal__result-note {
  margin-top: 26px;
  padding: 16px 17px;

  display: flex;
  align-items: flex-start;
  gap: 13px;

  border-radius: 13px;
  background: #ffffff;
}

.work-portfolio-modal__result-note > span {
  width: 26px;
  height: 26px;

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

  flex: 0 0 auto;

  border-radius: 8px;
  background: var(--case-soft);

  color: var(--case-accent-dark);
  font-size: 14px;
  font-weight: 750;
}

.work-portfolio-modal__result-note p {
  margin: 1px 0 0;

  color: #6b6c70;
  font-size: 13px;
  line-height: 1.5;
}


/* FOOTER CTA */

.work-portfolio-modal__footer {
  padding:
    clamp(30px, 2.6vw, 54px)
    clamp(32px, 4vw, 86px);

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

  background: #18191c;
}

.work-portfolio-modal__footer > div {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.work-portfolio-modal__footer > div > span {
  color: var(--case-accent);
  font-size: 12px;
  line-height: 1;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.work-portfolio-modal__footer strong {
  color: #ffffff;
  font-size: clamp(20px, 1.45vw, 29px);
  line-height: 1.3;
  font-weight: 600;
}

.work-portfolio-modal__contact {
  min-width: clamp(260px, 19vw, 360px);
  min-height: 64px;
  padding: 0 22px;

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

  border-radius: 14px;
  background: var(--case-accent);

  color: #151515;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 680;

  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease;
}

.work-portfolio-modal__contact:hover,
.work-portfolio-modal__contact:focus-visible {
  transform: translateY(-3px);

  box-shadow:
    0 15px 32px rgba(0, 0, 0, 0.2);

  outline: none;
}

.work-portfolio-modal__contact span:last-child {
  font-size: 24px;
}


/* TABLET */

@media (max-width: 1180px) {
  .work-portfolio-modal__case-head {
    grid-template-columns: 1fr;
  }

  .work-portfolio-modal__case-actions {
    max-width: 340px;
  }

  .work-portfolio-modal__meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .work-portfolio-modal__meta-item:nth-child(2) {
    border-right: 0;
  }

  .work-portfolio-modal__meta-item:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(24, 24, 24, 0.08);
  }

  .work-portfolio-modal__overview {
    grid-template-columns: 1fr;
  }

  .work-portfolio-modal__solution {
    grid-template-columns: 1fr;
  }

  .work-portfolio-modal__devices-head {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .work-portfolio-modal__device-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .work-portfolio-modal__device--mobile {
    grid-column: 1 / -1;
  }

  .work-portfolio-modal__device--mobile img {
    max-height: 410px;
  }

  .work-portfolio-modal__bottom {
    grid-template-columns: 1fr;
  }
}


/* MOBILE */

@media (max-width: 620px) {
  .work-portfolio-modal__scroll {
    max-height: calc(100svh - 20px);
  }

  .work-portfolio-modal__case-head {
    padding:
      66px
      20px
      28px;

    gap: 26px;
  }

  .work-portfolio-modal__case-head h3 {
    font-size: clamp(38px, 11vw, 48px);
    line-height: 1.02;
  }

  .work-portfolio-modal__lead {
    font-size: 16px;
  }

  .work-portfolio-modal__case-actions {
    width: 100%;
    max-width: none;
  }

  .work-portfolio-modal__meta {
    margin: 0 20px;

    grid-template-columns: 1fr;

    border-radius: 15px;
  }

  .work-portfolio-modal__meta-item,
  .work-portfolio-modal__meta-item:nth-child(2) {
    min-height: 77px;

    border-right: 0;
    border-bottom: 1px solid rgba(24, 24, 24, 0.08);
  }

  .work-portfolio-modal__meta-item:last-child {
    border-bottom: 0;
  }

  .work-portfolio-modal__showcase {
    min-height: 260px;
    margin: 25px 20px 0;
    padding: 16px;

    border-radius: 17px;
  }

  .work-portfolio-modal__overview,
  .work-portfolio-modal__solution,
  .work-portfolio-modal__devices,
  .work-portfolio-modal__bottom {
    padding:
      36px
      20px;
  }

  .work-portfolio-modal__overview {
    gap: 14px;
  }

  .work-portfolio-modal__insight {
    padding: 22px 19px;
  }

  .work-portfolio-modal__section-copy h4,
  .work-portfolio-modal__devices-head h4,
  .work-portfolio-modal__technology h4,
  .work-portfolio-modal__result h4 {
    font-size: 31px;
  }

  .work-portfolio-modal__features ul {
    grid-template-columns: 1fr;
  }

  .work-portfolio-modal__device-grid {
    grid-template-columns: 1fr;
  }

  .work-portfolio-modal__device--mobile {
    grid-column: auto;
  }

  .work-portfolio-modal__device {
    min-height: 280px;
  }

  .work-portfolio-modal__footer {
    padding:
      29px
      20px;

    align-items: stretch;
    flex-direction: column;
  }

  .work-portfolio-modal__contact {
    width: 100%;
    min-width: 0;
  }
}


/* REDUCED MOTION */

@media (prefers-reduced-motion: reduce) {
  .work-portfolio-modal,
  .work-portfolio-modal__dialog,
  .work-portfolio-modal__close,
  .work-portfolio-modal__live-link,
  .work-portfolio-modal__contact {
    transition: none !important;
  }
}

/* =========================================================
   PORTFOLIO RESPONSIVE — 1180
   ========================================================= */

@media (max-width: 1180px) {
  .work-portfolio__inner {
    min-height: 0;
    padding: 58px 24px 52px;
  }

  .work-portfolio__head {
    grid-template-columns: 38% 62%;
  }

  .work-portfolio__intro h2 {
    font-size: 50px;
  }

  .work-portfolio__stats {
    gap: 18px;
  }

  .work-portfolio__stat {
    gap: 11px;
  }

  .work-portfolio__stat-icon {
    width: 58px;
    height: 58px;
  }

  .work-portfolio__stat strong {
    font-size: 21px;
  }

  .work-portfolio__stat span {
    font-size: 12px;
  }

  .work-portfolio__card {
    min-height: 430px;
  }

  .work-portfolio__card-image {
    height: 275px;
  }

  .work-portfolio__card-body {
    min-height: 145px;
    padding: 21px 19px;
  }

  .work-portfolio__card h3 {
    font-size: 20px;
  }

  .work-portfolio__card-link {
    width: 51px;
    height: 51px;
  }

  .work-portfolio__cta {
    grid-template-columns: auto minmax(0, 1fr) auto;
  }

  .work-portfolio__process-link {
    grid-column: 2 / -1;

    width: fit-content;
    padding: 13px 0 0;
    border-left: 0;
  }
}


/* =========================================================
   PORTFOLIO RESPONSIVE — TABLET SLIDER
   ========================================================= */

@media (max-width: 900px) {
  .work-portfolio__head {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .work-portfolio__intro h2 {
    font-size: 58px;
  }

  .work-portfolio__intro > p {
    max-width: 720px;
    font-size: 18px;
  }

  .work-portfolio__stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .work-portfolio__slider-shell {
    width: calc(100% + 24px);
  }

  .work-portfolio__cards {
    width: 100%;
    padding:
      4px
      clamp(100px, 15vw, 150px)
      28px
      0;

    display: flex;
    gap: 20px;

    overflow-x: auto;
    overflow-y: visible;

    scroll-snap-type: x mandatory;
    scroll-padding-left: 0;
    overscroll-behavior-inline: contain;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .work-portfolio__cards::-webkit-scrollbar {
    display: none;
  }

  .work-portfolio__card {
    width: min(620px, 72vw);
    min-height: 490px;

    flex: 0 0 min(620px, 72vw);

    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .work-portfolio__card-image {
    height: 325px;
  }

  .work-portfolio__slider-arrow {
    display: none;
  }

  .work-portfolio__swipe-hint {
    padding-right: 24px;

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

    color: #666666;
    font-size: 13px;
    font-weight: 600;
  }

  .work-portfolio__swipe-hint > span:last-child {
    color: #e5a200;
    font-size: 22px;
  }

  .work-portfolio__cta {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .work-portfolio__cta-button {
    grid-column: 1 / -1;

    width: 100%;
  }

  .work-portfolio__process-link {
    grid-column: 1 / -1;
  }

  .work-portfolio-modal__dialog {
    grid-template-columns: 1fr;
  }

  .work-portfolio-modal__visual {
    min-height: 430px;
  }
}


/* =========================================================
   PORTFOLIO RESPONSIVE — MOBILE
   ========================================================= */

@media (max-width: 620px) {
  .work-portfolio__inner {
    padding: 48px 18px 42px;
    row-gap: 34px;
  }

  .work-portfolio::before {
    display: none;
  }

  .work-portfolio__kicker {
    margin-bottom: 19px;

    font-size: 10px;
  }

  .work-portfolio__intro h2 {
    font-size: clamp(42px, 11.8vw, 52px);
    line-height: 1.03;
  }

  .work-portfolio__intro > p {
    margin-top: 22px;

    font-size: 17px;
    line-height: 1.53;
  }

  .work-portfolio__scroll-hint {
    margin-top: 18px;

    font-size: 13px;
  }

  .work-portfolio__stats {
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .work-portfolio__stat {
    min-height: 76px;
    padding: 10px 13px;

    border: 1px solid rgba(229, 164, 0, 0.12);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.92);
  }

  .work-portfolio__stat-icon {
    width: 54px;
    height: 54px;
  }

  .work-portfolio__stat strong {
    font-size: 20px;
  }

  .work-portfolio__stat span {
    font-size: 13px;
  }

  .work-portfolio__slider-shell {
    width: calc(100% + 18px);
  }

  .work-portfolio__cards {
    padding:
      4px
      54px
      26px
      0;

    gap: 14px;
  }

  .work-portfolio__card {
    width: calc(100vw - 64px);
    min-height: 455px;

    flex: 0 0 calc(100vw - 64px);

    border-radius: 18px;
  }

  .work-portfolio__card:hover {
    transform: none;
  }

  .work-portfolio__card-image {
    height: 285px;
    padding: 14px 10px;
  }

  .work-portfolio__card-body {
    min-height: 160px;
    padding: 21px 18px;
  }

  .work-portfolio__card-type {
    font-size: 10px;
  }

  .work-portfolio__card h3 {
    font-size: 20px;
  }

  .work-portfolio__card p {
    font-size: 14px;
  }

  .work-portfolio__card-link {
    width: 52px;
    height: 52px;
  }

  .work-portfolio__swipe-hint {
    padding-right: 54px;
  }

  .work-portfolio__cta {
    padding: 21px 18px;

    grid-template-columns: auto minmax(0, 1fr);
    gap: 15px;

    border-radius: 17px;
  }

  .work-portfolio__cta-icon {
    width: 58px;
    height: 58px;
  }

  .work-portfolio__cta-copy strong {
    font-size: 17px;
  }

  .work-portfolio__cta-copy span {
    font-size: 13px;
  }

  .work-portfolio__cta-button {
    min-width: 0;
    min-height: 58px;

    font-size: 15px;
  }

  .work-portfolio__process-link {
    width: 100%;
    padding-top: 16px;
  }

  .work-portfolio-modal {
    padding: 10px;

    align-items: flex-end;
  }

  .work-portfolio-modal__dialog {
    width: 100%;
    max-height: calc(100svh - 20px);

    border-radius: 22px 22px 14px 14px;
  }

  .work-portfolio-modal__visual {
    min-height: 300px;
    padding: 45px 18px 20px;
  }

  .work-portfolio-modal__visual img {
    max-height: 270px;
  }

  .work-portfolio-modal__content {
    padding: 26px 20px 22px;
  }

  .work-portfolio-modal__content h3 {
    margin-top: 14px;

    font-size: 34px;
  }

  .work-portfolio-modal__content p {
    margin-top: 18px;

    font-size: 16px;
  }
}


/* =========================================================
   PORTFOLIO RESPONSIVE — 390
   ========================================================= */

@media (max-width: 390px) {
  .work-portfolio__inner {
    padding-right: 16px;
    padding-left: 16px;
  }

  .work-portfolio__intro h2 {
    font-size: 41px;
  }

  .work-portfolio__intro > p {
    font-size: 16px;
  }

  .work-portfolio__card {
    width: calc(100vw - 58px);
    flex-basis: calc(100vw - 58px);
  }

  .work-portfolio__card-image {
    height: 260px;
  }

  .work-portfolio__card h3 {
    font-size: 18px;
  }
}


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

@media (prefers-reduced-motion: reduce) {
  .work-portfolio__card,
  .work-portfolio__card-image img,
  .work-portfolio__card-link,
  .work-portfolio__scroll-hint > span:first-child,
  .work-portfolio__cta-button,
  .work-portfolio-modal__dialog,
  .work-portfolio-modal__close {
    transition: none !important;
  }
}

/* =========================================================
   ABOUT STUDIO
   ========================================================= */

.about-studio {
  position: relative;

  width: 100%;
  min-height: 0;
  overflow: hidden;

  background:
    radial-gradient(
      circle at 78% 34%,
      rgba(247, 182, 0, 0.13) 0%,
      rgba(247, 182, 0, 0.045) 25%,
      rgba(255, 255, 255, 0) 52%
    ),
    linear-gradient(
      180deg,
      #fffefa 0%,
      #ffffff 59%,
      #faf9f5 100%
    );
}

.about-studio::after {
  content: "";

  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;

  height: clamp(48px, 4.5vw, 110px);

  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(224, 222, 214, 0.44) 100%
    );

  pointer-events: none;
}

.about-studio__inner {
  position: relative;
  z-index: 2;

  width: 100%;
  padding:
    clamp(34px, 2.65vw, 68px)
    3.1vw
    clamp(28px, 2.3vw, 58px);

  display: flex;
  flex-direction: column;
  gap: clamp(20px, 1.45vw, 36px);
}


/* =========================================================
   ABOUT MAIN COMPOSITION
   ========================================================= */

.about-studio__main {
  position: relative;

  width: 100%;
  min-height: clamp(650px, 43vw, 910px);
}

.about-studio__content {
  position: relative;
  z-index: 10;

  width: 51%;
  min-width: 0;
  padding-right: 2vw;
}

.about-studio__kicker {
  margin-bottom: clamp(20px, 1.45vw, 36px);

  color: #e5a300;
  font-size: clamp(10px, 0.67vw, 16px);
  line-height: 1;
  font-weight: 750;
  letter-spacing: 0.24em;
}

.about-studio__content h2 {
  margin: 0;

  color: #111216;
  font-size: clamp(45px, 3.5vw, 88px);
  line-height: 1.055;
  font-weight: 620;
  letter-spacing: -0.047em;
}

.about-studio__title-line {
  display: block;
  color: #111216;
}

.about-studio__content h2 em {
  color: #e9a600;
  font-style: normal;
}

.about-studio__mobile-break {
  display: inline;
  color: inherit;
}

.about-studio__lead {
  width: 96%;
  margin: clamp(17px, 1.2vw, 30px) 0 0;

  color: #595959;
  font-size: clamp(14px, 0.94vw, 23px);
  line-height: 1.56;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.about-studio__lead strong {
  color: #353535;
  font-weight: 680;
}


/* =========================================================
   ABOUT ACTIONS
   ========================================================= */

.about-studio__actions {
  margin-top: clamp(20px, 1.4vw, 35px);

  display: flex;
  align-items: center;
  gap: clamp(13px, 0.95vw, 24px);
}

.about-studio__button {
  min-height: clamp(52px, 3.25vw, 82px);
  padding: 0 clamp(18px, 1.25vw, 31px);

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 0.7vw, 17px);

  border-radius: clamp(10px, 0.7vw, 17px);

  font-size: clamp(13px, 0.84vw, 21px);
  line-height: 1;
  font-weight: 650;
  white-space: nowrap;

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

.about-studio__button--primary {
  min-width: clamp(190px, 13.5vw, 340px);

  justify-content: space-between;

  background: #f7b500;
  color: #171717;

  box-shadow:
    0 0.9vw 2vw rgba(234, 172, 0, 0.21);
}

.about-studio__button--secondary {
  min-width: clamp(205px, 14.2vw, 360px);

  border: 1.5px solid rgba(35, 35, 35, 0.35);
  background: rgba(255, 255, 255, 0.94);
  color: #272727;
}

.about-studio__button:hover,
.about-studio__button:focus-visible {
  transform: translateY(-3px);
  outline: none;
}

.about-studio__button--primary:hover,
.about-studio__button--primary:focus-visible {
  background: #ffc525;

  box-shadow:
    0 1.2vw 2.5vw rgba(234, 172, 0, 0.28);
}

.about-studio__button--secondary:hover,
.about-studio__button--secondary:focus-visible {
  border-color: #e5a300;
  background: #fffaf0;

  box-shadow:
    0 0.8vw 1.8vw rgba(42, 42, 42, 0.08);
}

.about-studio__button img {
  width: clamp(22px, 1.45vw, 36px);
  height: clamp(22px, 1.45vw, 36px);

  display: block;
  flex: 0 0 auto;
  object-fit: contain;
}

.about-studio__button b {
  font-size: clamp(19px, 1.25vw, 31px);
  line-height: 1;
  font-weight: 400;
}


/* =========================================================
   ABOUT SERVICES
   ========================================================= */

.about-studio__services-shell {
  position: relative;
  z-index: 12;

  width: 51%;
  min-width: 0;
  margin-top: clamp(30px, 2vw, 48px);
  padding-right: 2vw;
}

.about-studio__services {
  width: 100%;

  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(13px, 0.95vw, 24px);
}

.about-studio__service {
  min-width: 0;
  min-height: clamp(205px, 14.5vw, 350px);
  padding:
    clamp(17px, 1.25vw, 31px)
    clamp(15px, 1.1vw, 27px);

  display: flex;
  flex-direction: column;

  border: 1px solid rgba(28, 28, 28, 0.045);
  border-radius: clamp(15px, 1vw, 24px);
  background: rgba(255, 255, 255, 0.98);

  box-shadow:
    0 1vw 2.6vw rgba(35, 35, 35, 0.07),
    0 0.15vw 0.55vw rgba(35, 35, 35, 0.025);

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

.about-studio__service:hover {
  transform: translateY(-6px);

  border-color: rgba(233, 166, 0, 0.18);

  box-shadow:
    0 1.45vw 3.2vw rgba(35, 35, 35, 0.1),
    0 0.2vw 0.7vw rgba(35, 35, 35, 0.03);
}

.about-studio__service-icon {
  width: clamp(48px, 3.2vw, 80px);
  height: clamp(48px, 3.2vw, 80px);
  margin-bottom: clamp(12px, 0.8vw, 20px);

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

  flex: 0 0 auto;
}

.about-studio__service-icon img {
  width: 100%;
  height: 100%;

  display: block;
  object-fit: contain;
}

.about-studio__service h3 {
  margin: 0;

  color: #181818;
  font-size: clamp(15px, 1vw, 25px);
  line-height: 1.25;
  font-weight: 670;
  letter-spacing: -0.025em;
}

.about-studio__service ul {
  margin: clamp(12px, 0.8vw, 20px) 0 0;
  padding: 0;

  list-style: none;
}

.about-studio__service li {
  position: relative;

  padding-left: clamp(16px, 1.05vw, 26px);

  color: #5b5b5b;
  font-size: clamp(11px, 0.72vw, 18px);
  line-height: 1.45;
  font-weight: 400;
}

.about-studio__service li + li {
  margin-top: clamp(5px, 0.34vw, 9px);
}

.about-studio__service li::before {
  content: "✓";

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

  color: #e9a600;
  font-weight: 800;
}

.about-studio__service > a {
  width: fit-content;
  margin-top: auto;
  padding-top: clamp(13px, 0.9vw, 22px);

  display: inline-flex;
  align-items: center;
  gap: clamp(7px, 0.48vw, 12px);

  color: #2f2f2f;
  font-size: clamp(11px, 0.73vw, 18px);
  line-height: 1;
  font-weight: 650;
}

.about-studio__service > a span:last-child {
  color: #e7a400;
  font-size: clamp(17px, 1.05vw, 26px);

  transition: transform 0.25s ease;
}

.about-studio__service > a:hover span:last-child,
.about-studio__service > a:focus-visible span:last-child {
  transform: translateX(5px);
}

.about-studio__services-tools {
  display: none;
}


/* =========================================================
   ABOUT VISUAL
   ========================================================= */

.about-studio__visual {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;

  width: 49%;
  height: 100%;
  min-height: 0;

  isolation: isolate;
}

.about-studio__orbits {
  position: absolute;
  top: -6%;
  right: -4%;
  z-index: 1;

  width: 112%;
  height: 108%;

  display: block;
  object-fit: contain;

  pointer-events: none;
}

.about-studio__dinosaur {
  position: absolute;
  top: 0;
  left: 2%;
  z-index: 3;

  width: 72%;
  max-width: none;
  height: auto;

  display: block;
  object-fit: contain;

  filter:
    drop-shadow(
      0 1.3vw 1.8vw rgba(72, 52, 25, 0.13)
    );
}

.about-studio__website-preview {
  position: absolute;
  top: 10%;
  right: 0;
  z-index: 5;

  width: 57%;
  max-width: none;
  height: auto;

  display: block;
  object-fit: contain;

  filter:
    drop-shadow(
      0 1.3vw 2vw rgba(74, 56, 24, 0.15)
    );
}

.about-studio__quote-card {
  position: absolute;
  bottom: 5%;
  left: 11%;
  z-index: 6;

  width: 34%;
  max-width: none;
  height: auto;

  display: block;
  object-fit: contain;

  filter:
    drop-shadow(
      0 1.2vw 1.7vw rgba(22, 22, 22, 0.17)
    );
}

.about-studio__location-card {
  position: absolute;
  right: 1%;
  bottom: 0;
  z-index: 7;

  width: 36%;
  max-width: none;
  height: auto;

  display: block;
  object-fit: contain;

  filter:
    drop-shadow(
      0 1.2vw 1.8vw rgba(72, 55, 26, 0.14)
    );
}


/* =========================================================
   ABOUT BENEFITS
   ========================================================= */

.about-studio__benefits {
  position: relative;
  z-index: 20;

  width: 100%;
  min-height: clamp(84px, 6.5vw, 165px);
  padding:
    clamp(13px, 0.9vw, 23px)
    clamp(17px, 1.2vw, 30px);

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

  border: 1px solid rgba(28, 28, 28, 0.04);
  border-radius: clamp(14px, 0.95vw, 24px);
  background: rgba(255, 255, 255, 0.98);

  box-shadow:
    0 0.9vw 2.5vw rgba(35, 35, 35, 0.06);
}

.about-studio__benefit {
  min-width: 0;
  padding: 0 clamp(12px, 0.9vw, 22px);

  display: flex;
  align-items: center;
  gap: clamp(11px, 0.8vw, 20px);

  border-right: 1px solid rgba(28, 28, 28, 0.09);
}

.about-studio__benefit:first-child {
  padding-left: 0;
}

.about-studio__benefit:last-child {
  padding-right: 0;
  border-right: 0;
}

.about-studio__benefit-icon {
  width: clamp(43px, 2.85vw, 72px);
  height: clamp(43px, 2.85vw, 72px);

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

  flex: 0 0 auto;
}

.about-studio__benefit-icon img {
  width: 100%;
  height: 100%;

  display: block;
  object-fit: contain;
}

.about-studio__benefit h4 {
  margin: 0;

  color: #242424;
  font-size: clamp(12px, 0.78vw, 19px);
  line-height: 1.3;
  font-weight: 670;
}

.about-studio__benefit p {
  margin: clamp(4px, 0.28vw, 7px) 0 0;

  color: #676767;
  font-size: clamp(10px, 0.65vw, 16px);
  line-height: 1.45;
  font-weight: 400;
}


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

.about-studio.about-animations-ready
[data-about-reveal] {
  opacity: 0;
  transform: translateY(30px);
}

.about-studio.about-animations-ready
[data-about-reveal="visual"] {
  transform: translateX(38px);
}

.about-studio.about-animations-ready.is-visible
[data-about-reveal] {
  opacity: 1;
  transform: translate(0, 0);

  transition:
    opacity 0.75s ease,
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.about-studio.is-visible
[data-about-reveal="visual"] {
  transition-delay: 0.1s;
}

.about-studio.is-visible
[data-about-reveal="services"] {
  transition-delay: 0.2s;
}

.about-studio.is-visible
[data-about-reveal="benefits"] {
  transition-delay: 0.3s;
}

.about-studio.is-visible
.about-studio__dinosaur {
  animation:
    about-dinosaur-motion 7s ease-in-out infinite alternate;
}

.about-studio.is-visible
.about-studio__website-preview {
  animation:
    about-card-motion 5.8s ease-in-out infinite alternate;
}

.about-studio.is-visible
.about-studio__quote-card {
  animation:
    about-card-motion 6.4s -1.5s ease-in-out infinite alternate;
}

.about-studio.is-visible
.about-studio__location-card {
  animation:
    about-card-motion 7s -2.8s ease-in-out infinite alternate;
}

@keyframes about-dinosaur-motion {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-6px);
  }
}

@keyframes about-card-motion {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-5px);
  }
}


/* =========================================================
   ABOUT MEDIUM DESKTOP
   ========================================================= */

@media (max-width: 1500px) and (min-width: 1181px) {
  .about-studio__inner {
    padding:
      34px
      40px
      34px;
  }

  .about-studio__main {
    min-height: 660px;
  }

  .about-studio__content {
    width: 50%;
    padding-right: 24px;
  }

  .about-studio__content h2 {
    font-size: clamp(44px, 3.55vw, 54px);
  }

  .about-studio__lead {
    font-size: 15px;
  }

  .about-studio__services-shell {
    width: 50%;
    margin-top: 26px;
    padding-right: 24px;
  }

  .about-studio__service {
    min-height: 250px;
    padding: 18px 15px;
  }

  .about-studio__service-icon {
    width: 52px;
    height: 52px;
  }

  .about-studio__service h3 {
    font-size: 16px;
  }

  .about-studio__service li {
    font-size: 12px;
  }

  .about-studio__service > a {
    font-size: 12px;
  }

  .about-studio__visual {
    width: 50%;
  }

  .about-studio__dinosaur {
    left: 1%;
    width: 70%;
  }

  .about-studio__website-preview {
    right: -1%;
    width: 56%;
  }

  .about-studio__quote-card {
    bottom: 4%;
    left: 10%;
    width: 33%;
  }

  .about-studio__location-card {
    right: 0;
    width: 35%;
  }

  .about-studio__benefits {
    min-height: 94px;
    padding: 13px 17px;
  }

  .about-studio__benefit {
    padding: 0 13px;
    gap: 10px;
  }

  .about-studio__benefit-icon {
    width: 46px;
    height: 46px;
  }

  .about-studio__benefit h4 {
    font-size: 12px;
  }

  .about-studio__benefit p {
    font-size: 10px;
  }
}


/* =========================================================
   ABOUT RESPONSIVE — 1180
   ========================================================= */

@media (max-width: 1180px) {
  .about-studio {
    min-height: 0;
  }

  .about-studio__inner {
    padding: 62px 32px 54px;
    gap: 38px;
  }

  .about-studio__main {
    min-height: 0;

    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas:
      "content"
      "visual"
      "services";
    row-gap: 42px;
  }

  .about-studio__content {
    grid-area: content;

    width: 100%;
    max-width: 1000px;
    padding-right: 0;
  }

  .about-studio__kicker {
    margin-bottom: 23px;

    font-size: 11px;
  }

  .about-studio__content h2 {
    font-size: clamp(52px, 6.2vw, 72px);
    line-height: 1.03;
  }

  .about-studio__lead {
    width: 100%;
    max-width: 900px;
    margin-top: 25px;

    font-size: 18px;
    line-height: 1.58;
  }

  .about-studio__actions {
    margin-top: 29px;
  }

  .about-studio__button {
    min-height: 60px;
    padding: 0 22px;

    font-size: 15px;
  }

  .about-studio__button--primary {
    min-width: 230px;
  }

  .about-studio__button--secondary {
    min-width: 245px;
  }

  .about-studio__visual {
    grid-area: visual;

    position: relative;
    top: auto;
    right: auto;

    width: 100%;
    height: clamp(535px, 66vw, 700px);
  }

  .about-studio__orbits {
    top: -4%;
    right: -2%;

    width: 105%;
    height: 108%;
  }

  .about-studio__dinosaur {
    top: 0;
    left: 5%;

    width: 67%;
  }

  .about-studio__website-preview {
    top: 9%;
    right: 2%;

    width: 53%;
  }

  .about-studio__quote-card {
    bottom: 5%;
    left: 12%;

    width: 31%;
  }

  .about-studio__location-card {
    right: 2%;
    bottom: 0;

    width: 34%;
  }

  .about-studio__services-shell {
    grid-area: services;

    width: 100%;
    margin-top: 0;
    padding-right: 0;
  }

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

  .about-studio__service {
    min-height: 305px;
    padding: 24px 21px;
  }

  .about-studio__service-icon {
    width: 62px;
    height: 62px;
    margin-bottom: 18px;
  }

  .about-studio__service h3 {
    font-size: 19px;
  }

  .about-studio__service li {
    padding-left: 21px;

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

  .about-studio__service li + li {
    margin-top: 8px;
  }

  .about-studio__service > a {
    padding-top: 20px;

    font-size: 14px;
  }

  .about-studio__benefits {
    min-height: 0;
    padding: 0;

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

    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .about-studio__benefit,
  .about-studio__benefit:first-child,
  .about-studio__benefit:last-child {
    min-height: 108px;
    padding: 18px;

    border: 1px solid rgba(28, 28, 28, 0.055);
    border-radius: 16px;
    background: #ffffff;

    box-shadow:
      0 12px 28px rgba(35, 35, 35, 0.05);
  }

  .about-studio__benefit {
    gap: 14px;
  }

  .about-studio__benefit:nth-child(3) {
    border-right: 1px solid rgba(28, 28, 28, 0.055);
  }

  .about-studio__benefit-icon {
    width: 52px;
    height: 52px;
  }

  .about-studio__benefit h4 {
    font-size: 15px;
  }

  .about-studio__benefit p {
    margin-top: 6px;

    font-size: 13px;
  }
}


/* =========================================================
   ABOUT RESPONSIVE — 900
   ========================================================= */

@media (max-width: 900px) {
  .about-studio__inner {
    padding: 54px 24px 48px;
    gap: 34px;
  }

  .about-studio__main {
    row-gap: 36px;
  }

  .about-studio__content h2 {
    font-size: clamp(48px, 7vw, 60px);
  }

  .about-studio__lead {
    max-width: 760px;

    font-size: 17px;
  }

  .about-studio__visual {
    height: clamp(485px, 70vw, 610px);
  }

  .about-studio__orbits {
    right: -5%;

    width: 112%;
  }

  .about-studio__dinosaur {
    top: 1%;
    left: 1%;

    width: 72%;
  }

  .about-studio__website-preview {
    top: 12%;
    right: -1%;

    width: 56%;
  }

  .about-studio__quote-card {
    bottom: 4%;
    left: 8%;

    width: 34%;
  }

  .about-studio__location-card {
    right: 0;
    width: 36%;
  }

  .about-studio__services {
    gap: 14px;
  }

  .about-studio__service {
    min-height: 325px;
    padding: 22px 18px;
  }

  .about-studio__service h3 {
    font-size: 17px;
  }

  .about-studio__service li {
    font-size: 13px;
  }

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

  .about-studio__benefit:last-child {
    grid-column: 1 / -1;
  }
}


/* =========================================================
   ABOUT RESPONSIVE — 620
   ========================================================= */

@media (max-width: 620px) {
  .about-studio__inner {
    padding: 47px 18px 42px;
    gap: 30px;
  }

  .about-studio__main {
    row-gap: 30px;
  }

  .about-studio__kicker {
    margin-bottom: 20px;

    font-size: 10px;
    letter-spacing: 0.22em;
  }

  .about-studio__content h2 {
    font-size: clamp(36px, 9.6vw, 42px);
    line-height: 1.06;
    letter-spacing: -0.045em;
  }

  .about-studio__mobile-break {
    display: block;
  }

  .about-studio__lead {
    margin-top: 23px;

    font-size: 16.5px;
    line-height: 1.56;
  }

  .about-studio__actions {
    margin-top: 26px;

    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .about-studio__button,
  .about-studio__button--primary,
  .about-studio__button--secondary {
    width: 100%;
    min-width: 0;
    min-height: 60px;

    font-size: 15px;
  }

  .about-studio__visual {
    height: clamp(380px, 102vw, 460px);
    overflow: hidden;
  }

  .about-studio__orbits {
    top: -2%;
    right: -20%;

    width: 140%;
    height: 108%;
  }

  .about-studio__dinosaur {
    top: 1%;
    left: -11%;

    width: 91%;
  }

  .about-studio__website-preview {
    top: 15%;
    right: -7%;

    width: 68%;
  }

  .about-studio__quote-card {
    bottom: 5%;
    left: 0;

    width: 43%;
  }

  .about-studio__location-card {
    right: -5%;
    bottom: 0;

    width: 45%;
  }

  .about-studio__services-shell {
    width: calc(100% + 18px);
  }

  .about-studio__services {
    width: 100%;
    padding:
      4px
      54px
      25px
      0;

    display: flex;
    gap: 14px;

    overflow-x: auto;
    overflow-y: visible;

    scroll-snap-type: x mandatory;
    scroll-padding-left: 0;
    overscroll-behavior-inline: contain;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .about-studio__services::-webkit-scrollbar {
    display: none;
  }

  .about-studio__service {
    width: calc(100vw - 72px);
    min-height: 325px;
    padding: 24px 20px;

    flex: 0 0 calc(100vw - 72px);

    border-radius: 18px;

    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .about-studio__service:hover {
    transform: none;
  }

  .about-studio__service-icon {
    width: 62px;
    height: 62px;
  }

  .about-studio__service h3 {
    font-size: 20px;
  }

  .about-studio__service li {
    padding-left: 21px;

    font-size: 14px;
  }

  .about-studio__service > a {
    font-size: 14px;
  }

  .about-studio__services-tools {
    padding-right: 54px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
  }

  .about-studio__swipe-hint {
    display: flex;
    align-items: center;
    gap: 8px;

    color: #666666;
    font-size: 13px;
    line-height: 1;
    font-weight: 600;
  }

  .about-studio__swipe-hint b {
    color: #e7a400;
    font-size: 21px;
    line-height: 1;

    animation:
      about-swipe-hint 1.4s ease-in-out infinite;
  }

  .about-studio__dots {
    display: flex;
    align-items: center;
    gap: 7px;
  }

  .about-studio__dots button {
    width: 8px;
    height: 8px;
    padding: 0;

    border: 0;
    border-radius: 50%;
    background: #ddd7ca;

    cursor: pointer;

    transition:
      width 0.25s ease,
      border-radius 0.25s ease,
      background 0.25s ease;
  }

  .about-studio__dots button.is-active {
    width: 24px;

    border-radius: 999px;
    background: #f3b300;
  }

  .about-studio__benefits {
    width: calc(100% + 18px);
    padding:
      2px
      54px
      20px
      0;

    display: flex;
    gap: 13px;

    overflow-x: auto;
    overflow-y: visible;

    scroll-snap-type: x mandatory;
    scroll-padding-left: 0;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .about-studio__benefits::-webkit-scrollbar {
    display: none;
  }

  .about-studio__benefit,
  .about-studio__benefit:first-child,
  .about-studio__benefit:last-child {
    width: calc(100vw - 88px);
    min-height: 112px;
    padding: 18px;

    flex: 0 0 calc(100vw - 88px);

    border: 1px solid rgba(28, 28, 28, 0.055);

    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .about-studio__benefit:last-child {
    grid-column: auto;
  }

  .about-studio__benefit-icon {
    width: 55px;
    height: 55px;
  }

  .about-studio__benefit h4 {
    font-size: 16px;
  }

  .about-studio__benefit p {
    font-size: 13px;
  }

  @keyframes about-swipe-hint {
    0%,
    100% {
      transform: translateX(0);
    }

    50% {
      transform: translateX(6px);
    }
  }
}


/* =========================================================
   ABOUT RESPONSIVE — 390
   ========================================================= */

@media (max-width: 390px) {
  .about-studio__inner {
    padding-right: 16px;
    padding-left: 16px;
  }

  .about-studio__content h2 {
    font-size: 35px;
  }

  .about-studio__lead {
    font-size: 16px;
  }

  .about-studio__visual {
    height: 365px;
  }

  .about-studio__dinosaur {
    top: 2%;
    left: -13%;

    width: 95%;
  }

  .about-studio__website-preview {
    top: 16%;
    right: -9%;

    width: 71%;
  }

  .about-studio__quote-card {
    width: 45%;
  }

  .about-studio__location-card {
    right: -7%;

    width: 47%;
  }

  .about-studio__service {
    width: calc(100vw - 64px);
    flex-basis: calc(100vw - 64px);
  }

  .about-studio__benefit,
  .about-studio__benefit:first-child,
  .about-studio__benefit:last-child {
    width: calc(100vw - 78px);
    flex-basis: calc(100vw - 78px);
  }
}


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

@media (prefers-reduced-motion: reduce) {
  .about-studio.about-animations-ready
  [data-about-reveal],
  .about-studio__dinosaur,
  .about-studio__website-preview,
  .about-studio__quote-card,
  .about-studio__location-card,
  .about-studio__service,
  .about-studio__button,
  .about-studio__swipe-hint b {
    animation: none !important;
    transition: none !important;
  }

  .about-studio.about-animations-ready
  [data-about-reveal] {
    opacity: 1;
    transform: none;
  }
}


/* =========================================================
   CONTACT GROWTH
   ========================================================= */

.contact-growth {
  position: relative;

  width: 100%;
  min-height: 100svh;
  overflow: hidden;

  background:
    radial-gradient(
      circle at 66% 43%,
      rgba(247, 181, 0, 0.105) 0%,
      rgba(247, 181, 0, 0.035) 25%,
      rgba(255, 255, 255, 0) 52%
    ),
    linear-gradient(
      180deg,
      #ffffff 0%,
      #fffefa 70%,
      #faf9f5 100%
    );
}

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

  position: absolute;
  top: -6%;
  right: -7%;

  width: 42vw;
  height: 42vw;

  border: 1px solid rgba(238, 173, 0, 0.13);
  border-radius: 50%;

  pointer-events: none;
}

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

  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;

  height: clamp(55px, 5vw, 120px);

  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(224, 222, 214, 0.43) 100%
    );

  pointer-events: none;
}

.contact-growth__inner {
  position: relative;
  z-index: 2;

  width: 100%;
  min-height: 100svh;
  padding:
    clamp(38px, 2.9vw, 70px)
    3.35vw
    clamp(30px, 2.4vw, 58px);

  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(22px, 1.65vw, 40px);
}


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

.contact-growth__main {
  width: 100%;

  display: grid;
  grid-template-columns:
    minmax(0, 1.05fr)
    minmax(460px, 1.18fr)
    minmax(245px, 0.62fr);
  gap: clamp(20px, 1.65vw, 40px);
  align-items: center;
}


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

.contact-growth__intro {
  position: relative;

  min-width: 0;
  min-height: clamp(540px, 36vw, 770px);
  padding:
    clamp(18px, 1.15vw, 28px)
    0
    clamp(25px, 1.8vw, 44px);

  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.contact-growth__intro-content {
  position: relative;
  z-index: 3;
}

.contact-growth__kicker {
  margin-bottom: clamp(23px, 1.65vw, 40px);

  color: #e5a300;
  font-size: clamp(10px, 0.68vw, 16px);
  line-height: 1;
  font-weight: 750;
  letter-spacing: 0.22em;
}

.contact-growth__intro h2 {
  margin: 0;

  color: #111216;
  font-size: clamp(48px, 3.55vw, 88px);
  line-height: 1.06;
  font-weight: 620;
  letter-spacing: -0.05em;
}

.contact-growth__intro h2 span {
  color: #e9a600;
}

.contact-growth__lead {
  max-width: 95%;
  margin: clamp(20px, 1.45vw, 35px) 0 0;

  color: #585858;
  font-size: clamp(15px, 1vw, 24px);
  line-height: 1.58;
  font-weight: 400;
  letter-spacing: -0.01em;
}


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

.contact-growth__highlights {
  width: 100%;
  margin-top: clamp(25px, 1.8vw, 44px);

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

.contact-growth__highlight {
  min-width: 0;
  min-height: clamp(70px, 4.7vw, 112px);
  padding: 0 clamp(10px, 0.85vw, 21px);

  display: flex;
  align-items: center;
  gap: clamp(10px, 0.7vw, 17px);

  border-right: 1px solid rgba(25, 25, 25, 0.1);
}

.contact-growth__highlight:first-child {
  padding-left: 0;
}

.contact-growth__highlight:last-child {
  padding-right: 0;
  border-right: 0;
}

.contact-growth__highlight-icon {
  width: clamp(45px, 3vw, 72px);
  height: clamp(45px, 3vw, 72px);

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

  flex: 0 0 auto;
}

.contact-growth__highlight-icon img {
  width: 100%;
  height: 100%;

  display: block;
  object-fit: contain;
}

.contact-growth__highlight > span {
  color: #353535;
  font-size: clamp(11px, 0.74vw, 18px);
  line-height: 1.4;
  font-weight: 620;
}


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

.contact-growth__idea {
  position: relative;
  z-index: 4;

  width: min(88%, 650px);
  min-height: clamp(78px, 5.7vw, 137px);
  margin-top: clamp(22px, 1.55vw, 38px);
  padding:
    clamp(13px, 0.95vw, 23px)
    clamp(16px, 1.2vw, 29px);

  display: flex;
  align-items: center;
  gap: clamp(14px, 1vw, 24px);

  border: 1px solid rgba(234, 168, 0, 0.17);
  border-radius: clamp(14px, 1vw, 24px);

  background:
    linear-gradient(
      135deg,
      rgba(255, 250, 234, 0.97) 0%,
      rgba(255, 247, 218, 0.9) 100%
    );

  box-shadow:
    0 0.9vw 2.1vw rgba(226, 165, 0, 0.08);
}

.contact-growth__idea > img {
  width: clamp(55px, 3.9vw, 94px);
  height: clamp(55px, 3.9vw, 94px);

  display: block;
  flex: 0 0 auto;
  object-fit: contain;

  transition: transform 0.3s ease;
}

.contact-growth__idea:hover > img {
  transform:
    translateY(-3px)
    rotate(-5deg);
}

.contact-growth__idea p {
  margin: 0;

  display: flex;
  flex-direction: column;
  gap: clamp(5px, 0.35vw, 9px);

  color: #262626;
  font-size: clamp(13px, 0.84vw, 20px);
  line-height: 1.4;
}

.contact-growth__idea strong {
  font-weight: 680;
}

.contact-growth__idea span {
  color: #444444;
}

.contact-growth__idea b {
  color: #e2a100;
  font-weight: 650;
}


/* =========================================================
   DECORATIVE PLANE
   ========================================================= */

.contact-growth__plane-lines {
  position: absolute;
  right: -1%;
  bottom: -1%;
  z-index: 1;

  width: 96%;
  max-width: none;
  height: auto;

  display: block;
  object-fit: contain;

  pointer-events: none;
}


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

.contact-growth__form-card {
  position: relative;
  z-index: 8;

  min-width: 0;
  min-height: clamp(570px, 38vw, 780px);
  padding:
    clamp(25px, 2vw, 48px)
    clamp(25px, 2.15vw, 52px);

  border: 1px solid rgba(25, 25, 25, 0.06);
  border-radius: clamp(20px, 1.4vw, 34px);

  background:
    radial-gradient(
      circle at 93% 7%,
      rgba(248, 185, 0, 0.08) 0%,
      rgba(248, 185, 0, 0) 31%
    ),
    rgba(255, 255, 255, 0.985);

  box-shadow:
    0 1.4vw 3.8vw rgba(32, 32, 32, 0.085),
    0 0.18vw 0.7vw rgba(32, 32, 32, 0.025);
}

.contact-growth__form-header > span {
  display: block;

  color: #151515;
  font-size: clamp(24px, 1.8vw, 43px);
  line-height: 1.15;
  font-weight: 630;
  letter-spacing: -0.035em;
}

.contact-growth__form-header h3 {
  margin: clamp(2px, 0.15vw, 4px) 0 0;

  color: #151515;
  font-size: clamp(24px, 1.8vw, 43px);
  line-height: 1.15;
  font-weight: 630;
  letter-spacing: -0.035em;
}

.contact-growth__form-header em {
  color: #e8a500;
  font-style: normal;
}


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

.contact-growth__form {
  margin-top: clamp(22px, 1.55vw, 38px);
}

.contact-growth__form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(12px, 0.85vw, 20px);
}

.contact-growth__field {
  position: relative;

  min-width: 0;
}

.contact-growth__field--full {
  grid-column: 1 / -1;
}

.contact-growth__field label {
  position: absolute;

  width: 1px;
  height: 1px;
  overflow: hidden;

  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.contact-growth__field input,
.contact-growth__field select,
.contact-growth__field textarea {
  width: 100%;

  border: 1px solid rgba(29, 29, 29, 0.15);
  border-radius: clamp(8px, 0.55vw, 13px);

  background: #ffffff;
  color: #282828;

  font-family: inherit;
  font-size: clamp(13px, 0.83vw, 19px);
  line-height: 1.35;
  font-weight: 400;

  box-shadow:
    inset 0 1px 2px rgba(25, 25, 25, 0.025);

  outline: none;

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

.contact-growth__field input,
.contact-growth__field select {
  height: clamp(52px, 3.55vw, 84px);
  padding:
    0
    clamp(39px, 2.7vw, 64px)
    0
    clamp(42px, 2.9vw, 70px);
}

.contact-growth__field select {
  appearance: none;
  cursor: pointer;
}

.contact-growth__field textarea {
  height: clamp(125px, 9vw, 215px);
  padding:
    clamp(16px, 1.1vw, 27px)
    clamp(55px, 3.5vw, 84px)
    clamp(33px, 2.25vw, 54px)
    clamp(42px, 2.9vw, 70px);

  resize: vertical;
}

.contact-growth__field input::placeholder,
.contact-growth__field textarea::placeholder {
  color: #717171;
  opacity: 1;
}

.contact-growth__field input:focus,
.contact-growth__field select:focus,
.contact-growth__field textarea:focus {
  border-color: #e8a500;
  background: #fffefa;

  box-shadow:
    0 0 0 3px rgba(240, 174, 0, 0.11);
}

.contact-growth__field.is-invalid input,
.contact-growth__field.is-invalid select,
.contact-growth__field.is-invalid textarea {
  border-color: #cf4e42;
  background: #fffafa;

  box-shadow:
    0 0 0 3px rgba(207, 78, 66, 0.08);
}

.contact-growth__field-icon {
  position: absolute;
  top: 50%;
  left: clamp(15px, 1.05vw, 25px);
  z-index: 2;

  color: #4f5a65;
  font-size: clamp(18px, 1.15vw, 27px);
  line-height: 1;

  transform: translateY(-50%);

  pointer-events: none;
}

.contact-growth__field--message
.contact-growth__field-icon {
  top: clamp(19px, 1.4vw, 33px);

  transform: none;
}

.contact-growth__select-arrow {
  position: absolute;
  top: 50%;
  right: clamp(17px, 1.15vw, 28px);

  color: #3b3b3b;
  font-size: clamp(20px, 1.3vw, 31px);
  line-height: 1;

  transform: translateY(-57%);

  pointer-events: none;
}

.contact-growth__counter {
  position: absolute;
  right: clamp(15px, 1vw, 24px);
  bottom: clamp(11px, 0.75vw, 18px);

  color: #737373;
  font-size: clamp(11px, 0.68vw, 16px);
  line-height: 1;
}


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

.contact-growth__submit {
  width: 100%;
  min-height: clamp(56px, 3.65vw, 87px);
  margin-top: clamp(16px, 1.15vw, 28px);
  padding: 0 clamp(20px, 1.45vw, 35px);

  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 1.5vw, 36px);

  border: 0;
  border-radius: clamp(10px, 0.72vw, 17px);

  background: #f7b500;
  color: #151515;

  font-family: inherit;
  font-size: clamp(14px, 0.9vw, 21px);
  line-height: 1;
  font-weight: 680;

  box-shadow:
    0 0.9vw 2.1vw rgba(234, 172, 0, 0.2);

  cursor: pointer;

  transition:
    transform 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
}

.contact-growth__submit:hover,
.contact-growth__submit:focus-visible {
  transform: translateY(-3px);
  background: #ffc525;

  box-shadow:
    0 1.2vw 2.7vw rgba(234, 172, 0, 0.29);

  outline: none;
}

.contact-growth__submit span:last-child {
  font-size: clamp(20px, 1.35vw, 32px);
  line-height: 1;

  transition: transform 0.25s ease;
}

.contact-growth__submit:hover span:last-child {
  transform: translateX(5px);
}

.contact-growth__security {
  margin-top: clamp(16px, 1.1vw, 27px);

  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(8px, 0.55vw, 13px);

  color: #696969;
  font-size: clamp(11px, 0.7vw, 16px);
  line-height: 1.35;
}

.contact-growth__security img {
  width: clamp(18px, 1.15vw, 28px);
  height: clamp(18px, 1.15vw, 28px);

  display: block;
  flex: 0 0 auto;
  object-fit: contain;
}

.contact-growth__form-status {
  min-height: 20px;
  margin: 12px 0 0;

  color: #6b5100;
  font-size: 13px;
  line-height: 1.4;
  text-align: center;
}

.contact-growth__form-status.is-error {
  color: #b64036;
}

.contact-growth__form-status.is-success {
  color: #347044;
}


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

.contact-growth__aside-shell {
  min-width: 0;
}

.contact-growth__aside {
  width: 100%;

  display: grid;
  gap: clamp(18px, 1.35vw, 32px);
}

.contact-growth__aside-card {
  min-width: 0;
  min-height: clamp(135px, 9.3vw, 220px);
  padding:
    clamp(18px, 1.35vw, 32px)
    clamp(16px, 1.25vw, 30px);

  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: clamp(13px, 0.9vw, 22px);

  border: 1px solid rgba(25, 25, 25, 0.055);
  border-radius: clamp(16px, 1.1vw, 26px);

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

  box-shadow:
    0 1vw 2.7vw rgba(36, 36, 36, 0.07),
    0 0.14vw 0.55vw rgba(36, 36, 36, 0.025);

  transition:
    transform 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease;
}

.contact-growth__aside-card:hover {
  transform: translateY(-5px);

  border-color: rgba(235, 169, 0, 0.18);

  box-shadow:
    0 1.35vw 3vw rgba(36, 36, 36, 0.1),
    0 0.2vw 0.7vw rgba(36, 36, 36, 0.03);
}

.contact-growth__aside-icon {
  width: clamp(56px, 3.7vw, 89px);
  height: clamp(56px, 3.7vw, 89px);

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

  flex: 0 0 auto;
}

.contact-growth__aside-icon img {
  width: 100%;
  height: 100%;

  display: block;
  object-fit: contain;
}

.contact-growth__aside-card h4 {
  margin: 0;

  color: #1e1e1e;
  font-size: clamp(14px, 0.92vw, 22px);
  line-height: 1.35;
  font-weight: 670;
}

.contact-growth__aside-card p {
  margin: clamp(6px, 0.4vw, 10px) 0 0;

  color: #626262;
  font-size: clamp(12px, 0.76vw, 18px);
  line-height: 1.5;
}

.contact-growth__aside-tools {
  display: none;
}


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

.contact-growth__facts {
  position: relative;
  z-index: 10;

  width: 100%;
  min-height: clamp(90px, 6.5vw, 155px);
  padding:
    clamp(13px, 0.9vw, 22px)
    clamp(17px, 1.25vw, 30px);

  display: grid;
  grid-template-columns:
    1fr
    0.95fr
    1fr
    1.2fr;

  border: 1px solid rgba(27, 27, 27, 0.045);
  border-radius: clamp(15px, 1vw, 25px);

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

  box-shadow:
    0 1vw 2.7vw rgba(36, 36, 36, 0.06);
}

.contact-growth__fact {
  min-width: 0;
  padding: 0 clamp(15px, 1.15vw, 28px);

  display: flex;
  align-items: center;
  gap: clamp(12px, 0.85vw, 21px);

  border-right: 1px solid rgba(27, 27, 27, 0.09);
}

.contact-growth__fact:first-child {
  padding-left: 0;
}

.contact-growth__fact:last-child {
  padding-right: 0;
  border-right: 0;
}

.contact-growth__fact-icon {
  width: clamp(51px, 3.35vw, 81px);
  height: clamp(51px, 3.35vw, 81px);

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

  flex: 0 0 auto;
}

.contact-growth__fact-icon img {
  width: 100%;
  height: 100%;

  display: block;
  object-fit: contain;
}

.contact-growth__fact h4 {
  margin: 0;

  color: #252525;
  font-size: clamp(13px, 0.84vw, 20px);
  line-height: 1.3;
  font-weight: 670;
}

.contact-growth__fact p {
  margin: clamp(5px, 0.32vw, 8px) 0 0;

  color: #676767;
  font-size: clamp(11px, 0.7vw, 17px);
  line-height: 1.45;
}


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

.contact-growth.contact-animations-ready
[data-contact-reveal] {
  opacity: 0;
  transform: translateY(32px);
}

.contact-growth.contact-animations-ready
[data-contact-reveal="intro"] {
  transform: translateX(-38px);
}

.contact-growth.contact-animations-ready
[data-contact-reveal="aside"] {
  transform: translateX(38px);
}

.contact-growth.contact-animations-ready.is-visible
[data-contact-reveal] {
  opacity: 1;
  transform: translate(0, 0);

  transition:
    opacity 0.75s ease,
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.contact-growth.is-visible
[data-contact-reveal="form"] {
  transition-delay: 0.12s;
}

.contact-growth.is-visible
[data-contact-reveal="aside"] {
  transition-delay: 0.24s;
}

.contact-growth.is-visible
[data-contact-reveal="facts"] {
  transition-delay: 0.36s;
}

.contact-growth.is-visible
.contact-growth__aside-card {
  animation:
    contact-card-in 0.65s both;
}

.contact-growth.is-visible
.contact-growth__aside-card:nth-child(1) {
  animation-delay: 0.32s;
}

.contact-growth.is-visible
.contact-growth__aside-card:nth-child(2) {
  animation-delay: 0.44s;
}

.contact-growth.is-visible
.contact-growth__aside-card:nth-child(3) {
  animation-delay: 0.56s;
}

.contact-growth.is-visible
.contact-growth__plane-lines {
  animation:
    contact-plane-motion 7s ease-in-out infinite alternate;
}

@keyframes contact-card-in {
  from {
    opacity: 0;
    transform: translateX(24px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes contact-plane-motion {
  from {
    transform: translate(0, 0);
  }

  to {
    transform: translate(7px, -4px);
  }
}


/* =========================================================
   RESPONSIVE - 1500
   ========================================================= */

@media (max-width: 1500px) and (min-width: 1181px) {
  .contact-growth__inner {
    padding:
      38px
      40px
      34px;
  }

  .contact-growth__main {
    grid-template-columns:
      minmax(0, 1.02fr)
      minmax(435px, 1.15fr)
      minmax(230px, 0.63fr);
    gap: 22px;
  }

  .contact-growth__intro {
    min-height: 610px;
  }

  .contact-growth__intro h2 {
    font-size: clamp(48px, 3.55vw, 56px);
  }

  .contact-growth__lead {
    font-size: 15px;
  }

  .contact-growth__highlight {
    padding: 0 10px;
  }

  .contact-growth__highlight-icon {
    width: 48px;
    height: 48px;
  }

  .contact-growth__highlight > span {
    font-size: 11px;
  }

  .contact-growth__idea {
    width: 94%;
  }

  .contact-growth__form-card {
    min-height: 610px;
    padding: 29px;
  }

  .contact-growth__aside-card {
    min-height: 155px;
    padding: 19px 17px;
  }

  .contact-growth__aside-icon {
    width: 58px;
    height: 58px;
  }

  .contact-growth__aside-card h4 {
    font-size: 14px;
  }

  .contact-growth__aside-card p {
    font-size: 12px;
  }

  .contact-growth__facts {
    min-height: 100px;
  }

  .contact-growth__fact {
    padding: 0 15px;
  }

  .contact-growth__fact-icon {
    width: 48px;
    height: 48px;
  }

  .contact-growth__fact h4 {
    font-size: 12px;
  }

  .contact-growth__fact p {
    font-size: 10px;
  }
}


/* =========================================================
   RESPONSIVE - 1180
   ========================================================= */

@media (max-width: 1180px) {
  .contact-growth {
    min-height: 0;
  }

  .contact-growth__inner {
    min-height: 0;
    padding: 62px 32px 54px;

    justify-content: flex-start;
    gap: 38px;
  }

  .contact-growth__main {
    grid-template-columns:
      minmax(0, 1.55fr)
      minmax(280px, 0.78fr);

    grid-template-areas:
      "intro intro"
      "form aside";

    gap: 38px 24px;
    align-items: start;
  }

  .contact-growth__intro {
    grid-area: intro;

    min-height: 0;
    padding: 0 0 35px;
  }

  .contact-growth__intro-content {
    max-width: 980px;
  }

  .contact-growth__intro h2 {
    font-size: clamp(52px, 6vw, 70px);
  }

  .contact-growth__lead {
    max-width: 860px;

    font-size: 18px;
  }

  .contact-growth__highlights {
    max-width: 760px;
  }

  .contact-growth__highlight {
    min-height: 82px;
  }

  .contact-growth__highlight > span {
    font-size: 14px;
  }

  .contact-growth__idea {
    max-width: 620px;
  }

  .contact-growth__plane-lines {
    right: -8%;
    bottom: -2%;

    width: 66%;
  }

  .contact-growth__form-card {
    grid-area: form;

    min-height: 0;
    padding: 32px;
  }

  .contact-growth__aside-shell {
    grid-area: aside;
  }

  .contact-growth__aside {
    gap: 18px;
  }

  .contact-growth__aside-card {
    min-height: 170px;
    padding: 20px 18px;

    grid-template-columns: 1fr;
    align-content: center;
    justify-items: start;
  }

  .contact-growth__aside-icon {
    width: 61px;
    height: 61px;
  }

  .contact-growth__aside-card h4 {
    font-size: 16px;
  }

  .contact-growth__aside-card p {
    font-size: 13px;
  }

  .contact-growth__facts {
    min-height: 0;
    padding: 0;

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

    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .contact-growth__fact,
  .contact-growth__fact:first-child,
  .contact-growth__fact:last-child {
    min-height: 105px;
    padding: 17px;

    border: 1px solid rgba(27, 27, 27, 0.055);
    border-radius: 15px;

    background: #ffffff;

    box-shadow:
      0 12px 28px rgba(36, 36, 36, 0.05);
  }

  .contact-growth__fact-icon {
    width: 55px;
    height: 55px;
  }

  .contact-growth__fact h4 {
    font-size: 15px;
  }

  .contact-growth__fact p {
    font-size: 13px;
  }
}


/* =========================================================
   RESPONSIVE - 900
   ========================================================= */

@media (max-width: 900px) {
  .contact-growth__inner {
    padding: 54px 24px 48px;
    gap: 34px;
  }

  .contact-growth__main {
    grid-template-columns: 1fr;
    grid-template-areas:
      "intro"
      "form"
      "aside";

    gap: 36px;
  }

  .contact-growth__intro {
    padding-bottom: 28px;
  }

  .contact-growth__intro h2 {
    font-size: clamp(49px, 7.2vw, 62px);
  }

  .contact-growth__lead {
    font-size: 17px;
  }

  .contact-growth__plane-lines {
    right: -12%;
    bottom: -5%;

    width: 75%;
  }

  .contact-growth__form-card {
    width: 100%;
    max-width: 760px;
    margin: 0 auto;

    padding: 35px;
  }

  .contact-growth__aside {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
  }

  .contact-growth__aside-card {
    min-height: 205px;
    padding: 21px 18px;
  }

  .contact-growth__aside-card h4 {
    font-size: 16px;
  }

  .contact-growth__aside-card p {
    font-size: 13px;
  }
}


/* =========================================================
   RESPONSIVE - 620
   ========================================================= */

@media (max-width: 620px) {
  .contact-growth::before {
    display: none;
  }

  .contact-growth__inner {
    padding: 47px 18px 42px;
    gap: 31px;
  }

  .contact-growth__main {
    gap: 31px;
  }

  .contact-growth__intro {
    padding-bottom: 8px;
  }

  .contact-growth__kicker {
    margin-bottom: 20px;

    font-size: 10px;
  }

  .contact-growth__intro h2 {
    font-size: clamp(39px, 10.7vw, 48px);
    line-height: 1.06;
  }

  .contact-growth__intro h2 br {
    display: none;
  }

  .contact-growth__lead {
    max-width: 100%;
    margin-top: 22px;

    font-size: 16.5px;
    line-height: 1.55;
  }

  .contact-growth__highlights {
    margin-top: 26px;

    grid-template-columns: 1fr;
    gap: 10px;
  }

  .contact-growth__highlight,
  .contact-growth__highlight:first-child,
  .contact-growth__highlight:last-child {
    min-height: 70px;
    padding: 10px 13px;

    border: 1px solid rgba(232, 167, 0, 0.12);
    border-radius: 14px;

    background: rgba(255, 255, 255, 0.92);
  }

  .contact-growth__highlight-icon {
    width: 51px;
    height: 51px;
  }

  .contact-growth__highlight > span {
    font-size: 14px;
  }

  .contact-growth__idea {
    width: 100%;
    min-height: 92px;
    margin-top: 17px;
    padding: 14px;
  }

  .contact-growth__idea > img {
    width: 62px;
    height: 62px;
  }

  .contact-growth__idea p {
    font-size: 13px;
  }

  .contact-growth__plane-lines {
    display: none;
  }

  .contact-growth__form-card {
    padding: 26px 18px 22px;

    border-radius: 20px;
  }

  .contact-growth__form-header > span,
  .contact-growth__form-header h3 {
    font-size: 29px;
  }

  .contact-growth__form {
    margin-top: 23px;
  }

  .contact-growth__form-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .contact-growth__field--full {
    grid-column: auto;
  }

  .contact-growth__field input,
  .contact-growth__field select {
    height: 58px;
    padding-right: 48px;
    padding-left: 49px;

    font-size: 15px;
  }

  .contact-growth__field textarea {
    height: 155px;
    padding:
      17px
      55px
      38px
      49px;

    font-size: 15px;
  }

  .contact-growth__field-icon {
    left: 17px;

    font-size: 21px;
  }

  .contact-growth__submit {
    min-height: 60px;
    margin-top: 15px;

    font-size: 15px;
  }

  .contact-growth__security {
    align-items: flex-start;

    font-size: 12px;
    text-align: left;
  }


  /* RIGHT CARDS - MOBILE SLIDER */

  .contact-growth__aside-shell {
    width: calc(100% + 18px);
  }

  .contact-growth__aside {
    width: 100%;
    padding:
      3px
      55px
      25px
      0;

    display: flex;
    gap: 14px;

    overflow-x: auto;
    overflow-y: visible;

    scroll-snap-type: x mandatory;
    scroll-padding-left: 0;
    overscroll-behavior-inline: contain;

    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .contact-growth__aside::-webkit-scrollbar {
    display: none;
  }

  .contact-growth__aside-card {
    width: calc(100vw - 74px);
    min-height: 170px;
    padding: 21px 19px;

    flex: 0 0 calc(100vw - 74px);

    grid-template-columns: auto minmax(0, 1fr);
    align-content: center;
    justify-items: stretch;

    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .contact-growth__aside-card:hover {
    transform: none;
  }

  .contact-growth__aside-icon {
    width: 64px;
    height: 64px;
  }

  .contact-growth__aside-card h4 {
    font-size: 17px;
  }

  .contact-growth__aside-card p {
    font-size: 14px;
  }

  .contact-growth__aside-tools {
    padding-right: 55px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
  }

  .contact-growth__swipe-hint {
    display: flex;
    align-items: center;
    gap: 8px;

    color: #666666;
    font-size: 13px;
    line-height: 1;
    font-weight: 600;
  }

  .contact-growth__swipe-hint b {
    color: #e5a300;
    font-size: 21px;
    line-height: 1;

    animation:
      contact-swipe-arrow 1.4s ease-in-out infinite;
  }

  .contact-growth__dots {
    display: flex;
    align-items: center;
    gap: 7px;
  }

  .contact-growth__dots button {
    width: 8px;
    height: 8px;
    padding: 0;

    border: 0;
    border-radius: 50%;
    background: #ddd7ca;

    cursor: pointer;

    transition:
      width 0.25s ease,
      border-radius 0.25s ease,
      background 0.25s ease;
  }

  .contact-growth__dots button.is-active {
    width: 24px;

    border-radius: 999px;
    background: #f3b300;
  }


  /* BOTTOM FACTS - MOBILE SLIDER */

  .contact-growth__facts {
    width: calc(100% + 18px);
    padding:
      2px
      55px
      20px
      0;

    display: flex;
    gap: 13px;

    overflow-x: auto;
    overflow-y: visible;

    scroll-snap-type: x mandatory;
    scroll-padding-left: 0;

    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .contact-growth__facts::-webkit-scrollbar {
    display: none;
  }

  .contact-growth__fact,
  .contact-growth__fact:first-child,
  .contact-growth__fact:last-child {
    width: calc(100vw - 87px);
    min-height: 116px;
    padding: 18px;

    flex: 0 0 calc(100vw - 87px);

    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .contact-growth__fact-icon {
    width: 57px;
    height: 57px;
  }

  .contact-growth__fact h4 {
    font-size: 16px;
  }

  .contact-growth__fact p {
    font-size: 13px;
  }

  @keyframes contact-swipe-arrow {
    0%,
    100% {
      transform: translateX(0);
    }

    50% {
      transform: translateX(6px);
    }
  }
}


/* =========================================================
   RESPONSIVE - 390
   ========================================================= */

@media (max-width: 390px) {
  .contact-growth__inner {
    padding-right: 16px;
    padding-left: 16px;
  }

  .contact-growth__intro h2 {
    font-size: 38px;
  }

  .contact-growth__lead {
    font-size: 16px;
  }

  .contact-growth__form-card {
    padding-right: 16px;
    padding-left: 16px;
  }

  .contact-growth__form-header > span,
  .contact-growth__form-header h3 {
    font-size: 27px;
  }

  .contact-growth__aside-card {
    width: calc(100vw - 66px);
    flex-basis: calc(100vw - 66px);
  }

  .contact-growth__fact,
  .contact-growth__fact:first-child,
  .contact-growth__fact:last-child {
    width: calc(100vw - 79px);
    flex-basis: calc(100vw - 79px);
  }
}


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

@media (prefers-reduced-motion: reduce) {
  .contact-growth.contact-animations-ready
  [data-contact-reveal],
  .contact-growth__aside-card,
  .contact-growth__plane-lines,
  .contact-growth__idea > img,
  .contact-growth__submit,
  .contact-growth__swipe-hint b {
    animation: none !important;
    transition: none !important;
  }

  .contact-growth.contact-animations-ready
  [data-contact-reveal] {
    opacity: 1;
    transform: none;
  }
}


/* =========================================================
   COOKIE CONSENT
   ========================================================= */

body.dc-consent-open {
  overflow: hidden;
}


/* =========================================================
   COOKIE BANNER
   ========================================================= */

.dc-consent-banner {
  position: fixed;
  right: clamp(16px, 2vw, 38px);
  bottom: clamp(16px, 2vw, 38px);
  left: clamp(16px, 2vw, 38px);
  z-index: 1900;

  width: auto;
  max-width: 1680px;
  min-height: clamp(150px, 10vw, 220px);
  margin: 0 auto;
  padding:
    clamp(22px, 1.6vw, 36px)
    clamp(22px, 1.9vw, 44px);

  display: grid;
  grid-template-columns:
    auto
    minmax(340px, 1fr)
    auto;

  align-items: center;
  gap: clamp(20px, 1.7vw, 40px);

  border: 1px solid rgba(225, 162, 0, 0.2);
  border-radius: clamp(20px, 1.35vw, 30px);

  background:
    radial-gradient(
      circle at 9% 30%,
      rgba(247, 181, 0, 0.12) 0%,
      rgba(247, 181, 0, 0) 32%
    ),
    #ffffff;

  box-shadow:
    0 28px 90px rgba(20, 20, 20, 0.2),
    0 8px 25px rgba(225, 162, 0, 0.08);

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transform: translateY(28px);

  transition:
    opacity 0.35s ease,
    visibility 0.35s ease,
    transform 0.38s cubic-bezier(0.22, 1, 0.36, 1);
}

.dc-consent-banner[hidden] {
  display: none;
}

.dc-consent-banner.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;

  transform: translateY(0);
}

.dc-consent-banner__icon {
  width: clamp(64px, 4.7vw, 105px);
  height: clamp(64px, 4.7vw, 105px);

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

  border: 1px solid rgba(225, 162, 0, 0.18);
  border-radius: 50%;

  background:
    linear-gradient(
      145deg,
      #fff9e8 0%,
      #ffffff 100%
    );

  color: #dda000;

  box-shadow:
    0 14px 32px rgba(225, 162, 0, 0.12);
}

.dc-consent-banner__icon svg,
.dc-consent-modal__symbol svg {
  width: 64%;
  height: 64%;

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

.dc-consent-banner__content {
  min-width: 0;
}

.dc-consent-banner__kicker {
  display: block;
  margin-bottom: clamp(8px, 0.55vw, 13px);

  color: #d99b00;
  font-size: clamp(9px, 0.62vw, 13px);
  line-height: 1;
  font-weight: 750;
  letter-spacing: 0.19em;
}

.dc-consent-banner__content h2 {
  margin: 0;

  color: #17181c;
  font-size: clamp(21px, 1.45vw, 34px);
  line-height: 1.15;
  font-weight: 640;
  letter-spacing: -0.035em;
}

.dc-consent-banner__content p {
  max-width: 850px;
  margin: clamp(9px, 0.65vw, 15px) 0 0;

  color: #5d5e63;
  font-size: clamp(13px, 0.84vw, 18px);
  line-height: 1.55;
  font-weight: 400;
}

.dc-consent-banner__links {
  margin-top: clamp(9px, 0.65vw, 15px);

  display: flex;
  align-items: center;
  gap: 18px;
}

.dc-consent-banner__links a {
  color: #856200;
  font-size: clamp(12px, 0.74vw, 16px);
  line-height: 1;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(133, 98, 0, 0.35);
  text-underline-offset: 4px;
}

.dc-consent-banner__actions {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: clamp(9px, 0.7vw, 15px);
}


/* =========================================================
   COOKIE BUTTONS
   ========================================================= */

.dc-consent-button {
  min-height: clamp(50px, 3.25vw, 68px);
  padding: 0 clamp(17px, 1.2vw, 27px);

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: clamp(11px, 0.75vw, 15px);

  font-family: inherit;
  font-size: clamp(13px, 0.82vw, 17px);
  line-height: 1.2;
  font-weight: 650;
  white-space: nowrap;

  cursor: pointer;

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

.dc-consent-button:hover,
.dc-consent-button:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.dc-consent-button--primary {
  border: 1px solid #f2b000;
  background: #f7b500;
  color: #161616;

  box-shadow:
    0 12px 28px rgba(235, 174, 0, 0.2);
}

.dc-consent-button--primary:hover,
.dc-consent-button--primary:focus-visible {
  background: #ffc52a;

  box-shadow:
    0 16px 34px rgba(235, 174, 0, 0.28);
}

.dc-consent-button--secondary {
  border: 1px solid rgba(225, 162, 0, 0.36);
  background: #fff8df;
  color: #705300;
}

.dc-consent-button--secondary:hover,
.dc-consent-button--secondary:focus-visible {
  border-color: #e1a200;
  background: #fff2c1;
}

.dc-consent-button--outline {
  border: 1px solid rgba(30, 30, 30, 0.24);
  background: #ffffff;
  color: #292929;
}

.dc-consent-button--outline:hover,
.dc-consent-button--outline:focus-visible {
  border-color: rgba(30, 30, 30, 0.48);
  background: #f7f7f5;
}


/* =========================================================
   COOKIE MODAL
   ========================================================= */

.dc-consent-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;

  padding: clamp(13px, 2vw, 40px);

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

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

.dc-consent-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.dc-consent-modal__backdrop {
  position: absolute;
  inset: 0;

  background: rgba(15, 16, 18, 0.64);
}

.dc-consent-modal__dialog {
  position: relative;
  z-index: 2;

  width: min(940px, 100%);
  max-height: calc(100svh - 40px);
  padding: clamp(25px, 2.2vw, 48px);

  overflow-x: hidden;
  overflow-y: auto;

  border: 1px solid rgba(225, 162, 0, 0.18);
  border-radius: clamp(22px, 1.5vw, 32px);

  background:
    radial-gradient(
      circle at 92% 4%,
      rgba(247, 181, 0, 0.12) 0%,
      rgba(247, 181, 0, 0) 29%
    ),
    #ffffff;

  box-shadow:
    0 36px 110px rgba(10, 10, 10, 0.27);

  transform:
    translateY(24px)
    scale(0.98);

  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);

  outline: none;
}

.dc-consent-modal.is-open
.dc-consent-modal__dialog {
  transform:
    translateY(0)
    scale(1);
}

.dc-consent-modal__close {
  position: absolute;
  top: clamp(17px, 1.3vw, 25px);
  right: clamp(17px, 1.3vw, 25px);

  width: 44px;
  height: 44px;
  padding: 0;

  border: 1px solid rgba(25, 25, 25, 0.1);
  border-radius: 50%;
  background: #ffffff;

  cursor: pointer;

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

.dc-consent-modal__close span {
  position: absolute;
  top: 50%;
  left: 50%;

  width: 19px;
  height: 2px;

  border-radius: 999px;
  background: #242424;
}

.dc-consent-modal__close span:first-child {
  transform:
    translate(-50%, -50%)
    rotate(45deg);
}

.dc-consent-modal__close span:last-child {
  transform:
    translate(-50%, -50%)
    rotate(-45deg);
}

.dc-consent-modal__close:hover,
.dc-consent-modal__close:focus-visible {
  transform: rotate(5deg);

  border-color: rgba(225, 162, 0, 0.45);
  background: #fff8df;

  outline: none;
}

.dc-consent-modal__head {
  padding-right: 55px;

  display: flex;
  align-items: center;
  gap: clamp(16px, 1.2vw, 25px);
}

.dc-consent-modal__symbol {
  width: clamp(58px, 4vw, 78px);
  height: clamp(58px, 4vw, 78px);

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

  flex: 0 0 auto;

  border-radius: 50%;
  background: #fff6d7;
  color: #dda000;
}

.dc-consent-modal__head > div:last-child > span {
  display: block;
  margin-bottom: 9px;

  color: #d99b00;
  font-size: clamp(10px, 0.65vw, 13px);
  line-height: 1;
  font-weight: 750;
  letter-spacing: 0.18em;
}

.dc-consent-modal__head h2 {
  margin: 0;

  color: #17181c;
  font-size: clamp(28px, 2.2vw, 43px);
  line-height: 1.1;
  font-weight: 640;
  letter-spacing: -0.04em;
}

.dc-consent-modal__description {
  max-width: 790px;
  margin: clamp(19px, 1.35vw, 27px) 0 0;

  color: #5d5e63;
  font-size: clamp(14px, 0.92vw, 17px);
  line-height: 1.65;
}

.dc-consent-categories {
  margin-top: clamp(25px, 1.8vw, 36px);

  display: grid;
  gap: 13px;
}

.dc-consent-category {
  min-height: 150px;
  padding: clamp(20px, 1.45vw, 29px);

  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 25px;

  border: 1px solid rgba(25, 25, 25, 0.08);
  border-radius: 18px;
  background: #ffffff;

  box-shadow:
    0 10px 28px rgba(35, 35, 35, 0.045);

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

.dc-consent-category:hover {
  transform: translateY(-2px);

  border-color: rgba(225, 162, 0, 0.24);
  background: #fffefa;
}

.dc-consent-category__heading {
  display: flex;
  align-items: center;
  gap: 14px;
}

.dc-consent-category__number {
  color: #d99b00;
  font-size: 11px;
  line-height: 1;
  font-weight: 750;
  letter-spacing: 0.08em;
}

.dc-consent-category__heading > div {
  display: flex;
  align-items: center;
  gap: 12px;
}

.dc-consent-category h3 {
  margin: 0;

  color: #1b1b1d;
  font-size: clamp(18px, 1.2vw, 23px);
  line-height: 1.2;
  font-weight: 650;
}

.dc-consent-category__status {
  padding: 6px 9px;

  border-radius: 999px;
  background: #fff6d8;

  color: #765800;
  font-size: 10px;
  line-height: 1;
  font-weight: 650;
}

.dc-consent-category p {
  max-width: 710px;
  margin: 12px 0 0;

  color: #616268;
  font-size: clamp(13px, 0.82vw, 15px);
  line-height: 1.55;
}

.dc-consent-category__services {
  margin-top: 12px;

  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.dc-consent-category__services span {
  padding: 7px 10px;

  border: 1px solid rgba(225, 162, 0, 0.16);
  border-radius: 8px;
  background: #fffbef;

  color: #755800;
  font-size: 11px;
  line-height: 1;
  font-weight: 600;
}


/* =========================================================
   COOKIE SWITCH
   ========================================================= */

.dc-consent-switch {
  position: relative;

  width: 58px;
  height: 32px;

  display: block;
  flex: 0 0 auto;

  cursor: pointer;
}

.dc-consent-switch input {
  position: absolute;

  width: 1px;
  height: 1px;

  opacity: 0;
  pointer-events: none;
}

.dc-consent-switch > span {
  position: absolute;
  inset: 0;

  border: 1px solid rgba(25, 25, 25, 0.12);
  border-radius: 999px;
  background: #e7e7e4;

  transition:
    border-color 0.22s ease,
    background 0.22s ease;
}

.dc-consent-switch > span::after {
  content: "";

  position: absolute;
  top: 3px;
  left: 3px;

  width: 24px;
  height: 24px;

  border-radius: 50%;
  background: #ffffff;

  box-shadow:
    0 3px 9px rgba(25, 25, 25, 0.17);

  transition:
    transform 0.24s cubic-bezier(0.22, 1, 0.36, 1);
}

.dc-consent-switch input:checked + span {
  border-color: #e9a800;
  background: #f7b500;
}

.dc-consent-switch input:checked + span::after {
  transform: translateX(26px);
}

.dc-consent-switch input:focus-visible + span {
  outline: 3px solid rgba(247, 181, 0, 0.22);
  outline-offset: 3px;
}

.dc-consent-switch--locked {
  cursor: default;
  opacity: 0.72;
}


/* =========================================================
   COOKIE MODAL FOOTER
   ========================================================= */

.dc-consent-modal__legal {
  margin-top: 22px;

  color: #6b6c71;
  font-size: 13px;
  line-height: 1.5;
}

.dc-consent-modal__legal a {
  color: #805f00;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.dc-consent-modal__actions {
  margin-top: 25px;
  padding-top: 24px;

  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;

  border-top: 1px solid rgba(25, 25, 25, 0.09);
}

.dc-consent-modal__status {
  min-height: 18px;
  margin: 12px 0 0;

  color: #6b5300;
  font-size: 12px;
  line-height: 1.4;
  text-align: center;
}


/* =========================================================
   COOKIE RESPONSIVE
   ========================================================= */

@media (max-width: 1180px) {
  .dc-consent-banner {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .dc-consent-banner__actions {
    grid-column: 1 / -1;

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

@media (max-width: 700px) {
  .dc-consent-banner {
    right: 10px;
    bottom: 10px;
    left: 10px;

    max-height: calc(100svh - 20px);
    padding: 20px;

    grid-template-columns: 1fr;
    gap: 15px;

    overflow-y: auto;

    border-radius: 21px;
  }

  .dc-consent-banner__icon {
    width: 58px;
    height: 58px;
  }

  .dc-consent-banner__content h2 {
    font-size: 24px;
  }

  .dc-consent-banner__content p {
    font-size: 14px;
  }

  .dc-consent-banner__actions {
    grid-column: auto;

    grid-template-columns: 1fr;
  }

  .dc-consent-button {
    width: 100%;
    min-height: 52px;
  }

  .dc-consent-modal {
    padding: 8px;
    align-items: flex-end;
  }

  .dc-consent-modal__dialog {
    width: 100%;
    max-height: calc(100svh - 16px);
    padding: 25px 18px 20px;

    border-radius: 22px 22px 15px 15px;

    transform: translateY(40px);
  }

  .dc-consent-modal__head {
    padding-right: 45px;
  }

  .dc-consent-modal__symbol {
    width: 54px;
    height: 54px;
  }

  .dc-consent-modal__head h2 {
    font-size: 29px;
  }

  .dc-consent-category {
    min-height: 0;
    padding: 19px 16px;

    grid-template-columns: minmax(0, 1fr) auto;
    gap: 13px;
  }

  .dc-consent-category__heading > div {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }

  .dc-consent-category p {
    font-size: 13px;
  }

  .dc-consent-switch {
    width: 52px;
    height: 29px;
  }

  .dc-consent-switch > span::after {
    width: 21px;
    height: 21px;
  }

  .dc-consent-switch input:checked + span::after {
    transform: translateX(23px);
  }

  .dc-consent-modal__actions {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 390px) {
  .dc-consent-banner {
    padding: 18px 16px;
  }

  .dc-consent-banner__content h2 {
    font-size: 22px;
  }

  .dc-consent-modal__head h2 {
    font-size: 26px;
  }

  .dc-consent-category {
    grid-template-columns: 1fr;
  }

  .dc-consent-switch {
    justify-self: end;
  }
}


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

@media (prefers-reduced-motion: reduce) {
  .dc-consent-banner,
  .dc-consent-modal,
  .dc-consent-modal__dialog,
  .dc-consent-button,
  .dc-consent-category,
  .dc-consent-switch > span,
  .dc-consent-switch > span::after {
    animation: none !important;
    transition: none !important;
  }
}

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

.dc-footer {
  position: relative;

  width: 100%;
  min-height: 100svh;
  overflow: hidden;

  background:
    radial-gradient(
      circle at 79% 29%,
      rgba(247, 181, 0, 0.055) 0%,
      rgba(247, 181, 0, 0.018) 28%,
      rgba(255, 255, 255, 0) 54%
    ),
    linear-gradient(
      180deg,
      #ffffff 0%,
      #fffefa 56%,
      #faf9f5 100%
    );
}

.dc-footer::before {
  content: "";

  position: absolute;
  top: 7%;
  right: -9%;

  width: 38vw;
  height: 38vw;

  border: 1px solid rgba(235, 169, 0, 0.07);
  border-radius: 50%;

  pointer-events: none;
}

.dc-footer::after {
  content: "";

  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;

  height: clamp(50px, 4.5vw, 110px);

  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(224, 222, 214, 0.42) 100%
    );

  pointer-events: none;
}

.dc-footer__inner {
  position: relative;
  z-index: 2;

  width: 100%;
  min-height: 100svh;
  padding:
    clamp(52px, 4.2vw, 105px)
    4.8vw
    clamp(31px, 2.65vw, 66px);

  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.dc-footer__top-accent {
  display: block;

  width: clamp(54px, 4.3vw, 108px);
  height: clamp(3px, 0.25vw, 6px);

  border-radius: 999px;
  background: #f3b300;
}


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

.dc-footer__grid {
  width: 100%;
  margin-top: clamp(44px, 4vw, 96px);

  display: grid;
  grid-template-columns:
    minmax(0, 1.12fr)
    minmax(240px, 0.72fr)
    minmax(390px, 1.08fr);

  align-items: stretch;
}

.dc-footer__brand,
.dc-footer__navigation,
.dc-footer__contact {
  min-width: 0;
}

.dc-footer__brand {
  padding-right: clamp(42px, 4.1vw, 102px);
}

.dc-footer__navigation {
  padding:
    0
    clamp(42px, 4vw, 98px);

  border-left: 1px solid rgba(25, 25, 25, 0.11);
}

.dc-footer__contact {
  padding-left: clamp(42px, 4vw, 98px);

  border-left: 1px solid rgba(25, 25, 25, 0.11);
}


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

.dc-footer__logo {
  width: clamp(300px, 29vw, 720px);

  display: block;

  transition:
    transform 0.28s ease;
}

.dc-footer__logo:hover,
.dc-footer__logo:focus-visible {
  transform: translateX(5px);
  outline: none;
}

.dc-footer__logo img {
  width: 100%;
  height: auto;

  display: block;
  object-fit: contain;
}

.dc-footer__description {
  margin:
    clamp(43px, 3.6vw, 88px)
    0
    0;

  color: #34363e;
  font-size: clamp(16px, 1.25vw, 30px);
  line-height: 1.75;
  font-weight: 400;
  letter-spacing: -0.012em;
}

.dc-footer__socials {
  width: min(100%, 470px);
  margin-top: clamp(51px, 4.2vw, 104px);

  display: grid;
  gap: clamp(15px, 1.15vw, 28px);
}

.dc-footer__social-link {
  width: 100%;

  display: block;

  border-radius: clamp(12px, 0.8vw, 19px);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.dc-footer__social-link:hover,
.dc-footer__social-link:focus-visible {
  transform: translateY(-4px);

  box-shadow:
    0 1vw 2.2vw rgba(35, 35, 35, 0.08);

  outline: none;
}

.dc-footer__social-link img {
  width: 100%;
  height: auto;

  display: block;
  object-fit: contain;
}


/* =========================================================
   SECTION HEADINGS
   ========================================================= */

.dc-footer__section-heading h2 {
  margin: 0;

  color: #111216;
  font-size: clamp(17px, 1.25vw, 30px);
  line-height: 1;
  font-weight: 720;
  letter-spacing: 0.11em;
}

.dc-footer__section-heading span {
  display: block;

  width: clamp(44px, 3.45vw, 86px);
  height: clamp(2px, 0.18vw, 4px);
  margin-top: clamp(18px, 1.4vw, 34px);

  border-radius: 999px;
  background: #f3b300;
}


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

.dc-footer__navigation ul {
  margin: clamp(41px, 3.25vw, 80px) 0 0;
  padding: 0;

  display: grid;
  gap: clamp(34px, 2.75vw, 68px);

  list-style: none;
}

.dc-footer__navigation li {
  min-width: 0;
}

.dc-footer__navigation a {
  position: relative;

  width: fit-content;

  display: inline-flex;
  align-items: center;

  color: #24262d;
  font-size: clamp(17px, 1.2vw, 29px);
  line-height: 1.2;
  font-weight: 440;

  transition:
    color 0.23s ease,
    transform 0.23s ease;
}

.dc-footer__navigation a::before {
  content: "";

  position: absolute;
  top: 50%;
  left: -19px;

  width: 7px;
  height: 7px;

  border-radius: 50%;
  background: #f3b300;

  opacity: 0;
  transform:
    translateY(-50%)
    scale(0);

  transition:
    opacity 0.23s ease,
    transform 0.23s ease;
}

.dc-footer__navigation a:hover,
.dc-footer__navigation a:focus-visible {
  color: #d99b00;
  transform: translateX(9px);

  outline: none;
}

.dc-footer__navigation a:hover::before,
.dc-footer__navigation a:focus-visible::before {
  opacity: 1;

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


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

.dc-footer__contact-card {
  width: 100%;
  margin-top: clamp(24px, 1.85vw, 45px);
  overflow: hidden;

  border: 1px solid rgba(25, 25, 25, 0.13);
  border-radius: clamp(17px, 1.15vw, 28px);

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.98) 0%,
      rgba(255, 254, 250, 0.98) 100%
    );

  box-shadow:
    0 1vw 2.8vw rgba(35, 35, 35, 0.045);
}

.dc-footer__contact-row {
  position: relative;

  min-height: clamp(68px, 5vw, 121px);
  padding:
    clamp(14px, 1.15vw, 28px)
    clamp(21px, 1.7vw, 41px);

  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: clamp(17px, 1.3vw, 31px);

  color: #30323a;
  font-size: clamp(16px, 1.15vw, 28px);
  line-height: 1.4;
  font-weight: 430;

  transition:
    background 0.24s ease,
    padding-left 0.24s ease;
}

.dc-footer__contact-row:not(:last-child)::after {
  content: "";

  position: absolute;
  right: clamp(21px, 1.7vw, 41px);
  bottom: 0;
  left: clamp(21px, 1.7vw, 41px);

  height: 1px;

  background: rgba(25, 25, 25, 0.1);
}

a.dc-footer__contact-row:hover,
a.dc-footer__contact-row:focus-visible {
  padding-left: calc(clamp(21px, 1.7vw, 41px) + 6px);

  background: rgba(255, 248, 222, 0.68);

  outline: none;
}

.dc-footer__contact-row--address {
  min-height: clamp(144px, 10.8vw, 260px);

  align-items: flex-start;
}

.dc-footer__contact-icon {
  width: clamp(30px, 2.1vw, 52px);
  height: clamp(30px, 2.1vw, 52px);

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

  flex: 0 0 auto;
}

.dc-footer__contact-icon img {
  width: 100%;
  height: 100%;

  display: block;
  object-fit: contain;
}

.dc-footer__contact-content {
  min-width: 0;
}

.dc-footer__contact-row--address
.dc-footer__contact-content {
  display: flex;
  flex-direction: column;
  gap: clamp(7px, 0.52vw, 13px);
}

.dc-footer__contact-content strong {
  color: #17181c;
  font-size: clamp(17px, 1.2vw, 29px);
  line-height: 1.3;
  font-weight: 670;
}


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

.dc-footer__bottom {
  width: 100%;
  margin-top: clamp(55px, 5vw, 120px);
  padding-top: clamp(31px, 2.7vw, 66px);

  display: grid;
  grid-template-columns:
    minmax(270px, 0.9fr)
    minmax(500px, 1.3fr)
    minmax(350px, 1fr);

  align-items: center;
  gap: clamp(21px, 1.8vw, 44px);

  border-top: 1px solid rgba(25, 25, 25, 0.14);
}

.dc-footer__copyright,
.dc-footer__made-in {
  margin: 0;

  color: #33353c;
  font-size: clamp(12px, 0.82vw, 20px);
  line-height: 1.4;
  font-weight: 430;
}

.dc-footer__legal {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.dc-footer__legal a,
.dc-footer__legal button {
  position: relative;

  padding:
    0
    clamp(15px, 1.3vw, 31px);

  border: 0;
  background: transparent;

  color: #33353c;
  font-family: inherit;
  font-size: clamp(12px, 0.82vw, 20px);
  line-height: 1.4;
  font-weight: 430;

  cursor: pointer;

  transition: color 0.22s ease;
}

.dc-footer__legal a:not(:last-child)::after,
.dc-footer__legal button:not(:last-child)::after {
  content: "";

  position: absolute;
  top: 50%;
  right: 0;

  width: 1px;
  height: 21px;

  background: rgba(25, 25, 25, 0.18);

  transform: translateY(-50%);
}

.dc-footer__legal a:hover,
.dc-footer__legal a:focus-visible,
.dc-footer__legal button:hover,
.dc-footer__legal button:focus-visible {
  color: #d99b00;
  outline: none;
}

.dc-footer__made-in {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(11px, 0.8vw, 19px);

  text-align: right;
}

.dc-footer__made-in img {
  width: clamp(22px, 1.55vw, 38px);
  height: clamp(22px, 1.55vw, 38px);

  display: block;
  flex: 0 0 auto;
  object-fit: contain;

  animation:
    dc-footer-heart 2.1s ease-in-out infinite;
}


/* =========================================================
   FOOTER REVEAL ANIMATIONS
   ========================================================= */

.dc-footer.dc-footer-animations-ready
[data-footer-reveal] {
  opacity: 0;
  transform: translateY(30px);
}

.dc-footer.dc-footer-animations-ready
[data-footer-reveal="brand"] {
  transform: translateX(-36px);
}

.dc-footer.dc-footer-animations-ready
[data-footer-reveal="contact"] {
  transform: translateX(36px);
}

.dc-footer.dc-footer-animations-ready.is-visible
[data-footer-reveal] {
  opacity: 1;
  transform: translate(0, 0);

  transition:
    opacity 0.72s ease,
    transform 0.72s cubic-bezier(0.22, 1, 0.36, 1);
}

.dc-footer.is-visible
[data-footer-reveal="navigation"] {
  transition-delay: 0.11s;
}

.dc-footer.is-visible
[data-footer-reveal="contact"] {
  transition-delay: 0.22s;
}

.dc-footer.is-visible
[data-footer-reveal="bottom"] {
  transition-delay: 0.34s;
}

@keyframes dc-footer-heart {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }
}


/* =========================================================
   FOOTER RESPONSIVE - 1500
   ========================================================= */

@media (max-width: 1500px) and (min-width: 1181px) {
  .dc-footer__inner {
    padding:
      56px
      48px
      38px;
  }

  .dc-footer__grid {
    grid-template-columns:
      minmax(0, 1fr)
      minmax(210px, 0.65fr)
      minmax(350px, 0.95fr);
  }

  .dc-footer__brand {
    padding-right: 42px;
  }

  .dc-footer__navigation {
    padding: 0 42px;
  }

  .dc-footer__contact {
    padding-left: 42px;
  }

  .dc-footer__logo {
    width: 390px;
  }

  .dc-footer__description {
    font-size: 17px;
  }

  .dc-footer__socials {
    width: 390px;
  }

  .dc-footer__section-heading h2 {
    font-size: 18px;
  }

  .dc-footer__navigation a {
    font-size: 17px;
  }

  .dc-footer__contact-row {
    font-size: 16px;
  }

  .dc-footer__contact-content strong {
    font-size: 17px;
  }

  .dc-footer__bottom {
    grid-template-columns: 0.9fr 1.35fr 1fr;
  }

  .dc-footer__copyright,
  .dc-footer__legal a,
  .dc-footer__legal button,
  .dc-footer__made-in {
    font-size: 12px;
  }
}


/* =========================================================
   FOOTER RESPONSIVE - 1180
   ========================================================= */

@media (max-width: 1180px) {
  .dc-footer {
    min-height: 0;
  }

  .dc-footer__inner {
    min-height: 0;
    padding: 62px 32px 48px;

    justify-content: flex-start;
  }

  .dc-footer__grid {
    margin-top: 52px;

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

    grid-template-areas:
      "brand brand"
      "navigation contact";

    row-gap: 58px;
  }

  .dc-footer__brand {
    grid-area: brand;

    padding-right: 0;
  }

  .dc-footer__navigation {
    grid-area: navigation;

    padding:
      0
      42px
      0
      0;

    border-left: 0;
  }

  .dc-footer__contact {
    grid-area: contact;

    padding-left: 42px;
  }

  .dc-footer__logo {
    width: min(520px, 72vw);
  }

  .dc-footer__description {
    max-width: 710px;
    margin-top: 38px;

    font-size: 19px;
  }

  .dc-footer__socials {
    width: min(450px, 100%);
    margin-top: 42px;
  }

  .dc-footer__navigation ul {
    gap: 31px;
  }

  .dc-footer__navigation a {
    font-size: 20px;
  }

  .dc-footer__contact-row {
    font-size: 18px;
  }

  .dc-footer__contact-content strong {
    font-size: 20px;
  }

  .dc-footer__bottom {
    margin-top: 62px;

    grid-template-columns: 1fr;
    justify-items: center;
    gap: 25px;

    text-align: center;
  }

  .dc-footer__copyright,
  .dc-footer__made-in {
    font-size: 14px;
  }

  .dc-footer__made-in {
    justify-content: center;
    text-align: center;
  }
}


/* =========================================================
   FOOTER RESPONSIVE - 700
   ========================================================= */

@media (max-width: 700px) {
  .dc-footer__inner {
    padding: 49px 18px 39px;
  }

  .dc-footer__top-accent {
    width: 58px;
  }

  .dc-footer__grid {
    margin-top: 42px;

    grid-template-columns: 1fr;
    grid-template-areas:
      "brand"
      "navigation"
      "contact";

    row-gap: 44px;
  }

  .dc-footer__brand,
  .dc-footer__navigation,
  .dc-footer__contact {
    width: 100%;
    padding: 0;
    border-left: 0;
  }

  .dc-footer__navigation,
  .dc-footer__contact {
    padding-top: 39px;

    border-top: 1px solid rgba(25, 25, 25, 0.1);
  }

  .dc-footer__logo {
    width: min(100%, 420px);
  }

  .dc-footer__description {
    margin-top: 30px;

    font-size: 17px;
    line-height: 1.65;
  }

  .dc-footer__description br {
    display: none;
  }

  .dc-footer__socials {
    width: 100%;
    margin-top: 31px;
    gap: 13px;
  }

  .dc-footer__section-heading h2 {
    font-size: 18px;
  }

  .dc-footer__section-heading span {
    margin-top: 17px;
  }

  .dc-footer__navigation ul {
    margin-top: 31px;

    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 22px;
  }

  .dc-footer__navigation a {
    width: 100%;
    min-height: 53px;
    padding: 0 17px;

    border: 1px solid rgba(25, 25, 25, 0.08);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.86);

    font-size: 16px;
  }

  .dc-footer__navigation a::before {
    display: none;
  }

  .dc-footer__navigation a:hover,
  .dc-footer__navigation a:focus-visible {
    transform: translateY(-2px);
  }

  .dc-footer__contact-card {
    margin-top: 27px;
  }

  .dc-footer__contact-row {
    min-height: 67px;
    padding: 15px 17px;

    gap: 14px;

    font-size: 16px;
  }

  a.dc-footer__contact-row:hover,
  a.dc-footer__contact-row:focus-visible {
    padding-left: 21px;
  }

  .dc-footer__contact-row--address {
    min-height: 145px;
  }

  .dc-footer__contact-row:not(:last-child)::after {
    right: 17px;
    left: 17px;
  }

  .dc-footer__contact-icon {
    width: 31px;
    height: 31px;
  }

  .dc-footer__contact-content strong {
    font-size: 17px;
  }

  .dc-footer__bottom {
    margin-top: 46px;
    padding-top: 31px;

    gap: 23px;
  }

  .dc-footer__legal {
    gap: 11px 0;
  }

  .dc-footer__legal a,
  .dc-footer__legal button {
    padding: 0 13px;

    font-size: 13px;
  }

  .dc-footer__copyright,
  .dc-footer__made-in {
    font-size: 13px;
  }
}


/* =========================================================
   FOOTER RESPONSIVE - 390
   ========================================================= */

@media (max-width: 390px) {
  .dc-footer__inner {
    padding-right: 16px;
    padding-left: 16px;
  }

  .dc-footer__description {
    font-size: 16px;
  }

  .dc-footer__navigation ul {
    gap: 12px;
  }

  .dc-footer__navigation a {
    padding: 0 13px;

    font-size: 15px;
  }

  .dc-footer__contact-row {
    font-size: 15px;
  }

  .dc-footer__legal a,
  .dc-footer__legal button {
    padding: 0 9px;

    font-size: 12px;
  }

  .dc-footer__legal a:not(:last-child)::after,
  .dc-footer__legal button:not(:last-child)::after {
    height: 17px;
  }
}


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

@media (prefers-reduced-motion: reduce) {
  .dc-footer.dc-footer-animations-ready
  [data-footer-reveal],
  .dc-footer__logo,
  .dc-footer__social-link,
  .dc-footer__navigation a,
  .dc-footer__contact-row,
  .dc-footer__made-in img {
    animation: none !important;
    transition: none !important;
  }

  .dc-footer.dc-footer-animations-ready
  [data-footer-reveal] {
    opacity: 1;
    transform: none;
  }
}


/* =========================================================
   MEDIUM DESKTOP
   ========================================================= */

@media (max-width: 1450px) {
  .hero-content {
    grid-template-columns: 41% 59%;
    padding-right: 42px;
    padding-left: 42px;
  }

  .hero-left h1 {
    font-size: 72px;
  }

  .hero-text {
    font-size: 18px;
  }

  .primary-btn {
    width: 315px;
  }

  .secondary-btn {
    width: 185px;
  }

  .benefit {
    padding-right: 20px;
    margin-right: 18px;
  }

  .benefit-text {
    font-size: 13px;
  }

  .hero-compare {
    height: 550px;
  }

  .compare-old {
    width: 58%;
  }

  .compare-new {
    width: 60%;
  }

  .arrow-glow {
    top: 52%;
    left: 34.5%;
    width: 440px;
  }
}


/* =========================================================
   SMALL DESKTOP / HEADER WITHOUT NAV
   ========================================================= */

@media (max-width: 1180px) {
  .hero {
    min-height: calc(100svh - 92px);
  }

  .hero-content {
    min-height: calc(100svh - 92px);
    padding: 48px 24px 40px;

    grid-template-columns: 43% 57%;
    row-gap: 35px;
  }

  .hero-left h1 {
    font-size: clamp(57px, 6vw, 68px);
    letter-spacing: -3px;
  }

  .hero-text {
    font-size: 17px;
  }

  .primary-btn {
    width: 290px;
  }

  .secondary-btn {
    width: 172px;
  }

  .hero-compare {
    height: 510px;
  }

  .compare-old {
    width: 59%;
  }

  .compare-new {
    width: 60%;
  }

  .arrow-glow {
    left: 33.5%;
    width: 400px;
  }

  .benefit {
    padding-right: 14px;
    margin-right: 13px;
    gap: 10px;
  }

  .benefit-icon {
    width: 49px;
    height: 49px;
  }

  .benefit-text {
    font-size: 11px;
  }
}


/* =========================================================
   TABLET — ВЕРТИКАЛЬНАЯ КОМПОЗИЦИЯ
   ========================================================= */

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

  .hero-content {
    min-height: 0;
    padding: 46px 24px 42px;

    display: flex;
    flex-direction: column;
  }

  .hero-left {
    width: 100%;
    padding-right: 0;
  }

  .eyebrow {
    margin-bottom: 27px;

    font-size: 13px;
    letter-spacing: 1.7px;
    white-space: normal;
  }

  .hero-left h1 {
    font-size: clamp(58px, 8vw, 72px);
    line-height: 1;
    letter-spacing: -3px;
  }

  .hero-text {
    margin-top: 27px;

    font-size: clamp(19px, 2.5vw, 23px);
  }

  .hero-actions {
    margin-top: 31px;

    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }

  .primary-btn,
  .secondary-btn {
    width: 100%;
    height: 66px;

    font-size: 17px;
  }

  .hero-right {
    order: 2;

    width: 100%;
    margin-top: 28px;
  }

  .hero-compare {
    height: clamp(490px, 69vw, 620px);
  }

  .compare-old {
    top: 8px;
    left: -2%;

    width: 64%;
  }

  .compare-new {
    top: 7%;
    right: -1%;

    width: 58%;
  }

  .hero-benefits {
    order: 3;

    width: 100%;
    margin-top: 33px;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .benefit {
    min-height: 138px;
    margin: 0;
    padding: 0 15px;

    flex-direction: column;
    justify-content: flex-start;
    gap: 13px;

    border-right: 1px solid rgba(28, 28, 28, 0.13);
  }

  .benefit:last-child {
    padding: 0 15px;
  }

  .benefit-icon {
    width: 75px;
    height: 75px;
  }

  .benefit-text {
    font-size: 15px;
    line-height: 1.23;
    text-align: center;
  }
}


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

@media (max-width: 620px) {
  .hero-content {
    padding: 39px 18px 36px;
  }

  .eyebrow {
    margin-bottom: 22px;

    font-size: 11px;
    line-height: 1.35;
    letter-spacing: 1.1px;
  }

  .hero-left h1 {
    font-size: clamp(43px, 11.9vw, 55px);
    line-height: 1.02;
    font-weight: 600;
    letter-spacing: -2.3px;
  }

  .hero-text {
    margin-top: 23px;

    color: #5f5c59;
    font-size: clamp(17px, 4.35vw, 20px);
    line-height: 1.5;
  }

  .hero-text br {
    display: none;
  }

  .hero-actions {
    margin-top: 27px;
  }

  .primary-btn,
  .secondary-btn {
    height: 64px;

    font-size: clamp(14px, 3.8vw, 17px);
  }

  .primary-btn img,
  .secondary-btn img {
    width: 27px;
    height: 27px;
  }

  .hero-right {
    margin-top: 21px;
  }

  .hero-compare {
    height: clamp(430px, 112vw, 555px);
  }

  .compare-old {
    top: 16px;
    left: -7%;

    width: 74%;
  }

  .compare-new {
    top: 44px;
    right: -6%;

    width: 66%;
  }

  .tag {
    min-width: 101px;
    height: 35px;
    padding: 0 20px;

    font-size: 14px;
  }

  .tag-old {
    justify-self: center;
    margin-left: -14px;
  }

  .tag-new {
    justify-self: center;
    margin-left: 14px;
  }

  .hero-benefits {
    margin-top: 31px;
  }

  .benefit {
    min-height: 132px;
    padding: 0 7px;
    gap: 12px;
  }

  .benefit:last-child {
    padding: 0 7px;
  }

  .benefit-icon {
    width: clamp(64px, 17vw, 73px);
    height: clamp(64px, 17vw, 73px);
  }

  .benefit-text {
    font-size: clamp(12px, 3.5vw, 15px);
  }
}


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

@media (max-width: 390px) {
  .hero-content {
    padding-right: 16px;
    padding-left: 16px;
  }

  .eyebrow {
    font-size: 10.2px;
    letter-spacing: 0.85px;
  }

  .hero-left h1 {
    font-size: 42px;
    letter-spacing: -2.1px;
  }

  .hero-text {
    font-size: 16.5px;
  }

  .primary-btn,
  .secondary-btn {
    font-size: 14px;
  }

  .hero-compare {
    height: 455px;
  }

  .compare-old {
    left: -9%;
    width: 77%;
  }

  .compare-new {
    right: -8%;
    width: 69%;
  }

  .tag {
    min-width: 92px;
    height: 34px;

    font-size: 13px;
  }

  .benefit {
    padding-right: 5px;
    padding-left: 5px;
  }

  .benefit:last-child {
    padding-right: 5px;
    padding-left: 5px;
  }

  .benefit-text {
    font-size: 12px;
  }
}
