/* === Shine Guards hero — tokens === */
:root {
  --blue-soft: #bfdffe;
  --blue-vivid: #3c99ff;
  --orange-cta: #ff570a;
  --text: #0f172a;
  --text-muted: #475569;
  --surface: #ffffff;
  --page-bg: #f5f9ff;
  --radius-xl: clamp(20px, 2.5vw, 28px);
  --radius-lg: 18px;
  --shadow-soft: 0 24px 60px rgba(15, 23, 42, 0.08);
  --shadow-card: 0 12px 40px rgba(60, 153, 255, 0.12);
  --font: "Montserrat", system-ui, -apple-system, sans-serif;
  --tap-min: 48px;
}

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

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--page-bg);
  -webkit-font-smoothing: antialiased;
}

@media (max-width: 640px) {
  body {
    padding-bottom: 0;
  }
}

#estimate-form {
  scroll-margin-top: calc(4.5rem + 0.5rem);
}

.d-flex {
  display: flex;
}

/* —— Site header —— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--surface);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset;
}

.site-header__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0.65rem max(1rem, env(safe-area-inset-left)) 0.65rem max(1rem, env(safe-area-inset-right));
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1rem;
}

.site-header__left {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 0;
  flex: 1;
}

.site-header__right {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 2vw, 1.5rem);
  flex-shrink: 0;
}

.site-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.05;
  text-decoration: none;
  color: inherit;
}

.site-logo__shine {
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--blue-vivid);
  text-transform: lowercase;
}

.site-logo__guards {
  display: inline-flex;
  align-items: baseline;
  margin-top: 0.1rem;
  font-size: 1.125rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #334155;
  text-transform: lowercase;
}

.site-logo__g {
  position: relative;
  display: inline-block;
  margin-right: -0.02em;
}

.site-logo__letter {
  position: relative;
  z-index: 1;
  text-shadow: 0 0 0.5px rgba(255, 255, 255, 0.95);
}

.site-logo__mark {
  position: absolute;
  left: 50%;
  top: 45%;
  transform: translate(-52%, -55%);
  width: 0.95rem;
  height: 0.95rem;
  opacity: 0.92;
  pointer-events: none;
}

.site-logo__rest {
  margin-left: -0.05em;
}

/* —— Custom Language Switcher —— */
.custom-lang {
  position: relative;
  z-index: 101;
}

.custom-lang__btn {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.5rem 0.6rem;
  font-family: inherit;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  text-transform: uppercase;
  background: transparent;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.custom-lang__btn:hover,
.custom-lang__btn[aria-expanded="true"] {
  background: #f1f5f9;
  color: var(--text);
}

.custom-lang__btn:focus-visible {
  outline: 2px solid var(--blue-vivid);
  outline-offset: 2px;
}

.custom-lang__btn svg {
  transition: transform 0.2s ease;
}

.custom-lang__btn[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.custom-lang__menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  z-index: 100;
  min-width: 120px;
  margin: 0;
  padding: 0.5rem;
  list-style: none;
  background: var(--surface);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.custom-lang__btn[aria-expanded="true"] + .custom-lang__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.custom-lang__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.custom-lang__link {
    color: var(--text-muted);
    text-decoration: none;  
}

.custom-lang__item:hover {
  background: #f1f5f9;
  color: var(--text);
}

.custom-lang__item:hover .custom-lang__link {
  color: var(--text);
}

.custom-lang__item[aria-selected="true"] {
  background: var(--blue-vivid);
  color: #fff;
}
.custom-lang__item[aria-selected="true"] .custom-lang__link {
  color: #fff;
}
.custom-lang__check {
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.2s ease;
}

.custom-lang__item[aria-selected="true"] .custom-lang__check {
  opacity: 1;
  transform: scale(1);
}

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

.header-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.header-rating__g-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  font-size: 0.85rem;
  font-weight: 800;
  color: #fff;
  border-radius: 6px;
  background: conic-gradient(
    from 180deg at 50% 50%,
    #4285f4 0deg 90deg,
    #ea4335 90deg 180deg,
    #fbbc04 180deg 270deg,
    #34a853 270deg 360deg
  );
}

.header-rating__text {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
  line-height: 1.15;
}

.header-rating__score {
  font-size: 0.9375rem;
  font-weight: 800;
  color: var(--text);
}

@media (max-width: 560px) {
  .header-rating__score {
    display: none;
  }
}

.header-rating__stars {
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  line-height: 1;
  background: linear-gradient(180deg, #fbbf24 0%, #f59e0b 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.site-header__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 1.15rem;
  font-family: inherit;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
  background: var(--orange-cta);
  border-radius: 10px;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.1);
  transition: background 0.2s, transform 0.15s ease;
}

.site-header__cta:hover {
  background: #e64d08;
  transform: translateY(-1px);
}

.site-header__cta:focus-visible {
  outline: 2px solid var(--blue-vivid);
  outline-offset: 3px;
}

.site-header__ctas {
  display: flex;
  align-items: center;
  gap: clamp(0.45rem, 2vw, 0.75rem);
  flex-shrink: 0;
}

.site-header__cta--outline {
  display: none;
  background: #fff;
  color: var(--orange-cta);
  border: 1.5px solid var(--orange-cta);
  box-shadow: none;
}

.site-header__cta--outline:hover {
  background: rgba(255, 87, 10, 0.08);
  transform: translateY(-1px);
}

@media (max-width: 640px) {
  .site-header__inner {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem max(1rem, env(safe-area-inset-left)) 0.5rem max(1rem, env(safe-area-inset-right));
  }

  .site-header__left {
    flex: 1;
    min-width: 0;
    gap: 0.4rem;
    justify-content: flex-start;
  }

  .site-logo svg {
    width: 68px;
    height: 34px;
  }

  .custom-lang {
    margin-left: auto;
    flex-shrink: 0;
    z-index: 101;
  }

  .site-header__right {
    display: none;
  }

  .site-header__cta {
    min-height: 34px;
    padding: 0 0.45rem;
    font-size: 0.52rem;
    letter-spacing: 0.06em;
    border-radius: 8px;
    flex-shrink: 0;
  }

  .site-header__cta--outline {
    display: inline-flex;
  }

  .site-header__ctas {
    flex: 1 1 auto;
    justify-content: center;
    min-width: 0;
    gap: 0.35rem;
  }
}

@media (max-width: 560px) {
  .header-rating__score {
    display: none;
  }
}

@media (max-width: 380px) {
  .header-rating__text .header-rating__stars {
    font-size: 0.65rem;
  }

  .site-header__cta {
    padding: 0 0.4rem;
    font-size: 0.5rem;
    min-height: 34px;
  }
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(1.25rem, 4vw, 4rem) clamp(1rem, 4vw, 2.5rem) clamp(2rem, 6vw, 4rem);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(165deg, #ffffff 0%, #e6f2ff 45%, #dbeafe 100%);
  pointer-events: none;
}

.hero__bg::after {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 55%;
  height: 90%;
  background: radial-gradient(
    ellipse at center,
    rgba(191, 223, 254, 0.65) 0%,
    rgba(191, 223, 254, 0) 70%
  );
  filter: blur(2px);
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: clamp(1.25rem, 3vw, 3rem);
  align-items: start;
}

/* Left column: intro + estimate form (desktop) */
.hero__left {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
  min-width: 0;
}

.hero__intro {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

/* —— Copy —— */
.hero__title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text);
}

.hero__lead {
  margin: 0 0 1.25rem;
  font-size: clamp(0.95rem, 1.25vw, 1.05rem);
  font-weight: 500;
  line-height: 1.5;
  color: var(--text-muted);
  max-width: 52ch;
}

/* —— Price + phone row —— */
.hero__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.25rem;
  margin-bottom: 1.25rem;
}

