﻿/* ==========================================================================
   SECTIONS — single bundle (navbar..modals, consent, toasts).
   One request. Loaded after styles.css (tokens) + base.css.
   ========================================================================== */

/* NAVBAR вЂ” floating glass pill, detached from top */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  padding: clamp(0.7rem, 1.5vw, 1.2rem) 0;
  transition: padding var(--dur) var(--ease);
}
.nav__bar {
  position: relative;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  background: rgba(29, 39, 51, 0.55);
  border: 1px solid var(--hair-dark);
  border-radius: 999px;
  padding: 0.6rem 0.7rem 0.6rem 1.6rem;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition:
    background var(--dur) var(--ease),
    box-shadow var(--dur) var(--ease);
}
.nav[data-at-top="false"] .nav__bar {
  background: rgba(29, 39, 51, 0.92);
  box-shadow: 0 18px 50px -28px rgba(0, 0, 0, 0.8);
}
.nav__brand {
  flex: none;
  display: inline-flex;
  align-items: center;
}
.nav__logo {
  display: block;
  height: 34px;
  width: auto;
}
.nav__logo--mobile {
  display: none;
  height: 40px;
  width: 40px;
  aspect-ratio: 1 / 1;
}

.nav__menu--inline {
  margin-left: auto;
}
.nav__menu--inline ul {
  display: flex;
  gap: 0.35rem;
}
.nav__menu--overlay {
  display: none;
}
.nav__link {
  display: block;
  padding: 0.55rem 0.95rem;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text-on-dark-muted);
  border-radius: 999px;
  transition:
    color var(--dur) var(--ease),
    background var(--dur) var(--ease);
}
.nav__link:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex: none;
}
.nav__lang {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--white);
  border: 1px solid var(--hair-dark);
  transition:
    background var(--dur) var(--ease),
    border-color var(--dur) var(--ease);
}
.nav__lang:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: var(--tertiary-light);
}
.nav__lang-ico {
  width: 16px;
  height: 16px;
}
.nav__lang-ico svg {
  width: 16px;
  height: 16px;
}
.nav__cta {
  padding-block: 0.7rem;
}

.nav__burger {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  position: relative;
  border: 1px solid var(--hair-dark);
}
.nav__burger span {
  position: absolute;
  left: 11px;
  right: 11px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition:
    transform var(--dur) var(--ease),
    opacity 0.2s var(--ease);
}
.nav__burger span:nth-child(1) {
  top: 15px;
}
.nav__burger span:nth-child(2) {
  top: 20px;
}
.nav__burger span:nth-child(3) {
  top: 25px;
}
.nav__burger.is-open span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}
.nav__burger.is-open span:nth-child(2) {
  opacity: 0;
}
.nav__burger.is-open span:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

@media (max-width: 1024px) {
  .nav__burger {
    display: block;
  }
  .nav__menu--inline {
    display: none;
  }
  .nav__menu--overlay {
    position: fixed;
    inset: 0;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(5rem, 14vh, 7rem) 1.5rem 3rem;
    background: rgba(29, 39, 51, 0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      opacity 0.4s var(--ease),
      visibility 0s linear 0.4s;
  }
  .nav__menu--overlay.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition:
      opacity 0.4s var(--ease),
      visibility 0s linear 0s;
  }
  .nav__menu--overlay ul {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    text-align: center;
    width: 100%;
    max-width: 22rem;
  }
  .nav__menu--overlay .nav__link {
    font-size: clamp(1.25rem, 4.5vw, 1.6rem);
    padding: 0.85rem 1.5rem;
    color: var(--white);
  }
  .nav__menu--overlay .nav__link:hover,
  .nav__menu--overlay .nav__link:focus-visible {
    background: rgba(255, 255, 255, 0.06);
  }
  .nav__menu--overlay.is-open .nav__link {
    animation: navItemIn 0.5s var(--ease) backwards;
  }
  .nav__menu--overlay.is-open li:nth-child(1) .nav__link { animation-delay: 0.06s; }
  .nav__menu--overlay.is-open li:nth-child(2) .nav__link { animation-delay: 0.12s; }
  .nav__menu--overlay.is-open li:nth-child(3) .nav__link { animation-delay: 0.18s; }
  .nav__menu--overlay.is-open li:nth-child(4) .nav__link { animation-delay: 0.24s; }
  .nav__menu--overlay.is-open li:nth-child(5) .nav__link { animation-delay: 0.3s;  }
  .nav__menu--overlay.is-open li:nth-child(6) .nav__link { animation-delay: 0.36s; }
}
@keyframes navItemIn {
  from {
    opacity: 0;
    transform: translateY(1.4rem);
    filter: blur(4px);
  }
  to {
    opacity: 1;
    transform: none;
    filter: blur(0);
  }
}

@media (max-width: 768px) {
  .nav__bar {
    padding: 0.5rem 0.6rem 0.5rem 0.6rem;
    gap: 0.6rem;
  }
  .nav__logo--desktop {
    display: none;
  }
  .nav__logo--mobile {
    display: block;
  }
  .nav__actions {
    gap: 0.45rem;
  }
}

