/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg: #080808;
  --bg-card: #111111;
  --white: #FFFFFF;
  --white-50: #FFFFFF80;
  --white-60: #FFFFFF99;
  --white-10: #FFFFFF1A;
  --white-06: #FFFFFF0F;
  --accent: #FFD600;
  --accent-warm: #D18C00;
  --price: #F5C600;
  --font-heading: 'Unbounded', sans-serif;
  --font-body: 'Inter', sans-serif;
}

html { scroll-behavior: auto; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--white);
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }

/* ===== HERO ===== */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== HERO INTRO ANIMATION ===== */
.hero-anim {
  opacity: 0;
  transform: translateY(24px);
  filter: blur(8px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
              transform 1s cubic-bezier(0.16, 1, 0.3, 1),
              filter 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-anim.show {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* ===== HEADER (floating pill) ===== */
.header {
  position: fixed;
  top: 1.25vw;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.833vw 1.67vw;
  width: 88.07vw; /* 1691/1920 */
  height: 3.33vw;
  min-height: 48px;
  border-radius: 2.08vw;
  background: rgba(8, 8, 8, 0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.08);
}

.header__logo {
  font-family: var(--font-body);
  font-size: 0.9375vw;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--white);
  white-space: nowrap;
}

.header__nav {
  display: flex;
  gap: 1.875vw;
  align-items: center;
}

.header__nav a {
  font-size: 1.04vw; /* 20/1920 */
  font-weight: 400;
  color: var(--white-60);
  transition: color 0.2s;
  white-space: nowrap;
}

.header__nav a:hover { color: var(--white); }

.header__right {
  display: flex;
  gap: 0.625vw;
  align-items: center;
}

.btn-telegram {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.08vw;
  height: 2.08vw;
  min-width: 32px;
  min-height: 32px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--bg);
  transition: transform 0.2s;
}

.btn-telegram svg { width: 0.9375vw; height: 0.9375vw; min-width: 14px; min-height: 14px; }
.btn-telegram:hover { transform: scale(1.08); }

.btn-phone {
  display: flex;
  align-items: center;
  height: 2.08vw;
  min-height: 32px;
  padding: 0 1.04vw;
  border-radius: 1.04vw;
  background: var(--white-06);
  font-size: 0.729vw;
  font-weight: 500;
  color: var(--white);
  white-space: nowrap;
  transition: background 0.2s;
}

.btn-phone:hover { background: rgba(255,255,255,0.12); }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px 4px;
  background: none;
  border: none;
  cursor: pointer;
}

.burger span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 1px;
  background: var(--white);
}

.burger span:last-child { width: 14px; }

/* ===== HERO CONTENT ===== */
.hero__content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 10vw 6.25vw 0;
  gap: 2.08vw;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.417vw;
  padding: 0.417vw 1.04vw;
  border-radius: 1.25vw;
  background: rgba(255, 214, 0, 0.08);
  font-size: 0.677vw;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 1px;
}

.hero__badge-dot {
  width: 0.417vw;
  height: 0.417vw;
  min-width: 6px;
  min-height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.hero__title {
  font-family: var(--font-heading);
  font-size: 5vw;
  font-weight: 700;
  letter-spacing: -0.156vw;
  line-height: 0.95;
  color: var(--white);
}

.hero__subtitle {
  font-size: 1.04vw;
  font-weight: 400;
  color: var(--white-50);
  line-height: 1.6;
  max-width: 26vw;
}

.hero__cta {
  position: absolute;
  z-index: 10;
  left: 6.25vw;
  bottom: 12vw;
  display: flex;
  align-items: center;
  gap: 0.833vw;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.625vw;
  padding: 1.04vw 2.29vw;
  border-radius: 2.08vw;
  background: linear-gradient(180deg, var(--accent) 0%, var(--accent-warm) 100%);
  font-size: 0.833vw;
  font-weight: 600;
  color: var(--bg);
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 0.52vw 2.08vw rgba(255, 214, 0, 0.3);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  padding: 1.04vw 1.67vw;
  border-radius: 2.08vw;
  background: var(--white-06);
  border: 1px solid rgba(255,255,255,0.12);
  font-size: 0.833vw;
  font-weight: 500;
  color: var(--white);
  transition: background 0.2s;
  white-space: nowrap;
}

.btn-ghost:hover { background: rgba(255,255,255,0.1); }

/* ===== HERO STATS ===== */
.hero__stats {
  position: absolute;
  z-index: 10;
  left: 50vw; /* 960/1920 */
  top: 14.32vw; /* 275/1920 */
  display: flex;
  gap: 3.125vw; /* 60/1920 */
}

.hero__stat {
  display: flex;
  flex-direction: column;
  gap: 0.208vw;
}

.hero__stat-num {
  font-family: var(--font-heading);
  font-size: 1.458vw; /* 28/1920 */
  font-weight: 700;
  color: var(--white);
}

.hero__stat-num.accent { color: var(--accent); }

.hero__stat-label {
  font-size: 0.729vw; /* 14/1920 */
  color: var(--white-50);
}

/* ===== SLIDER SECTION ===== */
.slider-section {
  padding: 2.5vw 6.25vw;
  display: flex;
  flex-direction: column;
  gap: 2.5vw;
}

.slider-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.slider-section__title {
  font-family: var(--font-heading);
  font-size: 2.5vw;
  font-weight: 700;
  letter-spacing: -0.1vw;
}

.slider-arrows {
  display: flex;
  gap: 0.625vw;
}

.slider__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.71vw;
  height: 2.71vw;
  min-width: 40px;
  min-height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.08);
  background: var(--white-06);
  color: var(--white);
  cursor: pointer;
  transition: background 0.2s;
}

