:root {
  --teal: #10e4b0;
  --teal-dark: #00c48c;
  --mint: #b0fce4;
  --mint-bg: #d8fff0;
  --mint-card: #c8ffea;
  --coral: #ff4a22;
  --orange: #ff8a00;
  --peach: #fff0e0;
  --peach-accent: #ffd090;
  --text: #141c24;
  --text-dark: #0a1018;
  --white: #fff;
  --shadow: 0 10px 28px rgba(10, 40, 60, 0.12);
  --radius: 12px;
  --container: 1140px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Raleway", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.5;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

.container {
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid #f0f0f0;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 24px;
}

.logo {
  flex-shrink: 0;
}

.logo img {
  display: block;
  height: 44px;
  width: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 1;
  justify-content: center;
}

.nav a {
  font-size: 14px;
  font-weight: 500;
  color: #495254;
  white-space: nowrap;
  transition: color 0.2s;
}

.nav a:hover,
.nav a.active {
  color: var(--teal-dark);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-weight: 700;
  transition: transform 0.15s, opacity 0.15s;
  box-sizing: border-box;
  -webkit-appearance: none;
  appearance: none;
  text-decoration: none;
}

.btn:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

.btn--primary {
  background: var(--teal-dark);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 13px;
}

.btn--primary svg {
  width: 14px;
  height: 14px;
}

.btn--large {
  padding: 14px 32px;
  border-radius: 999px;
  font-size: 16px;
  min-width: 260px;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.header__link {
  font-size: 14px;
  font-weight: 600;
  color: #495254;
}

.lang {
  position: relative;
  font-size: 13px;
  font-weight: 600;
  color: #495254;
}

.lang__toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 6px;
  border: 0;
  background: transparent;
  font: inherit;
  color: inherit;
  cursor: pointer;
}

.lang img,
.lang [data-lang-flag] {
  width: 24px;
  height: 18px;
  min-width: 24px;
  min-height: 18px;
  object-fit: contain;
  object-position: center;
  flex-shrink: 0;
  display: block;
  border-radius: 2px;
  border: none;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
  background: #f4f6f8;
  box-sizing: border-box;
}

.lang__toggle svg {
  width: 10px;
  height: 10px;
  opacity: 0.6;
  color: var(--teal);
}

.lang__menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 130px;
  margin: 0;
  padding: 6px;
  list-style: none;
  background: var(--white);
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  z-index: 20;
}

.lang__menu li + li {
  margin-top: 2px;
}

.lang__menu button {
  width: 100%;
  padding: 8px 10px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  font: inherit;
  font-size: 13px;
  text-align: left;
  color: #495254;
  cursor: pointer;
}

.lang__menu button:hover,
.lang__menu button.is-active {
  background: var(--mint-bg);
  color: var(--teal-dark);
}