@media (max-width: 560px) {
  .nav__bar {
    gap: 0.5rem;
  }
  .nav__cta span:not(.btn__ico) {
    display: none;
  }
  .nav__cta {
    padding: 0.6rem;
  }
  .nav__cta .btn__ico {
    margin: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  .nav__menu--overlay.is-open .nav__link {
    animation: none;
  }
}

/* HERO вЂ” full-bleed slider, asymmetric left-aligned editorial */
.hero {
  position: relative;
  min-height: 100dvh;
  background: var(--shadow-color);
  overflow: hidden;
  isolation: isolate;
}
.hero__track {
  position: absolute;
  inset: 0;
}
.hero__slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 1s var(--ease),
    visibility 1s var(--ease);
}
.hero__slide.is-active {
  opacity: 1;
  visibility: visible;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.08);
  transition: transform 8s linear;
}
.hero__slide.is-active .hero__bg {
  transform: scale(1);
}
.hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      100deg,
      rgba(20, 27, 36, 0.92) 0%,
      rgba(20, 27, 36, 0.7) 42%,
      rgba(20, 27, 36, 0.25) 75%,
      rgba(20, 27, 36, 0.55) 100%
    ),
    linear-gradient(0deg, rgba(20, 27, 36, 0.85) 0%, rgba(20, 27, 36, 0) 38%);
}
.hero__inner {
  position: relative;
  z-index: 1;
  max-width: min(64rem, 94%);
  padding-block: clamp(7rem, 14vh, 11rem);
}
.hero__slide.is-active .hero__inner > * {
  animation: heroIn 0.9s var(--ease) backwards;
}
.hero__slide.is-active .eyebrow {
  animation-delay: 0.1s;
}
.hero__slide.is-active .hero__title {
  animation-delay: 0.2s;
}
.hero__slide.is-active .hero__sub {
  animation-delay: 0.32s;
}
.hero__slide.is-active .hero__cta {
  animation-delay: 0.44s;
}
@keyframes heroIn {
  from {
    opacity: 0;
    transform: translateY(2.4rem);
    filter: blur(6px);
  }
  to {
    opacity: 1;
    transform: none;
    filter: blur(0);
  }
}

.hero .eyebrow {
  color: var(--tertiary-light);
  margin-bottom: 1.6rem;
}
.hero__title {
  color: var(--white);
  font-size: clamp(2.3rem, 1.4rem + 4.4vw, 4.4rem);
  line-height: 1.05;
  margin-bottom: 1.4rem;
  max-width: 20ch;
}
.hero__sub {
  color: var(--text-on-dark-muted);
  font-size: clamp(1.05rem, 1rem + 0.55vw, 1.35rem);
  max-width: 56ch;
  margin-bottom: 2.4rem;
}

.hero__nav {
  position: absolute;
  left: 0;
  right: 0;
  bottom: clamp(1.6rem, 4vh, 3rem);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
}
.hero__arrow {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--white);
  border: 1px solid var(--hair-dark);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition:
    background var(--dur) var(--ease),
    transform var(--dur) var(--ease);
}
.hero__arrow svg {
  width: 20px;
  height: 20px;
}
.hero__arrow:hover {
  background: var(--primary-color);
  transform: scale(1.06);
}
.hero__dots {
  display: flex;
  gap: 0.6rem;
}
.hero__dot {
  width: 36px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.25);
  transition:
    background var(--dur) var(--ease),
    width var(--dur) var(--ease);
}
.hero__dot.is-active {
  background: var(--tertiary-color);
  width: 56px;
}

@media (max-width: 560px) {
  .hero__nav {
    gap: 0.8rem;
  }
  .hero__arrow {
    width: 44px;
    height: 44px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero__bg,
  .hero__slide.is-active .hero__inner > * {
    animation: none !important;
    transition: opacity 0.4s linear;
  }
}

/* INTRO CARDS вЂ” asymmetric bento, gapless hairline grid */
.intro__grid {
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 1fr;
}
.intro__card {
  position: relative;
  display: block;
  min-height: 240px;
  background: var(--light-color);
  text-align: left;
  overflow: hidden;
  isolation: isolate;
}
.intro__card.is-feature {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 480px;
}
.intro__card.is-wide {
  grid-column: span 2;
}

.intro__media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition:
    transform 0.9s var(--ease),
    filter 0.9s var(--ease);
  filter: saturate(1.05);
}
.intro__card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(20, 27, 36, 0.9) 0%,
    rgba(20, 27, 36, 0.35) 45%,
    rgba(20, 27, 36, 0.1) 100%
  );
  transition: opacity var(--dur) var(--ease);
}
.intro__card:hover .intro__media {
  transform: scale(1.1);
}

.intro__body {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: clamp(1.5rem, 2.4vw, 2.2rem);
  color: var(--white);
}
.intro__num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  color: var(--tertiary-light);
}
.intro__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.15rem, 1rem + 0.7vw, 1.7rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.is-feature .intro__title {
  font-size: clamp(1.6rem, 1.2rem + 1.6vw, 2.6rem);
}
.intro__sub {
  color: var(--text-on-dark-muted);
  font-size: 0.95rem;
  max-width: 40ch;
}
.intro__go {
  margin-top: 0.6rem;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.12);
  transition:
    background var(--dur) var(--ease),
    transform var(--dur) var(--ease);
}
.intro__go svg {
  width: 16px;
  height: 16px;
  stroke: var(--white);
  fill: none;
}
.intro__card:hover .intro__go {
  background: var(--primary-color);
  transform: translate(3px, -3px);
}

