/* loader removed */
/* === ОСНОВНАЯ ШАПКА ============================================= */
html {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  overflow-x: hidden;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Nunito Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #111;
  min-height: 100vh;
  overflow-x: hidden;
}

body {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
}

main {
  flex: 1;
  margin: 0;
  padding: 0;
}

.floating-header {
  position: absolute;
  top: 48px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;

  z-index: 1000;
}

.site-logo {
  position: fixed; /* как было */
  left: 24px;
  top: 10px;
  z-index: 1001;
  pointer-events: auto;

  /* подложка-круг */
  background: #fff;
  border-radius: 50%;
  padding: 6px; /* толщина белой окантовки */
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);

  display: flex; /* центрируем картинку */
  align-items: center;
  justify-content: center;
}
.site-logo img {
  height: 40px;
  width: 50px; /* чуть меньше, чтобы влезало в круг */
}

/* ------ островок (desktop) ------ */
.island-nav {
  position: relative;
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 0 40px;
  height: 72px;
  width: max-content;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(12px);
  border-radius: 9999px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  transition: max-width 0.4s, height 0.35s, padding 0.35s;
  pointer-events: auto;
}

.nav-marker {
  position: absolute;
  left: 0;
  top: 50%;
  height: 36px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 9999px;
  transform: translateY(-50%);
  transition: width 0.35s, transform 0.35s;
  pointer-events: none;
}

/* ссылки desktop */
.nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 32px;
}
.nav a {
  font-weight: 600;
  font-size: 16px;
  color: #fff;
  text-decoration: none;
  padding: 6px 0;
  position: relative;
}
.nav a::after {
  content: \"\";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: #fff;
  transition: 0.25s;
}
.nav a:hover::after,
.nav .current-menu-item > a::after {
  width: 100%;
}

/* ------ бургер-иконка ------ */
.burger {
  display: none;
  flex-direction: column;
  gap: 4px;
  width: 26px;
  height: 20px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0 3px;
}
.burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  transition: 0.3s;
}
.burger.is-active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.burger.is-active span:nth-child(2) {
  opacity: 0;
}
.burger.is-active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}
.side-panel,
.side-overlay {
  display: none; /* ←  скрыты на ширине > 992 px */
}
/* базовый бургер (десктоп: display:none) */
.burger {
  position: fixed; /* фиксируем к экрану */
  top: 12px;
  right: 24px; /* ← можно подогнать */
  width: 48px;
  height: 48px;
  display: none; /* покажем в media-блоке */
  background: #000;
  border: none;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  z-index: 1201;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.burger span {
  width: 24px;
  height: 2px;
  background: #fff;
  transition: 0.3s;
}

.burger.is-active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.burger.is-active span:nth-child(2) {
  opacity: 0;
}
.burger.is-active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ====== media ≤ 992 px ====== */
@media (max-width: 992px) {
  .floating-header {
    pointer-events: auto;
  }
  /* бургер виден */
  .burger {
    display: flex;
  }

  /* скрываем «остров» целиком */
  .island-nav {
    display: none;
  }

  /* боковая панель / overlay остаются
       (предыдущие правила side-panel / side-overlay) */
}

/* === MOBILE SIDE-PANEL (≤ 992 px) =============================== */
@media (max-width: 992px) {
  .burger {
    display: flex;
  }
  .side-panel,
  .side-overlay {
    display: block; /* ←  показываем только в mobile */
  }
  /* кружок до раскрытия */
  .island-nav {
    justify-content: center;
    max-width: 56px;
    height: 56px;
    padding: 0;
    overflow: hidden;
  }
  .nav {
    display: none;
  }
  .nav-marker {
    display: none;
  }

  /* раскрытая */
  .island-nav.open {
    max-width: calc(100vw - 48px);
    height: 60px;
    padding: 0 28px;
  }

  /* панель */
  .side-panel {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 80vw;
    max-width: 320px;
    background: #111;
    padding: 96px 28px 40px;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1200;
    overflow-y: auto;
  }
  .side-nav {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  .side-nav a {
    color: #fff;
    font: 600 20px/1 \"Nunito Sans\",sans-serif;
    text-decoration: none;
  }
  .side-nav li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 8px;
  }

  /* overlay */
  .side-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s;
    z-index: 1190;
  }
}



  body.menu-open .side-panel {
    transform: translateX(0);
  }
  body.menu-open .side-overlay {
    opacity: 1;
    pointer-events: auto;
  }
}


