* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}



body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #ffffff;
  background-color: #050509;
}


.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  overflow: hidden;
  color: #ffffff;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: grayscale(10%);
  transform: scale(1.02);
  z-index: -2;
  opacity: 0;
  transition: opacity 2000ms ease-in-out, transform 10000ms ease-out;
  will-change: opacity, transform;
}

.hero__bg.is-active {
  opacity: 1;
  transform: scale(1.07);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.14), transparent 52%),
              linear-gradient(to bottom right, rgba(5, 5, 15, 0.62), rgba(5, 5, 15, 0.72));
  z-index: -1;
}

.hero__content {
  max-width: 1150px;
  width: 100%;
}

.hero__logo {
  position: absolute;
  top: 10vh;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.hero__logo img {
  height: 100px;
  width: auto;
  display: block;
}

.hero__label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px;
  border-radius: 999px;
  background-color: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #cfcfd8;
  margin-bottom: 20px;
}

.hero__label-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffcf71, #ff884b);
  box-shadow: 0 0 0 4px rgba(255, 184, 96, 0.25);
}

.hero__title {
  font-family: "Yeseva One", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(40px, 6vw, 64px);
  line-height: 1.05;
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.hero__title span {
  display: inline-block;
  background: linear-gradient(135deg, #ffcf71, #ff884b, #ffd3a5, #ff8c6b);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: heroTitleGradient 8s ease-in-out infinite alternate;
}

@keyframes heroTitleGradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.hero__subtitle {
  font-size: 16px;
  line-height: 1.6;
  max-width: 580px;
  color: #c4c4d0;
  margin-bottom: 50px;
}

.hero__regions {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #9a9ab2;
  margin-bottom: 32px;
}

.hero__regions strong {
  color: #ffffff;
  font-weight: 500;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-bottom: 28px;
}

.hero__btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #0a0a11;
  background: linear-gradient(135deg, #ffcf71, #ff884b);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.55);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  text-decoration: none;
}

.hero__btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.65);
  background: linear-gradient(135deg, #ffd98e, #ff975f);
}

.hero__btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.55);
}

.hero__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 13px;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: #e4e4f0;
  background-color: rgba(8, 8, 20, 0.7);
  backdrop-filter: blur(8px);
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.hero__btn-secondary:hover {
  background-color: rgba(18, 18, 32, 0.9);
  border-color: rgba(255, 255, 255, 0.45);
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 12px;
  color: #9a9ab2;
}

.hero__meta-item strong {
  display: block;
  font-size: 13px;
  color: #ffffff;
  margin-bottom: 2px;
}

/* -------- PROJECTS SECTION -------- */

.projects {
  position: relative;
  min-height: 100vh;
  padding: 40px 0 40px;
  background-color: #050509;
  display: flex;
  align-items: center;
}

.projects__inner {
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}

.projects__header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.projects__title {
  font-family: "Yeseva One", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.projects__subtitle {
  max-width: 640px;
  font-size: 14px;
  line-height: 1.7;
  color: #b9b9c8;
}

.projects__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.project-card {
  position: relative;
  color: #ffffff;
}

.project-card--wide {
  grid-column: span 2;
}

.project-card__inner {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  padding: 0;
  border: none;
  cursor: pointer;
  border-radius: 18px;
  overflow: hidden;
  background: transparent;
}

.project-card--wide .project-card__inner {
  aspect-ratio: 16 / 9;
}

.project-card__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 700ms ease-out, filter 700ms ease-out;
  filter: grayscale(10%);
}

.project-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px 22px;
  background: linear-gradient(
    to top,
    rgba(3, 3, 10, 0.85),
    rgba(3, 3, 10, 0.2),
    transparent 55%
  );
  opacity: 0;
  transform: translateY(4%);
  transition: opacity 260ms ease-out, transform 260ms ease-out;
}

.project-card__title {
  font-family: "Yeseva One", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 4px;
  background: linear-gradient(135deg, #ffcf71, #ff884b, #ffd3a5, #ff8c6b);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: heroTitleGradient 8s ease-in-out infinite alternate;
}

.project-card__meta {
  font-size: 12px;
  color: #d0d0dd;
}

.project-card__inner:hover .project-card__overlay,
.project-card__inner:focus-visible .project-card__overlay {
  opacity: 1;
  transform: translateY(0);
}

.project-card__inner:hover .project-card__img,
.project-card__inner:focus-visible .project-card__img {
  transform: scale(1.06);
  filter: grayscale(0%);
}

/* Lightbox */

.lightbox {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms ease-out;
  z-index: 1000;
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 3, 10, 0.82);
}

.lightbox__dialog {
  position: relative;
  max-width: min(1100px, 94vw);
  max-height: 88vh;
  margin: 0 16px;
  border-radius: 18px;
  overflow: hidden;
  background-color: #020208;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.8);
  z-index: 1;
}

.lightbox__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background-color: #020208;
}

