﻿@font-face {
  font-family: 'Caveat';
  src: url('/assets/fonts/caveat-400.ttf') format('truetype');
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: 'Days One';
  src: url('/assets/fonts/days-one-400.ttf') format('truetype');
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('/assets/fonts/inter-300.ttf') format('truetype');
  font-style: normal;
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('/assets/fonts/inter-600.ttf') format('truetype');
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: 'Onest';
  src: url('/assets/fonts/onest-400.ttf') format('truetype');
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: 'Onest';
  src: url('/assets/fonts/onest-500.ttf') format('truetype');
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: 'Onest';
  src: url('/assets/fonts/onest-600.ttf') format('truetype');
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}
:root {
  --orange: #f65318;
  --orange-soft: #fe5d33;
  --dark: #111827;
  --card-dark: #222731;
  --muted: #4b5563;
  --light-grey: #f6f6f6;
  --page-x: clamp(16px, 2.08vw, 30px);
  --desktop-scale: 1.1;
  color: var(--dark);
  font-family: 'Onest', sans-serif;
  background: #ffffff;
  font-synthesis: none;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: #ffffff;
}

img {
  user-select: none;
  -webkit-user-drag: none;
}

::selection {
  background: rgba(246, 83, 24, 0.88);
  color: #ffffff;
}

.hero ::selection,
.faq-card--dark ::selection,
.scroll-top ::selection {
  background: rgba(255, 255, 255, 0.94);
  color: var(--card-dark);
}

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

button {
  border: 0;
  background: none;
  font: inherit;
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  gap: 18px;
  align-content: center;
  background: #ffffff;
}

.loader__group {
  display: grid;
  justify-items: center;
  width: max-content;
}

.loader__brand {
  display: grid;
  justify-items: center;
  color: var(--card-dark);
  font-family: 'Days One', sans-serif;
  font-size: 34px;
  line-height: 1;
  letter-spacing: -0.03em;
  animation: loader-bob 1.7s ease-in-out infinite;
}

.loader__line {
  width: calc(100% + 20px);
  height: 6px;
  margin-top: 14px;
  overflow: hidden;
  border-radius: 999px;
  background: #f0f1f5;
}

.loader__line::after {
  display: block;
  width: 44%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #ff864f 0%, var(--orange) 100%);
  content: '';
  animation: loader-line 1.15s ease-in-out infinite;
}

