/* --- 1. ПЕРЕМЕННЫЕ И СБРОС СТИЛЕЙ --- */
@property --angle-1 {
  syntax: "<angle>";
  inherits: false;
  initial-value: -75deg;
}

@property --angle-2 {
  syntax: "<angle>";
  inherits: false;
  initial-value: -45deg;
}

:root {
  --color-primary: #007AFF;
  --color-primary-light: #91C5FF;
  --color-text: #1D1D1F;
  --color-text-light: #7E868C;
  --color-white: #FFFFFF;
  --color-bg-light: #FAFAFA;
  --color-border: #DDDDDD;
  --color-border-light: #EAEAEA;
  --color-divider: #D9D9D9;

  --gradient-primary: linear-gradient(180deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  --gradient-text-on-dark: linear-gradient(180deg, #999999 1.18%, var(--color-white) 50%, var(--color-white) 98.82%);

  --font-main: 'Inter', sans-serif;
  --font-script: "Playwrite US Trad", cursive;
  --container-width: 1200px;

  --anim--hover-time: 400ms;
  --anim--hover-ease: cubic-bezier(0.25, 1, 0.5, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  background-color: #F6F5F8;
  color: var(--color-text);
  font-size: 18px;
  line-height: 1.5;
  overflow-x: hidden;
}

.laptopMob{
  display: none;
}

/* --- 2. БАЗОВЫЕ СТИЛИ СТРАНИЦЫ --- */
.container {
  max-width: var(--container-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}

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

ul {
  list-style: none;
}

h1, h2, h3, h4 {
  line-height: 1.2;
  font-weight: 700;
}

h1 {
  font-size: 64px;
}

h2 {
  font-size: 40px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 20px;
}

section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
}

.text-script {
  font-family: var(--font-script);
  color: var(--color-primary);
  font-weight: normal;
  font-size: 1.2em;
}



.button-wrap {
  position: relative;
  z-index: 2;
  border-radius: 999vw;
  background: transparent;
  pointer-events: none;
  transition: all var(--anim--hover-time) var(--anim--hover-ease);
  display: inline-block;
}


.button-shadow {
  --shadow-cuttoff-fix: 2em;
  position: absolute;
  width: calc(100% + var(--shadow-cuttoff-fix));
  height: calc(100% + var(--shadow-cuttoff-fix));
  top: calc(0% - var(--shadow-cuttoff-fix) / 2);
  left: calc(0% - var(--shadow-cuttoff-fix) / 2);
  filter: blur(8px);
  -webkit-filter: blur(8px);
  overflow: visible;
  pointer-events: none;
}


.button-shadow::after {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  border-radius: 999vw;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.1));
  width: calc(100% - var(--shadow-cuttoff-fix) - 0.25em);
  height: calc(100% - var(--shadow-cuttoff-fix) - 0.25em);
  top: calc(var(--shadow-cuttoff-fix) - 0.5em);
  left: calc(var(--shadow-cuttoff-fix) - 0.875em);
  padding: 0.125em;
  box-sizing: border-box;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  transition: all var(--anim--hover-time) var(--anim--hover-ease);
  overflow: visible;
  opacity: 1;
}

.btn-glass {
  --border-width: 1px;
  all: unset;
  cursor: pointer;
  position: relative;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  pointer-events: auto;
  color: white;
  z-index: 3;
  background: linear-gradient(-75deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.05));
  border-radius: 999vw;
  box-shadow: inset 0 0.125em 0.125em rgba(0, 0, 0, 0.05), inset 0 -0.125em 0.125em rgba(255, 255, 255, 0.5), 0 0.25em 0.125em -0.125em rgba(0, 0, 0, 0.2), 0 0 0.1em 0.25em inset rgba(255, 255, 255, 0.2), 0 0 0 0 rgba(255, 255, 255, 1);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: all var(--anim--hover-time) var(--anim--hover-ease);
  display: inline-flex;
}

.btn-glass:hover {
  transform: scale(0.975);
  box-shadow: inset 0 0.125em 0.125em rgba(0, 0, 0, 0.05), inset 0 -0.125em 0.125em rgba(255, 255, 255, 0.5), 0 0.15em 0.05em -0.1em rgba(0, 0, 0, 0.25), 0 0 0.05em 0.1em inset rgba(255, 255, 255, 0.5), 0 0 0 0 rgba(255, 255, 255, 1);
}