@media (max-width: 900px) {
  .intro__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .intro__card.is-feature,
  .intro__card.is-wide {
    grid-column: span 2;
    grid-row: auto;
    min-height: 280px;
  }
}
@media (max-width: 560px) {
  .intro__grid {
    grid-template-columns: 1fr;
  }
  .intro__card,
  .intro__card.is-feature,
  .intro__card.is-wide {
    grid-column: auto;
    min-height: 240px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .intro__media,
  .intro__card:hover .intro__media {
    transform: none;
  }
}

/* DETAILED OFFER вЂ” dark section, composition table + calc form */
.offer__head {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}
.offer__head .eyebrow {
  margin-bottom: 1.4rem;
}
.offer__head-text {
  min-width: 0;
}
.offer__head-media .bezel__core img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 4.4;
  object-fit: cover;
}
@media (max-width: 880px) {
  .offer__head {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .offer__head-media {
    max-width: 460px;
  }
}

.offer__split,
.offer__bottom {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(1.6rem, 4vw, 3.5rem);
  align-items: start;
}
.offer__bottom {
  margin-top: clamp(3rem, 6vw, 5rem);
}

/* Reverse the split: composition table on the left, copy on the right */
.offer__split {
  direction: rtl;
}
.offer__split > * {
  direction: ltr;
}

.offer__h3 {
  font-size: clamp(1.4rem, 1.1rem + 1.2vw, 2.1rem);
  color: var(--white);
  margin-bottom: 1.1rem;
}
.offer__col .muted + .muted {
  margin-top: 1rem;
}

.offer__table-wrap {
  padding: clamp(1.4rem, 2.4vw, 2.2rem);
}
.offer__table-title {
  font-size: 1.2rem;
  margin-bottom: 1.4rem;
}
.offer__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}
.offer__table th {
  text-align: left;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--tertiary-light);
  padding: 0 0.8rem 0.9rem;
  border-bottom: 1px solid var(--hair-dark);
}
.offer__table td {
  padding: 0.78rem 0.8rem;
  border-bottom: 1px solid var(--hair-dark);
  color: var(--text-on-dark-muted);
}
.offer__table tr:last-child td {
  border-bottom: 0;
}
.offer__comp {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--white);
}
.offer__val {
  font-variant-numeric: tabular-nums;
  color: var(--white);
  white-space: nowrap;
}
.offer__table-foot td {
  background: rgba(181, 142, 91, 0.08);
  color: var(--white);
}

.offer__why-sub {
  margin-bottom: 1.6rem;
  max-width: 56ch;
}
.offer__feats {
  display: grid;
  gap: 0.7rem;
}
.offer__feats li {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--hair-dark);
  border-radius: var(--r-sm);
  color: var(--white);
  font-weight: 500;
}
.offer__feat-ico {
  width: 2.1rem;
  height: 2.1rem;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(181, 142, 91, 0.18);
  color: var(--tertiary-light);
}
.offer__feat-ico svg {
  width: 18px;
  height: 18px;
}

.offer__form-card {
  padding: clamp(1.5rem, 3vw, 2.4rem);
}
.offer__form {
  display: grid;
  gap: 1.1rem;
  margin-top: 0.4rem;
}
.offer__form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 0.4rem;
}

.btn--discount .btn__ico--lead {
  background: rgba(181, 142, 91, 0.16);
}
.btn--discount .btn__ico--lead svg {
  width: 15px;
  height: 15px;
}

.form-note {
  margin-top: 0.4rem;
  padding: 0.8rem 1rem;
  border-radius: var(--r-sm);
  font-size: 0.9rem;
  text-align: center;
}
.form-note.is-ok {
  background: rgba(114, 134, 67, 0.18);
  color: #c7d8a3;
}
.form-note.is-err {
  background: rgba(244, 67, 54, 0.16);
  color: #f3b4ae;
}

@media (max-width: 900px) {
  .offer__split,
  .offer__bottom {
    grid-template-columns: 1fr;
  }
}

/* LEAD MAGNETS вЂ” 4-up gapless bento on cream */
.leads__grid {
  grid-template-columns: repeat(4, 1fr);
}
.leads__card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.9rem;
  background: var(--light-color);
  padding: clamp(1.8rem, 2.6vw, 2.6rem);
  text-align: left;
  min-height: 230px;
  transition:
    background var(--dur) var(--ease),
    transform var(--dur) var(--ease);
}
.leads__card:hover {
  background: var(--white);
}
.leads__ico {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--shadow-color);
  color: var(--tertiary-light);
  transition:
    background var(--dur) var(--ease),
    transform var(--dur) var(--ease);
}
.leads__ico svg {
  width: 22px;
  height: 22px;
}
.leads__card:hover .leads__ico {
  background: var(--primary-color);
  color: var(--white);
  transform: rotate(-6deg);
}
.leads__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.05rem, 1rem + 0.4vw, 1.3rem);
  line-height: 1.15;
  color: var(--text-color-main);
}
.leads__desc {
  color: var(--text-on-light-muted);
  font-size: 0.93rem;
  flex: 1;
}
.leads__go {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid var(--hair-light);
  transition:
    background var(--dur) var(--ease),
    transform var(--dur) var(--ease);
}
.leads__go svg {
  width: 14px;
  height: 14px;
  stroke: var(--text-color-main);
  fill: none;
}
.leads__card:hover .leads__go {
  background: var(--shadow-color);
  transform: translate(3px, -3px);
}
.leads__card:hover .leads__go svg {
  stroke: var(--white);
}

