/*! HTML5 Boilerplate v9.0.1 | MIT License | https://html5boilerplate.com/ */

/* ==========================================================================
   Reset & Base
   ========================================================================== */

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

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  min-height: 100vh;
  background: #F7F9FB;
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
}

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

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  outline: none;
}

input {
  font-family: inherit;
  outline: none;
  border: none;
}

::-moz-selection { background: #b3d4fc; text-shadow: none; }
::selection      { background: #b3d4fc; text-shadow: none; }

/* ==========================================================================
   Main
   ========================================================================== */

.main {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 89px 0 0;
  width: 100%;
  height: 600px;
  min-height: 700px;
  background: #F7F9FB;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 16, 28, 0.46) 0%, rgba(6, 16, 28, 0.66) 100%),
    linear-gradient(90deg, rgba(8, 20, 34, 0.34) 0%, rgba(8, 20, 34, 0.16) 45%, rgba(8, 20, 34, 0) 72%);
  z-index: 1;
  pointer-events: none;
}

/* Background image */
.hero__bg {
  position: absolute;
  width: 120%;
  left: 50%;
  right: auto;
  top: -80px;
  bottom: 25px;
  transform: translateX(-50%);
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  filter: saturate(1.2) contrast(1.15) brightness(0.82);
  transform: scale(1.1);
  transform-origin: center;
}

/* Hide mobile image on desktop */
.hero__bg-mobile {
  display: none;
}

/* Hide mobile badges on desktop */
.hero__features--mobile {
  display: none;
}

/* ==========================================================================
   Nav bar inside Hero
   ========================================================================== */

.hero__nav-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 75px;
  background: rgba(0, 71, 95, 0.95);
  z-index: 1001;
  display: flex;
  align-items: center;
}

.hero__nav-inner {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px 0 50px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  height: 75px;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo img {
  width: 104px;
  height: auto;
  max-height: 69px;
  object-fit: contain;
}

.nav__links {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.nav__link {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.4px;
  color: #F7F9FB;
  padding-left: 32px;
  transition: color 0.2s ease;
}

.nav__link:first-child {
  padding-left: 0;
}

.nav__link:hover {
  color: #5DCAFD;
}

.nav__link--active {
  font-weight: 700;
  color: #5DCAFD;
  border-bottom: 2px solid #5DCAFD;
  padding-bottom: 4px;
}

/* Header button */
.btn--header {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 8px 20px;
  height: 40px;
  background: #006688;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.4px;
  color: #FFFFFF;
  white-space: nowrap;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease;
}

.btn--header:hover {
  background: #005570;
}

/* ==========================================================================
   Language Switcher
   ========================================================================== */

.lang-switcher {
  position: relative;
  margin-left: 8px;
}

.lang-switcher__btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s;
}

.lang-switcher__btn:hover {
  background: rgba(255, 255, 255, 0.22);
}

.lang-switcher__icon {
  flex-shrink: 0;
}

.lang-switcher__label {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 13px;
  line-height: 16px;
  color: #FFFFFF;
}

.lang-switcher__arrow {
  flex-shrink: 0;
  transition: transform 0.2s;
}

.lang-switcher--open .lang-switcher__arrow {
  transform: rotate(180deg);
}

.lang-switcher__menu {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  min-width: 130px;
  background: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  z-index: 1002;
}

.lang-switcher--open .lang-switcher__menu {
  display: flex;
  flex-direction: column;
}

.lang-switcher__option {
  display: flex;
  align-items: center;
  padding: 10px 16px;
  background: none;
  border: none;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: #3E484F;
  cursor: pointer;
  transition: background 0.15s;
  text-align: left;
  width: 100%;
}

.lang-switcher__option:hover {
  background: #F2F4F6;
}

.lang-switcher__option--active {
  font-weight: 700;
  color: #006688;
}

/* ==========================================================================
   Hero Container & Content
   ========================================================================== */

.hero__container {
  position: relative;
  width: 1140px;
  max-width: calc(100% - 48px);
  height: 361px;
  z-index: 2;
}

/* Left Content */
.hero__left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  position: absolute;
  left: 24px;
  right: 487px;
  top: 69px;
}

.hero__text-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.hero__title {
  max-width: 576px;
  font-family: 'OswaldLocal';
  font-weight: 700;
  font-size: 50px;
  line-height: 57px;
  letter-spacing: 0.3px;
  color: #FFFFFF;
  text-transform: none;
}

.hero__subline {
  font-weight: 700;
  font-size: 30px;
  line-height: 1.2;
  color: #FFFFFF;
}

.hero__highlight {
  font-weight: 800;
  font-size: 30px;
  line-height: 1.2;
  color: #FF6A00;
  text-shadow:
    0 0 8px rgba(255, 106, 0, 0.55),
    0 0 16px rgba(255, 106, 0, 0.35),
    0 2px 10px rgba(255, 106, 0, 0.35);
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  padding: 2px 8px;
  z-index: 0;
}

.hero__highlight::before {
  content: '';
  position: absolute;
  inset: -8px -14px;
  background: radial-gradient(circle at center, rgba(0, 0, 0, 0.42) 0%, rgba(0, 0, 0, 0.18) 60%, rgba(0, 0, 0, 0) 100%);
  border-radius: 14px;
  z-index: -1;
  pointer-events: none;
}

.hero__features {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding-top: 8px;
  gap: 20px;
}

.hero__feature {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}

.hero__feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero__feature-text {
  font-weight: 700;
  font-size: 10px;
  line-height: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #FFFFFF;
}

/* Hero actions row */
.hero__actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
}

/* CTA gradient button */
.btn--gradient {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 14px 28px;
  width: 201px;
  height: 52px;
  background: linear-gradient(135deg, #006688 0%, #5DCAFD 100%);
  border-radius: 8px;
  overflow: hidden;
  isolation: isolate;
  cursor: pointer;
  border: none;
  font-family: 'Inter', sans-serif;
  transition: filter 0.2s ease;
}

.btn--gradient:hover {
  filter: brightness(1.08);
}

.btn__shadow {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.002);
  box-shadow: 0 10px 15px -3px rgba(0, 102, 136, 0.2), 0 4px 6px -4px rgba(0, 102, 136, 0.2);
  border-radius: 8px;
  z-index: 0;
}

.btn__text {
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: #FFFFFF;
  text-align: center;
  position: relative;
  z-index: 1;
}

/* --- Shimmer effect for all CTA buttons --- */
@keyframes btn-shimmer {
  0%   { transform: translateX(-100%) skewX(-15deg); }
  50%  { transform: translateX(100%) skewX(-15deg); }
  50.01% { transform: translateX(100%) skewX(15deg); }
  100% { transform: translateX(-100%) skewX(15deg); }
}

.btn--gradient,
.btn--header,
.btn--dark {
  position: relative;
  overflow: hidden;
}

.btn--gradient::after,
.btn--header::after,
.btn--dark::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.18) 40%,
    rgba(255,255,255,0.18) 60%,
    rgba(255,255,255,0) 100%
  );
  animation: btn-shimmer 4s ease-in-out infinite;
  pointer-events: none;
  z-index: 2;
}

/* Social proof */
.hero__social-proof {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0 8px;
  gap: 12px;
}