.btn-glass span {
  position: relative;
  display: block;
  user-select: none;
  font-family: 'Inter', sans-serif;
  letter-spacing: -0.02em;
  font-weight: 500;
  font-size: 16px;
  color: white;
  transition: all var(--anim--hover-time) var(--anim--hover-ease);
  padding: 16px 24px;
}

.btn-glass:hover span {
  text-shadow: 0.025em 0.025em 0.025em rgba(0, 0, 0, 0.12);
}

/* Блик на тексте */
.btn-glass span::after {
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  width: calc(100% - var(--border-width));
  height: calc(100% - var(--border-width));
  top: calc(0% + var(--border-width) / 2);
  left: calc(0% + var(--border-width) / 2);
  box-sizing: border-box;
  border-radius: 999vw;
  overflow: clip;
  background: linear-gradient(var(--angle-2), rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 40% 50%, rgba(255, 255, 255, 0) 55%);
  z-index: 3;
  mix-blend-mode: screen;
  pointer-events: none;
  background-size: 200% 200%;
  background-position: 0% 50%;
  background-repeat: no-repeat;
  transition: background-position calc(var(--anim--hover-time) * 1.25) var(--anim--hover-ease), --angle-2 calc(var(--anim--hover-time) * 1.25) var(--anim--hover-ease);
}

.btn-glass:hover span::after {
  background-position: 25% 50%;
}

.btn-glass:active span::after {
  background-position: 50% 15%;
  --angle-2: -15deg;
}

/* Светящаяся обводка */
.btn-glass::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  border-radius: 999vw;
  width: calc(100% + var(--border-width));
  height: calc(100% + var(--border-width));
  top: calc(0% - var(--border-width) / 2);
  left: calc(0% - var(--border-width) / 2);
  padding: var(--border-width);
  box-sizing: border-box;
  /*background: conic-gradient(from var(--angle-1) at 50% 50%, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0) 5% 40%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0) 60% 95%, rgba(0, 0, 0, 0.5)), linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5));*/
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  transition: all var(--anim--hover-time) var(--anim--hover-ease), --angle-1 500ms ease;
  box-shadow: inset 0 0 0 calc(var(--border-width) / 2) rgba(255, 255, 255, 0.5);
}

.btn-glass:hover::after {
  --angle-1: -125deg;
}

.btn-glass:active::after {
  --angle-1: -75deg;
}

/* Эффекты для обертки при наведении/клике */
.button-wrap:has(.btn-glass:hover) .button-shadow {
  filter: blur(6px);
  -webkit-filter: blur(6px);
  transition: filter var(--anim--hover-time) var(--anim--hover-ease);
}

.button-wrap:has(.btn-glass:hover) .button-shadow::after {
  top: calc(var(--shadow-cuttoff-fix) - 0.875em);
  opacity: 1;
}

.button-wrap:has(.btn-glass:active) {
  transform: rotate3d(1, 0, 0, 25deg);
}

.button-wrap:has(.btn-glass:active) .button-shadow {
  filter: blur(12px);
  -webkit-filter: blur(12px);
}

.button-wrap:has(.btn-glass:active) .button-shadow::after {
  top: calc(var(--shadow-cuttoff-fix) - 0.5em);
  opacity: 0.75;
}

.button-wrap:has(.btn-glass:active) span {
  text-shadow: 0.025em 0.25em 0.05em rgba(0, 0, 0, 0.12);
}





.btn-primary {
  background: var(--gradient-primary);
  color: var(--color-white);
  border: 1px solid rgba(0, 0, 0, 0.15);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.site-header {
  padding: 20px 0;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 10;
}

.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0
}

.logo {
  font-size: 32px;
  font-weight: 700;
  color: var(--color-text);
  position: relative;
  padding-right: 50px;
}

.logo-pro {
  position: absolute;
  top: 0px;
  right: 20px;
  background: var(--color-primary);
  color: var(--color-white);
  font-size: 10px;
  font-weight: 600;
  padding: 4px 12px;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.44);
  border-radius: 50px;
}

.main-nav {
  display: flex;
  align-items: center;
  background: var(--gradient-primary);
  border-radius: 40px;
  padding: 8px;
  gap: 20px;
}

.main-nav ul {
  display: flex;
  gap: 10px;
  align-items: center;
}