/* Hero */
.hero {
  position: relative;
  padding: 32px 0 16px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  right: -8%;
  top: 5%;
  width: 65%;
  height: 85%;
  background: radial-gradient(ellipse at 40% 50%, rgba(255, 188, 91, 0.14) 0%, transparent 68%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  left: -15%;
  top: 20%;
  width: 55%;
  height: 70%;
  background: radial-gradient(ellipse at 30% 40%, rgba(199, 250, 225, 0.4) 0%, transparent 65%);
  pointer-events: none;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 32px;
  position: relative;
}

.hero__art {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.hero__art img {
  width: 100%;
  max-width: 480px;
  object-fit: contain;
}

.hero__content {
  padding-left: 8px;
}

.hero__title {
  font-size: clamp(44px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 24px;
}

.hero__title .orange {
  color: var(--coral);
  display: block;
}

.hero__title .teal {
  color: var(--teal-dark);
  display: block;
}

.hero__desc {
  font-size: 17px;
  font-weight: 500;
  line-height: 1.65;
  color: var(--text);
  max-width: 420px;
  margin-bottom: 28px;
}

.video-link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-size: 16px;
  font-weight: 600;
  color: var(--teal-dark);
  line-height: 1.45;
  padding: 14px 0 18px;
  max-width: 100%;
}

.video-link--landing {
  width: 100%;
  max-width: 560px;
  margin-top: 10px;
  padding: 22px 0 34px;
  align-items: flex-start;
}

.video-link--landing span:last-child {
  flex: 1;
  line-height: 1.5;
}

.video-link__icon {
  width: 52px;
  height: 52px;
  border: 2px solid var(--teal-dark);
  border-radius: 10px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.video-link__icon svg {
  width: 16px;
  height: 16px;
  margin-left: 2px;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 1300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  isolation: isolate;
}

.video-modal[hidden] {
  display: none;
}

.video-modal__backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(15, 23, 42, 0.72);
}

.video-modal__dialog {
  position: relative;
  width: min(960px, 100%);
  z-index: 1;
}

.video-modal__dialog video,
.video-modal__player {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: calc(100vh - 96px);
  border-radius: 12px;
  background: #000;
  overflow: hidden;
  position: relative;
}

.video-modal__dialog video {
  height: auto;
  object-fit: contain;
}

.video-modal__player iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-modal__close {
  position: absolute;
  top: -44px;
  right: 0;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: #0f172a;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

/* Features */
.features {
  position: relative;
  padding: 16px 0 56px;
}

.features::before {
  content: "";
  position: absolute;
  right: -20%;
  top: 0;
  width: 80%;
  height: 100%;
  background: radial-gradient(ellipse at 60% 30%, rgba(255, 188, 91, 0.1) 0%, transparent 65%);
  pointer-events: none;
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 340px;
}

.card__bar {
  height: 8px;
  width: 100%;
}

.card__bar--mint { background: var(--teal); }
.card__bar--coral { background: var(--coral); }
.card__bar--peach { background: var(--orange); }

.card__title {
  padding: 18px 20px 4px;
  font-size: 14.5px;
  font-weight: 600;
  line-height: 1.45;
  text-align: center;
  color: var(--text-dark);
  min-height: 84px;
}

.card__art {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px 12px 20px;
  min-height: 200px;
}

.card__art img {
  max-height: 190px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.card--text-only {
  min-height: 120px;
}

.card--text-only .card__title {
  min-height: 0;
  padding-bottom: 20px;
}

/* CTA */
.cta {
  position: relative;
  padding: 40px 0 72px;
  overflow: hidden;
}

.cta::before {
  content: "";
  position: absolute;
  left: -30%;
  bottom: 0;
  width: 100%;
  height: 90%;
  background: radial-gradient(ellipse at 25% 55%, rgba(199, 250, 225, 0.45) 0%, transparent 58%);
  pointer-events: none;
}

.cta::after {
  content: "";
  position: absolute;
  right: -10%;
  top: 10%;
  width: 50%;
  height: 80%;
  background: radial-gradient(ellipse at center, rgba(255, 188, 91, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  position: relative;
}

.cta__art {
  display: flex;
  justify-content: center;
}

.cta__art img {
  max-width: 420px;
  width: 100%;
}

.cta__content h2 {
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
}

.cta__content h2 .teal {
  color: var(--teal-dark);
}

.cta__content p {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
  max-width: 440px;
  margin-bottom: 32px;
}

/* Footer */
.footer {
  position: relative;
  background: var(--peach);
  padding: 48px 0 32px;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  top: -80px;
  left: -5%;
  width: 110%;
  height: 120px;
  background: var(--white);
  border-radius: 0 0 50% 50% / 0 0 100% 100%;
}

.footer__inner {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  padding-top: 16px;
}

.footer__brand img {
  height: 36px;
  margin-bottom: 12px;
}

.footer__brand p {
  font-size: 12px;
  color: #666;
  line-height: 1.6;
  max-width: 280px;
}

.footer__links {
  list-style: none;
  text-align: right;
}

.footer__links li + li {
  margin-top: 10px;
}

.footer__links a {
  font-size: 14px;
  font-weight: 500;
  color: #555;
  transition: color 0.2s;
}

.footer__links a:hover {
  color: var(--teal-dark);
}

.footer__social {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.footer__social a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  color: #6b7173;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.footer__social a svg {
  width: 18px;
  height: 18px;
}

.footer__social a:hover {
  color: #fff;
  background: var(--teal-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 22px rgba(6, 177, 135, 0.3);
}

.footer__bottom {
  position: relative;
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.footer__copy {
  font-size: 12px;
  color: #7a7068;
}

@media (max-width: 560px) {
  .footer__bottom-inner {
    justify-content: center;
    text-align: center;
  }
}

.page-curve {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.page-curve--mint {
  right: -15%;
  top: 35%;
  width: 70%;
  height: 80%;
  opacity: 0.9;
}

.page-curve--peach {
  right: -5%;
  top: 8%;
  width: 60%;
  height: 55%;
}

main {
  position: relative;
}

main > section {
  position: relative;
  z-index: 1;
}

.features__grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

.card--compact {
  min-height: 300px;
}

.card--compact .card__title {
  font-size: 13px;
  min-height: 72px;
  padding-top: 14px;
}

.card__title a {
  color: inherit;
}

.card__title a:hover {
  color: var(--teal-dark);
}

/* Landing page */
.hero--landing {
  padding-top: 40px;
  padding-bottom: 28px;
}

.hero--landing .hero__actions--landing {
  margin-bottom: 44px;
}

.hero--landing .hero__actions-row {
  margin-bottom: 12px;
}

.section-block {
  padding: 48px 0;
}

.section-block__grid {
  display: grid;
  gap: 32px;
}

.section-block h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-block p {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
  max-width: 480px;
}

.mini-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.mini-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 16px;
  text-align: center;
}

.mini-card img {
  max-height: 120px;
  margin: 0 auto 12px;
  object-fit: contain;
}

.mini-card p {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--text-dark);
}

.mini-card--single-line {
  grid-column: 1 / -1;
}

.mini-card--single-line p {
  white-space: nowrap;
  font-size: 12.5px;
}

@media (max-width: 1200px) {
  .mini-card--single-line p {
    white-space: normal;
  }
}

.dashboard {
  padding: 40px 0 56px;
}

.dashboard__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
}

.feature-detail {
  position: relative;
  padding: 48px 0 72px;
  overflow: hidden;
}

.feature-detail::before {
  content: "";
  position: absolute;
  left: -20%;
  top: 0;
  width: 70%;
  height: 100%;
  background: radial-gradient(ellipse at 30% 40%, rgba(199, 250, 225, 0.5) 0%, transparent 65%);
  pointer-events: none;
}

.feature-detail__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
}

.feature-detail__art img {
  width: 100%;
  max-width: 520px;
  object-fit: contain;
}

.feature-detail__content h2 {
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 24px;
}

.feature-detail__list {
  list-style: none;
  display: grid;
  gap: 16px;
}

.feature-detail__list li {
  display: flex;
  gap: 12px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
}

.feature-detail__list li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--coral);
  margin-top: 8px;
  flex-shrink: 0;
}

.card--active .card__bar {
  background: var(--coral);
}

.card--active .card__title {
  color: var(--white);
  background: var(--coral);
  margin: 0;
  padding: 18px 20px;
  min-height: auto;
}

.dashboard__text h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  margin-bottom: 16px;
}

.dashboard__text p {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
}

.dashboard__shot img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.cta--final {
  padding-bottom: 64px;
}

.cta__grid--reverse {
  direction: rtl;
}

.cta__grid--reverse > * {
  direction: ltr;
}

.btn--coral {
  background: var(--coral);
  color: var(--white);
}

.btn--coral:hover {
  background: #e63d18;
  filter: brightness(1.05);
}

.btn--coral-text {
  background: transparent;
  color: var(--coral);
  border: 2px solid var(--coral);
  white-space: nowrap;
  font-size: 13px;
  font-weight: 700;
  padding: 9px 14px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  border-radius: 999px;
}

.btn--coral-text:hover {
  background: rgba(255, 122, 89, 0.1);
  color: #e63d18;
  border-color: #e63d18;
}

.btn--coral-text.btn--large {
  padding: 14px 32px;
  font-size: 16px;
  min-width: 260px;
  min-height: 52px;
  line-height: 1.3;
  border-radius: 999px;
}

.btn--supplier.btn--large {
  padding: 14px 32px;
  font-size: 16px;
  min-width: 260px;
  min-height: 52px;
  line-height: 1.3;
  border-radius: 999px;
}

.hero__actions-row .btn.btn--large,
button.btn.btn--coral-text.btn--large {
  border-radius: 999px;
  min-height: 52px;
}

.btn--supplier {
  background: transparent;
  color: var(--teal-dark);
  border: 2px solid var(--teal-dark);
  font-weight: 700;
  border-radius: 999px;
}

.btn--supplier:hover {
  background: var(--mint-bg);
  color: #009e72;
  border-color: #009e72;
}

/* Responsive */
@media (max-width: 1024px) {
  .features__grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .dashboard__inner,
  .feature-detail__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .features__grid--4,
  .mini-features {
    grid-template-columns: 1fr;
  }
}

/* Responsive */
@media (max-width: 1024px) {
  .nav {
    display: none;
  }

  .hero__grid,
  .cta__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__art {
    justify-content: center;
  }

  .hero__content,
  .cta__content {
    padding-left: 0;
  }

  .hero__desc,
  .cta__content p {
    margin-inline: auto;
  }

  .video-link {
    justify-content: center;
  }

  .hero--landing .hero__actions--landing {
    align-items: center;
  }

  .hero--landing .hero__actions-row {
    justify-content: center;
  }

  .hero--landing .video-link--landing {
    justify-content: center;
    margin-inline: auto;
    text-align: left;
  }

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

  .cta__grid {
    direction: rtl;
  }

  .cta__grid > * {
    direction: ltr;
  }
}

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

  .header__link {
    display: none;
  }

  .footer__inner {
    flex-direction: column;
  }

  .footer__links {
    text-align: left;
  }
}

/* ---- Inner / content pages ---- */
.page-head {
  padding: 56px 0 24px;
  text-align: center;
}

.page-head h1 {
  font-size: 34px;
  font-weight: 700;
  color: var(--text-dark);
}

.page-head h1 .teal {
  color: var(--teal-dark);
}

.page-head p {
  margin: 14px auto 0;
  max-width: 640px;
  color: #5a6164;
  font-size: 16px;
}

.page-section {
  padding: 8px 0 64px;
}

.page-narrow {
  width: min(820px, calc(100% - 48px));
  margin-inline: auto;
}

/* Hidden language blocks must stay hidden even when the element
   has a competing display rule (e.g. .faq { display: flex }). */
[data-lang-block][hidden] {
  display: none !important;
}

/* ---- FAQ accordion ---- */
.faq {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq__item {
  border: 1px solid #e8efee;
  border-radius: 12px;
  background: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  border: 0;
  background: transparent;
  font: inherit;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  text-align: left;
  cursor: pointer;
}

.faq__q::after {
  content: "+";
  font-size: 22px;
  color: var(--teal-dark);
  flex-shrink: 0;
  transition: transform 0.2s;
}

.faq__item.is-open .faq__q::after {
  content: "\2212";
}

.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq__a p {
  padding: 0 22px 20px;
  margin: 0;
  color: #4f5658;
  line-height: 1.7;
  font-size: 15px;
}

/* ---- Forms ---- */
.form-card {
  width: min(520px, 100%);
  margin-inline: auto;
  padding: 36px 32px;
  border-radius: 16px;
  background: var(--white);
  box-shadow: var(--shadow);
  border: 1px solid #eef4f3;
}

.form-card h2 {
  font-size: 20px;
  margin-bottom: 6px;
  color: var(--text-dark);
}

.form-card .form-sub {
  color: #5a6164;
  font-size: 14px;
  margin-bottom: 24px;
}

.form-field {
  margin-bottom: 18px;
}

.form-field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #495254;
  margin-bottom: 6px;
}

.form-field label .req {
  color: var(--coral);
}

.form-field label .hint {
  color: #9aa1a3;
  font-weight: 500;
}

.form-field input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #d8e2e0;
  border-radius: 8px;
  font: inherit;
  font-size: 15px;
  color: var(--text);
  background: #fbfdfc;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.form-field input:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(71, 225, 174, 0.18);
}

