/* Base layout */
@font-face {
  font-family: "Ruberoid";
  src: url("../assets/fonts/Ruberoid-ExtraBold.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Ruberoid";
  src: url("../assets/fonts/Ruberoid-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

html,
body {
  height: 100%;
  width: 100%;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: #050608;
  color: #ffffff;
}

.page-wrapper {
  width: 100%;
  max-width: 1300px;
  height: 100%;
  margin: 0 auto;
  position: relative;
}

.container {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1300px;
  z-index: 100;
  background-color: rgba(5, 6, 8, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 24px;
  padding: 0 40px;
}

.header__logo-link {
  display: inline-flex;
  align-items: center;
}

.header__logo-image {
  display: block;
}

.header__nav {
  flex: 1;
}

.header__menu {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header__menu-item {
  display: flex;
}

.header__menu-link {
  position: relative;
  padding: 8px 0;
  font-size: 14px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.2s ease;
}

.header__menu-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #2eecc5, #41fff1);
  transition: width 0.2s ease;
}

.header__menu-link:focus-visible,
.header__menu-link:hover {
  color: #ffffff;
}

.header__menu-link:focus-visible::after,
.header__menu-link:hover::after {
  width: 100%;
}

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

/* Burger menu */
.header__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  position: relative;
  z-index: 101;
  transition: transform 0.3s ease;
}

.header__burger:hover {
  transform: scale(1.05);
}

.header__burger:focus-visible {
  outline: 2px solid #2eecc5;
  outline-offset: 3px;
  border-radius: 4px;
}

.header__burger-line {
  display: block;
  width: 28px;
  height: 2px;
  background-color: #2eecc5;
  border-radius: 2px;
  transition: 
    transform 0.3s ease,
    opacity 0.3s ease,
    background-color 0.3s ease;
  position: relative;
}

.header__burger-line:not(:last-child) {
  margin-bottom: 6px;
}

.header__burger.is-active .header__burger-line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.header__burger.is-active .header__burger-line:nth-child(2) {
  opacity: 0;
}

.header__burger.is-active .header__burger-line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Menu overlay */
.header__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: 
    opacity 0.3s ease,
    visibility 0.3s ease;
  z-index: 99;
}

.header__overlay.is-visible {
  opacity: 1;
  visibility: visible;
}

/* Button (from Figma settings) */
.button {
  border: none;
  cursor: pointer;
  font: inherit;
}

.button--primary {
  min-width: 183px;
  height: 56px;
  padding: 0 28px 0 32px;
  border-radius: 49px;
  border: 1.5px solid #2eecc5;
  background-color: rgba(46, 236, 197, 0.1);
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: relative;
  transition:
    background-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.1s ease;
}

.button--primary::after {
  content: "›";
  font-size: 28px;
  line-height: 1;
  transition: transform 0.2s ease;
}

.button--primary:hover {
  background-color: rgba(46, 236, 197, 0.18);
  box-shadow: 0 0 18px rgba(46, 236, 197, 0.45);
}

.button--primary:hover::after {
  transform: translateX(4px);
}

.button--primary:active {
  transform: translateY(1px);
  box-shadow: 0 0 10px rgba(46, 236, 197, 0.3);
}

.button--primary:focus-visible {
  outline: 2px solid #2eecc5;
  outline-offset: 3px;
}

.hero {
  position: relative;
  width: 100%;
  min-height: 700px;
  padding: 80px 0 0;
  background-color: #090c14;
  overflow: hidden;
}

.hero__backdrop {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 70% 40%,
    rgba(46, 236, 197, 0.2),
    transparent 60%
  );
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(64px, 96px) minmax(0, 1.2fr) minmax(260px, 420px);
  gap: 32px;
  align-items: center;
  min-height: 600px;
  background-image: url("../assets/img/background.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 8px;
}

.hero__timeline {
  position: relative;
  padding: 24px 0;
  display: flex;
  justify-content: center;
}

.hero__timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(46, 236, 197, 0.7), rgba(19, 151, 255, 0.3));
  border-radius: 999px;
  mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(0, 0, 0, 1) 8%,
    rgba(0, 0, 0, 1) 92%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(0, 0, 0, 1) 8%,
    rgba(0, 0, 0, 1) 92%,
    transparent 100%
  );
}

.hero__timeline-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero__timeline-item {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  min-height: 64px;
  padding-left: 0;
}

.hero__timeline-item::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 60px;
  width: 2px;
  height: calc(100% - 60px);
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(46, 236, 197, 0.4), rgba(19, 151, 255, 0));
  opacity: 0.7;
}

.hero__timeline-item:last-child::after {
  display: none;
}

.hero__timeline-point {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: none;
  background: transparent;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
  padding: 0;
  flex-direction: row;
  width: 100%;
}

.hero__timeline-point:focus-visible {
  outline: 2px solid #2eecc5;
  outline-offset: 4px;
}

.hero__timeline-point:hover {
  transform: translateX(4px);
}

.hero__timeline-number {
  font-family: "Ruberoid", "Segoe UI", sans-serif;
  font-size: 25px;
  font-weight: 800;
  letter-spacing: 0.28em;
  color: rgba(46, 236, 197, 0.5);
  text-transform: uppercase;
  min-width: 46px;
  text-align: left;
  position: relative;
  z-index: 1;
  margin-left: calc(50% + 13px + 13px);
}

.hero__timeline-dot {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 26px;
  height: 45px;
  border-radius: 999px;
  border: 1.5px solid rgba(46, 236, 197, 0.8);
  background: linear-gradient(180deg, rgba(46, 236, 197, 0.4), rgba(19, 151, 255, 0.6));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 0 12px rgba(46, 236, 197, 0.2),
    inset 0 0 10px rgba(19, 151, 255, 0.2);
  opacity: 0.5;
  z-index: 2;
  transform: translate(-50%, -50%);
}

.hero__timeline-dot::before {
  content: "";
  position: absolute;
  width: 18px;
  height: 32px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(46, 236, 197, 0.6), rgba(19, 151, 255, 0.8));
  box-shadow:
    inset 0 0 8px rgba(46, 236, 197, 0.3),
    0 0 8px rgba(46, 236, 197, 0.4);
}

.hero__timeline-dot::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 20px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(46, 236, 197, 0.8), rgba(19, 151, 255, 1));
  box-shadow:
    inset 0 0 6px rgba(46, 236, 197, 0.5),
    0 0 6px rgba(46, 236, 197, 0.6);
}

.hero__timeline-point.is-active .hero__timeline-number {
  color: #2eecc5;
}

.hero__timeline-point.is-active .hero__timeline-dot {
  border-color: rgba(46, 236, 197, 0.95);
  box-shadow:
    0 0 22px rgba(46, 236, 197, 0.5),
    inset 0 0 18px rgba(19, 151, 255, 0.45);
  opacity: 1;
}

.hero__timeline-point.is-active .hero__timeline-dot::before {
  width: 20px;
  height: 34px;
}

.hero__timeline-point.is-active .hero__timeline-dot::after {
  width: 14px;
  height: 22px;
}

.hero__content {
  min-height: 220px;
  border-radius: 32px;
  padding: 32px;
  background: rgba(5, 6, 8, 0.65);
  border: 1px solid rgba(46, 236, 197, 0.12);
  box-shadow: inset 0 0 40px rgba(46, 236, 197, 0.04);
  transition: opacity 0.3s ease;
}

.hero__content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero__title {
  margin: 0;
  font-family: "Ruberoid", "Segoe UI", sans-serif;
  font-size: 48px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
  color: #2eecc5;
  letter-spacing: 0.02em;
}

.hero__description {
  margin: 0;
  font-family: "Ruberoid", "Segoe UI", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  max-width: 580px;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.hero__link {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.2s ease;
  position: relative;
}

.hero__link:hover,
.hero__link:focus-visible {
  color: rgba(255, 255, 255, 0.8);
}

.hero__link:focus-visible {
  outline: 2px solid #2eecc5;
  outline-offset: 4px;
}

.hero__visual {
  margin: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  height: 100%;
}

.hero__visual-image {
  width: 664px;
  max-width: none;
  height: 724px;
  object-fit: contain;
  filter: drop-shadow(0 10px 35px rgba(0, 0, 0, 0.45));
  transform: translateX(20px);
}

.hero__divider {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  height: 1px;
  width: calc(100% - 80px);
  max-width: 1220px;
  background: linear-gradient(90deg, transparent, rgba(46, 236, 197, 0.7), transparent);
  box-shadow: 0 0 24px rgba(46, 236, 197, 0.45);
}

/* Hero indicators (hidden on desktop) */
.hero__indicators {
  display: none;
}

/* Small Mobile 320x943 adaptation */
@media (min-width: 320px) and (max-width: 374px) {
  .container {
    padding: 0 14px;
  }

  .hero__inner.container {
    padding: 0;
  }

  .header {
    max-width: 100%;
  }

  .header__inner {
    gap: 10px;
    padding: 0 14px;
    min-height: 62px;
  }

  .header__logo-image {
    width: 80px;
    height: auto;
  }

  .header__menu {
    gap: 10px;
  }

  .header__menu-link {
    font-size: 11px;
  }

  .button--primary {
    min-width: 120px;
    padding: 0 16px;
    height: 44px;
    font-size: 12px;
  }

  .header__burger {
    display: flex;
    order: 2;
    width: 36px;
    height: 36px;
  }

  .header__burger-line {
    width: 24px;
  }

  .header__nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 240px;
    height: 100vh;
    background: linear-gradient(135deg, rgba(5, 6, 8, 0.98) 0%, rgba(18, 20, 25, 0.98) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.5);
    z-index: 100;
    padding: 80px 24px 24px;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
  }

  .header__nav.is-open {
    right: 0;
  }

  .header__menu {
    flex-direction: column;
    gap: 0;
    align-items: flex-start;
  }

  .header__menu-item {
    width: 100%;
    border-bottom: 1px solid rgba(46, 236, 197, 0.1);
  }

  .header__menu-item:last-child {
    border-bottom: none;
  }

  .header__menu-link {
    display: block;
    width: 100%;
    padding: 14px 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
  }

  .header__menu-link::after {
    display: none;
  }

  .header__menu-link:hover,
  .header__menu-link:focus-visible {
    color: #2eecc5;
    padding-left: 8px;
  }

  .header__cta {
    flex-shrink: 0;
    order: 3;
  }
}

