:root {
  --bg-primary: #0a0f0f;
  --accent-papaya: #ff8c42;
  --accent-papaya-light: #ffb366;
  --accent-papaya-dark: #e67129;
  --papaya-secondary: #ff6b35;
  --papaya-warm: #ffa366;
  --text-white: #fff;
  --text-cream: #fef7f0;
  --glass-gradient: linear-gradient(
    156.17deg,
    rgba(255, 140, 66, 0.28) -0.73%,
    rgba(255, 107, 53, 0) 102.79%
  );
  --white-papaya-gradient: linear-gradient(90deg, #fef7f0 0, #ff8c42 100%);
  --fancy-border-gradient: linear-gradient(
    315deg,
    rgba(255, 140, 66, 0.4),
    rgba(255, 107, 53, 0)
  );
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 0;
}

body {
  overflow-x: hidden;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "PF DinDisplay Pro", sans-serif;
  background-color: var(--bg-primary);
  background-image: radial-gradient(
      190.08% 41.99% at 207.81% -3.24%,
      rgba(255, 255, 255, 0.2) 0,
      rgba(0, 0, 0, 0) 100%
    ),
    radial-gradient(
      324.16% 47.29% at -183.41% 72.53%,
      rgba(255, 255, 255, 0.2) 0,
      rgba(0, 0, 0, 0) 100%
    );
  background-repeat: no-repeat, no-repeat;
  background-size: cover, cover;
  color: var(--text-white);
  position: relative;
}

body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/backgrounds/bg-one-raw.svg");
  background-repeat: repeat-y;
  background-size: 100% auto;
  opacity: 1;
  pointer-events: none;
  z-index: -1;
}

body::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/backgrounds/noise/noise_768.webp");
  background-repeat: repeat;
  background-size: auto;
  opacity: 0.3;
  pointer-events: none;
  z-index: -1;
}

@media (min-width: 1024px) {
  body::after {
    background-image: url("../images/backgrounds/noise/noise_1024.webp");
  }
}

@media (min-width: 1280px) {
  body::after {
    background-image: url("../images/backgrounds/noise/noise_1280.webp");
  }
}

@media (min-width: 1600px) {
  body::after {
    background-image: url("../images/backgrounds/noise/noise_1600.webp");
  }
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 20px 20px 0;
}

header {
  width: 100vw;
  height: 100vh;
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav ul {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 70px;
  margin: 0;
  padding: 0;
}

nav a {
  font-family: "PF DinDisplay Pro", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0;
  text-align: center;
  text-transform: capitalize;
  color: var(--text-white);
  text-decoration: none;
  transition: color 0.3s ease;
}

nav a:hover {
  color: var(--accent-papaya);
}

nav button {
  background-color: var(--accent-papaya);
  border: 0;
  border-radius: 6px;
  font-family: "PF DinDisplay Pro", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 17px;
  line-height: 100%;
  letter-spacing: 0.07em;
  text-align: center;
  text-transform: uppercase;
  color: var(--bg-primary);
  width: 230px;
  height: 41px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

nav button:hover {
  background-color: var(--accent-papaya-dark);
}

.hamburger-menu {
  display: none;
}

@media (min-width: 640px) {
  .hamburger-menu {
    display: none !important;
  }

  .mobile-menu-overlay {
    display: none !important;
  }
}

.logo {
  width: 322px;
  height: auto;
}

#hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: calc(100vh - 80px);
  position: relative;
}

.hero-content {
  flex: 1;
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  padding-top: 120px;
  height: 100%;
  position: relative;
  left: 100px;
  min-width: 766px;
}

.hero-content h1 {
  font-family: "AA Higherup", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 140px;
  line-height: 104%;
  letter-spacing: 0.14em;
  text-align: right;
  text-transform: uppercase;
  color: var(--text-white);
  margin-bottom: 60px;
}

.hero-subtitle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
}

.hero-content h2 {
  font-family: "AA Higherup", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 48px;
  line-height: 100%;
  letter-spacing: 0.14em;
  text-align: right;
  text-transform: uppercase;
  color: var(--accent-papaya);
  margin: 0;
  flex: 1;
}