.form-note {
  margin-top: 14px;
  text-align: center;
  font-size: 13px;
  color: #9aa1a3;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.contact-info {
  padding-top: 8px;
}

.contact-info .info-block {
  margin-bottom: 22px;
}

.contact-info h3 {
  font-size: 14px;
  color: var(--teal-dark);
  margin-bottom: 4px;
}

.contact-info p {
  color: #4f5658;
  line-height: 1.6;
}

.contact-info a {
  color: var(--teal-dark);
  font-weight: 600;
}

/* ---- Legal / prose ---- */
.prose {
  color: #41484a;
  font-size: 15px;
  line-height: 1.8;
}

.prose h2 {
  font-size: 19px;
  color: var(--text-dark);
  margin: 28px 0 10px;
}

.prose p {
  margin-bottom: 14px;
}

.prose ul {
  margin: 0 0 16px 20px;
}

.prose li {
  margin-bottom: 8px;
}

.prose a {
  color: var(--teal-dark);
  font-weight: 600;
}

.prose .legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 12px 0 24px;
  font-size: 13.5px;
}

.prose .legal-table th,
.prose .legal-table td {
  border: 1px solid #e1eae8;
  padding: 10px 12px;
  text-align: left;
  vertical-align: top;
}

.prose .legal-table th {
  background: var(--mint-bg);
  color: var(--teal-dark);
  font-weight: 600;
}

.consent-line {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 0;
  border-top: 1px solid #eef2f1;
}

.consent-line input {
  margin-top: 4px;
}

@media (max-width: 760px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

/* ============================================================
   Frontend enhancements
   ============================================================ */

/* Header scroll state */
.header {
  transition: box-shadow 0.25s ease, background 0.25s ease;
}

.header.is-scrolled {
  box-shadow: 0 6px 24px rgba(15, 23, 42, 0.07);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(8px);
}

/* Button shine + smoother interactions */
.btn--primary {
  position: relative;
  overflow: hidden;
}

.btn--primary::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    100deg,
    transparent,
    rgba(255, 255, 255, 0.35),
    transparent
  );
  transform: skewX(-18deg);
  transition: left 0.6s ease;
}

.btn--primary:hover::after {
  left: 130%;
}

/* Card hover polish */
.card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.12);
}

.card__art img {
  transition: transform 0.3s ease;
}

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

.mini-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.mini-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.1);
}

.video-link__icon {
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.video-link:hover .video-link__icon {
  background: var(--teal-dark);
  color: #fff;
  transform: scale(1.06);
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Hamburger toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
  margin-left: auto;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 0 auto;
  border-radius: 2px;
  background: var(--text-dark);
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav drawer */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 900;
  background: rgba(15, 23, 42, 0.45);
  backdrop-filter: blur(2px);
  animation: fadeIn 0.2s ease;
}

.mobile-nav__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(320px, 84%);
  height: 100%;
  background: #fff;
  box-shadow: -12px 0 32px rgba(15, 23, 42, 0.18);
  padding: 88px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  animation: slideInRight 0.28s ease;
  overflow-y: auto;
}