/* Medium Mobile 375x943 adaptation */
@media (min-width: 375px) and (max-width: 424px) {
  .container {
    padding: 0 16px;
  }

  .hero__inner.container {
    padding: 0;
  }

  .header {
    max-width: 100%;
  }

  .header__inner {
    gap: 12px;
    padding: 0 16px;
    min-height: 64px;
  }

  .header__menu {
    gap: 12px;
  }

  .header__menu-link {
    font-size: 12px;
  }

  .button--primary {
    min-width: 130px;
    padding: 0 18px;
    height: 46px;
    font-size: 13px;
  }

  .header__burger {
    display: flex;
    order: 2;
  }

  .header__nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 260px;
    height: 100vh;
    background: linear-gradient(135deg, rgba(5, 6, 8, 0.98) 0%, rgba(18, 20, 25, 0.98) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.5);
    z-index: 100;
    padding: 90px 28px 28px;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
  }

  .header__nav.is-open {
    right: 0;
  }

  .header__menu {
    flex-direction: column;
    gap: 0;
    align-items: flex-start;
  }

  .header__menu-item {
    width: 100%;
    border-bottom: 1px solid rgba(46, 236, 197, 0.1);
  }

  .header__menu-item:last-child {
    border-bottom: none;
  }

  .header__menu-link {
    display: block;
    width: 100%;
    padding: 16px 0;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
  }

  .header__menu-link::after {
    display: none;
  }

  .header__menu-link:hover,
  .header__menu-link:focus-visible {
    color: #2eecc5;
    padding-left: 8px;
  }

  .header__cta {
    flex-shrink: 0;
    order: 3;
  }
}

/* Large Mobile 425x943 adaptation */
@media (min-width: 425px) and (max-width: 767px) {
  .container {
    padding: 0 20px;
  }

  .hero__inner.container {
    padding: 0;
  }

  .header {
    max-width: 100%;
  }

  .header__inner {
    gap: 14px;
    padding: 0 20px;
    min-height: 68px;
  }

  .header__burger {
    display: flex;
    order: 2;
  }

  .header__nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: linear-gradient(135deg, rgba(5, 6, 8, 0.98) 0%, rgba(18, 20, 25, 0.98) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.5);
    z-index: 100;
    padding: 100px 32px 32px;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
  }

  .header__nav.is-open {
    right: 0;
  }

  .header__menu {
    flex-direction: column;
    gap: 0;
    align-items: flex-start;
  }

  .header__menu-item {
    width: 100%;
    border-bottom: 1px solid rgba(46, 236, 197, 0.1);
  }

  .header__menu-item:last-child {
    border-bottom: none;
  }

  .header__menu-link {
    display: block;
    width: 100%;
    padding: 18px 0;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
  }

  .header__menu-link::after {
    display: none;
  }

  .header__menu-link:hover,
  .header__menu-link:focus-visible {
    color: #2eecc5;
    padding-left: 8px;
  }

  .header__cta {
    flex-shrink: 0;
    order: 3;
  }

  .button--primary {
    min-width: 140px;
    padding: 0 20px;
    height: 48px;
    font-size: 14px;
  }
}

/* Small Mobile 320x943 - Hero section */
@media (min-width: 320px) and (max-width: 374px) {
  .hero {
    padding: 70px 0 36px;
    min-height: 380px;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    min-height: auto;
    border-radius: 0;
    gap: 16px;
    position: relative;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero__timeline {
    display: none;
  }

  .hero__content {
    width: 292px;
    height: 290px;
    padding: 20px;
    position: relative;
    overflow: visible;
    border-radius: 8px;
    background: rgba(5, 6, 8, 0.65);
    border: 1px solid rgba(46, 236, 197, 0.12);
    box-shadow: inset 0 0 40px rgba(46, 236, 197, 0.04);
    display: flex;
    flex-direction: column;
  }

  .hero__content-wrapper {
    transition: opacity 0.4s ease, transform 0.4s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
  }

  .hero__content.is-sliding .hero__content-wrapper {
    opacity: 0;
    transform: translateX(-20px);
  }

  .hero__title {
    font-size: 23px;
    margin-bottom: 10px;
    line-height: 1.2;
  }

  .hero__description {
    font-size: 11px;
    margin-bottom: 12px;
    line-height: 1.4;
    flex: 1;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    margin-top: auto;
  }

  .hero__actions .button--primary {
    width: 100%;
    height: 40px;
    font-size: 12px;
  }

  .hero__link {
    text-align: center;
    font-size: 11px;
  }

  .hero__visual {
    display: none;
  }

  .hero__divider {
    width: calc(100% - 28px);
  }

  .hero__indicators {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    padding: 0;
  }

  .hero__indicator {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: rgba(46, 236, 197, 0.3);
    border: 1px solid rgba(46, 236, 197, 0.5);
    transition: all 0.3s ease;
    cursor: pointer;
    flex-shrink: 0;
  }

  .hero__indicator.is-active {
    width: 20px;
    border-radius: 3px;
    background-color: #2eecc5;
    box-shadow: 0 0 12px rgba(46, 236, 197, 0.6);
  }
}

/* Medium Mobile 375x943 - Hero section */
@media (min-width: 375px) and (max-width: 424px) {
  .hero {
    padding: 72px 0 40px;
    min-height: 400px;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    min-height: auto;
    border-radius: 0;
    gap: 18px;
    position: relative;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero__timeline {
    display: none;
  }

  .hero__content {
    width: 330px;
    height: 310px;
    padding: 22px;
    position: relative;
    overflow: visible;
    border-radius: 8px;
    background: rgba(5, 6, 8, 0.65);
    border: 1px solid rgba(46, 236, 197, 0.12);
    box-shadow: inset 0 0 40px rgba(46, 236, 197, 0.04);
    display: flex;
    flex-direction: column;
  }

  .hero__content-wrapper {
    transition: opacity 0.4s ease, transform 0.4s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
  }

  .hero__content.is-sliding .hero__content-wrapper {
    opacity: 0;
    transform: translateX(-20px);
  }

  .hero__title {
    font-size: 25px;
    margin-bottom: 11px;
    line-height: 1.2;
  }

  .hero__description {
    font-size: 12px;
    margin-bottom: 14px;
    line-height: 1.4;
    flex: 1;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 9px;
    margin-top: auto;
  }

  .hero__actions .button--primary {
    width: 100%;
    height: 42px;
    font-size: 13px;
  }

  .hero__link {
    text-align: center;
    font-size: 12px;
  }

  .hero__visual {
    display: none;
  }

  .hero__divider {
    width: calc(100% - 32px);
  }

  .hero__indicators {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 7px;
    padding: 0;
  }

  .hero__indicator {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: rgba(46, 236, 197, 0.3);
    border: 1px solid rgba(46, 236, 197, 0.5);
    transition: all 0.3s ease;
    cursor: pointer;
    flex-shrink: 0;
  }

  .hero__indicator.is-active {
    width: 22px;
    border-radius: 4px;
    background-color: #2eecc5;
    box-shadow: 0 0 12px rgba(46, 236, 197, 0.6);
  }
}

/* Large Mobile 425x943 - Hero section */
@media (min-width: 425px) and (max-width: 767px) {
  .hero {
    min-height: 400px;
    padding: 72px 0 40px;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    min-height: auto;
    border-radius: 0;
    gap: 20px;
    position: relative;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero__timeline {
    display: none;
  }

  .hero__content {
    width: 350px;
    height: 320px;
    padding: 24px;
    position: relative;
    overflow: visible;
    border-radius: 8px;
    background: rgba(5, 6, 8, 0.65);
    border: 1px solid rgba(46, 236, 197, 0.12);
    box-shadow: inset 0 0 40px rgba(46, 236, 197, 0.04);
    display: flex;
    flex-direction: column;
  }

  .hero__content-wrapper {
    transition: opacity 0.4s ease, transform 0.4s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
  }

  .hero__content.is-sliding .hero__content-wrapper {
    opacity: 0;
    transform: translateX(-20px);
  }

  .hero__title {
    font-size: 26px;
    margin-bottom: 12px;
    line-height: 1.2;
  }

  .hero__description {
    font-size: 13px;
    margin-bottom: 16px;
    line-height: 1.4;
    flex: 1;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    margin-top: auto;
  }

  .hero__actions .button--primary {
    width: 100%;
    height: 44px;
    font-size: 14px;
  }

  .hero__link {
    text-align: center;
    font-size: 13px;
  }

  .hero__visual {
    display: none;
  }

  .hero__divider {
    margin-top: 0;
    width: calc(100% - 40px);
  }

  /* Slider indicators */
  .hero__indicators {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 0;
  }

  .hero__indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(46, 236, 197, 0.3);
    border: 1px solid rgba(46, 236, 197, 0.5);
    transition: all 0.3s ease;
    cursor: pointer;
    flex-shrink: 0;
  }

  .hero__indicator.is-active {
    width: 24px;
    border-radius: 4px;
    background-color: #2eecc5;
    box-shadow: 0 0 12px rgba(46, 236, 197, 0.6);
  }
}

@media (max-width: 1023px) {
  .hero__inner {
    grid-template-columns: minmax(72px, 96px) 1fr;
    min-height: auto;
  }

  .hero__visual {
    grid-column: span 2;
  }

  .hero__visual-image {
    transform: translateX(10px);
  }

  .hero__divider {
    margin-top: 40px;
    width: calc(100% - 60px);
  }
}

/* Tablet 768x943 - Hero section */
@media (min-width: 768px) and (max-width: 820px) {
  .hero {
    min-height: 700px;
    padding: 72px 0 0;
  }

  .hero__inner {
    grid-template-columns: minmax(60px, 70px) 1fr;
    gap: 20px;
    min-height: 600px;
  }

  .hero__timeline {
    padding: 18px 0;
  }

  .hero__timeline-list {
    gap: 20px;
  }

  .hero__timeline-number {
    font-size: 20px;
    margin-left: calc(50% + 10px + 10px);
  }

  .hero__timeline-dot {
    width: 20px;
    height: 36px;
  }

  .hero__timeline-dot::before {
    width: 14px;
    height: 26px;
  }

  .hero__timeline-dot::after {
    width: 9px;
    height: 16px;
  }

  .hero__timeline-point.is-active .hero__timeline-dot::before {
    width: 16px;
    height: 28px;
  }

  .hero__timeline-point.is-active .hero__timeline-dot::after {
    width: 11px;
    height: 18px;
  }

  .hero__content {
    min-height: 220px;
    padding: 28px;
  }

  .hero__title {
    font-size: 40px;
  }

  .hero__description {
    font-size: 16px;
  }

  .hero__visual {
    grid-column: span 2;
    justify-content: center;
  }

  .hero__visual-image {
    width: 480px;
    height: 522px;
    transform: none;
  }

  .hero__divider {
    margin-top: 0;
    width: calc(100% - 48px);
  }
}

/* Laptop 1024x735 - Hero section */
@media (min-width: 1024px) and (max-width: 1100px) {
  .hero {
    min-height: 600px;
    padding: 70px 0 0;
  }

  .hero__inner {
    grid-template-columns: minmax(70px, 80px) minmax(0, 1fr) minmax(240px, 360px);
    gap: 24px;
    min-height: 520px;
  }

  .hero__timeline {
    padding: 20px 0;
  }

  .hero__timeline-list {
    gap: 22px;
  }

  .hero__timeline-number {
    font-size: 22px;
    margin-left: calc(50% + 11px + 11px);
  }

  .hero__timeline-dot {
    width: 22px;
    height: 38px;
  }

  .hero__timeline-dot::before {
    width: 16px;
    height: 28px;
  }

  .hero__timeline-dot::after {
    width: 10px;
    height: 18px;
  }

  .hero__timeline-point.is-active .hero__timeline-dot::before {
    width: 18px;
    height: 30px;
  }

  .hero__timeline-point.is-active .hero__timeline-dot::after {
    width: 12px;
    height: 20px;
  }

  .hero__content {
    min-height: 200px;
    padding: 28px;
  }

  .hero__title {
    font-size: 42px;
  }

  .hero__description {
    font-size: 16px;
  }

  .hero__visual-image {
    width: 460px;
    height: 500px;
    transform: translateX(15px);
  }

  .hero__divider {
    width: calc(100% - 60px);
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .header {
    max-width: 100%;
  }

  .header__inner {
    padding: 0 30px;
  }

  .container {
    padding: 0 30px;
  }
}

/* Tablet 768x943 adaptation */
@media (min-width: 768px) and (max-width: 820px) {
  .container {
    padding: 0 24px;
  }

  .header__inner {
    padding: 0 24px;
    min-height: 68px;
  }

  .header__menu {
    gap: 20px;
  }

  .header__menu-link {
    font-size: 13px;
  }

  .button--primary {
    min-width: 150px;
    height: 50px;
    font-size: 15px;
    padding: 0 24px 0 28px;
  }
}

/* Laptop 1024x735 adaptation */
@media (min-width: 1024px) and (max-width: 1100px) {
  .container {
    padding: 0 30px;
  }

  .header__inner {
    padding: 0 30px;
    min-height: 64px;
  }

  .header__menu {
    gap: 24px;
  }

  .header__menu-link {
    font-size: 13px;
  }

  .button--primary {
    min-width: 160px;
    height: 50px;
    font-size: 15px;
  }
}

/* Reasons section */
.reasons {
  position: relative;
  width: 100%;
  min-height: 700px;
  padding: 60px 0 80px;
  background-color: #050608;
  overflow: hidden;
}

.reasons::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../assets/img/background2.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.4;
  pointer-events: none;
  z-index: 0;
}

.reasons::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 30% 50%,
    rgba(46, 236, 197, 0.15),
    transparent 65%
  );
  pointer-events: none;
  z-index: 0;
}

