.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(5, 8, 22, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(148, 163, 184, 0.25);
}
.header .header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 5px;
  gap: 16px;
}
.header .logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.header .logo .logo__mark {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: radial-gradient(circle at 20% 0, #ffffff 0, #ffffff 25%, #c8c4c4 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #050816;
  font-size: 18px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.45);
}
.header .logo .logo__text-main {
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 15px;
  text-transform: uppercase;
}
.header .logo .logo__text-sub {
  font-size: 11px;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
.header .nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 14px;
}
.header .nav .nav__item {
  position: relative;
}
.header .nav .nav__item--dropdown:hover .nav__dropdown,
.header .nav .nav__item--dropdown .nav__dropdown:focus-within {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.header .nav .nav__item--dropdown:hover .nav__link::after,
.header .nav .nav__item--dropdown .nav__link:focus::after {
  width: 18px;
}
.header .nav .nav__link--with-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.header .nav .nav__link-arrow {
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  align-self: center;
  margin-top: 3px;
  transition: transform 0.2s ease-out;
}
.header .nav .nav__item--dropdown:hover .nav__link-arrow {
  transform: rotate(180deg);
}
.header .nav .nav__dropdown {
  position: absolute;
  top: 100%;
  transform: translateX(-50%) translateY(8px);
  min-width: 420px;
  padding-top: 12px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease-out, visibility 0.2s ease-out, transform 0.2s ease-out;
  z-index: 100;
  pointer-events: none;
}
.header .nav .nav__item--dropdown:hover .nav__dropdown {
  pointer-events: auto;
}
.header .nav .nav__dropdown-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px 0;
  background: rgba(11, 16, 32, 0.98);
  border: 1px solid rgba(148, 163, 184, 0.25);
  border-radius: 18px;
  padding: 8px 6px 10px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(18px);
}
.header .nav .nav__dropdown-link {
  display: block;
  padding: 10px 14px;
  color: #9ca3af;
  font-size: 13px;
  text-decoration: none;
  transition: color 0.2s ease-out, background 0.2s ease-out;
  border-left: 3px solid transparent;
  margin: 0 4px;
  border-radius: 8px;
}
.header .nav .nav__dropdown-link:hover {
  color: #f5f5f7;
  background: rgba(246, 179, 127, 0.12);
  border-left-color: #f6b37f;
}
.header .nav .nav__link {
  position: relative;
  color: #9ca3af;
  transition: color 0.2s ease-out;
}
.header .nav .nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #f6b37f, #ffcf99);
  transition: width 0.2s ease-out;
}
.header .nav .nav__link:hover {
  color: #f5f5f7;
}
.header .nav .nav__link:hover::after {
  width: 18px;
}
.header .header__cta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.header .header__cta .header__phone {
  display: flex;
  flex-direction: column;
  font-size: 11px;
  text-align: right;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.header .header__cta .header__phone span:last-child {
  font-size: 13px;
  color: #f5f5f7;
  font-weight: 500;
  letter-spacing: 0.03em;
}
.header .header__cta .header__phone .header__phone-link span:hover {
  color: #f6b37f;
}
.header .burger {
  display: none;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: rgba(15, 23, 42, 0.9);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
}
.header .burger span,
.header .burger span::before,
.header .burger span::after {
  display: block;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: #e5e7eb;
  position: relative;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.header .burger span::before,
.header .burger span::after {
  content: "";
  position: absolute;
  left: 0;
}
.header .burger span::before {
  top: -5px;
}
.header .burger span::after {
  top: 5px;
}
.header .burger.burger--active span {
  transform: rotate(45deg);
}
.header .burger.burger--active span::before {
  top: 0;
  transform: rotate(90deg);
}
.header .burger.burger--active span::after {
  top: 0;
  opacity: 0;
}
@media (max-width: 1024px) {
  .header .header__inner {
    padding-block: 10px;
  }
  .header .nav {
    position: fixed;
    inset-inline: 16px;
    top: 62px;
    border-radius: 18px;
    border: 1px solid rgba(148, 163, 184, 0.45);
    background: rgba(5, 8, 22, 0.97);
    padding: 10px 14px 12px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    transform-origin: top;
    transform: scaleY(0.9);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.16s ease-out, transform 0.16s ease-out;
  }
  .header .nav.nav--open {
    opacity: 1;
    pointer-events: auto;
    transform: scaleY(1);
  }
  .header .nav .nav__item--dropdown {
    width: 100%;
  }
  .header .nav .nav__link-arrow {
    transform: rotate(0deg);
  }
  .header .nav .nav__item--dropdown.nav__item--open .nav__link-arrow {
    transform: rotate(180deg);
  }
  .header .nav .nav__dropdown {
    position: static;
    transform: none;
    min-width: auto;
    padding: 0;
    padding-left: 12px;
    margin-top: 6px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    border: none;
    transition: opacity 0.2s ease, visibility 0.2s ease, max-height 0.25s ease;
  }
  .header .nav .nav__item--dropdown.nav__item--open .nav__dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    max-height: 400px;
  }
  .header .nav .nav__dropdown-inner {
    display: block;
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid rgba(148, 163, 184, 0.2);
    padding: 6px 0;
  }
  .header .nav .nav__dropdown-link {
    padding: 8px 12px;
    font-size: 12px;
  }
  .header .header__cta {
    display: none;
  }
  .header .burger {
    display: inline-flex;
  }
}

.footer {
  border-top: 1px solid rgba(31, 41, 55, 0.9);
  padding: 18px 0 22px;
  font-size: 11px;
  color: #9ca3af;
}
.footer .footer__inner {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.footer .footer__menus {
  display: flex;
  justify-content: space-between;
  gap: 42px;
  align-items: flex-start;
}
.footer .footer__menu {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.footer .footer__menu-title {
  color: #9ca3af;
  opacity: 0.9;
  margin-bottom: 10px;
}
.footer .footer__menu--contacts .footer__contacts-title {
  color: #f5f5f7;
  opacity: 1;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 10px;
  padding-right: 8px;
  transition: color 0.2s ease-out, opacity 0.2s ease-out;
}
.footer .footer__menu--contacts .footer__contacts-title:hover {
  color: #f5f5f7;
  opacity: 0.95;
}
.footer .footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #f5f5f7;
  margin-bottom: 12px;
}
.footer .footer__logo .logo__mark {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: radial-gradient(circle at 20% 0, #ffffff 0, #ffffff 25%, #c8c4c4 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #050816;
  font-size: 18px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.45);
}
.footer .footer__logo .logo__text-main {
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 15px;
  text-transform: uppercase;
}
.footer .footer__logo .logo__text-sub {
  font-size: 11px;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
.footer .footer__contacts {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 12px;
}
.footer .footer__contacts-title {
  margin-bottom: 0;
}
.footer .footer__contact-phone {
  text-decoration: none;
  color: #f5f5f7;
  font-size: 13px;
  letter-spacing: 0.02em;
  opacity: 0.95;
}
.footer .footer__contact-phone:hover {
  opacity: 1;
}
.footer .footer__contacts-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.footer .footer__social-pill {
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.55);
  font-size: 12px;
  color: #9ca3af;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(15, 23, 42, 0.95);
  text-decoration: none;
  transition: border-color 0.2s ease-out, background 0.2s ease-out, transform 0.2s ease-out;
}
.footer .footer__social-pill .footer__social-pill-icon {
  width: 16px;
  height: 16px;
  display: block;
}
.footer .footer__social-pill:hover {
  border-color: #ffcf99;
  background: #0f172a;
  transform: translateY(-1px);
  color: #f5f5f7;
}
.footer .footer__menu-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer .footer__menu--anchors .footer__menu-nav {
  flex: 1 1 auto;
}
.footer .footer__link {
  text-decoration: none;
  color: #9ca3af;
  opacity: 0.9;
  transition: color 0.2s ease-out, opacity 0.2s ease-out;
}
.footer .footer__link:hover {
  color: #f5f5f7;
  opacity: 1;
}
.footer .footer__policy {
  text-decoration: none;
  color: #9ca3af;
  opacity: 0.9;
  transition: color 0.2s ease-out, opacity 0.2s ease-out;
}
.footer .footer__policy:hover {
  color: #f5f5f7;
  opacity: 1;
}
.footer .footer__policy--bottom {
  margin-top: 16px;
  align-self: flex-start;
}
.footer .footer__menu--services .footer__menu-title--services {
  color: #f5f5f7;
  opacity: 1;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 10px;
  padding-right: 8px;
  transition: color 0.2s ease-out, opacity 0.2s ease-out;
}
.footer .footer__menu--services .footer__menu-title--services:hover {
  color: #f5f5f7;
  opacity: 0.95;
}
.footer .footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer .footer__copy {
  flex: 0 0 auto;
}
.footer .footer__geo {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.footer .footer__geo .dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.3);
}
@media (max-width: 640px) {
  .footer .footer__menus {
    flex-direction: column;
    gap: 12px;
  }
  .footer .footer__bottom {
    justify-content: center;
    text-align: center;
    flex-direction: column;
    gap: 8px;
  }
  .footer .footer__geo {
    justify-content: center;
  }
  .footer .footer__policy--bottom {
    align-self: center;
  }
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.1fr);
  gap: 40px;
  align-items: center;
}
.hero .hero__content .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 10px 4px 10px;
  border-radius: 999px;
  background: radial-gradient(circle at 0 0, rgba(248, 181, 121, 0.2), transparent 65%);
  border: 1px solid rgba(148, 163, 184, 0.5);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #9ca3af;
  margin-bottom: 16px;
}
.hero .hero__content .eyebrow .eyebrow__dot {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: radial-gradient(circle at 20% 0, #ffffff 0, #f6b37f 30%, #8b5cf6 80%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #050816;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.5);
}
.hero .hero__content .hero__title {
  font-size: 42px;
  line-height: 1.07;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.hero .hero__content .hero__title span {
  background: linear-gradient(135deg, #ffcf99, #93c5fd);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero .hero__content .hero__subtitle {
  font-size: 16px;
  color: #9ca3af;
  max-width: 480px;
  margin-bottom: 24px;
}
.hero .hero__content .hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
}
.hero .hero__content .hero__badges .badge {
  padding: 6px 11px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  font-size: 11px;
  color: #9ca3af;
  background: rgba(15, 23, 42, 0.8);
}
.hero .hero__content .hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}
.hero .hero__content .hero__note {
  font-size: 12px;
  color: #9ca3af;
}
.hero .hero__content .hero__note strong {
  color: #ffcf99;
  font-weight: 600;
}
.hero .hero__visual {
  position: relative;
  border-radius: 30px;
  padding: 5px;
  background: radial-gradient(circle at 0 0, rgba(248, 181, 121, 0.18), transparent 70%), radial-gradient(circle at 100% 100%, rgba(129, 140, 248, 0.18), transparent 65%), #050816;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.55);
  border: 1px solid rgba(148, 163, 184, 0.6);
  overflow: hidden;
}
.hero .hero__visual .hero__image-wrap {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  isolation: isolate;
}
.hero .hero__visual .hero__image-wrap .hero__image {
  width: 100%;
  height: 360px;
  object-fit: cover;
  transform: scale(1.04);
  filter: saturate(1.05) contrast(1.05);
}
.hero .hero__visual .hero__image-wrap .hero__image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 8, 22, 0.75), transparent 55%);
  z-index: 1;
}
.hero .hero__visual .hero__image-wrap .hero__tag {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 7px 11px;
  border-radius: 999px;
  font-size: 11px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.6);
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  z-index: 2;
}
.hero .hero__visual .hero__image-wrap .hero__floating {
  position: absolute;
  left: 20px;
  bottom: 22px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hero .hero__visual .hero__image-wrap .hero__floating .hero__stat-card {
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(5, 8, 22, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.45);
  font-size: 11px;
  color: #9ca3af;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  backdrop-filter: blur(10px);
}
.hero .hero__visual .hero__image-wrap .hero__floating .hero__stat-card strong {
  color: #f9fafb;
  font-size: 13px;
}
.hero .hero__visual .hero__image-wrap .hero__floating .hero__stat-card .hero__stat-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 5px rgba(34, 197, 94, 0.25);
}
.hero .hero__visual .hero__image-wrap .hero__floating .hero__pill {
  margin-left: auto;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.85);
  border: 1px dashed rgba(148, 163, 184, 0.6);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #9ca3af;
}
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: minmax(0, 1fr);
  }
  .hero .hero__visual {
    order: -1;
  }
  .hero .hero__visual .hero__image-wrap .hero__image {
    height: 300px;
  }
}
@media (max-width: 768px) {
  .hero .hero__content .hero__title {
    font-size: 30px;
  }
  .hero .hero__content .hero__subtitle {
    font-size: 14px;
  }
  .hero .hero__visual .hero__image-wrap .hero__image {
    height: 260px;
  }
  .hero .hero__content .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }
}