.hero-content p {
  font-family: "PF DinDisplay Pro", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #fff;
  margin: 0;
  text-align: left;
  flex: 1;
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image img {
  height: 70vh;
  position: relative;
  left: 100px;
  top: -50px;
}

.hero-button {
  background-color: var(--accent-papaya);
  border: 0;
  border-radius: 6px;
  font-family: "PF DinDisplay Pro", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 17px;
  line-height: 100%;
  letter-spacing: 0.07em;
  text-align: center;
  text-transform: uppercase;
  color: var(--bg-primary);
  width: 311px;
  height: 61px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
}

.hero-button:hover {
  background-color: var(--accent-papaya-dark);
}

.waves-decoration {
  position: absolute;
  bottom: 0;
  transform: translate(-50%, 40%);
  left: 50%;
  width: 200vw;
  height: auto;
  z-index: -1;
}

@font-face {
  font-family: "PF DinDisplay Pro";
  src: url("../assets/fonts/PFDinDisplayPro-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "PF DinDisplay Pro";
  src: url("../assets/fonts/PFDinDisplayPro-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "PF DinDisplay Pro";
  src: url("../assets/fonts/PFDinDisplayPro-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "PF DinDisplay Pro";
  src: url("../assets/fonts/PFDinDisplayPro-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "AA Higherup";
  src: url("../assets/fonts/AAHigherup.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}

.years-section {
  padding: 80px 0;
}

.years-content {
  display: flex;
  justify-content: center;
  align-items: center;
}

.years-left h2 {
  font-family: "AA Higherup", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 170px;
  line-height: 104%;
  letter-spacing: 0.06em;
  text-align: center;
  text-transform: uppercase;
  color: var(--accent-papaya);
}

.years-right h3 {
  font-family: "AA Higherup", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 80px;
  line-height: 104%;
  letter-spacing: 0.14em;
  text-align: right;
  text-transform: uppercase;
  color: var(--text-white);
}

.years-right h4 {
  font-family: "AA Higherup", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 69.3px;
  line-height: 104%;
  letter-spacing: 0.14em;
  text-align: right;
  text-transform: uppercase;
  color: var(--text-white);
}

.cards-section {
  padding: 80px 0;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.card {
  border-radius: 30px;
  padding: 40px;
  backdrop-filter: blur(50px);
}

.card h3 {
  font-family: "PF DinDisplay Pro", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 36px;
  line-height: 120%;
  letter-spacing: 0;
  margin-bottom: 30px;
  background: linear-gradient(90deg, #f5f5f5 0, #8f8f8f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.card-2 h3 {
  color: black !important;
  background: none !important;
  -webkit-background-clip: none !important;
  -webkit-text-fill-color: black !important;
  background-clip: none !important;
}

.card-3 h3 {
  color: #46474e !important;
  background: none !important;
  -webkit-background-clip: none !important;
  -webkit-text-fill-color: #46474e !important;
  background-clip: none !important;
}

.card p {
  font-family: "PF DinDisplay Pro", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 24px;
  line-height: 24px;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 20px;
}

.card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.card-2 ul {
  color: #393a3f !important;
}

.card li {
  font-family: "PF DinDisplay Pro", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 24px;
  line-height: 24px;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 12px;
  position: relative;
  padding-left: 20px;
}

.card li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: rgba(255, 255, 255, 0.6);
}

.card-1,
.card-4 {
  background: var(--glass-gradient);
  border-image: radial-gradient(
      50% 50% at 50% 50%,
      #000 0,
      rgba(102, 102, 102, 0) 100%
    )
    1;
  position: relative;
}

.card-1::before,
.card-4::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 30px;
  padding: 3px;
}

.card-2 {
  background: #fff;
  border: 3px solid #fff;
  position: relative;
}

.card-2::after {
  content: "";
  position: absolute;
  width: 208%;
  height: 200%;
  bottom: -120%;
  right: -122%;
  transform: rotate(353deg);
  background-image: url(../images/backgrounds/Fancy_bg.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 10;
  opacity: 1;
}

.card-2 p,
.card-2 li {
  color: #393a3f;
  opacity: 0.6;
}

.card-2 li::before {
  color: #393a3f;
  opacity: 0.6;
}

.card-3 {
  background: var(--papaya-secondary);
  border: 3px solid var(--papaya-secondary);
}

.card-3 h3,
.card-3 p,
.card-3 li {
  color: #46474e;
}

.card-3 li::before {
  color: #46474e;
}

#consultation {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 0;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}

#consultation::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  background-image: url("../images/backgrounds/Office/office_768.webp");
  background-image: image-set(
    url("../images/backgrounds/Office/office_768.webp") 1x,
    url("../images/backgrounds/Office/office_1024.webp") 1.33x,
    url("../images/backgrounds/Office/office_1280.webp") 1.67x,
    url("../images/backgrounds/Office/office_1600.webp") 2.08x,
    url("../images/backgrounds/Office/office_2048.webp") 2.67x,
    url("../images/backgrounds/Office/office_4096.webp") 5.33x
  );
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -2;
}

#consultation::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000de;
  z-index: -1;
}

.consultation-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  width: 100%;
  gap: 60px;
}

.consultation-text {
  flex: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.bonus-cloud {
  background-color: var(--accent-papaya);
  color: #46474e;
  padding: 12px 24px;
  border-radius: 12px;
  font-family: "PF DinDisplay Pro", sans-serif;
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  margin-bottom: 30px;
  box-shadow: 0 4px 8px rgba(255, 140, 66, 0.3);
  position: relative;
  width: 122px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bonus-cloud::before {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid var(--accent-papaya);
}

.consultation-text h3 {
  font-family: "PF DinDisplay Pro", sans-serif;
  font-weight: 500;
  font-size: 48px;
  line-height: 115.99999999999999%;
  letter-spacing: 0;
  text-align: center;
  background: var(--white-papaya-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.consultation-text p {
  font-family: "PF DinDisplay Pro", sans-serif;
  font-weight: 400;
  font-size: 32px;
  line-height: 120%;
  letter-spacing: 0;
  text-align: center;
  color: #fff;
  margin-bottom: 40px;
}

.consultation-form {
  flex: 1;
  max-width: 500px;
}

.feedback-form {
  background: var(--glass-gradient);
  border-image-source: radial-gradient(
      50% 50% at 50% 50%,
      #000 0,
      rgba(102, 102, 102, 0) 100%
    ),
    radial-gradient(
      50% 50% at 0 0,
      rgba(255, 255, 255, 0) 0,
      rgba(255, 255, 255, 0.2) 100%
    );
  border-image-slice: 1;
  border-radius: 30px;
  backdrop-filter: blur(50px);
  padding: 40px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.feedback-form h4 {
  font-family: "PF DinDisplay Pro", sans-serif;
  font-weight: 500;
  font-size: 32px;
  line-height: 120%;
  letter-spacing: 0;
  text-align: center;
  color: #fff;
  margin-bottom: 30px;
}

.feedback-form label {
  display: block;
  font-family: "PF DinDisplay Pro", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  margin-bottom: 8px;
}

.feedback-form input {
  width: 100%;
  height: 75px;
  padding: 15px 20px;
  background: #f3f0f0;
  border: 0;
  border-radius: 8px;
  color: #000000de;
  font-family: "PF DinDisplay Pro", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 160%;
  letter-spacing: 0;
  text-align: center;
  vertical-align: middle;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.feedback-form input::placeholder {
  color: #8f8f92;
  text-align: center;
}

.feedback-form button {
  width: 100%;
  height: 75px;
  background-color: var(--accent-papaya);
  color: #46474e;
  border: 0;
  border-radius: 8px;
  padding: 15px 20px;
  font-family: "PF DinDisplay Pro", sans-serif;
  font-weight: 700;
  font-size: 17px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-bottom: 20px;
}

.feedback-form button:hover {
  background-color: var(--accent-papaya-dark);
}

.feedback-form .checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 15px;
  cursor: pointer;
}

.feedback-form .checkbox-label input[type="checkbox"] {
  display: none;
}

.feedback-form .checkmark {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  position: relative;
  flex-shrink: 0;
  margin-top: 2px;
  background: var(--accent-papaya);
  border-color: var(--accent-papaya);
}

.feedback-form .checkbox-label input[type="checkbox"]:checked + .checkmark {
  background: var(--accent-papaya);
  border-color: var(--accent-papaya);
}

.feedback-form
  .checkbox-label
  input[type="checkbox"]:checked
  + .checkmark::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #000;
  font-size: 12px;
  font-weight: bold;
}

.feedback-form .checkbox-text {
  font-family: "PF DinDisplay Pro", sans-serif;
  font-weight: 300;
  font-size: 11px;
  color: #8f8f92;
  line-height: 1.4;
}

.feedback-form .checkbox-text a {
  color: var(--accent-papaya);
  text-decoration: none;
}

.feedback-form .checkbox-text a:hover {
  text-decoration: underline;
}

#packages {
  position: relative;
  padding: 80px 0;
}

.packages-background {
  position: absolute;
  top: 0;
  left: -20%;
  width: 150%;
  height: 100%;
  z-index: -1;
}

.services-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#packages h2 {
  font-family: "PF DinDisplay Pro", sans-serif;
  font-weight: 700;
  font-style: Bold;
  font-size: 40px;
  line-height: 113.99999999999999%;
  letter-spacing: 0;
  text-align: center;
  background: var(--white-papaya-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 60px;
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.packages-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.packages-top-row {
  display: flex;
  gap: 20px;
  max-width: 100%;
  justify-content: space-between;
}

.package-card {
  background: #e8e8e8;
  border-radius: 30px;
  padding: 40px;
  height: 710px;
  display: flex;
  flex-direction: column;
  position: relative;
  color: #46474e;
  flex: 1;
}

.package-card.package-air {
  flex: 1;
  background-image: url("../images/backgrounds/bg-1,2.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.package-card.package-pulse {
  position: relative;
  overflow: hidden;
  flex: 1;
  background: #fff;
  z-index: 0;
}

.package-card.package-pulse::after {
  content: "";
  position: absolute;
  bottom: -120px;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/backgrounds/bg-1,2.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transform: rotate(63deg);
  z-index: -1;
}

.package-card.package-drive {
  flex: 1;
  background: linear-gradient(
    356deg,
    rgba(255, 140, 66, 0.25) -0.73%,
    rgba(255, 255, 255, 0.15) 30%,
    rgba(255, 140, 66, 0.08) 70%,
    rgba(153, 153, 153, 0) 102.79%
  );
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 30px;
  backdrop-filter: blur(50px);
  color: #fff;
  box-shadow: 0 8px 32px rgba(255, 140, 66, 0.1);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.package-card.package-drive::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 3px;
  border-radius: inherit;
  background: linear-gradient(
    315deg,
    rgba(255, 140, 66, 0.4) 0%,
    rgba(255, 255, 255, 0.2) 25%,
    rgba(255, 140, 66, 0.15) 50%,
    rgba(255, 255, 255, 0.1) 75%,
    rgba(255, 140, 66, 0.3) 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: -1;
}

.package-label {
  position: absolute;
  top: 15px;
  left: 30px;
  background: #fff;
  color: #46474e;
  padding: 8px 20px;
  border-radius: 8px;
  font-family: "PF DinDisplay Pro", sans-serif;
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.package-card.package-pulse .package-label {
  background: #e8e8e8;
  color: #46474e;
}

.package-card.package-drive .package-label {
  background: var(--accent-papaya);
  color: #46474e;
}

.package-caption-small {
  font-size: calc(1em - 4px);
}

.hero-title-main {
  font-size: calc(1em + 2px);
}

.hero-title-sub {
  font-size: calc(1em - 4px);
}

.package-card .package-header {
  margin-bottom: 30px;
  margin-top: 20px;
}

.package-card h3 {
  margin-bottom: 15px;
  overflow-wrap: break-word;
  word-break: break-word;
}

.package-card .package-name {
  font-family: "PF DinDisplay Pro", sans-serif;
  font-weight: 500;
  font-style: Medium;
  font-size: 40px;
  line-height: 140%;
  letter-spacing: 0;
  color: #46474e;
}

.package-card .package-caption {
  font-family: "PF DinDisplay Pro", sans-serif;
  font-weight: 500;
  font-style: Medium;
  font-size: 24px;
  line-height: 140%;
  letter-spacing: 0;
  color: #46474e;
}

.package-card.package-drive .package-name,
.package-card.package-drive .package-caption {
  color: #fff;
}

.package-card .timing {
  font-family: "PF DinDisplay Pro", sans-serif;
  font-weight: 500;
  font-style: Medium;
  font-size: 24px;
  line-height: 140%;
  letter-spacing: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #46474e;
}

.package-card.package-drive .timing {
  color: #fff;
}

.timer-icon {
  width: 24px;
  height: 24px;
}

.package-card h4 {
  font-family: "PF DinDisplay Pro", sans-serif;
  font-weight: 300;
  font-style: Light Italic;
  font-size: 24px;
  line-height: 140%;
  letter-spacing: 0;
  margin-bottom: 20px;
  color: #46474e;
}

.package-card.package-drive h4 {
  color: #fff;
}

.package-card ul {
  list-style: none;
  flex-grow: 1;
}

.package-card li {
  font-family: "PF DinDisplay Pro", sans-serif;
  font-weight: 500;
  font-style: Medium;
  font-size: 20px;
  line-height: 115.99999999999999%;
  letter-spacing: 0;
  margin-bottom: 15px;
  color: #46474e;
  position: relative;
  padding-left: 25px;
}

.package-card.package-drive li {
  color: #fff;
}

.package-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background: #46474e;
  border-radius: 50%;
}

.package-card.package-drive li::before {
  background: #fff;
}

.package-card.package-dominant {
  height: 710px;
  flex-direction: row;
  align-items: flex-start;
  gap: 40px;
  max-width: none;
  min-width: auto;
  padding: 30px 40px;
  background: #fff;
  background-image: url("../images/backgrounds/bg-4.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.package-card.package-dominant .package-label {
  background: #e8e8e8;
  color: #46474e;
}

.package-card.package-dominant .package-header {
  flex: 1;
  margin: 0;
  max-width: 300px;
  margin-left: 200px;
}

.package-card.package-dominant h4 {
  flex: 1;
  max-width: 200px;
}

.package-card.package-dominant .package-content {
  flex: 2;
  display: flex;
  flex-direction: column;
  max-width: 400px;
}

.package-card.package-dominant ul {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

#stages {
  position: relative;
  padding: 80px 0;
  overflow: visible;
}

.stages-background {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 100%;
  background-image: url("../images/backgrounds/stages_bg.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 1;
  z-index: -1;
  pointer-events: none;
}

#stages h2 {
  font-family: "PF DinDisplay Pro", sans-serif;
  font-weight: 700;
  font-style: Bold;
  font-size: 40px;
  line-height: 113.99999999999999%;
  letter-spacing: 0;
  text-align: center;
  background: var(--white-papaya-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 60px;
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.stages-content {
  display: flex;
  gap: 80px;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
}

.stages-left {
  flex: 1;
  max-width: 400px;
}

.stages-left h3 {
  font-family: "PF DinDisplay Pro", sans-serif;
  font-weight: 700;
  font-style: Bold;
  font-size: 36px;
  line-height: 100%;
  letter-spacing: 0;
  color: #fff;
  margin-bottom: 20px;
}

.stages-left p {
  font-family: "PF DinDisplay Pro", sans-serif;
  font-weight: 400;
  font-style: Regular;
  font-size: 20px;
  line-height: 160%;
  letter-spacing: 0;
  color: #fff;
}

.stages-right {
  flex: 2;
}

.stages-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.stage-card {
  display: flex;
  align-items: center;
  gap: 30px;
  background: var(--glass-gradient);
  border-image-source: radial-gradient(
      50% 50% at 50% 50%,
      #000 0,
      rgba(102, 102, 102, 0) 100%
    ),
    radial-gradient(
      50% 50% at 0 0,
      rgba(255, 255, 255, 0) 0,
      rgba(255, 255, 255, 0.2) 100%
    );
  border-image-slice: 1;
  backdrop-filter: blur(50px);
  border-radius: 30px;
  padding: 30px;
  width: 790px;
  height: 230px;
}

.stage-number-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 120px;
}

.stage-number {
  font-family: "PF DinDisplay Pro", sans-serif;
  font-weight: 400;
  font-style: Regular;
  font-size: 96px;
  line-height: 100%;
  letter-spacing: 0;
  text-align: center;
  color: var(--accent-papaya);
  font-variant-numeric: lining-nums proportional-nums;
}

.stage-caption {
  font-family: "PF DinDisplay Pro", sans-serif;
  font-weight: 500;
  font-style: Medium;
  font-size: 15px;
  line-height: 100%;
  letter-spacing: 0;
  text-align: center;
  color: #fff;
  margin-top: 10px;
}

.stage-divider {
  width: 1.5px;
  height: 220px;
  background-color: rgba(255, 255, 255, 0.2);
  margin: 0 20px;
}

.stage-content {
  flex: 1;
}

.stage-content h4 {
  font-family: "PF DinDisplay Pro", sans-serif;
  font-weight: 700;
  font-style: Bold;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: 0;
  color: #fff;
  margin-bottom: 15px;
}

.stage-content p {
  font-family: "PF DinDisplay Pro", sans-serif;
  font-weight: 300;
  font-style: Light;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0;
  color: #fff;
}

#portfolio {
  position: relative;
  padding: 80px 0;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  overflow: hidden;
}

#portfolio h2 {
  font-family: "PF DinDisplay Pro", sans-serif;
  font-weight: 700;
  font-style: Bold;
  font-size: 40px;
  line-height: 113.99999999999999%;
  letter-spacing: 0;
  text-align: center;
  background: var(--white-papaya-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 60px;
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.portfolio-slider {
  width: 100vw;
  overflow: hidden;
  position: relative;
}

.swiper {
  width: 100%;
  height: auto;
}

.swiper-slide {
  width: 100%;
  height: 590px;
}

.swiper-slide a {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

#questions {
  position: relative;
  padding: 80px 0;
  overflow: visible;
  contain: layout style;
  transform: translateZ(0);
}

.questions-background {
  position: absolute;
  top: -45vh;
  left: 50%;
  transform: translateX(-50%) scaleX(-1) rotate(177deg);
  width: 100vw;
  height: 1800px;
  background: url("../images/backgrounds/stages_bg.svg") no-repeat;
  background-size: cover;
  opacity: 1;
  z-index: -1;
  pointer-events: none;
  will-change: transform;
  transform-style: preserve-3d;
  backface-visibility: hidden;
}

#questions h2 {
  font-family: "PF DinDisplay Pro", sans-serif;
  font-weight: 700;
  font-style: Bold;
  font-size: 40px;
  line-height: 113.99999999999999%;
  letter-spacing: 0;
  text-align: center;
  background: var(--white-papaya-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 60px;
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.questions-content {
  display: flex;
  gap: 80px;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
}

.questions-left {
  flex: 1;
}

.questions-right {
  flex: 1;
}

.accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.accordion-item {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.accordion-header {
  width: 100%;
  padding: 24px 32px;
  background: white;
  border: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.accordion-header:hover {
  background: #f8f9fa;
}

.accordion-header span {
  color: #46474e;
  font-family: "PF DinDisplay Pro", sans-serif;
  font-weight: 700;
  font-style: Light;
  font-size: 23px;
  line-height: 140%;
  letter-spacing: 0;
  text-align: left;
}

.accordion-icon {
  width: 25px !important;
  height: 25px !important;
  transition: all 0.3s ease;
}

.accordion-icon.expanded {
  display: none;
  width: 25px !important;
  height: 25px !important;
}

.accordion-header svg {
  width: 25px !important;
  height: 25px !important;
  min-width: 25px !important;
  min-height: 25px !important;
  max-width: 25px !important;
  max-height: 25px !important;
}

.accordion-header svg.accordion-icon {
  width: 25px !important;
  height: 25px !important;
  min-width: 25px !important;
  min-height: 25px !important;
  max-width: 25px !important;
  max-height: 25px !important;
}

.accordion-header svg.accordion-icon.expanded {
  width: 25px !important;
  height: 25px !important;
  min-width: 25px !important;
  min-height: 25px !important;
  max-width: 25px !important;
  max-height: 25px !important;
}

.accordion-header svg.accordion-icon.collapsed {
  width: 25px !important;
  height: 25px !important;
  min-width: 25px !important;
  min-height: 25px !important;
  max-width: 25px !important;
  max-height: 25px !important;
}

.accordion-item.active .accordion-icon.collapsed {
  display: none;
}

.accordion-item.active .accordion-icon.expanded {
  display: block;
}

.accordion-content {
  height: 0;
  overflow: hidden;
  transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0 32px;
  background: white;
  will-change: height;
  contain: layout style paint;
  transform: translateZ(0);
}

.accordion-item.active .accordion-content {
  padding: 0 32px 24px;
}

.accordion-content p {
  color: #46474e;
  font-family: "PF DinDisplay Pro", sans-serif;
  font-weight: 300;
  font-style: Light;
  font-size: 17px;
  line-height: 24px;
  letter-spacing: 0;
  margin: 0;
  padding-top: 16px;
}

.questions-form {
  background: var(--glass-gradient);
  backdrop-filter: blur(50px);
  border-radius: 24px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 450px;
  margin: 0 auto;
}

.questions-form h3 {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-style: Bold;
  font-size: 28px;
  line-height: 120%;
  letter-spacing: 0;
  text-align: center;
  color: white;
  margin: 0;
  margin-bottom: 24px;
}

.form-subtitle {
  font-family: "PF DinDisplay Pro", sans-serif;
  font-weight: 300;
  font-style: Light;
  font-size: 23px;
  line-height: 100%;
  letter-spacing: 0;
  text-align: center;
  color: white;
  margin: 0;
  margin-bottom: 28px;
}

.form-subtitle-2 {
  font-family: "PF DinDisplay Pro", sans-serif;
  font-weight: 400;
  font-style: Regular;
  font-size: 17px;
  line-height: 100%;
  letter-spacing: 0;
  text-align: center;
  color: #f3f0f0;
  margin: 0;
  margin-bottom: 16px;
}

.contact-methods {
  background-color: #44464a;
  border-radius: 16px;
  padding: 6px 12px;
  display: flex;
  justify-content: space-between;
  gap: 0;
  flex-wrap: nowrap;
  margin-bottom: 32px;
  border: 0;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 16px;
  border-radius: 12px;
  background: transparent;
  font-weight: 600;
  font-size: 15px;
  color: #cfcfcf;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease;
}

.contact-method:hover {
  background: rgba(255, 255, 255, 0.1);
}

.contact-method.active {
  background-color: white;
  color: #46474e;
}

.contact-method input[type="radio"] {
  display: none;
}

.method-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.contact-method.active svg path {
  stroke: var(--accent-papaya);
}

.contact-method:nth-child(2).active svg path {
  stroke: #25d366;
}

.contact-method:nth-child(3).active svg path {
  stroke: #08c;
}

.method-text {
  font-family: "PF DinDisplay Pro", sans-serif;
  font-weight: 700;
  font-style: bold;
  font-size: 12px;
  line-height: 100%;
  letter-spacing: 0;
  text-align: center;
  color: #cfcfcf;
  transition: color 0.2s ease;
}

.contact-method.active .method-text {
  color: #46474e;
}

.questions-form input[type="text"],
.questions-form input[type="tel"] {
  height: 75px;
  padding: 0 20px;
  border: 0;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-family: "PF DinDisplay Pro", sans-serif;
  font-weight: 400;
  font-style: Regular;
  font-size: 19px;
  line-height: 160%;
  letter-spacing: 0;
  text-align: center;
  vertical-align: middle;
  outline: 0;
  transition: all 0.3s ease;
}

.questions-form input[type="text"]:focus,
.questions-form input[type="tel"]:focus {
  outline: 2px solid var(--accent-papaya);
  outline-offset: 2px;
  background: rgba(255, 255, 255, 0.15);
}

.questions-form input::placeholder {
  color: rgba(255, 255, 255, 0.6);
  font-family: "PF DinDisplay Pro", sans-serif;
  font-weight: 400;
  font-style: Regular;
  font-size: 19px;
  line-height: 160%;
  letter-spacing: 0;
  text-align: center;
  vertical-align: middle;
}

.questions-form button {
  background-color: var(--accent-papaya);
  color: var(--bg-primary);
  border: 0;
  height: 75px;
  padding: 0 32px;
  border-radius: 6px;
  font-family: "PF DinDisplay Pro", sans-serif;
  font-weight: 700;
  font-style: Medium;
  font-size: 17px;
  line-height: 100%;
  letter-spacing: 0.07em;
  text-align: center;
  vertical-align: bottom;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-top: 16px;
}

.questions-form button:hover {
  background-color: var(--accent-papaya-dark);
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  display: none;
}

.checkmark {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  position: relative;
  flex-shrink: 0;
  margin-top: 2px;
  background: var(--accent-papaya);
  border-color: var(--accent-papaya);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
  background: var(--accent-papaya);
  border-color: var(--accent-papaya);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #000;
  font-size: 12px;
  font-weight: bold;
}

.checkbox-text {
  font-family: "PF DinDisplay Pro", sans-serif;
  font-weight: 300;
  font-size: 11px;
  color: #8f8f92;
  line-height: 1.4;
}

.checkbox-text a {
  color: var(--accent-papaya);
  text-decoration: none;
}

.checkbox-text a:hover {
  text-decoration: underline;
}

#download {
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  background: #000000de;
  height: 680px;
  overflow: hidden;
}

.download-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/backgrounds/document_bg/document_bg_1024.webp");
  background-image: image-set(
    url("../images/backgrounds/document_bg/document_bg_1024.webp") 1x,
    url("../images/backgrounds/document_bg/document_bg_1280.webp") 1.25x,
    url("../images/backgrounds/document_bg/document_bg_1600.webp") 1.56x,
    url("../images/backgrounds/document_bg/document_bg_2048.webp") 2x,
    url("../images/backgrounds/document_bg/document_bg_4096.webp") 4x
  );
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}

.laptop-image {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 100%;
  width: auto;
  z-index: 1;
}

.download-content {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  max-width: 700px;
}

#download .container {
  position: relative;
  height: 100%;
  padding: 80px 0;
}

#download .bonus-cloud {
  background-color: var(--accent-papaya);
  color: #46474e;
  padding: 12px 24px;
  border-radius: 12px;
  font-family: "PF DinDisplay Pro", sans-serif;
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  margin-bottom: 30px;
  box-shadow: 0 4px 8px rgba(169, 254, 2, 0.3);
  position: relative;
  width: 122px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}

#download .bonus-cloud::before {
  content: "";
  position: absolute;
  bottom: -7px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid var(--accent-papaya);
  z-index: -1;
}

#download h2 {
  font-family: "PF DinDisplay Pro", sans-serif;
  font-weight: 500;
  font-style: Medium;
  font-size: 48px;
  line-height: 100%;
  letter-spacing: 0;
  text-align: center;
  background: var(--white-papaya-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 40px;
  display: block;
  width: fit-content;
  color: white;
}

.download-button {
  background-color: var(--accent-papaya);
  border: 0;
  border-radius: 6px;
  font-family: "PF DinDisplay Pro", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 17px;
  line-height: 100%;
  letter-spacing: 0.07em;
  text-align: center;
  text-transform: uppercase;
  color: var(--bg-primary);
  width: 311px;
  height: 61px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.download-button:hover {
  background-color: var(--accent-papaya-dark);
}

footer {
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  background: linear-gradient(143.1deg, #000 17.08%, #535353 111.3%);
  overflow: hidden;
  padding: 80px 0 40px;
}

.footer-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/backgrounds/footer_bg.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

.footer-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-left {
  flex: 1;
  color: white;
}

.footer-left .bonus-cloud {
  background-color: var(--accent-papaya);
  color: #46474e;
  padding: 12px 24px;
  border-radius: 12px;
  font-family: "PF DinDisplay Pro", sans-serif;
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  margin-bottom: 30px;
  box-shadow: 0 4px 8px rgba(169, 254, 2, 0.3);
  position: relative;
  width: 122px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}

.footer-left .bonus-cloud::before {
  content: "";
  position: absolute;
  bottom: -7px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid var(--accent-papaya);
  z-index: -1;
}

.footer-left h2 {
  font-family: "PF DinDisplay Pro", sans-serif;
  font-weight: 500;
  font-size: 48px;
  line-height: 100%;
  letter-spacing: 0;
  text-align: center;
  background: var(--white-papaya-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 30px;
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  color: white;
}

.footer-left p {
  font-family: "PF DinDisplay Pro", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 160%;
  letter-spacing: 0;
  color: #e8e8e8;
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
}

.footer-right {
  flex: 1;
  display: flex;
  justify-content: center;
}

.footer-form {
  background: var(--glass-gradient);
  border-image-slice: 1;
  backdrop-filter: blur(50px);
  border-radius: 30px;
  padding: 40px;
  width: 100%;
  max-width: 400px;
}

.footer-form h3 {
  font-family: "PF DinDisplay Pro", sans-serif;
  font-weight: 500;
  font-size: 32px;
  line-height: 120%;
  letter-spacing: 0;
  text-align: center;
  color: #fff;
  margin-bottom: 30px;
}

.footer-form input,
.footer-form textarea {
  width: 100%;
  height: 75px;
  padding: 16px 20px;
  margin-bottom: 15px;
  border: 0;
  border-radius: 8px;
  background: white;
  color: #000000de;
  font-family: "PF DinDisplay Pro", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 160%;
  letter-spacing: 0;
  text-align: center;
  vertical-align: middle;
  transition: all 0.3s ease;
}

.footer-form input:focus,
.footer-form textarea:focus {
  outline: 0;
  box-shadow: 0 0 0 2px var(--accent-papaya);
}

.footer-form input::placeholder,
.footer-form textarea::placeholder {
  color: #8f8f92;
}

.footer-form button {
  width: 100%;
  height: 75px;
  background-color: var(--accent-papaya);
  border: 0;
  border-radius: 6px;
  font-family: "PF DinDisplay Pro", sans-serif;
  font-weight: 700;
  font-size: 17px;
  line-height: 100%;
  letter-spacing: 0.07em;
  text-align: center;
  text-transform: uppercase;
  color: #46474e;
  padding: 16px 20px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  vertical-align: bottom;
}

.footer-form button:hover {
  background-color: var(--accent-papaya-dark);
}

.footer-form .checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 15px;
  cursor: pointer;
}

.footer-form .checkbox-label input[type="checkbox"] {
  display: none;
}

.footer-form .checkmark {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  position: relative;
  flex-shrink: 0;
  margin-top: 2px;
  background: var(--accent-papaya);
  border-color: var(--accent-papaya);
}

.footer-form .checkbox-label input[type="checkbox"]:checked + .checkmark {
  background: var(--accent-papaya);
  border-color: var(--accent-papaya);
}

.footer-form
  .checkbox-label
  input[type="checkbox"]:checked
  + .checkmark::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #000;
  font-size: 12px;
  font-weight: bold;
}

.footer-form .checkbox-text {
  font-family: "PF DinDisplay Pro", sans-serif;
  font-weight: 300;
  font-size: 11px;
  color: #8f8f92;
  line-height: 1.4;
}

.footer-form .checkbox-text a {
  color: var(--accent-papaya);
  text-decoration: none;
}

.footer-form .checkbox-text a:hover {
  text-decoration: underline;
}

.footer-bottom {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-left-bottom {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-logo img {
  height: 60px;
  width: auto;
}

footer address {
  color: #e8e8e8;
  font-style: normal;
  font-family: "PF DinDisplay Pro", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 160%;
  letter-spacing: 0;
}

footer address p {
  margin-bottom: 10px;
}

footer address a {
  color: var(--accent-papaya);
  text-decoration: none;
  font-weight: 700;
  font-size: 36px;
  line-height: 100%;
  letter-spacing: 0;
}

footer address a:hover {
  text-decoration: underline;
}

footer small {
  color: #e8e8e880;
  font-family: "PF DinDisplay Pro", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 160%;
  letter-spacing: 0;
}

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    gap: 40px;
  }

  .footer-left h2 {
    font-size: 32px;
  }

  .footer-form h3 {
    font-size: 24px;
  }

  .footer-left-bottom {
    text-align: center;
  }

  footer address a {
    font-size: 28px;
  }
}

@media (min-width: 1200px) and (max-width: 1440px) {
  #consultation .consultation-content {
    padding-left: 40px;
    padding-right: 40px;
  }

  #download .laptop-image {
    left: -100px;
  }

  #download .download-content {
    right: -60px;
  }
}

@media (min-width: 960px) and (max-width: 1199px) {
  .logo {
    width: 220px;
    height: auto;
  }

  nav button {
    width: 220px;
    height: 40px;
    font-size: 14px;
  }

  .hero-content {
    width: 60%;
    padding-right: 60px;
    padding-left: 20px;
    left: 0;
    min-width: 680px;
  }

  .hero-image {
    width: 30%;
    padding-left: 20px;
  }

  .hero-content h1 {
    font-size: 100px;
    line-height: 110%;
  }

  .hero-content h2 {
    font-size: 48px;
  }

  .hero-content p {
    font-size: 20px;
  }

  .hero-button {
    width: 280px;
    height: 55px;
    font-size: 15px;
  }

  .years-left h2 {
    font-size: 150px;
  }

  .years-right h3 {
    font-size: 70px;
  }

  .years-right h4 {
    font-size: 56px;
    letter-spacing: 0.174em;
  }

  .card h3 {
    font-size: 32px;
  }

  .card p {
    font-size: 22px;
  }

  .card li {
    font-size: 20px;
  }

  #consultation .consultation-content {
    padding-left: 40px;
    padding-right: 40px;
  }

  #consultation {
    padding: 25px 0;
    min-height: 700px;
  }

  .consultation-text h3 {
    font-size: 36px;
  }

  .consultation-text p {
    font-size: 18px;
  }

  .feedback-form h4 {
    font-size: 20px;
  }

  .feedback-form input {
    height: 50px;
    font-size: 16px;
  }

  .feedback-form button {
    height: 50px;
    font-size: 15px;
  }

  #packages h2 {
    font-size: 32px;
  }

  .package-card h3 {
    font-size: 18px;
  }

  .package-card h4 {
    font-size: 20px;
  }

  .package-card li {
    font-size: 16px;
  }

  .package-card ul {
    font-size: 16px;
  }

  .package-card .timing {
    font-size: 14px;
  }

  #stages h2 {
    font-size: 32px;
  }

  .stages-left {
    display: none;
  }

  .stages-right {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
  }

  .stage-card {
    height: 180px;
  }

  .stage-content h4 {
    font-size: 24px;
  }

  .stage-content p {
    font-size: 18px;
  }

  #portfolio h2 {
    font-size: 32px;
  }

  .accordion {
    min-width: 515px;
    gap: 10px;
  }

  #questions h2 {
    font-size: 32px;
  }

  #questions {
    padding: 40px 0;
  }

  .questions-content {
    gap: 20px;
  }

  .questions-form {
    padding: 30px;
    margin-top: 200px;
    max-width: 400px;
  }

  .questions-form h3 {
    font-size: 24px;
    margin-bottom: 16px;
  }

  .form-subtitle {
    font-size: 20px;
    margin-bottom: 16px;
  }

  .form-subtitle-2 {
    font-size: 15px;
    margin-bottom: 12px;
  }

  .questions-form input[type="text"],
  .questions-form input[type="tel"] {
    height: 60px;
    font-size: 16px;
    margin-bottom: 12px;
  }

  .questions-form button {
    height: 55px;
    font-size: 15px;
    margin-bottom: 12px;
  }

  #download .laptop-image {
    left: -130px;
  }

  #download .download-content {
    max-width: 500px;
    right: -30px;
  }

  #download h2 {
    font-size: 36px;
  }

  .download-button {
    width: 280px;
    height: 55px;
    font-size: 15px;
  }

  .footer-left h2 {
    font-size: 36px;
  }

  .footer-left p {
    font-size: 16px;
  }

  .footer-form h3 {
    font-size: 20px;
  }

  .footer-form input,
  .footer-form textarea {
    height: 50px;
    font-size: 16px;
  }

  .footer-form button {
    height: 55px;
    font-size: 15px;
  }

  .container {
    padding-left: 10px;
    padding-right: 10px;
  }

  #hero {
    padding: 80px 0;
    margin-bottom: 80px;
  }

  #consultation {
    padding: 80px 0;
    margin-bottom: 80px;
  }

  #packages {
    padding: 80px 0;
    margin-bottom: 80px;
  }

  #stages {
    padding: 80px 0;
    margin-bottom: 80px;
  }

  #portfolio {
    padding: 80px 0;
    margin-bottom: 80px;
  }

  #questions {
    padding: 80px 0;
    margin-bottom: 80px;
  }

  #download {
    padding: 0;
    height: 580px;
  }

  footer {
    padding: 80px 0 40px;
  }

  #packages h2 {
    margin-bottom: 30px;
  }

  #stages h2 {
    margin-bottom: 30px;
  }

  #portfolio h2 {
    margin-bottom: 30px;
  }

  #questions h2 {
    margin-bottom: 30px;
  }

  #download h2 {
    margin-bottom: 30px;
  }

  .cards-grid {
    gap: 20px;
  }

  .packages-grid {
    gap: 30px;
  }

  .packages-top-row {
    gap: 20px;
  }

  .stages-list {
    gap: 20px;
  }

  .questions-content {
    gap: 20px;
    padding: 0;
  }

  .footer-content {
    gap: 40px;
  }
}