.slider__arrow--right { background: var(--accent); color: var(--bg); border-color: transparent; }
.slider__arrow:hover { background: rgba(255,255,255,0.1); }
.slider__arrow--right:hover { background: #e6c200; }

.slider {
  height: 33.33vw;
  position: relative;
  overflow: hidden;
  border-radius: 1.25vw;
}

.slide {
  position: absolute;
  inset: 0;
  display: flex;
  background: var(--bg-card);
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.slide.active { opacity: 1; pointer-events: auto; }

.slide__photo { flex: 0 0 43.75vw; }

.slide__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2.5vw;
}

.slide__title {
  font-family: var(--font-heading);
  font-size: 1.875vw;
  font-weight: 700;
  letter-spacing: -0.05vw;
  line-height: 1.1;
}

.slide__bullets {
  display: flex;
  flex-direction: column;
  gap: 0.625vw;
}

.slide__bullets li {
  font-size: 0.833vw;
  color: var(--white-50);
  line-height: 1.5;
}

.slide__bullets li::before { content: "•  "; }

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

.slide__price {
  font-family: var(--font-heading);
  font-size: 1.67vw;
  font-weight: 700;
  letter-spacing: -0.05vw;
  color: var(--price);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.52vw;
  padding: 0.833vw 1.67vw;
  border-radius: 1.67vw;
  background: var(--white-06);
  border: 1px solid rgba(255,255,255,0.12);
  font-size: 0.78vw;
  font-weight: 500;
  color: var(--white);
  transition: background 0.2s;
  white-space: nowrap;
}

.btn-secondary:hover { background: rgba(255,255,255,0.1); }

/* ===== SERVICES (BENTO) ===== */
.services {
  padding: 3.125vw 6.25vw;
  display: flex;
  flex-direction: column;
  gap: 2.5vw;
}

.services__title {
  font-family: var(--font-heading);
  font-size: 2.5vw;
  font-weight: 700;
  letter-spacing: -0.1vw;
}

.bento-row {
  display: flex;
  gap: 1.04vw;
  height: 21.875vw;
}

.bento-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.04vw;
}

.bento-card {
  position: relative;
  border-radius: 1.04vw;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.bento-card:hover { transform: scale(1.02); }

.bento-card--big { flex: 0 0 37.5vw; }
.bento-card--small { flex: 1; }

.bento-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.bento-card:hover img { transform: scale(1.05); }

.bento-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 65%, rgba(0,0,0,0.85) 100%);
}

.bento-card__info {
  position: absolute;
  bottom: 1.67vw;
  left: 1.67vw;
  display: flex;
  flex-direction: column;
  gap: 0.52vw;
  z-index: 2;
}

.bento-card__badge {
  display: inline-flex;
  padding: 0.26vw 0.625vw;
  border-radius: 0.729vw;
  background: rgba(255, 214, 0, 0.12);
  font-size: 0.573vw;
  font-weight: 700;
  color: var(--accent);
  width: fit-content;
}

.bento-card__title {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--white);
}