.section--services .services-grid.services-grid--cards .services-card--link {
  display: block;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease-out, box-shadow 0.2s ease-out, border-color 0.2s ease-out;
}
.section--services .services-grid.services-grid--cards .services-card--link:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.7);
  border-color: rgba(246, 179, 127, 0.4);
}
.section--services .services-grid.services-grid--cards .services-card--link:hover .card__arrow {
  transform: translateX(4px);
}
.section--services .services-grid.services-grid--cards .services-card--link:hover .services-card__media img {
  transform: scale(1.06);
  filter: saturate(1.08) contrast(1.05);
}
.section--services .services-grid.services-grid--cards .services-card--link:hover .services-card__media {
  border-color: rgba(246, 179, 127, 0.22);
}
.section--services .services-grid.services-grid--cards .services-card--link .card__arrow {
  transition: transform 0.2s ease-out;
}
.section--services .services-grid.services-grid--cards .services-card--link .services-card__media {
  position: relative;
  width: 100%;
  margin-bottom: 14px;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.section--services .services-grid.services-grid--cards .services-card--link .services-card__media img {
  width: 100%;
  height: auto;
  display: block;
  transform: scale(1.02);
  transition: transform 0.2s ease-out, filter 0.2s ease-out;
  filter: saturate(1.02) contrast(1.02);
}
.section--services .services-grid.services-grid--cards .services-card--link .services-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02) 0%, rgba(0, 0, 0, 0.1) 55%, rgba(0, 0, 0, 0.22) 100%);
  pointer-events: none;
}
.section--services .btn_container__cta {
  text-align: center;
}
.section--services .btn_container__cta .allservices__cta-btn {
  max-width: 320px;
  width: 100%;
  margin-top: 30px;
}