@media (min-width: 640px) and (max-width: 959px) {
  header {
    min-height: 755px;
  }

  .logo {
    width: 195px;
  }

  nav ul {
    gap: 50px;
  }

  nav button {
    display: none;
  }

  #hero {
    padding: 60px 0;
    text-align: center;
    min-height: 755px;
  }

  .hero-content {
    width: 100%;
    padding: 0;
    order: 2;
    left: 0;
    min-width: 0;
    height: 100%;
    max-width: 750px;
  }

  .hero-image {
    width: 100%;
    order: 1;
    margin-bottom: 40px;
    position: absolute;
    left: 0;
    transform: translateX(10%);
    height: 80%;
  }

  .hero-image::after {
    content: "";
    position: absolute;
    bottom: 0;
    transform: translateY(50%);
    left: 0;
    width: 100%;
    height: 200%;
    background: linear-gradient(
      180deg,
      rgba(8, 13, 17, 0) 0,
      #080d11 40%,
      #080d11 60%,
      rgba(8, 13, 17, 0) 100%
    );
    z-index: 1;
  }

  .hero-image img {
    height: 100%;
  }

  .hero-content h1 {
    font-size: 110px;
    line-height: 110%;
    margin-bottom: 0;
    margin-top: 45%;
  }

  .hero-content h2 {
    font-size: 32px;
    margin-bottom: 15px;
    margin-right: 10px;
  }

  .hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    margin-left: 50px;
  }

  .hero-button {
    width: 280px;
    height: 55px;
    font-size: 15px;
    z-index: 100;
  }

  .waves-decoration {
    z-index: 1;
    height: 500px;
    width: auto;
    object-fit: cover;
  }

  .years-left h2 {
    font-size: 96px;
  }

  .years-right h3 {
    font-size: 48px;
  }

  .years-right h4 {
    font-size: 34px;
    letter-spacing: 0.23em;
  }

  .card {
    padding: 20px;
  }

  .card h3 {
    font-size: 24px;
    margin-bottom: 15px;
  }

  .card p {
    font-size: 18px;
    line-height: 1.3;
    margin-bottom: 15px;
  }

  .card li {
    font-size: 16px;
    line-height: 1.2;
    margin-bottom: 8px;
  }

  .card ul {
    margin-bottom: 15px;
  }

  #consultation {
    min-height: 0;
    height: 550px;
    padding: 40px 0;
  }

  #consultation .consultation-content {
    padding-left: 20px;
    padding-right: 20px;
  }

  .consultation-text h3 {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .consultation-text p {
    font-size: 15px;
    line-height: 1.4;
    margin-bottom: 20px;
  }

  .feedback-form {
    padding: 25px;
  }

  .feedback-form h4 {
    font-size: 16px;
    margin-bottom: 15px;
  }

  .feedback-form input {
    height: 40px;
    font-size: 14px;
    margin-bottom: 12px;
  }

  .feedback-form button {
    height: 40px;
    font-size: 13px;
  }

  #packages h2 {
    font-size: 24px;
    margin-bottom: 40px;
  }

  .packages-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .packages-top-row {
    display: contents;
  }

  .package-card {
    padding: 20px;
    height: 200px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
  }

  .package-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
  }

  .package-content {
    flex: 1;
  }

  .package-card.package-dominant .package-header {
    margin-left: 0;
    align-self: anchor-center;
  }

  .package-card .package-header {
    width: 220px;
  }

  .package-card .package-name {
    font-size: 30px;
  }

  .package-card h4 {
    font-size: 16px;
    margin-bottom: 8px;
    margin-top: 0;
  }

  .package-card ul {
    font-size: 13px;
    margin-bottom: 12px;
    margin-top: 0;
  }

  .package-card h3 {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .package-card h4 {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .package-card li {
    font-size: 13px;
    line-height: 1.3;
    margin-bottom: 6px;
  }

  .package-card ul {
    font-size: 13px;
    margin-bottom: 12px;
  }

  .package-card .timing {
    font-size: 11px;
  }

  #stages h2 {
    font-size: 28px;
    margin-bottom: 40px;
  }

  .stages-left {
    display: none;
  }

  .stages-content {
    padding: 0;
  }

  .stage-number {
    line-height: 90%;
  }

  .stage-caption {
    margin-top: 0;
  }

  .stage-divider {
    margin: 0;
  }

  .stages-right {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
  }

  .stages-list {
    gap: 10px;
    padding: 0 10px;
  }

  .stage-card {
    width: 100%;
    height: 140px;
    padding: 15px;
  }

  .stage-content h4 {
    font-size: 18px;
    margin-bottom: 8px;
  }

  .stage-content p {
    font-size: 14px;
    line-height: 1.3;
  }

  #portfolio h2 {
    font-size: 28px;
    margin-bottom: 40px;
  }

  .questions-background {
    top: -20vh;
  }

  #questions h2 {
    font-size: 24px;
    margin-bottom: 30px;
  }

  #questions {
    padding: 40px 0;
  }

  .questions-content {
    gap: 20px;
    padding: 0;
  }

  .questions-form {
    padding: 20px;
    margin-top: 0;
    max-width: 300px;
    margin-top: 200px;
  }

  .questions-form h3 {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .form-subtitle {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .form-subtitle-2 {
    font-size: 12px;
    margin-bottom: 8px;
  }

  .questions-form input[type="text"],
  .questions-form input[type="tel"] {
    height: 45px;
    font-size: 14px;
    margin-bottom: 8px;
  }

  .questions-form input::placeholder {
    font-size: 12px;
  }

  .questions-form button {
    height: 45px;
    font-size: 13px;
    margin-bottom: 8px;
  }

  .accordion {
    gap: 8px;
  }

  .accordion-item {
    margin-bottom: 8px;
  }

  .accordion-header {
    padding: 12px 15px;
  }

  .accordion-header span {
    font-size: 16px;
  }

  .accordion-item.active .accordion-content {
    padding: 15px;
  }

  .accordion-content p {
    font-size: 14px;
    line-height: 1.4;
    margin: 0;
  }

  .contact-methods {
    gap: 5px;
    margin-bottom: 15px;
    padding: 5px 5px;
  }

  .contact-method {
    width: 85px;
    height: 30px;
    padding: 4px;
  }

  .method-text {
    font-size: 11px;
  }

  #download .laptop-image {
    left: -80px;
    height: 80%;
  }

  #download .download-content {
    max-width: 350px;
    right: -30px;
    top: 150px;
  }

  #download h2 {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .download-button {
    width: 220px;
    height: 45px;
    font-size: 13px;
  }

  .footer-left h2 {
    font-size: 32px;
  }

  .footer-left p {
    font-size: 15px;
  }

  .footer-form h3 {
    font-size: 18px;
  }

  .footer-form input,
  .footer-form textarea {
    height: 45px;
    font-size: 15px;
  }

  .footer-form button {
    height: 50px;
    font-size: 14px;
  }

  .container {
    padding-left: 10px;
    padding-right: 10px;
    position: relative;
    z-index: 100;
  }

  #hero {
    padding: 40px 0;
    margin-bottom: 40px;
  }

  #consultation {
    padding: 40px 0;
    margin-bottom: 40px;
  }

  #packages {
    padding: 40px 0;
    margin-bottom: 40px;
  }

  #stages {
    padding: 40px 0;
    margin-bottom: 40px;
  }

  #portfolio {
    padding: 40px 0;
    margin-bottom: 40px;
  }

  #questions {
    padding: 40px 0;
    margin-bottom: 40px;
  }

  #download {
    padding: 0;
    height: 500px;
  }

  footer {
    padding: 40px 0 20px;
  }

  .cards-grid {
    gap: 12px;
  }

  .packages-grid {
    gap: 20px;
  }

  .packages-top-row {
    gap: 12px;
  }

  .stages-list {
    gap: 12px;
  }

  .questions-content {
    gap: 8px;
    padding: 0;
  }

  .footer-content {
    gap: 20px;
  }
}