@media (max-width: 900px) {
  .leads__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 540px) {
  .leads__grid {
    grid-template-columns: 1fr;
  }
}

/* PRODUCTS вЂ” zig-zag editorial split, alternating cream/navy */
.product__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.product__row.is-imgleft .product__media {
  order: -1;
}
.product__row.is-imgright .product__media {
  order: 1;
}

.product__media .bezel__core img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3.4;
  object-fit: cover;
}
.product__media {
  transition: transform 0.9s var(--ease);
}

.product__content {
  max-width: 60ch;
}
.product .eyebrow {
  margin-bottom: 1.3rem;
}
.product__title {
  font-size: clamp(1.8rem, 1.3rem + 2.4vw, 3rem);
  margin-bottom: 0.7rem;
}
.product__subtitle {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1rem, 0.95rem + 0.4vw, 1.2rem);
  color: var(--tertiary-color);
  margin-bottom: 1.2rem;
}
.section--dark .product__subtitle {
  color: var(--tertiary-light);
}
.product__desc {
  margin-bottom: 1.8rem;
}

.product__feats {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 2.2rem;
}
.product__feats li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-weight: 500;
  line-height: 1.4;
}
.product__check {
  width: 1.7rem;
  height: 1.7rem;
  flex: none;
  margin-top: 1px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--primary-color);
  color: var(--white);
}
.product__check svg {
  width: 14px;
  height: 14px;
}
.product__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

@media (max-width: 880px) {
  .product__row {
    grid-template-columns: 1fr;
    gap: 2.2rem;
  }
  .product__row.is-imgleft .product__media,
  .product__row.is-imgright .product__media {
    order: -1;
  }
}

/* COMPARISON — two-column VS layout (Regular Kaolin vs NanoCalne) */
.cmp__head {
  margin-bottom: clamp(2.6rem, 5vw, 4rem);
  text-align: center;
}
.cmp__head .eyebrow {
  margin-bottom: 1.3rem;
  display: inline-block;
}

.cmp__grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: clamp(1rem, 2.5vw, 2.2rem);
  align-items: stretch;
}
.cmp__col {
  border: 1px solid var(--hair-dark);
  border-radius: var(--r-lg);
  padding: clamp(1.5rem, 2.4vw, 2.4rem);
  background: rgba(255, 255, 255, 0.02);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.cmp__col--pos {
  background:
    linear-gradient(180deg, rgba(114, 134, 67, 0.10), rgba(114, 134, 67, 0.03)),
    rgba(255, 255, 255, 0.02);
  border-color: rgba(174, 203, 126, 0.35);
  box-shadow: 0 18px 50px -28px rgba(114, 134, 67, 0.6);
}
.cmp__col--neg {
  background:
    linear-gradient(180deg, rgba(196, 30, 30, 0.07), rgba(196, 30, 30, 0.02)),
    rgba(255, 255, 255, 0.02);
  border-color: rgba(196, 30, 30, 0.25);
}
.cmp__col-head {
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--hair-dark);
}
.cmp__col-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  color: var(--white);
  margin: 0;
  letter-spacing: -0.01em;
}
.cmp__col--pos .cmp__col-title {
  color: #d5e6a8;
}

.cmp__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}
.cmp__li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  color: var(--text-on-dark);
  font-size: 0.95rem;
  line-height: 1.55;
}
.cmp__mark {
  width: 1.6rem;
  height: 1.6rem;
  flex: none;
  margin-top: 1px;
  display: grid;
  place-items: center;
  border-radius: 50%;
}
.cmp__mark svg {
  width: 13px;
  height: 13px;
}
.cmp__li--pos .cmp__mark {
  background: rgba(114, 134, 67, 0.25);
  color: #c4dd91;
}
.cmp__li--neg .cmp__mark {
  background: rgba(196, 30, 30, 0.22);
  color: var(--primary-light);
}

.cmp__vs {
  align-self: center;
  display: grid;
  place-items: center;
  width: clamp(3.4rem, 6vw, 4.6rem);
  height: clamp(3.4rem, 6vw, 4.6rem);
  border-radius: 50%;
  background: var(--tertiary-light);
  color: var(--shadow-color);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  letter-spacing: 0.05em;
  box-shadow: 0 14px 36px -14px rgba(181, 142, 91, 0.6);
  position: relative;
}
.cmp__vs::before,
.cmp__vs::after {
  content: "";
  position: absolute;
  top: 50%;
  width: clamp(0.6rem, 1.4vw, 1.4rem);
  height: 1px;
  background: var(--hair-dark);
}
.cmp__vs::before {
  right: 100%;
}
.cmp__vs::after {
  left: 100%;
}
.cmp__vs-text {
  display: block;
  transform: translateY(-1px);
}