.section.section--services-page {
  padding-top: 32px;
}

.section--service-single {
  padding-top: 32px;
  padding-bottom: 64px;
}

.service-detail {
  max-width: 720px;
}
.service-detail .service-detail__eyebrow {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #9ca3af;
  margin-bottom: 8px;
}
.service-detail .service-detail__title {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.service-detail .service-detail__content {
  font-size: 15px;
  line-height: 1.7;
  color: #f5f5f7;
}
.service-detail .service-detail__content p {
  margin-bottom: 14px;
}
.service-detail .service-detail__content p:last-child {
  margin-bottom: 0;
}
.service-detail .service-detail__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

@media (max-width: 768px) {
  .service-detail .service-detail__title {
    font-size: 24px;
  }
}
.section--portfolio .portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.section--portfolio .portfolio-item {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: #020617;
  border: 1px solid rgba(148, 163, 184, 0.4);
  cursor: pointer;
  transition: transform 0.2s ease-out, box-shadow 0.2s ease-out, border-color 0.2s ease-out;
}
.section--portfolio .portfolio-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.9);
  border-color: rgba(248, 181, 121, 0.8);
}
.section--portfolio .portfolio-item .portfolio-item__image {
  height: 160px;
  object-fit: cover;
  width: 100%;
}
.section--portfolio .portfolio-item .portfolio-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 8, 22, 0.85), transparent 60%);
}
.section--portfolio .portfolio-item .portfolio-item__content {
  position: absolute;
  inset-inline: 10px;
  bottom: 9px;
  font-size: 11px;
  color: #9ca3af;
}
.section--portfolio .portfolio-item .portfolio-item__content .portfolio-item__title {
  font-size: 13px;
  color: #f9fafb;
  margin-bottom: 2px;
  font-weight: 600;
}
.section--portfolio .portfolio-item .portfolio-item__content .portfolio-item__tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.section--portfolio .portfolio-note {
  margin-top: 16px;
  font-size: 12px;
  color: #9ca3af;
}
@media (max-width: 1024px) {
  .section--portfolio .portfolio-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 560px) {
  .section--portfolio .portfolio-grid {
    grid-template-columns: 1fr;
  }
}
.section--portfolio .portfolio-lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.section--portfolio .portfolio-lightbox--open {
  display: flex;
}
.section--portfolio .portfolio-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.78);
  backdrop-filter: blur(6px);
}
.section--portfolio .portfolio-lightbox__dialog {
  position: relative;
  max-width: 960px;
  width: 100%;
  background: #020617;
  border-radius: 18px;
  padding: 18px 44px 18px;
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(148, 163, 184, 0.4);
  display: grid;
  grid-template-rows: auto auto auto;
  gap: 10px;
  z-index: 1;
}
.section--portfolio .portfolio-lightbox__image-wrap {
  border-radius: 14px;
  overflow: hidden;
  background: #020617;
  max-height: 70vh;
}
.section--portfolio .portfolio-lightbox__image-wrap .portfolio-lightbox__image {
  width: 100%;
  height: 100%;
  max-height: 70vh;
  object-fit: contain;
  background: #020617;
}
.section--portfolio .portfolio-lightbox__caption {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 12px;
  color: #e5e7eb;
  margin-top: 4px;
}
.section--portfolio .portfolio-lightbox__title {
  font-size: 14px;
  font-weight: 600;
}
.section--portfolio .portfolio-lightbox__tags {
  color: #9ca3af;
  font-size: 12px;
}
.section--portfolio .portfolio-lightbox__close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: rgba(15, 23, 42, 0.95);
  color: #e5e7eb;
  font-size: 18px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.section--portfolio .portfolio-lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: rgba(15, 23, 42, 0.9);
  color: #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 20px;
  z-index: 2;
}
.section--portfolio .portfolio-lightbox__nav--prev {
  left: 12px;
}
.section--portfolio .portfolio-lightbox__nav--next {
  right: 12px;
}
@media (max-width: 768px) {
  .section--portfolio .portfolio-lightbox__dialog {
    padding: 14px 14px 14px;
  }
}

