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

html { 
  scroll-padding-top: 90px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: #333;
  background-color: #000;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

a, a:link, a:visited, a:hover,
a:active {
  text-decoration: none;
}

/* HEADER */
.header {
  position: fixed;
  top: 0;
  left: 0; right: 0;
  z-index: 1000;
  background: rgba(8, 14, 38, 0.72);
}
.header_inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
  color: white;
}
.header_logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
.header_logo img {
  height: 35px;
  cursor: pointer;
}
.header_logo span {
  display: none;
}
.header_top_right {
  display: flex;
  align-items: center;
  margin-left: auto;
  gap: 20px;
}
.header_nav {
  display: flex;
  align-items: center;
}
.nav_links {
  display: flex;
  gap: 20px;
}
.nav_links a {
  color: white;
  text-decoration: none;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.burger_menu {
  display: none;
}
.header_lang {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: right;
  gap: 4px;
  font-size: 18px;
  z-index: 10;
  cursor: pointer;
}
.header_lang img {
  width: 22px;
  height: 22px;
  cursor: pointer;
}
.header_lang_menu {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 6px;
  background: white;
  color: #31414E;
  border-radius: 6px;
  padding: 4px 0;
  list-style: none;
  font-size: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 99;
  cursor: pointer;
}
.header_lang_menu li {
  padding: 4px 8px;
  cursor: pointer;
  white-space: nowrap;
}
.header_lang_menu.hidden {
  display: none;
}
/* RESPONSIVE */
@media (max-width: 768px) {
.nav_links{
  display: none !important;
}
.header_lang {
  margin-right: 45px;
}
.burger_menu {
  width: 43px;
  height: 43px;
  position: absolute;
  right: 2%;
  z-index: 999;
  background: transparent;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.burger_lines {
  width: 30px;
  height: 19px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.burger_lines span {
  height: 2.5px;
  background-color: white;
  border-radius: 3px;
  transition: 0.3s;
  transform-origin: center;
}
.burger_menu.open .burger_lines span:nth-child(1) {
  transform: rotate(45deg) translateY(8px);
  background-color: white;
}
.burger_menu.open .burger_lines span:nth-child(2) {
  transform: rotate(-45deg) translateY(-8px);
  background-color: white;
}
.burger_menu.open .burger_lines span:nth-child(3) {
  opacity: 0;
}
.nav_links.show {
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  background: rgba(8, 14, 38, 0.95);
  position: fixed;
  top: 61px;
  left: 0;
  width: 100%;
  padding: 8px 0;
  z-index: 998;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.nav_links.show a {
  padding: 12px 24px;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: white;
  text-decoration: none;
  text-align: center;
}}
/* HEADER */

/* LANDING VIDEO */
.landing_video_block {
  position: relative;
  width: 100%;
  height: 120vh;
  overflow: hidden;
  padding: 20px;
}
.landing_video_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.landing_video_overlay {
  max-width: 1300px;
  margin: 0 auto;
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  color: #fff;
  padding-left: 50px;
}
.landing_video_text {
  position: static;
  max-width: 520px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}
.landing_video_text h1 {
  margin: 0;
  font-family: 'Tektur', sans-serif;
  font-weight: 400;
  font-size: 40px;
  line-height: 1.1;
  letter-spacing: 0;
  white-space: nowrap;
}
.button_text {
  margin: 22px 0 0;
  padding: 12px 32px;
  background: transparent;
  color: #FCA311;
  font-weight: 400;
  border: 1px solid #FCA311;
  font-size: 20px;
  cursor: pointer;
}
.landing_video_list {
  list-style: none;
  margin: 8px 0 0;
  padding-left: 22px;
  position: relative;
}
.landing_video_list::before {
  content:"";
  position:absolute;
  left:8px;
  top:6px;
  bottom:6px;
  width:2px;
  background: #FCA311;
  opacity:.9;
}
.landing_video_list li {
  position:relative;
  margin: 14px 0;
  line-height: 1.4;
  font-size: 20px;
}
.landing_video_list li::before{
  content:"";
  position:absolute;
  left:-17px;
  top:.8em;
  width:8px;
  height:8px;
  border-radius:50%;
  background:#FCA311;
  transform:translateY(-50%);
}
/* RESPONSIVE */
@media (max-width: 768px) {
.landing_video_block{
  height: 100svh;
  padding: 0;
}
.landing_video_bg{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.4;
}
.landing_video_overlay{
  position: absolute;
  inset: 0;
  z-index: 1;
  padding: 80px 24px 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  text-align: left;
  gap: 0;
}
.landing_video_text{
  max-width: 100%;
}
.landing_video_text h1{
  font-size: 28px;
  line-height: 1.2;
  margin: 0 0 16px;
}
.landing_video_list li {
  font-size: 18px;
}
.button_text{
  width: 100%;
  text-align: center;
  margin: 24px 0 0;
  font-size: 18px;
}
}
/* LANDING VIDEO */

/* FOOTER */
.footer {
  width: 100%;
  background: #000;
  color: #fff;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer_inner {
  max-width: 900px;
  padding: 40px 20px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 64px;
  align-items: start;
}

/* ── Left card ── */
.footer_card {
  background: #161616;
  border-radius: 12px;
  padding: 28px 24px 32px;
}
.footer_card_label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #666;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.footer_card_title {
  margin: 0 0 24px;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.35;
  color: #fff;
}
.footer_card_title strong {
  font-weight: 700;
}
.footer_form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer_form input,
.footer_form textarea {
  width: 100%;
  box-sizing: border-box;
  background: #222;
  border: 1px solid #333;
  border-radius: 6px;
  color: #fff;
  font-size: 13px;
  padding: 10px 14px;
  outline: none;
  resize: none;
  font-family: inherit;
  transition: border-color .2s ease;
}
.footer_form input::placeholder,
.footer_form textarea::placeholder {
  color: #555;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: .5px;
}
.footer_form input:focus,
.footer_form textarea:focus {
  border-color: #FCA311;
}
.footer_form_btn {
  margin-top: 4px;
  width: 100%;
  padding: 12px;
  background: #FCA311;
  color: #000;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s ease;
}
.footer_form_btn:hover {
  background: #e6920a;
}

/* ── Right side ── */
.footer_right {
  display: flex;
  flex-direction: column;
  gap: 36px;
  justify-self: end;
  align-items: flex-end;
  text-align: right;
}
.footer_nav {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.footer_nav a {
  color: #999;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color .2s ease;
}
.footer_nav a:hover { color: #fff; }

.footer_contacts_block {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer_contacts_label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #FCA311;
  margin-bottom: 6px;
}
.footer_contact_link {
  font-size: 14px;
  color: #bbb;
  text-decoration: none;
  transition: color .2s ease;
}
a.footer_contact_link:hover { color: #fff; }

.footer_logo {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer_logo img {
  height: 36px;
  width: auto;
  max-width: 180px;
  display: block;
  object-fit: contain;
}
.footer_logo span {
  font-size: 12px;
  color: #666;
}
.footer_bottom {
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer_socials {
  display: flex;
  gap: 10px;
}
.footer_social_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #1e1e1e;
  border: 1px solid #333;
  transition: background .2s ease, border-color .2s ease;
}
.footer_social_btn:hover {
  background: #2a2a2a;
  border-color: #555;
}
.footer_social_btn img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

/* ── Responsive ── */
@media (max-width: 860px) {
  .footer_inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer_card { max-width: 480px; }
}
@media (max-width: 480px) {
  .footer_card { padding: 22px 18px 26px; }
  .footer_card_title { font-size: 19px; }
  .footer_nav { gap: 20px; }
}
/* FOOTER */

/* LANDING ABOUT */
.landing_about {
  width: 100%;
  background: #000;
  color: #fff;
  padding: 40px 0 40px 0;
}
.landing_about_header {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 28px;
  width: 100%;
  box-sizing: border-box;
}
.landing_about_title {
  box-sizing: border-box;
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px 0;
  font-family: 'Tektur', sans-serif;
  font-weight: 400;
  font-size: 40px;
  line-height: 1.1;
  letter-spacing: 0;
  white-space: nowrap;
}
.about__line {
  box-sizing: border-box;
  position: absolute;
  top: 55%;
  left: 0;
  right: 0;
  width: 100%;
  height: 1.5px;
  background: rgba(255, 255, 255, 0.25);
  z-index: 0;
}
.about__dot {
  position: absolute;
  top: 50%;
  right: max(40px, calc((100% - 1300px) / 4 + 60px));
  z-index: 1;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
  flex-shrink: 0;
}
.landing_about_grid {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px 40px;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 40px;
  align-items: start;
}
.landing_about_text {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.landing_about_text p {
  margin: 0;
  font-size: 20px;
  line-height: 1.4;
}
.landing_about_cards {
  display: flex;
  gap: 8px;
  height: 260px;
}
.landing_about_card {
  flex: 1;
  position: relative;
  overflow: hidden;
  border: 2px solid #FCA311;
  cursor: pointer;
  transition: flex 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  min-width: 0;
}
.landing_about_card:hover {
  flex: 2.5;
}
.card_bg {
  position: absolute;
  inset: 0;
}
.card_bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}
.landing_about_card:hover .card_bg img {
  transform: scale(1.05);
}
.card_content {
  position: relative;
  z-index: 1;
  height: 100%;
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 12px;
  background: rgba(0, 0, 0, 0.45);
  transition: background 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}
.landing_about_card:hover .card_content {
  background: rgba(0, 0, 0, 0.6);
}
.card_title {
  color: #FCA311;
  font-size: 20px;
  font-family: 'Tektur', sans-serif;
  font-weight: 700;
  margin: 0;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}
.landing_about_card:hover .card_title {
  transform: translateY(-6px);
}
.card_desc {
  color: #e7eefc;
  font-size: 15px;
  line-height: 1.4;
  margin: 0;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.2s,
              transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
}
.landing_about_card:hover .card_desc {
  opacity: 1;
  transform: translateY(0);
}
/* RESPONSIVE */
@media (max-width: 960px) {
.landing_about_grid {
  grid-template-columns: 1fr;
}
.landing_about_cards {
  flex-direction: column;
  flex-wrap: wrap;
  height: auto;
  width: 100%;
  align-items: center;
  gap: 8px;
}
.landing_about_card {
  flex: none;
  width: calc(50% - 4px);
  aspect-ratio: 7 / 4;
  transition: none;
}
.landing_about_card:hover {
  flex: none;
}
}
@media (max-width: 600px) {
.landing_about_text p {
  font-size: 18px;
}
.card_title {
  font-size: 16px;
}
.card_desc {
  font-size: 14px;
}
}
/* LANDING ABOUT */

/* SERVICES TIMELINE */
.services_timeline {
  width: 100%;
  position: relative;
  background: #000 url('../img/background_computer.png') right center / auto 100% no-repeat;
  color: #fff;
  overflow: hidden;
  max-width: 1300px;
  margin: 0 auto;
  padding: 40px 20px;
}
.services_timeline::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.92) 42%, rgba(0,0,0,0.15) 85%);
  pointer-events: none;
  z-index: 0;
}
.timeline_body {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}
.timeline_logo {
  height: 48px;
  width: auto;
  display: block;
  margin-bottom: 36px;
}
.timeline_list {
  list-style: none;
  margin: 0 0 40px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.timeline_list li {
  position: relative;
  padding-left: 22px;
  font-size: 16px;
  line-height: 1.45;
  color: #d8d8d8;
}
.timeline_list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #FCA311;
}
.timeline_list li::after {
  content: '';
  position: absolute;
  left: 3px;
  top: 15px;
  width: 2px;
  height: calc(100% + 14px);
  background: linear-gradient(to bottom, rgba(252,163,17,0.5), rgba(252,163,17,0.1));
}
.timeline_list li:last-child::after {
  display: none;
}

@media (max-width: 680px) {
  .timeline_body { padding-bottom: 52px; }
  .timeline_logo { font-size: 38px; margin-bottom: 24px; }
  .timeline_list { gap: 12px; margin-bottom: 28px; }
  .timeline_list li { font-size: 15px; }
  .services_timeline::before {
    background: rgba(0,0,0,0.82);
  }
}
/* SERVICES TIMELINE */

/* CLIENTS */
.landing_clients {
  width: 100%;
  background: #000;
  color: #fff;
  padding: 40px 0 40px 0;
}
.landing_clients_header {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 28px;
  width: 100%;
  box-sizing: border-box;
}
.clients_title {
  box-sizing: border-box;
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px 0;
  font-family: 'Tektur', sans-serif;
  font-weight: 400;
  font-size: 40px;
  line-height: 1.1;
  letter-spacing: 0;
  white-space: nowrap;
}
.clients_line {
  box-sizing: border-box;
  position: absolute;
  top: 55%;
  left: 0;
  right: 0;
  width: 100%;
  height: 1.5px;
  background: rgba(255, 255, 255, 0.25);
  z-index: 0;
}
.clients_dot {
  position: absolute;
  top: 50%;
  right: max(40px, calc((100% - 1300px) / 4 + 60px));
  z-index: 1;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
  flex-shrink: 0;
}
.clients_intro {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 12px;
}
.clients_sub {
  margin: 0;
  font-size: 18px;
  line-height: 1.3;
  max-width: 480px;
}
.clients_cta_btn {
  white-space: nowrap;
  flex-shrink: 0;
}
.carousel {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 40px 12px;
}
.carousel_viewport {
  overflow: hidden;
  flex: 1;
  padding: 30px 0;
}
.carousel_track {
  --gap: 22px;
  display: flex;
  gap: var(--gap);
  will-change: transform;
  list-style: none;
  padding-left: 0;
  margin: 0;
}
.card {
  max-height: 400px;
  flex: 0 0 calc((100% - 2 * var(--gap)) / 3);
  position: relative;
  overflow: hidden;
  background: #111;
}
.card img {
  width: 100%;
  display: block;
}
.card_overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(12, 18, 34, .55);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
}
.card_overlay_content {
  text-align: center;
  color: #fff;
  transform: translateY(8px);
  transition: transform .3s ease, opacity .3s ease;
  opacity: .98;
}
.card_overlay_content h4 {
  margin: 0 0 12px;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 700;
  text-shadow: 0 2px 8px rgba(0,0,0,.35);
}
.card_overlay_btn {
  display: inline-block;
  padding: 8px 18px;
  font-size: 13px;
  letter-spacing: .3px;
  color: #fff;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.4);
  border-radius: 6px;
  text-decoration: none;
  backdrop-filter: blur(2px);
  transition: background .2s ease;
}
.card_overlay_btn:hover { background: rgba(255,255,255,.28); }
.card.is-open .card_overlay { opacity: 1; visibility: visible; }
.card.is-open .card_overlay_content { transform: translateY(0); }
@media (hover: hover) {
  .card:hover .card_overlay { opacity: 1; visibility: visible; }
  .card:hover .card_overlay_content { transform: translateY(0); }
}
.carousel_btn {
  flex: 0 0 auto;
  width: 48px;
  height: 100%;
  min-height: 80px;
  border: none;
  background: transparent;
  color: rgba(255,255,255,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  cursor: pointer;
  transition: color .2s ease, transform .2s ease;
  padding: 0;
  line-height: 1;
}
.carousel_btn:hover {
  color: #FCA311;
  transform: scale(1.15);
}
@media (max-width: 719px) {
  .card { flex: 0 0 100%; }
  .carousel { padding: 20px 12px; }
  .carousel_viewport { padding: 0; }
  .clients_intro { flex-direction: column; align-items: flex-start; gap: 16px; }
}
/* CLIENTS */

/* STYLES */
.landing_styles {
  width: 100%;
  background: #000 url('../img/background_styles.png') center / cover no-repeat;
  color: #fff;
  padding: 40px 0 40px 0;
}
.landing_styles_header {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 28px;
  width: 100%;
  box-sizing: border-box;
}
.landing_styles_title {
  box-sizing: border-box;
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px 0;
  font-family: 'Tektur', sans-serif;
  font-weight: 400;
  font-size: 40px;
  line-height: 1.1;
  letter-spacing: 0;
  white-space: nowrap;
}
.landing_styles_line {
  box-sizing: border-box;
  position: absolute;
  top: 55%;
  left: 0;
  right: 0;
  width: 100%;
  height: 1.5px;
  background: rgba(255, 255, 255, 0.25);
  z-index: 0;
}
.landing_styles_dot {
  position: absolute;
  top: 50%;
  right: max(40px, calc((100% - 1300px) / 4 + 60px));
  z-index: 1;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
  flex-shrink: 0;
}
.landing_styles_tagline {
  box-sizing: border-box;
  width: 100%;
  max-width: min(
    530px,
    calc(100% - max(20px, calc((100% - 1300px) / 2 + 20px)) - 20px)
  );
  margin: 0 auto 28px;
  margin-left: max(20px, calc((100% - 1300px) / 2 + 20px));
  margin-right: auto;
  padding: 0;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 400;
  text-align: left;
  color: #fff;
}
.styles_carousel {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 40px 12px;
}
.styles_viewport {
  flex: 1;
  overflow: hidden;
  padding: 30px 0;
}
.styles_track {
  --gap: 22px;
  display: flex;
  gap: var(--gap);
  will-change: transform;
}
.styles_carousel_btn{
  flex:0 0 auto;
  width:44px;
  height:44px;
  border-radius:50%;
  border:2px solid #F1F5FF;
  background:transparent;
  color:#F1F5FF;
  display:grid;
  place-items:center;
  font-size:18px;
  cursor:pointer;
  transition:background .15s ease, color .15s ease, transform .15s ease;
}
.style_card {
  flex: 0 0 calc((100% - 4 * var(--gap)) / 5);
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: transparent;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .28);
  transform-style: preserve-3d;
  transition:
    box-shadow .6s cubic-bezier(0.4, 0, 0.2, 1),
    transform  .6s cubic-bezier(0.4, 0, 0.2, 1),
    opacity    .6s cubic-bezier(0.4, 0, 0.2, 1),
    visibility .6s cubic-bezier(0.4, 0, 0.2, 1);
}
.style_card img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 18px;
}
.style_card_badge{
  position: absolute;
  left: 50%;
  bottom: 12px;
  transform: translateX(-50%);
  white-space: nowrap;
  padding: 5px 14px;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.3px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  pointer-events: none;
  z-index: 3;
}
/* Desktop: 5 карточек с 3D эффектом */
@media (min-width: 1100px) {
.styles_track > .style_card {
  flex: 0 0 calc((100% - 4 * var(--gap)) / 5);
}
}

/* Tablet: 3 карточки с 3D эффектом */
@media (max-width: 1099.98px) and (min-width: 720px) {
.styles_track > .style_card {
  flex: 0 0 calc((100% - 2 * var(--gap)) / 3);
}
}

/* Mobile: 1 карточка без 3D */
@media (max-width: 719.98px) {
.styles_track > .style_card {
  flex: 0 0 100%;
  transform: none !important;
  opacity: 1 !important;
  box-shadow: 0 12px 28px rgba(0,0,0,.28);
  clip-path: none !important;
  outline: none;
  border: none;
  overflow: hidden;
}
.styles_track > .style_card img {
  height: auto;
  border-radius: 18px;
  display: block;
}
.styles_carousel {
  perspective: none !important;
  padding: 0 12px;
}
.styles_viewport {
  padding: 0;
}
}

.form_container {
  background: #0e1a30;
  color: #F1F5FF;
  max-width: 1300px;
  margin: 0 auto;
  padding-top: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.form_group {
  padding: 3rem;
  width: 85%;
}

.form_info {
  margin-bottom: 0.75rem;
}

.form_info h1 {
  font-size: 60px;
}

#form_form {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: max-content;
  background-color: #F1F5FF;
  border-radius: 28px;
  padding: 46px 32px;
}

#form_form input {
  border: none;
  outline: none;
  padding: 10px;
  font-size: 18px;
  background-color: #00000000;
  border-bottom: 1px solid #0b1120;
  margin-bottom: 28px;
}

#form_form textarea {
  background-color: #c9d6f2;
  outline: none;
  border: none;
  resize: none;
  width: 100%;
  border-radius: 28px;
  padding: 18px;
  font-size: 18px;
}

#form_form button {
  margin-right: 15%;
  margin-left: 15%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

@media (max-width: 900px) {
  .form_group {
    padding: 3rem 0;
  }

  .form_info h1 {
    font-size: 40px;
  }
}
/* STYLES */


