:root {
  --ink: #101311;
  --ink-soft: #1b201c;
  --paper: #f1eee5;
  --surface: #fffdf7;
  --white: #ffffff;
  --signal: #d8ff43;
  --signal-dark: #b8dc20;
  --violet: #625bff;
  --text: #171b18;
  --muted: #656b66;
  --line: #cfd2c9;
  --line-dark: rgba(255, 255, 255, 0.18);
  --danger: #a52323;
  --font-body: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Arial Black", "Helvetica Neue", Arial, sans-serif;
  --max-width: 1320px;
  --header-height: 74px;
  --radius: 4px;
  --radius-lg: 12px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 38px);
}

body {
  min-width: 320px;
  min-height: 100vh;
  overflow-x: hidden;
  background: var(--surface);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body,
button,
input,
select {
  font-family: var(--font-body);
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

button,
select {
  cursor: pointer;
}

ul,
ol {
  list-style: none;
}

address {
  font-style: normal;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 0.96;
}

.container {
  width: min(100% - 48px, var(--max-width));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 10000;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  transform: translateY(-150%);
  background: var(--signal);
  color: var(--ink);
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.advertisement-bar {
  position: relative;
  z-index: 102;
  min-height: 34px;
  border-bottom: 1px solid #2b302c;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.72);
}

.advertisement-bar__inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.7rem;
  letter-spacing: 0.13em;
  line-height: 1.2;
  text-transform: uppercase;
}

.advertisement-bar strong {
  color: var(--signal);
}

.header {
  position: sticky;
  z-index: 100;
  top: 0;
  min-height: var(--header-height);
  border-bottom: 1px solid #2c312d;
  background: rgba(16, 19, 17, 0.97);
  color: var(--white);
}

.header__inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  gap: 28px;
}

.logo {
  flex: 0 0 auto;
}

.logo a {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: var(--font-display);
  font-size: 1.22rem;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.logo img {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  object-fit: cover;
}

.header__notice {
  margin-right: auto;
  padding-left: 28px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav__link {
  position: relative;
  display: block;
  padding: 8px 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.83rem;
  font-weight: 700;
}

.nav__link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--signal);
  transition: transform 180ms ease;
}

.nav__link:hover,
.nav__link:focus-visible {
  color: var(--white);
}

.nav__link:hover::after,
.nav__link:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav__cta {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 9px 14px 9px 18px;
  border: 1px solid var(--signal);
  background: var(--signal);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
  transition: background 180ms ease, color 180ms ease;
}

.nav__cta:hover,
.nav__cta:focus-visible {
  background: transparent;
  color: var(--signal);
}

.mobile-toggle {
  display: none;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 7px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: transparent;
}

.mobile-toggle__bar {
  width: 21px;
  height: 2px;
  background: var(--white);
  transition: transform 180ms ease;
}

.mobile-toggle[aria-expanded="true"] .mobile-toggle__bar:first-child {
  transform: translateY(4.5px) rotate(45deg);
}

.mobile-toggle[aria-expanded="true"] .mobile-toggle__bar:last-child {
  transform: translateY(-4.5px) rotate(-45deg);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(58px, 7vw, 104px) 0 72px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    var(--ink);
  background-size: 48px 48px;
  color: var(--white);
}

.hero::before {
  content: "";
  position: absolute;
  top: -220px;
  left: 35%;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: rgba(98, 91, 255, 0.28);
  filter: blur(120px);
  pointer-events: none;
}

.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(460px, 1.12fr);
  align-items: center;
  gap: clamp(44px, 7vw, 96px);
}

.eyebrow,
.section-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow {
  color: rgba(255, 255, 255, 0.55);
}

.eyebrow span {
  display: inline-flex;
  padding: 6px 9px;
  background: var(--signal);
  color: var(--ink);
}

.hero__title {
  max-width: 700px;
  margin-bottom: 30px;
  font-size: clamp(3.5rem, 7vw, 7.4rem);
  line-height: 0.84;
}

.hero__title span {
  color: var(--signal);
}

.hero__lead {
  max-width: 620px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.69);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.65;
}

.hero__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
}

.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 13px 18px;
  font-size: 0.86rem;
  font-weight: 900;
  line-height: 1.2;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn--primary {
  border-color: var(--signal);
  background: var(--signal);
  color: var(--ink);
}

.btn--primary:hover,
.btn--primary:focus-visible {
  border-color: var(--signal-dark);
  background: var(--signal-dark);
}

.btn--large {
  min-height: 58px;
  padding-inline: 22px;
}