.section--process .pricing {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 24px;
  align-items: flex-start;
}
.section--process .pricing__title {
  font-size: 16px;
  margin-bottom: 12px;
}
.section--process .process-list {
  display: grid;
  gap: 12px;
}
.section--process .process-list .process-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px 14px;
  align-items: flex-start;
}
.section--process .process-list .process-item .process-item__step {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: #ffcf99;
  background: rgba(15, 23, 42, 0.95);
  box-shadow: 0 10px 32px rgba(15, 23, 42, 0.9);
}
.section--process .process-list .process-item .process-item__title {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 2px;
}
.section--process .process-list .process-item .process-item__text {
  font-size: 12px;
  color: #9ca3af;
}
.section--process .process-note {
  margin-top: 16px;
  font-size: 12px;
  color: #9ca3af;
}
.section--process .pricing__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.section--process .price-tag {
  font-size: 20px;
  font-weight: 600;
}
.section--process .price-tag span {
  font-size: 12px;
  font-weight: 400;
  color: #9ca3af;
  margin-left: 4px;
}
.section--process .pricing__note {
  font-size: 12px;
  color: #9ca3af;
  margin-top: 6px;
}
.section--process .pricing-card--featured {
  border-width: 2px;
  border-color: rgba(246, 179, 127, 0.8);
}
@media (max-width: 1024px) {
  .section--process .pricing {
    grid-template-columns: minmax(0, 1fr);
  }
  .section--process .pricing__cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 768px) {
  .section--process .pricing__cards {
    grid-template-columns: minmax(0, 1fr);
  }
}