@media (max-width: 880px) {
  .cmp__grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  .cmp__vs {
    justify-self: center;
  }
  .cmp__vs::before,
  .cmp__vs::after {
    display: none;
  }
}

/* VIDEO вЂ” split: large player + editorial aside */
.video__grid {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}
.video__poster {
  position: relative;
  display: block;
  width: 100%;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  isolation: isolate;
}
.video__poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease);
}
.video__poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(20, 27, 36, 0.45),
    rgba(20, 27, 36, 0.1)
  );
}
.video__poster:hover img {
  transform: scale(1.05);
}
.video__play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  z-index: 1;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.92);
  color: var(--primary-color);
  box-shadow: 0 20px 50px -20px rgba(0, 0, 0, 0.6);
  transition:
    transform var(--dur) var(--ease),
    background var(--dur) var(--ease);
}
.video__play svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
  stroke: none;
  margin-left: 4px;
}
.video__poster:hover .video__play {
  transform: scale(1.08);
  background: var(--white);
}

.video .eyebrow {
  margin-bottom: 1.3rem;
}
.video__sub {
  margin: 1rem 0 2rem;
  max-width: 54ch;
}
.video__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

@media (max-width: 880px) {
  .video__grid {
    grid-template-columns: 1fr;
  }
}

/* FAQ + SOCIAL PROOF вЂ” split editorial */
.faq__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}
.faq .eyebrow {
  margin-bottom: 1.3rem;
}
.faq__sub {
  margin: 1rem 0 2rem;
  max-width: 52ch;
}

.faq__list {
  display: grid;
  gap: 0.6rem;
  margin-bottom: 2.2rem;
}
.faq__item {
  border: 1px solid var(--hair-light);
  border-radius: var(--r-md);
  background: var(--white);
  overflow: hidden;
  transition: border-color var(--dur) var(--ease);
}
.faq__item.is-open {
  border-color: var(--tertiary-color);
}
.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.3rem;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-color-main);
}
.faq__ic {
  width: 2rem;
  height: 2rem;
  flex: none;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--light-color);
  color: var(--primary-color);
  transition:
    transform var(--dur) var(--ease),
    background var(--dur) var(--ease);
}
.faq__ic svg {
  width: 16px;
  height: 16px;
}
.faq__item.is-open .faq__ic {
  transform: rotate(135deg);
  background: var(--primary-color);
  color: var(--white);
}
.faq__a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.45s var(--ease);
}
.faq__item.is-open .faq__a {
  grid-template-rows: 1fr;
}
.faq__a > p {
  overflow: hidden;
  color: var(--text-on-light-muted);
  padding: 0 1.3rem;
}
.faq__item.is-open .faq__a > p {
  padding-bottom: 1.3rem;
}

.faq__ask-core {
  padding: clamp(1.4rem, 2.6vw, 2rem);
}
.faq__ask-title {
  font-size: 1.15rem;
  margin-bottom: 1.1rem;
  color: var(--text-color-main);
}
.faq__form {
  display: grid;
  gap: 0.9rem;
}
.faq__form input,
.faq__form textarea {
  font: inherit;
  font-size: 0.95rem;
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--hair-light);
  border-radius: var(--r-sm);
  background: var(--light-color);
  transition:
    border-color var(--dur) var(--ease),
    box-shadow var(--dur) var(--ease);
}
.faq__form textarea {
  min-height: 96px;
  resize: vertical;
}
.faq__form input:focus,
.faq__form textarea:focus {
  outline: none;
  border-color: var(--tertiary-color);
  box-shadow: 0 0 0 4px rgba(181, 142, 91, 0.14);
}

.faq__rev-title {
  font-size: clamp(1.3rem, 1.1rem + 1vw, 1.8rem);
  margin-bottom: 1.4rem;
}
.faq__reviews {
  display: grid;
  gap: 1rem;
}
.review {
  background: var(--white);
  border: 1px solid var(--hair-light);
  border-radius: var(--r-md);
  padding: clamp(1.3rem, 2.4vw, 1.9rem);
}
.review__stars {
  display: flex;
  gap: 3px;
  margin-bottom: 0.8rem;
  color: var(--tertiary-color);
}
.review__stars svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  stroke: none;
}
.review blockquote {
  font-size: 1.02rem;
  line-height: 1.55;
  color: var(--text-color-main);
  margin-bottom: 1rem;
}
.review figcaption {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.review__author {
  font-family: var(--font-display);
  font-weight: 700;
}
.review__company {
  font-size: 0.85rem;
  color: var(--text-on-light-muted);
}

.faq__trust {
  margin-top: 2rem;
}
.faq__trust-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-on-light-faint);
  margin-bottom: 0.9rem;
}
.faq__trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.trust-chip {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.5rem 0.95rem;
  border-radius: 999px;
  border: 1px solid var(--hair-light);
  color: var(--text-on-light-muted);
}

@media (max-width: 900px) {
  .faq__grid {
    grid-template-columns: 1fr;
  }
}