.hero__price {
  display: inline-flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.35rem 0.5rem;
  padding: 0.5rem 0.85rem;
  background: rgba(191, 223, 254, 0.45);
  border: 1px solid rgba(60, 153, 255, 0.28);
  border-radius: 12px;
}

.hero__price-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--blue-vivid);
}

.hero__price-value {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
}

.hero__price-unit {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
}

.hero__contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 1rem;
}

.hero__phone {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text);
  text-decoration: none;
  padding: 0.25rem 0;
}

.hero__phone:hover {
  color: var(--blue-vivid);
}

.hero__phone:focus-visible {
  outline: 2px solid var(--blue-vivid);
  outline-offset: 2px;
}

.btn-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 40px;
  padding: 0 1rem;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  background: linear-gradient(180deg, #ff6a24 0%, var(--orange-cta) 100%);
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(255, 87, 10, 0.3);
  transition: filter 0.2s, transform 0.2s, box-shadow 0.2s;
}

.btn-call:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(255, 87, 10, 0.35);
}

.btn-call:focus-visible {
  outline: 2px solid var(--blue-vivid);
  outline-offset: 3px;
}

.btn-call__icon {
  display: flex;
  line-height: 0;
}

/* —— Google-style loyalty —— */
.hero__loyalty {
  margin-bottom: 1.5rem;
}