.loader-fade-leave-active {
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.loader-fade-leave-to {
  opacity: 0;
  transform: scale(1.015);
}

.site-page {
  width: min(calc(100% - 12px), 1550px);
  margin: 0 auto;
  padding: 34px var(--page-x) 92px;
  overflow: hidden;
}

.hero {
  position: relative;
  min-height: 861px;
  overflow: hidden;
  border-radius: 44px;
  background: var(--orange);
  color: #ffffff;
  isolation: isolate;
}

.hero__header {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 50px 52px 0;
}

.logo {
  width: max-content;
  font-family: 'Onest', sans-serif;
  font-size: 31px;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.menu {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 20px;
  line-height: 1;
}

.menu-toggle {
  display: none;
}

.menu a,
.join,
.scroll-top,
.faq-trigger {
  transition: transform 0.25s ease, opacity 0.25s ease, background-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.menu a:hover,
.join:hover {
  transform: translateY(-2px);
}

.join {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 700;
  white-space: nowrap;
}

.join--small {
  justify-self: end;
  width: 190px;
  height: 44px;
  background: #ffffff;
  color: var(--dark);
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 600;
}

.mobile-menu {
  position: absolute;
  top: 96px;
  left: 22px;
  right: 22px;
  z-index: 3;
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 28px;
  background: rgba(34, 39, 49, 0.16);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 40px rgba(17, 24, 39, 0.12);
}

.mobile-menu__nav {
  display: grid;
  gap: 10px;
}

.mobile-menu__nav a {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 0 16px;
  border-radius: 18px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.08);
}

.mobile-menu__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border-radius: 999px;
  background: #ffffff;
  color: var(--dark);
  font-size: 16px;
  font-weight: 700;
}

.hero__content {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  margin: 136px auto 0;
  text-align: center;
}

.hero h1 {
  width: min(650px, calc(100% - 32px));
  margin: 0;
  font-family: 'Days One', sans-serif;
  font-size: 66px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.025em;
}

.hero__content p {
  width: min(548px, calc(100% - 32px));
  margin: 14px 0 23px;
  font-family: 'Caveat', cursive;
  font-size: 35px;
  line-height: 1.2;
}

.hero__actions {
  display: flex;
  justify-content: center;
  gap: 24px;
}

.join--primary {
  min-width: 228px;
  height: 64px;
  padding: 0 42px;
  background: #ffffff;
  color: var(--dark);
  font-size: 17px;
}

.join--ghost {
  min-width: 228px;
  height: 64px;
  border: 1px solid #e5e7eb;
  color: #ffffff;
  font-size: 17px;
}

.join--ghost:hover {
  background: #ffffff;
  color: var(--dark);
}

.hero__label {
  position: absolute;
  left: 50%;
  bottom: 54px;
  z-index: 2;
  width: 350px;
  height: 41px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: var(--card-dark);
  font-family: 'Onest', sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 41px;
  text-align: center;
}

.bubble {
  position: absolute;
  z-index: 1;
  width: 79px;
  height: 79px;
  animation: float 7s ease-in-out infinite;
  pointer-events: none;
}

.bubble-1 { left: 109px; top: 252px; animation-delay: -0.4s; }
.bubble-2 { left: 292px; top: 412px; animation-delay: -1.1s; }
.bubble-3 { left: 308px; top: 469px; animation-delay: -1.8s; }
.bubble-4 { left: 888px; top: 633px; animation-delay: -2.2s; }
.bubble-5 { left: 1178px; top: 252px; animation-delay: -2.9s; }
.bubble-6 { left: 1138px; top: 398px; animation-delay: -3.4s; }
.bubble-7 { left: 1311px; top: 525px; animation-delay: -4s; }
.bubble-8 { left: 1200px; top: 655px; animation-delay: -4.5s; }
.bubble-9 { left: 54px; top: 640px; animation-delay: -5s; }
.bubble-10 { left: 1370px; top: 553px; animation-delay: -5.4s; }
.bubble-11 { left: 560px; top: 571px; animation-delay: -6s; }
.bubble-12 { left: 109px; top: 669px; animation-delay: -6.5s; }
.bubble-13 { left: 1319px; top: 654px; animation-delay: -7s; }
.bubble-14 { left: 324px; top: 669px; animation-delay: -7.3s; }

.section {
  text-align: center;
}

.section h2,
.download h2 {
  margin: 0;
  color: var(--dark);
  font-family: 'Onest', sans-serif;
  font-size: 66px;
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.why {
  padding-top: 72px;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin: 86px auto 0;
  max-width: 1360px;
}

.benefit-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 248px;
  padding: 46px 48px 38px;
  border-radius: 44px;
  background: var(--light-grey);
}

.benefit-card__icon {
  position: absolute;
  top: 44px;
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.benefit-card:first-child .benefit-card__icon {
  left: 66px;
}

.benefit-card:last-child .benefit-card__icon {
  right: 66px;
}

.benefit-card h3 {
  margin: 0 0 29px;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.1;
  text-align: center;
}

.benefit-card p {
  max-width: 350px;
  margin: 0 auto;
  color: var(--muted);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.52;
}

.download {
  display: grid;
  grid-template-columns: 660px 1fr;
  gap: 60px;
  align-items: start;
  max-width: 1360px;
  margin: 72px auto 0;
}

.download__visual {
  position: relative;
  height: 444px;
  overflow: hidden;
  border-radius: 44px 44px 12px 12px;
  background: var(--orange);
}

.download__visual img {
  position: absolute;
  left: 92px;
  top: 89px;
  width: 384px;
  max-width: none;
}

.download__text {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 444px;
  text-align: left;
}

.download__text h2 {
  display: flex;
  align-items: baseline;
  gap: 12px;
  max-width: 760px;
  font-size: 43px;
  font-weight: 400;
  line-height: 1.24;
  white-space: nowrap;
  letter-spacing: 0;
}

.download__text h2 span {
  display: block;
}

.download__text p {
  max-width: 628px;
  margin: 0;
  font-size: 29px;
  line-height: 1.92;
}

.store-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 648px;
  height: 104px;
  padding: 0 42px;
  border-radius: 44px;
  background: var(--light-grey);
  font-size: 29px;
  line-height: 1;
}

.app-life {
  padding-top: 94px;
}

.app-life > p,
.pricing > p,
.faq > p {
  margin: 16px 0 0;
  font-size: 22px;
  font-weight: 300;
}

.phone-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px;
  align-items: end;
  max-width: 1360px;
  margin: 58px auto 0;
}