.lightbox__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(10, 10, 20, 0.8);
  cursor: pointer;
}

.lightbox__close::before,
.lightbox__close::after {
  content: "";
  position: absolute;
  inset: 50%;
  width: 14px;
  height: 1px;
  background-color: #ffffff;
  transform-origin: center;
}

.lightbox__close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.lightbox__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* -------- DEVELOP SECTION -------- */

.develop {
  padding: 80px 20px 88px;
  background-color: #050509;
}

.develop__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.develop__title {
  font-family: "Yeseva One", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  color: #ffffff;
  margin-bottom: 20px;
}

.develop__subtitle {
  max-width: 560px;
  margin: 0 auto 48px;
  font-size: 15px;
  line-height: 1.65;
  color: #b9b9c8;
  text-align: center;
}

.develop__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.develop-card {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.develop-card__trigger {
  width: 100%;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  text-align: left;
}

.develop-card__img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 16px;
  overflow: hidden;
  background-color: #0e0e14;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
  margin-bottom: 18px;
}

.develop-card__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 700ms ease-out, filter 700ms ease-out;
  filter: grayscale(10%);
}

.develop-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    to top,
    rgba(3, 3, 10, 0.85),
    rgba(3, 3, 10, 0.2),
    transparent 55%
  );
  opacity: 0;
  transform: translateY(4%);
  transition: opacity 260ms ease-out, transform 260ms ease-out;
}

.develop-card__cta {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(10, 10, 20, 0.6);
  backdrop-filter: blur(0);
  -webkit-backdrop-filter: blur(0);
  transition: background 0.2s ease, border-color 0.2s ease, backdrop-filter 400ms ease-out, -webkit-backdrop-filter 400ms ease-out;
}

.develop-card__trigger:hover .develop-card__overlay,
.develop-card__trigger:focus-visible .develop-card__overlay {
  opacity: 1;
  transform: translateY(0);
}

.develop-card__trigger:hover .develop-card__img,
.develop-card__trigger:focus-visible .develop-card__img {
  transform: scale(1.06);
  filter: grayscale(0%);
}

.develop-card__trigger:hover .develop-card__cta,
.develop-card__trigger:focus-visible .develop-card__cta {
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  background: rgba(255, 207, 113, 0.2);
  border-color: rgba(255, 207, 113, 0.5);
}

.develop-card__label {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #e4e4f0;
  text-align: center;
  margin: 0;
}

.develop-card__trigger:hover + .develop-card__label,
.develop-card__trigger:focus-visible + .develop-card__label {
  background: linear-gradient(135deg, #ffcf71, #ff884b, #ffd3a5, #ff8c6b);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: heroTitleGradient 8s ease-in-out infinite alternate;
}

/* -------- ABOUT SECTION -------- */

.about {
  padding: 80px 20px 96px;
  background-color: #050509;
}

.about__inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 56px;
  align-items: flex-start;
}

.about__title {
  font-family: "Yeseva One", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 20px;
}

.about__kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 12px;
  margin-bottom: 16px;
  border-radius: 999px;
  background-color: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #cfcfd8;
}

.about__text {
  font-size: 15px;
  line-height: 1.9;
  color: #c4c4d0;
  max-width: 640px;
}

.about__text + .about__text {
  margin-top: 16px;
}

.about__trust-title {
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #9a9ab2;
  margin-bottom: 18px;
}

.about__trust-logos {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.about__trust-item {
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.04), transparent 55%),
              rgba(8, 8, 20, 0.96);
  display: flex;
  align-items: center;
  gap: 16px;
}

.about__trust-logo {
  flex: 0 0 72px;
  height: 56px;
  border-radius: 12px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.about__trust-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.about__trust-caption {
  font-size: 13px;
  color: #e4e4f0;
}

/* -------- CONTACTS SECTION -------- */

.contacts {
  padding: 80px 20px 96px;
  background-color: #050509;
}

.contacts__inner {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.contacts__title {
  font-family: "Yeseva One", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 32px;
}

.contacts__telegram {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffcf71, #ff884b);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.55);
  color: #0a0a11;
  margin-bottom: 24px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.contacts__telegram:hover {
  transform: scale(1.08) translateY(-1px);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.65);
  background: linear-gradient(135deg, #ffd98e, #ff975f);
}

.contacts__telegram-icon {
  width: 32px;
  height: 32px;
}

.contacts__phone {
  display: block;
  font-size: clamp(22px, 3.2vw, 28px);
  font-weight: 500;
  color: #ffffff;
  text-decoration: none;
  letter-spacing: 0.02em;
  margin-bottom: 12px;
  transition: color 0.2s ease;
}

.contacts__phone:hover {
  color: #ffcf71;
}

.contacts__email {
  display: inline-block;
  font-size: 16px;
  color: #b9b9c8;
  text-decoration: none;
  transition: color 0.2s ease;
}

.contacts__email:hover {
  color: #ffcf71;
}

.contacts__order-link {
  display: inline-block;
  margin-top: 20px;
  font-size: 15px;
  font-weight: 500;
  color: #ffcf71;
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}

.contacts__order-link:hover {
  color: #ffd98e;
}

/* Order modal */

.order-modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms ease-out;
  z-index: 1001;
}

.order-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.order-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 3, 10, 0.85);
}