@media (max-width: 560px) {
  .hero__loyalty {
    margin-bottom: 1.5rem;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

.hero__loyalty-visual {
  max-width: 260px;
}

.g-rating {
  padding: 0.65rem 0.85rem;
  background: var(--surface);
  border: 1px solid rgba(60, 153, 255, 0.2);
  border-radius: 14px;
  box-shadow: 0 6px 24px rgba(15, 23, 42, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.g-rating:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(15, 23, 42, 0.08);
}

@media (max-width: 560px) {
  .g-rating {
    max-width: 100%;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

.g-rating__brand {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.25rem;
}

.g-rating__g {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  font-size: 0.8rem;
  font-weight: 800;
  color: #fff;
  border-radius: 6px;
  background: conic-gradient(
    from 180deg at 50% 50%,
    #4285f4 0deg 90deg,
    #ea4335 90deg 180deg,
    #fbbc04 180deg 270deg,
    #34a853 270deg 360deg
  );
}

.g-rating__label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
}

.g-rating__row {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding-left: 0.5rem;
  margin-bottom: 0.15rem;
}

@media (max-width: 560px) {
  .g-rating__brand, .g-rating__row {
    justify-content: center;
    padding-left: 0;
  }
}

.g-rating__score {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.g-rating__stars {
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  background: linear-gradient(180deg, #fbbf24 0%, #f59e0b 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.g-rating__caption {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
}

@media (max-width: 560px) {
  .g-rating__caption {
    text-align: center;
  }
}

/* Optional: swap `.g-rating` for a screenshot */
.hero__loyalty-img {
  display: block;
  width: 100%;
  max-width: 320px;
  height: auto;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(60, 153, 255, 0.2);
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.08);
}

/* —— Form frame (distinct card) —— */
.hero__form-wrap {
  width: 100%;
}

.hero__form-card {
  padding: clamp(1.15rem, 3vw, 1.65rem);
  background: var(--surface);
  border-radius: var(--radius-xl);
  border: 2px solid rgba(60, 153, 255, 0.35);
  box-shadow: var(--shadow-card), var(--shadow-soft);
  min-width: 0;
  overflow-x: clip;
}

.hero__form-kicker {
  margin: 0 0 0.25rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-vivid);
}

.hero__form-title {
  margin: 0 0 0.4rem;
  font-size: clamp(1rem, 1.35vw, 1.125rem);
  font-weight: 800;
  line-height: 1.25;
  color: var(--text);
}

.hero__form-desc {
  margin: 0 0 0.85rem;
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.4;
  color: var(--text-muted);
}

.quote-form {
  min-width: 0;
}

.quote-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem 0.75rem;
  min-width: 0;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-width: 0;
}

.field--full {
  grid-column: 1 / -1;
}

.field__label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
}

.field__optional {
  font-weight: 500;
  color: #94a3b8;
}

.req {
  color: #e11d48;
  font-weight: 700;
}

.field__input {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: 42px;
  padding: 0.5rem 0.85rem;
  font-family: inherit;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
  color: var(--text);
  background: #f8fafc;
  border: 1px solid rgba(60, 153, 255, 0.22);
  border-radius: 10px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

/*
 * date/time: у WebKit (особливо iOS Safari) нативне поле має великий intrinsic min-width.
 * overflow:hidden лише обрізав текст. Потрібен flex-контейнер + flex:1 1 0% + width:0 + min-width:0
 * на input — єдиний надійний спосіб змусити поле вписатися в ширину форми.
 */
.field--date {
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.field__date-shell {
  display: flex;
  align-items: stretch;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  border-radius: 10px;
}

.field__input--date {
  box-sizing: border-box;
  flex: 1 1 0%;
  width: 0;
  min-width: 0;
  max-width: 100%;
  display: block;
  -webkit-appearance: none;
  appearance: none;
}

/* WebKit: внутрішній блок не роздуває поле (iOS + десктоп) */
.field__input--date::-webkit-datetime-edit {
  padding: 0;
  min-width: 0;
  width: 100%;
}

.field__input--date::-webkit-datetime-edit-fields-wrapper {
  min-width: 0;
  padding: 0;
}

.field__input--date::-webkit-calendar-picker-indicator {
  flex-shrink: 0;
  margin-inline-start: 0.15rem;
  padding: 0;
  cursor: pointer;
}

/*
 * iOS Safari: нативний date часто ігнорує width:100% без flex-трюку на батьку.
 * -webkit-touch-callout — типовий маркер WebKit на iOS (не спрацює в Chrome Desktop).
 */
@supports (-webkit-touch-callout: none) {
  .field__date-shell {
    max-width: 100%;
  }

  .field__input--date {
    flex: 1 1 0%;
    width: 0;
    min-width: 0;
    /* зменшує внутрішні відступи UA-стилю iOS */
    padding-inline: 0.45rem;
  }

  .field__input--date::-webkit-datetime-edit {
    min-width: 0;
  }

  .field__input--date::-webkit-datetime-edit-text {
    padding: 0 1px;
  }
}

.field__input::placeholder {
  color: #94a3b8;
}

.field__input:hover {
  border-color: rgba(60, 153, 255, 0.45);
  background: #fff;
}

.field__input:focus {
  border-color: var(--blue-vivid);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(60, 153, 255, 0.2);
}

.field__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%233C99FF' viewBox='0 0 16 16'%3E%3Cpath d='M4 6l4 4 4-4' stroke='%233C99FF' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  padding-right: 2.35rem;
  cursor: pointer;
}

.btn-cta {
  width: 100%;
  margin-top: 1rem;
  min-height: var(--tap-min);
  padding: 0.75rem 1.25rem;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #fff;
  background: linear-gradient(180deg, #ff6a24 0%, var(--orange-cta) 100%);
  border: none;
  border-radius: 14px;
  cursor: pointer;
  box-shadow: 0 8px 28px rgba(255, 87, 10, 0.35);
  transition: transform 0.2s, box-shadow 0.2s, filter 0.2s;
}

.btn-cta:hover {
  filter: brightness(1.05);
  box-shadow: 0 12px 36px rgba(255, 87, 10, 0.42);
  transform: translateY(-1px);
}

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

.btn-cta:focus-visible {
  outline: 2px solid var(--blue-vivid);
  outline-offset: 3px;
}

/* —— Visual column —— */
.hero__visual {
  grid-column: 2;
  grid-row: 1;
  position: relative;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero__blobs {
  position: absolute;
  inset: 5% 0 0 0;
  z-index: 0;
}

.blob {
  position: absolute;
  border-radius: 50%;
  opacity: 0.85;
  animation: floatBlob 15s ease-in-out infinite alternate;
}

.blob--1 {
  width: 120%;
  height: 95%;
  left: -15%;
  top: 0;
  background: radial-gradient(
    circle at 30% 40%,
    rgba(191, 223, 254, 0.95) 0%,
    rgba(191, 223, 254, 0.35) 45%,
    transparent 70%
  );
  animation-delay: -2s;
}

.blob--2 {
  width: 70%;
  height: 70%;
  right: -5%;
  bottom: 5%;
  background: radial-gradient(
    circle at 60% 50%,
    rgba(60, 153, 255, 0.2) 0%,
    rgba(191, 223, 254, 0.5) 50%,
    transparent 65%
  );
  animation-delay: -5s;
}

.blob--3 {
  width: 45%;
  height: 45%;
  left: 10%;
  bottom: 15%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.9) 0%, transparent 70%);
  animation-delay: -8s;
}

.hero__badges {
  position: absolute;
  z-index: 3;
  top: 2%;
  left: 0;
  right: auto;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  max-width: 260px;
  pointer-events: none;
}

.badge {
  padding: 0.55rem 0.9rem;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(60, 153, 255, 0.25);
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(8px);
  animation: floatBadge 6s ease-in-out infinite;
}

.badge--offer {
  border-radius: 18px;
  padding: 0.6rem 0.95rem;
  border-color: rgba(255, 87, 10, 0.35);
  box-shadow: 0 10px 30px rgba(255, 87, 10, 0.1);
  animation-delay: 1s;
}

.badge__tag {
  display: block;
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange-cta);
  margin-bottom: 0.2rem;
}

.badge__text {
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--text);
}

.badge__text strong {
  color: var(--orange-cta);
  font-weight: 800;
}

.hero__photo-frame {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 440px;
  aspect-ratio: 4 / 5;
  border-radius: clamp(24px, 3.5vw, 40px);
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.95);
  box-shadow:
    0 32px 80px rgba(60, 153, 255, 0.18),
    0 0 0 1px rgba(60, 153, 255, 0.08) inset;
}