.hero-slider {
  position: relative;
  overflow: hidden;
}
.hero-slider .swiper {
  width: 100%;
  height: 97vh;
}
.hero-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* точки */
.swiper-pagination-bullet {
  background: #ffffff;
  opacity: 0.6;
}
.swiper-pagination-bullet-active {
  opacity: 1;
}

/* стрелки */
.swiper-button-prev,
.swiper-button-next {
  color: #fff;
}

/* плавность fade */
.swiper-fade .swiper-slide {
  transition-property: opacity;
}
/* ===== HERO TEXT – уголок баннера ======================= */
.hero-text {
  position: absolute;
  bottom: 5%; /* отступ от низа баннера */
  left: 5%; /* отступ от левого края */
  transform: none; /* убираем центрирование */
  max-width: 320px; /* ограничиваем ширину, чтобы текст не растягивался */
  text-align: left;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
  pointer-events: auto;
  z-index: 30;
}

.hero-text h1 {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 700;
  margin: 0 0 12px;
  line-height: 1.2;
}

.hero-text p {
  font-size: clamp(14px, 2.2vw, 16px);
  margin: 0 0 20px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.85);
}

.hero-text .btn--accent {
  display: inline-block;
  font-size: 14px;
  padding: 12px 24px;
  background: linear-gradient(135deg, #0066ff 0%, #1e7bff 100%);
  color: #fff;
  box-shadow: 0 6px 20px rgba(30, 123, 255, 0.3);
  border-radius: 6px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-text .btn--accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(30, 123, 255, 0.5);
}

/* Company Logo Overlay */
.company-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  text-align: center;
}

.logo-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.logo-main {
  font-family: "Nunito Sans", Arial, sans-serif;
  font-size: 4.5rem;
  font-weight: 700;
  color: #2c3e50;
  text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.8);
  letter-spacing: 2px;
  line-height: 1;
}

.logo-sub {
  font-family: "Nunito Sans", Arial, sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #3498db;
  text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.8);
  letter-spacing: 1px;
  line-height: 1;
}

/* Адаптив на мобильных экранах */
@media (max-width: 768px) {
  .hero-text {
    bottom: 12%;
    left: 6%;
    max-width: 260px;
  }
  .hero-text h1 {
    font-size: clamp(20px, 5vw, 28px);
  }
  .hero-text p {
    font-size: 14px;
    margin-bottom: 16px;
  }
  .hero-text .btn--accent {
    padding: 10px 20px;
    font-size: 13px;
  }
  
  /* Company Logo Mobile */
  .logo-main {
    font-size: 3rem;
    letter-spacing: 1px;
  }
  
  .logo-sub {
    font-size: 1.5rem;
    letter-spacing: 0.5px;
  }
}
/* ----- Hero Services Pills (Вариант B) ----- */
/* ===== Hero Services Pills Base ===== */
.hero-services--pills {
  position: absolute;
  bottom: 5%;
  right: 5%;
  display: flex;
  gap: 12px;
  z-index: 30;
  pointer-events: auto;
}
.hero-services--pills a {
  padding: 8px 16px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  border-radius: 20px;
  font-size: 14px;
  text-decoration: none;
  transition: background 0.25s ease, transform 0.2s ease;
}
.hero-services--pills a:hover {
  background: rgba(30, 123, 255, 0.9);
  transform: translateY(-2px);
}