.fancy-card {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.fancy-card::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 3px;
  border-radius: inherit;
  background: var(--fancy-border-gradient);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: -1;
}

#hero::after,
.years-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
  width: 100vw;
  height: 730px;
  background: linear-gradient(
    180deg,
    rgba(8, 13, 17, 0) 0,
    #080d11 52.09%,
    rgba(8, 13, 17, 0) 100%
  );
  pointer-events: none;
  z-index: -12;
}

#hero,
.years-section,
#consultation,
#packages {
  position: relative;
  z-index: 5;
}

@media (max-width: 639px) {
  nav {
    position: relative;
    justify-content: space-between;
    align-items: center;
  }

  .logo {
    width: 195px;
    height: auto;
  }

  .nav-menu {
    display: none;
  }

  .nav-button {
    display: none;
  }

  .hamburger-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    background: 0;
    border: 0;
    cursor: pointer;
    border-radius: 12px;
    transition: background-color 0.3s ease;
    width: 40px;
    height: 40px;
  }

  .hamburger-menu:hover {
    background-color: rgba(169, 254, 2, 0.1);
  }

  .hamburger-menu svg {
    width: 32px;
    height: 32px;
  }

  .mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(8, 13, 17, 0.3);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }

  .mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
  }

  .mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 0 8px 20px;
    background: var(--bg-primary);
    background-image: radial-gradient(
        190.08% 41.99% at 207.81% -3.24%,
        rgba(255, 255, 255, 0.2) 0,
        rgba(0, 0, 0, 0) 100%
      ),
      radial-gradient(
        324.16% 47.29% at -183.41% 72.53%,
        rgba(255, 255, 255, 0.2) 0,
        rgba(0, 0, 0, 0) 100%
      );
    background-repeat: no-repeat, no-repeat;
    background-size: cover, cover;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1001;
  }

  .mobile-menu-overlay.active .mobile-menu {
    right: 0;
  }

  .mobile-menu::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("../images/backgrounds/bg-one-raw.svg");
    background-repeat: repeat-y;
    background-size: 100% auto;
    opacity: 1;
    pointer-events: none;
    z-index: -1;
  }

  .mobile-menu::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("../images/backgrounds/noise 03.png");
    background-repeat: repeat;
    opacity: 0.3;
    pointer-events: none;
    z-index: -1;
  }

  .mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 8px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 40px;
  }

  .mobile-logo {
    width: 195px;
    height: auto;
  }

  .mobile-menu-close {
    background: 0;
    border: 0;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: background-color 0.3s ease;
  }

  .mobile-menu-close:hover {
    background-color: rgba(169, 254, 2, 0.1);
  }

  .mobile-nav-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
    justify-content: center;
  }

  .mobile-nav-menu li {
    text-align: center;
  }

  .mobile-nav-menu a {
    font-family: "PF DinDisplay Pro", sans-serif;
    font-weight: 300;
    font-size: 28px;
    line-height: 100%;
    color: var(--text-white);
    text-decoration: none;
    transition: color 0.3s ease;
    text-transform: capitalize;
  }

  .mobile-nav-menu a:hover {
    color: var(--accent-papaya);
  }

  .mobile-nav-button {
    background-color: var(--accent-papaya);
    border: 0;
    border-radius: 8px;
    font-family: "PF DinDisplay Pro", sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0.07em;
    text-align: center;
    text-transform: uppercase;
    color: var(--bg-primary);
    width: 100%;
    height: 60px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 40px;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }

  .mobile-nav-button:hover {
    background-color: var(--accent-papaya-dark);
  }

  #hero {
    padding: 60px 0;
    text-align: center;
    min-height: 645px;
  }

  .hero-content {
    width: 100%;
    padding: 0;
    order: 2;
    left: 0;
    min-width: 0;
    height: 100%;
    max-width: 750px;
  }

  .hero-image {
    width: 100%;
    order: 1;
    margin-bottom: 40px;
    position: absolute;
    left: 0;
    transform: translateX(10%);
    height: 80%;
  }

  .hero-image::after {
    content: "";
    position: absolute;
    bottom: 0;
    transform: translateY(50%);
    left: 0;
    width: 100%;
    height: 200%;
    background: linear-gradient(
      180deg,
      rgba(8, 13, 17, 0) 0,
      #080d11 40%,
      #080d11 60%,
      rgba(8, 13, 17, 0) 100%
    );
    z-index: 1;
  }

  .hero-image img {
    height: 100%;
  }

  .hero-content h1 {
    font-size: 86px;
    line-height: 110%;
    margin-bottom: 0;
    margin-top: 45%;
  }

  .hero-content h2 {
    font-size: 28px;
    margin-bottom: 15px;
    margin-right: 10px;
  }

  .hero-content p {
    font-size: 15px;
    margin-bottom: 30px;
    margin-left: 20px;
  }

  .hero-button {
    width: 280px;
    height: 55px;
    font-size: 14px;
    z-index: 100;
    border-radius: 12px;
  }

  .waves-decoration {
    z-index: 1;
    height: 500px;
    width: auto;
    object-fit: cover;
  }

  .years-content {
    margin-bottom: 20px;
  }

  .years-left h2 {
    font-size: 72px;
    line-height: 100%;
  }

  .years-right h3 {
    font-size: 36px;
    line-height: 90%;
  }

  .years-right h4 {
    font-size: 26px;
    line-height: 110%;
    letter-spacing: 5.7px;
  }

  .cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .card {
    width: 100%;
    padding: 16px 12px;
  }

  .card h3 {
    font-size: 18px;
    line-height: 120%;
    margin-bottom: 15px;
  }

  .card p {
    font-size: 14px;
    line-height: 140%;
    margin-bottom: 15px;
  }

  .card li {
    font-size: 14px;
    line-height: 110%;
    margin-bottom: 8px;
    padding-left: 10px;
  }

  .card ul {
    margin-bottom: 0;
    font-size: 14px;
  }

  .card {
    border-radius: 12px;
  }

  .container {
    padding: 10px 10px 0;
  }

  #download .container {
    padding: 0;
  }

  #hero {
    padding: 40px 0 60px;
    margin-bottom: 40px;
    min-height: 728px;
  }

  #consultation {
    padding: 40px 0;
    margin-bottom: 40px;
    min-height: 0;
    height: 650px;
  }

  #packages {
    padding: 40px 0 0;
  }

  #stages {
    padding: 40px 0 0;
  }

  #portfolio {
    padding: 40px 0 0;
  }

  #questions {
    padding: 40px 0 0;
    margin-bottom: 40px;
  }

  #download {
    padding: 0;
    height: 480px;
  }

  footer {
    padding: 40px 0 20px;
  }

  #packages h2,
  #stages h2,
  #portfolio h2,
  #questions h2,
  #download h2 {
    font-size: 28px;
    line-height: 120%;
    margin-bottom: 30px;
  }

  .consultation-content {
    flex-direction: column;
    gap: 30px;
    padding: 10px;
  }

  .consultation-text {
    text-align: center;
  }

  .consultation-text h3 {
    font-size: 24px;
    line-height: 120%;
    margin-bottom: 15px;
  }

  .consultation-text p {
    font-size: 16px;
    line-height: 140%;
    margin-bottom: 0;
  }

  .feedback-form,
  .questions-form,
  .footer-form {
    padding: 25px 20px;
    border-radius: 8px;
    max-width: 320px;
  }

  .feedback-form h4,
  .questions-form h3,
  .footer-form h3 {
    font-size: 16px;
    line-height: 120%;
    margin-bottom: 20px;
  }

  .feedback-form input {
    margin-bottom: 10px;
  }

  .feedback-form input,
  .questions-form input[type="text"],
  .questions-form input[type="tel"],
  .footer-form input,
  .footer-form textarea {
    height: 55px;
    font-size: 14px;
    padding: 0 15px;
    border-radius: 8px;
  }

  .feedback-form button,
  .questions-form button,
  .footer-form button {
    height: 55px;
    font-size: 14px;
    border-radius: 8px;
    margin-bottom: 0;
  }

  .accordion-header span {
    font-size: 16px;
    line-height: 120%;
  }

  .accordion-content p {
    font-size: 16px;
    line-height: 140%;
  }

  .contact-methods {
    gap: 12px;
    margin-bottom: 25px;
  }

  .contact-method {
    padding: 12px 16px;
  }

  .method-text {
    font-size: 14px;
  }

  #download .laptop-image {
    display: none;
  }

  #download .download-content {
    text-align: center;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
  }

  #download h2 {
    font-size: 28px;
    line-height: 120%;
  }

  .download-button {
    width: 280px;
    height: 55px;
    font-size: 14px;
    border-radius: 12px;
  }

  .footer-left h2 {
    font-size: 28px;
    line-height: 120%;
    margin-bottom: 20px;
  }

  .footer-left p {
    font-size: 16px;
    line-height: 140%;
    margin-bottom: 30px;
  }

  .packages-grid {
    gap: 10px;
  }

  .packages-top-row {
    display: contents;
  }

  .package-card {
    padding: 16px;
    height: 180px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
    border-radius: 12px;
  }

  .package-label {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 5px 15px;
  }

  .package-content {
    flex: 1;
  }

  .package-card.package-dominant .package-header {
    margin-left: 0;
    align-self: anchor-center;
  }

  .package-card .package-header {
    width: 180px;
    margin-top: 20px;
    margin-bottom: 0;
  }

  .package-card .package-name {
    font-size: 20px;
  }

  .package-card .package-caption {
    font-size: 16px;
  }

  .package-card h4 {
    font-size: 14px;
    margin-bottom: 6px;
    margin-top: 0;
  }

  .package-card ul {
    font-size: 11px;
    margin-bottom: 10px;
    margin-top: 0;
  }

  .package-card h3 {
    font-size: 12px;
    margin-bottom: 8px;
  }

  .package-card h4 {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .package-card li {
    font-size: 11px;
    line-height: 1.3;
    margin-bottom: 4px;
    padding-left: 10px;
  }

  .package-card ul {
    font-size: 11px;
    margin-bottom: 10px;
  }

  .package-card .timing {
    font-size: 12px;
  }

  .package-card li::before {
    width: 4px;
    height: 4px;
    top: 6px;
  }

  .package-card.package-dominant {
    padding: 16px;
    gap: 10px;
  }

  .stages-left {
    display: none;
  }

  .stages-content {
    padding: 0;
  }

  .stages-right {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
  }

  .stages-list {
    gap: 10px;
    padding: 0;
  }

  .stage-card {
    width: 100%;
    height: 120px;
    padding: 12px;
    border-radius: 12px;
    gap: 10px;
  }

  .stage-content h4 {
    font-size: 16px;
    margin-bottom: 6px;
  }

  .stage-content p {
    font-size: 13px;
    line-height: 1.3;
  }

  .stage-number-container {
    min-width: 80px;
  }

  .stage-number {
    font-size: 64px;
    line-height: 90%;
  }

  .stage-caption {
    margin-top: 0;
  }

  .stage-divider {
    margin: 0;
  }

  .cards-grid {
    gap: 12px;
  }

  .questions-content {
    flex-direction: column;
    gap: 30px;
    padding: 0;
  }

  .questions-left {
    order: 1;
  }

  .questions-right {
    order: 2;
  }

  .questions-form {
    padding: 16px;
    margin-top: 0;
    max-width: none;
    border-radius: 8px;
    max-width: 320px;
  }

  .questions-form h3 {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .form-subtitle {
    font-size: 13px;
    margin-bottom: 8px;
  }

  .form-subtitle-2 {
    font-size: 11px;
    margin-bottom: 6px;
  }

  .questions-form input[type="text"],
  .questions-form input[type="tel"] {
    height: 55px;
    font-size: 14px;
    margin-bottom: 6px;
    border-radius: 8px;
  }

  .questions-form input::placeholder {
    font-size: 14px;
  }

  .questions-form button {
    height: 55px;
    font-size: 14px;
    margin-bottom: 6px;
    border-radius: 8px;
  }

  .accordion {
    gap: 6px;
  }

  .accordion-item {
    margin-bottom: 6px;
    border-radius: 12px;
  }

  .accordion-header {
    padding: 16px;
    border-radius: 12px;
  }

  .accordion-header span {
    font-size: 14px;
  }

  .accordion-item.active .accordion-content {
    padding-left: 16px;
    padding-right: 16px;
  }

  .accordion-item .accordion-content {
    padding-left: 16px;
    padding-right: 16px;
  }

  .accordion-content p {
    font-size: 13px;
    line-height: 1.4;
    margin: 0;
    padding-top: 0;
  }

  .contact-methods {
    gap: 4px;
    margin-bottom: 12px;
    padding: 4px 4px;
  }

  .contact-method {
    width: 85px;
    height: 28px;
    padding: 8px;
    border-radius: 12px;
  }

  .method-text {
    font-size: 10px;
  }

  .footer-form textarea {
    height: 55px;
    font-size: 14px;
    padding: 0 15px;
    border-radius: 8px;
    resize: none;
    padding-top: 12px;
  }

  .footer-form textarea::placeholder {
    padding-top: 7px;
    font-size: 14px;
  }

  .footer-content {
    gap: 20px;
  }
}

@media (max-width: 480px) {
  nav {
    position: relative;
    justify-content: space-between;
    align-items: center;
  }

  .logo {
    width: 200px;
    height: auto;
  }

  .nav-menu {
    display: none;
  }

  .nav-button {
    display: none;
  }

  .hamburger-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    background: 0;
    border: 0;
    cursor: pointer;
    border-radius: 8px;
    transition: background-color 0.3s ease;
    width: 40px;
    height: 40px;
  }

  .hamburger-menu:hover {
    background-color: rgba(169, 254, 2, 0.1);
  }

  .hamburger-menu svg {
    width: 40px;
    height: 40px;
  }

  .mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(8, 13, 17, 0.3);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }

  .mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
  }

  .mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 0 8px 20px;
    background: var(--bg-primary);
    background-image: radial-gradient(
        190.08% 41.99% at 207.81% -3.24%,
        rgba(255, 255, 255, 0.2) 0,
        rgba(0, 0, 0, 0) 100%
      ),
      radial-gradient(
        324.16% 47.29% at -183.41% 72.53%,
        rgba(255, 255, 255, 0.2) 0,
        rgba(0, 0, 0, 0) 100%
      );
    background-repeat: no-repeat, no-repeat;
    background-size: cover, cover;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1001;
  }

  .mobile-menu-overlay.active .mobile-menu {
    right: 0;
  }

  .mobile-menu::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("../images/backgrounds/bg-one-raw.svg");
    background-repeat: repeat-y;
    background-size: 100% auto;
    opacity: 1;
    pointer-events: none;
    z-index: -1;
  }

  .mobile-menu::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("../images/backgrounds/noise 03.png");
    background-repeat: repeat;
    opacity: 0.3;
    pointer-events: none;
    z-index: -1;
  }

  .mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 8px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 40px;
  }

  .mobile-logo {
    width: 160px;
    height: auto;
  }

  .mobile-menu-close {
    background: 0;
    border: 0;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: background-color 0.3s ease;
  }

  .mobile-menu-close:hover {
    background-color: rgba(169, 254, 2, 0.1);
  }

  .mobile-nav-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
    justify-content: center;
  }

  .mobile-nav-menu li {
    text-align: center;
  }

  .mobile-nav-menu a {
    font-family: "PF DinDisplay Pro", sans-serif;
    font-weight: 300;
    font-size: 24px;
    line-height: 100%;
    color: var(--text-white);
    text-decoration: none;
    transition: color 0.3s ease;
    text-transform: capitalize;
  }

  .mobile-nav-menu a:hover {
    color: var(--accent-papaya);
  }

  .mobile-nav-button {
    background-color: var(--accent-papaya);
    border: 0;
    border-radius: 8px;
    font-family: "PF DinDisplay Pro", sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0.07em;
    text-align: center;
    text-transform: uppercase;
    color: var(--bg-primary);
    width: 100%;
    height: 56px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 40px;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }

  .mobile-nav-button:hover {
    background-color: var(--accent-papaya-dark);
  }

  #hero {
    padding: 40px 0;
    text-align: center;
    min-height: 600px;
  }

  .hero-subtitle {
    flex-direction: column;
    width: 100%;
  }

  .hero-content {
    width: 100%;
    padding: 0;
    order: 2;
    left: 0;
    min-width: 0;
    height: 100%;
    max-width: 100%;
    position: relative;
    z-index: 1000;
  }

  .hero-image {
    width: 100%;
    order: 1;
    margin-bottom: 30px;
    position: absolute;
    left: 0;
    transform: translateX(5%);
    height: 70%;
    z-index: 1;
  }

  .hero-image::after {
    content: "";
    position: absolute;
    bottom: 0;
    transform: translateY(50%);
    left: -20vw;
    width: 200vw;
    height: 200%;
    background: linear-gradient(
      180deg,
      rgba(8, 13, 17, 0) 0,
      #080d11 40%,
      #080d11 60%,
      rgba(8, 13, 17, 0) 100%
    );
    z-index: 2;
  }

  .hero-image img {
    height: 100%;
  }

  .hero-content h1 {
    font-size: 58px;
    line-height: 100%;
    margin-bottom: 0;
    margin-top: 70%;
    z-index: 4;
    position: relative;
  }

  .hero-content h2 {
    font-size: 24px;
    margin-bottom: 10px;
    margin-right: 5px;
    text-align: right;
    align-self: flex-end;
    width: 50%;
  }

  .hero-content p {
    font-size: 16px;
    margin-bottom: 10px;
    margin-top: 10px;
    margin-left: 10px;
    width: 80%;
    text-align: left;
    align-self: flex-start;
  }

  .hero-button {
    width: 240px;
    height: 48px;
    font-size: 12px;
    z-index: 5;
    position: absolute;
    border-radius: 8px;
    bottom: 30px;
  }

  .waves-decoration {
    z-index: 1;
    height: 400px;
    width: auto;
    object-fit: cover;
  }

  .years-content {
    margin-bottom: 15px;
  }

  .years-left h2 {
    font-size: 56px;
    line-height: 100%;
  }

  .years-right h3 {
    font-size: 28px;
    line-height: 90%;
  }

  .years-right h4 {
    font-size: 20px;
    line-height: 110%;
    letter-spacing: 4.5px;
  }

  .cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .card {
    width: 100%;
    padding: 20px 30px;
    border-radius: 16px;
  }

  .card h3 {
    font-size: 22px;
    line-height: 120%;
    margin-bottom: 12px;
  }

  .card p {
    font-size: 14px;
    line-height: 140%;
    margin-bottom: 12px;
  }

  .card li {
    font-size: 16px;
    line-height: 110%;
    margin-bottom: 10px;
    padding-left: 8px;
  }

  .card ul {
    margin-bottom: 0;
    font-size: 14px;
  }

  .container {
    padding: 8px 16px 0;
  }

  #download .container {
    padding: 0;
  }

  #hero {
    padding: 30px 0 40px;
    margin-bottom: 30px;
  }

  #consultation {
    padding: 30px 0;
    margin-bottom: 30px;
    min-height: 0;
    height: 600px;
  }

  #packages {
    padding: 30px 0 0;
  }

  #stages {
    padding: 30px 0 0;
  }

  #portfolio {
    padding: 30px 0 0;
  }

  #questions {
    padding: 30px 0 0;
    margin-bottom: 30px;
  }

  #download {
    padding: 0;
    height: 400px;
  }

  footer {
    padding: 30px 0 15px;
  }

  #packages h2,
  #stages h2,
  #portfolio h2,
  #questions h2,
  #download h2 {
    font-size: 32px;
    line-height: 120%;
    margin-bottom: 20px;
  }

  #portfolio-title {
    padding-left: 18px;
    padding-right: 18px;
  }

  .consultation-content {
    flex-direction: column;
    gap: 20px;
    padding: 8px;
  }

  .consultation-text {
    text-align: center;
    padding: 0 20px;
  }

  .consultation-text h3 {
    font-size: 20px;
    line-height: 120%;
    margin-bottom: 12px;
  }

  .consultation-text p {
    font-size: 16px;
    line-height: 140%;
    margin-bottom: 0;
  }

  .feedback-form,
  .questions-form,
  .footer-form {
    padding: 20px 30px;
    border-radius: 16px;
    max-width: 300px;
  }

  .feedback-form h4,
  .questions-form h3,
  .footer-form h3 {
    font-size: 20px;
    line-height: 120%;
    margin-bottom: 15px;
  }

  .feedback-form input {
    margin-bottom: 8px;
  }

  .feedback-form input,
  .questions-form input[type="text"],
  .questions-form input[type="tel"],
  .footer-form input,
  .footer-form textarea {
    height: 48px;
    font-size: 12px;
    padding: 0 12px;
    border-radius: 6px;
  }

  .feedback-form button,
  .questions-form button,
  .footer-form button {
    height: 48px;
    font-size: 12px;
    border-radius: 6px;
    margin-bottom: 0;
  }

  .accordion-header span {
    font-size: 14px;
    line-height: 120%;
  }

  .accordion-content p {
    font-size: 12px;
    line-height: 140%;
  }

  .contact-methods {
    gap: 8px;
    margin-bottom: 20px;
  }

  .contact-method {
    padding: 8px 12px;
  }

  .method-text {
    font-size: 12px;
  }

  #download .laptop-image {
    display: none;
  }

  #download .download-content {
    text-align: center;
    padding: 30px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
  }

  #download h2 {
    font-size: 20px;
    line-height: 120%;
    margin-bottom: 60px;
  }

  .download-button {
    width: 240px;
    height: 48px;
    font-size: 12px;
    border-radius: 8px;
  }

  .footer-left h2 {
    font-size: 20px;
    line-height: 120%;
    margin-bottom: 15px;
  }

  .footer-left p {
    font-size: 16px;
    line-height: 140%;
    margin-bottom: 20px;
  }

  .packages-grid {
    gap: 20px;
  }

  .packages-top-row {
    display: contents;
  }

  .package-card {
    padding: 60px 24px 100px;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    border-radius: 20px;
    position: relative;
  }

  .package-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 8px 16px;
    position: absolute;
    top: 16px;
    left: 24px;
    border-radius: 8px;
  }

  .package-content {
    flex: 1;
    width: 100%;
    margin-top: 0;
  }

  .package-card.package-dominant .package-header {
    margin-left: 0;
    align-self: flex-start;
    width: 100%;
    flex: 0 0 auto;
  }

  .package-card .package-header {
    width: 100%;
    margin-top: 0;
    margin-bottom: 0;
  }

  .package-card .package-name {
    font-size: 22px;
  }

  .package-card .package-caption {
    font-size: 16px;
  }

  .package-card h4 {
    font-size: 18px;
    margin-bottom: 8px;
    margin-top: 0;
  }

  .package-card ul {
    font-size: 16px;
    margin-bottom: 12px;
    margin-top: 0;
  }

  .package-card h3 {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .package-card h4 {
    font-size: 18px;
    margin-bottom: 12px;
  }

  .package-card li {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 6px;
    padding-left: 10px;
  }

  .package-card ul {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .package-card .timing {
    font-size: 18px;
  }

  .package-card li::before {
    width: 5px;
    height: 5px;
    top: 8px;
  }

  .package-card.package-dominant {
    padding: 60px 24px 100px;
    gap: 16px;
    display: flex;
    flex-direction: column;
  }

  .package-card.package-dominant .package-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .package-card.package-dominant .package-content > * {
    margin-bottom: 0;
  }

  .stages-left {
    display: none;
  }

  .stages-content {
    padding: 0;
  }

  .stages-right {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
  }

  .stages-list {
    gap: 16px;
    padding: 0;
  }

  .stage-card {
    width: 100%;
    height: auto;
    padding: 24px 20px;
    border-radius: 20px;
    gap: 16px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .stage-number-container {
    min-width: 60px;
    order: 1;
    align-self: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
  }

  .stage-number {
    font-size: 56px;
    line-height: 90%;
  }

  .stage-caption {
    margin-top: 0;
    font-size: 14px;
  }

  .stage-divider {
    margin: 0;
    order: 2;
    width: 100%;
    height: 2px;
  }

  .stage-content {
    order: 3;
    width: 100%;
  }

  .stage-content h4 {
    font-size: 18px;
    margin-bottom: 18px;
    line-height: 1.3;
  }

  .stage-content p {
    font-size: 14px;
    line-height: 1.4;
  }

  .cards-grid {
    gap: 18px;
  }

  .questions-content {
    flex-direction: column;
    gap: 20px;
    padding: 0;
  }

  .questions-left {
    order: 1;
  }

  .questions-right {
    order: 2;
  }

  .questions-form {
    padding: 24px 20px;
    margin-top: 0;
    max-width: none;
    border-radius: 16px;
    max-width: 280px;
  }

  .form-subtitle {
    font-size: 14px;
    margin-bottom: 6px;
  }

  .form-subtitle-2 {
    font-size: 14px;
    margin-bottom: 4px;
  }

  .questions-form input[type="text"],
  .questions-form input[type="tel"] {
    height: 48px;
    font-size: 12px;
    margin-bottom: 4px;
    border-radius: 6px;
  }

  .consultation-form input::placeholder,
  .questions-form input::placeholder,
  .footer-form input::placeholder {
    font-size: 14px;
  }

  .questions-form button {
    height: 48px;
    font-size: 12px;
    margin-bottom: 4px;
    border-radius: 6px;
  }

  .accordion {
    gap: 4px;
  }

  .accordion-item {
    margin-bottom: 6px;
    border-radius: 20px;
  }

  .accordion-header {
    padding: 20px 30px;
    border-radius: 20px;
  }

  .accordion-header span {
    font-size: 16px;
  }

  .accordion-item.active .accordion-content {
    padding-left: 30px;
    padding-right: 30px;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }

  .accordion-item .accordion-content {
    padding-left: 30px;
    padding-right: 30px;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }

  .accordion-content p {
    font-size: 14px;
    line-height: 1.4;
    margin: 0;
    padding-top: 0;
  }

  .contact-methods {
    gap: 3px;
    margin-bottom: 10px;
    padding: 3px 3px;
  }

  .contact-method {
    width: 70px;
    height: 24px;
    padding: 3px;
    border-radius: 8px;
    gap: 2px;
  }

  .method-text {
    font-size: 10px;
  }

  .footer-form textarea {
    height: 48px;
    font-size: 12px;
    padding: 0 12px;
    border-radius: 6px;
    resize: none;
    padding-top: 10px;
  }

  .footer-form textarea::placeholder {
    padding-top: 6px;
    font-size: 12px;
  }

  .footer-content {
    gap: 15px;
    padding-left: 18px;
    padding-right: 18px;
  }

  /* .footer-logo img {
    width: 100%;
  } */

  footer small {
    font-size: 15px;
  }

  .bonus-cloud {
    padding: 8px 16px;
    font-size: 12px;
    width: 80px;
    height: 32px;
  }

  .bonus-cloud::before {
    bottom: -6px;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid var(--accent-papaya);
  }

  #download .bonus-cloud {
    padding: 8px 16px;
    font-size: 12px;
    width: 80px;
    height: 32px;
  }

  #download .bonus-cloud::before {
    bottom: -6px;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid var(--accent-papaya);
  }

  .footer-left .bonus-cloud {
    padding: 8px 16px;
    font-size: 12px;
    width: 80px;
    height: 32px;
  }

  .footer-left .bonus-cloud::before {
    bottom: -6px;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid var(--accent-papaya);
  }

  .card-2::after {
    content: "";
    position: absolute;
    width: 208%;
    height: 85%;
    top: -76%;
    right: -146%;
    transform: rotate(353deg);
    background-image: url("../images/backgrounds/Fancy_bg.svg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 10;
    opacity: 1;
  }
}

.iphone-fieldset,
.portfolio-fieldset,
.laptop-fieldset {
  border: 0;
  margin: 0;
  padding: 0;
  position: relative;
}

.iphone-fieldset legend,
.portfolio-fieldset legend,
.laptop-fieldset legend {
  position: absolute;
  top: -9999px;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.iphone-fieldset picture,
.portfolio-fieldset picture,
.laptop-fieldset picture {
  display: block;
  width: 100%;
  height: 100%;
}

.iphone-fieldset img,
.portfolio-fieldset img,
.laptop-fieldset img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.iphone-fieldset img {
  max-width: 100%;
  height: auto;
}

.laptop-fieldset img {
  width: 100%;
  height: auto;
  max-width: 100%;
}

@media (max-width: 639px) {
  .iphone-fieldset img,
  .portfolio-fieldset img,
  .laptop-fieldset img {
    width: 100%;
    height: auto;
  }
}

@media (min-width: 640px) and (max-width: 959px) {
  .iphone-fieldset img,
  .portfolio-fieldset img,
  .laptop-fieldset img {
    width: 100%;
    height: auto;
  }
}

@media (min-width: 960px) and (max-width: 1199px) {
  .iphone-fieldset img,
  .portfolio-fieldset img,
  .laptop-fieldset img {
    width: 100%;
    height: auto;
  }
}

@media (min-width: 1200px) and (max-width: 1440px) {
  .iphone-fieldset img,
  .portfolio-fieldset img,
  .laptop-fieldset img {
    width: 100%;
    height: auto;
  }
}

@media (min-width: 1024px) {
  .mobile-menu::after {
    background-image: url("../images/backgrounds/noise/noise_1024.webp");
  }
}

@media (min-width: 1280px) {
  .mobile-menu::after {
    background-image: url("../images/backgrounds/noise/noise_1280.webp");
  }
}

@media (min-width: 1600px) {
  .mobile-menu::after {
    background-image: url("../images/backgrounds/noise/noise_1600.webp");
  }
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: #a9fe02;
  color: #000;
  padding: 8px;
  text-decoration: none;
  border-radius: 4px;
  z-index: 10000;
  font-weight: bold;
}

.skip-link:focus {
  top: 6px;
}

button:focus,
input:focus,
textarea:focus,
select:focus,
a:focus {
  outline: 2px solid #a9fe02;
  outline-offset: 2px;
}

@media (prefers-contrast: high) {
  .card,
  .package-card,
  .stage-card,
  .fancy-card {
    border: 2px solid #a9fe02;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.contact-method.active svg path {
  stroke: #a9fe02 !important;
}

.contact-method.active svg path[stroke="#8F8F92"] {
  stroke: #a9fe02 !important;
}

.contact-method.active input[value="whatsapp"] ~ svg path {
  stroke: #25d366 !important;
}

.contact-method.active input[value="telegram"] ~ svg path {
  stroke: #08c !important;
}