.hero__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.hero__photo-caption {
  position: relative;
  z-index: 2;
  margin: 0.65rem 0 0;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
}

/* —— Responsive —— */
@media (max-width: 960px) {
  /*
   * Перший екран: стабільна висота без «стрибків» при хованні адресного рядка.
   * — vh / dvh змінюються під час скролу → перерахунок сітки, фріз, рух тексту.
   * — svh (small viewport) ≈ екран з видимою панеллю UI; не перераховується
   *   синхронно з анімацією адресного рядка, як dvh.
   */
  .hero {
    overflow-x: clip;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    /* Fallback: vh; краще — svh у блоці @supports нижче */
    grid-template-rows: min(88vh, 720px) auto;
    gap: clamp(1.25rem, 4vw, 1.75rem);
    max-width: none;
  }

  @supports (height: 1svh) {
    .hero__inner {
      grid-template-rows: min(88svh, 720px) auto;
    }
  }

  /* Flatten left column so intro + form become grid items */
  .hero__left {
    display: contents;
  }

  /* Photo fills first row; intro stacks on top */
  .hero__visual {
    grid-column: 1;
    grid-row: 1;
    width: 100%;
    max-width: none;
    margin: 0;
    min-height: 0;
    align-self: stretch;
    justify-content: flex-end;
    border-radius: 0 0 clamp(20px, 5vw, 28px) clamp(20px, 5vw, 28px);
    overflow: hidden;
  }

  /* Dark gradient for readable text on photo */
  .hero__visual::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    background: linear-gradient(
      180deg,
      rgba(5, 22, 34, 0.35) 0%,
      rgba(5, 22, 34, 0.15) 28%,
      rgba(5, 22, 34, 0.55) 65%,
      rgba(5, 22, 34, 0.82) 100%
    );
  }

  .hero__blobs {
    display: none;
  }

  .hero__badges {
    display: none;
  }

  .hero__photo {
    filter: brightness(50%);
  }

  .hero__photo-frame {
    position: absolute;
    inset: 0;
    z-index: 1;
    max-width: none;
    width: 100%;
    height: 100%;
    aspect-ratio: unset;
    border-radius: 0;
    border-width: 0;
    box-shadow: none;
  }

  .hero__photo-caption {
    display: none;
  }

  .hero__intro {
    grid-column: 1;
    grid-row: 1;
    position: relative;
    z-index: 4;
    align-self: end;
    width: 100%;
    padding-top: max(0.75rem, env(safe-area-inset-top, 0px));
    padding-right: max(1rem, env(safe-area-inset-right, 0px));
    padding-bottom: max(1.25rem, env(safe-area-inset-bottom, 0px));
    padding-left: max(1rem, env(safe-area-inset-left, 0px));
    box-sizing: border-box;
  }

  .hero__form-wrap {
    grid-column: 1;
    grid-row: 2;
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding-left: max(1rem, env(safe-area-inset-left));
    padding-right: max(1rem, env(safe-area-inset-right));
    box-sizing: border-box;
  }

  .hero__title {
    max-width: none;
    text-align: center;
    color: #fff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
  }

  .hero__title span[style*="color"] {
    color: #7ec8ff !important;
  }

  .hero__lead {
    max-width: none;
    text-align: center;
    margin: 0 auto 1rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
  }

  .hero__meta {
    justify-content: center;
  }

  .hero__price {
    background: rgba(255, 255, 255, 0.94);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  }

  .hero__phone {
    color: #fff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  }

  .hero__loyalty {
    display: flex;
    justify-content: center;
    margin-bottom: 0;
  }

  .hero__loyalty-visual {
    max-width: none;
  }

  .g-rating {
    max-width: 100%;
    background: rgba(255, 255, 255, 0.96);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
  }
}

@media (max-width: 560px) {
  .hero {
    padding-top: 1rem;
    padding-bottom: 2rem;
    padding-left: max(1rem, env(safe-area-inset-left));
    padding-right: max(1rem, env(safe-area-inset-right));
  }

  .quote-form__grid {
    grid-template-columns: 1fr;
  }

  .hero__meta {
    gap: 0.65rem 0.85rem;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .hero__price {
    margin-right: 0;
  }

  .hero__contact {
    gap: 0.75rem;
    width: 100%;
    justify-content: center;
  }

  .hero__title {
    font-size: clamp(1.75rem, 8vw, 2.2rem);
  }
  
  .hero__lead {
    font-size: 0.95rem;
    margin-bottom: 1rem;
  }

  .hero__phone {
    font-size: 1rem;
    padding: 0.25rem 0;
    text-align: center;
  }

  .btn-call {
    min-height: 48px;
    padding: 0 1rem;
    font-size: 0.95rem;
    width: 100%;
    justify-content: center;
  }

  .hero__loyalty {
    margin-bottom: 1.5rem;
    justify-content: center;
  }
  
  .g-rating {
    max-width: 100%;
    justify-content: center;
  }

  .hero__form-card {
    padding: 1.25rem;
  }

  .hero__form-title {
    font-size: 1.125rem;
  }

  .btn-cta {
    min-height: 48px;
    font-size: 1rem;
    width: 100%;
    justify-content: center;
  }

  .hero__photo-frame {
    aspect-ratio: 3 / 4;
  }
}

@media (max-width: 480px) {
  .hero__badges {
    display: none; /* Hide floating badges on very small screens to avoid overlap */
  }
}

@media (min-width: 961px) {
  .hero__visual {
    position: sticky;
    top: 1.5rem;
  }
}

/* —— Services — refined cards —— */
.services {
  position: relative;
  padding: clamp(2.5rem, 5vw, 4.5rem) 0 clamp(3rem, 6vw, 5rem);
  background: #f1f5f9;
}

.services__inner {
  max-width: 1180px;
  margin: 0 auto;
}

.services__head {
  margin-bottom: clamp(1.5rem, 2.8vw, 2.25rem);
  text-align: left;
  max-width: 48ch;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
}

.services__title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.375rem, 2.4vw, 1.875rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
}