.reasons__inner {
  position: relative;
  z-index: 1;
}

.reasons__top {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 64px;
  align-items: start;
  margin-bottom: 64px;
}

.reasons__tile {
  width: 350px;
  height: 350px;
  border-radius: 8px;
  background-image: url("../assets/img/plitka1.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  transition: 
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.reasons__tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
}

.reasons__tile:focus-within {
  outline: 2px solid #2eecc5;
  outline-offset: 3px;
}

.reasons__tile-content {
  position: relative;
  z-index: 2;
  padding: 32px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.reasons__tile-title {
  margin: 0 0 12px;
  font-family: "Ruberoid", "Segoe UI", sans-serif;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.2;
  color: #ffffff;
}

.reasons__tile-text {
  margin: 0;
  font-family: "Ruberoid", "Segoe UI", sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
  max-width: 280px;
}


.reasons__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 640px;
  padding-top: 20px;
}

.reasons__title {
  margin: 0;
  padding-left: 20px;
  font-family: "Ruberoid", "Segoe UI", sans-serif;
  font-size: 55px;
  font-weight: 800;
  line-height: 1.1;
  color: #2eecc5;
  background: linear-gradient(180deg, #b5feef 0%, #2eecc5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.reasons__description {
  margin: 0;
  padding-left: 20px;
  font-family: "Ruberoid", "Segoe UI", sans-serif;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.65);
}

.reasons__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 57px;
  margin-left: 20px;
  border-radius: 4px;
  border: 1.5px solid #2eecc5;
  background-color: #161617;
  color: #ffffff;
  font-family: "Ruberoid", "Segoe UI", sans-serif;
  font-size: 17px;
  font-weight: 500;
  text-decoration: none;
  position: relative;
  transition:
    background-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.1s ease;
  cursor: pointer;
}

.reasons__button::after {
  content: "";
  position: absolute;
  top: 11px;
  left: 9px;
  width: 100%;
  height: 100%;
  border: 1.5px solid rgba(46, 236, 197, 0.4);
  border-radius: 4px;
  pointer-events: none;
  z-index: -1;
  transition: border-color 0.2s ease;
}

.reasons__button:hover {
  background-color: #1a2a27;
  box-shadow: 0 0 18px rgba(46, 236, 197, 0.35);
}

.reasons__button:hover::after {
  border-color: rgba(46, 236, 197, 0.6);
}

.reasons__button:active {
  background-color: #1a2a27;
  transform: translateY(1px);
}

.reasons__button:focus-visible {
  outline: 2px solid #2eecc5;
  outline-offset: 3px;
}

.reasons__bottom {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
  justify-content: space-between;
}

.reasons__card {
  width: 350px;
  height: 350px;
  border-radius: 8px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  transition: 
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.reasons__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
}

.reasons__card:focus-within {
  outline: 2px solid #2eecc5;
  outline-offset: 3px;
}

.reasons__card--deadline {
  background-image: url("../assets/img/plitka2.png");
}

.reasons__card--team {
  background-image: url("../assets/img/plitka3.png");
}

.reasons__card--support {
  background-image: url("../assets/img/plitka4.png");
}