.btn--block {
  width: 100%;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0 5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  font-size: 0.84rem;
  font-weight: 800;
}

.text-link:hover,
.text-link:focus-visible {
  border-color: var(--signal);
}

.text-link--dark {
  border-color: rgba(16, 19, 17, 0.38);
  color: var(--ink);
}

.hero__facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 58px;
  border-top: 1px solid var(--line-dark);
}

.hero__facts li {
  padding: 20px 16px 0 0;
}

.hero__facts li + li {
  padding-left: 18px;
  border-left: 1px solid var(--line-dark);
}

.hero__facts strong,
.hero__facts span {
  display: block;
}

.hero__facts strong {
  margin-bottom: 4px;
  color: var(--signal);
  font-size: 1.55rem;
  line-height: 1;
}

.hero__facts span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.68rem;
  line-height: 1.35;
  text-transform: uppercase;
}

.hero__gallery {
  min-width: 0;
}

.gallery-main {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: var(--paper);
}

.gallery-main::after {
  content: "";
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(16, 19, 17, 0.12);
  pointer-events: none;
}

.gallery-main > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 180ms ease;
}

.gallery-price-badge {
  position: absolute;
  z-index: 3;
  top: 0;
  right: 0;
  width: 178px;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(16, 19, 17, 0.25);
  border-left: 1px solid rgba(16, 19, 17, 0.25);
  background: var(--signal);
  color: var(--ink);
}

.gallery-price-badge span,
.gallery-price-badge small,
.gallery-price-badge strong {
  display: block;
}

.gallery-price-badge span {
  margin-bottom: 4px;
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.gallery-price-badge strong {
  font-family: var(--font-display);
  font-size: 1.65rem;
  letter-spacing: -0.05em;
  line-height: 1;
}

.gallery-price-badge small {
  margin-top: 5px;
  font-size: 0.62rem;
  opacity: 0.68;
}

.gallery-main__label {
  position: absolute;
  z-index: 2;
  right: 32px;
  bottom: 30px;
  padding: 7px 9px;
  background: var(--ink);
  color: var(--white);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 10px;
}

.gallery-thumb {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: var(--paper);
  opacity: 0.56;
  transition: opacity 180ms ease, border-color 180ms ease;
}

.gallery-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 3px solid transparent;
  pointer-events: none;
}

.gallery-thumb:hover,
.gallery-thumb:focus-visible,
.gallery-thumb.active {
  opacity: 1;
}