.section--reviews .reviews-slider {
  position: relative;
  margin-top: 8px;
}
.section--reviews .reviews-slider__viewport {
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.section--reviews .reviews-slider__viewport::-webkit-scrollbar {
  display: none;
}
.section--reviews .reviews-slider__track {
  display: flex;
  gap: 16px;
  padding: 4px 0 2px;
}
.section--reviews .review-card {
  flex: 0 0 100%;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  border-radius: 18px;
  background: #0b1020;
  padding: 16px 16px 14px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.5);
}
.section--reviews .review-card .review-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}
.section--reviews .review-card .review-card__name {
  font-size: 13px;
  font-weight: 500;
}
.section--reviews .review-card .review-card__meta {
  font-size: 11px;
  color: #9ca3af;
}
.section--reviews .review-card .review-card__text {
  font-size: 12px;
  color: #9ca3af;
  margin-bottom: 8px;
}
.section--reviews .review-card .stars {
  font-size: 12px;
  color: #fde68a;
}
.section--reviews .reviews-slider__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: #f6b37f;
  color: 0 18px 45px rgba(15, 23, 42, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 18px;
  z-index: 2;
}
.section--reviews .reviews-slider__nav--prev {
  left: -4px;
}
.section--reviews .reviews-slider__nav--next {
  right: -4px;
}
@media (max-width: 768px) {
  .section--reviews .reviews-slider__nav {
    width: 26px;
    height: 26px;
    font-size: 16px;
  }
}
@media (min-width: 640px) {
  .section--reviews .review-card {
    flex: 0 0 calc(50% - 8px);
  }
}
@media (min-width: 1024px) {
  .section--reviews .review-card {
    flex: 0 0 calc(33.333% - 11px);
  }
}