.reasons__card-content {
  position: relative;
  z-index: 2;
  padding: 32px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.reasons__card-title {
  margin: 0 0 12px;
  font-family: "Ruberoid", "Segoe UI", sans-serif;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.2;
  color: #ffffff;
}

.reasons__card-text {
  margin: 0;
  font-family: "Ruberoid", "Segoe UI", sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
  max-width: 280px;
}

/* Small Mobile 320x943 - Reasons section */
@media (min-width: 320px) and (max-width: 374px) {
  .reasons {
    min-height: 920px;
    padding: 46px 0 54px;
  }

  .reasons__top {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 36px;
  }

  .reasons__tile {
    width: 100%;
    max-width: 292px;
    height: 280px;
    margin: 0 auto;
  }

  .reasons__tile-content {
    padding: 22px;
  }

  .reasons__tile-title {
    font-size: 22px;
  }

  .reasons__tile-text {
    font-size: 12px;
  }

  .reasons__content {
    gap: 16px;
    padding-top: 12px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .reasons__title {
    font-size: 30px;
    padding-left: 0;
  }

  .reasons__description {
    font-size: 13px;
    padding-left: 0;
  }

  .reasons__button {
    width: 175px;
    height: 48px;
    margin-left: 0;
    font-size: 14px;
  }

  .reasons__bottom {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .reasons__card {
    width: 100%;
    max-width: 292px;
    height: 280px;
  }

  .reasons__card-content {
    padding: 22px;
  }

  .reasons__card-title {
    font-size: 22px;
  }

  .reasons__card-text {
    font-size: 12px;
  }
}

/* Medium Mobile 375x943 - Reasons section */
@media (min-width: 375px) and (max-width: 424px) {
  .reasons {
    min-height: 950px;
    padding: 50px 0 60px;
  }

  .reasons__top {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 40px;
  }

  .reasons__tile {
    width: 100%;
    max-width: 343px;
    height: 300px;
    margin: 0 auto;
  }

  .reasons__tile-content {
    padding: 26px;
  }

  .reasons__tile-title {
    font-size: 24px;
  }

  .reasons__tile-text {
    font-size: 13px;
  }

  .reasons__content {
    gap: 18px;
    padding-top: 14px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .reasons__title {
    font-size: 34px;
    padding-left: 0;
  }

  .reasons__description {
    font-size: 14px;
    padding-left: 0;
  }

  .reasons__button {
    width: 190px;
    height: 52px;
    margin-left: 0;
    font-size: 15px;
  }

  .reasons__bottom {
    flex-direction: column;
    align-items: center;
    gap: 18px;
  }

  .reasons__card {
    width: 100%;
    max-width: 343px;
    height: 300px;
  }

  .reasons__card-content {
    padding: 26px;
  }

  .reasons__card-title {
    font-size: 24px;
  }

  .reasons__card-text {
    font-size: 13px;
  }
}

/* Large Mobile 425x943 - Reasons section */
@media (min-width: 425px) and (max-width: 767px) {
  .reasons {
    min-height: 1000px;
    padding: 52px 0 64px;
  }

  .reasons__top {
    grid-template-columns: 1fr;
    gap: 36px;
    margin-bottom: 44px;
  }

  .reasons__tile {
    width: 100%;
    max-width: 385px;
    height: 320px;
    margin: 0 auto;
  }

  .reasons__tile-content {
    padding: 28px;
  }

  .reasons__tile-title {
    font-size: 25px;
  }

  .reasons__tile-text {
    font-size: 14px;
  }

  .reasons__content {
    gap: 20px;
    padding-top: 16px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .reasons__title {
    font-size: 38px;
    padding-left: 0;
  }

  .reasons__description {
    font-size: 15px;
    padding-left: 0;
  }

  .reasons__button {
    width: 200px;
    height: 54px;
    margin-left: 0;
    font-size: 16px;
  }

  .reasons__bottom {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .reasons__card {
    width: 100%;
    max-width: 385px;
    height: 320px;
  }

  .reasons__card-content {
    padding: 28px;
  }

  .reasons__card-title {
    font-size: 25px;
  }

  .reasons__card-text {
    font-size: 14px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .reasons__top {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .reasons__tile {
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
  }

  .reasons__title {
    font-size: 48px;
  }

  .reasons__bottom {
    justify-content: center;
  }

  .reasons__card {
    width: 340px;
    height: 340px;
  }

  .reasons__card-content {
    padding: 30px;
  }

  .reasons__card-title {
    font-size: 26px;
  }

  .reasons__card-text {
    font-size: 15px;
  }
}

/* Tablet 768x943 - Reasons section */
@media (min-width: 768px) and (max-width: 820px) {
  .reasons {
    min-height: 800px;
    padding: 56px 0 76px;
  }

  .reasons__top {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 48px;
  }

  .reasons__tile {
    width: 100%;
    max-width: 340px;
    height: 340px;
    margin: 0 auto;
  }

  .reasons__tile-content {
    padding: 30px;
  }

  .reasons__tile-title {
    font-size: 26px;
  }

  .reasons__tile-text {
    font-size: 14px;
  }

  .reasons__content {
    gap: 22px;
    padding-top: 18px;
  }

  .reasons__title {
    font-size: 46px;
    padding-left: 18px;
  }

  .reasons__description {
    font-size: 16px;
    padding-left: 18px;
  }

  .reasons__button {
    width: 200px;
    max-width: 200px;
    height: 56px;
    margin-left: 18px;
    font-size: 16px;
  }

  .reasons__bottom {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .reasons__card {
    width: 100%;
    max-width: 340px;
    height: 340px;
  }

  .reasons__card-content {
    padding: 30px;
  }

  .reasons__card-title {
    font-size: 26px;
  }

  .reasons__card-text {
    font-size: 14px;
  }
}

/* Laptop 1024x735 - Reasons section */
@media (min-width: 1024px) and (max-width: 1100px) {
  .reasons {
    min-height: 600px;
    padding: 50px 0 70px;
  }

  .reasons__top {
    grid-template-columns: 1fr 320px;
    gap: 48px;
    margin-bottom: 48px;
  }

  .reasons__tile {
    width: 320px;
    height: 320px;
  }

  .reasons__tile-content {
    padding: 28px;
  }

  .reasons__tile-title {
    font-size: 26px;
  }

  .reasons__tile-text {
    font-size: 14px;
  }

  .reasons__content {
    gap: 20px;
    padding-top: 16px;
  }

  .reasons__title {
    font-size: 48px;
    padding-left: 16px;
  }

  .reasons__description {
    font-size: 16px;
    padding-left: 16px;
  }

  .reasons__button {
    width: 190px;
    height: 54px;
    margin-left: 16px;
    font-size: 16px;
  }

  .reasons__bottom {
    gap: 0;
    justify-content: space-between;
  }

  .reasons__card {
    width: 320px;
    height: 320px;
  }

  .reasons__card-content {
    padding: 28px;
  }

  .reasons__card-title {
    font-size: 26px;
  }

  .reasons__card-text {
    font-size: 14px;
  }
}

/* Portfolio section */
.portfolio {
  position: relative;
  width: 100%;
  min-height: 700px;
  padding: 200px 0 80px;
  background-color: #050608;
  overflow: hidden;
  /* базовый размер слайдов (уменьшено на ~1/3) */
  --portfolio-slide-width: 440px;
  --portfolio-slide-height: 246px;
  --portfolio-slide-gap: 80px;
  --portfolio-preview-width: 160px;
  --portfolio-slider-width: calc(
    var(--portfolio-slide-width) + var(--portfolio-slide-gap) + var(--portfolio-preview-width)
  );
}

.portfolio::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../assets/img/background3.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.4;
  pointer-events: none;
  z-index: 0;
}

.portfolio::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 70% 50%,
    rgba(46, 236, 197, 0.15),
    transparent 65%
  );
  pointer-events: none;
  z-index: 0;
}

.portfolio__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 510px 1fr;
  gap: 80px;
  align-items: center;
  overflow: visible;
}

.portfolio__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 510px;
  padding-top: 20px;
}

.portfolio__title {
  margin: 0;
  padding-left: 20px;
  font-family: "Ruberoid", "Segoe UI", sans-serif;
  font-size: 55px;
  font-weight: 800;
  line-height: 1.1;
  color: #2eecc5;
  background: linear-gradient(180deg, #b5feef 0%, #2eecc5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  white-space: nowrap;
}

.portfolio__description {
  margin: 0;
  padding-left: 20px;
  font-family: "Ruberoid", "Segoe UI", sans-serif;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.65);
}

.portfolio__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 270px;
  height: 56px;
  margin-left: 20px;
  padding: 0 28px 0 32px;
  border-radius: 49px;
  border: 1.5px solid #2eecc5;
  background-color: rgba(46, 236, 197, 0.1);
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  gap: 12px;
  position: relative;
  transition:
    background-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.1s ease;
  cursor: pointer;
}

.portfolio__button:hover {
  background-color: rgba(46, 236, 197, 0.18);
  box-shadow: 0 0 18px rgba(46, 236, 197, 0.45);
}

.portfolio__button:active {
  transform: translateY(1px);
  box-shadow: 0 0 10px rgba(46, 236, 197, 0.3);
}

.portfolio__button:focus-visible {
  outline: 2px solid #2eecc5;
  outline-offset: 3px;
}

.portfolio__slider {
  position: relative;
  width: var(--portfolio-slider-width);
  max-width: 100%;
  height: var(--portfolio-slide-height);
  margin: 38px 0 0 -50px;
  justify-self: start;
}

.portfolio__slider-container {
  width: 100%;
  height: 100%;
  overflow: visible;
  clip-path: inset(0 -100% 0 0);
}

.portfolio__slider-track {
  display: flex;
  gap: var(--portfolio-slide-gap);
  height: 100%;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio__slide {
  min-width: var(--portfolio-slide-width);
  width: var(--portfolio-slide-width);
  height: var(--portfolio-slide-height);
  flex-shrink: 0;
  position: relative;
  border-radius: 28px;
  isolation: isolate;
}

.portfolio__slide::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(65, 255, 241, 0.35);
  opacity: 0.35;
  pointer-events: none;
}

.portfolio__slide-surface {
  position: relative;
  height: 100%;
  border-radius: inherit;
  overflow: hidden;
}

.portfolio__slide--oshi .portfolio__slide-surface {
  background: url("../assets/img/Slide3.jpg");
  background-size: cover;
  background-position: center;
}

.portfolio__slide--samp .portfolio__slide-surface {
  background: url("../assets/img/Slide2.jpg");
  background-size: cover;
  background-position: center;
}

.portfolio__slide--agency .portfolio__slide-surface {
  background: url("../assets/img/slide1.jpg");
  background-size: cover;
  background-position: center;
}
.portfolio__slide--tg .portfolio__slide-surface {
  background: url("../assets/img/Slide4.jpg");
  background-size: cover;
  background-position: center;
}
.portfolio__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  border: 1.5px solid rgba(46, 236, 197, 0.6);
  border-radius: 50%;
  background-color: rgba(5, 6, 8, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #2eecc5;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.1s ease;
  z-index: 2;
}

.portfolio__arrow:hover {
  background-color: rgba(46, 236, 197, 0.15);
  border-color: #2eecc5;
  box-shadow: 0 0 18px rgba(46, 236, 197, 0.4);
}

.portfolio__arrow:active {
  transform: translateY(-50%) scale(0.95);
}

.portfolio__arrow:focus-visible {
  outline: 2px solid #2eecc5;
  outline-offset: 3px;
}

.portfolio__arrow--prev {
  left: -28px;
}

.portfolio__arrow--next {
  right: 160px;
  left: auto;
}

@media (max-width: 1280px) {
  .portfolio {
    --portfolio-slide-width: 420px;
    --portfolio-slide-height: 235px;
    --portfolio-preview-width: 140px;
    --portfolio-slide-gap: 60px;
  }
}

@media (max-width: 1100px) {
  .portfolio {
    --portfolio-slide-width: 380px;
    --portfolio-slide-height: 220px;
    --portfolio-preview-width: 110px;
    --portfolio-slide-gap: 40px;
  }
}

/* Tablet 768x943 - Portfolio section */
@media (min-width: 768px) and (max-width: 820px) {
  .portfolio {
    min-height: 800px;
    padding: 140px 0 76px;
  }

  .portfolio__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .portfolio__content {
    max-width: 100%;
    gap: 22px;
    padding-top: 18px;
  }

  .portfolio__title {
    font-size: 46px;
    padding-left: 18px;
  }

  .portfolio__description {
    font-size: 16px;
    padding-left: 18px;
  }

  .portfolio__button {
    width: 230px;
    max-width: 230px;
    height: 54px;
    margin-left: 18px;
    font-size: 16px;
  }

  .portfolio__slider {
    width: 100%;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
  }

  .portfolio__slider-container {
    width: 100%;
    height: auto;
    overflow: hidden;
    clip-path: none;
  }

  .portfolio__slider-track {
    gap: 20px;
    height: auto;
  }

  .portfolio__slide {
    width: 100%;
    min-width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .portfolio__arrow {
    width: 50px;
    height: 50px;
  }

  .portfolio__arrow--prev {
    left: 10px;
  }

  .portfolio__arrow--next {
    right: 10px;
    left: auto;
  }
}

/* Laptop 1024x735 - Portfolio section */
@media (min-width: 1024px) and (max-width: 1100px) {
  .portfolio {
    min-height: 600px;
    padding: 160px 0 70px;
    --portfolio-slide-width: 380px;
    --portfolio-slide-height: 214px;
    --portfolio-preview-width: 100px;
    --portfolio-slide-gap: 36px;
  }

  .portfolio__inner {
    grid-template-columns: 460px 1fr;
    gap: 60px;
  }

  .portfolio__content {
    max-width: 460px;
    gap: 20px;
    padding-top: 16px;
  }

  .portfolio__title {
    font-size: 48px;
    padding-left: 16px;
  }

  .portfolio__description {
    font-size: 16px;
    padding-left: 16px;
  }

  .portfolio__button {
    width: 250px;
    height: 52px;
    margin-left: 16px;
    font-size: 15px;
  }

  .portfolio__slider {
    margin: 32px 0 0 -40px;
  }

  .portfolio__arrow {
    width: 52px;
    height: 52px;
  }

  .portfolio__arrow--prev {
    left: -26px;
  }

  .portfolio__arrow--next {
    left: 353px;
  }
}

/* Small Mobile 320x943 - Portfolio section */
@media (min-width: 320px) and (max-width: 374px) {
  .portfolio {
    min-height: 670px;
    padding: 92px 0 50px;
  }

  .portfolio__inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .portfolio__content {
    max-width: 100%;
    gap: 16px;
    padding-top: 12px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .portfolio__title {
    font-size: 30px;
    padding-left: 0;
  }

  .portfolio__description {
    font-size: 13px;
    padding-left: 0;
  }

  .portfolio__button {
    width: 200px;
    height: 46px;
    margin-left: 0;
    font-size: 13px;
  }

  .portfolio__slider {
    width: 100%;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
  }

  .portfolio__slider-container {
    width: 100%;
    height: auto;
    overflow: hidden;
    clip-path: none;
  }

  .portfolio__slider-track {
    gap: 14px;
    height: auto;
  }

  .portfolio__slide {
    width: 100%;
    min-width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .portfolio__arrow {
    width: 42px;
    height: 42px;
  }

  .portfolio__arrow--prev {
    left: 8px;
  }

  .portfolio__arrow--next {
    right: 8px;
    left: auto;
  }
}

/* Medium Mobile 375x943 - Portfolio section */
@media (min-width: 375px) and (max-width: 424px) {
  .portfolio {
    min-height: 700px;
    padding: 100px 0 56px;
  }

  .portfolio__inner {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .portfolio__content {
    max-width: 100%;
    gap: 18px;
    padding-top: 14px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .portfolio__title {
    font-size: 34px;
    padding-left: 0;
  }

  .portfolio__description {
    font-size: 14px;
    padding-left: 0;
  }

  .portfolio__button {
    width: 220px;
    height: 50px;
    margin-left: 0;
    font-size: 14px;
  }

  .portfolio__slider {
    width: 100%;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
  }

  .portfolio__slider-container {
    width: 100%;
    height: auto;
    overflow: hidden;
    clip-path: none;
  }

  .portfolio__slider-track {
    gap: 16px;
    height: auto;
  }

  .portfolio__slide {
    width: 100%;
    min-width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .portfolio__arrow {
    width: 46px;
    height: 46px;
  }

  .portfolio__arrow--prev {
    left: 9px;
  }

  .portfolio__arrow--next {
    right: 9px;
    left: auto;
  }
}

/* Large Mobile 425x943 - Portfolio section */
@media (min-width: 425px) and (max-width: 767px) {
  .portfolio {
    min-height: 740px;
    padding: 108px 0 60px;
  }

  .portfolio__inner {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .portfolio__content {
    max-width: 100%;
    gap: 20px;
    padding-top: 16px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .portfolio__title {
    font-size: 38px;
    padding-left: 0;
  }

  .portfolio__description {
    font-size: 15px;
    padding-left: 0;
  }

  .portfolio__button {
    width: 230px;
    height: 52px;
    margin-left: 0;
    font-size: 15px;
  }

  .portfolio__slider {
    width: 100%;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
  }

  .portfolio__slider-container {
    width: 100%;
    height: auto;
    overflow: hidden;
    clip-path: none;
  }

  .portfolio__slider-track {
    gap: 18px;
    height: auto;
  }

  .portfolio__slide {
    width: 100%;
    min-width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .portfolio__arrow {
    width: 48px;
    height: 48px;
  }

  .portfolio__arrow--prev {
    left: 10px;
  }

  .portfolio__arrow--next {
    right: 10px;
    left: auto;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .portfolio {
    padding: 160px 0 80px;
  }

  .portfolio__inner {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .portfolio__content {
    max-width: 100%;
  }

  .portfolio__title {
    font-size: 48px;
  }

  .portfolio__slider {
    width: min(640px, 100%);
    height: auto;
    margin: 0 auto;
  }

  .portfolio__slider-container {
    width: 100%;
    height: auto;
  }

  .portfolio__slider-track {
    gap: 24px;
    height: auto;
  }

  .portfolio__slide {
    width: 100%;
    min-width: 100%;
    height: auto;
  }

  .portfolio__arrow--prev {
    left: -20px;
  }

  .portfolio__arrow--next {
    right: -20px;
    left: auto;
  }
}

/* Tariffs section */
.tariffs {
  position: relative;
  width: 100%;
  min-height: 700px;
  padding: 100px 0 120px;
  background-color: #050608;
  overflow: hidden;
}

.tariffs::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../assets/img/background2.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.3;
  pointer-events: none;
  z-index: 0;
}

.tariffs::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(46, 236, 197, 0.12),
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}

.tariffs__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
}

.tariffs__title {
  margin: 0;
  font-family: "Ruberoid", "Segoe UI", sans-serif;
  font-size: 55px;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  color: #2eecc5;
  background: linear-gradient(180deg, #b5feef 0%, #2eecc5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tariffs__carousel {
  position: relative;
  width: 100%;
  max-width: 1200px;
}

.tariffs__track-container {
  width: 100%;
  overflow: visible;
  position: relative;
}

.tariffs__track {
  display: flex;
  gap: 35px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.tariffs__card {
  flex-shrink: 0;
  width: 370px;
  height: 570px;
  border-radius: 24px;
  background: linear-gradient(
    135deg,
    rgba(22, 22, 23, 0.95) 0%,
    rgba(30, 30, 32, 0.95) 100%
  );
  border: 1px solid rgba(46, 236, 197, 0.15);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: hidden;
  opacity: 0.5;
  transform: scale(0.72);
  transform-origin: center center;
  transition:
    opacity 0.5s ease,
    transform 0.5s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.tariffs__card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    circle at 50% 0%,
    rgba(46, 236, 197, 0.08),
    transparent 60%
  );
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.tariffs__card.is-center {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
  border-color: rgba(46, 236, 197, 0.35);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.65);
}

.tariffs__card.is-center::before {
  opacity: 1;
}

.tariffs__card:hover {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  border-color: rgba(46, 236, 197, 0.3);
}

.tariffs__card:hover::before {
  opacity: 1;
}

.tariffs__card:focus-within {
  outline: 2px solid #2eecc5;
  outline-offset: 3px;
}

.tariffs__card-content {
  position: relative;
  z-index: 2;
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 20px;
}

.tariffs__card-title {
  margin: 0;
  font-family: "Ruberoid", "Segoe UI", sans-serif;
  font-size: 26px;
  font-weight: 800;
  line-height: 1.2;
  color: #ffffff;
  text-align: center;
}

.tariffs__card.is-center .tariffs__card-title {
  font-size: 28px;
  background: linear-gradient(180deg, #ffffff 0%, #b5feef 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tariffs__card-description {
  margin: 0;
  font-family: "Ruberoid", "Segoe UI", sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.65);
  text-align: center;
  flex: 1;
}

.tariffs__card.is-center .tariffs__card-description {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
}

.tariffs__card-footer {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.tariffs__card-pricing {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
}

.tariffs__card-price {
  font-family: "Ruberoid", "Segoe UI", sans-serif;
  font-size: 30px;
  font-weight: 800;
  line-height: 1;
  color: #ffffff;
}

.tariffs__card.is-center .tariffs__card-price {
  font-size: 34px;
  color: #2eecc5;
}

.tariffs__card-duration {
  font-family: "Ruberoid", "Segoe UI", sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
}

.tariffs__card-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 48px;
  border-radius: 49px;
  border: 1.5px solid rgba(46, 236, 197, 0.6);
  background-color: rgba(46, 236, 197, 0.08);
  color: #2eecc5;
  font-family: "Ruberoid", "Segoe UI", sans-serif;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.1s ease;
}

.tariffs__card-button svg {
  transition: transform 0.2s ease;
}

.tariffs__card-button:hover {
  background-color: rgba(46, 236, 197, 0.15);
  border-color: #2eecc5;
  box-shadow: 0 0 18px rgba(46, 236, 197, 0.4);
}

.tariffs__card-button:hover svg {
  transform: translateX(4px);
}

.tariffs__card-button:active {
  transform: translateY(1px);
  box-shadow: 0 0 10px rgba(46, 236, 197, 0.3);
}

.tariffs__card-button:focus-visible {
  outline: 2px solid #2eecc5;
  outline-offset: 3px;
}

.tariffs__card.is-center .tariffs__card-button {
  border-width: 2px;
  border-color: #2eecc5;
  background-color: rgba(46, 236, 197, 0.12);
  height: 52px;
  font-size: 16px;
}

.tariffs__card.is-center .tariffs__card-button:hover {
  background-color: rgba(46, 236, 197, 0.2);
  box-shadow: 0 0 24px rgba(46, 236, 197, 0.5);
}

.tariffs__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  border: 1.5px solid rgba(46, 236, 197, 0.6);
  border-radius: 50%;
  background-color: rgba(5, 6, 8, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #2eecc5;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
  z-index: 10;
}

.tariffs__arrow--prev {
  left: 30px;
}

.tariffs__arrow--next {
  right: 35px;
}

.tariffs__arrow:hover {
  background-color: rgba(46, 236, 197, 0.15);
  border-color: #2eecc5;
  box-shadow: 0 0 18px rgba(46, 236, 197, 0.4);
}

.tariffs__arrow:active {
  transform: translateY(-50%) scale(0.95);
}

.tariffs__arrow:focus-visible {
  outline: 2px solid #2eecc5;
  outline-offset: 3px;
}

/* Small Mobile 320x943 - Tariffs section */
@media (min-width: 320px) and (max-width: 374px) {
  .tariffs {
    min-height: 620px;
    padding: 66px 0 72px;
  }

  .tariffs__inner {
    gap: 46px;
  }

  .tariffs__title {
    font-size: 30px;
  }

  .tariffs__carousel {
    max-width: 100%;
  }

  .tariffs__card {
    width: 100%;
    max-width: 292px;
    height: 480px;
    transform: scale(1);
    margin: 0 auto;
  }

  .tariffs__card.is-center {
    transform: scale(1);
  }

  .tariffs__card-content {
    padding: 26px 20px;
    gap: 14px;
  }

  .tariffs__card-title {
    font-size: 21px;
  }

  .tariffs__card.is-center .tariffs__card-title {
    font-size: 23px;
  }

  .tariffs__card-description {
    font-size: 11px;
  }

  .tariffs__card.is-center .tariffs__card-description {
    font-size: 11px;
  }

  .tariffs__card-price {
    font-size: 24px;
  }

  .tariffs__card.is-center .tariffs__card-price {
    font-size: 26px;
  }

  .tariffs__arrow {
    width: 42px;
    height: 42px;
  }

  .tariffs__arrow--prev {
    left: 8px;
  }

  .tariffs__arrow--next {
    right: 8px;
  }
}

/* Medium Mobile 375x943 - Tariffs section */
@media (min-width: 375px) and (max-width: 424px) {
  .tariffs {
    min-height: 650px;
    padding: 72px 0 80px;
  }

  .tariffs__inner {
    gap: 52px;
  }

  .tariffs__title {
    font-size: 34px;
  }

  .tariffs__carousel {
    max-width: 100%;
  }

  .tariffs__card {
    width: 100%;
    max-width: 343px;
    height: 500px;
    transform: scale(1);
    margin: 0 auto;
  }

  .tariffs__card.is-center {
    transform: scale(1);
  }

  .tariffs__card-content {
    padding: 30px 22px;
    gap: 16px;
  }

  .tariffs__card-title {
    font-size: 23px;
  }

  .tariffs__card.is-center .tariffs__card-title {
    font-size: 25px;
  }

  .tariffs__card-description {
    font-size: 12px;
  }

  .tariffs__card.is-center .tariffs__card-description {
    font-size: 12px;
  }

  .tariffs__card-price {
    font-size: 26px;
  }

  .tariffs__card.is-center .tariffs__card-price {
    font-size: 28px;
  }

  .tariffs__arrow {
    width: 46px;
    height: 46px;
  }

  .tariffs__arrow--prev {
    left: 10px;
  }

  .tariffs__arrow--next {
    right: 10px;
  }
}

/* Large Mobile 425x943 - Tariffs section */
@media (min-width: 425px) and (max-width: 767px) {
  .tariffs {
    min-height: 700px;
    padding: 76px 0 84px;
  }

  .tariffs__inner {
    gap: 56px;
  }

  .tariffs__title {
    font-size: 38px;
  }

  .tariffs__carousel {
    max-width: 100%;
  }

  .tariffs__card {
    width: 100%;
    max-width: 385px;
    height: 520px;
    transform: scale(1);
    margin: 0 auto;
  }

  .tariffs__card.is-center {
    transform: scale(1);
  }

  .tariffs__card-content {
    padding: 32px 24px;
    gap: 16px;
  }

  .tariffs__card-title {
    font-size: 24px;
  }

  .tariffs__card.is-center .tariffs__card-title {
    font-size: 26px;
  }

  .tariffs__card-description {
    font-size: 13px;
  }

  .tariffs__card.is-center .tariffs__card-description {
    font-size: 13px;
  }

  .tariffs__card-price {
    font-size: 28px;
  }

  .tariffs__card.is-center .tariffs__card-price {
    font-size: 30px;
  }

  .tariffs__arrow {
    width: 48px;
    height: 48px;
  }

  .tariffs__arrow--prev {
    left: 12px;
  }

  .tariffs__arrow--next {
    right: 12px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .tariffs {
    padding: 90px 0;
  }

  .tariffs__inner {
    gap: 64px;
  }

  .tariffs__title {
    font-size: 48px;
  }

  .tariffs__card {
    width: 350px;
    height: 530px;
    transform: scale(0.8);
  }

  .tariffs__card.is-center {
    transform: scale(1);
  }

  .tariffs__arrow--prev {
    left: -60px;
  }

  .tariffs__arrow--next {
    right: -60px;
  }
}

/* Tablet 768x943 - Tariffs section */
@media (min-width: 768px) and (max-width: 820px) {
  .tariffs {
    min-height: 700px;
    padding: 88px 0 96px;
  }

  .tariffs__inner {
    gap: 60px;
  }

  .tariffs__title {
    font-size: 46px;
  }

  .tariffs__carousel {
    max-width: 720px;
  }

  .tariffs__card {
    width: 340px;
    height: 540px;
    transform: scale(0.78);
  }

  .tariffs__card.is-center {
    transform: scale(1);
  }

  .tariffs__card-content {
    padding: 34px 26px;
    gap: 18px;
  }

  .tariffs__card-title {
    font-size: 24px;
  }

  .tariffs__card.is-center .tariffs__card-title {
    font-size: 27px;
  }

  .tariffs__card-description {
    font-size: 12px;
  }

  .tariffs__card.is-center .tariffs__card-description {
    font-size: 13px;
  }

  .tariffs__card-price {
    font-size: 28px;
  }

  .tariffs__card.is-center .tariffs__card-price {
    font-size: 32px;
  }

  .tariffs__arrow {
    width: 50px;
    height: 50px;
  }

  .tariffs__arrow--prev {
    left: 170px;
  }

  .tariffs__arrow--next {
    right: 170px;
  }
}

/* Laptop 1024x735 - Tariffs section */
@media (min-width: 1024px) and (max-width: 1100px) {
  .tariffs {
    min-height: 600px;
    padding: 80px 0 100px;
  }

  .tariffs__inner {
    gap: 64px;
  }

  .tariffs__title {
    font-size: 48px;
  }

  .tariffs__carousel {
    max-width: 1000px;
  }

  .tariffs__card {
    width: 340px;
    height: 540px;
    transform: scale(0.75);
  }

  .tariffs__card.is-center {
    transform: scale(1);
  }

  .tariffs__card-content {
    padding: 32px 24px;
    gap: 18px;
  }

  .tariffs__card-title {
    font-size: 24px;
  }

  .tariffs__card.is-center .tariffs__card-title {
    font-size: 26px;
  }

  .tariffs__card-description {
    font-size: 12px;
  }

  .tariffs__card.is-center .tariffs__card-description {
    font-size: 13px;
  }

  .tariffs__card-price {
    font-size: 28px;
  }

  .tariffs__card.is-center .tariffs__card-price {
    font-size: 32px;
  }

  .tariffs__arrow {
    width: 52px;
    height: 52px;
  }

  .tariffs__arrow--prev {
    left: 290px;
  }

  .tariffs__arrow--next {
    right: 290px;
  }
}

/* Request section */
.request {
  position: relative;
  width: 100%;
  min-height: 900px;
  padding: 100px 0 120px;
  background-color: #050608;
  overflow: hidden;
}

.request::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../assets/img/background2.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.3;
  pointer-events: none;
  z-index: 0;
}

.request::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 30% 50%,
    rgba(46, 236, 197, 0.1),
    transparent 60%
  );
  pointer-events: none;
  z-index: 0;
}

.request__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
}

.request__title {
  margin: 0;
  font-family: "Ruberoid", "Segoe UI", sans-serif;
  font-size: 55px;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  color: #2eecc5;
  background: linear-gradient(180deg, #b5feef 0%, #2eecc5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.request__wrapper {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 80px;
  width: 100%;
  align-items: center;
}

.request__form {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  max-width: 680px;
}

.request__form-row {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.request__form-row--split {
  flex-direction: row;
  gap: 24px;
}

.request__form-label {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  font-family: "Ruberoid", "Segoe UI", sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.4;
}

.request__form-input {
  width: 100%;
  padding: 16px 20px;
  font-family: "Ruberoid", "Segoe UI", sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #ffffff;
  background-color: rgba(22, 22, 23, 0.8);
  border: 1.5px solid rgba(46, 236, 197, 0.2);
  border-radius: 8px;
  outline: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease;
}

.request__form-input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.request__form-input:hover {
  border-color: rgba(46, 236, 197, 0.35);
  background-color: rgba(22, 22, 23, 0.95);
}

.request__form-input:focus {
  border-color: #2eecc5;
  background-color: rgba(22, 22, 23, 1);
  box-shadow:
    0 0 0 3px rgba(46, 236, 197, 0.1),
    0 0 18px rgba(46, 236, 197, 0.25);
}

.request__form-input:focus-visible {
  outline: none;
}

.request__form-input--textarea {
  resize: vertical;
  min-height: 100px;
  font-family: inherit;
}

.request__form-input:invalid:not(:placeholder-shown) {
  border-color: rgba(255, 82, 82, 0.6);
}

.request__form-input:invalid:not(:placeholder-shown):focus {
  border-color: #ff5252;
  box-shadow:
    0 0 0 3px rgba(255, 82, 82, 0.1),
    0 0 18px rgba(255, 82, 82, 0.25);
}

.request__form-submit {
  margin-top: 8px;
  align-self: flex-start;
  min-width: 240px;
}

.request__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 640px;
}

.request__phone {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 313px;
  height: 639px;
  filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.6));
}

.request__phone-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.request__notification {
  position: absolute;
  z-index: 2;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.4));
  animation: notification-float 3s ease-in-out infinite;
}

.request__notification--call {
  top: 40px;
  left: -110px;
  animation-delay: 0s;
}

.request__notification--done {
  bottom: 200px;
  right: -85px;
  animation-delay: 1.5s;
}

.request__notification-image {
  display: block;
  width: auto;
  height: auto;
  max-width: 227px;
  image-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@keyframes notification-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* Medium screens adjustments */
@media (max-width: 1180px) {
  .request__notification--call {
    left: -90px;
  }

  .request__notification--done {
    right: -50px;
    bottom: 180px;
  }

  .request__notification-image {
    max-width: 200px;
  }
}

@media (max-width: 1023px) {
  .request__notification {
    display: none;
  }
}

/* Small Mobile 320x943 - Request section */
@media (min-width: 320px) and (max-width: 374px) {
  .request {
    min-height: 620px;
    padding: 66px 0 72px;
  }

  .request__inner {
    gap: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .request__title {
    font-size: 30px;
    text-align: center;
  }

  .request__wrapper {
    grid-template-columns: 1fr;
    gap: 0;
    width: 100%;
    max-width: 292px;
  }

  .request__form {
    max-width: 100%;
    gap: 16px;
  }

  .request__form-row {
    gap: 16px;
  }

  .request__form-row--split {
    flex-direction: column;
    gap: 16px;
  }

  .request__form-label {
    font-size: 12px;
    gap: 8px;
  }

  .request__form-input {
    padding: 12px 14px;
    font-size: 12px;
  }

  .request__form-input--textarea {
    min-height: 80px;
  }

  .request__form-submit {
    width: 155px;
    align-self: flex-start;
    font-size: 12px;
  }

  .request__visual {
    display: none;
  }
}

/* Medium Mobile 375x943 - Request section */
@media (min-width: 375px) and (max-width: 424px) {
  .request {
    min-height: 650px;
    padding: 72px 0 80px;
  }

  .request__inner {
    gap: 46px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .request__title {
    font-size: 34px;
    text-align: center;
  }

  .request__wrapper {
    grid-template-columns: 1fr;
    gap: 0;
    width: 100%;
    max-width: 343px;
  }

  .request__form {
    max-width: 100%;
    gap: 18px;
  }

  .request__form-row {
    gap: 18px;
  }

  .request__form-row--split {
    flex-direction: column;
    gap: 18px;
  }

  .request__form-label {
    font-size: 13px;
    gap: 9px;
  }

  .request__form-input {
    padding: 13px 16px;
    font-size: 13px;
  }

  .request__form-input--textarea {
    min-height: 85px;
  }

  .request__form-submit {
    width: 170px;
    align-self: flex-start;
  }

  .request__visual {
    display: none;
  }
}

/* Large Mobile 425x943 - Request section */
@media (min-width: 425px) and (max-width: 767px) {
  .request {
    min-height: 680px;
    padding: 76px 0 84px;
  }

  .request__inner {
    gap: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .request__title {
    font-size: 38px;
    text-align: center;
  }

  .request__wrapper {
    grid-template-columns: 1fr;
    gap: 0;
    width: 100%;
    max-width: 385px;
  }

  .request__form {
    max-width: 100%;
    gap: 20px;
  }

  .request__form-row {
    gap: 20px;
  }

  .request__form-row--split {
    flex-direction: column;
    gap: 20px;
  }

  .request__form-label {
    font-size: 14px;
    gap: 10px;
  }

  .request__form-input {
    padding: 14px 18px;
    font-size: 14px;
  }

  .request__form-input--textarea {
    min-height: 90px;
  }

  .request__form-submit {
    width: 186px;
    align-self: flex-start;
  }

  .request__visual {
    display: none;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .request {
    padding: 90px 0;
  }

  .request__inner {
    gap: 56px;
  }

  .request__title {
    font-size: 48px;
  }

  .request__wrapper {
    grid-template-columns: 1fr;
    gap: 64px;
  }

  .request__form {
    max-width: 100%;
  }

  .request__visual {
    order: -1;
    min-height: auto;
  }

  .request__phone {
    max-width: 313px;
    margin: 0 auto;
  }
}

/* Tablet 768x943 - Request section */
@media (min-width: 768px) and (max-width: 820px) {
  .request {
    min-height: 680px;
    padding: 88px 0 96px;
  }

  .request__inner {
    gap: 52px;
  }

  .request__title {
    font-size: 46px;
  }

  .request__wrapper {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .request__form {
    max-width: 100%;
    gap: 22px;
  }

  .request__form-row {
    gap: 22px;
  }

  .request__form-row--split {
    gap: 22px;
  }

  .request__form-label {
    font-size: 14px;
    gap: 10px;
  }

  .request__form-input {
    padding: 15px 18px;
    font-size: 14px;
  }

  .request__form-input--textarea {
    min-height: 95px;
  }

  .request__form-submit {
    width: 186px;
    align-self: flex-start;
  }

  .request__visual {
    display: none;
  }
}

/* Laptop 1024x735 - Request section */
@media (min-width: 1024px) and (max-width: 1100px) {
  .request {
    min-height: 750px;
    padding: 80px 0 100px;
  }

  .request__inner {
    gap: 56px;
  }

  .request__title {
    font-size: 48px;
  }

  .request__wrapper {
    grid-template-columns: 1fr 360px;
    gap: 60px;
  }

  .request__form {
    max-width: 600px;
    gap: 20px;
  }

  .request__form-row {
    gap: 20px;
  }

  .request__form-row--split {
    gap: 20px;
  }

  .request__form-label {
    font-size: 14px;
    gap: 10px;
  }

  .request__form-input {
    padding: 14px 18px;
    font-size: 14px;
  }

  .request__form-input--textarea {
    min-height: 90px;
  }

  .request__form-submit {
    min-width: 220px;
  }

  .request__visual {
    min-height: 580px;
  }

  .request__phone {
    width: 280px;
    height: 572px;
  }

  .request__notification--call {
    top: 30px;
    left: -90px;
  }

  .request__notification--done {
    bottom: 180px;
    right: -70px;
  }

  .request__notification-image {
    max-width: 190px;
  }
}

/* Contacts section */
.contacts {
  position: relative;
  width: 100%;
  min-height: 500px;
  padding: 100px 0 120px;
  background-color: #050608;
  overflow: hidden;
}

.contacts::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../assets/img/background3.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.3;
  pointer-events: none;
  z-index: 0;
}

.contacts::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(46, 236, 197, 0.12),
    transparent 65%
  );
  pointer-events: none;
  z-index: 0;
}

.contacts__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
}

.contacts__title {
  margin: 0;
  font-family: "Ruberoid", "Segoe UI", sans-serif;
  font-size: 55px;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  color: #2eecc5;
  background: linear-gradient(180deg, #b5feef 0%, #2eecc5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contacts__links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.contacts__link {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
  cursor: pointer;
}

.contacts__link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(22, 22, 23, 0.95) 0%,
    rgba(30, 30, 32, 0.95) 100%
  );
  border: none;
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.4),
    inset 0 0 20px rgba(46, 236, 197, 0.05);
  transition:
    box-shadow 0.3s ease,
    transform 0.3s ease,
    background 0.3s ease;
  z-index: -1;
}

.contacts__link:hover,
.contacts__link:focus-visible {
  color: #2eecc5;
}

.contacts__link:hover::before,
.contacts__link:focus-visible::before {
  background: linear-gradient(
    135deg,
    rgba(46, 236, 197, 0.15) 0%,
    rgba(30, 30, 32, 0.95) 100%
  );
  box-shadow: 
    0 0 32px rgba(46, 236, 197, 0.5),
    0 0 48px rgba(46, 236, 197, 0.3),
    inset 0 0 24px rgba(46, 236, 197, 0.15);
  transform: translateX(-50%) scale(1.08);
}

.contacts__link:focus-visible {
  outline: 2px solid #2eecc5;
  outline-offset: 8px;
  border-radius: 50%;
}

.contacts__link:active::before {
  transform: translateX(-50%) scale(1.02);
}

.contacts__icon {
  position: relative;
  z-index: 1;
  width: 40px;
  height: 40px;
  color: #2eecc5;
  transition: 
    color 0.3s ease,
    filter 0.3s ease,
    transform 0.3s ease;
}

.contacts__link:hover .contacts__icon,
.contacts__link:focus-visible .contacts__icon {
  color: #41fff1;
  filter: drop-shadow(0 0 8px rgba(46, 236, 197, 0.8));
  transform: scale(1.1);
}

.contacts__label {
  font-family: "Ruberoid", "Segoe UI", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  transition: color 0.3s ease;
  margin-top: 60px;
}

.contacts__link:hover .contacts__label,
.contacts__link:focus-visible .contacts__label {
  text-shadow: 0 0 12px rgba(46, 236, 197, 0.6);
}

/* Footer */
.footer {
  position: relative;
  width: 100%;
  padding: 48px 0;
  background-color: #000000;
  border-top: 1px solid rgba(46, 236, 197, 0.15);
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(46, 236, 197, 0.5),
    transparent
  );
  box-shadow: 0 0 16px rgba(46, 236, 197, 0.3);
}

.footer__inner {
  position: relative;
  z-index: 1;
}

.footer__content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__studio-name {
  margin: 0;
  font-family: "Ruberoid", "Segoe UI", sans-serif;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.2;
  color: #2eecc5;
  background: linear-gradient(180deg, #b5feef 0%, #2eecc5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.02em;
}

.footer__email {
  margin: 0;
  font-family: "Ruberoid", "Segoe UI", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
}

.footer__email-link {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.2s ease;
  position: relative;
}

.footer__email-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, #2eecc5, #41fff1);
  transition: width 0.2s ease;
}

.footer__email-link:hover,
.footer__email-link:focus-visible {
  color: #2eecc5;
}

.footer__email-link:hover::after,
.footer__email-link:focus-visible::after {
  width: 100%;
}

.footer__email-link:focus-visible {
  outline: 2px solid #2eecc5;
  outline-offset: 3px;
  border-radius: 2px;
}

.footer__legal {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: right;
}

.footer__text {
  margin: 0;
  font-family: "Ruberoid", "Segoe UI", sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.4);
}

/* Small Mobile 320x943 - Contacts and Footer */
@media (min-width: 320px) and (max-width: 374px) {
  .contacts {
    min-height: 400px;
    padding: 66px 0 70px;
  }

  .contacts__inner {
    gap: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .contacts__title {
    font-size: 30px;
    text-align: center;
  }

  .contacts__links {
    gap: 36px;
  }

  .contacts__link::before {
    width: 62px;
    height: 62px;
  }

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

  .contacts__label {
    margin-top: 50px;
    font-size: 13px;
  }

  .footer {
    padding: 32px 0;
  }

  .footer__content {
    flex-direction: column;
    align-items: center;
    gap: 22px;
    text-align: center;
  }

  .footer__legal {
    text-align: center;
  }

  .footer__studio-name {
    font-size: 18px;
  }

  .footer__email {
    font-size: 11px;
  }

  .footer__text {
    font-size: 10px;
  }
}

/* Medium Mobile 375x943 - Contacts and Footer */
@media (min-width: 375px) and (max-width: 424px) {
  .contacts {
    min-height: 420px;
    padding: 72px 0 76px;
  }

  .contacts__inner {
    gap: 46px;
  }

  .contacts__title {
    font-size: 34px;
  }

  .contacts__links {
    gap: 40px;
  }

  .contacts__link::before {
    width: 66px;
    height: 66px;
  }

  .contacts__icon {
    width: 36px;
    height: 36px;
  }

  .contacts__label {
    margin-top: 54px;
    font-size: 14px;
  }

  .footer {
    padding: 36px 0;
  }

  .footer__content {
    flex-direction: column;
    align-items: center;
    gap: 26px;
    text-align: center;
  }

  .footer__legal {
    text-align: center;
  }

  .footer__studio-name {
    font-size: 20px;
  }

  .footer__email {
    font-size: 12px;
  }

  .footer__text {
    font-size: 11px;
  }
}

/* Large Mobile 425x943 - Contacts and Footer */
@media (min-width: 425px) and (max-width: 767px) {
  .contacts {
    min-height: 440px;
    padding: 76px 0 80px;
  }

  .contacts__inner {
    gap: 50px;
  }

  .contacts__title {
    font-size: 38px;
  }

  .contacts__links {
    gap: 44px;
  }

  .contacts__link::before {
    width: 68px;
    height: 68px;
  }

  .contacts__icon {
    width: 38px;
    height: 38px;
  }

  .contacts__label {
    margin-top: 56px;
    font-size: 15px;
  }

  .footer {
    padding: 38px 0;
  }

  .footer__content {
    flex-direction: column;
    align-items: center;
    gap: 28px;
    text-align: center;
  }

  .footer__legal {
    text-align: center;
  }

  .footer__studio-name {
    font-size: 21px;
  }

  .footer__email {
    font-size: 13px;
  }

  .footer__text {
    font-size: 12px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .contacts {
    padding: 90px 0 80px;
  }

  .contacts__inner {
    gap: 56px;
  }

  .contacts__title {
    font-size: 48px;
  }

  .footer {
    padding: 40px 0;
  }

  .footer__content {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
  }

  .footer__legal {
    text-align: left;
  }
}

/* Tablet 768x943 - Contacts and Footer */
@media (min-width: 768px) and (max-width: 820px) {
  .contacts {
    min-height: 480px;
    padding: 88px 0 96px;
  }

  .contacts__inner {
    gap: 54px;
  }

  .contacts__title {
    font-size: 46px;
  }

  .contacts__links {
    gap: 42px;
  }

  .contacts__link::before {
    width: 68px;
    height: 68px;
  }

  .contacts__icon {
    width: 38px;
    height: 38px;
  }

  .contacts__label {
    margin-top: 56px;
    font-size: 15px;
  }

  .footer {
    padding: 42px 0;
  }

  .footer__content {
    gap: 34px;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer__legal {
    text-align: center;
  }

  .footer__studio-name {
    font-size: 22px;
  }

  .footer__email {
    font-size: 13px;
  }

  .footer__text {
    font-size: 12px;
  }
}

/* Laptop 1024x735 - Contacts and Footer */
@media (min-width: 1024px) and (max-width: 1100px) {
  .contacts {
    min-height: 420px;
    padding: 80px 0 100px;
  }

  .contacts__inner {
    gap: 56px;
  }

  .contacts__title {
    font-size: 48px;
  }

  .contacts__links {
    gap: 44px;
  }

  .contacts__link::before {
    width: 70px;
    height: 70px;
  }

  .contacts__icon {
    width: 38px;
    height: 38px;
  }

  .contacts__label {
    margin-top: 58px;
    font-size: 15px;
  }

  .footer {
    padding: 44px 0;
  }

  .footer__content {
    gap: 36px;
  }

  .footer__studio-name {
    font-size: 22px;
  }

  .footer__email {
    font-size: 13px;
  }

  .footer__text {
    font-size: 12px;
  }
}