/* OTHER PRODUCTS — 3 image-led cards linking to sister sites */
.other-products .section-head {
  margin-bottom: clamp(2.6rem, 5vw, 4rem);
  text-align: center;
}
.other-products .section-head .section-sub {
  max-width: 56ch;
  margin-inline: auto;
}
.other-products__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2vw, 1.8rem);
}
.op-card {
  display: block;
  text-decoration: none;
  color: inherit;
  height: 100%;
  transition:
    transform var(--dur) var(--ease),
    box-shadow var(--dur) var(--ease);
}
.op-card:hover {
  transform: translateY(-4px);
}
.op-card__core {
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 0;
}
.op-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
}
.op-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.op-card:hover .op-card__media img {
  transform: scale(1.06);
}
.op-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(20, 27, 36, 0) 50%,
    rgba(20, 27, 36, 0.45) 100%
  );
  pointer-events: none;
}
.op-card__body {
  padding: clamp(1.3rem, 2.2vw, 1.9rem);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  flex: 1;
}
.op-card__title {
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.15rem, 1.7vw, 1.35rem);
  letter-spacing: -0.01em;
  margin: 0;
}
.op-card__desc {
  color: var(--text-on-dark-muted);
  font-size: 0.94rem;
  line-height: 1.55;
  margin: 0;
  flex: 1;
}
.op-card__cta {
  margin-top: 0.6rem;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--tertiary-light);
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: gap var(--dur) var(--ease);
}
.op-card__cta .btn__ico {
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(181, 142, 91, 0.18);
  color: var(--tertiary-light);
}
.op-card__cta .btn__ico svg {
  width: 14px;
  height: 14px;
}
.op-card:hover .op-card__cta {
  gap: 1rem;
}

@media (max-width: 880px) {
  .other-products__grid {
    grid-template-columns: 1fr;
  }
}

/* CONTACT вЂ” info aside + form, two variants (quote cream / visit navy) */
.contact__head {
  margin-bottom: clamp(2.4rem, 4vw, 3.5rem);
}
.contact__head .eyebrow {
  margin-bottom: 1.2rem;
}
/* Text-only header (no image): center it */
.contact__head--center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-inline: auto;
}
.contact__head--center .section-title,
.contact__head--center .section-sub {
  margin-inline: auto;
}
.contact__wrap {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(1.6rem, 3.5vw, 3rem);
  align-items: start;
}
.contact__info {
  padding-top: 0.5rem;
}
.contact__info-text {
  font-size: clamp(1.05rem, 1rem + 0.4vw, 1.25rem);
  line-height: 1.55;
  margin-bottom: 1.8rem;
}
.section--cream .contact__info-text {
  color: var(--text-color-main);
}
.section--dark .contact__info-text {
  color: var(--text-on-dark);
}
.contact__chips {
  display: grid;
  gap: 0.7rem;
}
.contact__chips li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 500;
  font-size: 0.95rem;
}
.contact__chips span {
  width: 2rem;
  height: 2rem;
  flex: none;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(181, 142, 91, 0.16);
  color: var(--tertiary-color);
}
.section--dark .contact__chips span {
  color: var(--tertiary-light);
}
.contact__chips svg {
  width: 16px;
  height: 16px;
}

.contact__formcore {
  padding: clamp(1.5rem, 3vw, 2.6rem);
}
.contact__form {
  display: grid;
  gap: 1.1rem;
}
.contact__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 0.4rem;
}

@media (max-width: 900px) {
  .contact__wrap {
    grid-template-columns: 1fr;
  }
}

/* OFFICES вЂ” bezel cards, head offices + representatives */
.offices__head {
  margin-bottom: clamp(2.4rem, 4vw, 3.5rem);
}
.offices__head .eyebrow {
  margin-bottom: 1.2rem;
}
.offices__group + .offices__group {
  margin-top: clamp(2.5rem, 5vw, 4rem);
}
.offices__gtitle {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--tertiary-dark);
  margin-bottom: 1.4rem;
}
.offices__main {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1rem, 2vw, 1.6rem);
}
.offices__reps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2vw, 1.6rem);
}

.office__core,
.rep__core {
  height: 100%;
  padding: clamp(1.5rem, 2.6vw, 2.2rem);
}
.office__ico {
  width: 3rem;
  height: 3rem;
  border-radius: var(--r-sm);
  display: grid;
  place-items: center;
  margin-bottom: 1.1rem;
  background: var(--shadow-color);
  color: var(--tertiary-light);
}
.office__ico svg {
  width: 22px;
  height: 22px;
}
.office__name,
.rep__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--text-color-main);
}
.rep__logo {
  height: 46px;
  width: auto;
  object-fit: contain;
  margin-bottom: 1rem;
  border-radius: 8px;
}
.rep__region {
  display: inline-block;
  margin-bottom: 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--tertiary-dark);
  background: rgba(181, 142, 91, 0.14);
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
}
.office__lines {
  display: grid;
  gap: 0.85rem;
}
.office__lines li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.92rem;
  color: var(--text-on-light-muted);
}
.office__lines li > span:first-child {
  width: 1.8rem;
  height: 1.8rem;
  flex: none;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--light-color);
  color: var(--tertiary-dark);
}
.office__lines li > span:first-child svg {
  width: 14px;
  height: 14px;
}
.office__lines a {
  color: inherit;
}
.office__lines a:hover {
  color: var(--primary-color);
}
.office__phones {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.offices__foot {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: clamp(2rem, 4vw, 3rem);
  padding-top: 1.5rem;
  border-top: 1px solid var(--hair-light);
}
.offices__foot span {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 500;
}
.offices__foot svg {
  width: 18px;
  height: 18px;
  color: var(--tertiary-dark);
}

@media (max-width: 900px) {
  .offices__main,
  .offices__reps {
    grid-template-columns: 1fr;
  }
}

/* MODALS + CONSENT + TOASTS */

/* ---- Consent ------------------------------------------------------------ */
.consent {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1200;
  background: rgba(22, 31, 41, 0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--hair-dark);
  transform: translateY(110%);
  transition: transform 0.5s var(--ease);
}
.consent.is-in {
  transform: none;
}
.consent__inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding-block: 1.1rem;
}
.consent__text {
  color: var(--text-on-dark-muted);
  font-size: 0.9rem;
  flex: 1;
  min-width: 260px;
}
.consent__actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}
.consent__link {
  color: var(--tertiary-light);
  font-size: 0.9rem;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.consent__decline {
  color: var(--text-on-dark-subtle);
  font-size: 0.9rem;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--hair-dark);
}
.consent__decline:hover {
  color: var(--white);
}