.gallery-thumb.active::after {
  border-color: var(--signal);
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.signal-strip {
  border-bottom: 1px solid var(--line);
  background: var(--signal);
  color: var(--ink);
}

.signal-strip__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.signal-strip p {
  min-height: 66px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 24px;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.signal-strip p + p {
  border-left: 1px solid rgba(16, 19, 17, 0.3);
}

.signal-strip p:first-child {
  padding-left: 0;
}

.signal-strip span {
  color: rgba(16, 19, 17, 0.48);
  font-size: 0.62rem;
}

.product-showcase,
.features,
.faq,
.contact-form {
  padding: clamp(82px, 10vw, 148px) 0;
}

.product-showcase {
  background: var(--surface);
}

.section-intro {
  display: grid;
  grid-template-columns: 0.55fr 1.25fr 0.85fr;
  align-items: end;
  gap: 34px;
  margin-bottom: 70px;
}

.section-intro .section-kicker {
  align-self: start;
  margin-top: 7px;
}

.section-intro h2 {
  font-size: clamp(2.8rem, 5.5vw, 6rem);
}

.section-intro > p:last-child {
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.75;
}

.section-intro--wide {
  grid-template-columns: 0.55fr 2.1fr;
}

.showcase-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(380px, 0.75fr);
  gap: 0;
  align-items: stretch;
}

.showcase-image {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  background: var(--paper);
}

.showcase-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.showcase-image figcaption {
  position: absolute;
  bottom: 24px;
  left: 24px;
  max-width: calc(100% - 48px);
  padding: 9px 12px;
  background: var(--ink);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.showcase-specs {
  display: flex;
  flex-direction: column;
  padding: clamp(30px, 4vw, 58px);
  background: var(--paper);
}

.showcase-specs__head h3 {
  margin-bottom: 20px;
  font-size: clamp(2.2rem, 4vw, 4.4rem);
}

.showcase-specs__head > p:last-child {
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 0.88rem;
}

.spec-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.spec-list div {
  min-width: 0;
  padding: 15px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.spec-list dt,
.spec-list dd {
  display: block;
}

.spec-list dt {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.spec-list dd {
  font-size: 0.87rem;
  font-weight: 800;
}

.spec-note {
  margin: 17px 0 25px;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.55;
}

.showcase-specs .text-link {
  align-self: flex-start;
  margin-top: auto;
}

.features {
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 14px;
}

.feature-card {
  position: relative;
  min-height: 330px;
  grid-column: span 5;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--surface);
}

.feature-card--wide {
  grid-column: span 7;
}

.feature-card--half {
  min-height: 280px;
  grid-column: span 6;
}

.feature-card--signal {
  border-color: var(--signal-dark);
  background: var(--signal);
}

.feature-card--dark {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.feature-card__number {
  position: absolute;
  top: 24px;
  right: 24px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.feature-card--signal .feature-card__number {
  color: rgba(16, 19, 17, 0.5);
}

.feature-card--dark .feature-card__number {
  color: rgba(255, 255, 255, 0.45);
}

.feature-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: auto;
  border: 1px solid var(--line);
  color: var(--violet);
  font-size: 1.15rem;
}

.feature-card--signal .feature-icon {
  border-color: rgba(16, 19, 17, 0.35);
  color: var(--ink);
}

.feature-card--dark .feature-icon {
  border-color: rgba(255, 255, 255, 0.24);
  color: var(--signal);
}

.feature-card h3 {
  max-width: 620px;
  margin-top: 58px;
  margin-bottom: 16px;
  font-size: clamp(1.7rem, 3vw, 3.1rem);
  line-height: 0.98;
}

.feature-card p {
  max-width: 580px;
  color: var(--muted);
  font-size: 0.9rem;
}

.feature-card--signal p {
  color: rgba(16, 19, 17, 0.7);
}

.feature-card--dark p {
  color: rgba(255, 255, 255, 0.62);
}

.use-cases {
  position: relative;
  overflow: hidden;
  padding: clamp(82px, 10vw, 148px) 0;
  background: var(--violet);
  color: var(--white);
}

.use-cases::before {
  content: "FAVAP";
  position: absolute;
  top: -0.16em;
  right: -0.05em;
  color: rgba(255, 255, 255, 0.055);
  font-family: var(--font-display);
  font-size: clamp(8rem, 28vw, 30rem);
  font-weight: 900;
  letter-spacing: -0.09em;
  line-height: 1;
  pointer-events: none;
}

.use-cases .container {
  position: relative;
}

.section-intro--light .section-kicker,
.section-intro--light > p:last-child {
  color: rgba(255, 255, 255, 0.64);
}

.use-cases__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  border-left: 1px solid rgba(255, 255, 255, 0.28);
}

.use-case {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.28);
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
}

.use-case > span {
  color: var(--signal);
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.use-case h3 {
  margin-top: auto;
  margin-bottom: 18px;
  font-size: clamp(1.8rem, 3.1vw, 3.35rem);
}

.use-case p {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.88rem;
}

.faq {
  background: var(--surface);
}

.faq__layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(54px, 8vw, 120px);
  align-items: start;
}

.faq__intro {
  position: sticky;
  top: calc(var(--header-height) + 36px);
}

.faq__intro h2 {
  margin-bottom: 26px;
  font-size: clamp(2.8rem, 5vw, 5.6rem);
}

.faq__intro > p:not(.section-kicker) {
  max-width: 450px;
  margin-bottom: 25px;
  color: var(--muted);
}

.faq-grid {
  border-top: 1px solid var(--ink);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 25px 0;
  border: 0;
  background: transparent;
  color: var(--text);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 800;
  text-align: left;
}

.faq-question i {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  color: var(--violet);
  font-size: 0.72rem;
  transition: transform 180ms ease, background 180ms ease;
}

.faq-question:hover i,
.faq-question:focus-visible i {
  background: var(--signal);
}

.faq-question[aria-expanded="true"] i {
  transform: rotate(45deg);
  background: var(--signal);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 280ms ease;
}

.faq-answer p {
  max-width: 730px;
  padding: 0 58px 27px 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.75;
}

.contact-form {
  position: relative;
  overflow: hidden;
  border-top: 1px solid #2d332e;
  background:
    radial-gradient(circle at 5% 90%, rgba(98, 91, 255, 0.3), transparent 30%),
    var(--ink);
  color: var(--white);
}

.contact-form::after {
  content: "";
  position: absolute;
  top: -90px;
  right: -70px;
  width: 360px;
  height: 360px;
  border: 70px solid rgba(216, 255, 67, 0.08);
  border-radius: 50%;
  pointer-events: none;
}

.contact-form__layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(520px, 1.2fr);
  gap: clamp(50px, 8vw, 110px);
  align-items: start;
}

.contact-form__intro h2 {
  margin-bottom: 26px;
  font-size: clamp(3rem, 5.4vw, 6.1rem);
}

.contact-form__intro > p:not(.section-kicker) {
  max-width: 570px;
  color: rgba(255, 255, 255, 0.64);
}

.contact-form .section-kicker {
  color: var(--signal);
}

.enquiry-steps {
  margin-top: 48px;
  border-top: 1px solid var(--line-dark);
}

.enquiry-steps li {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line-dark);
}