/* -------- Tablet (<=768px) -------- */
@media (max-width: 768px) {
  .hero-services--pills {
    bottom: 8%;
    right: 4%;
    gap: 8px;
  }
  .hero-services--pills a {
    font-size: 13px;
    padding: 6px 12px;
  }
}

/* -------- Mobile (<=480px) -------- */
@media (max-width: 480px) {
  .hero-services--pills {
    flex-direction: column;
    bottom: 6%;
    right: 5%;
    left: 5%; /* растягиваем на весь доступный экран */
    width: auto;
    gap: 8px;
  }
  .hero-services--pills a {
    width: 100%;
    text-align: center;
    padding: 10px 0;
    font-size: 15px;
    border-radius: 8px;
  }
  
  /* Company Logo Small Mobile */
  .logo-main {
    font-size: 2.5rem;
    letter-spacing: 0.5px;
  }
  
  .logo-sub {
    font-size: 1.2rem;
    letter-spacing: 0.3px;
  }
}
@media (max-width: 990px) {
  .hero-services--pills {
    display: none;
  }
}

/* =============== CAR LEASE / BUY CALCULATOR =============== */
.calc-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  padding: 80px 20px;
  background: #f5f5f7;
  font-family: -apple-system, Helvetica, Arial, sans-serif;
}

/* ---------- CARD (левая) ---------- */
.calc-card {
  flex: 1 1 360px;
  max-width: 420px;
  position: relative; /* нужно для выреза */
  overflow: visible; /* разрешаем кнопке «торчать» */
  background: #fff;
  border: 1px solid #f0f0f0;
  border-radius: 20px;
  padding: 32px 28px 0; /* низ = 0, карман создаст отступ */
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}
/* вырез в нижней рамке */
.calc-card::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  translate: -50% 0;
  width: calc(100% - 48px); /* 24-паддинги */
  height: 44px; /* чуть > половины кнопки */
  background: #fff; /* тот же фон, что карта */
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  pointer-events: none;
}

.calc-title {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 8px;
}
.calc-desc {
  font-size: 14px;
  color: #666;
  margin: 0 0 32px;
  line-height: 1.5;
}

/* ---------- FORM ---------- */
.calc-form {
  display: grid;
  gap: 26px;
  padding-bottom: 60px; /* Дополнительный отступ для компенсации удаленного поля */
}

.calc-row label {
  display: block;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 10px;
  color: #333;
}
.range-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}
.range-wrap input[type="range"] {
  flex: 1;
  
  height: 6px;
  background: #f0f0f0;
  border-radius: 3px;
  outline: none;
}
.range-wrap input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #ff375f;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  transition: background 0.2s;
}
.range-wrap input[type="range"]::-webkit-slider-thumb:hover {
  background: #d6283b;
}
.range-wrap output {
  min-width: 72px;
  text-align: right;
  font-weight: 600;
  font-size: 14px;
}

/* ---------- КНОПКА + карман ---------- */
.calc-btn-wrap {
  position: relative;
  padding-bottom: 44px;
} /* высота выреза */
.calc-btn {
  position: absolute;
  left: 50%;
  bottom: -22px;
  translate: -50% 0; /* половина выступает */
  z-index: 2;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 100%;
  max-width: 260px;
  padding: 14px 32px;

  background: #1978ff;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  box-shadow: 0 8px 18px rgb(0 69 255 / 35%);
  transition: transform 0.15s, box-shadow 0.15s;
}
.calc-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(214, 40, 59, 0.45);
}
/* белый кружок со стрелкой */
.calc-btn::after {
  content: "";
  flex: 0 0 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23d6283b'><path d='M13.172 12l-4.95-4.95 1.414-1.414L16 12l-6.364 6.364-1.414-1.414z'/></svg>")
    center/60% no-repeat;
}

/* ---------- RESULT ---------- */
.calc-result {
  margin-top: 28px;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  color: #333;
}
.calc-result span {
  display: block;
  font-size: 32px;
  color: #ff375f;
  margin-top: 6px;
}