/* ---- Modal shell -------------------------------------------------------- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 1500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.modal[hidden] {
  display: none;
}
.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 21, 28, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}
.modal.is-open .modal__overlay {
  opacity: 1;
}
.modal__panel {
  position: relative;
  width: 100%;
  max-width: 620px;
  max-height: 90vh;
  overflow: auto;
  background: rgba(29, 39, 51, 0.04);
  transform: translateY(24px) scale(0.98);
  opacity: 0;
  transition:
    transform 0.45s var(--ease),
    opacity 0.45s var(--ease);
}
.modal.is-open .modal__panel {
  transform: none;
  opacity: 1;
}
.modal__panel--narrow {
  max-width: 440px;
}
.modal__core {
  background: var(--white);
  padding: clamp(1.6rem, 3.5vw, 2.6rem);
}
.modal__core--center {
  text-align: center;
}
.modal__x {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--light-color);
  color: var(--text-color-main);
  transition:
    background var(--dur) var(--ease),
    transform var(--dur) var(--ease);
}
.modal__x svg {
  width: 16px;
  height: 16px;
}
.modal__x:hover {
  background: var(--primary-color);
  color: var(--white);
  transform: rotate(90deg);
}
.modal__title {
  font-size: clamp(1.3rem, 1.1rem + 1vw, 1.9rem);
  margin-bottom: 0.5rem;
}
.modal__sub {
  margin-bottom: 1.4rem;
}
.modal__form {
  display: grid;
  gap: 1rem;
  margin-top: 1.2rem;
}
.modal__form textarea {
  min-height: 90px;
}
.modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.3rem;
}
.modal__actions--stack {
  flex-direction: column;
}
.modal__actions--stack .btn {
  width: 100%;
  justify-content: center;
}

/* ---- Country picker ----------------------------------------------------- */
.country__search {
  width: 100%;
  font: inherit;
  font-size: 0.95rem;
  padding: 0.85rem 1rem;
  margin: 1.2rem 0 1rem;
  border: 1px solid var(--hair-light);
  border-radius: var(--r-sm);
}
.country__search:focus {
  outline: none;
  border-color: var(--tertiary-color);
  box-shadow: 0 0 0 4px rgba(181, 142, 91, 0.14);
}
.country__list {
  max-height: 46vh;
  overflow: auto;
  display: grid;
  gap: 2px;
}
.country__opt {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 1rem;
  border-radius: var(--r-sm);
  text-align: left;
  transition: background var(--dur) var(--ease);
}
.country__opt:hover {
  background: var(--light-color);
}
.country__name {
  font-weight: 500;
}
.country__code {
  color: var(--text-on-light-muted);
  font-variant-numeric: tabular-nums;
}

/* ---- Language modal ----------------------------------------------------- */
.lang__list {
  display: grid;
  gap: 0.4rem;
  margin-top: 1.3rem;
}
.lang__opt {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.1rem;
  border-radius: var(--r-sm);
  border: 1px solid var(--hair-light);
  font-weight: 600;
  font-family: var(--font-display);
  transition:
    background var(--dur) var(--ease),
    border-color var(--dur) var(--ease);
}
.lang__opt:hover {
  background: var(--light-color);
  border-color: var(--tertiary-color);
}
.lang__opt.is-active {
  background: var(--shadow-color);
  color: var(--white);
  border-color: transparent;
}
.lang__code {
  font-size: 0.8rem;
  opacity: 0.7;
}

/* ---- Referral ----------------------------------------------------------- */
.ref__badge {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1.2rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--tertiary-color);
  color: var(--white);
}
.ref__badge svg {
  width: 26px;
  height: 26px;
}
.ref__field {
  margin: 1.4rem 0;
  text-align: left;
}
.ref__field label {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}
.ref__field input {
  width: 100%;
  font: inherit;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  padding: 0.9rem 1rem;
  border: 1px solid var(--hair-light);
  border-radius: var(--r-sm);
}
.ref__field input:focus {
  outline: none;
  border-color: var(--tertiary-color);
  box-shadow: 0 0 0 4px rgba(181, 142, 91, 0.14);
}