.mobile-nav__panel a {
  padding: 14px 6px;
  font-size: 16px;
  font-weight: 600;
  color: #2c3335;
  border-bottom: 1px solid #f0f4f3;
}

.mobile-nav__panel a.active {
  color: var(--teal-dark);
}

.mobile-nav__panel .mobile-nav__cta {
  margin-top: 18px;
  border-bottom: 0;
  justify-content: center;
  color: #fff;
  border-radius: 10px;
  padding: 14px 20px;
}

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

@keyframes slideInRight {
  from { transform: translateX(100%); }
  to { transform: translateX(0); }
}

/* Back to top */
.to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 850;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: var(--teal-dark);
  color: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 22px rgba(51, 213, 172, 0.45);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
}

.to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: none;
}

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

.to-top svg {
  width: 22px;
  height: 22px;
}

/* Cookie consent bar */
.cookie-bar {
  position: fixed;
  left: 50%;
  bottom: 22px;
  z-index: 880;
  width: min(860px, calc(100% - 32px));
  transform: translate(-50%, 140%);
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 16px 20px;
  background: #fff;
  border: 1px solid #e8efee;
  border-radius: 14px;
  box-shadow: 0 16px 44px rgba(15, 23, 42, 0.16);
  transition: transform 0.35s ease;
}

.cookie-bar.is-visible {
  transform: translate(-50%, 0);
}

.cookie-bar__text {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.55;
  color: #4f5658;
  flex: 1;
}

.cookie-bar__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.cookie-bar__more {
  font-size: 13px;
  font-weight: 600;
  color: var(--teal-dark);
  white-space: nowrap;
}

.cookie-bar__accept,
.cookie-bar__reject,
.cookie-bar__manage {
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 13px;
  white-space: nowrap;
}

/* ---- Cookie preferences modal ---- */
.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.cookie-modal[hidden] {
  display: none;
}

.cookie-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.5);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.cookie-modal.is-open .cookie-modal__backdrop {
  opacity: 1;
}

.cookie-modal__panel {
  position: relative;
  width: min(560px, 100%);
  max-height: 88vh;
  overflow-y: auto;
  background: #fff;
  border-radius: 18px;
  padding: 30px 28px 24px;
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.28);
  transform: translateY(18px) scale(0.98);
  opacity: 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.cookie-modal.is-open .cookie-modal__panel {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.cookie-modal__close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  font-size: 26px;
  line-height: 1;
  color: #9aa0a2;
  cursor: pointer;
}

.cookie-modal__close:hover {
  color: var(--teal-dark);
}

.cookie-modal__title {
  margin: 0 0 8px;
  font-size: 22px;
  color: var(--text, #1f2937);
}

.cookie-modal__desc {
  margin: 0 0 22px;
  font-size: 14px;
  line-height: 1.6;
  color: #5b6366;
}

.cookie-cat {
  padding: 16px 0;
  border-top: 1px solid #eef2f1;
}

.cookie-cat__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 6px;
}

.cookie-cat__title {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  color: var(--text, #1f2937);
}

.cookie-cat__desc {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: #6b7173;
}

.cookie-cat__always {
  font-size: 12px;
  font-weight: 700;
  color: var(--teal-dark);
  background: rgba(6, 177, 135, 0.12);
  padding: 4px 10px;
  border-radius: 20px;
  white-space: nowrap;
}

.cookie-switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}

.cookie-switch input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-switch span {
  position: absolute;
  inset: 0;
  background: #cfd6d5;
  border-radius: 24px;
  transition: background 0.2s ease;
}

.cookie-switch span::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.2s ease;
}

.cookie-switch input:checked + span {
  background: var(--teal-dark);
}

.cookie-switch input:checked + span::before {
  transform: translateX(20px);
}

.cookie-switch input:focus-visible + span {
  box-shadow: 0 0 0 3px rgba(6, 177, 135, 0.3);
}

.cookie-modal__actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid #eef2f1;
}

.cookie-modal__actions .btn {
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 13px;
}

.footer__cookie-prefs {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 12px;
  font-weight: 600;
  color: var(--teal-dark);
  padding: 0;
}

.footer__cookie-prefs:hover {
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .nav-toggle {
    display: flex;
  }

  .header__actions .header__link,
  .header__actions .btn--primary,
  .header__actions .header__demo {
    display: none;
  }
}

@media (max-width: 560px) {
  .cookie-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .cookie-bar__actions {
    width: 100%;
    justify-content: space-between;
  }
}

/* ---- Contact page (reference layout) ---- */
.contact {
  background: var(--peach);
  padding: 72px 0 88px;
}

.contact__head {
  margin-bottom: 48px;
}

.contact__head h1 {
  font-size: 38px;
  font-weight: 700;
  color: var(--text-dark);
}

.contact__head p {
  margin-top: 12px;
  color: #6b7173;
  font-size: 16px;
}

.contact__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
}

.contact__info .info-block {
  margin-bottom: 30px;
}

.contact__info h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.contact__info p {
  color: #6b7173;
  font-size: 15px;
  line-height: 1.6;
}

.contact__info a {
  color: #6b7173;
  transition: color 0.2s;
}

.contact__info a:hover {
  color: var(--teal-dark);
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact__field {
  width: 100%;
  padding: 16px 20px;
  border: 0;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06);
  font: inherit;
  font-size: 15px;
  color: var(--text);
  transition: box-shadow 0.2s, transform 0.2s;
}

.contact__field::placeholder {
  color: #9aa1a3;
}

.contact__field:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(21, 207, 155, 0.25), 0 10px 26px rgba(15, 23, 42, 0.08);
}

.contact__field--area {
  resize: vertical;
  min-height: 150px;
  line-height: 1.6;
}

.contact__submit {
  align-self: flex-start;
  padding: 14px 40px;
  border-radius: 999px;
  font-size: 15px;
}

.contact__hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.contact__success {
  margin: 0;
  color: var(--teal-dark);
  font-weight: 600;
  font-size: 15px;
}

.contact__error {
  margin: 0;
  color: #c0392b;
  font-weight: 600;
  font-size: 15px;
}