/* ---------- RIGHT INFO CARD ---------- */
.calc-info {
  flex: 1 1 280px;
  max-width: 340px;
  background: #fff;
  border: 1px solid #f0f0f0;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}
.calc-info h4 {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 12px;
}
.calc-info p {
  font-size: 14px;
  color: #555;
  margin-bottom: 18px;
  line-height: 1.5;
}
.calc-info img {
  width: 100%;
  border-radius: 14px;
  object-fit: cover;
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  .calc-info {
    max-width: 420px;
  }
}
/* === виїжджаюча машина ===================== */
.calc-info{
  position:relative;          /* основу робимо контекстом */
  overflow:visible;           /* дозволяємо елементам «вилазити» */
  padding-bottom:140px;       /* запас під машину */
}

.calc-car{
position: absolute;
    left: 45%;
    bottom: -65px;
    translate: -50% 0;
    width: 110%;
    pointer-events: none;     /* не перекриває кліки */
    z-index: 1;
}
.calc-car img{
  width:100%;
  display:block;
  border-radius:14px;
  
}

/* маскуємо нижню рамку картки, щоб було «вирізано» */
.calc-info::after{
  content:"";
  position:absolute;
  left:0;right:0;bottom:0;
  height:60px;                /* те саме що -bottom у .calc-car */
  background:#ffffff;         /* фон секції позаду карти */
  border-bottom-left-radius:20px;
  border-bottom-right-radius:20px;
  pointer-events:none;
}
/* ===== result in right card ===== */
.calc-info__result{
  margin:20px 0 12px;
  padding:16px 20px;
  background:#f5f8ff;
  border:1px solid #e0e8ff;
  border-radius:12px;
  font-weight:600;
  font-size:20px;
  color:#1e40ff;
  text-align:center;
  box-shadow:0 4px 12px rgba(0,0,0,.06);
  position: relative;
  z-index: 10;
}


/* підпис під рядком карток */
.calc-wrapper{
  display:flex;
  gap:32px;          /* як і було */
  flex-wrap:wrap;    /* дає елементам переноситися */
}

.calc-disclaimer{
  flex-basis:100%;   /* займає всю ширину ряду */
  order:99;          /* йде після карток */
  margin:24px 0 0;   /* відступ згори */
  font-size:13px;
  line-height:1.4;
  color:#777;
  text-align:center; /* якщо хочете по середині */
}

/* Стили для инпутов */
.input {
    border: none;
    padding: 1rem;
    border-radius: 1rem;
    background: #e8e8e8;
    box-shadow: 20px 20px 60px #c5c5c5,
            -20px -20px 60px #ffffff;
    transition: 0.3s;
}

.input:focus {
    outline-color: #e8e8e8;
    background: #e8e8e8;
    box-shadow: inset 20px 20px 60px #c5c5c5,
            inset -20px -20px 60px #ffffff;
    transition: 0.3s;
}

/* Стили для селектов */
select {
    border: none;
    padding: 1rem;
    border-radius: 1rem;
    background: #e8e8e8;
    box-shadow: 20px 20px 60px #c5c5c5,
            -20px -20px 60px #ffffff;
    transition: 0.3s;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
    padding-right: 2.5rem;
}

select:focus {
    outline-color: #e8e8e8;
    background: #e8e8e8;
    box-shadow: inset 20px 20px 60px #c5c5c5,
            inset -20px -20px 60px #ffffff;
    transition: 0.3s;
}

/* === LEASING INFORMATION SECTION ============================================= */
.leasing-info-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  overflow: hidden;
}

.leasing-info-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23ffffff" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="%23ffffff" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  pointer-events: none;
}

.leasing-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.leasing-title {
  font-size: 3rem;
  font-weight: 800;
  color: #2c3e50;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #3498db, #2980b9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeInUp 0.8s ease-out;
}