.hero__avatars {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.hero__avatar {
  width: 28px;
  height: 28px;
  border: 2px solid #FFFFFF;
  border-radius: 12px;
  margin-right: -8px;
  flex-shrink: 0;
}

.hero__avatar:last-child {
  margin-right: 0;
}

.hero__avatar--1 { background: #E2E8F0; z-index: 3; }
.hero__avatar--2 { background: #CBD5E1; z-index: 2; }
.hero__avatar--3 { background: #94A3B8; z-index: 1; }

.hero__social-text {
  font-weight: 500;
  font-size: 12px;
  line-height: 16px;
  color: #FFFFFF;
}

/* ==========================================================================
   Right Content: Glassmorphic Widget
   ========================================================================== */

.hero__right {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: flex-end;
  position: absolute;
  left: 372px;
  right: 24px;
  top: -250px;
  height: 422px;
  transform: translateX(200px);
}

.glass-card {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 24px;
  width: 340px;
  max-width: 340px;
  min-height: 285px;
  height: auto;
  background: rgba(255, 255, 255, 0.42);
  border: 1px solid rgba(190, 200, 208, 0.24);
  box-shadow: 0 12px 32px rgba(4, 22, 39, 0.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 15px;
  position: relative;
}

.glass-card__close {
  position: absolute;
  top: 8px;
  right: 10px;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  background: rgba(11, 29, 46, 0.75);
  color: #FFFFFF;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
}

.glass-card__close:hover {
  background: rgba(11, 29, 46, 0.95);
}

.glass-card__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  width: 100%;
}

.glass-card__header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  width: 100%;
}

.glass-card__label {
  font-weight: 700;
  font-size: 10px;
  line-height: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #006688;
}

.glass-card__desc {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #191C1E;
}

.glass-card__form {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  width: 100%;
}

.form-group {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.form-group__label {
  font-weight: 600;
  font-size: 10px;
  line-height: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #3E484F;
  margin-bottom: 6px;
  padding-left: 4px;
}

.form-group__input {
  box-sizing: border-box;
  padding: 11px 14px 12px;
  width: 100%;
  height: 42px;
  background: #FFFFFF;
  border: 1px solid rgba(190, 200, 208, 0.3);
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  color: #191C1E;
  transition: border-color 0.2s ease;
}

.form-group__input::placeholder {
  color: rgba(110, 120, 127, 0.5);
}

.form-group__input:focus {
  border-color: #006688;
}

.btn--dark {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 12px 0;
  width: 100%;
  height: 41px;
  background: #0B1D2E;
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 11px;
  line-height: 16px;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  color: #FFFFFF;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease;
}

.btn--dark:hover {
  background: #1a2f42;
}

.glass-card__submit:disabled,
.service-widget__submit:disabled,
.modal__submit:disabled {
  opacity: 0.72;
  cursor: wait;
}

.form-status {
  min-height: 18px;
  width: 100%;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 12px;
  line-height: 16px;
  text-align: center;
  opacity: 0;
  transform: translateY(-2px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  pointer-events: none;
}

.form-status--visible {
  opacity: 1;
  transform: translateY(0);
}

.form-status--info {
  color: #006688;
}

.form-status--success {
  color: #1f7a3d;
}

.form-status--error {
  color: #c53030;
}

.glass-card__status {
  margin-top: -2px;
}

.glass-card__footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  opacity: 0.8;
}

.glass-card__privacy {
  font-weight: 400;
  font-size: 10px;
  line-height: 12px;
  text-align: center;
  color: #6E787F;
}

/* ==========================================================================
   Insurance Support Section
   ========================================================================== */

.insurance-work {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 20px 70px 0;
  background: #F7F9FB;
  position: relative;
}

.insurance-work__container {
  width: 100%;
  max-width: 1140px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 58px;
  align-items: start;
}

.insurance-work__logos {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.insurance-work__logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  min-height: 163px;
  background: #FFFFFF;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
}

.insurance-work__logo-img {
  width: 100%;
  max-width: 131px;
  max-height: 131px;
  object-fit: contain;
}

.insurance-work__content {
  padding-top: 116px;
}

.insurance-work__eyebrow {
  font-weight: 700;
  font-size: 11px;
  line-height: 16px;
  letter-spacing: 0.55px;
  text-transform: uppercase;
  color: #006688;
  margin-bottom: 8px;
}

.insurance-work__title {
  font-weight: 700;
  font-size: 44px;
  line-height: 55px;
  letter-spacing: -2.2px;
  color: #0B1D2E;
  margin-bottom: 24px;
}

.insurance-work__text {
  max-width: 512px;
  font-weight: 400;
  font-size: 18px;
  line-height: 29px;
  color: #4F6074;
  margin-bottom: 32px;
}

.insurance-work__cta {
  width: fit-content;
  min-width: 309px;
  padding: 16px 32px;
  margin-bottom: 28px;
}

.insurance-work__indicator {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 16px 24px;
  background: #F2F4F6;
  border-radius: 4px;
  color: #3E484F;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
}

.insurance-work__promo-wrap {
  width: 100%;
  margin-top: 32px;
  background: #F2F4F6;
  display: flex;
  justify-content: center;
  padding: 0 32px 48px;
}

.insurance-work__promo {
  box-sizing: border-box;
  width: 100%;
  max-width: 1216px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  padding: 48px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(190, 200, 208, 0.15);
  box-shadow: 0 12px 32px rgba(4, 22, 39, 0.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 12px 0;
}

.insurance-work__promo-title {
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  color: #0B1D2E;
  margin-bottom: 16px;
  padding-left: 5px;
}

.insurance-work__promo-text {
  max-width: 568px;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #3E484F;
  padding-left: 5px;
}

.insurance-work__franchise {
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: franchise-pulse 3s ease-in-out infinite;
}

@keyframes franchise-pulse {
  0%   { transform: scale(1); }
  8%   { transform: scale(1.12); }
  16%  { transform: scale(1); }
  22%  { transform: scale(1.08); }
  30%  { transform: scale(1); }
  100% { transform: scale(1); }
}

.insurance-work__franchise-value {
  font-weight: 900;
  font-size: 36px;
  line-height: 40px;
  color: #006688;
}

.insurance-work__franchise-label {
  font-weight: 700;
  font-size: 11px;
  line-height: 16px;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  color: #4F6074;
}

/* --- Insurance Logo Flip Animation --- */
.insurance-work__logos {
  perspective: 1200px;
}

.insurance-work__logo-card {
  transform: rotateY(90deg);
  transform-origin: center center;
  transition: transform 0.6s cubic-bezier(0.4, 0.0, 0.2, 1), opacity 0.3s ease;
  backface-visibility: hidden;
  will-change: transform, opacity;
  opacity: 0;
}

.insurance-work__logo-card.flip-in {
  transform: rotateY(0deg);
  opacity: 1;
}

@media (max-width: 1200px) {
  .insurance-work {
    padding: 20px 24px 0;
  }

  .insurance-work__container {
    gap: 32px;
  }

  .insurance-work__title {
    font-size: 36px;
    line-height: 44px;
    letter-spacing: -1.4px;
  }
}

@media (max-width: 980px) {
  .insurance-work__container {
    grid-template-columns: 1fr;
  }

  .insurance-work__content {
    padding-top: 0;
  }

  .insurance-work__promo {
    flex-direction: column;
    align-items: flex-start;
  }

  .insurance-work__franchise {
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .insurance-work__logos {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .insurance-work__logo-card {
    min-height: 90px;
    padding: 8px;
  }

  .insurance-work__logo-img {
    max-width: 80px;
    max-height: 80px;
  }

  .insurance-work__title {
    font-size: 30px;
    line-height: 38px;
    letter-spacing: -1px;
  }

  .insurance-work__text {
    font-size: 16px;
    line-height: 26px;
  }

  .insurance-work__cta {
    width: 100%;
    min-width: 0;
  }

  .insurance-work__promo-wrap {
    padding: 0 16px 32px;
  }

  .insurance-work__promo {
    padding: 28px 24px;
    border-radius: 12px;
  }
}

/* ==========================================================================
   City Selector Section
   ========================================================================== */

.city-selector {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 64px 70px;
  background: #FFFFFF;
  position: relative;
}

.city-selector__container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  max-width: 1140px;
}

.city-selector__title {
  width: 100%;
  font-weight: 700;
  font-size: 44px;
  line-height: 55px;
  letter-spacing: -1.1px;
  color: #0B1D2E;
  text-align: center;
  margin-bottom: 16px;
}

.city-selector__desc {
  width: 100%;
  font-weight: 400;
  font-size: 18px;
  line-height: 29px;
  color: #3E484F;
  text-align: center;
  margin-bottom: 48px;
}

.city-selector__main {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  width: 100%;
  position: relative;
}

/* Left — current location */
.city-selector__current {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px;
  min-width: 230px;
  border: 1px solid rgba(190, 200, 208, 0.15);
  border-radius: 8px;
}

.city-selector__current-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  background: rgba(0, 102, 136, 0.1);
  border-radius: 12px;
  flex-shrink: 0;
}

.city-selector__current-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.city-selector__current-label {
  font-weight: 600;
  font-size: 11px;
  line-height: 16px;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  color: #6E787F;
}

.city-selector__current-city {
  font-weight: 700;
  font-size: 20px;
  line-height: 28px;
  color: #0B1D2E;
}

/* Center — inputs */
.city-selector__inputs {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
  max-width: 456px;
}

.city-selector__search-wrap {
  position: relative;
}

/* Autocomplete suggestions */
.city-selector__suggestions {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  max-height: 240px;
  overflow-y: auto;
  background: #FFFFFF;
  border: 1px solid rgba(190, 200, 208, 0.3);
  border-top: none;
  border-radius: 0 0 6px 6px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  z-index: 50;
  list-style: none;
  margin: 0;
  padding: 0;
}

.city-selector__suggestions--open {
  display: block;
}

.city-selector__suggestions li {
  padding: 10px 16px 10px 48px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 22px;
  color: #191C1E;
  cursor: pointer;
  transition: background 0.12s;
}

.city-selector__suggestions li:hover,
.city-selector__suggestions li.active {
  background: #F2F4F6;
  color: #006688;
}

.city-selector__suggestions li mark {
  background: none;
  color: #006688;
  font-weight: 700;
}

.city-selector__search-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.city-selector__search {
  box-sizing: border-box;
  width: 100%;
  height: 56px;
  padding: 17px 16px 17px 48px;
  background: rgba(0, 102, 136, 0.03);
  border: 1px solid rgba(190, 200, 208, 0.15);
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: #191C1E;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}

.city-selector__search::placeholder {
  color: rgba(110, 120, 127, 0.5);
}

.city-selector__search:focus {
  border-color: #006688;
  background: #FFFFFF;
}

.city-selector__dropdown-wrap {
  position: relative;
}

.city-selector__dropdown-toggle {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  width: 100%;
  height: 56px;
  padding: 8px 40px 8px 48px;
  background: #FFFFFF;
  border: 1px solid rgba(190, 200, 208, 0.15);
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #191C1E;
  cursor: pointer;
  outline: none;
  transition: border-color 0.2s;
  position: relative;
  text-align: left;
}

.city-selector__dropdown-toggle:focus,
.city-selector__dropdown-wrap--open .city-selector__dropdown-toggle {
  border-color: #006688;
}

.city-selector__dropdown-pin {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 15px;
  height: 15px;
  pointer-events: none;
}

.city-selector__dropdown-text {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.city-selector__dropdown-arrow {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  transition: transform 0.2s;
}

.city-selector__dropdown-wrap--open .city-selector__dropdown-arrow {
  transform: translateY(-50%) rotate(180deg);
}

/* Dropdown panel */
.city-selector__dropdown-panel {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: #FFFFFF;
  border: 1px solid rgba(190, 200, 208, 0.3);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  z-index: 50;
  overflow: hidden;
}

.city-selector__dropdown-wrap--open .city-selector__dropdown-panel {
  display: block;
}

/* Search inside dropdown */
.city-selector__dropdown-search-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-bottom: 1px solid #F2F4F6;
}

.city-selector__dropdown-search-wrap svg {
  flex-shrink: 0;
}

.city-selector__dropdown-search {
  border: none;
  outline: none;
  width: 100%;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 20px;
  color: #191C1E;
  background: transparent;
}

.city-selector__dropdown-search::placeholder {
  color: rgba(110, 120, 127, 0.5);
}

/* List of cities — height for ~15 items */
.city-selector__dropdown-list {
  list-style: none;
  margin: 0;
  padding: 4px 0;
  max-height: 360px;  /* ~10 items × 36px */
  overflow-y: auto;
}

.city-selector__dropdown-list li {
  padding: 8px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 20px;
  color: #191C1E;
  cursor: pointer;
  transition: background 0.12s;
}

.city-selector__dropdown-list li:hover,
.city-selector__dropdown-list li.selected {
  background: #F2F4F6;
  color: #006688;
}

.city-selector__dropdown-list li.selected {
  font-weight: 600;
}

.city-selector__dropdown-list::-webkit-scrollbar {
  width: 6px;
}

.city-selector__dropdown-list::-webkit-scrollbar-track {
  background: transparent;
}

.city-selector__dropdown-list::-webkit-scrollbar-thumb {
  background: #D1D5DB;
  border-radius: 3px;
}

/* Right — decorative image */
/* --- City Map Pop-in Animation --- */
.city-selector__image {
  width: 214px;
  height: 255px;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
  transform: scale(0.3);
  opacity: 0;
  transition: none;
}

.city-selector__image.pop-in {
  animation: map-pop-in 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes map-pop-in {
  0%   { transform: scale(0.3); opacity: 0; }
  70%  { transform: scale(1.1); opacity: 1; }
  85%  { transform: scale(0.97); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}

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

@media (max-width: 1200px) {
  .city-selector {
    padding: 48px 24px;
  }
}

@media (max-width: 980px) {
  .city-selector__main {
    flex-wrap: wrap;
  }

  .city-selector__inputs {
    max-width: 100%;
    order: -1;
    width: 100%;
  }

  .city-selector__image {
    display: none;
  }

  .city-selector__title {
    font-size: 36px;
    line-height: 44px;
  }
}

@media (min-width: 641px) and (max-width: 980px) {
  .city-selector__image {
    display: none;
  }
}

@media (max-width: 640px) {
  .city-selector {
    padding: 40px 16px;
  }

  .city-selector__title {
    font-size: 30px;
    line-height: 38px;
    margin-bottom: 12px;
  }

  .city-selector__desc {
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 32px;
  }

  .city-selector__main {
    display: grid;
    grid-template-columns: 60% 40%;
    grid-template-rows: auto auto;
    gap: 12px;
  }

  /* Current - первая строка слева */
  .city-selector__current {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    width: 100%;
    padding: 12px;
    min-width: auto;
    gap: 10px;
  }

  .city-selector__current-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
  }

  .city-selector__current-icon svg {
    width: 13px;
    height: 16px;
  }

  .city-selector__current-label {
    font-size: 9px;
    line-height: 12px;
    letter-spacing: 0.9px;
  }

  .city-selector__current-city {
    font-size: 15px;
    line-height: 20px;
  }

  /* Inputs - вторая строка слева */
  .city-selector__inputs {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
    width: 100%;
    max-width: 100%;
    gap: 12px;
  }

  .city-selector__search-wrap {
    min-height: 42px;
  }

  .city-selector__search {
    padding: 9px 14px 9px 38px;
    font-size: 13px;
  }

  .city-selector__search-icon {
    left: 14px;
    width: 13px;
    height: 13px;
  }

  .city-selector__dropdown-toggle {
    min-height: 42px;
    padding: 9px 36px 9px 38px;
    font-size: 13px;
  }

  .city-selector__dropdown-pin {
    left: 14px;
    width: 13px;
    height: 13px;
  }

  .city-selector__dropdown-arrow {
    right: 14px;
    width: 10px;
    height: 6px;
  }

  /* Адаптация dropdown панели */
  .city-selector__dropdown-panel {
    border-radius: 6px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  }

  .city-selector__dropdown-search-wrap {
    padding: 8px 12px;
  }

  .city-selector__dropdown-search {
    font-size: 13px;
  }

  .city-selector__dropdown-list {
    max-height: 180px;
  }

  .city-selector__dropdown-list li {
    padding: 10px 12px;
    font-size: 13px;
  }

  /* Suggestions для search */
  .city-selector__suggestions {
    border-radius: 6px;
    max-height: 180px;
  }

  .city-selector__suggestions li {
    padding: 10px 12px;
    font-size: 13px;
  }

  /* Карта - справа на обе строки */
  .city-selector__image {
    display: block;
    grid-column: 2 / 3;
    grid-row: 1 / 3;
    width: 100%;
    height: 100%;
    min-height: 150px;
  }

  .city-selector__image img {
    height: 100%;
  }
}

/* ==========================================================================
   Glass Types Diagram Section
   ========================================================================== */

.glass-diagram {
  width: 100%;
  background: linear-gradient(180deg, #FFFFFF 0%, #047093 100%);
  display: flex;
  justify-content: center;
  padding: 0;
  overflow: hidden;
  position: relative;
}

.glass-diagram__container {
  width: 100%;
  max-width: 1140px;
  position: relative;
}

.glass-diagram__car {
  display: block;
  width: 100%;
  max-width: 1140px;
  height: auto;
  object-fit: contain;
}

/* Annotation points */
.glass-diagram__point {
  position: absolute;
}

.glass-diagram__dot {
  display: block;
  width: 12px;
  height: 12px;
  background: #FFFFFF;
  border: 2px solid #34AADC;
  border-radius: 5px;
  position: absolute;
  z-index: 2;
}

.glass-diagram__line--v {
  display: block;
  position: absolute;
  width: 2px;
  background: #34AADC;
}

.glass-diagram__line--h {
  display: block;
  position: absolute;
  height: 1px;
  background: #34AADC;
}

.glass-diagram__label {
  position: absolute;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 13px;
  line-height: 18px;
  color: #3E484F;
  max-width: 288px;
}

.glass-diagram__label--light {
  color: #FFFFFF;
}

/* --- Windshield (left annotation) --- */
.glass-diagram__point--windshield {
  left: 6%;
  top: 180px;
}

.glass-diagram__point--windshield .glass-diagram__dot {
  bottom: 0;
  left: 0;
}

.glass-diagram__point--windshield .glass-diagram__line--v {
  left: 5px;
  bottom: 12px;
  height: 82px;
}

.glass-diagram__point--windshield .glass-diagram__line--h {
  left: 5px;
  bottom: 94px;
  width: 178px;
}

.glass-diagram__point--windshield .glass-diagram__label {
  left: 0;
  bottom: 102px;
  width: 288px;
}

/* --- Side glass (center annotation) --- */
.glass-diagram__point--side {
  left: 42%;
  top: 100px;
}

.glass-diagram__point--side .glass-diagram__dot {
  bottom: 0;
  left: 0;
}

.glass-diagram__point--side .glass-diagram__line--v {
  left: 5px;
  bottom: 12px;
  height: 62px;
  background: #5DCAFD;
}

.glass-diagram__point--side .glass-diagram__line--h {
  left: 5px;
  bottom: 74px;
  width: 160px;
}

.glass-diagram__point--side .glass-diagram__label {
  left: 0;
  bottom: 82px;
  width: 256px;
}

/* --- Rear glass (right annotation) --- */
.glass-diagram__point--rear {
  right: 6%;
  top: 140px;
}

.glass-diagram__point--rear .glass-diagram__dot {
  bottom: 0;
  right: 0;
}

.glass-diagram__point--rear .glass-diagram__line--v {
  right: 5px;
  bottom: 12px;
  height: 234px;
}

.glass-diagram__point--rear .glass-diagram__line--h {
  right: 5px;
  bottom: 246px;
  width: 160px;
}

.glass-diagram__point--rear .glass-diagram__label {
  right: 0;
  bottom: 254px;
  width: 228px;
  text-align: right;
}

/* --- Headlight Glow Effect --- */
.headlight {
  position: absolute;
  pointer-events: none;
  opacity: 0;
  z-index: 3;
}

.headlight--rear {
  width: 28px;
  height: 20px;
  left: 8.4%;
  top: 45.8%;
  border-radius: 40%;
  background: radial-gradient(ellipse at 70% 50%,
    rgba(255,40,30,0.95) 0%,
    rgba(255,20,10,0.7) 25%,
    rgba(200,0,0,0.3) 55%,
    transparent 100%);
  box-shadow:
    0 0 12px 5px rgba(255,40,30,0.6),
    -8px 0 25px 10px rgba(200,0,0,0.3);
  filter: blur(1px);
}

@keyframes headlight-blink {
  0%   { opacity: 0; }
  6%   { opacity: 1; }
  14%  { opacity: 0.05; }
  20%  { opacity: 1; }
  32%  { opacity: 0; }
  100% { opacity: 0; }
}

.headlight--blink {
  animation: headlight-blink 5s ease-in-out infinite;
}

/* Responsive */
@media (max-width: 1200px) {
  .glass-diagram__container {
    padding: 0 24px;
  }

  .glass-diagram__car {
    width: 100%;
    height: auto;
  }
}

@media (max-width: 768px) {
  .glass-diagram__container {
    height: 380px;
  }

  .glass-diagram__label {
    font-size: 11px;
    line-height: 16px;
    max-width: 200px;
  }

  .glass-diagram__point--windshield {
    left: 2%;
  }

  .glass-diagram__point--rear {
    right: 2%;
  }

  /* Отключаем красное мигание на мобильных/планшетах */
  .headlight--blink {
    animation: none;
    opacity: 0;
  }
}

@media (max-width: 640px) {
  .glass-diagram__container {
    height: 320px;
  }

  .glass-diagram__label {
    display: none;
  }

  /* Отключаем красное мигание на мобильных */
  .headlight--blink {
    animation: none;
    opacity: 0;
  }
}

/* ==========================================================================
   Expertise & Ecology Section
   ========================================================================== */

.expertise {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 96px 70px;
  width: 100%;
  background: #F7F9FB;
  position: relative;
}

.expertise__container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 64px;
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
}

/* --- Header --- */
.expertise__header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  width: 100%;
}

.expertise__eyebrow {
  font-weight: 700;
  font-size: 11px;
  line-height: 16px;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: #006688;
}

.expertise__title {
  font-weight: 800;
  font-size: 48px;
  line-height: 48px;
  letter-spacing: -1.2px;
  color: #0B1D2E;
}

/* --- Body: grid + process side by side --- */
.expertise__body {
  display: flex;
  flex-direction: row;
  gap: 48px;
  width: 100%;
  position: relative;
}

/* --- Left: Bento Grid --- */
.expertise__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 38px 23px;
  flex: 0 0 auto;
  width: 645px;
}

/* --- Expertise Cards Rise-from-Fog Animation --- */
.expertise__card {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 32px 15px 15px;
  background: #FFFFFF;
  border: 1px solid #F3F4F6;
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  min-height: 204px;
  opacity: 0;
  transform: translateY(50px) scale(0.8);
  filter: blur(8px);
  transition: none;
}

.expertise__card.rise-in {
  animation: card-rise 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes card-rise {
  0%   { opacity: 0; transform: translateY(50px) scale(0.8); filter: blur(8px); }
  60%  { opacity: 1; transform: translateY(-8px) scale(1.04); filter: blur(0); }
  80%  { transform: translateY(3px) scale(0.98); }
  100% { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}

.expertise__card-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 24px;
}

.expertise__card-icon svg {
  display: block;
}

.expertise__card-text {
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  color: #191C1E;
}

/* --- Card 6: Eco special --- */
.expertise__card--eco {
  position: relative;
  padding: 33px 15px 15px;
}

.expertise__eco-badge {
  position: absolute;
  top: 13px;
  left: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px 8px;
  background: #00D1B2;
  border-radius: 2px;
  font-weight: 900;
  font-size: 10px;
  line-height: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #FFFFFF;
}

.expertise__card-icon--eco {
  margin-bottom: 24px;
}

.expertise__card-eco-title {
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  color: #191C1E;
  margin-bottom: 4px;
}

.expertise__card-eco-text {
  font-weight: 400;
  font-size: 11px;
  line-height: 14px;
  text-align: center;
  color: rgba(25, 28, 30, 0.7);
}

/* --- Right: Process Panel --- */
.expertise__process {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 48px;
  gap: 48px;
  flex: 1;
  background: #F2F4F6;
  border-radius: 24px;
  min-height: 557px;
}

.expertise__process-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.expertise__process-title {
  font-weight: 900;
  font-size: 30px;
  line-height: 36px;
  letter-spacing: -0.75px;
  color: #0B1D2E;
}

.expertise__process-text {
  font-weight: 400;
  font-size: 18px;
  line-height: 29px;
  color: #4F6074;
  max-width: 384px;
}

/* --- Timeline --- */
.expertise__timeline {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 48px;
  width: 100%;
  position: relative;
}

.expertise__timeline-track {
  position: absolute;
  top: 64px;
  left: 0;
  right: 0;
  height: 2px;
}

.expertise__timeline-bar {
  position: absolute;
  inset: 0;
  background: rgba(190, 200, 208, 0.3);
  border-radius: 12px;
}

.expertise__timeline-progress {
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: #006688;
  border-radius: 12px;
  transition: width 0.5s ease;
}

.expertise__timeline-steps {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  position: relative;
  z-index: 2;
}

/* --- Step base --- */
.expertise__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.expertise__step-circle {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  background: #E0E3E5;
  border-radius: 12px;
  position: relative;
  margin-bottom: 0;
  transition: width 0.4s ease, height 0.4s ease, background 0.4s ease;
}

.expertise__step-circle::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.002);
  box-shadow: 0px 0px 0px 4px #F2F4F6;
  border-radius: 12px;
  transition: box-shadow 0.4s ease;
}

.expertise__step-circle span {
  font-weight: 700;
  font-size: 12px;
  line-height: 16px;
  text-align: center;
  color: #4F6074;
  position: relative;
  z-index: 1;
  transition: color 0.4s ease, font-size 0.4s ease, font-weight 0.3s ease;
}

.expertise__step-label {
  font-weight: 700;
  font-size: 11px;
  line-height: 16px;
  letter-spacing: 0.55px;
  text-transform: uppercase;
  color: #6E787F;
  text-align: center;
  margin-top: 0;
  transition: color 0.4s ease, font-weight 0.3s ease;
}

/* --- Step: done --- */
.expertise__step-circle--done {
  background: #006688;
}

.expertise__step-circle--done span {
  color: #FFFFFF;
}

.expertise__step--done .expertise__step-label {
  color: #4F6074;
}

/* --- Step: active --- */
.expertise__step-circle--active {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #006688 0%, #5DCAFD 100%);
  border-radius: 12px;
}

.expertise__step-circle--active::after {
  box-shadow: 0px 0px 0px 8px rgba(0, 102, 136, 0.1),
              0px 10px 15px -3px rgba(0, 102, 136, 0.2),
              0px 4px 6px -4px rgba(0, 102, 136, 0.2);
  border-radius: 12px;
}

.expertise__step-circle--active span {
  font-weight: 900;
  font-size: 14px;
  line-height: 20px;
  color: #FFFFFF;
}

.expertise__step-label--active {
  font-weight: 900;
  color: #006688;
}

/* --- CTA card (glass) --- */
.expertise__cta-card {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  width: 100%;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(190, 200, 208, 0.15);
  box-shadow: 0px 12px 32px rgba(4, 22, 39, 0.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 16px;
}

.expertise__cta-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.expertise__cta-eyebrow {
  font-weight: 700;
  font-size: 10px;
  line-height: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #006688;
}

.expertise__cta-title {
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: #191C1E;
}

.expertise__cta-btn {
  width: auto;
  min-width: 131px;
  padding: 12px 24px;
  height: 44px;
}

.expertise__cta-btn .btn__text {
  font-size: 14px;
  line-height: 20px;
}

/* --- Expertise Responsive --- */
@media (max-width: 1200px) {
  .expertise {
    padding: 64px 24px;
  }

  .expertise__grid {
    width: auto;
    flex: 1;
  }

  .expertise__title {
    font-size: 40px;
    line-height: 44px;
  }
}

@media (max-width: 980px) {
  .expertise__body {
    flex-direction: column;
  }

  .expertise__grid {
    width: 100%;
  }

  .expertise__process {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .expertise {
    padding: 48px 16px;
  }

  .expertise__grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
    width: 100% !important;
    overflow-x: visible !important;
    flex: none !important;
  }

  .expertise__card {
    flex: none !important;
    min-width: auto !important;
    width: 100% !important;
    padding: 16px 10px 12px !important;
    min-height: 140px !important;
  }

  .expertise__card--eco {
    padding: 16px 10px 12px !important;
  }

  .expertise__card-icon {
    margin-bottom: 12px !important;
  }

  .expertise__card-icon svg,
  .expertise__card-icon img {
    max-width: 32px !important;
    max-height: 32px !important;
    width: auto !important;
    height: auto !important;
  }

  .expertise__card-text {
    font-size: 12px !important;
    line-height: 16px !important;
  }

  .expertise__card-eco-title {
    font-size: 13px !important;
    line-height: 18px !important;
  }

  .expertise__card-eco-text {
    font-size: 11px !important;
    line-height: 15px !important;
  }

  .expertise__eco-badge {
    top: 8px !important;
    left: 8px !important;
    padding: 2px 6px !important;
    font-size: 8px !important;
    line-height: 12px !important;
  }

  .expertise__title {
    font-size: 32px;
    line-height: 36px;
  }

  .expertise__process {
    padding: 24px;
    gap: 32px;
  }

  .expertise__process-title {
    font-size: 24px;
    line-height: 30px;
  }

  .expertise__cta-card {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }

  .expertise__cta-btn {
    width: 100%;
  }
}

/* ==========================================================================
   Trust Section
   ========================================================================== */

.trust {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 0 64px;
  width: 100%;
  background: #F2F4F6;
  position: relative;
}

.trust__container {
  display: flex;
  flex-direction: row;
  gap: 32px;
  width: 100%;
  max-width: 952px;
  padding-top: 40px;
}

.trust__card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
  flex: 1;
}

.trust__icon-bg {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: #FFFFFF;
  border-radius: 4px;
  flex-shrink: 0;
}

.trust__title {
  font-weight: 700;
  font-size: 18px;
  line-height: 28px;
  color: #0B1D2E;
}

.trust__text {
  font-weight: 400;
  font-size: 14px;
  line-height: 23px;
  color: #3E484F;
}

/* Trust responsive */
@media (max-width: 768px) {
  .trust__container {
    flex-wrap: wrap;
    gap: 24px;
    padding: 32px 24px 0;
  }

  .trust__card {
    flex: 0 0 calc(50% - 12px);
    min-width: calc(50% - 12px);
  }
}

@media (max-width: 640px) {
  .trust {
    padding: 0 0 48px;
  }

  .trust__container {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    gap: 20px;
    padding: 32px 16px 0 16px;
    margin: 0 -16px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
  }

  /* Скрываем scrollbar */
  .trust__container::-webkit-scrollbar {
    display: none;
  }

  .trust__card {
    flex: 0 0 calc(100% - 32px) !important;
    min-width: calc(100% - 32px) !important;
    scroll-snap-align: center;
    gap: 8px;
  }

  .trust__icon-bg {
    width: 36px;
    height: 36px;
  }

  .trust__icon-bg svg {
    width: 14px;
    height: 18px;
  }

  .trust__title {
    font-size: 15px;
    line-height: 22px;
  }

  .trust__text {
    font-size: 12px;
    line-height: 19px;
  }

  /* Индикаторы карусели для trust */
  .trust__carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
    padding: 0 16px;
  }

  .trust__carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(0, 102, 136, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
  }

  .trust__carousel-dot.active {
    background: #006688;
    width: 24px;
    border-radius: 4px;
  }
}

/* ==========================================================================
   Reviews Section
   ========================================================================== */

.reviews {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 80px 70px;
  width: 100%;
  background: #FFFFFF;
  position: relative;
}

.reviews__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1140px;
  width: 100%;
  text-align: center;
}

.reviews__eyebrow {
  font-weight: 700;
  font-size: 12px;
  line-height: 15px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #006688;
  margin-bottom: 12px;
}

.reviews__title {
  font-weight: 700;
  font-size: 36px;
  line-height: 44px;
  color: #0B1D2E;
  margin-bottom: 16px;
}

.reviews__subtitle {
  font-weight: 400;
  font-size: 17px;
  line-height: 26px;
  color: #4a5560;
  max-width: 720px;
  margin: 0 auto 28px;
}

.reviews__list {
  list-style: none;
  margin: 0 auto 24px;
  padding: 0;
  max-width: 720px;
  text-align: left;
}

.reviews__item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 14px;
  font-size: 16px;
  line-height: 24px;
  color: #0B1D2E;
}

.reviews__bullet {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  margin-top: 8px;
  border-radius: 50%;
  background: #006688;
}

.reviews__note {
  font-size: 14px;
  line-height: 22px;
  color: #6E787F;
  max-width: 640px;
  margin: 0 auto 16px;
}

.reviews__imprint-link {
  display: inline-block;
  font-weight: 600;
  font-size: 15px;
  color: #006688;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.reviews__imprint-link:hover {
  border-bottom-color: #006688;
}

@media (max-width: 640px) {
  .reviews { padding: 56px 24px; }
  .reviews__title { font-size: 26px; line-height: 32px; }
}

/* ==========================================================================
   Floating Service Widget (left sidebar)
   ========================================================================== */

.service-widget {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  position: fixed;
  top: 50%;
  left: 50px;
  transform: translateY(-50%);
  width: 200px;
  max-height: 765px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0px 12px 32px rgba(4, 22, 39, 0.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 12px;
  z-index: 900;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.service-widget--visible {
  opacity: 1;
  pointer-events: auto;
}

/* --- Header --- */
.service-widget__header {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  gap: 8px;
  flex-shrink: 0;
}

.service-widget__logo-wrap {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

.service-widget__logo-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.service-widget__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.service-widget__brand-name {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: 10px;
  line-height: 10px;
  text-align: center;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  color: #0B1D2E;
}

.service-widget__brand-sub {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 8px;
  line-height: 12px;
  text-align: center;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #006688;
}

/* --- Scrollable Content --- */
.service-widget__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 16px 12px;
  gap: 18px;
  width: 100%;
  overflow-y: auto;
  flex: 1;
  min-height: 0;
}

.service-widget__content::-webkit-scrollbar {
  width: 4px;
}

.service-widget__content::-webkit-scrollbar-thumb {
  background: #D1D5DB;
  border-radius: 2px;
}

/* --- Sections --- */
.service-widget__section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  width: 100%;
}

.service-widget__section-head {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  width: 100%;
}

.service-widget__section-head svg {
  flex-shrink: 0;
}

.service-widget__section-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 10px;
  line-height: 15px;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  color: #0B1D2E;
}

.service-widget__section-desc {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 9px;
  line-height: 11px;
  color: #3E484F;
  width: 100%;
}


/* Upload zone (dashed border) */
.service-widget__upload-zone {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 16px;
  gap: 4px;
  width: 100%;
  height: 65px;
  background: rgba(242, 244, 246, 0.5);
  border: 2px dashed rgba(190, 200, 208, 0.3);
  border-radius: 8px;
  position: relative;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.service-widget__upload-zone:hover {
  border-color: rgba(0, 102, 136, 0.4);
  background: rgba(0, 102, 136, 0.05);
}

.service-widget__upload-zone--has-file {
  border-style: solid;
  border-color: #006688;
  background: rgba(0, 102, 136, 0.05);
  padding: 8px;
}

.service-widget__upload-zone--has-file .service-widget__upload-icon,
.service-widget__upload-zone--has-file .service-widget__upload-text {
  display: none;
}

.service-widget__upload-icon {
  flex-shrink: 0;
}

.service-widget__upload-preview {
  display: none;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 4px;
}

.service-widget__upload-zone--has-file .service-widget__upload-preview {
  display: block;
}

.service-widget__upload-remove {
  display: none;
  position: absolute;
  top: 4px;
  right: 4px;
  width: 18px;
  height: 18px;
  background: rgba(0, 0, 0, 0.6);
  border: none;
  border-radius: 50%;
  color: #FFFFFF;
  font-size: 12px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  transition: background 0.15s;
}

.service-widget__upload-remove:hover {
  background: rgba(0, 0, 0, 0.8);
}

.service-widget__upload-zone--has-file .service-widget__upload-remove {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Hidden file input */
.service-widget__file-input {
  display: none;
}

.service-widget__upload-text {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 8px;
  line-height: 12px;
  color: #6E787F;
}

/* Outline button */
.service-widget__btn-outline {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 8px 0;
  width: 100%;
  height: 32px;
  background: #FFFFFF;
  border: 1px solid rgba(190, 200, 208, 0.2);
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 9px;
  line-height: 14px;
  letter-spacing: 0.9px;
  color: #0B1D2E;
  cursor: pointer;
  transition: background 0.15s;
}

.service-widget__btn-outline:hover {
  background: #F2F4F6;
}

/* --- Input Fields --- */
.service-widget__fields {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 9px;
  gap: 8px;
  width: 100%;
}

.service-widget__input {
  box-sizing: border-box;
  display: flex;
  align-items: flex-start;
  padding: 14px 12px;
  width: 100%;
  height: 42px;
  background: #FFFFFF;
  border: 1px solid rgba(190, 200, 208, 0.3);
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 10px;
  line-height: 12px;
  color: #191C1E;
}

.service-widget__input::placeholder {
  color: #BEC8D0;
}

.service-widget__input:focus {
  border-color: #006688;
}

/* --- Hint Text --- */
.service-widget__hint {
  font-family: 'Inter', sans-serif;
  font-style: italic;
  font-weight: 500;
  font-size: 9px;
  line-height: 15px;
  text-align: center;
  color: #BEC8D0;
  width: 100%;
}

/* --- Footer CTA --- */
.service-widget__footer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 12px;
  width: 100%;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  flex-shrink: 0;
  border-radius: 0 0 12px 12px;
}

.service-widget__submit {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 12px 0;
  width: 100%;
  height: 39px;
  background: #0B1D2E;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  isolation: isolate;
  transition: background 0.2s;
}

.service-widget__submit:hover {
  background: #1a2f42;
}

.service-widget__submit-shadow {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.002);
  box-shadow: 0px 10px 15px -3px rgba(11, 29, 46, 0.2), 0px 4px 6px -4px rgba(11, 29, 46, 0.2);
  border-radius: 4px;
  z-index: 0;
}

.service-widget__submit-text {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: 10px;
  line-height: 15px;
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #FFFFFF;
  position: relative;
  z-index: 1;
}

.service-widget__status {
  margin-top: 10px;
  font-size: 11px;
  line-height: 15px;
}

/* ==========================================================================
   Booking Modal
   ========================================================================== */

.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal--open {
  opacity: 1;
  visibility: visible;
}

.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 29, 46, 0.7);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.modal__container {
  position: relative;
  box-sizing: border-box;
  width: 100%;
  max-width: 720px;
  max-height: calc(100vh - 48px);
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 24px 64px rgba(4, 22, 39, 0.15);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: translateY(20px) scale(0.98);
  transition: transform 0.3s ease;
}