.services__subtitle {
  margin: 0;
  font-size: clamp(0.9375rem, 1.2vw, 1.0625rem);
  font-weight: 500;
  line-height: 1.55;
  color: var(--text-muted);
}

.services__subtitle strong {
  color: var(--blue-vivid);
  font-weight: 700;
}

.services__viewport {
  position: relative;
}

.services__track {
  display: flex;
  align-items: stretch;
  gap: 1.25rem;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: max(1rem, env(safe-area-inset-left));
  padding: 0.25rem max(1rem, env(safe-area-inset-right)) 1rem max(1rem, env(safe-area-inset-left));
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(60, 153, 255, 0.3) transparent;
}

.services__track::-webkit-scrollbar {
  height: 5px;
}

.services__track::-webkit-scrollbar-thumb {
  background: rgba(60, 153, 255, 0.35);
  border-radius: 999px;
}

.service-card {
  --card-tint: #e1efff;
  display: flex;
  flex-direction: column;
  flex: 0 0 88%;
  width: 88%;
  max-width: 380px;
  scroll-snap-align: center;
  overflow: hidden;
  background: var(--card-tint);
  border: 1px solid rgba(60, 153, 255, 0.14);
  border-radius: clamp(22px, 3vw, 28px);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.04);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(60, 153, 255, 0.16);
  border-color: rgba(60, 153, 255, 0.3);
}

.service-card--featured {
  --card-tint: #ffffff;
  border-color: rgba(60, 153, 255, 0.3);
  box-shadow: 0 12px 36px rgba(60, 153, 255, 0.1), 0 0 0 1px var(--blue-vivid) inset;
  position: relative;
  z-index: 2;
}

.service-card--featured:hover {
  box-shadow: 0 24px 56px rgba(60, 153, 255, 0.18), 0 0 0 1px var(--blue-vivid) inset;
  border-color: var(--blue-vivid);
}

.service-card__content {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  padding: clamp(1.35rem, 2.5vw, 1.6rem) clamp(1.25rem, 2.5vw, 1.5rem) 1rem;
  flex: 1 1 auto;
  min-height: 0;
}

.service-card__title {
  margin: 0;
  font-size: clamp(1.0625rem, 1.35vw, 1.1875rem);
  font-weight: 800;
  text-align: left;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--text);
}

.service-card__body {
  flex: 1 1 auto;
  min-height: 0;
}

.service-card__body p {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.6;
  color: #64748b;
}

.service-card__actions {
  margin-top: auto;
  flex-shrink: 0;
}

.service-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: var(--tap-min);
  padding: 0.7rem 1rem;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #fff;
  text-align: center;
  text-decoration: none;
  background: var(--orange-cta);
  border-radius: 12px;
  border: none;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.08);
  transition: background 0.2s, transform 0.15s ease;
}

.service-card__btn:hover {
  background: #e64d08;
  transform: translateY(-1px);
}

.service-card__btn:focus-visible {
  outline: 2px solid var(--blue-vivid);
  outline-offset: 3px;
}

.service-card__figure {
  flex: 0 0 auto;
  padding: 0 0.75rem 0.75rem;
  margin-top: 0;
}

.service-card__media {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: clamp(168px, 42vw, 204px);
  padding: 0.5rem 0.75rem 0.65rem;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.45) 0%, #ffffff 72%);
  border: 1px solid rgba(60, 153, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.service-card__img {
  width: auto;
  max-width: 100%;
  max-height: calc(100% - 4px);
  height: auto;
  object-fit: contain;
  object-position: bottom center;
  display: block;
}

.service-card__badge {
  position: absolute;
  right: 0.6rem;
  bottom: 0.55rem;
  padding: 0.35rem 0.55rem;
  font-size: 0.5625rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-vivid);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(60, 153, 255, 0.2);
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
}

.service-card--featured .service-card__badge {
  color: var(--orange-cta);
  border-color: rgba(255, 87, 10, 0.3);
  box-shadow: 0 2px 8px rgba(255, 87, 10, 0.15);
}

@media (min-width: 900px) {
  .services__viewport {
    overflow: visible;
  }

  .services__track {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
    align-items: stretch;
    overflow: visible;
    padding: 0.15rem 0 0;
    scroll-snap-type: none;
  }

  .service-card {
    flex: none;
    width: auto;
    max-width: none;
    min-height: 100%;
    height: 100%;
    scroll-snap-align: unset;
  }

  .service-card__body p {
    min-height: 0;
  }
}

@media (max-width: 900px) {
  .services {
    padding-left: 0;
    padding-right: 0;
  }
  
  .services__head {
    padding: 0 max(1.25rem, env(safe-area-inset-left)) 0 max(1.25rem, env(safe-area-inset-right));
  }
  
  .services__viewport {
    margin: 0;
    padding: 1rem max(1.25rem, env(safe-area-inset-left)) 2rem max(1.25rem, env(safe-area-inset-right));
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    display: flex;
  }
  
  .services__viewport::-webkit-scrollbar {
    display: none;
  }

  .services__track {
    display: flex;
    gap: 1.25rem;
  }

  .service-card {
    min-width: min(340px, 85vw);
    scroll-snap-align: center;
  }
}

@media (max-width: 899px) {
  .service-card__body p {
    min-height: 0;
  }
}