.leasing-subtitle {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.leasing-content {
  position: relative;
  z-index: 2;
}

/* How it works section */
.leasing-how-it-works {
  margin-bottom: 80px;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.section-subtitle {
  font-size: 2.2rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 15px;
  text-align: center;
}

.section-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #666;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
}

.steps-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.step-item {
  background: white;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.8s ease-out;
}

.step-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.step-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #3498db, #27ae60);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.step-item:hover::before {
  transform: scaleX(1);
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #3498db, #2980b9);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.step-content h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 15px;
}

.step-content p {
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* Advantages section */
.leasing-advantages {
  margin-bottom: 80px;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.advantage-item {
  background: white;
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.advantage-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.advantage-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(52, 152, 219, 0.1), transparent);
  transition: left 0.5s ease;
}

.advantage-item:hover::after {
  left: 100%;
}

.advantage-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #3498db, #2980b9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  color: white;
  transition: all 0.3s ease;
}

.advantage-item:hover .advantage-icon {
  transform: scale(1.1) rotate(5deg);
}

.advantage-item h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 10px;
}

.advantage-item p {
  color: #666;
  line-height: 1.5;
  margin: 0;
}

/* Requirements section */
.leasing-requirements {
  margin-bottom: 80px;
  animation: fadeInUp 0.8s ease-out 0.8s both;
}