.bento-card--big .bento-card__title { font-size: 1.458vw; letter-spacing: -0.05vw; }
.bento-card--small .bento-card__title { font-size: 1.145vw; letter-spacing: -0.05vw; }

.bento-card__desc {
  font-size: 0.729vw;
  color: var(--white-50);
}

.bento-card__btn {
  position: absolute;
  bottom: 1.67vw;
  right: 1.67vw;
  display: inline-flex;
  align-items: center;
  gap: 0.3125vw;
  padding: 0.417vw 0.9375vw;
  border-radius: 1.04vw;
  background: var(--accent);
  font-size: 0.625vw;
  font-weight: 600;
  color: var(--bg);
  z-index: 2;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s, transform 0.3s;
  white-space: nowrap;
}

.bento-card:hover .bento-card__btn {
  opacity: 1;
  transform: translateY(0);
}

/* ===== REVEAL ANIMATION ===== */
.reveal {
  opacity: 0;
  filter: blur(20px);
  transform: translateY(60px);
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1),
              filter 1.2s cubic-bezier(0.16, 1, 0.3, 1),
              transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

.bento-row:nth-child(3) { transition-delay: 0.2s; }

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 6.25vw;
  height: 4.17vw;
  min-height: 64px;
  background: #111111;
  border-top: 1px solid rgba(255,255,255,0.06);
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-banner.hide {
  transform: translateY(100%);
}

.cookie-banner__text {
  display: flex;
  align-items: center;
  gap: 0.625vw;
}

.cookie-banner__icon {
  flex-shrink: 0;
}

.cookie-banner__text span {
  font-size: 0.729vw;
  color: var(--white-50);
}

.cookie-banner__link {
  font-size: 0.729vw;
  font-weight: 500;
  color: var(--accent) !important;
  white-space: nowrap;
}

.cookie-banner__actions {
  display: flex;
  gap: 0.625vw;
}

.cookie-banner__accept {
  padding: 0.52vw 1.458vw;
  border-radius: 1.25vw;
  border: none;
  background: var(--accent);
  font-family: var(--font-body);
  font-size: 0.729vw;
  font-weight: 600;
  color: var(--bg);
  cursor: pointer;
  transition: transform 0.2s;
  white-space: nowrap;
}

.cookie-banner__accept:hover { transform: translateY(-1px); }

.cookie-banner__decline {
  padding: 0.52vw 1.458vw;
  border-radius: 1.25vw;
  border: 1px solid rgba(255,255,255,0.12);
  background: var(--white-06);
  font-family: var(--font-body);
  font-size: 0.729vw;
  font-weight: 500;
  color: var(--white-50);
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}

.cookie-banner__decline:hover { background: rgba(255,255,255,0.1); }

/* ===== GLASS REFLECT HOVER ===== */
.glass-hover {
  position: relative;
  overflow: hidden;
}

.glass-reflect {
  position: absolute;
  top: 0;
  left: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
  transform: translateX(-100%) skewX(-20deg);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
  z-index: 20;
}

.glass-hover:hover .glass-reflect {
  transform: translateX(300%) skewX(-20deg);
}

/* ===== CONTACT FORM ===== */
.contact {
  padding: 4.17vw 6.25vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5vw;
}

.contact__title {
  font-family: var(--font-heading);
  font-size: 2.5vw;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.1vw;
  text-align: center;
}

.contact__card {
  position: relative;
  width: 100%;
  border-radius: 1.25vw;
  overflow: hidden;
  background: var(--bg-card);
  display: flex;
  justify-content: center;
  padding: 3.125vw 0;
}

.contact__card-bg {
  position: absolute;
  inset: 0;
  background: url('img/form-bg.webp') center / cover no-repeat;
  opacity: 0.1;
  pointer-events: none;
}

.contact__form {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 26vw;
  min-width: 380px;
  gap: 1.25vw;
}

.contact__subtitle {
  font-family: var(--font-body);
  font-size: 1.145vw;
  font-weight: 600;
  color: var(--white);
  text-align: center;
  line-height: 1.4;
}

.contact__input {
  width: 100%;
  height: 2.8125vw;
  min-height: 42px;
  padding: 0 1.04vw;
  border-radius: 0.625vw;
  border: none;
  background: var(--white);
  font-family: var(--font-body);
  font-size: 0.833vw;
  color: #080808;
  outline: none;
}

.contact__input::placeholder {
  color: rgba(0,0,0,0.3);
}