@media (max-width: 860px) {
  .contact__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

/* ── Video showcase ── */
.video-hub {
  padding: 72px 0 88px;
  background: linear-gradient(180deg, #f8fffc 0%, #fff 42%);
}

.video-hub__intro {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 64px;
}

.video-hub__intro h2 {
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.2;
  margin-bottom: 14px;
}

.video-hub__intro p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
  max-width: 520px;
}

.video-hub__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.video-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  font-size: 12px;
  font-weight: 700;
  color: var(--teal-dark);
}

.video-chip svg {
  width: 14px;
  height: 14px;
}

.video-spotlight {
  position: relative;
}

.video-spotlight__frame {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 28px 60px rgba(15, 23, 42, 0.18);
}

.video-spotlight__frame img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.video-spotlight__frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 24, 20, 0.05), rgba(8, 24, 20, 0.55));
  pointer-events: none;
}

.video-spotlight__play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
}

.video-spotlight__play span {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  color: var(--teal-dark);
  display: grid;
  place-items: center;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.video-spotlight__play span svg {
  width: 28px;
  height: 28px;
  margin-left: 4px;
}

.video-spotlight__frame:hover .video-spotlight__play span {
  transform: scale(1.08);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.3);
}

.video-spotlight__badge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 1;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(21, 207, 155, 0.92);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  pointer-events: none;
}

.video-spotlight__duration {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  padding: 6px 10px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.72);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  pointer-events: none;
}

.video-spotlight--compact .video-spotlight__frame {
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
}

.video-spotlight--compact .video-spotlight__play span {
  width: 58px;
  height: 58px;
}

.video-spotlight--compact .video-spotlight__play span svg {
  width: 22px;
  height: 22px;
}

.video-spotlight--nedir {
  max-width: 480px;
  width: 100%;
  margin-bottom: 0;
}

.video-spotlight--nedir .video-spotlight__frame {
  margin-bottom: 0;
}

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

.v-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.07);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.v-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 48px rgba(15, 23, 42, 0.12);
}

.v-card__no {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 800;
  color: #fff;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(6px);
  pointer-events: none;
}

.v-card__media {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  position: relative;
}

.v-card__media img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.v-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(10, 20, 18, 0.72));
  pointer-events: none;
}

.v-card__play {
  position: absolute;
  left: 50%;
  top: 42%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
  border: 2px solid rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(4px);
  transition: transform 0.25s ease, background 0.25s ease;
  pointer-events: none;
}

.v-card__play svg {
  width: 22px;
  height: 22px;
  margin-left: 3px;
}

.v-card:hover .v-card__play {
  transform: translate(-50%, -50%) scale(1.08);
  background: rgba(255, 255, 255, 0.28);
}

.v-card__shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 40%, rgba(255, 255, 255, 0.22), transparent 60%);
  transform: translateX(-120%);
  transition: transform 0.7s ease;
  pointer-events: none;
}

.v-card:hover .v-card__shine {
  transform: translateX(120%);
}

.v-card__body {
  padding: 18px 18px 20px;
  border-top: 4px solid var(--v-accent, var(--teal));
}

.v-card__body h3 {
  font-size: 16px;
  line-height: 1.35;
  margin-bottom: 8px;
}

.v-card__body p {
  font-size: 13px;
  line-height: 1.55;
  color: var(--muted);
  margin-bottom: 12px;
  min-height: 40px;
}

.v-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--v-accent, var(--teal-dark));
}

.v-card__link::after {
  content: "→";
}