/* —— Responsive —— */
@media (max-width: 640px) {
  .services {
    padding-top: 2rem;
    padding-bottom: 2.5rem;
  }
  
  .services__head {
    padding: 0 max(1.25rem, env(safe-area-inset-left)) 0 max(1.25rem, env(safe-area-inset-right));
  }
  
  .services__viewport {
    margin: 0;
    padding: 1rem max(1.25rem, env(safe-area-inset-left)) 2rem max(1.25rem, env(safe-area-inset-right));
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    display: flex;
  }
  
  .services__viewport::-webkit-scrollbar {
    display: none;
  }

  .services__track {
    display: flex;
    gap: 1rem;
  }

  .service-card {
    min-width: 85vw;
    scroll-snap-align: center;
  }

  .service-card__content {
    padding: 1.5rem 1.25rem 2rem;
  }

  .service-card__figure {
    padding: 0 1.25rem 0.75rem;
  }

  .service-card__media {
    height: clamp(140px, 35vw, 168px);
  }

  .service-card__icon-wrap {
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
  }

  .service-card__icon-wrap svg {
    width: 24px;
    height: 24px;
  }
}

/* —— Screen 3: Process + Combo Panel —— */
.process-pricing {
  position: relative;
  overflow: hidden;
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(3.5rem, 6vw, 6rem);
  background: linear-gradient(180deg, #f1f5f9 0%, #ffffff 100%);
}

.process-pricing::before {
  content: "";
  position: absolute;
  top: -50px;
  left: -50px;
  right: -50px;
  bottom: -50px;
  background: radial-gradient(circle at 50% 0%, rgba(191, 223, 254, 0.45) 0%, transparent 70%);
  pointer-events: none;
  animation: floatBlob 12s ease-in-out infinite alternate;
}

.process-pricing__inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
}

.process-pricing__head {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
  padding: 0 clamp(1rem, 4vw, 2.5rem);
}

.process-pricing__title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: var(--text);
}

.process-pricing__lead {
  margin: 0;
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  font-weight: 500;
  color: var(--text-muted);
}

.process-horizontal {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  margin-bottom: clamp(3rem, 6vw, 4.5rem);
  text-align: center;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
}

.process-col {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.process-col__icon {
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 76px;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.05), 0 2px 8px rgba(15, 23, 42, 0.02);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}

.process-col:hover .process-col__icon {
  transform: translateY(-6px) scale(1.05);
  box-shadow: 0 20px 48px rgba(60, 153, 255, 0.12), 0 4px 12px rgba(60, 153, 255, 0.04);
}

.process-col__title {
  margin: 0 0 0.5rem;
  font-size: 0.9375rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text);
}

.process-col__text {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 32ch;
}

/* Combo panel (like screenshot 2) */
.combo-panel {
  display: flex;
  align-items: stretch;
  background: var(--surface);
  border-radius: 24px;
  border: 1px solid rgba(60, 153, 255, 0.2);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.06);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.combo-panel:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 48px rgba(60, 153, 255, 0.12);
}

.combo-panel__hero {
  flex: 0 0 32%;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: linear-gradient(135deg, #d3eaff 0%, #e8f4ff 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.combo-panel__label {
  margin: 0 0 0.25rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-muted);
}

.combo-panel__price {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  color: var(--text);
  line-height: 1.1;
}

.combo-panel__price strong {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.combo-panel__unit {
  font-weight: 700;
}

.combo-panel__hint {
  margin: 0;
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.4;
  color: var(--text-muted);
}

.combo-panel__stats {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
}

.combo-stat {
  padding: 1.5rem 1rem;
  text-align: left;
  border-left: 1px solid rgba(60, 153, 255, 0.15);
}

.combo-stat__num {
  display: block;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--blue-vivid);
  margin-bottom: 0.25rem;
}

.combo-stat__label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.35;
  color: var(--text-muted);
}

.combo-panel__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 1.5rem 1rem;
  min-height: var(--tap-min);
  padding: 0 1.85rem;
  font-family: inherit;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(180deg, #ff6a24 0%, var(--orange-cta) 100%);
  border-radius: 14px;
  box-shadow: 0 10px 22px rgba(255, 87, 10, 0.24);
  transition: transform 0.15s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.combo-panel__cta:hover {
  filter: brightness(1.04);
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(255, 87, 10, 0.29);
}

.combo-panel__cta:focus-visible {
  outline: 2px solid var(--blue-vivid);
  outline-offset: 3px;
}

@media (min-width: 961px) {
  .combo-panel__cta {
    display: none;
  }
}

@media (max-width: 960px) {
  .combo-panel {
    flex-direction: column;
  }

  .combo-panel__stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .combo-stat:nth-child(3),
  .combo-stat:nth-child(4) {
    border-top: 1px solid rgba(60, 153, 255, 0.15);
  }

  .combo-stat:nth-child(odd) {
    border-left: none;
  }
  
  .combo-panel__cta {
    display: inline-flex;
    align-self: center;
    margin-bottom: 2rem;
  }
}

@media (max-width: 640px) {
  .process-pricing {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .process-pricing__head {
    padding: 0 max(1rem, env(safe-area-inset-left)) 0 max(1rem, env(safe-area-inset-right));
  }

  .process-pricing__title {
    font-size: clamp(1.75rem, 8vw, 2.2rem);
  }

  .process-horizontal {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 max(1rem, env(safe-area-inset-left)) 0 max(1rem, env(safe-area-inset-right));
  }

  .process-col {
    gap: 1rem;
    padding: 1.5rem 1.25rem;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.03);
    border: 1px solid rgba(15, 23, 42, 0.04);
  }

  .process-col__icon {
    width: 64px;
    height: 64px;
    margin-bottom: 0.5rem;
  }
  
  .process-col__icon svg {
    width: 32px;
    height: 32px;
  }

  .combo-panel__stats {
    grid-template-columns: 1fr 1fr;
  }
  
  .combo-stat {
    padding: 1rem 0.5rem;
    text-align: center;
  }

  .combo-stat__num {
    font-size: clamp(1.2rem, 4vw, 1.4rem);
    justify-content: center;
  }

  .combo-stat__label {
    font-size: 0.65rem;
  }

  .combo-panel {
    border-radius: 16px;
    margin: 0 max(1rem, env(safe-area-inset-left)) 0 max(1rem, env(safe-area-inset-right));
    overflow: hidden;
  }

  .combo-panel__hero {
    padding: 1.5rem 1.25rem;
  }

  .combo-panel__cta {
    display: inline-flex;
    margin: 0.5rem 1.25rem 1.5rem;
    align-self: stretch;
    min-height: 48px;
    font-size: 1rem;
    justify-content: center;
    width: auto;
  }
}

/* —— Screen 4: FAQ Section —— */
.faq-section {
  position: relative;
  padding: clamp(3rem, 7vw, 6rem) 0;
  background: #ffffff;
}

.faq-section__inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
}