.enquiry-steps li > span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  background: var(--signal);
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 900;
}

.enquiry-steps strong {
  display: block;
  margin-bottom: 3px;
  font-size: 0.88rem;
}

.enquiry-steps p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.78rem;
}

.form-wrapper {
  padding: clamp(25px, 4vw, 46px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: var(--surface);
  color: var(--text);
}

.form-wrapper__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.form-wrapper__head span {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.7rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1;
}

.form-wrapper__head strong {
  max-width: 190px;
  color: var(--muted);
  font-size: 0.68rem;
  letter-spacing: 0.05em;
  line-height: 1.4;
  text-align: right;
  text-transform: uppercase;
}

.form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.form-group--full {
  grid-column: 1 / -1;
}

.form-group label:not(.checkbox-label) {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 0.75rem;
  font-weight: 900;
}

.form-group input,
.form-select {
  width: 100%;
  min-height: 54px;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 0;
  outline: none;
  background: var(--white);
  color: var(--text);
  font-size: 0.9rem;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.form-group input:focus,
.form-select:focus {
  border-color: var(--violet);
  box-shadow: 0 0 0 3px rgba(98, 91, 255, 0.13);
}

.form-select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--ink) 50%),
    linear-gradient(135deg, var(--ink) 50%, transparent 50%);
  background-position: calc(100% - 18px) 24px, calc(100% - 13px) 24px;
  background-repeat: no-repeat;
  background-size: 5px 5px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 500;
  line-height: 1.55;
}

.checkbox-label input[type="checkbox"] {
  width: 17px;
  height: 17px;
  min-height: auto;
  flex: 0 0 17px;
  margin-top: 2px;
  accent-color: var(--violet);
}

.checkbox-label a {
  color: var(--text);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-disclosure {
  padding: 13px 15px;
  border-left: 3px solid var(--violet);
  background: #eeece5;
  color: var(--muted);
  font-size: 0.71rem;
  line-height: 1.55;
}

.form-honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.form-message {
  grid-column: 1 / -1;
  width: 100%;
  padding: 13px 15px;
  font-size: 0.78rem;
}

.form-message--error {
  border: 1px solid rgba(165, 35, 35, 0.25);
  background: #fff0f0;
  color: var(--danger);
}

.form-message[hidden],
.form-preloader[hidden] {
  display: none !important;
}

.footer {
  padding-top: 74px;
  border-top: 1px solid #303631;
  background: var(--ink);
  color: var(--white);
}

.footer__top {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(180px, 0.7fr) minmax(260px, 0.9fr);
  gap: clamp(40px, 7vw, 100px);
  padding-bottom: 58px;
}

.logo--footer {
  margin-bottom: 25px;
}

.footer__title > p {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.62);
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.8vw, 3.8rem);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 1;
}

.footer h3 {
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.46);
  font-family: var(--font-body);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer__links li + li {
  margin-top: 8px;
}

.footer__links a,
.footer__contacts a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.84rem;
}

.footer__links a:hover,
.footer__links a:focus-visible,
.footer__contacts a:hover,
.footer__contacts a:focus-visible {
  color: var(--signal);
}

.footer__contacts p {
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.78rem;
  line-height: 1.6;
}

.footer__contacts strong {
  color: var(--white);
}

.footer__notice {
  padding-block: 24px;
  border-top: 1px solid var(--line-dark);
}

.footer__notice p {
  max-width: 1120px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.7rem;
  line-height: 1.65;
}

.footer__bottom {
  border-top: 1px solid var(--line-dark);
}

.footer__bottom-inner {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.72rem;
}

.footer__bottom a {
  color: var(--signal);
  font-weight: 800;
}

body.is-form-loading {
  overflow: hidden;
}