/* ---- Video modal -------------------------------------------------------- */
.modal--video {
  padding: 2rem;
}
.modal__panel--video {
  background: transparent;
  max-width: 980px;
  transform: scale(0.96);
  opacity: 0;
  transition:
    transform 0.45s var(--ease),
    opacity 0.45s var(--ease);
}
.modal.is-open .modal__panel--video {
  transform: none;
  opacity: 1;
}
.modal__video {
  width: 100%;
  border-radius: var(--r-md);
  background: #000;
  aspect-ratio: 16/9;
}
.modal__x--video {
  position: absolute;
  top: -3rem;
  right: 0;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border: 1px solid var(--hair-dark);
}

/* ---- Toasts ------------------------------------------------------------- */
.toasts {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  max-width: 360px;
}
.toast {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  background: var(--shadow-color);
  color: var(--white);
  padding: 1rem 1.1rem;
  border-radius: var(--r-md);
  border: 1px solid var(--hair-dark);
  box-shadow: 0 18px 44px -22px rgba(0, 0, 0, 0.7);
  transform: translateX(120%);
  transition: transform 0.45s var(--ease);
}
.toast.is-in {
  transform: none;
}
.toast--success {
  border-left: 3px solid var(--success-color);
}
.toast--error {
  border-left: 3px solid var(--error-color);
}
.toast--info {
  border-left: 3px solid var(--tertiary-color);
}
.toast__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.92rem;
}
.toast__msg {
  font-size: 0.86rem;
  color: var(--text-on-dark-muted);
}

@media (max-width: 560px) {
  .toasts {
    left: 1rem;
    right: 1rem;
    max-width: none;
  }
  .modal__x--video {
    top: -2.6rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .modal__overlay,
  .modal__panel,
  .modal__panel--video,
  .consent,
  .toast {
    transition: none;
  }
}

/* FOOTER */
.footer {
  background: #161f29;
  color: var(--text-on-dark);
  padding-top: clamp(3.5rem, 7vw, 6rem);
  padding-bottom: 2rem;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
  border-bottom: 1px solid var(--hair-dark);
}
.footer__logo {
  height: 38px;
  width: auto;
  margin-bottom: 1.3rem;
}
.footer__desc {
  color: var(--text-on-dark-muted);
  font-size: 0.93rem;
  max-width: 46ch;
  margin-bottom: 1.6rem;
}
.footer__lang {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}
.footer__lang-btn {
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.78rem;
  color: var(--text-on-dark-muted);
  border: 1px solid var(--hair-dark);
  transition:
    background var(--dur) var(--ease),
    color var(--dur) var(--ease);
}
.footer__lang-btn:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}
.footer__lang-btn.is-active {
  background: var(--primary-color);
  color: var(--white);
  border-color: transparent;
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.footer__col h4 {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--tertiary-light);
  margin-bottom: 0.5rem;
}
.footer__col a,
.footer__contact {
  color: var(--text-on-dark-muted);
  font-size: 0.93rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  transition: color var(--dur) var(--ease);
  text-align: left;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0;
}
.footer__col a:hover,
.footer__contact:hover {
  color: var(--white);
}
.footer__contact span:first-child {
  color: var(--tertiary-light);
  display: inline-flex;
}
.footer__contact svg {
  width: 15px;
  height: 15px;
}
.footer__social-title {
  margin-top: 1.2rem;
}
.footer__social {
  display: flex;
  gap: 0.6rem;
}
.footer__social a {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid var(--hair-dark);
  color: var(--text-on-dark-muted);
  transition:
    background var(--dur) var(--ease),
    color var(--dur) var(--ease),
    transform var(--dur) var(--ease);
}
.footer__social a:hover {
  background: var(--primary-color);
  color: var(--white);
  transform: translateY(-2px);
}
.footer__social svg {
  width: 16px;
  height: 16px;
}

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.6rem;
}
.footer-bottom-menu {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.9rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.84rem;
}
.bottom-menu-link {
  color: var(--text-on-dark-subtle);
  transition: color var(--dur) var(--ease);
}
.bottom-menu-link:hover {
  color: var(--white);
}
.bottom-divider span {
  color: rgba(255, 255, 255, 0.22);
}
.footer-bottom-menu .bottom-menu-item:last-child span {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.74rem;
  color: var(--text-on-dark-faint);
}

@media (max-width: 980px) {
  .footer__top {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .footer__top {
    grid-template-columns: 1fr;
  }
  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-bottom-menu {
    gap: 0.6rem;
  }
}

/* ---- reCAPTCHA v3 ------------------------------------------------------- */
/* Badge hidden; replaced by per-form legal notice (Google ToS-compliant). */
.grecaptcha-badge {
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
.form-legal {
  margin: 0.9rem 0 0;
  font-size: 0.72rem;
  line-height: 1.45;
  opacity: 0.7;
  letter-spacing: 0.01em;
}
.form-legal a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.form-legal a:hover {
  opacity: 0.85;
}

/* ---- Form submit states ------------------------------------------------- */
.form-note.is-pending {
  background: rgba(181, 142, 91, 0.18);
  color: var(--tertiary-color, #d8b478);
}
form.is-busy {
  opacity: 0.7;
  pointer-events: none;
}
form.is-busy button[type="submit"] {
  cursor: progress;
}