.section--faq .faq {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.1fr);
  gap: 24px;
}
.section--faq .faq .faq-item {
  padding: 11px 0;
  border-bottom: 1px solid rgba(31, 41, 55, 0.9);
}
.section--faq .faq .faq-item .faq-item__q {
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 4px;
}
.section--faq .faq .faq-item .faq-item__a {
  font-size: 12px;
  color: #9ca3af;
}
.section--faq .faq .faq__cta {
  border-radius: 24px;
  background: radial-gradient(circle at 0 0, rgba(248, 181, 127, 0.24), transparent 70%), #101522;
  border: 1px solid rgba(148, 163, 184, 0.25);
  padding: 22px 20px;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.85);
}
.section--faq .faq .faq__cta .faq__cta-title {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 6px;
}
.section--faq .faq .faq__cta .faq__cta-text {
  font-size: 13px;
  color: #9ca3af;
  margin-bottom: 14px;
}
.section--faq .faq .faq__cta .faq__cta-btn {
  width: 100%;
  justify-content: center;
}
@media (max-width: 1024px) {
  .section--faq .faq {
    grid-template-columns: minmax(0, 1fr);
  }
}

.section--contacts .contacts {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 24px;
  align-items: flex-start;
}
.section--contacts .wpcf7 {
  width: 100%;
}
.section--contacts .wpcf7 .wpcf7-form {
  margin: 0;
}
.section--contacts .wpcf7 .wpcf7-form .form {
  display: grid;
  gap: 10px;
}
.section--contacts .wpcf7 .wpcf7-form .form .field {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 12px;
}
.section--contacts .wpcf7 .wpcf7-form .form .field p {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.section--contacts .wpcf7 .wpcf7-form .form .field label {
  color: #9ca3af;
}
.section--contacts .wpcf7 .wpcf7-form .form .field .wpcf7-form-control {
  border-radius: 10px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: rgba(15, 23, 42, 0.95);
  color: #f5f5f7;
  padding: 9px 10px;
  font-size: 13px;
  outline: none;
  width: 100%;
  transition: border-color 0.2s ease-out, box-shadow 0.2s ease-out, background 0.2s ease-out;
}
.section--contacts .wpcf7 .wpcf7-form .form .field .btn.btn--primary {
  background: linear-gradient(135deg, #f6b37f, #ffcf99);
  color: #111827;
}
.section--contacts .wpcf7 .wpcf7-form .form .field .btn.btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 45px rgba(248, 181, 121, 0.55);
}
.section--contacts .wpcf7 .wpcf7-form .form .field input.wpcf7-form-control,
.section--contacts .wpcf7 .wpcf7-form .form .field textarea.wpcf7-form-control {
  resize: vertical;
  min-height: 0;
}
.section--contacts .wpcf7 .wpcf7-form .form .field input.wpcf7-form-control::placeholder,
.section--contacts .wpcf7 .wpcf7-form .form .field textarea.wpcf7-form-control::placeholder {
  color: #6b7280;
}
.section--contacts .wpcf7 .wpcf7-form .form .field .wpcf7-not-valid-tip {
  margin-top: 3px;
  font-size: 11px;
  color: #fecaca;
}
.section--contacts .wpcf7 .wpcf7-form .form .contacts__agreement {
  font-size: 11px;
  color: #9ca3af;
}
.section--contacts .wpcf7 .wpcf7-form .form .contacts__agreement p {
  margin: 0;
}
.section--contacts .wpcf7 .wpcf7-form .form .contacts__agreement a {
  text-decoration: underline;
}
.section--contacts .wpcf7 .wpcf7-form .form .contacts__agreement a:hover {
  color: #f6b37f;
}
.section--contacts .wpcf7 .wpcf7-form .form .wpcf7-submit {
  cursor: pointer;
}
.section--contacts .wpcf7 .wpcf7-form .form .wpcf7-spinner {
  margin-left: 8px;
}
.section--contacts .wpcf7 .wpcf7-form .wpcf7-response-output {
  margin: 8px 0 0;
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 12px;
  border-width: 1px;
}
.section--contacts .contacts__info {
  border-radius: 24px;
  background: #0b1020;
  border: 1px solid rgba(148, 163, 184, 0.25);
  padding: 16px 16px 14px;
  font-size: 13px;
}
.section--contacts .contacts__info .contacts__row {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
}
.section--contacts .contacts__info .contacts__row .contacts__label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #9ca3af;
}
.section--contacts .contacts__info .contacts__row .contacts__value {
  font-size: 13px;
}
.section--contacts .contacts__info .contacts__row .contacts__value a:hover {
  color: #f6b37f;
}
.section--contacts .contacts__info .contacts__socials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.section--contacts .contacts__info .contacts__socials .social-pill {
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.55);
  font-size: 12px;
  color: #9ca3af;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(15, 23, 42, 0.95);
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.2s ease-out, background 0.2s ease-out, transform 0.2s ease-out;
}
.section--contacts .contacts__info .contacts__socials .social-pill .social-pill__icon {
  width: 16px;
  height: 16px;
  display: block;
}
.section--contacts .contacts__info .contacts__socials .social-pill:hover {
  border-color: #ffcf99;
  background: rgb(15, 23, 42);
  transform: translateY(-1px);
}
@media (max-width: 1024px) {
  .section--contacts .contacts {
    grid-template-columns: minmax(0, 1fr);
  }
}