.requirements-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin: 30px 0;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.requirement-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 20px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.requirement-item:hover {
  transform: translateX(10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.requirement-item i {
  color: #27ae60;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.requirement-item span {
  font-weight: 500;
  color: #2c3e50;
}

.requirements-note {
  background: linear-gradient(135deg, #e8f4fd, #d1ecf1);
  border-left: 4px solid #3498db;
  padding: 20px;
  border-radius: 10px;
  margin-top: 30px;
}

.requirements-note p {
  margin: 0;
  color: #2c3e50;
  line-height: 1.6;
}

/* CTA section */
.leasing-cta {
  background: linear-gradient(135deg, #2c3e50, #34495e);
  border-radius: 20px;
  padding: 50px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.8s ease-out 1s both;
}

.leasing-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
  pointer-events: none;
}

.leasing-cta .cta-content {
  position: relative;
  z-index: 2;
}

.leasing-cta h3 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #ffffff, #ecf0f1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.leasing-cta p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 30px;
  opacity: 0.9;
}

.cta-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.cta-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.cta-feature:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.cta-feature i {
  color: #3498db;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.cta-feature span {
  font-weight: 500;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

.cta-buttons .btn {
  padding: 15px 30px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 200px;
  justify-content: center;
}

.btn--primary {
  background: linear-gradient(135deg, #3498db, #2980b9);
  color: white;
  border: none;
}

.btn--primary:hover {
  background: linear-gradient(135deg, #2980b9, #1f5f8b);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(52, 152, 219, 0.3);
}

.btn--secondary {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn--secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive design */
@media (max-width: 768px) {
  .leasing-info-section {
    padding: 60px 0;
  }
  
  .leasing-title {
    font-size: 2.5rem;
  }
  
  .section-subtitle {
    font-size: 1.8rem;
  }
  
  .steps-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .step-item {
    padding: 25px;
  }
  
  .advantages-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
  }
  
  .advantage-item {
    padding: 25px;
  }
  
  .leasing-cta {
    padding: 40px 20px;
  }
  
  .leasing-cta h3 {
    font-size: 2rem;
  }
  
  .cta-features {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-buttons .btn {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .leasing-title {
    font-size: 2rem;
  }
  
  .section-subtitle {
    font-size: 1.5rem;
  }
  
  .step-number {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
  
  .advantage-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
  
  .leasing-cta h3 {
    font-size: 1.8rem;
  }
}

/* ===== Footer ===== */
.site-footer {
  background: #0f0f0f;
  color: #eaeaea;
  padding: 56px 24px 36px;
  margin: 0;
  overflow: hidden;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-brand {
  min-width: 220px;
}

.footer-logo {
  margin-bottom: 16px;
}

.footer-logo-img {
  max-height: 80px;
  width: auto;
}

.footer-logo-text {
  font-weight: 800;
  font-size: 22px;
  letter-spacing: 0.5px;
}

.footer-tagline {
  margin-top: 6px;
  color: #a1a1a1;
  font-size: 14px;
}

.footer-content {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
}

.footer-nav-section,
.footer-contacts-section {
  min-width: 250px;
}

.footer-section-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #ffffff;
}

.footer-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-menu li a {
  color: #eaeaea;
  text-decoration: none;
  font-size: 14px;
  opacity: 0.9;
  transition: opacity 0.2s ease;
}

.footer-menu li a:hover {
  opacity: 1;
  text-decoration: underline;
}

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

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

.footer-contact-item i {
  width: 16px;
  color: #a1a1a1;
  flex-shrink: 0;
}

.footer-contact-item a {
  color: #eaeaea;
  text-decoration: none;
  opacity: 0.9;
  transition: opacity 0.2s ease;
}

.footer-contact-item a:hover {
  opacity: 1;
  text-decoration: underline;
}

.footer-contact-item span {
  color: #eaeaea;
  opacity: 0.9;
}

.contact-label {
  font-size: 12px;
  color: #a1a1a1 !important;
  margin-left: 8px;
}

.footer-sep {
  margin: 32px 0 24px;
  border: none;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-social {
  display: flex;
  gap: 20px;
}

/* Кнопки копирования телефонов в футере */
.copy-phone-btn {
  background: none;
  border: none;
  color: #3498db;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  padding: 5px 10px;
  border-radius: 5px;
  transition: all 0.3s ease;
  position: relative;
}

.copy-phone-btn:hover {
  background: rgba(52, 152, 219, 0.1);
  color: #2980b9;
  transform: translateY(-1px);
}

.copy-phone-btn:active {
  transform: translateY(0);
}

.copy-phone-btn.copied {
  background: #27ae60;
  color: white;
  animation: copySuccess 0.5s ease;
}

@keyframes copySuccess {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.copy-phone-btn::after {
  content: 'Копіювати';
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  background: #2c3e50;
  color: white;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 0.8rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  white-space: nowrap;
}

.copy-phone-btn:hover::after {
  opacity: 1;
}

/* ===== Beautiful Social Icons ===== */
.tooltip-container {
  position: relative;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 17px;
  border-radius: 10px;
}

.tooltip {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  padding: 10px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s;
  border-radius: 15px;
  box-shadow: inset 5px 5px 5px rgba(0, 0, 0, 0.2),
    inset -5px -5px 15px rgba(255, 255, 255, 0.1),
    5px 5px 15px rgba(0, 0, 0, 0.3), -5px -5px 15px rgba(255, 255, 255, 0.1);
  visibility: hidden;
}

.profile {
  background: #2a2b2f;
  border-radius: 10px 15px;
  padding: 10px;
  border: 1px solid #52382f;
}

.tooltip-container:hover .tooltip {
  top: -150px;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 1000;
}

.icon {
  text-decoration: none;
  color: #fff;
  display: block;
  position: relative;
}

.layer {
  width: 55px;
  height: 55px;
  transition: transform 0.3s;
}

.icon:hover .layer {
  transform: rotate(-35deg) skew(20deg);
}

.layer span {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border: 1px solid #fff;
  border-radius: 15px;
  transition: all 0.3s;
}

.layer span,
.text {
  color: #e6683c;
  border-color: #e6683c;
}

.icon:hover .layer span {
  box-shadow: -1px 1px 3px #e6683c;
}

.icon .text {
  position: absolute;
  left: 50%;
  bottom: -5px;
  opacity: 0;
  font-weight: 500;
  transform: translateX(-50%);
  transition: bottom 0.3s ease, opacity 0.3s ease;
  color: #eaeaea;
  font-size: 12px;
}

.icon:hover .text {
  bottom: -35px;
  opacity: 1;
}

.icon:hover .layer span:nth-child(1) {
  opacity: 0.2;
}

.icon:hover .layer span:nth-child(2) {
  opacity: 0.4;
  transform: translate(5px, -5px);
}

.icon:hover .layer span:nth-child(3) {
  opacity: 0.6;
  transform: translate(10px, -10px);
}

.icon:hover .layer span:nth-child(4) {
  opacity: 0.8;
  transform: translate(15px, -15px);
}

.icon:hover .layer span:nth-child(5) {
  opacity: 1;
  transform: translate(20px, -20px);
}

/* Instagram SVG */
.instagramSVG {
  font-size: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: -webkit-linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
  background: linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f09433', endColorstr='#bc1888',GradientType=1 );
}

/* Telegram SVG */
.telegramSVG {
  font-size: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(45deg, #0088cc, #00a8ff);
}

/* TikTok SVG */
.tiktokSVG {
  font-size: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(45deg, #000000, #25f4ee, #fe2c55);
}

.user {
  display: flex;
  gap: 10px;
}

.img {
  width: 50px;
  height: 50px;
  font-size: 25px;
  font-weight: 700;
  border: 1px solid #e6683c;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}

.name {
  font-size: 17px;
  font-weight: 700;
  color: #e6683c;
}

.details {
  display: flex;
  flex-direction: column;
  gap: 0;
  color: #fff;
}

.about {
  color: #ccc;
  padding-top: 5px;
}

.footer-copy {
  color: #a1a1a1;
  font-size: 13px;
}

@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    gap: 30px;
  }
  
  .footer-content {
    gap: 40px;
  }
  
  .footer-nav-section,
  .footer-contacts-section {
    min-width: auto;
    width: 100%;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .footer-social {
    gap: 15px;
  }
  
  .layer {
    width: 45px;
    height: 45px;
  }
  
  .tooltip-container:hover .tooltip {
    top: -120px;
  }
}

@media (max-width: 480px) {
  .footer-top { 
    gap: 20px; 
  }
  
  .footer-content {
    gap: 30px;
  }
  
  .footer-section-title {
    font-size: 15px;
    margin-bottom: 15px;
  }
  
  .footer-contact-item {
    font-size: 13px;
  }
  
  .footer-menu li a {
    font-size: 13px;
  }
}

/* ===== Page Loader Overlay ===== */
/* loader removed */

/* ===== Latest Cars Section ===== */
.latest-cars {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.latest-cars .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.latest-cars__header {
  text-align: center;
  margin-bottom: 60px;
}

.latest-cars__title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.latest-cars__subtitle {
  font-size: 1.1rem;
  color: #6c757d;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Grid */
.latest-cars__grid {
  display: flex;
  gap: 30px;
  margin-bottom: 60px;
  overflow-x: auto;
  padding-bottom: 20px;
  scrollbar-width: thin;
  scrollbar-color: #3498db #f1f1f1;
}

.latest-cars__grid::-webkit-scrollbar {
  height: 8px;
}

.latest-cars__grid::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}

.latest-cars__grid::-webkit-scrollbar-thumb {
  background: #3498db;
  border-radius: 4px;
}

.latest-cars__grid::-webkit-scrollbar-thumb:hover {
  background: #2980b9;
}

/* Car Cards */
.latest-car-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  flex: 0 0 280px;
  min-width: 280px;
}

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

.latest-car-card__image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.latest-car-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.latest-car-card:hover .latest-car-card__image img {
  transform: scale(1.05);
}

/* Status badges */
.latest-car-card__statuses {
  position: absolute;
  top: 15px;
  left: 15px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.status-badge {
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.status-badge--auction {
  background: linear-gradient(135deg, #ff6b6b, #ee5a52);
  color: white;
}

.status-badge--verified {
  background: linear-gradient(135deg, #51cf66, #40c057);
  color: white;
}

/* Content */
.latest-car-card__content {
  padding: 25px;
}

.latest-car-card__title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 15px;
  line-height: 1.3;
}

/* Specs */
.latest-car-card__specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 15px;
}

.spec-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: #6c757d;
}

.spec-item i {
  color: #3498db;
  width: 16px;
}

/* Location */
.latest-car-card__location {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: #6c757d;
  margin-bottom: 20px;
}

.latest-car-card__location i {
  color: #e74c3c;
}

/* Price */
.latest-car-card__price {
  margin-bottom: 20px;
}

.price-amount {
  font-size: 1.4rem;
  font-weight: 700;
  color: #27ae60;
}

/* Link */
.latest-car-card__link {
  display: inline-block;
  padding: 12px 24px;
  background: linear-gradient(135deg, #3498db, #2980b9);
  color: white;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-align: center;
  width: 100%;
}

.latest-car-card__link:hover {
  background: linear-gradient(135deg, #2980b9, #1f5f8b);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

/* No cars message */
.no-cars-message {
  text-align: center;
  padding: 60px 20px;
  color: #6c757d;
  font-size: 1.1rem;
}

/* CTA Section */
.latest-cars__cta {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  border-radius: 30px;
  padding: 50px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.latest-cars__cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="white" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-content h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #fff 0%, #ecf0f1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-content strong {
  color: #3498db;
}

/* CTA Button */
.btn--large {
  padding: 16px 32px;
  font-size: 1.1rem;
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #3498db, #2980b9);
  border: none;
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.btn--large:hover {
  background: linear-gradient(135deg, #2980b9, #1f5f8b);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(52, 152, 219, 0.4);
}

.btn--large i {
  font-size: 1.2rem;
}

/* Responsive */
@media (max-width: 768px) {
  .latest-cars {
    padding: 60px 0;
  }
  
  .latest-cars__title {
    font-size: 2rem;
  }
  
  .latest-cars__grid {
    gap: 20px;
  }
  
  .latest-car-card {
    flex: 0 0 260px;
    min-width: 260px;
  }
  
  .latest-cars__cta {
    padding: 40px 20px;
    border-radius: 20px;
  }
  
  .cta-content h3 {
    font-size: 1.5rem;
  }
  
  .btn--large {
    padding: 14px 28px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .latest-cars__specs {
    grid-template-columns: 1fr;
  }
  
  .latest-car-card__content {
    padding: 20px;
  }
}

/* Адаптивность для калькулятора */
@media (max-width: 768px) {
  .calc-wrapper {
    flex-direction: column;
    gap: 20px;
  }
  
  .calc-info {
    padding-bottom: 120px; /* Уменьшаем отступ для мобильных */
  }
  
  .calc-info__result {
    margin: 15px 0 20px;
    padding: 20px;
    font-size: 18px;
    z-index: 20;
  }
  
  .calc-car {
    position: absolute;
    left: 45%;
    bottom: -16px;
    translate: -50% 0;
    width: 110%;
    z-index: 1;
  }
  
  .calc-info::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 60px;
    background: #ffffff;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    pointer-events: none;
  }
}

@media (max-width: 480px) {
  .calc-info {
    padding-bottom: 100px; /* Еще меньше отступ для маленьких экранов */
  }
  
  .calc-info__result {
    font-size: 16px;
    padding: 16px;
  }
  
  .calc-car {
    width: 110%;
  }
}

/* ===== КНОПКА "ВЕРНУТЬСЯ ВВЕРХ" ===== */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #0066ff 0%, #1e7bff 100%);
  border: none;
  border-radius: 50%;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 102, 255, 0.3);
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  z-index: 9999;
}

.scroll-to-top:hover {
  background: linear-gradient(135deg, #0052cc 0%, #1a6fd9 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 102, 255, 0.4);
}

.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-to-top svg {
  transition: transform 0.3s ease;
}

.scroll-to-top:hover svg {
  transform: translateY(-2px);
}

/* Адаптивность для кнопки "Вернуться вверх" */
@media (max-width: 768px) {
  .scroll-to-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
  }
}

@media (max-width: 480px) {
  .scroll-to-top {
    bottom: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
  }
  
  .scroll-to-top svg {
    width: 20px;
    height: 20px;
  }
}