.contact__submit {
  width: 100%;
  height: 2.8125vw;
  min-height: 42px;
  border-radius: 0.625vw;
  border: none;
  background: linear-gradient(180deg, var(--accent) 0%, var(--accent-warm) 100%);
  font-family: var(--font-body);
  font-size: 0.9375vw;
  font-weight: 600;
  color: var(--bg);
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.contact__submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 0.417vw 1.67vw rgba(255,214,0,0.3);
}

.contact__checks {
  display: flex;
  flex-direction: column;
  gap: 0.625vw;
  width: 100%;
}

.contact__check {
  display: flex;
  align-items: flex-start;
  gap: 0.52vw;
  cursor: pointer;
}

.contact__check input[type="checkbox"] {
  width: 0.9375vw;
  height: 0.9375vw;
  min-width: 14px;
  min-height: 14px;
  margin-top: 0.1vw;
  accent-color: var(--accent);
  cursor: pointer;
  flex-shrink: 0;
}

.contact__check span {
  font-size: 0.625vw;
  color: var(--white-50);
  line-height: 1.4;
}

.contact__check .accent-link {
  color: var(--accent);
}

/* ===== FOOTER ===== */
.footer {
  padding: 3.125vw 6.25vw;
  display: flex;
  flex-direction: column;
  gap: 2.5vw;
  background: #0A0A0A;
}

.footer__main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.footer__logo-col {
  display: flex;
  flex-direction: column;
  gap: 0.833vw;
  width: 13vw;
}

.footer__logo-text {
  font-family: var(--font-heading);
  font-size: 1.67vw;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
}

.footer__privacy {
  font-size: 0.677vw;
  color: var(--accent);
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 0.729vw;
}

.footer__col-title {
  font-family: var(--font-body);
  font-size: 0.833vw;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.208vw;
}

.footer__col a {
  font-size: 0.729vw;
  color: var(--white-50);
  transition: color 0.2s;
}

.footer__col a:hover {
  color: var(--white);
}

.footer__tg {
  color: var(--accent) !important;
}

.footer__phone {
  color: var(--white) !important;
}

.footer__divider {
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.08);
}

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