.section--legal {
  padding-bottom: 64px;
}
.section--legal .section__title-row--center {
  text-align: center;
  align-items: center;
}
.section--legal .section__title-row--center .section__title {
  margin-bottom: 6px;
}
.section--legal .section__title-row--center .section__subtitle {
  max-width: 560px;
  margin-inline: auto;
}
.section--legal .legal {
  margin: 28px auto 0;
  font-size: 14px;
  line-height: 1.7;
  color: #f5f5f7;
}
.section--legal .legal .legal__block + .legal__block {
  margin-top: 22px;
  padding-top: 14px;
  border-top: 1px solid rgba(148, 163, 184, 0.25);
}
.section--legal .legal .legal__heading {
  font-size: 15px;
  margin-bottom: 6px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #9ca3af;
}
.section--legal .legal .legal__text {
  margin-bottom: 8px;
  color: #f5f5f7;
}
.section--legal .legal .legal__list {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 4px;
}
.section--legal .legal .legal__list li {
  position: relative;
  color: #f5f5f7;
}
@media (max-width: 640px) {
  .section--legal {
    padding-top: 32px;
    padding-bottom: 48px;
  }
  .section--legal .legal {
    font-size: 13px;
  }
  .section--legal .legal .legal__heading {
    font-size: 14px;
  }
}

.breadcrumbs {
  margin-top: 30px;
  font-size: 12px;
  color: #9ca3af;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
}
.breadcrumbs .breadcrumbs__link {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.2s ease-out;
}
.breadcrumbs .breadcrumbs__link:hover {
  color: #f5f5f7;
}
.breadcrumbs .breadcrumbs__sep {
  opacity: 0.6;
}
.breadcrumbs .breadcrumbs__current {
  color: #f5f5f7;
}

.cookie-banner {
  position: fixed;
  inset-inline: 0;
  bottom: 0;
  padding: 0 12px 12px;
  z-index: 60;
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.2s ease-out, opacity 0.2s ease-out;
}
.cookie-banner--visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.cookie-banner__inner {
  max-width: 980px;
  margin: 0 auto;
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.96);
  border: 1px solid rgba(148, 163, 184, 0.35);
  padding: 10px 14px;
  font-size: 12px;
  color: #9ca3af;
  display: flex;
  align-items: center;
  gap: 12px;
  backdrop-filter: blur(10px);
}
.cookie-banner__text {
  line-height: 1.4;
}
.cookie-banner__link {
  color: #f6b37f;
  text-decoration: underline;
  text-decoration-style: dotted;
}
.cookie-banner__link:hover {
  color: #ffcf99;
}
.cookie-banner__btn {
  margin-left: auto;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(248, 181, 121, 0.9);
  background: linear-gradient(90deg, #f6b37f, #ffcf99);
  color: #0b1120;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
}
@media (max-width: 560px) {
  .cookie-banner__inner {
    flex-direction: column;
    align-items: stretch;
  }
  .cookie-banner__btn {
    width: 100%;
    text-align: center;
    margin-left: 0;
  }
}

.section--404 {
  min-height: calc(100vh - 160px);
  display: flex;
  align-items: center;
}
.section--404 .container {
  display: flex;
  justify-content: center;
}
.section--404 .not-found {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  max-width: 520px;
  margin-inline: auto;
}
.section--404 .not-found__code {
  font-size: 80px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #9ca3af;
  opacity: 0.3;
}
.section--404 .not-found__title {
  font-size: 28px;
  font-weight: 700;
}
.section--404 .not-found__text {
  font-size: 14px;
  color: #9ca3af;
  max-width: 460px;
}
.section--404 .not-found__btn {
  margin-top: 10px;
}
@media (max-width: 768px) {
  .section--404 {
    min-height: calc(100vh - 140px);
  }
  .section--404 .not-found__code {
    font-size: 56px;
    letter-spacing: 0.1em;
  }
  .section--404 .not-found__title {
    font-size: 22px;
  }
  .section--404 .not-found__text {
    font-size: 13px;
  }
}

.section--service-single {
  padding-top: 32px;
  padding-bottom: 32px;
}

.service-hero {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 22px;
  align-items: start;
}
@media (max-width: 980px) {
  .service-hero {
    grid-template-columns: 1fr;
  }
}

.service-hero__media {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  line-height: 0;
}
.service-hero__media img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: bottom;
}