.form-preloader {
  position: fixed;
  z-index: 99999;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(10, 12, 10, 0.82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.form-preloader__dialog {
  width: min(100%, 390px);
  padding: 38px 30px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
  text-align: center;
}

.form-preloader__dialog strong {
  display: block;
  margin-top: 18px;
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: -0.03em;
}

.form-preloader__dialog p {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.78rem;
}

.form-preloader__spinner {
  display: block;
  width: 48px;
  height: 48px;
  margin: 0 auto;
  border: 4px solid #d8dbd1;
  border-top-color: var(--violet);
  border-radius: 50%;
  animation: form-preloader-spin 0.72s linear infinite;
}

.form.is-submitting {
  pointer-events: none;
}

.form.is-submitting button[type="submit"] {
  opacity: 0.65;
  cursor: wait;
}

@keyframes form-preloader-spin {
  to { transform: rotate(360deg); }
}

@media (max-width: 1100px) {
  .header__notice {
    display: none;
  }

  .hero__grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
    gap: 45px;
  }

  .section-intro {
    grid-template-columns: 0.42fr 1.25fr 0.85fr;
  }

  .showcase-layout {
    grid-template-columns: 1fr 1fr;
  }

  .showcase-image {
    min-height: 650px;
  }

  .contact-form__layout {
    grid-template-columns: minmax(0, 0.8fr) minmax(480px, 1.2fr);
    gap: 48px;
  }
}

@media (max-width: 900px) {
  .container {
    width: min(100% - 36px, var(--max-width));
  }

  .mobile-toggle {
    display: flex;
    margin-left: auto;
  }

  .nav {
    position: fixed;
    z-index: 99;
    top: var(--header-height);
    right: 0;
    width: min(88vw, 410px);
    height: calc(100dvh - var(--header-height));
    display: flex;
    align-items: stretch;
    flex-direction: column;
    gap: 26px;
    padding: 34px 24px;
    transform: translateX(105%);
    border-left: 1px solid #303631;
    background: var(--ink);
    box-shadow: -24px 0 60px rgba(0, 0, 0, 0.3);
    transition: transform 220ms ease;
  }

  .nav.active {
    transform: translateX(0);
  }

  .nav__list {
    align-items: stretch;
    flex-direction: column;
    gap: 0;
  }

  .nav__link {
    padding: 18px 0;
    border-bottom: 1px solid var(--line-dark);
    font-family: var(--font-display);
    font-size: 1.8rem;
    letter-spacing: -0.04em;
  }

  .nav__link::after {
    display: none;
  }

  .nav__cta {
    margin-top: auto;
  }

  .hero__grid,
  .section-intro,
  .section-intro--wide,
  .showcase-layout,
  .faq__layout,
  .contact-form__layout,
  .footer__top {
    grid-template-columns: 1fr;
  }

  .hero__content {
    max-width: 700px;
  }

  .hero__gallery {
    width: min(100%, 680px);
  }

  .section-intro {
    gap: 20px;
  }

  .section-intro .section-kicker {
    margin: 0;
  }

  .section-intro > p:last-child {
    max-width: 650px;
  }

  .showcase-image {
    min-height: 520px;
  }

  .feature-card,
  .feature-card--wide,
  .feature-card--half {
    grid-column: span 6;
  }

  .use-cases__grid {
    grid-template-columns: 1fr;
  }

  .use-case {
    min-height: 250px;
  }

  .faq__intro {
    position: static;
  }

  .contact-form__intro {
    max-width: 700px;
  }

  .form-wrapper {
    max-width: 760px;
  }

  .footer__top {
    gap: 46px;
  }
}

@media (max-width: 620px) {
  :root {
    --header-height: 66px;
  }

  .container {
    width: min(100% - 28px, var(--max-width));
  }

  .advertisement-bar__inner {
    justify-content: flex-start;
    overflow: hidden;
    white-space: nowrap;
  }

  .header__inner {
    gap: 12px;
  }

  .logo img {
    width: 38px;
    height: 38px;
  }

  .mobile-toggle {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  .hero {
    padding-top: 52px;
  }

  .hero__title {
    font-size: clamp(3.1rem, 17vw, 5.3rem);
  }

  .hero__lead {
    font-size: 0.95rem;
  }

  .hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .hero__actions .text-link {
    align-self: flex-start;
  }

  .hero__facts {
    margin-top: 44px;
  }

  .hero__facts li {
    padding-right: 8px;
  }

  .hero__facts li + li {
    padding-left: 10px;
  }

  .hero__facts strong {
    font-size: 1.22rem;
  }

  .hero__facts span {
    font-size: 0.57rem;
  }

  .gallery-main::after {
    inset: 10px;
  }

  .gallery-price-badge {
    width: 145px;
    padding: 13px;
  }

  .gallery-price-badge strong {
    font-size: 1.35rem;
  }

  .gallery-main__label {
    right: 18px;
    bottom: 16px;
  }

  .gallery-thumbs {
    gap: 6px;
    margin-top: 6px;
  }

  .signal-strip__grid {
    grid-template-columns: 1fr;
  }

  .signal-strip p,
  .signal-strip p:first-child {
    min-height: 50px;
    padding: 10px 0;
  }

  .signal-strip p + p {
    border-top: 1px solid rgba(16, 19, 17, 0.25);
    border-left: 0;
  }

  .product-showcase,
  .features,
  .faq,
  .contact-form,
  .use-cases {
    padding: 78px 0;
  }

  .section-intro {
    margin-bottom: 44px;
  }

  .section-intro h2,
  .faq__intro h2,
  .contact-form__intro h2 {
    font-size: clamp(2.6rem, 14vw, 4.2rem);
  }

  .showcase-image {
    min-height: 360px;
  }

  .showcase-specs {
    padding: 27px 20px;
  }

  .showcase-specs__head h3 {
    font-size: 2.6rem;
  }

  .spec-list {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .feature-card--wide,
  .feature-card--half {
    min-height: 300px;
    grid-column: auto;
    padding: 22px;
  }

  .feature-card h3 {
    font-size: 2rem;
  }

  .use-case {
    min-height: 235px;
    padding: 22px;
  }

  .faq-question {
    padding: 20px 0;
  }

  .faq-answer p {
    padding-right: 0;
  }

  .form-wrapper {
    padding: 24px 18px;
  }

  .form-wrapper__head {
    align-items: flex-start;
    flex-direction: column;
  }

  .form-wrapper__head strong {
    max-width: none;
    text-align: left;
  }

  .form {
    grid-template-columns: 1fr;
  }

  .form-group--full {
    grid-column: auto;
  }

  .footer {
    padding-top: 60px;
  }

  .footer__bottom-inner {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding-block: 17px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
/*  */
/* =========================================================
   LEGAL PAGES — ABOUT FAVAP
   ========================================================= */

.legal-page {
  position: relative;
  overflow: hidden;
  padding: clamp(64px, 8vw, 110px) 0;
  background:
    linear-gradient(
      rgba(16, 19, 17, 0.035) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(16, 19, 17, 0.035) 1px,
      transparent 1px
    ),
    #f1eee5;
  background-size: 44px 44px;
}

.legal-page::before {
  content: "";
  position: absolute;
  top: -280px;
  right: -220px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(98, 91, 255, 0.12);
  filter: blur(90px);
  pointer-events: none;
}

.legal-content {
  position: relative;
  z-index: 1;
  max-width: 1080px;
}

.legal-content__header {
  max-width: 880px;
  margin-bottom: 42px;
}

.legal-content__eyebrow {
  display: inline-flex;
  align-items: center;
  margin-bottom: 20px;
  padding: 7px 10px;
  background: #d8ff43;
  color: #101311;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.legal-content__header h1 {
  margin: 0;
  color: #101311;
  font-family: var(
    --font-display,
    "Arial Black",
    "Helvetica Neue",
    Arial,
    sans-serif
  );
  font-size: clamp(3.5rem, 9vw, 7.5rem);
  font-weight: 900;
  letter-spacing: -0.065em;
  line-height: 0.88;
}

.legal-content__lead {
  max-width: 690px;
  margin: 28px 0 0;
  color: #656b66;
  font-size: clamp(1rem, 1.8vw, 1.18rem);
  line-height: 1.7;
}

/* Last updated */

.page-updated-section {
  margin: 0 0 20px;
  padding: 0;
  border: 0;
  background: transparent;
}

.page-updated-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 19px 22px;
  border: 1px solid #cfd2c9;
  border-left: 4px solid #625bff;
  background: rgba(255, 253, 247, 0.94);
}

.page-updated-icon {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #101311;
  color: #d8ff43;
  font-size: 0.9rem;
  font-weight: 900;
}

.page-updated-content {
  min-width: 0;
}

.page-updated-label {
  display: block;
  margin-bottom: 2px;
  color: #625bff;
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.page-updated-content p {
  margin: 0;
  color: #656b66;
  font-size: 0.88rem;
  line-height: 1.5;
}

.page-updated-content time {
  color: #171b18;
  font-weight: 800;
}

/* Legal sections */

.legal-content > section:not(.page-updated-section) {
  position: relative;
  margin-top: 20px;
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid #cfd2c9;
  background: rgba(255, 253, 247, 0.96);
}

.legal-content > section:not(.page-updated-section)::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  width: 82px;
  height: 4px;
  background: #625bff;
}

.legal-content section h2 {
  max-width: 760px;
  margin: 0 0 28px;
  color: #101311;
  font-family: var(
    --font-display,
    "Arial Black",
    "Helvetica Neue",
    Arial,
    sans-serif
  );
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 1;
}

.legal-content section > p {
  max-width: 850px;
  margin: 0;
  color: #565d57;
  font-size: 0.96rem;
  line-height: 1.8;
}

.legal-content section > p + p {
  margin-top: 18px;
}

.legal-content section strong {
  color: #171b18;
  font-weight: 800;
}

.legal-content section a {
  color: #514ae7;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.legal-content section a:hover,
.legal-content section a:focus-visible {
  color: #101311;
}

/* Numbered enquiry process */

.legal-content section ol {
  display: grid;
  gap: 0;
  margin: 10px 0 0;
  padding: 0;
  counter-reset: enquiry-step;
  list-style: none;
}

.legal-content section ol li {
  position: relative;
  min-height: 62px;
  display: flex;
  align-items: center;
  padding: 17px 18px 17px 70px;
  border-top: 1px solid #d8dad3;
  color: #565d57;
  font-size: 0.94rem;
  line-height: 1.65;
  counter-increment: enquiry-step;
}

.legal-content section ol li:last-child {
  border-bottom: 1px solid #d8dad3;
}

.legal-content section ol li::before {
  content: counter(enquiry-step, decimal-leading-zero);
  position: absolute;
  left: 16px;
  color: #625bff;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

/* Standard bullet list */

.legal-content section > ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 24px;
  padding: 0;
  list-style: none;
}

.legal-content section > ul li {
  position: relative;
  padding: 13px 16px 13px 46px;
  border: 1px solid #d8dad3;
  background: #f4f2eb;
  color: #4f5650;
  font-size: 0.92rem;
  line-height: 1.55;
}

.legal-content section > ul li::before {
  content: "✓";
  position: absolute;
  top: 13px;
  left: 17px;
  color: #625bff;
  font-weight: 900;
}

/* Operator card */

.operator-card {
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1.28fr);
  border: 1px solid #cfd2c9;
}

.operator-card__company {
  min-height: 270px;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  background: #101311;
  color: #ffffff;
}

.operator-card__label {
  margin-bottom: auto;
  color: #d8ff43;
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.operator-card__company strong {
  display: block;
  margin-bottom: 8px;
  color: #ffffff !important;
  font-family: var(
    --font-display,
    "Arial Black",
    "Helvetica Neue",
    Arial,
    sans-serif
  );
  font-size: clamp(1.8rem, 4vw, 3.4rem);
  letter-spacing: -0.05em;
  line-height: 0.95;
}

.operator-card__company > span:last-child {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.76rem;
}

.operator-card__details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  font-style: normal;
}

.operator-card__details p {
  min-width: 0;
  margin: 0;
  padding: 24px;
  border-bottom: 1px solid #cfd2c9;
  border-left: 1px solid #cfd2c9;
}

.operator-card__details p:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.operator-card__details p > span,
.operator-card__details p > strong {
  display: block;
}

.operator-card__details p > span {
  margin-bottom: 8px;
  color: #737a74;
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.operator-card__details p > strong {
  color: #171b18;
  font-size: 0.83rem;
  line-height: 1.65;
}

/* Contact card */

.legal-contact-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 28px;
  padding: 22px 24px;
  border: 1px solid #101311;
  background: #101311;
}

.legal-contact-card__label {
  display: block;
  margin-bottom: 5px;
  color: #d8ff43;
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.legal-contact-card div > a {
  color: #ffffff !important;
  font-size: clamp(1.15rem, 3vw, 1.8rem);
  text-decoration: none !important;
}

.legal-contact-card__arrow {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  display: grid;
  place-items: center;
  border: 1px solid #d8ff43;
  background: #d8ff43;
  color: #101311 !important;
  font-size: 1.1rem;
  text-decoration: none !important;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.legal-contact-card__arrow:hover,
.legal-contact-card__arrow:focus-visible {
  background: transparent;
  color: #d8ff43 !important;
}

.legal-contact-section__note {
  margin-top: 20px !important;
  font-size: 0.84rem !important;
}

/* Mobile */

@media (max-width: 760px) {
  .legal-page {
    padding: 54px 0 76px;
    background-size: 34px 34px;
  }

  .legal-content__header {
    margin-bottom: 32px;
  }

  .legal-content__header h1 {
    font-size: clamp(3.2rem, 18vw, 5.2rem);
  }

  .legal-content__lead {
    margin-top: 22px;
    font-size: 0.94rem;
  }

  .page-updated-card {
    align-items: flex-start;
    padding: 16px;
  }

  .page-updated-icon {
    width: 36px;
    height: 36px;
    flex-basis: 36px;
  }

  .page-updated-content p {
    font-size: 0.8rem;
  }

  .legal-content > section:not(.page-updated-section) {
    padding: 28px 20px;
  }

  .legal-content section h2 {
    margin-bottom: 22px;
    font-size: clamp(1.7rem, 9vw, 2.5rem);
  }

  .legal-content section > p {
    font-size: 0.9rem;
    line-height: 1.72;
  }

  .legal-content section ol li {
    align-items: flex-start;
    min-height: auto;
    padding: 15px 12px 15px 50px;
    font-size: 0.86rem;
  }

  .legal-content section ol li::before {
    left: 12px;
  }

  .operator-card {
    grid-template-columns: 1fr;
  }

  .operator-card__company {
    min-height: 220px;
    padding: 22px;
  }

  .operator-card__details {
    grid-template-columns: 1fr;
  }

  .operator-card__details p,
  .operator-card__details p:nth-last-child(-n + 2) {
    padding: 19px;
    border-right: 0;
    border-bottom: 1px solid #cfd2c9;
    border-left: 0;
  }

  .operator-card__details p:last-child {
    border-bottom: 0;
  }

  .legal-contact-card {
    padding: 18px;
  }

  .legal-contact-card div > a {
    overflow-wrap: anywhere;
    font-size: 1.05rem;
  }

  .legal-contact-card__arrow {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }
}
/* =========================================================
   CONTACT PAGE
   Requires the common .legal-page and .legal-content styles
   ========================================================= */

.contact-legal-page .section-introduction {
  margin-bottom: 30px;
}

/* Contact reference notice */

.contact-reference-note {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-top: 18px;
  padding: 16px 18px;
  border: 1px solid #cfd2c9;
  background: #f4f2eb;
}

.contact-reference-note__icon {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #625bff;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 900;
  font-style: normal;
}

.contact-reference-note p {
  margin: 2px 0 0;
  color: #656b66;
  font-size: 0.78rem;
  line-height: 1.65;
}

/* Privacy contact */

.privacy-contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 22px;
  padding: 20px 22px;
  border-left: 4px solid #625bff;
  background: #101311;
}

.privacy-contact span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.privacy-contact a {
  color: #d8ff43 !important;
  font-size: 1rem;
  text-decoration: none !important;
}

.privacy-contact a:hover,
.privacy-contact a:focus-visible {
  color: #ffffff !important;
}

.privacy-contact-section__note {
  margin-top: 18px !important;
  color: #777d78 !important;
  font-size: 0.8rem !important;
}

/* Final contact CTA */

.legal-content > .contact-response-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 40px;
  overflow: hidden;
  border-color: #101311;
  background: #625bff;
  color: #ffffff;
}

.legal-content > .contact-response-section::before {
  width: 110px;
  background: #d8ff43;
}

.contact-response-section__content {
  position: relative;
  z-index: 1;
}

.contact-response-section__label {
  display: block;
  margin-bottom: 18px;
  color: #d8ff43;
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-response-section h2 {
  max-width: 650px;
  color: #ffffff !important;
}

.contact-response-section__content p {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
  line-height: 1.7;
}

.contact-response-section__button {
  min-width: 210px;
  min-height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  padding: 15px 18px;
  border: 1px solid #d8ff43;
  background: #d8ff43;
  color: #101311 !important;
  font-size: 0.82rem;
  font-weight: 900;
  text-decoration: none !important;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.contact-response-section__button strong {
  color: inherit !important;
  font-size: 1rem;
}

.contact-response-section__button:hover,
.contact-response-section__button:focus-visible {
  transform: translateY(-2px);
  background: transparent;
  color: #d8ff43 !important;
}

/* Contact mobile */

@media (max-width: 760px) {
  .privacy-contact {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    padding: 18px;
  }

  .privacy-contact a {
    overflow-wrap: anywhere;
  }

  .legal-content > .contact-response-section {
    grid-template-columns: 1fr;
    align-items: stretch;
    gap: 28px;
  }

  .contact-response-section__button {
    width: 100%;
    min-width: 0;
  }
}