.v-card--mint { --v-accent: #15cf9b; }
.v-card--coral { --v-accent: #ff5d38; }
.v-card--peach { --v-accent: #ff9f1c; }
.v-card--teal { --v-accent: #06b187; }
.v-card--orange { --v-accent: #ff7a18; }
.v-card--violet { --v-accent: #7c5cff; }

.feature-video {
  padding: 56px 0 72px;
  background: linear-gradient(180deg, #fff 0%, #f8fffc 100%);
}

.feature-video__wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.feature-video__content h2 {
  font-size: 30px;
  margin-bottom: 12px;
}

.feature-video__content p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 18px;
}

.feature-video__list {
  list-style: none;
  display: grid;
  gap: 10px;
}

.feature-video__list li {
  position: relative;
  padding-left: 22px;
  font-size: 14px;
  line-height: 1.5;
}

.feature-video__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
}

.card--video .card__art {
  position: relative;
}

.card__video-btn {
  --vbtn: 6, 177, 135;
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 18px 9px 9px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  font-family: inherit;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.01em;
  white-space: nowrap;
  background: var(--teal-dark);
  box-shadow: 0 8px 22px rgba(var(--vbtn), 0.45);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  animation: videoBtnPulse 2.4s ease-in-out infinite;
}

.card__video-btn__icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.card__video-btn__icon svg {
  width: 13px;
  height: 13px;
  margin-left: 1px;
}

.card__video-btn:hover {
  transform: translateX(-50%) scale(1.06);
  box-shadow: 0 14px 30px rgba(var(--vbtn), 0.6);
  animation-play-state: paused;
}

@keyframes videoBtnPulse {
  0%, 100% { box-shadow: 0 8px 22px rgba(var(--vbtn), 0.45); }
  50% { box-shadow: 0 10px 30px rgba(var(--vbtn), 0.78); }
}

@media (prefers-reduced-motion: reduce) {
  .card__video-btn { animation: none; }
}

.card__video-btn--coral { --vbtn: 255, 93, 56; background: #ff5d38; }

.card__video-btn--peach { --vbtn: 255, 159, 28; background: #ff9f1c; }

@media (max-width: 1024px) {
  .video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .video-hub__intro,
  .feature-video__wrap {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

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

  .video-hub {
    padding: 48px 0 64px;
  }
}

/* ── Hero actions + trust badges ── */
.hero__actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero__actions--landing {
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 32px;
}

.hero__actions-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  width: 100%;
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 20px;
  list-style: none;
  margin-top: 20px;
}

.hero__badges--row {
  flex-wrap: nowrap;
}

@media (max-width: 900px) {
  .hero__badges--row {
    flex-wrap: wrap;
  }
}

.hero__badges li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #44514d;
}

.hero__badges svg {
  width: 16px;
  height: 16px;
  color: var(--teal-dark);
  flex-shrink: 0;
}

/* ── Reading progress bar ── */
.read-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  z-index: 1500;
  background: linear-gradient(90deg, var(--teal), var(--orange, #ff9f1c));
  transition: width 0.1s linear;
}

/* ── FAQ search ── */
.faq-search {
  position: relative;
  margin-bottom: 22px;
}

.faq-search svg {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: var(--muted);
  pointer-events: none;
}

.faq-search__input {
  width: 100%;
  padding: 14px 18px 14px 46px;
  border: 1px solid var(--line);
  border-radius: 12px;
  font-family: inherit;
  font-size: 15px;
  color: var(--text);
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-search__input:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(21, 207, 155, 0.14);
}

.faq-empty {
  text-align: center;
  color: var(--muted);
  font-size: 15px;
  padding: 18px 0 6px;
}

/* ── Skip link (a11y) ── */
.skip-link {
  position: absolute;
  left: 12px;
  top: -48px;
  z-index: 2000;
  background: var(--teal-dark);
  color: #fff;
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 12px;
  outline: 3px solid #ffd166;
}

/* ── Ghost button ── */
.btn--ghost {
  background: transparent;
  color: var(--teal-dark);
  border: 2px solid var(--teal-dark);
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 13px;
}

.btn--ghost.btn--large {
  padding: 12px 30px;
}

/* ── 404 error page ── */
.error-page {
  padding: 90px 0 110px;
  background: radial-gradient(circle at 50% 0%, #e7fff6 0%, #fff 55%);
}

.error-page__inner {
  text-align: center;
  max-width: 620px;
  margin: 0 auto;
}

.error-page__code {
  font-size: clamp(96px, 18vw, 180px);
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(120deg, var(--teal-dark), var(--orange, #ff9f1c));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
}

.error-page__title {
  font-size: clamp(24px, 4vw, 34px);
  font-weight: 800;
  margin-bottom: 14px;
}

.error-page__desc {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 28px;
}

.error-page__actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.error-page__actions .btn--large {
  min-width: 220px;
}

/* ── Maintenance / construction page ── */
.maintenance-body {
  min-height: 100vh;
  background: radial-gradient(circle at 50% 0%, #e7fff6 0%, #fff 55%);
}

.maintenance-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px 20px;
}

.maintenance-page__card {
  width: min(560px, 100%);
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.08);
  padding: 36px 32px 32px;
  text-align: center;
}

.maintenance-page__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
}

.maintenance-page__logo img {
  height: 36px;
  display: block;
}

.maintenance-page__lang {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  background: #f4f7f6;
  border-radius: 999px;
}

.maintenance-page__lang-btn {
  border: 0;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 999px;
  cursor: pointer;
}

.maintenance-page__lang-btn.is-active {
  background: #fff;
  color: var(--teal-dark);
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.08);
}

.maintenance-page__icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #15cf9b, #0db88a);
  color: #fff;
  box-shadow: 0 12px 28px rgba(21, 207, 155, 0.28);
}

.maintenance-page__icon svg {
  width: 34px;
  height: 34px;
}

.maintenance-page__icon--ok {
  background: linear-gradient(135deg, #0d3d5c, #15cf9b);
}

.maintenance-page__title {
  font-size: clamp(26px, 4vw, 34px);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 10px;
}

.maintenance-page__subtitle {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 14px;
}

.maintenance-page__message {
  color: var(--text);
  font-size: 16px;
  line-height: 1.65;
  margin-bottom: 22px;
}

.maintenance-page__pulse {
  height: 4px;
  background: #e8ecef;
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 28px;
}

.maintenance-page__pulse span {
  display: block;
  width: 45%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--teal), var(--teal-dark));
  animation: maintenancePulse 2.2s ease-in-out infinite;
}

@keyframes maintenancePulse {
  0%, 100% { transform: translateX(-10%); opacity: 1; }
  50% { transform: translateX(140%); opacity: 0.7; }
}

.maintenance-page__contact {
  display: grid;
  gap: 6px;
  margin-bottom: 18px;
  font-size: 14px;
  color: var(--muted);
}

.maintenance-page__contact a {
  color: var(--teal-dark);
  font-weight: 700;
  text-decoration: none;
}

.maintenance-page__contact a:hover {
  text-decoration: underline;
}

.maintenance-page__actions {
  display: flex;
  justify-content: center;
}

.maintenance-page__cta {
  margin-top: 8px;
}

/* ── Animated stats ── */
.stats-band {
  padding: 64px 0;
  background: linear-gradient(135deg, #10221c 0%, #0d3d31 55%, #15cf9b 130%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.stats-band::before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(255, 159, 28, 0.12);
  top: -140px;
  right: -60px;
}

.stats-band__head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 40px;
  position: relative;
  z-index: 1;
}

.stats-band__head h2 {
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 800;
  margin-bottom: 10px;
}

.stats-band__head p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
}

.stats-band__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}

.stat-item {
  text-align: center;
  padding: 24px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.stat-item__num {
  font-size: clamp(32px, 4vw, 46px);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 8px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
}

.stat-item__suffix {
  font-size: 0.6em;
  color: #ffd166;
}

.stat-item__label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.82);
}

/* ── Testimonials ── */
.testimonials {
  padding: 80px 0;
  background: #f8fffc;
}

.testimonials__head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 44px;
}

.testimonials__head h2 {
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 800;
  margin-bottom: 10px;
}

.testimonials__head p {
  color: var(--muted);
  font-size: 16px;
}

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

.testimonial {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px 26px;
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.06);
  display: flex;
  flex-direction: column;
}

.testimonial__stars {
  display: flex;
  gap: 3px;
  color: #ff9f1c;
  margin-bottom: 14px;
}

.testimonial__stars svg {
  width: 18px;
  height: 18px;
}

.testimonial__quote {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 22px;
  flex: 1;
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial__avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: #fff;
  font-size: 16px;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  flex-shrink: 0;
}

