/* ===== BASE ===== */

body {
  font-family: var(--font-family);
  font-size: 15px;
}

.content {
  max-width: 1400px;
  width: 100%;
  margin: auto;
  padding: 0 18px;
}

/* ===== NAVBAR ===== */

.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: 0.3s ease-in-out;
  padding: 16px 0;
  border-bottom: 1px solid #f3f4f6;
  background: #fff;
}
.nav.hide {
  transform: translateY(-100%);
}
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-left,
.nav-right {
  flex: 1;
}

.nav-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
}

.nav-list li a {
  font-weight: 500;
  font-size: 13px;
  color: #364153;
  transition: 0.25s;
}

.nav-list li a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.nav-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 14px;
}

.current-lang {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}

.phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
}

.nav-right .toggle-modal {
  border-radius: 999px;
  border: none;
  padding: 8px 18px;
  background: #5089a1;
  font-weight: 500;
  font-size: 13px;
  color: #fff;
  cursor: pointer;
  transition: .25s;
}

.nav-right .toggle-modal:hover {
  background: #4e98b8;
}

.lang-list {
  display: none;
}
/* Update your existing .lang-dropdown styles */
.lang-dropdown {
  position: relative;
  user-select: none;
}

.lang-list {
  display: block; /* Change from none to block, but control visibility with opacity/pointer-events */
  position: absolute;
  top: 100%;
  right: 0;
  background: #fff;
  border: 1px solid #f3f4f6;
  border-radius: 8px;
  margin-top: 10px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: 0.2s ease-in-out;
  z-index: 100;
  min-width: 60px;
  overflow: hidden;
}

.lang-dropdown.active .lang-list {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-dropdown.active .current-lang img {
  transform: rotate(180deg);
}

.current-lang img {
  transition: transform 0.2s ease;
}

.lang-list li {
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 500;
  color: #364153;
  cursor: pointer;
  list-style: none;
  transition: background 0.2s;
}

.lang-list li:hover {
  background: #f9fafb;
  color: #5089a1;
}

/* ==== BURGER ==== */
.no-scroll {
  overflow: hidden;
}

/* ===== BURGER BUTTON ===== */
.toggle-burger-menu {
  display: none;
  width: 25px;
  height: 25px;
  border: none;
  background: transparent ;
  position: relative;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 4px
}

.toggle-burger-menu span {
  height: 3px;
  width: 22px;
  background: #101828;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 3px;
}

/* ===== BURGER MENU ===== */

.burger-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 350px;
  background: #ffffff;
  z-index: 1000;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
  padding: 80px 40px 20px 40px;

  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
  display: flex;
  flex-direction: column;
}

.burger-menu.active {
  transform: translateX(0);
}

.burger-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(4px);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

body.no-scroll .burger-overlay {
  opacity: 1;
  pointer-events: all;
}

.burger-nav {
  list-style: none;
  margin-top: 20px;
}

.burger-content {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.burger-nav {
  display: flex;
  flex-direction: column;
  gap: 25px;
  flex: 1;
}

.burger-nav li,
.burger-nav a,
.burger-contact {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 14px;
  line-height: 143%;
  color: #364153;
  transition: color 0.2s;
}

.burger-nav a:hover {
  color: #5089a1;
}

.burger-contact p {
  margin-bottom: 25px;
}

.burger-contact .section-button {
  padding: 8px 20px;
  display: block;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 14px;
  line-height: 143%;
  margin-top: auto;
  width: 100%;
}
/* ===== CLOSE BURGER BUTTON ===== */
.close-burger {
  position: absolute;
  top: 25px;
  right: 25px;
  width: 30px;
  height: 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}

.close-burger span {
  position: absolute;
  width: 24px;
  height: 2px;
  background-color: #101828;
  border-radius: 2px;
  transition: transform 0.3s ease;
}


.close-burger span:first-child {
  transform: rotate(45deg);
}

.close-burger span:last-child {
  transform: rotate(-45deg);
}

/* ===== HERO ===== */

.hero {
  background: url("/static/images/hero.png") center/cover no-repeat;
  min-height: 88vh;
  position: relative;
  display: flex;
  align-items: center;
}

.hero-wrapper {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg,
      rgba(0, 0, 0, 0.75) 0%,
      rgba(0, 0, 0, 0.45) 40%,
      rgba(0, 0, 0, 0.25) 100%);
}

.hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-content {
  max-width: 620px;
}

/* ===== FEATURE BADGE ===== */

.hero-content .feature {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 999px;
  border: 1px solid rgba(80, 137, 161, .35);
  background: rgba(80, 137, 161, .18);
  margin-bottom: 14px;
}

.hero-content .feature span {
  font-size: 12px;
  font-weight: 500;
  color: #77a7bb;
}

/* ===== HERO TEXT ===== */

.hero-content .page-title {
  text-align: start;
  line-height: 1.15;
  margin-bottom: 14px;
  color: #fff;
}

.hero-content p {
  font-size: clamp(14px, 1.2vw, 18px);
  line-height: 1.6;
  color: #e5e7eb;
  margin-bottom: 36px;
}



/* ===== BUTTONS ===== */

.hero-content .buttons {
  display: flex;
  gap: 12px;
  margin-bottom: 36px;
}

.hero-content .buttons a {
  position: relative;
  padding: 10px 18px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 12px;
  background: #fff;
  border: 2px solid #fff;
  color: #101828;
  cursor: pointer;
  transition: .25s;
  line-height: 150%;
}

.hero-content .buttons a:first-child {
  padding-right: 36px;
}

.hero-content .buttons a:first-child svg {
  position: absolute;
  right: 16px;
  transition: .25s;
}

.hero-content .buttons a:first-child:hover svg {
  right: 12px;
}

.hero-content .buttons a:first-child:hover svg path {
  stroke: #fff
}

.hero-content .buttons a:hover {
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .2);
  color: #fff;
}

/* ===== STATS ===== */

.hero-content .bottom {
  border-top: 1px solid rgba(255, 255, 255, .2);
  padding-top: 22px;
  display: flex;
  gap: 18px;
}

.hero-content .bottom .card {
  flex: 1;
  backdrop-filter: blur(6px);
  background: rgba(255, 255, 255, .06);
  border-radius: 14px;
  padding: 10px 14px;
}

.hero-content .bottom .card p {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 26px;
  margin-bottom: 4px;
  color: #fff;
}

.hero-content .bottom .card span {
  font-size: 12px;
  color: #d1d5dc;
}

/* ===== PRODUCTS ===== */
.products-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 0;
}

.products-cards {
  margin-bottom: 44px;
}

.products-slider-wrapper {
  width: 100%;
  position: relative;
  overflow: hidden;
  padding: 0 60px;
}

.products-slider {
  width: 100%;
  overflow: visible;
}

.swiper-btn-next,
.swiper-btn-prev {
  position: absolute;
  cursor: pointer;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
}

.swiper-btn-prev {
  left: 10px;
}

.swiper-btn-next {
  right: 10px;
}

.products-cards .card {
  position: relative;
  overflow: hidden;

  border: 1px solid #f3f4f6;
  border-radius: 24px;
  padding: 20px;
  width: 270px;
  min-height: 300px;
  box-shadow: 0 4px 6px -4px rgba(0, 0, 0, 0.1), 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  background: #fff;

  display: flex;
  align-items: flex-end;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  transition: background-size 0.4s ease;
}

.products-cards .card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.5s ease;
  z-index: 0;
}

.card.p1::before {
  background-image: url("/static/images/p1.png");
}

.card.p2::before {
  background-image: url("/static/images/p2.png");
}

.card.p3::before {
  background-image: url("/static/images/p3.png");
}

.card.p4::before {
  background-image: url("/static/images/p4.png");
}

.card.p5::before {
  background-image: url("/static/images/p5.png");
}

.products-cards .card:hover::before {
  transform: scale(1.15);
}

.products-cards .card::after {
  content: "";

  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(74, 85, 101, 0) 0%, #101828 95.42%);
  z-index: 1;
}

.card-content {
  position: relative;
  z-index: 2;
  height: 115px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  cursor: auto;
}

.card-content h2 {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 20px;
  line-height: 133%;
  color: #fff;
  margin-bottom: 6px;
}

.card-content p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 15px;
  line-height: 150%;
  color: #e5e7eb;
  margin: 0;
  text-align: start;
  margin-bottom: 12px;
}