.main-nav ul a {
  padding: 12px;
  display: block;
  font-size: 16px;
  background: var(--gradient-text-on-dark);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  mix-blend-mode: screen;
  transition: opacity 0.3s;
}

.main-nav ul a:hover {
  opacity: 0.8;
}

.hero-section {
  padding-top: 105px;
  padding-bottom: 30px;
}

.hero-section .container {
  background: url("../img/background.png");
  background-size: cover;
  background-position: center;
  border-radius: 36px;
  padding: 44px;
  display: flex;
  align-items: center;
  gap: 32px;
  height: 600px;
}

.hero-text {
  flex: 0 0 540px;
  color: var(--color-white);
}

.hero-text h1 {
  line-height: 1;
  margin-bottom: 20px;
}

.hero-text p {
  line-height: 1.4;
  margin-bottom: 60px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  align-items: center;
}

.benefits-section {
  padding-top: 30px;
}

.laptop{
  width: 650px;
  position: relative;
  right: -70px;
}
.benefits-container {
  display: flex;
  gap: 32px;
  align-items: center;
}

.benefits-text {
  flex: 1;
}

.benefit-card:nth-child(3){
  height: 130px;
}

.benefits-text h2 {
  margin-bottom: 24px;
  line-height: 1.1;
}

.benefits-cards {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.benefit-card {
  background: var(--gradient-primary);
  color: var(--color-white);
  padding: 24px 24px 24px 36px;
  border-radius: 16px;
  font-weight: 500;
  line-height: 1.4;
  position: relative;
  box-shadow: inset 0px -2px 15px rgba(255, 255, 255, 0.25);
  /*min-height: 108px;*/
}



.benefit-card::before {
  content: '';
  position: absolute;
  top: -12px;
  left: -12px;
  width: 28px;
  height: 28px;
  background-size: contain;
}

.services-section {
  position: relative;
}

.markYes{
  position: absolute;
  top: -40px;
  left: -40px;
  z-index: 10;
}

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


.service-card {
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  /*box-shadow: 0px 10px 23px rgba(0, 0, 0, 0.08);*/
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.1);
}

.card-header {
  display: flex;
  align-items: center;
  gap: 16px;
}

.lottie-animation-container {
  width: 68px;
  height: 68px;
  flex-shrink: 0;
}

.card-header h3 {
  line-height: 1.1;
}

.service-card p {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
}

.stats-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.stats-container {
  display: flex;
  justify-content: space-around;
  width: 100%;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 64px;
  font-weight: 800;
  line-height: 1;
}

.stat-label {
  font-size: 20px;
  font-weight: 500;
  margin-top: 8px;
}

.process-section .section-title {
  margin-bottom: 32px;
}

.tab-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--gradient-primary);
  border-radius: 40px;
  padding: 8px;
  margin-bottom: 32px;
}

.tab-link {
  flex-grow: 1;
  border: none;
  background-color: transparent;
  padding: 12px 24px;
  cursor: pointer;
  font-size: 16px;
  font-family: var(--font-main);
  border-radius: 100px;
  transition: all 0.3s ease;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 400;
}

.tab-link:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
}

.tab-link.active {
  font-weight: 600;
  color: white;
  cursor: pointer;
  position: relative;
  text-align: center;
  justify-content: center;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  pointer-events: auto;
  color: white;
  z-index: 3;
  background: linear-gradient(-75deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.05));
  border-radius: 999vw;
  box-shadow: inset 0 0.125em 0.125em rgba(0, 0, 0, 0.05), inset 0 -0.125em 0.125em rgba(255, 255, 255, 0.5), 0 0.25em 0.125em -0.125em rgba(0, 0, 0, 0.2), 0 0 0.1em 0.25em inset rgba(255, 255, 255, 0.2), 0 0 0 0 rgba(255, 255, 255, 1);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: all var(--anim--hover-time) var(--anim--hover-ease);
  display: inline-flex;
  padding: 12px 24px;
}



.tab-content {
  display: none;
  gap: 48px;
  align-items: center;
  padding: 0 36px;
}

.tab-content.active {
  display: flex;
}

.tab-text {
  flex: 1;
}

.tab-text h3 {
  margin-bottom: 16px;
  line-height: 1.2;
}

.tab-text p {
  margin-bottom: 24px;
  font-weight: 500;
}