.testimonial:nth-child(2) .testimonial__avatar {
  background: linear-gradient(135deg, #ff8a5c, #ff5d38);
}

.testimonial:nth-child(3) .testimonial__avatar {
  background: linear-gradient(135deg, #ffc14d, #ff9f1c);
}

.testimonial__name {
  font-weight: 700;
  font-size: 14px;
}

.testimonial__role {
  font-size: 12px;
  color: var(--muted);
}

/* ── Partner logos ── */
.partners {
  padding: 56px 0 72px;
  background: #fff;
}

.partners__head {
  text-align: center;
  margin-bottom: 32px;
}

.partners__head p {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.partners__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 18px;
}

.partner-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 26px;
  border-radius: 14px;
  background: #f5faf8;
  border: 1px solid var(--line);
  font-weight: 800;
  font-size: 18px;
  color: #2a3b36;
  filter: grayscale(1);
  opacity: 0.72;
  transition: filter 0.25s ease, opacity 0.25s ease, transform 0.25s ease;
}

.partner-logo svg {
  width: 24px;
  height: 24px;
  color: var(--teal-dark);
}

.partner-logo:hover {
  filter: grayscale(0);
  opacity: 1;
  transform: translateY(-3px);
}

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

  .testimonials__grid {
    grid-template-columns: 1fr;
  }
}

/* ── Demo request modal (DOCX layout) ── */
.demo-modal {
  position: fixed;
  inset: 0;
  z-index: 10050;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.demo-modal[hidden] {
  display: none !important;
}

.demo-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 24, 36, 0.55);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.22s ease;
}

.demo-modal.is-open .demo-modal__backdrop {
  opacity: 1;
}

.demo-modal__panel {
  position: relative;
  width: min(920px, 100%);
  max-height: min(92vh, 640px);
  overflow: hidden;
  background: var(--white);
  border-radius: 14px;
  box-shadow: 0 24px 64px rgba(10, 40, 60, 0.28);
  border: 1px solid #e8eef2;
  transform: translateY(16px) scale(0.98);
  opacity: 0;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.demo-modal.is-open .demo-modal__panel {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.demo-modal__close {
  position: absolute;
  top: 14px;
  right: 16px;
  z-index: 3;
  width: 34px;
  height: 34px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  font-size: 22px;
  line-height: 1;
  color: #7a8794;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.15s, background 0.15s;
  box-shadow: 0 2px 8px rgba(10, 40, 60, 0.1);
}

.demo-modal__close:hover {
  color: var(--text-dark);
  background: var(--white);
}

.demo-modal__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.15fr);
  min-height: 0;
  max-height: min(92vh, 640px);
}

.demo-modal__aside {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 36px 32px 32px;
  background: #f3f6f8;
  border-right: 1px solid #e4eaee;
  text-align: center;
}

.demo-modal__quote-mark {
  font-size: 72px;
  line-height: 0.75;
  font-weight: 700;
  color: #b8dfe8;
  font-family: Georgia, "Times New Roman", serif;
  margin-bottom: 8px;
  user-select: none;
}

.demo-modal__quote {
  margin: 0 0 14px;
  font-size: 15px;
  line-height: 1.65;
  color: #4f5d68;
  font-style: normal;
  font-weight: 500;
}

.demo-modal__quote-author {
  margin: 0 0 22px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
}

.demo-modal__divider {
  border: none;
  border-top: 1px solid #d8e0e6;
  margin: 0 0 20px;
}

.demo-modal__trusted {
  margin: 0 0 16px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
}

.demo-modal__logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 14px;
}

.demo-modal__logo {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #8a96a3;
  padding: 6px 10px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 6px;
  border: 1px solid #e0e6eb;
}

.demo-modal__main {
  display: flex;
  flex-direction: column;
  min-height: 0;
  overflow-y: auto;
  padding: 32px 34px 28px;
  background: var(--white);
}

.demo-modal__title {
  margin: 0 0 22px;
  padding-right: 28px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--text-dark);
  text-align: left;
}

.demo-modal__form {
  flex: 1;
}

.demo-modal__label {
  display: block;
  margin-bottom: 16px;
}

.demo-modal__label-line {
  display: block;
  margin-bottom: 7px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
}

.demo-modal__label-line small {
  font-weight: 500;
  color: #6b7c8f;
  margin-left: 4px;
}

.demo-modal__colon {
  margin: 0 2px;
}

.demo-modal__field {
  display: block;
  width: 100%;
  padding: 12px 14px;
  border: 1px solid transparent;
  border-radius: 8px;
  font: inherit;
  font-size: 15px;
  color: var(--text-dark);
  background: #eef2f5;
  transition: border-color 0.15s, box-shadow 0.15s, background 0.15s;
}

.demo-modal__field::placeholder {
  color: #9aa8b3;
}

.demo-modal__field:focus {
  outline: none;
  border-color: var(--teal);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(16, 228, 176, 0.2);
}

.demo-modal__field.is-invalid {
  border-color: #e53935;
  background: #fff8f8;
}

.demo-modal__error {
  display: block;
  margin-top: 5px;
  font-size: 12px;
  font-weight: 500;
  color: #d32f2f;
  line-height: 1.4;
}

.demo-modal__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.demo-modal__submit {
  flex: 1 1 200px;
  min-width: 0;
}

.demo-modal__note {
  flex: 0 0 auto;
  font-size: 12px;
  font-weight: 500;
  color: #7a8794;
  line-height: 1.4;
  max-width: 120px;
}

.demo-modal__error--global {
  margin-top: 10px;
  text-align: center;
  padding: 10px 12px;
  background: #fff0f0;
  border-radius: 8px;
}

.demo-modal__success {
  margin-top: 12px;
  text-align: center;
  color: var(--teal-dark);
  font-weight: 600;
  font-size: 14px;
  padding: 10px 12px;
  background: var(--mint-bg);
  border-radius: 8px;
}

.demo-modal__legal {
  margin: 16px 0 0;
  font-size: 11px;
  line-height: 1.55;
  color: #8a96a3;
  text-align: center;
}