.modal--open .modal__container {
  transform: translateY(0) scale(1);
}

.modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(11, 29, 46, 0.08);
  border: none;
  border-radius: 8px;
  color: #3E484F;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  z-index: 10;
}

.modal__close:hover {
  background: rgba(11, 29, 46, 0.15);
  color: #0B1D2E;
}

/* Modal Header */
.modal__header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 32px;
  border-bottom: 1px solid rgba(190, 200, 208, 0.2);
  flex-shrink: 0;
}

.modal__logo-wrap {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
}

.modal__logo-img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.modal__brand {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.modal__brand-name {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: 14px;
  line-height: 18px;
  letter-spacing: -0.3px;
  text-transform: uppercase;
  color: #0B1D2E;
}

.modal__brand-sub {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.5px;
  color: #006688;
}

/* Modal Body */
.modal__body {
  flex: 1;
  overflow-y: auto;
  padding: 24px 32px;
}

.modal__columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.modal__column {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

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

.modal__section-head {
  display: flex;
  align-items: center;
  gap: 10px;
}

.modal__section-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #0B1D2E;
}

.modal__section-desc {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 13px;
  line-height: 18px;
  color: #4F6074;
}

/* Modal Upload Zone */
.modal__upload-zone {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 24px;
  gap: 8px;
  width: 100%;
  min-height: 100px;
  background: rgba(242, 244, 246, 0.6);
  border: 2px dashed rgba(190, 200, 208, 0.4);
  border-radius: 12px;
  position: relative;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.modal__upload-zone:hover {
  border-color: rgba(0, 102, 136, 0.5);
  background: rgba(0, 102, 136, 0.05);
}

.modal__upload-zone--has-file {
  border-style: solid;
  border-color: #006688;
  background: rgba(0, 102, 136, 0.05);
  padding: 12px;
}

.modal__upload-zone--has-file .modal__upload-icon,
.modal__upload-zone--has-file .modal__upload-text {
  display: none;
}

.modal__upload-icon {
  flex-shrink: 0;
  opacity: 0.6;
}

.modal__upload-text {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 12px;
  line-height: 16px;
  color: #6E787F;
}

.modal__upload-preview {
  display: none;
  max-width: 100%;
  max-height: 80px;
  object-fit: contain;
  border-radius: 6px;
}

.modal__upload-zone--has-file .modal__upload-preview {
  display: block;
}

.modal__upload-remove {
  display: none;
  position: absolute;
  top: 8px;
  right: 8px;
  width: 24px;
  height: 24px;
  background: rgba(0, 0, 0, 0.6);
  border: none;
  border-radius: 50%;
  color: #FFFFFF;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  transition: background 0.15s;
}

.modal__upload-remove:hover {
  background: rgba(0, 0, 0, 0.8);
}

.modal__upload-zone--has-file .modal__upload-remove {
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal__file-input {
  display: none;
}

.modal__btn-outline {
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 16px;
  width: 100%;
  height: 40px;
  background: #FFFFFF;
  border: 1px solid rgba(190, 200, 208, 0.3);
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 11px;
  line-height: 16px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #0B1D2E;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
}

.modal__btn-outline:hover {
  background: #F2F4F6;
  border-color: rgba(190, 200, 208, 0.5);
}

/* Modal Form Fields */
.modal__fields {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.modal__label {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 11px;
  line-height: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #3E484F;
}

.modal__input {
  box-sizing: border-box;
  padding: 12px 14px;
  width: 100%;
  height: 44px;
  background: #FFFFFF;
  border: 1px solid rgba(190, 200, 208, 0.3);
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #191C1E;
  transition: border-color 0.2s;
}

.modal__input::placeholder {
  color: rgba(110, 120, 127, 0.6);
}

.modal__input:focus {
  border-color: #006688;
  outline: none;
}

.modal__textarea {
  box-sizing: border-box;
  padding: 12px 14px;
  width: 100%;
  min-height: 80px;
  background: #FFFFFF;
  border: 1px solid rgba(190, 200, 208, 0.3);
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #191C1E;
  resize: vertical;
  transition: border-color 0.2s;
}

.modal__textarea::placeholder {
  color: rgba(110, 120, 127, 0.6);
}

.modal__textarea:focus {
  border-color: #006688;
  outline: none;
}

/* Modal Footer */
.modal__footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 20px 32px 24px;
  border-top: 1px solid rgba(190, 200, 208, 0.2);
  background: rgba(242, 244, 246, 0.5);
  flex-shrink: 0;
}

.modal__hint {
  font-family: 'Inter', sans-serif;
  font-style: italic;
  font-weight: 500;
  font-size: 11px;
  line-height: 16px;
  text-align: center;
  color: #6E787F;
}

.modal__submit {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 14px 48px;
  width: 100%;
  max-width: 320px;
  height: 52px;
  background: linear-gradient(135deg, #006688 0%, #5DCAFD 100%);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  isolation: isolate;
  transition: filter 0.2s;
}

.modal__submit:hover {
  filter: brightness(1.08);
}

.modal__submit-shadow {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.002);
  box-shadow: 0 10px 20px -5px rgba(0, 102, 136, 0.3);
  border-radius: 10px;
  z-index: 0;
}

.modal__submit-text {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #FFFFFF;
  position: relative;
  z-index: 1;
}

.modal__status {
  max-width: 420px;
}

/* Modal Responsive */
@media (max-width: 720px) {
  .modal {
    padding: 16px;
  }

  .modal__container {
    max-height: calc(100vh - 32px);
  }

  .modal__header {
    padding: 20px 24px;
  }

  .modal__body {
    padding: 20px 24px;
  }

  .modal__columns {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .modal__footer {
    padding: 16px 24px 20px;
  }

  .modal__submit {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .modal__header {
    padding: 16px 20px;
    gap: 12px;
  }

  .modal__logo-wrap {
    width: 48px;
    height: 48px;
  }

  .modal__logo-img {
    width: 48px;
    height: 48px;
  }

  .modal__body {
    padding: 16px 20px;
  }

  .modal__footer {
    padding: 16px 20px;
  }
}

/* Hide widget on screens smaller than ~20 inches (1920px) */
@media (max-width: 1919px) {
  .service-widget {
    display: none !important;
  }
}

/* ==========================================================================
   Scroll to Top Button
   ========================================================================== */

.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #006688 0%, #5DCAFD 100%);
  border: none;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  color: #FFFFFF;
  box-shadow: 0 8px 24px rgba(0, 102, 136, 0.25);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background 0.2s ease;
}

.scroll-top:hover {
  background: linear-gradient(135deg, #005570 0%, #4AB8EB 100%);
  transform: translateY(-2px);
}

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

@media (max-width: 640px) {
  .scroll-top {
    bottom: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
  }
}

/* ==========================================================================
   Helper classes
   ========================================================================== */

.hidden,
[hidden] {
  display: none !important;
}

.visually-hidden {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

/* ==========================================================================
   Mobile Hero Section & Header (≤ 768px)
   ========================================================================== */

/* --- Hamburger & mobile brand text: hidden on desktop --- */
.nav-hamburger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  flex-shrink: 0;
}

.logo__text-mobile {
  display: none;
}

.glass-card__title-mobile {
  display: none;
}

/* --- Mobile Nav Drawer: hidden on desktop --- */
.mobile-nav {
  display: none;
}

@media (max-width: 768px) {

  /* Prevent horizontal scroll */
  .main {
    overflow-x: hidden;
    max-width: 100vw;
    width: 100%;
  }

  /* ============================================================
     Mobile Navigation Bar (TopAppBar)
     ============================================================ */
  .hero__nav-bar {
    height: 52px;
    background: rgba(248, 250, 252, 0.7);
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    width: 100%;
    max-width: 100vw;
    overflow: visible;
    z-index: 1001;
  }

  .hero__nav-inner {
    height: 52px;
    padding: 0 16px;
    gap: 8px;
    justify-content: flex-start;
    max-width: 100vw;
    box-sizing: border-box;
    position: relative;
    z-index: 1001;
  }

  /* Show hamburger */
  .nav-hamburger {
    display: flex;
    order: 0;
  }

  /* Logo: hide image, show text */
  .logo {
    order: 1;
    gap: 0;
  }

  .logo img {
    display: none;
  }

  .logo__text-mobile {
    display: block;
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: -0.45px;
    color: #0B1D2E;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: calc(100vw - 120px);
  }

  /* Hide desktop nav links and CTA */
  .nav__links,
  .btn--header {
    display: none !important;
  }

  /* Lang switcher: show only globe icon */
  .lang-switcher {
    margin-left: auto;
    order: 2;
    z-index: 2100;
    position: relative;
    pointer-events: auto;
  }

  .lang-switcher__btn {
    background: none;
    border: none;
    padding: 4px;
    gap: 0;
    position: relative;
    z-index: 2101;
    cursor: pointer;
    pointer-events: auto;
  }

  .lang-switcher__label,
  .lang-switcher__arrow {
    display: none;
  }

  .lang-switcher__icon path {
    fill: #006688;
  }

  .lang-switcher__icon {
    width: 18px;
    height: 18px;
    pointer-events: none;
  }

  /* Mobile language menu - high z-index */
  .lang-switcher__menu {
    z-index: 2102 !important;
    position: fixed !important;
    top: 52px !important;
    right: 16px !important;
  }

  /* ============================================================
     Mobile Nav Drawer
     ============================================================ */
  .mobile-nav {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 1000;
    visibility: hidden;
    pointer-events: none;
    transition: visibility 0.3s;
  }

  .mobile-nav--open {
    visibility: visible;
    pointer-events: auto;
  }

  .mobile-nav__overlay {
    position: absolute;
    inset: 0;
    background: rgba(11, 29, 46, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .mobile-nav--open .mobile-nav__overlay {
    opacity: 1;
  }

  .mobile-nav__panel {
    position: absolute;
    top: 0;
    right: 0;
    width: 280px;
    height: 100%;
    background: #FFFFFF;
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    padding: 72px 24px 32px;
    gap: 4px;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .mobile-nav--open .mobile-nav__panel {
    transform: translateX(0);
  }

  .mobile-nav__link {
    display: flex;
    align-items: center;
    padding: 14px 16px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #0B1D2E;
    border-radius: 8px;
    transition: background 0.15s;
  }

  .mobile-nav__link:hover {
    background: #F2F4F6;
    color: #006688;
  }

  .mobile-nav__cta {
    margin-top: 16px;
    width: 100%;
    height: 52px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  /* Hamburger active state (X) */
  .nav-hamburger--active svg path {
    fill: #006688;
  }

  /* ============================================================
     Hero Section — Mobile
     ============================================================ */
  .hero {
    height: auto;
    min-height: 720px;
    padding: 52px 0 0;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    overflow-x: hidden;
    max-width: 100vw;
  }

  /* Dark gradient overlay for better text readability on mobile */
  .hero::before {
    background: linear-gradient(
      180deg,
      rgba(11, 29, 46, 0.75) 0%,
      rgba(11, 29, 46, 0.65) 40%,
      rgba(11, 29, 46, 0.45) 70%,
      rgba(247, 249, 251, 0.85) 100%
    );
  }

  /* Background image — mobile version */
  .hero__bg {
    width: 100%;
    left: 0;
    top: 0;
    bottom: 0;
    transform: none;
  }

  /* Hide desktop image, show mobile image */
  .hero__bg-desktop {
    display: none !important;
  }

  .hero__bg-mobile {
    display: block !important;
  }

  .hero__bg img {
    filter: saturate(1.15) contrast(1.1) brightness(0.75);
    transform: none;
  }

  /* ============================================================
     Hero Container — Mobile
     ============================================================ */
  .hero__container {
    width: 100%;
    max-width: 100vw;
    height: auto;
    display: flex;
    flex-direction: column;
    padding: 32px 20px 20px;
    position: relative;
    box-sizing: border-box;
  }

  /* ============================================================
     Hero Left (Main Content) — Mobile
     ============================================================ */
  .hero__left {
    position: static;
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    box-sizing: border-box;
    margin-top: 20px;
  }

  .hero__text-block {
    gap: 0;
    margin-bottom: 16px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  /* Title: OswaldLocal (same as desktop), mobile sizing, WHITE text on dark bg */
  .hero__title {
    font-family: 'OswaldLocal', 'Inter', sans-serif;
    font-weight: 700;
    font-size: 44px;
    line-height: 48px;
    letter-spacing: -2.2px;
    color: #FFFFFF;
    max-width: 100%;
    width: 100%;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  /* Highlight: keep desktop orange */
  .hero__highlight {
    color: #FF6A00;
    font-weight: 800;
    font-size: 44px;
    line-height: 48px;
    letter-spacing: -2.2px;
    text-shadow:
      0 0 8px rgba(255, 106, 0, 0.55),
      0 0 16px rgba(255, 106, 0, 0.35),
      0 2px 10px rgba(255, 106, 0, 0.35);
    padding: 0;
    margin: 0;
  }

  .hero__highlight::before {
    display: none;
  }

  /* ============================================================
     Trust Badges — Mobile (top-right corner)
     ============================================================ */
  /* Hide desktop badges (they're inside text-block on desktop) */
  .hero__features--mobile {
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: absolute;
    top: 4px;
    right: 16px;
    z-index: 10;
    max-width: 180px;
  }

  .hero__features {
    flex-direction: column;
    gap: 8px;
    padding-top: 0;
    margin-bottom: 0;
  }

  .hero__feature {
    gap: 6px;
    align-items: center;
  }

  .hero__feature-icon {
    width: 20px;
    height: 20px;
    min-width: 20px;
    background: rgba(93, 202, 253, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero__feature-icon svg {
    width: 10px;
    height: 10px;
  }

  .hero__feature-icon svg path {
    fill: #5DCAFD;
  }

  .hero__feature-text {
    font-weight: 700;
    font-size: 9px;
    line-height: 12px;
    letter-spacing: 0.45px;
    text-transform: uppercase;
    color: #FFFFFF;
    white-space: nowrap;
  }

  /* ============================================================
     Hero Actions — Mobile
     ============================================================ */
  .hero__actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 0;
    margin-bottom: 24px;
  }

  .btn--gradient.hero__cta {
    width: 100%;
    height: 52px;
    padding: 16px 0;
    background: linear-gradient(90deg, #006688 0%, #5DCAFD 100%);
    box-shadow: 0px 12px 32px rgba(0, 102, 136, 0.2);
    border-radius: 8px;
  }

  .hero__cta .btn__text {
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.7px;
    text-transform: uppercase;
  }

  /* Hide social proof on mobile */
  .hero__social-proof {
    display: none;
  }

  /* ============================================================
     Glass Card (Contact Widget) — Mobile
     ============================================================ */
  .hero__right {
    position: static;
    transform: none;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding-bottom: 20px;
  }

  .glass-card {
    width: 100%;
    max-width: 100%;
    min-height: auto;
    height: auto;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(190, 200, 208, 0.25);
    box-shadow: 0px 12px 32px rgba(4, 22, 39, 0.06);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 24px 0px;
    padding: 24px;
  }

  .glass-card__close {
    display: none;
  }

  .glass-card__content {
    gap: 16px;
  }

  .glass-card__header {
    gap: 4px;
  }

  /* Mobile-only title above desc */
  .glass-card__title-mobile {
    display: block;
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: 11px;
    line-height: 16px;
    letter-spacing: 1.1px;
    text-transform: uppercase;
    color: #0B1D2E;
  }

  .glass-card__desc {
    font-weight: 400;
    font-size: 14px;
    line-height: 19px;
    color: #3E484F;
  }

  .glass-card__form {
    gap: 12px;
  }

  /* Hide label on mobile, use placeholder instead */
  .form-group__label {
    display: none;
  }

  .form-group__input {
    height: 44px;
    padding: 13px 16px 14px;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    box-shadow: 0px 0px 0px 1px rgba(190, 200, 208, 0.3);
    border-radius: 4px;
    font-size: 14px;
    line-height: 17px;
  }

  .form-group__input::placeholder {
    color: #BEC8D0;
  }

  .btn--dark.glass-card__submit {
    height: 40px;
    padding: 12px 0;
    background: #0B1D2E;
    border-radius: 4px;
    font-weight: 700;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 1.2px;
  }

  /* Hide footer privacy text on mobile */
  .glass-card__footer {
    display: none;
  }
}

/* ==========================================================================
   Print styles
   ========================================================================== */

@media print {
  *,
  *::before,
  *::after {
    background: #fff !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }

  a[href]::after { content: " (" attr(href) ")"; }
  a[href^="#"]::after,
  a[href^="javascript:"]::after { content: ""; }

  pre { white-space: pre-wrap !important; }

  p, h2, h3 { orphans: 3; widows: 3; }
  h2, h3 { page-break-after: avoid; }
}

@font-face {
  font-family: 'OswaldLocal';
  src: url('../fonts/static/Oswald-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
/* ===== Site Footer (legal: Impressum / Datenschutz / AGB) ===== */
.site-footer {
  background: #0d1b22;
  color: #cdd5db;
  padding: 40px 24px 32px;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.site-footer__container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas:
    "brand links"
    "contact contact"
    "copy copy";
  gap: 16px 24px;
  align-items: center;
}
.site-footer__brand {
  grid-area: brand;
  display: flex;
  align-items: center;
  gap: 12px;
}
.site-footer__logo { width: 38px; height: 38px; object-fit: contain; }
.site-footer__brand-text { display: flex; flex-direction: column; line-height: 1.3; font-size: 14px; color: #fff; }
.site-footer__brand-text span { color: #94a3b8; font-size: 13px; }
.site-footer__contact {
  grid-area: contact;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 14px;
  font-size: 14px;
}
.site-footer__contact-link {
  color: #e2e8f0;
  font-weight: 600;
  text-decoration: none;
}
.site-footer__contact-link:hover {
  color: #4dd0e1;
}
.site-footer__contact-sep {
  color: #64748b;
  user-select: none;
}
.site-footer__links {
  grid-area: links;
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.site-footer__links a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease;
}
.site-footer__links a:hover { border-bottom-color: #4dd0e1; }
.site-footer__copyright {
  grid-area: copy;
  text-align: center;
  margin: 4px 0 0;
  font-size: 12px;
  color: #94a3b8;
}
@media (max-width: 720px) {
  .site-footer__container {
    grid-template-columns: 1fr;
    grid-template-areas:
      "brand"
      "contact"
      "links"
      "copy";
    text-align: center;
  }
  .site-footer__brand { justify-content: center; }
  .site-footer__links { justify-content: center; }
}