.card-content a {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 15px;
  line-height: 150%;
  color: #fff;

  display: flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s;
  margin-top: auto;
}

.card-content a:hover {
  gap: 12px;
}


/* ===== ABOUT ====== */
.about {
  padding: 100px 0px;
  background:
    linear-gradient(227deg, rgba(249, 250, 251, 0.8) 0%, rgba(16, 24, 40, 0.1) 100%),
    #ffffff;
  width: 100%;
}

.about .section-subtitle {
  margin-bottom: 60px;
}

.about-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.about-cards .card {
  border: 1px solid #f3f4f6;
  border-radius: 24px;
  padding: 30px;
  max-width: 100%;
  width: 100%;
  height: 202px;
  background: linear-gradient(135deg, #f9fafb 0%, #fff 100%);

  display: flex;
  flex-direction: column;
  margin: auto;
}

.about-cards .card .icon {
  border-radius: 10px;
  width: 40px;
  height: 40px;
  background: #101828;

  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.35s ease, background 0.35s ease;
}

.about-cards .card:hover .icon {
  transform: scale(1.12) rotate(3deg);
  background: #000;
}

.about-cards .card .icon img {
  width: 25px;
}

.about-cards .card .description {
  margin-top: auto;
}

.about-cards .card .description h2 {
  margin-bottom: 4px;
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 18px;
  line-height: 140%;
  color: #101828;
}

.about-cards .card .description p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 13px;
  line-height: 163%;
  color: #4a5565;
}


/* ===== COMPANY ===== */
.company {
  padding: clamp(60px, 8vw, 100px) 0px;
}

.company-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: clamp(40px, 6vw, 80px);
}

.company .left {
  flex: 1 1 420px;
  display: flex;
  justify-content: center;
}

.company .left-img {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 576px;
  aspect-ratio: 576 / 600;
  border-radius: 24px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  background: linear-gradient(0deg, rgba(16, 24, 40, 0.4) 0%, rgba(0, 0, 0, 0) 100%);
}

.company .left-img {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 20px;
  line-height: 78%;
  color: #000;
}

.company .left-img .card {
  position: absolute;
  border-radius: 16px;
  padding: 32px 32px 0px;
  width: 320px;
  height: 168px;
  background: #fff;
  bottom: -32px;
  right: -32px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  background: #fff;
}

.company .left-img .card h2 {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 48px;
  line-height: 100%;
  color: #101828;
}

.company .left-img .card p {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  color: #4a5565;
}

.company .right {
  flex: 1 1 420px;
  display: flex;
  flex-direction: column;
  /* min-width: 420px; */
}

.company .right .section-title {
  text-align: start;
  margin-bottom: 24px;
  max-width: 600px;
}

.company .right .section-subtitle {
  text-align: start;
  margin-bottom: 24px;
  max-width: 600px;
}

.company .right li {
  max-width: 600px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 14px;
  line-height: 150%;
  color: #364153;

  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  text-align: start;
}

.company .right .section-button {
  margin-top: auto;
  display: inline-block;
  align-self: flex-start;
}

.company .right .section-button svg {
  transform: translateY(20%);
}

/* ===== TRUST ====== */
.trust {
  padding: 180px 0 60px;
}

.trust .companies-container {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  gap: 20px;
  margin-bottom: 80px;
}