.tab-text ul {
  list-style: '•  ';
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.tab-text ul li {
  font-weight: 500;
}

.tab-text ul li strong {
  font-weight: 700;
  color: var(--color-text);
}

.tab-image {
  flex: 1;
}

.tab-image img {
  max-width: 100%;
  height: auto;
}

.faq-section .section-subtitle {
  text-align: center;
  max-width: 900px;
  margin: -20px auto 40px auto;
  font-weight: 500;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  border-bottom: 2px solid var(--color-divider);
  padding-bottom: 10px;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  cursor: pointer;
  gap: 20px;
}

.faq-question h4 {
  font-weight: 700;
  padding: 10px 0;
}

.faq-toggle {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  margin-top: 5px;
  background: var(--gradient-primary);
  box-shadow: inset 0px -2px 10px rgba(255, 255, 255, 0.2), inset 0px 1px 1px rgba(255, 255, 255, 0.4), 0px 4px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.faq-toggle:hover {
  transform: translateY(-2px);
  box-shadow: inset 0px -2px 10px rgba(255, 255, 255, 0.2), inset 0px 1px 1px rgba(255, 255, 255, 0.4), 0px 6px 12px rgba(0, 0, 0, 0.15);
}

.faq-toggle::before, .faq-toggle::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 3px;
  background-color: white;
  border-radius: 3px;
  transform-origin: center;
  transition: transform 0.3s ease-in-out;
}

.faq-toggle::before {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.open .faq-toggle::before {
  transform: translate(-50%, -50%) rotate(180deg);
}

.faq-item.open .faq-toggle::after {
  transform: translate(-50%, -50%) rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
}

.faq-answer p {
  padding-right: 64px;
  font-weight: 500;
  line-height: 1.6;
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

.contact-section {
  padding-bottom: 100px;
}

.contact-container {
  display: flex;
  gap: 80px;
  align-items: flex-start;
}

.company-info {
  flex-basis: 50%;
  flex-shrink: 0;
}

.company-info h3 {
  font-size: 40px;
  margin-bottom: 18px;
}

.company-info p {
  font-weight: 500;
  font-size: 16px;
}

.company-info a {
  font-weight: 500;
  font-size: 16px;
}

.contact-form {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 16px;
  color: var(--color-text-light);
}

.form-group input, .form-group textarea {
  width: 100%;
  padding: 14px;
  background: var(--color-bg-light);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  font-family: var(--font-main);
  font-size: 16px;
}

.form-group textarea {
  resize: vertical;
  height: 100px;
}

.site-footer-main {
  padding: 50px 20px 30px;
}

.footer-container {
  background: var(--gradient-primary);
  border-radius: 36px;
  padding: 44px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.footer-left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-self: stretch;
}

.logo-footer {
  font-size: 32px;
  font-weight: 700;
  color: var(--color-white);
  position: relative;
  padding-right: 50px;
  display: inline-block;
}

.logo-pro-footer {
  position: absolute;
  top: 0px;
  right: 15px;
  background: var(--color-white);
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.44);

  color: var(--color-primary);
  font-size: 10px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
}

.footer-company-details {
  margin-top: 16px;
  font-size: 10px;
  font-weight: 500;
  color: var(--color-white);
}

.footer-company-details p {
  margin-bottom: 4px;
}



.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: flex-start;
}

.footer-nav a {
  padding: 12px;
  background: var(--gradient-text-on-dark);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  mix-blend-mode: screen;
  font-size: 16px;
  transition: opacity 0.3s;
}

.footer-nav a:hover {
  opacity: 0.8;
}

.lang-switcher span{
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
}

.lang-switcher .btn-inner {
  padding: 15px 24px;
}

.ourservice{
  position: relative;
}

.backgroundLogo{
  position: absolute;
  pointer-events: none;
  width: 100%;
  bottom: -2200px;
  left: 0;
}

.lang-flag {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  object-fit: cover;
}

.lang-switcher .arrow-down {
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid var(--color-white);
  mix-blend-mode: screen;
}


.burger-menu-btn {
  display: none;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  z-index: 1001;
  background: var(--gradient-primary);
  box-shadow:
    inset 0px -2px 10px rgba(255, 255, 255, 0.2),
    inset 0px 1px 1px rgba(255, 255, 255, 0.4),
    0px 4px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.burger-menu-btn:hover {
  transform: translateY(-2px);
  box-shadow:
    inset 0px -2px 10px rgba(255, 255, 255, 0.2),
    inset 0px 1px 1px rgba(255, 255, 255, 0.4),
    0px 6px 12px rgba(0, 0, 0, 0.15);
}

/* Общие стили для всех трех линий */
.burger-menu-btn span,
.burger-menu-btn::before,
.burger-menu-btn::after {
  content: '';
  position: absolute;
  left: 50%;
  width: 18px;
  height: 3px;
  background-color: white;
  border-radius: 3px;
  transform-origin: center;
  transition: all 0.3s ease-in-out;
}

/* Позиционирование линий */
.burger-menu-btn::before {
  transform: translate(-50%, -50%) translateY(-6px);
}
.burger-menu-btn span {
  transform: translate(-50%, -50%);
}
.burger-menu-btn::after {
  transform: translate(-50%, -50%) translateY(6px);
}


.mobile-menu-open .burger-menu-btn::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.mobile-menu-open .burger-menu-btn span {
  transform: translate(-50%, -50%) scaleX(0);
}
.mobile-menu-open .burger-menu-btn::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  z-index: 1000;
  padding: 120px 20px 40px;
  flex-direction: column;
  align-items: center;
}

.mobile-menu-open .mobile-menu {
  display: flex;
}

.mobile-menu .mobile-nav-links {
  background: linear-gradient(180deg, #007aff 0%, #3da1ff 40%, #91c5ff 100%);
  width: 100%;
  max-width: 500px;
  height: 550px;
  border-radius: 36px;
  display: flex;
  flex-direction: column;
  padding: 35px;
  gap: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.mobile-menu .mobile-nav-links a {
  color: white;
  font-size: 24px;
  font-weight: 500;
  opacity: 0.8;
  transition: opacity 0.3s;
}

.mobile-menu .mobile-nav-links a:hover {
  opacity: 1;
}

.mobile-menu .button-wrap {
  position: absolute;
  bottom: 120px;
}
body.mobile-menu-open {
  overflow: hidden;
}
.mobile-menu .btn-glass span {
  color: white;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
}

@media (max-width: 1260px) {
  .site-header .container{
    padding: 0 15px;
  }
  .faq-answer p{
    overflow: auto;
  }
  .desktop-nav {
    display: none;
  }
  .burger-menu-btn {
    display: block;
  }
  .services-grid{
    display: flex;
    flex-wrap: wrap;
  }

  .laptop{
    display: none;
  }


  .hero-section .container{
    height: auto;
  }
  .hero-text{
    flex: auto;
  }
  .hero-section{
    padding: 100px 20px 0;
  }
 .benefits-container{
    flex-direction: column;
  }

}
/*//////////////////////*/




.services-section .section-title {
  text-align: left;
}

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

.service-card {
  height: 100%;
}

.carousel-pagination {
  display: none;
}

@media (max-width: 1024px) {
  .services-carousel {
    grid-template-columns: repeat(2, 1fr);
  }
  .laptopMob{
    display: block;
    width: 50%;
  }
}

@media (max-width: 700px) {

  .service-card:hover {
    transform: translateY(0px);
    box-shadow: 0px 20px 40px rgba(0, 0, 0, 0);
  }

  .faq-section .section-subtitle{
    text-align: left;
  }
  section{
    padding: 30px 0;
  }
  .benefit-card:nth-child(3){
    height: auto;
  }
  .hero-text h1{
    font-size: 32px;
  }
  .stats-container{
    flex-direction: column;
    gap: 38px;
  }
  .faq-item.open .faq-answer {
    min-height: 200px;
    max-height: unset;
  }
  .faq-answer p{
    overflow: unset;
    min-height: 100px;
  }
  .benefits-cards{
    display: flex;
    flex-direction: column;
    margin: 0 10px;
  }

  .laptopMob{
    display: block;
    width: 100%;
    margin: 0 auto 20px ;
  }

  /*.services-section .section-title {*/
  /*  text-align: center;*/
  /*}*/

  .services-carousel {
    display: block;
    position: relative;
    overflow: hidden;
    min-height: 367px;
  }
.services-carousel-wrapper{

}
  .services-carousel .service-card {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease-in-out, visibility 0.4s, transform 0.4s ease-in-out;
  }

  .services-carousel .service-card.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
  }

  .carousel-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
  }


  .carousel-pagination .dot {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    cursor: pointer;
    border: none;
    padding: 0;
    transition: all 0.3s ease;

    background: linear-gradient(180deg, #3da1ff 0%, #007aff 100%);
    box-shadow:
      inset 0 0.5px 1px rgba(255, 255, 255, 0.5),
      0 2px 4px rgba(0, 0, 0, 0.1);
  }

  .carousel-pagination .dot.active {
    background: linear-gradient(180deg, #91c5ff, #3da1ff);
    position: relative;
    opacity: 1;
  }

  .carousel-pagination .dot.active::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background-color: white;
    border-radius: 50%;
  }
}
.desktop-tab-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--gradient-primary);
  border-radius: 40px;
  padding: 8px;
  margin-bottom: 32px;
}