.order-modal__dialog {
  position: relative;
  width: 100%;
  max-width: 440px;
  margin: 0 16px;
  padding: 32px 28px;
  border-radius: 18px;
  background: #0e0e14;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.order-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(20, 20, 30, 0.8);
  cursor: pointer;
  color: #fff;
}

.order-modal__close::before,
.order-modal__close::after {
  content: "";
  position: absolute;
  inset: 50%;
  width: 14px;
  height: 1px;
  background-color: currentColor;
  transform-origin: center;
}

.order-modal__close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.order-modal__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.order-modal__title {
  font-family: "Yeseva One", system-ui, sans-serif;
  font-size: 22px;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 8px;
}

.order-modal__subtitle {
  font-size: 14px;
  color: #9a9ab2;
  margin-bottom: 24px;
}

.order-modal__form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.order-modal__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.order-modal__label {
  font-size: 12px;
  font-weight: 500;
  color: #b9b9c8;
}

.order-modal__input {
  width: 100%;
  padding: 12px 14px;
  font-size: 15px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.order-modal__input::placeholder {
  color: #6a6a80;
}

.order-modal__input:focus {
  outline: none;
  border-color: rgba(255, 207, 113, 0.5);
  background: rgba(255, 255, 255, 0.08);
}

.order-modal__input--area {
  resize: vertical;
  min-height: 80px;
}

.order-modal__submit {
  margin-top: 8px;
  padding: 14px 24px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #0a0a11;
  background: linear-gradient(135deg, #ffcf71, #ff884b);
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.order-modal__submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(255, 140, 75, 0.35);
  background: linear-gradient(135deg, #ffd98e, #ff975f);
}

/* -------- RESPONSIVE -------- */

@media (max-width: 1024px) {
  .hero {
    padding: 32px 20px;
    justify-content: flex-start;
    align-items: center;
  }

  .hero__content {
    max-width: 720px;
  }

  .hero__title {
    font-size: clamp(34px, 5.2vw, 52px);
  }

  .hero__subtitle {
    font-size: 15px;
  }

  .projects__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .project-card--wide {
    grid-column: span 2;
  }

  .develop {
    padding: 56px 20px 64px;
  }

  .develop__cards {
    gap: 20px;
  }

  .about {
    padding: 64px 20px 80px;
  }

  .about__inner {
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
    gap: 40px;
  }

  .contacts {
    padding: 64px 20px 80px;
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 8vh 12px 24px;
    align-items: flex-start;
  }

  .hero__content {
    max-width: 100%;
    margin-top: 18vh;
  }

  .hero__label {
    font-size: 10px;
    padding: 4px 12px;
  }

  .hero__title {
    font-size: clamp(26px, 8vw, 34px);
    line-height: 1.1;
  }

  .hero__subtitle {
    max-width: 100%;
    font-size: 14px;
    margin-bottom: 20px;
  }

  .hero__regions {
    font-size: 11px;
    letter-spacing: 0.12em;
    margin-bottom: 20px;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    margin-bottom: 20px;
  }

  .hero__btn-primary,
  .hero__btn-secondary {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .hero__meta {
    flex-direction: column;
    gap: 10px;
    font-size: 11px;
  }

  .hero__bg {
    transform: scale(1.02);
  }

  .hero__bg.is-active {
    transform: scale(1.04);
  }

  .projects__header {
    margin-bottom: 28px;
  }

  .projects__title {
    font-size: 22px;
  }

  .projects__subtitle {
    font-size: 13px;
  }

  .projects__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .project-card--wide {
    grid-column: span 2;
  }

  .develop {
    padding: 40px 12px 48px;
  }

  .develop__title {
    font-size: 22px;
  }

  .develop__subtitle {
    font-size: 14px;
    margin-bottom: 32px;
  }

  .develop__cards {
    grid-template-columns: 1fr;
    gap: 28px;
    max-width: 340px;
    margin: 0 auto;
  }

  .about {
    padding: 40px 12px 56px;
  }

  .about__inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
  }

  .about__title {
    font-size: 22px;
  }

  .about__text {
    font-size: 14px;
  }

  .contacts {
    padding: 40px 12px 56px;
  }

  .contacts__title {
    font-size: 22px;
    margin-bottom: 24px;
  }

  .contacts__phone {
    font-size: 20px;
  }
}

@media (max-width: 375px) {
  .hero__btn-primary {
    padding: 12px 18px;
    font-size: 12px;
  }

  .hero__btn-secondary {
    padding: 10px 16px;
    font-size: 12px;
  }

  .hero__actions {
    gap: 8px;
  }
}