.faq-section__left {
  position: sticky;
  top: clamp(6rem, 10vh, 8rem);
}

.faq-section__title {
  margin: 0 0 0.75rem;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--text);
}

.faq-section__subtitle {
  margin: 0 0 1.25rem;
  font-size: clamp(0.85rem, 1.2vw, 1.05rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue-vivid);
}

.faq-section__text {
  margin: 0 0 1.5rem;
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  font-weight: 500;
  color: var(--text-muted);
}

.faq-section__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: var(--tap-min);
  padding: 0 1.5rem;
  font-family: inherit;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #fff;
  text-decoration: none;
  background: linear-gradient(180deg, #ff6a24 0%, var(--orange-cta) 100%);
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(255, 87, 10, 0.3);
  transition: transform 0.2s, box-shadow 0.2s, filter 0.2s;
}

.faq-section__btn:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
  box-shadow: 0 12px 30px rgba(255, 87, 10, 0.36);
}

.faq-section__btn:focus-visible {
  outline: 2px solid var(--blue-vivid);
  outline-offset: 3px;
}

.faq-section__right {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: #f8fafc;
  border: 1px solid rgba(60, 153, 255, 0.15);
  border-radius: 18px;
  overflow: hidden;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
  background: #f1f6fc;
  border-color: rgba(60, 153, 255, 0.25);
}

.faq-item--active {
  background: linear-gradient(180deg, #ffffff 0%, #f4f8ff 100%);
  border-color: rgba(60, 153, 255, 0.35);
  box-shadow: 0 12px 32px rgba(60, 153, 255, 0.08);
}

.faq-item__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: transparent;
  border: none;
  font-family: inherit;
  font-size: clamp(1rem, 1.25vw, 1.15rem);
  font-weight: 700;
  text-align: left;
  color: var(--text);
  cursor: pointer;
  outline: none;
}

.faq-item__trigger:focus-visible {
  background: rgba(60, 153, 255, 0.05);
}

.faq-item__icon {
  position: relative;
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  margin-left: 1rem;
  border-radius: 50%;
  background: rgba(60, 153, 255, 0.12);
  transition: background 0.3s ease, transform 0.3s ease;
}

.faq-item:hover .faq-item__icon {
  background: rgba(60, 153, 255, 0.2);
}

.faq-item--active .faq-item__icon {
  background: var(--blue-vivid);
  transform: rotate(180deg);
}

/* Plus/Minus lines */
.faq-item__icon::before,
.faq-item__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--blue-vivid);
  transition: background 0.3s ease, transform 0.3s ease, opacity 0.3s ease;
  border-radius: 2px;
}

.faq-item__icon::before {
  width: 12px;
  height: 2px;
}

.faq-item__icon::after {
  width: 2px;
  height: 12px;
}

/* When active, change icon to a close/minus sign */
.faq-item--active .faq-item__icon::before,
.faq-item--active .faq-item__icon::after {
  background: #fff;
}

.faq-item--active .faq-item__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.faq-item__content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease-in-out;
}

.faq-item--active .faq-item__content {
  grid-template-rows: 1fr;
}

.faq-item__body {
  overflow: hidden;
  padding: 0 1.5rem;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.6;
  color: var(--text-muted);
}

.faq-item--active .faq-item__body {
  padding-bottom: 1.5rem;
}