.mobile-carousel-nav, .process-carousel-pagination {
  display: none;
}

@media (max-width: 800px) {
  h2  {
    font-size: 32px;
  }
  .benefits-text h2{
    font-size: 24px !important;
  }
  .container {
    padding-left: 20px !important;
    padding-right: 20px !important;
    padding-top: 20px !important;
    padding-bottom: 20px !important;
  }
  .btn-glass span{
    padding: 16px;
  }
  .contact-container button{
    width: 96% !important;
  }
  .footer-container{
    flex-direction: column;
  }
  .contact-container{
    display: flex;
    flex-direction: column;
  }
  .contact-container{
    gap: 20px;
  }
  .contact-form{
    width: 100%;
  }
  .tab-content{
    align-items: unset;
  }
.footer-left{
  gap: 20px;
}
.footer-nav{
  position: relative;
  left: -10px;
}

  .contact-section{
    padding-bottom: 30px;
    margin-bottom: 10px;
  }
  .tab-content-wrapper{
    height: 500px;
    margin-top: 30px;
    margin-bottom: 30px;
    overflow: auto;
  }
  .company-info{
    flex-basis: 140px ;
  }
  .tab-image{
    display: none;
  }
  .desktop-tab-nav {
    display: none;
  }
  .mobile-carousel-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    background: var(--gradient-primary);
    border-radius: 40px;
    padding: 8px;
    margin-bottom: 30px;
  }
  .nav-arrow {
    width: 44px; height: 44px; border: none; border-radius: 50%;
    cursor: pointer; background: rgba(255,255,255,0.1);
    display: flex; align-items: center; justify-content: center;
    transition: background-color 0.3s;
  }
  .nav-arrow:hover { background: rgba(255,255,255,0.2); }
  .nav-arrow::before {
    content: ''; width: 10px; height: 10px;
    border-top: 2px solid white; border-left: 2px solid white;
  }
  .prev-arrow::before { transform: rotate(-45deg); }
  .next-arrow::before { transform: rotate(135deg); }

  .current-slide-display {
    font-weight: 600; padding: 12px 24px; color: white;
    background: rgba(255, 255, 255, 0.2); border-radius: 30px;
  }

  .tab-content-wrapper {
    position: relative;
    transition: height 0.4s ease-in-out;
    /*min-height: 480px;*/
  }
  .tab-content {
    display: flex;
    position: absolute; width: 100%; height: 100%; top: 0; left: 0;
    opacity: 0; visibility: hidden;
    transition: opacity 0.4s ease-in-out, visibility 0.4s;
  }
  .tab-content.active {
    opacity: 1; visibility: visible; z-index: 1;
  }

  .process-carousel-pagination {
    display: flex; justify-content: center; gap: 10px; margin-top: 30px;
  }
  .process-carousel-pagination .dot {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    cursor: pointer;
    border: none;
    padding: 0;
    transition: all 0.3s ease;

    background: linear-gradient(180deg, #3da1ff 0%, #007aff 100%);
    box-shadow:
      inset 0 0.5px 1px rgba(255, 255, 255, 0.5),
      0 2px 4px rgba(0, 0, 0, 0.1);
  }
  .process-carousel-pagination .dot.active {
    opacity: 1; position: relative;
    background: linear-gradient(180deg, #91c5ff, #3da1ff);
  }
  .process-carousel-pagination .dot.active::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background-color: white;
    border-radius: 50%;
  }
}