.phone {
  position: relative;
  width: 307px;
  height: 581px;
  justify-self: center;
  animation: phone-rise 0.9s both ease-out;
  animation-delay: var(--delay);
}

.phone__frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.phone__screen {
  position: absolute;
  left: 60px;
  top: 109px;
  width: 188px;
  height: 409px;
  border: 4px solid var(--dark);
  border-radius: 22px;
  object-fit: cover;
}

.pricing {
  padding-top: 90px;
}

.pricing h2 {
  max-width: 1160px;
  margin: 0 auto;
}

.pricing > p {
  margin-top: 24px;
  font-family: 'Inter', sans-serif;
}

.tariff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1360px;
  margin: 82px auto 0;
}

.tariff-card {
  min-height: 362px;
  border-radius: 44px;
  background: linear-gradient(to bottom, var(--orange) 0 90px, var(--card-dark) 90px 100%);
  overflow: hidden;
  text-align: left;
  transition: transform 0.28s ease;
}

.tariff-card:hover {
  transform: scale(1.1);
}

.tariff-card__top {
  height: 90px;
  display: grid;
  place-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 24px;
  line-height: 1.1;
  text-align: center;
}

.tariff-card__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 28px;
  padding: 0 42px;
  color: #ffffff;
  font-size: 24px;
  line-height: 1.1;
  text-align: left;
  min-height: calc(362px - 90px);
}

.tariff-card__body p {
  margin: 0;
}

.tariff-card__body p:first-child {
  white-space: nowrap;
}

.faq {
  padding-top: 92px;
}

.faq h2 {
  max-width: 980px;
  margin: 0 auto;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 1360px;
  margin: 80px auto 0;
  align-items: start;
}

.faq-card {
  border-radius: 44px;
  overflow: hidden;
  transition: transform 0.3s ease, filter 0.3s ease, box-shadow 0.3s ease;
}

.faq-card:hover {
  transform: translateY(-4px);
  filter: saturate(1.03);
}

.faq-card--orange {
  background: var(--orange-soft);
  color: #ffffff;
}

.faq-card--orange .faq-trigger,
.faq-card--orange .faq-trigger__text,
.faq-card--orange .faq-answer p {
  color: #ffffff;
}

.faq-card--orange .faq-trigger__icon {
  color: var(--orange-soft);
}

.faq-card--dark {
  background: var(--card-dark);
  color: #ffffff;
}

.faq-card--dark .faq-trigger,
.faq-card--dark .faq-trigger__text,
.faq-card--dark .faq-answer p {
  color: #ffffff;
}

.faq-card--open {
  box-shadow: 0 20px 52px rgba(17, 24, 39, 0.12);
}

.faq-trigger {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 28px;
  align-items: center;
  width: 100%;
  min-height: 124px;
  padding: 26px 40px;
  cursor: pointer;
  text-align: left;
  justify-items: start;
}

.faq-trigger__icon {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #ffffff;
  color: var(--card-dark);
  box-shadow: 0 10px 24px rgba(17, 24, 39, 0.08);
}

.faq-card--dark .faq-trigger__icon {
  color: var(--orange-soft);
}

.faq-trigger__icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.75;
  fill: none;
  transition: transform 0.32s ease;
}

.faq-trigger__icon--open svg {
  transform: rotate(180deg);
}

.faq-trigger__text {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.16;
}

.faq-answer {
  margin-top: -18px;
  padding: 0 40px 34px 118px;
  text-align: left;
}

.faq-answer p {
  max-width: 480px;
  margin: 0;
  font-size: 18px;
  line-height: 1.6;
  opacity: 0.92;
}

.faq-answer-enter-active,
.faq-answer-leave-active {
  transition: grid-template-rows 0.22s ease, opacity 0.22s ease, transform 0.22s ease;
}

.faq-answer-enter-from,
.faq-answer-leave-to {
  opacity: 0;
  transform: translateY(-5px);
}

.scroll-top {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 40;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(34, 39, 49, 0.92);
  color: #ffffff;
  cursor: pointer;
  box-shadow: 0 18px 40px rgba(17, 24, 39, 0.16);
  backdrop-filter: blur(10px);
}

.scroll-top:hover {
  transform: translateY(-3px);
  background: var(--orange);
}