.trust .companies-container .bg-company {
  flex: 0 0 256px;   
  border: 1px solid #f3f4f6;
  border-radius: 16px;
  width: 256px;
  min-height: 126px;

  box-shadow: 0 4px 6px -4px rgba(0, 0, 0, 0.1), 0 10px 15px -3px rgba(0, 0, 0, 0.1);

  font-family: var(--second-family);
  font-weight: 700;
  font-size: 20px;
  color: #000;

  display: flex;
  justify-content: center;
  align-items: center;
}
.trust .companies-container .bg-company.c2 {
  background: #000;
}
.trust .companies-container .bg-company.c5 {
  background: #FFFF00;
}
.trust-container .stats {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

.trust-container .stats .card {
  flex: 1;
  border-radius: 16px;
  padding: 32px 32px 0px;
  width: 512px;
  min-width: 180px;
  height: 136px;
  background: #f9fafb;
}

/* ===== CONTACT ===== */
.contact {
  background: linear-gradient(135deg, #101828 0%, #1e2939 50%, #000 100%);
  width: 100%;
  min-height: 100vh;
  height: 100%;
  position: relative;

  padding: 100px 0;
  overflow: hidden;
}

.contact .blur1 {
  position: absolute;
  border-radius: 50px;
  width: 104px;
  height: 104px;
  filter: blur(128px);
  background: #fff;
  top: 0;
  left: 0;
}

.contact .blur2 {
  position: absolute;
  border-radius: 50px;
  width: 104px;
  height: 104px;
  filter: blur(88px);
  background: #fff;
  bottom: 50px;
  right: 15%;
}

.contact-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.contact-container .info {
  max-width: 480px;
  width: 100%;
}

.contact-container .info h1 {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 40px;
  line-height: 125%;
  color: #fff;
  margin-bottom: 20px;

  display: flex;
  align-items: center;
  gap: 20px;
}

.contact-container .info p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 163%;
  color: #d1d5dc;
  margin-bottom: 30px;
}

.contact-container .info h4 {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 16px;
  line-height: 140%;
  color: #fff;
}

.contact-container .info .qa {
  margin-bottom: 22px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  color: #99a1af;
}

.contact-container form {
  border-radius: 24px;
  padding: 32px 32px;
  backdrop-filter: blur(4px);
  background: rgba(217, 217, 217, 0.1);
  width: 100%;
  max-width: 620px;
}

.contact-container form h1 {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 22px;
  line-height: 120%;
  color: #fff;
  margin-bottom: 24px;
}

.contact-container form .row {
  margin-bottom: 16px;
}

.contact-container form .row label {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 12px;
  line-height: 143%;
  color: #669cb3;
  display: block;
  margin-bottom: 4px;
}

.contact-container form .row input {
  border: 1px solid #57646a;
  border-radius: 12px;
  padding: 12px 16px;
  width: 100%;

  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  color: #ccc;
  background: none;
}

.contact-container form .row textarea {
  border: 1px solid #57646a;
  border-radius: 12px;
  padding: 12px 16px;
  width: 100%;
  min-height: 30px;

  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  color: #ccc;
  background: none;
  resize: vertical;
  max-height: 200px;
  margin-bottom: 16px;
}

.contact-container form .row input::placeholder {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  color: #ccc;
  background: none;
}

.contact-container form .section-button {
  width: 100%;
  text-align: center;
  justify-content: center;
}

.contact-container form .section-button:hover {
  background: #3a6b81;
}


/*===== FOOTER ==== */
.footer {
  background: #101828;
  width: 100%;
  padding: 60px 0;
}

.footer-container .top {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.footer-container .top .item {
  flex: 1 1 220px;
  min-width: 200px;
}

.footer-container .top .item h3 {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 24px;
  line-height: 133%;
  color: #fff;
  margin-bottom: 16px;
}

.footer-container .top .item h4 {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 18px;
  line-height: 156%;
  color: #fff;
  margin-bottom: 16px;
}

.footer-container .top .item ul li a {
  display: inline-block;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #99a1af;
  margin-bottom: 8px;
}

.footer-container .top .item p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 163%;
  color: #99a1af;
  margin-bottom: 16px;
}

.footer .socials {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
}

.footer .socials a {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 14px;
  line-height: 143%;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;

  background: rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  transition: 0.4s ease;
}

.footer .socials a:hover {
  background: rgba(255, 255, 255, 0.2);

}

.footer-contacts {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contacts-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.footer-contacts-item .phone-footer {
  margin: 0 !important;
  line-height: 200%;
}

.footer-contacts-item {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #99a1af !important;
}

.footer-contacts-item .phone-footer-link {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 143%;
  color: #6a7282;
}

.footer-container .bottom {
  border-top: 1px solid #1e2939;
  padding: 33px 0px 0px;
  width: 100%;

  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-container .bottom p,
.footer-container .bottom a {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 143%;
  color: #99a1af;
}

.footer-container .bottom .right {
  display: flex;
  align-content: center;
  gap: 24px;
}

.footer a {
  transition: 0.2s ease;
}

.footer a:hover {
  color: #fff !important;
}