.footer__bottom span {
  font-size: 0.677vw;
  color: rgba(255,255,255,0.2);
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {

  /* HEADER */
  .header {
    width: calc(100% - 40px);
    height: 48px;
    padding: 12px 20px;
    border-radius: 24px;
    top: 12px;
  }

  .header__logo { font-size: 14px; }
  .header__nav { display: none; }
  .btn-telegram { width: 32px; height: 32px; min-width: 32px; min-height: 32px; }
  .btn-telegram svg { width: 16px; height: 16px; min-width: 16px; min-height: 16px; }
  .btn-phone { display: none; }
  .burger { display: flex; }

  /* HERO */
  .hero {
    min-height: auto;
    height: 728px;
    position: relative;
  }

  .hero__video { display: none; }

  .hero__bg {
    position: absolute;
    inset: 0;
    opacity: 1;
    overflow: hidden;
  }

  .hero__bg img { object-position: 70% center; }

  .hero__content {
    position: absolute;
    z-index: 10;
    left: 20px;
    top: 80px;
    width: 350px;
    padding: 0;
    gap: 20px;
    align-items: flex-start;
  }

  .hero__cta {
    position: absolute;
    z-index: 10;
    left: 20px;
    top: 524px;
    bottom: auto;
    width: 350px;
    flex-direction: column;
    gap: 10px;
  }

  .hero__stats {
    position: absolute;
    z-index: 10;
    left: 20px;
    top: 664px;
    width: 350px;
    justify-content: space-between;
  }

  .hero__badge { padding: 6px 14px; border-radius: 16px; font-size: 10px; gap: 6px; }
  .hero__badge-dot { width: 6px; height: 6px; min-width: 6px; min-height: 6px; }

  .hero__title { font-size: 42px; letter-spacing: -1.5px; white-space: normal; }
  .hero__subtitle { font-size: 14px; max-width: 100%; }


  .btn-cta {
    width: 100%;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 24px;
    font-size: 15px;
  }

  .btn-ghost {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
    border-radius: 24px;
    font-size: 15px;
  }

  .hero__stat-num { font-size: 18px; }
  .hero__stat-label { font-size: 10px; }

  /* SLIDER */
  .slider-section { padding: 32px 20px; gap: 20px; }
  .slider-section__title { font-size: 22px; letter-spacing: -1px; text-align: left; }

  .slider-header { align-items: center; }
  .slider-arrows { gap: 8px; }
  .slider__arrow { width: 36px; height: 36px; min-width: 36px; min-height: 36px; }

  .slider { height: auto; border-radius: 16px; }

  .slide { position: relative; flex-direction: column; border-radius: 16px; }
  .slide:not(.active) { display: none; }

  .slide__photo { flex: none; height: 200px; }

  .slide__content {
    padding: 20px;
    gap: 16px;
  }

  .slide__title { font-size: 20px; line-height: 1.1; }
  .slide__bullets li { font-size: 13px; }
  .slide__price { font-size: 20px; }
  .slide__bottom { flex-direction: column; align-items: flex-start; gap: 16px; }

  .btn-secondary { padding: 12px 24px; border-radius: 24px; font-size: 13px; }

  /* BENTO HOVER OFF ON MOBILE */
  .bento-card:hover { transform: none; }
  .bento-card:hover img { transform: none; }
  .bento-card:hover .bento-card__btn { opacity: 0; }

  /* SERVICES BENTO */
  .services { padding: 32px 20px; gap: 16px; }
  .services__title { font-size: 24px; letter-spacing: -1px; text-align: left; }

  .bento-row {
    flex-direction: column;
    height: auto;
    gap: 12px;
  }

  .bento-col { gap: 12px; }

  .bento-card--big { flex: none; height: 220px; }
  .bento-card--small { flex: none; height: 180px; }

  .bento-card--big .bento-card__title { font-size: 18px; }
  .bento-card--small .bento-card__title { font-size: 16px; }

  .bento-card__badge { padding: 4px 10px; font-size: 10px; }
  .bento-card__desc { font-size: 12px; }
  .bento-card__info { bottom: 16px; left: 16px; }

  .bento-card__btn {
    bottom: 16px;
    right: 16px;
    padding: 6px 14px;
    font-size: 11px;
    border-radius: 16px;
  }

  /* CONTACT */
  .contact { padding: 32px 20px; gap: 20px; }
  .contact__title { font-size: 28px; letter-spacing: -1px; }

  .contact__card {
    border-radius: 16px;
    padding: 32px 20px;
  }

  .contact__form {
    width: 100%;
    min-width: auto;
    gap: 14px;
  }

  .contact__subtitle { font-size: 16px; }
  .contact__input { height: 46px; min-height: 46px; padding: 0 16px; border-radius: 10px; font-size: 14px; }
  .contact__submit { height: 46px; min-height: 46px; border-radius: 10px; font-size: 15px; }
  .contact__checks { gap: 14px; }
  .contact__check { gap: 8px; }
  .contact__check input[type="checkbox"] { width: 16px; height: 16px; min-width: 16px; min-height: 16px; }
  .contact__check span { font-size: 11px; }

  /* FOOTER */
  .footer { padding: 32px 20px; gap: 32px; }
  .footer__main { flex-direction: column; align-items: center; gap: 28px; text-align: center; }
  .footer__logo-col { width: auto; align-items: center; }
  .footer__logo-text { font-size: 24px; }
  .footer__privacy { font-size: 11px; }
  .footer__col { align-items: center; gap: 10px; }
  .footer__col-title { font-size: 14px; margin-bottom: 4px; }
  .footer__col a { font-size: 12px; }
  .footer__bottom { flex-direction: column; gap: 4px; align-items: center; }
  .footer__bottom span { font-size: 11px; }

  /* COOKIE BANNER MOBILE */
  .cookie-banner {
    flex-direction: column;
    height: auto;
    padding: 20px;
    gap: 16px;
  }

  .cookie-banner__text {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    gap: 4px;
  }

  .cookie-banner__icon { display: none; }
  .cookie-banner__text span { font-size: 12px; }
  .cookie-banner__link { font-size: 12px; }

  .cookie-banner__actions { width: 100%; gap: 10px; }
  .cookie-banner__accept { flex: 1; padding: 12px; border-radius: 20px; font-size: 13px; }
  .cookie-banner__decline { flex: 1; padding: 12px; border-radius: 20px; font-size: 13px; }

  /* Mobile hero: pre-composed background with correct car position */
  .hero__bg {
    background: url('hero-mobile-bg.webp') center/cover no-repeat;
  }
  .hero__bg img { display: none; }
}