.scroll-top svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.scroll-top-fade-enter-active,
.scroll-top-fade-leave-active {
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.scroll-top-fade-enter-from,
.scroll-top-fade-leave-to {
  opacity: 0;
  transform: translateY(12px) scale(0.92);
}

.mobile-menu-enter-active,
.mobile-menu-leave-active {
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.mobile-menu-enter-from,
.mobile-menu-leave-to {
  opacity: 0;
  transform: translateY(-14px);
}

.reveal {
  animation: reveal-up 0.75s ease both;
}

@keyframes loader-bob {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

@keyframes loader-line {
  0% {
    transform: translateX(-115%);
  }
  58% {
    transform: translateX(92%);
  }
  100% {
    transform: translateX(248%);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -14px, 0);
  }
}

@keyframes reveal-up {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes phone-rise {
  from {
    opacity: 0;
    transform: translateY(32px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 1360px) {
  .download {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .download__text {
    align-items: center;
    min-height: auto;
    text-align: center;
  }

  .download__text h2,
  .download__text p {
    margin-left: auto;
    margin-right: auto;
  }

  .download__text h2 {
    max-width: 820px;
    white-space: normal;
  }

  .store-pill {
    display: flex;
    min-width: 0;
    width: min(648px, 100%);
    margin-left: auto;
    margin-right: auto;
    align-self: center;
  }
}

@media (max-width: 1280px) {
  .site-page {
    width: min(100%, 1460px);
    padding-top: 24px;
  }

  .hero {
    min-height: 760px;
  }

  .hero__header {
    padding: 38px 38px 0;
  }

  .hero__content {
    margin-top: 122px;
  }

  .hero h1,
  .section h2 {
    font-size: 56px;
  }

  .benefit-grid,
  .tariff-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .phone-row {
    grid-template-columns: repeat(2, 1fr);
    max-width: 760px;
  }

  .bubble {
    transform: scale(0.88);
  }

  .bubble-5,
  .bubble-8,
  .bubble-10,
  .bubble-13 {
    display: none;
  }
}

@media (max-width: 920px) {
  .hero__header {
    grid-template-columns: 1fr auto;
    gap: 22px;
  }

  .menu {
    grid-column: 1 / -1;
    justify-content: center;
    order: 3;
  }

  .benefit-grid,
  .tariff-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .benefit-grid,
  .tariff-grid,
  .faq-grid {
    max-width: 690px;
  }

  .download__visual {
    width: min(660px, 100%);
    margin: 0 auto;
  }
}

@media (max-width: 1000px) {
  .hero__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 26px 22px 0;
  }

  .menu,
  .join--small {
    display: none;
  }

  .menu-toggle {
    position: relative;
    display: inline-flex;
    flex-direction: column;
    flex: 0 0 auto;
    justify-content: center;
    align-items: center;
    gap: 6px;
    width: 48px;
    height: 48px;
    margin-left: auto;
    padding: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(10px);
    cursor: pointer;
    z-index: 4;
  }

  .menu-toggle span {
    display: block;
    width: 22px;
    height: 2.5px;
    margin: 0 auto;
    border-radius: 999px;
    background: #ffffff;
    transition: transform 0.28s ease, opacity 0.28s ease;
  }

  .menu-toggle span:first-child.menu-toggle__line--open {
    transform: translateY(8.5px) rotate(45deg);
  }

  .menu-toggle span:last-child.menu-toggle__line--open {
    transform: translateY(-8.5px) rotate(-45deg);
  }

  .menu-toggle__line--open-middle {
    opacity: 0;
  }

  .bubble {
    display: none;
  }
}

@media (max-width: 680px) {
  .loader__brand {
    font-size: 28px;
  }

  .loader__line {
    margin-top: 12px;
  }

  .site-page {
    width: 100%;
    padding: 14px 12px 62px;
  }

  .hero {
    min-height: 646px;
    border-radius: 28px;
  }

  .logo {
    font-size: 20px;
  }

  .hero__content {
    margin-top: 98px;
    padding: 0 18px 120px;
  }

  .hero h1,
  .section h2,
  .download h2 {
    font-size: clamp(34px, 11vw, 44px);
    line-height: 1.08;
  }

  .faq h2 {
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero__content p {
    margin-top: 18px;
    font-size: 27px;
  }

  .hero__actions {
    flex-direction: column;
    width: min(280px, 100%);
  }

  .join--primary,
  .join--ghost {
    width: 100%;
    min-width: 0;
    height: 58px;
  }

  .hero__label {
    bottom: 32px;
    width: min(318px, calc(100% - 48px));
    font-size: 12px;
  }

  .why,
  .app-life,
  .pricing,
  .faq {
    padding-top: 56px;
  }

  .benefit-grid,
  .tariff-grid,
  .faq-grid {
    gap: 18px;
    margin-top: 34px;
  }

  .benefit-card {
    min-height: auto;
    padding: 34px 28px;
    border-radius: 30px;
  }

  .benefit-card p {
    max-width: 320px;
  }

  .download {
    margin-top: 42px;
  }

  .download__visual {
    height: 320px;
    border-radius: 30px 30px 10px 10px;
  }

  .download__visual img {
    left: 50%;
    top: 68px;
    width: 305px;
    transform: translateX(-50%);
  }

  .download__text h2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 100%;
    font-size: 30px;
    line-height: 1.08;
    white-space: normal;
    text-align: center;
  }

  .download__text h2 span {
    display: block;
  }

  .download__text p {
    max-width: 540px;
    font-size: 17px;
    line-height: 1.55;
  }

  .store-pill {
    height: auto;
    min-height: 74px;
    min-width: 0;
    width: 100%;
    border-radius: 30px;
    font-size: 15px;
    line-height: 1.15;
    white-space: nowrap;
    text-align: center;
  }

  .app-life > p,
  .pricing > p,
  .faq > p {
    font-size: 16px;
    line-height: 1.45;
  }

  .download__text {
    display: grid;
    grid-template-rows: auto 1fr auto;
    min-height: 300px;
    align-items: stretch;
  }

  .download__text h2 {
    align-self: start;
  }

  .download__text p {
    display: grid;
    align-content: center;
    margin: 0;
  }

  .store-pill {
    align-self: end;
  }

  .app-life {
    display: none;
  }

  .tariff-card {
    min-height: 286px;
    border-radius: 30px;
    background: linear-gradient(to bottom, var(--orange) 0 70px, var(--card-dark) 70px 100%);
  }

  .tariff-card:hover {
    transform: scale(1.02);
  }

  .tariff-card__top {
    height: 70px;
    font-size: 18px;
  }

  .tariff-card__body {
    gap: 22px;
    padding: 0 30px;
    font-size: 18px;
    min-height: calc(286px - 70px);
  }

  .tariff-card__body p:first-child {
    white-space: normal;
  }

  .faq-card {
    border-radius: 28px;
  }

  .faq-grid .faq-card:nth-child(1),
  .faq-grid .faq-card:nth-child(3) {
    background: var(--orange-soft);
    color: #ffffff;
  }

  .faq-grid .faq-card:nth-child(1) .faq-trigger,
  .faq-grid .faq-card:nth-child(1) .faq-trigger__text,
  .faq-grid .faq-card:nth-child(1) .faq-answer p,
  .faq-grid .faq-card:nth-child(3) .faq-trigger,
  .faq-grid .faq-card:nth-child(3) .faq-trigger__text,
  .faq-grid .faq-card:nth-child(3) .faq-answer p {
    color: #ffffff;
  }

  .faq-grid .faq-card:nth-child(1) .faq-trigger__icon,
  .faq-grid .faq-card:nth-child(3) .faq-trigger__icon {
    color: var(--orange-soft);
  }

  .faq-grid .faq-card:nth-child(2),
  .faq-grid .faq-card:nth-child(4) {
    background: var(--card-dark);
    color: #ffffff;
  }

  .faq-grid .faq-card:nth-child(2) .faq-trigger,
  .faq-grid .faq-card:nth-child(2) .faq-trigger__text,
  .faq-grid .faq-card:nth-child(2) .faq-answer p,
  .faq-grid .faq-card:nth-child(4) .faq-trigger,
  .faq-grid .faq-card:nth-child(4) .faq-trigger__text,
  .faq-grid .faq-card:nth-child(4) .faq-answer p {
    color: #ffffff;
  }

  .faq-grid .faq-card:nth-child(2) .faq-trigger__icon,
  .faq-grid .faq-card:nth-child(4) .faq-trigger__icon {
    color: var(--orange-soft);
  }

  .faq-trigger {
    grid-template-columns: 34px 1fr;
    gap: 16px;
    min-height: 84px;
    padding: 20px 22px;
  }

  .faq-trigger__icon {
    width: 34px;
    height: 34px;
  }

  .faq-trigger__icon svg {
    width: 18px;
    height: 18px;
  }

  .faq-trigger__text {
    font-size: 17px;
  }

  .faq-answer {
    margin-top: -14px;
    padding: 0 22px 22px 72px;
  }

  .faq-answer p {
    font-size: 15px;
  }

  .scroll-top {
    right: 16px;
    bottom: 16px;
    width: 50px;
    height: 50px;
  }

}

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