@media (max-width: 900px) {
  .faq-section__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .faq-section__left {
    position: static;
    text-align: center;
  }
  
  .faq-section__title {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .faq-section__title br {
    display: none;
  }

  .faq-section__text {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 560px) {
  .faq-section {
    padding-top: 2rem;
    padding-bottom: 2.5rem;
  }

  .faq-section__inner {
    gap: 1.5rem;
  }

  .faq-section__title {
    font-size: clamp(1.75rem, 8vw, 2.2rem);
  }

  .faq-item__trigger {
    padding: 1rem;
    font-size: 0.95rem;
    gap: 0.75rem;
  }

  .faq-item__trigger svg {
    width: 20px;
    height: 20px;
  }

  .faq-item__body {
    padding: 0 1rem;
    font-size: 0.9rem;
  }

  .faq-item--active .faq-item__body {
    padding-bottom: 1.25rem;
  }
}

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

@keyframes floatBadge {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes floatBlob {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(15px, -20px) scale(1.05);
  }
  66% {
    transform: translate(-10px, 15px) scale(0.95);
  }
}

@keyframes pulseOrange {
  0% { box-shadow: 0 0 0 0 rgba(255, 87, 10, 0.4); }
  70% { box-shadow: 0 0 0 10px rgba(255, 87, 10, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 87, 10, 0); }
}

.btn-cta, .btn-call, .site-header__cta, .combo-panel__cta {
  animation: pulseOrange 2.5s infinite;
}

.btn-cta:hover, .btn-call:hover, .site-header__cta:hover, .combo-panel__cta:hover {
  animation: none;
}

.animate-fade-up {
  opacity: 0;
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }

@media (prefers-reduced-motion: reduce) {
  .animate-fade-up {
    animation: none;
    opacity: 1;
    transform: none;
  }
  .badge {
    animation: none !important;
  }
}

.quick-contact {
  padding: max(2rem, env(safe-area-inset-left)) 2.5rem max(2rem, env(safe-area-inset-right));
}

.quick-contact__inner {
  max-width: 1180px;
  margin: 0 auto;
  background: linear-gradient(160deg, #ffffff 0%, #eaf3ff 100%);
  border: 1px solid rgba(60, 153, 255, 0.2);
  border-radius: 22px;
  padding: clamp(1.1rem, 3vw, 2rem);
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.08);
}

.quick-contact__title {
  margin: 0 0 0.45rem;
  font-size: clamp(1.2rem, 2.6vw, 1.7rem);
  font-weight: 800;
  color: var(--text);
}

.quick-contact__text {
  margin: 0 0 1.1rem;
  color: var(--text-muted);
}

.quick-contact__form {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 0.75rem;
  align-items: end;
}

.quick-contact__form .field {
  margin: 0;
}

.quick-contact__btn {
  min-height: 52px;
  padding-inline: 1.2rem;
}

@media (max-width: 820px) {
  .quick-contact__form {
    grid-template-columns: 1fr;
  }
}

/* —— Footer —— */
.site-footer {
  position: relative;
  background: #ffffff;
  padding: clamp(3rem, 6vw, 4rem) max(1rem, env(safe-area-inset-left)) 2rem max(1rem, env(safe-area-inset-right));
  border-top: 1px solid rgba(15, 23, 42, 0.05);
  box-shadow: 0 -10px 40px rgba(15, 23, 42, 0.015);
}

.site-footer__inner {
  max-width: 1180px;
  margin: 0 auto;
}

.site-footer__main {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3rem;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.site-footer__brand {
  flex: 1 1 300px;
  max-width: 400px;
}

.site-logo--footer .site-logo__guards {
  color: var(--text);
}

.site-footer__desc {
  margin: 1rem 0 0;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.site-footer__contacts {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 3rem);
}

.footer-contact {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s ease;
}

a.footer-contact:hover {
  color: var(--blue-vivid);
}

.footer-contact__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: #f1f5f9;
  color: var(--blue-vivid);
  transition: background 0.2s ease, transform 0.2s ease;
}

a.footer-contact:hover .footer-contact__icon {
  background: var(--blue-vivid);
  color: #fff;
  transform: translateY(-2px);
}

.site-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.site-footer__copy {
  margin: 0;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-muted);
}

.site-footer__legal {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem;
}

.site-footer__impressum {
  background: none;
  border: none;
  padding: 0;
  font-family: inherit;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--blue-vivid);
  cursor: pointer;
  transition: color 0.2s ease;
}

.site-footer__impressum:hover {
  color: var(--orange-cta);
  text-decoration: underline;
}

.site-footer__impressum:focus-visible {
  outline: 2px solid var(--blue-vivid);
  outline-offset: 4px;
}

/* —— Dialog (Impressum Modal) —— */
.modal {
  padding: 0;
  border: none;
  background: transparent;
  max-width: 100vw;
  max-height: 100vh;
}

.modal::backdrop {
  background: rgba(15, 23, 42, 0.4);
  backdrop-filter: blur(6px);
  animation: modalBackdrop 0.3s ease forwards;
}

.modal[open] {
  animation: modalPop 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.modal__inner {
  width: 90vw;
  max-width: 800px;
  background: #fff;
  border-radius: var(--radius-xl);
  box-shadow: 0 24px 64px rgba(15, 23, 42, 0.2);
  overflow: hidden;
  margin: auto;
  position: relative;
  display: flex;
  flex-direction: column;
  max-height: 90vh;
}

@media (max-width: 640px) {
  .modal__inner {
    width: 95vw;
    max-height: 90vh;
  }

  .modal__close {
    width: 40px;
    height: 40px;
    background: #f1f5f9;
  }
}

.modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 10;
}

.modal__title {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
}

.modal__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: #f1f5f9;
  border: none;
  border-radius: 50%;
  color: var(--text-muted);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.modal__close:hover {
  background: #e2e8f0;
  color: #ef4444;
}

.modal__body {
  padding: 2rem;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.modal__lead {
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0 0 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px dashed rgba(15, 23, 42, 0.1);
}

.modal__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem 3rem;
}

.modal__col h3 {
  margin: 0 0 0.5rem;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--blue-vivid);
}

.modal__col p {
  margin: 0 0 1.5rem;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--text);
  font-weight: 500;
}

.modal__col p a {
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s ease;
  font-weight: 600;
}

.modal__col p a:hover {
  color: var(--orange-cta);
}

@keyframes modalBackdrop {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes modalPop {
  from {
    opacity: 0;
    transform: scale(0.96) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@media (max-width: 768px) {
  .site-footer {
    padding-top: 1.5rem !important;
    padding: 3rem max(1rem, env(safe-area-inset-left)) 2rem max(1rem, env(safe-area-inset-right));
  }

  .site-footer__main {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    text-align: center;
    margin-bottom: 1rem;
  }
  
  .site-footer__brand {
    flex: 1 1 50px;
    align-items: center;
    max-width: none;
  }

  .site-footer__contacts {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    align-items: flex-start;
    background: #f8fafc;
    padding: 1rem;
    border-radius: 16px;
  }

  .footer-contact {
    width: 100%;
    justify-content: flex-start;
  }
  
  .site-footer__bottom {
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    text-align: center;
    padding-top: 1rem;
  }
  
  .modal__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .modal__header {
    padding: 1.25rem 1.5rem;
  }
  
  .modal__body {
    padding: 1.5rem;
  }

  .modal__content {
    margin: 1rem;
    max-height: calc(100vh - 2rem);
  }
}