.service-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.22) 100%);
  pointer-events: none;
}

.service-hero__subtitle {
  margin-top: 10px;
  color: #9ca3af;
  line-height: 1.6;
}

.service-hero__bullets {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}
.service-hero__bullets li {
  position: relative;
  padding-left: 18px;
  margin: 14px 0;
  color: #f5f5f7;
}
.service-hero__bullets li:first-child {
  margin-top: 0;
}
.service-hero__bullets li:last-child {
  margin-bottom: 0;
}
.service-hero__bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(246, 179, 127, 0.9);
  box-shadow: 0 0 0 4px rgba(246, 179, 127, 0.18);
}

.service-hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.service-badges {
  margin-top: 16px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.service-badge {
  font-size: 12px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: #f5f5f7;
}

.service-seo {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: justify;
}
@media (max-width: 768px) {
  .service-seo {
    margin-top: 36px;
    padding-top: 24px;
  }
}

.service-seo__title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #f5f5f7;
  margin: 0 0 16px;
  line-height: 1.4;
}

.service-seo__content {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: #9ca3af;
}
.service-seo__content p {
  margin: 0 0 12px;
}
.service-seo__content p:last-child {
  margin-bottom: 0;
}
.service-seo__content ul {
  margin: 12px 0;
  padding-left: 20px;
}
.service-seo__content ul li {
  margin: 10px 0;
}
.service-seo__content h3 {
  font-size: 1rem;
  font-weight: 600;
  margin: 20px 0 10px;
  color: #f5f5f7;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top left, #1f2937 0, #050816);
  color: #f5f5f7;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

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

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

.section {
  padding: 50px 0;
}
.section--hero {
  padding-top: 40px;
  padding-bottom: 50px;
}

.section__eyebrow {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #9ca3af;
  margin-bottom: 8px;
}

.section__title-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 26px;
}
.section__title-row .section__title {
  font-size: 26px;
  letter-spacing: -0.01em;
}
.section__title-row .section__subtitle {
  font-size: 13px;
  color: #9ca3af;
  max-width: 340px;
  text-align: right;
}

.grid {
  display: grid;
  gap: 20px;
}
.grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
  position: relative;
  border-radius: 18px;
  background: radial-gradient(circle at 0 0, rgba(248, 181, 121, 0.15), transparent 60%), #101522;
  border: 1px solid rgba(148, 163, 184, 0.25);
  padding: 18px 18px 16px;
  box-shadow: 0 14px 35px rgba(15, 23, 42, 0.6);
  overflow: hidden;
}
.card--soft {
  background: #0b1020;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.55);
}
.card .card__label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #9ca3af;
  margin-bottom: 6px;
}
.card .card__title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
}
.card .card__text {
  font-size: 13px;
  color: #9ca3af;
  margin-bottom: 12px;
}
.card .card__meta {
  padding-top: 5px;
  font-size: 12px;
  color: #ffcf99;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.chip-row .chip {
  padding: 3px 9px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.45);
  font-size: 11px;
  color: #9ca3af;
  background: rgba(15, 23, 42, 0.85);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease-out;
  white-space: nowrap;
  background: transparent;
  color: #f5f5f7;
  gap: 8px;
}
.btn--primary {
  background: linear-gradient(135deg, #f6b37f, #ffcf99);
  color: #111827;
  box-shadow: 0 12px 35px rgba(248, 181, 121, 0.4);
}
.btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 45px rgba(248, 181, 121, 0.55);
}
.btn--ghost {
  background: rgba(15, 23, 42, 0.8);
  border-color: rgba(148, 163, 184, 0.5);
}
.btn--ghost:hover {
  border-color: #f6b37f;
  background: rgba(15, 23, 42, 0.95);
}
.btn .btn__icon {
  font-size: 14px;
}

@media (max-width: 1024px) {
  .section {
    padding: 60px 0;
  }
  .section--hero {
    padding-top: 28px;
    padding-bottom: 64px;
  }
  .grid--3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 768px) {
  .section__title-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .section__title-row .section__subtitle {
    text-align: left;
    font-size: 12px;
  }
  .grid--3 {
    grid-template-columns: 1fr;
  }
}

/*# sourceMappingURL=main.css.map */