.demo-modal__legal a {
  color: var(--teal-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.demo-modal__legal a:hover {
  color: var(--text-dark);
}

.demo-modal__hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  pointer-events: none;
}

@media (max-width: 768px) {
  .demo-modal__layout {
    grid-template-columns: 1fr;
  }

  .demo-modal__aside {
    padding: 24px 22px 20px;
    border-right: none;
    border-bottom: 1px solid #e4eaee;
  }

  .demo-modal__quote-mark {
    font-size: 52px;
  }

  .demo-modal__quote {
    font-size: 14px;
  }

  .demo-modal__logos {
    gap: 8px;
  }

  .demo-modal__main {
    padding: 24px 22px 22px;
  }

  .demo-modal__title {
    font-size: 19px;
    margin-bottom: 18px;
  }

  .demo-modal__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .demo-modal__submit {
    width: 100%;
    flex: none;
  }

  .demo-modal__note {
    max-width: none;
    text-align: center;
  }
}

.contact__field-error {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  font-weight: 500;
  color: #d32f2f;
}

.contact__field.is-invalid {
  border-color: #e53935;
}

.header__demo {
  flex-shrink: 0;
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 12px;
  line-height: 1.2;
  min-height: 36px;
  border: 2px solid var(--coral);
}

@media (max-width: 1200px) {
  .header__demo.btn--coral-text {
    font-size: 11px;
    padding: 7px 12px;
    min-height: 32px;
  }
}

@media (max-width: 1024px) {
  .mini-card--single-line p {
    white-space: normal;
  }
}

@media (max-width: 520px) {
  .stats-band__grid {
    grid-template-columns: 1fr;
  }

  .error-page__actions .btn--large {
    min-width: 100%;
  }
}

/* ============================================
   Mobile polish
   ============================================ */

@media (max-width: 1024px) {
  .header__inner {
    gap: 12px;
    min-height: 64px;
  }

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

  .hero__content {
    order: -1;
  }

  .hero__title {
    font-size: clamp(32px, 8vw, 48px);
  }

  .hero__desc {
    font-size: 15px;
    max-width: none;
  }

  .hero--landing .hero__actions--landing {
    align-items: stretch;
    width: 100%;
  }

  .hero--landing .hero__actions-row {
    flex-direction: column;
    align-items: stretch;
    justify-content: stretch;
  }

  .hero__actions-row .btn--large,
  .hero__actions-row .btn.btn--large {
    min-width: 0;
    width: 100%;
  }

  .hero--landing .video-link--landing {
    margin-inline: 0;
    max-width: none;
    padding: 16px 0 24px;
  }

  .section-block__grid {
    grid-template-columns: 1fr;
  }

  .feature-detail__grid {
    display: flex;
    flex-direction: column;
    gap: 28px;
  }

  .feature-detail__content {
    order: -1;
  }

  .cta__grid {
    direction: ltr;
    display: flex;
    flex-direction: column;
    gap: 28px;
  }

  .cta__content {
    order: -1;
  }

  .cta__art {
    direction: ltr;
  }
}

@media (max-width: 768px) {
  .container,
  .page-narrow {
    width: min(var(--container), calc(100% - 32px));
  }

  .page-curve {
    opacity: 0.3;
  }

  .page-head {
    padding: 40px 0 20px;
  }

  .page-head h1 {
    font-size: clamp(26px, 7vw, 34px);
  }

  .contact {
    padding: 48px 0 64px;
  }

  .contact__head h1 {
    font-size: clamp(26px, 7vw, 38px);
  }

  .card {
    min-height: 0;
  }

  .card--compact {
    min-height: 0;
  }

  .card__art {
    min-height: 140px;
  }

  .card__title {
    min-height: auto;
    padding: 14px 16px 4px;
    font-size: 14px;
  }

  .mini-card img {
    max-height: 96px;
  }

  .mini-card p {
    font-size: 12.5px;
  }

  .dashboard {
    padding: 28px 0 40px;
  }

  .feature-detail {
    padding: 28px 0 44px;
  }

  .hero--landing {
    padding-top: 20px;
    padding-bottom: 16px;
  }

  .hero {
    padding-top: 20px;
  }

  .hero__art img {
    max-width: min(100%, 340px);
    margin-inline: auto;
  }

  .prose .legal-table {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .mobile-nav__panel {
    padding: 72px 20px 28px;
    width: min(300px, 88vw);
  }

  .stats-band {
    padding: 40px 0;
  }

  .stats-band__head h2 {
    font-size: clamp(24px, 6vw, 32px);
  }
}

@media (max-width: 640px) {
  .container,
  .page-narrow {
    width: min(var(--container), calc(100% - 24px));
  }

  .logo img {
    height: 36px;
  }

  .header__inner {
    min-height: 56px;
  }

  .header__actions .lang {
    display: none;
  }

  .nav-toggle {
    width: 40px;
    height: 40px;
  }

  .btn--large,
  .btn--coral-text.btn--large,
  .btn--supplier.btn--large {
    min-width: 0;
    width: 100%;
    padding: 13px 20px;
    font-size: 15px;
  }

  .hero__title {
    font-size: clamp(28px, 9vw, 38px);
    margin-bottom: 14px;
  }

  .hero__badges {
    justify-content: center;
    margin-top: 16px;
  }

  .hero__badges li {
    font-size: 12px;
  }

  .section-block {
    padding: 36px 0;
  }

  .section-block h2,
  .dashboard__text h2,
  .feature-detail__content h2 {
    font-size: clamp(24px, 7vw, 32px);
  }

  .cta {
    padding: 28px 0 40px;
  }

  .footer {
    padding: 36px 0 28px;
  }

  .footer__links {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .card__video-btn {
    white-space: normal;
    text-align: center;
    line-height: 1.3;
    max-width: calc(100% - 20px);
    font-size: 12px;
    padding: 10px 14px;
    height: auto;
    min-height: 44px;
  }

  .to-top {
    right: 14px;
    bottom: 14px;
    width: 44px;
    height: 44px;
  }

  .video-link {
    font-size: 14px;
    gap: 12px;
  }

  .video-link__icon {
    width: 44px;
    height: 44px;
  }
}

@media (max-width: 480px) {
  .cookie-bar {
    width: calc(100% - 16px);
    padding: 14px;
    bottom: 10px;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .cookie-bar__actions {
    flex-wrap: wrap;
    gap: 8px;
    justify-content: stretch;
    width: 100%;
  }

  .cookie-bar__more {
    width: 100%;
    text-align: center;
    order: -1;
  }

  .cookie-bar__accept,
  .cookie-bar__reject,
  .cookie-bar__manage {
    flex: 1 1 calc(50% - 4px);
    min-width: 0;
    white-space: normal;
    text-align: center;
    padding: 10px 10px;
    font-size: 12px;
  }

  .faq-search__input {
    font-size: 16px;
  }
}

.mobile-nav__footer {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid #eef2f1;
}

.mobile-nav__footer .lang {
  display: block;
  width: 100%;
}

.mobile-nav__footer .lang__toggle {
  width: 100%;
  justify-content: center;
  padding: 12px;
  border: 1px solid #e8efee;
  border-radius: 10px;
}

.mobile-nav__panel {
  display: flex;
  flex-direction: column;
}
