@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&display=swap");

:root {
  --color-page: #09090b;
  --color-panel: #111115;
  --color-panel-soft: rgba(255, 255, 255, 0.04);
  --color-text: #ffffff;
  --color-muted: #a1a1aa;
  --color-muted-strong: #d4d4d8;
  --color-brand: #e12afb;
  --color-brand-soft: #f3b4ff;
  --color-violet: #8b5cf6;
  --color-blue: #4f8cff;
  --border-soft: rgba(255, 255, 255, 0.1);
  --shadow-panel: 0 24px 90px rgba(0, 0, 0, 0.28);
  --container: 80rem;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background: var(--color-page);
  color: var(--color-text);
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

img,
svg,
video {
  display: block;
  max-width: 100%;
}

button,
input,
textarea,
select {
  font: inherit;
}

::selection {
  background: rgba(225, 42, 251, 0.3);
}

.site-shell {
  min-height: 100vh;
}

.container {
  width: min(100% - 3rem, var(--container));
  margin-inline: auto;
}

.section {
  padding: clamp(4.5rem, 8vw, 8rem) 1.5rem;
}

.section--compact {
  padding-block: clamp(3rem, 6vw, 5rem);
}

.section-kicker {
  letter-spacing: 0.24em;
}

.text-balance {
  text-wrap: balance;
}

.bg-grid {
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 30px 30px;
}

.focus-ring:focus-visible {
  outline: 3px solid rgba(243, 180, 255, 0.9);
  outline-offset: 4px;
}

.gradient-text {
  color: transparent;
  background: linear-gradient(100deg, #ffffff 0%, #f3b4ff 45%, #91b8ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.glass-panel {
  border: 0;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025));
  box-shadow: var(--shadow-panel);
  backdrop-filter: blur(18px);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  width: fit-content;
  min-height: 3.25rem;
  padding: 0.9rem 1.35rem;
  border-radius: 0.375rem;
  font-weight: 850;
  line-height: 1;
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button svg {
  width: 1.1rem;
  height: 1.1rem;
}

.button--primary {
  background: #fff;
  color: #050505;
}

.button--secondary {
  border: 0;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.button--secondary:hover {
  background: rgba(255, 255, 255, 0.14);
}

.callback-widget {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 1000;
  width: clamp(20rem, 32vw, 30rem);
  color: var(--color-text);
}

.callback-widget__toggle {
  display: flex;
  width: fit-content;
  min-height: 3.25rem;
  align-items: center;
  gap: 0.65rem;
  margin-left: auto;
  padding: 0.85rem 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: #b021b9;
  color: #fff;
  cursor: pointer;
  font-weight: 800;
  box-shadow: 0 0.75rem 2rem rgba(176, 33, 185, 0.28);
  animation: callback-float 3.2s ease-in-out infinite;
  transition: transform 0.25s ease, border-radius 0.25s ease, box-shadow 0.25s ease;
}

.callback-widget__toggle:hover,
.callback-widget__toggle:focus-visible {
  transform: scale(1.04);
  box-shadow: 0 1rem 2.5rem rgba(176, 33, 185, 0.4);
}

.callback-widget__toggle svg {
  width: 1.1rem;
  height: 1.1rem;
}

.callback-widget__panel {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  height: auto;
  min-height: 20rem;
  max-height: calc(100vh - 2rem);
  box-sizing: border-box;
  overflow-y: auto;
  padding: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1rem;
  background: rgba(17, 17, 21, 0.98);
  box-shadow: 0 1.25rem 3.5rem rgba(0, 0, 0, 0.4);
  transform-origin: bottom right;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.9) translateY(1rem);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), visibility 0s linear 0.5s;
}

.callback-widget.is-open .callback-widget__panel {
  opacity: 1;
  visibility: visible;
  transform: scale(1) translateY(0);
  transition-delay: 0s;
}

.callback-widget.is-centered .callback-widget__panel {
  position: fixed;
  top: 50%;
  right: auto;
  bottom: auto;
  left: 50%;
  transform: translate(-50%, -46%) scale(0.9);
  transform-origin: center;
}

.callback-widget.is-centered.is-open .callback-widget__panel {
  transform: translate(-50%, -50%) scale(1);
}

.callback-widget__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.callback-widget__header strong {
  font-size: 1.15rem;
}

.callback-widget__close {
  width: 2rem;
  height: 2rem;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  cursor: pointer;
  font-size: 1.4rem;
  line-height: 1;
}

.callback-widget__intro {
  margin: 0.75rem 0 1rem;
  color: var(--color-muted);
  font-size: 0.85rem;
  line-height: 1.5;
}

.callback-widget__field + .callback-widget__field {
  margin-top: 0.75rem;
}

.callback-widget__field label {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--color-muted-strong);
  font-size: 0.78rem;
  font-weight: 700;
}

.callback-widget__field input {
  width: 100%;
  padding: 0.7rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0.4rem;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.callback-widget__field input:focus {
  border-color: #b021b9;
  outline: 2px solid rgba(176, 33, 185, 0.25);
  outline-offset: 1px;
}

.callback-widget__submit {
  width: 100%;
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  border: 0;
  border-radius: 0.4rem;
  background: #b021b9;
  color: #fff;
  cursor: pointer;
  font-weight: 800;
}

.callback-widget__submit:disabled {
  cursor: wait;
  opacity: 0.65;
}

.callback-widget__status {
  margin: 0.75rem 0 0;
  font-size: 0.8rem;
  line-height: 1.45;
}

.callback-widget__status--success { color: #a7f3d0; }
.callback-widget__status--error { color: #fda4af; }

.callback-widget__success-close {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  width: 1.75rem;
  height: 1.75rem;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  cursor: pointer;
  font-size: 1.25rem;
  line-height: 1;
}

.callback-widget__success-close:hover,
.callback-widget__success-close:focus-visible {
  background: rgba(255, 255, 255, 0.18);
}

.demo-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 990;
  display: grid;
  width: min(28rem, calc(100vw - 2rem));
  justify-items: center;
  padding: 2.5rem 2rem 2rem;
  border: 1px solid rgba(225, 42, 251, 0.45);
  border-radius: 1.25rem;
  background: linear-gradient(145deg, rgba(39, 16, 44, 0.98), rgba(17, 17, 21, 0.98));
  box-shadow: 0 1.5rem 6rem rgba(0, 0, 0, 0.55), 0 0 3rem rgba(225, 42, 251, 0.16);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -46%) scale(0.82);
  transform-origin: center;
  transition: opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1), transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.demo-popup.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}

.demo-popup.is-booking {
  width: min(44rem, calc(100vw - 2rem));
  max-height: calc(100vh - 2rem);
  padding: 0.25rem;
  overflow-y: auto;
  align-content: start;
}

.demo-popup .calendly-container {
  width: 100%;
  min-width: 320px;
  height: 700px;
  margin: 0;
}

.demo-popup__close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  display: inline-flex;
  min-width: 2rem;
  height: 2rem;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  padding: 0 0.65rem;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  cursor: pointer;
  font-size: 0.75rem;
  font-weight: 800;
  line-height: 1;
}

.demo-popup__close > span:first-child {
  font-size: 1.35rem;
  font-weight: 400;
}

.demo-popup.is-booking .demo-popup__close {
  position: sticky;
  top: 0.5rem;
  right: auto;
  z-index: 2;
  justify-self: end;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(17, 17, 21, 0.94);
  box-shadow: 0 0.35rem 1rem rgba(0, 0, 0, 0.28);
}

.demo-popup__icon {
  display: grid;
  width: 3.5rem;
  height: 3.5rem;
  place-items: center;
  border-radius: 1rem;
  background: rgba(225, 42, 251, 0.16);
  color: var(--color-brand-soft);
}

.demo-popup__icon svg {
  width: 1.65rem;
  height: 1.65rem;
}

.demo-popup h2 {
  margin: 1.25rem 0 1.5rem;
  color: #fff;
  font-size: clamp(1.45rem, 4vw, 2rem);
  line-height: 1.15;
  text-align: center;
}

.demo-popup__button {
  display: inline-flex;
  min-height: 3.1rem;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.35rem;
  border-radius: 0.45rem;
  background: #b021b9;
  color: #fff;
  font-weight: 850;
  text-decoration: none;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.demo-popup__button:hover,
.demo-popup__button:focus-visible {
  background: #c83ad0;
  color: #fff;
  transform: translateY(-2px);
}

@keyframes callback-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

@keyframes callback-open {
  from { opacity: 0; transform: scale(0.75) translateY(1rem); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

@keyframes callback-open-centered {
  from { opacity: 0; transform: translate(-50%, -46%) scale(0.75); }
  to { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}

.text-link {
  display: inline-flex;
  width: fit-content;
  color: var(--color-brand-soft);
  font-weight: 800;
  transition: color 0.2s ease;
}

.text-link:hover {
  color: #fff;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--color-brand-soft);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.home-hero {
  position: relative;
  display: grid;
  min-height: min(780px, 94vh);
  overflow: hidden;
  padding: 9rem 1.5rem 5rem;
}

.home-hero-stage {
  position: relative;
}

.home-hero__image,
.home-hero__overlay {
  position: absolute;
  inset: 0;
}

.home-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-hero__overlay {
  background:
    linear-gradient(90deg, rgba(5, 5, 7, 0.68), rgba(5, 5, 7, 0.42) 48%, rgba(5, 5, 7, 0.12)),
    linear-gradient(180deg, rgba(5, 5, 7, 0.04) 0%, rgba(5, 5, 7, 0.14) 58%, rgba(9, 9, 11, 0.78) 100%);
}

.home-hero__content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-self: end;
  align-items: center;
  width: min(100%, var(--container));
  margin-inline: auto;
  text-align: center;
}

.home-hero__kicker {
  margin: 0 0 1.3rem;
  color: var(--color-brand-soft);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.home-hero h1 {
  max-width: min(100%, 76rem);
  margin: 0;
  font-size: clamp(2.65rem, 5.12vw, 4.72rem);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: 0;
}

.home-hero__title-accent {
  color: #f678ff;
}

.home-hero__title-for {
  color: #fff;
}

.home-hero__dynamic {
  display: inline-grid;
  max-width: 100%;
  min-height: 1em;
  justify-items: start;
  overflow: hidden;
  color: #f678ff;
  text-align: left;
  vertical-align: bottom;
}

.home-hero__dynamic-phrase {
  grid-area: 1 / 1;
  opacity: 0;
  transform: translateY(-100%);
  animation: home-hero-heading-cycle 24s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.home-hero__dynamic-phrase:nth-child(2) { animation-delay: 3s; }
.home-hero__dynamic-phrase:nth-child(3) { animation-delay: 6s; }
.home-hero__dynamic-phrase:nth-child(4) { animation-delay: 9s; }
.home-hero__dynamic-phrase:nth-child(5) { animation-delay: 12s; }
.home-hero__dynamic-phrase:nth-child(6) { animation-delay: 15s; }
.home-hero__dynamic-phrase:nth-child(7) { animation-delay: 18s; }
.home-hero__dynamic-phrase:nth-child(8) { animation-delay: 21s; }

@keyframes home-hero-heading-cycle {
  0% {
    opacity: 0;
    transform: translateY(-100%);
  }
  2.5%, 10% {
    opacity: 1;
    transform: translateY(0);
  }
  12.5%, 100% {
    opacity: 0;
    transform: translateY(100%);
  }
}

.home-hero__content > p:not(.home-hero__kicker),
.home-hero__details > p:not(.home-hero__kicker) {
  max-width: 48rem;
  margin: 1.65rem 0 0;
  color: var(--color-muted-strong);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.65;
}

.home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
  margin-top: 2rem;
}

.home-hero__actions .button--primary {
  color: #f12cff;
  font-weight: 900;
  animation: hero-quote-pulse 2.4s ease-in-out infinite;
}

@keyframes hero-quote-pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.055);
  }
}

.home-hero__facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: 100%;
  max-width: 58rem;
  margin: 3.25rem 0 0;
  border: 0;
  border-radius: 0.5rem;
  background: rgba(5, 5, 7, 0.48);
  backdrop-filter: blur(14px);
  text-align: center;
}

.home-hero__facts div {
  padding: 1.15rem;
}

.home-hero__fact-icon,
.home-hero__fact-mobile {
  display: none;
}

.home-hero__facts div + div {
  border-left: 0;
}

.home-hero__facts dt {
  color: var(--color-brand-soft);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.home-hero__facts dd {
  margin: 0.45rem 0 0;
  color: #fff;
  font-size: 0.94rem;
}

.home-video {
  position: relative;
  width: 100%;
  height: calc(100vw * 0.5625 * 0.7);
  min-height: 24rem;
  max-height: 43rem;
  overflow: hidden;
  background: var(--color-page);
}

.cta-line {
  display: flex;
  min-height: 100px;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 1rem max(1.5rem, calc((100% - var(--container)) / 2));
  background: #b021b9;
  color: #fff;
}

.cta-line p {
  margin: 0;
  font-size: clamp(1.2rem, 2.4vw, 1.8rem);
  font-weight: 700;
  line-height: 1.2;
}

.cta-line__button {
  display: inline-flex;
  flex: 0 0 auto;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.35rem;
  border-radius: 0.45rem;
  background: #fff;
  color: #b021b9;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.cta-line__button:hover,
.cta-line__button:focus-visible {
  background: #f7e5fa;
  color: #b021b9;
  transform: translateY(-1px);
}

.home-video__player {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: calc(100vw * 0.5625);
  min-height: 34.3rem;
  border: 0;
  pointer-events: none;
  transform: translateY(-50%);
}

.home-video-follow-image {
  display: block;
  width: 100%;
  height: 56.25vw;
  object-fit: cover;
}

.home-section {
  width: min(100% - 3rem, var(--container));
  margin-inline: auto;
  padding-block: clamp(4.5rem, 8vw, 7rem);
}

.home-section--muted {
  width: 100%;
  max-width: none;
  padding-inline: max(1.5rem, calc((100% - var(--container)) / 2));
  border-block: 0;
  background: rgba(255, 255, 255, 0.018);
}

.section-header {
  max-width: 54rem;
  margin-inline: auto;
  text-align: center;
}

.section-header--left {
  margin-inline: auto;
  text-align: center;
}

.section-header .section-kicker {
  margin: 0 0 0.9rem;
  color: #f678ff;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.section-header h2,
.agency-panel h2,
.home-cta h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.45rem);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: 0;
}

.solution-heading {
  color: #fff;
  font-weight: 900;
}

.solution-heading__viewport {
  display: grid;
  min-height: 1.2em;
  overflow: hidden;
}

.solution-heading__phrase {
  grid-area: 1 / 1;
  opacity: 0;
  transform: translateY(-100%);
  animation: solution-heading-cycle 18s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.solution-heading__phrase:nth-child(2) { animation-delay: 3s; }
.solution-heading__phrase:nth-child(3) { animation-delay: 6s; }
.solution-heading__phrase:nth-child(4) { animation-delay: 9s; }
.solution-heading__phrase:nth-child(5) { animation-delay: 12s; }
.solution-heading__phrase:nth-child(6) { animation-delay: 15s; }

@keyframes solution-heading-cycle {
  0% {
    opacity: 0;
    transform: translateY(-100%);
  }
  3.333%, 13.333% {
    opacity: 1;
    transform: translateY(0);
  }
  16.667%, 100% {
    opacity: 0;
    transform: translateY(100%);
  }
}

.section-header p {
  margin: 1rem 0 0;
  color: var(--color-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.section-header__spacer {
  height: 1.75rem;
}

.solution-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 3rem;
}

.solution-card {
  display: flex;
  min-height: 19rem;
  flex-direction: column;
  padding: clamp(1.35rem, 3vw, 2rem);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.625rem;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025));
  color: inherit;
  text-decoration: none;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.solution-card:hover,
.solution-card:focus-visible {
  transform: scale(1.025);
  border-color: rgba(225, 42, 251, 0.5);
  box-shadow: var(--shadow-panel);
}

.solution-card--featured {
  border-color: rgba(225, 42, 251, 0.55);
  background: linear-gradient(145deg, rgba(225, 42, 251, 0.16), rgba(255, 255, 255, 0.045));
  box-shadow: 0 0 2rem rgba(225, 42, 251, 0.1);
}

.solution-card__icon {
  display: grid;
  width: 3.2rem;
  height: 3.2rem;
  place-items: center;
  border-radius: 0.45rem;
  background: rgba(225, 42, 251, 0.12);
  color: var(--color-brand-soft);
}

.solution-card__icon svg {
  width: 1.45rem;
  height: 1.45rem;
}

.solution-card h1 {
  margin: 1.5rem 0 0;
  font-size: clamp(1.35rem, 2.5vw, 1.8rem);
  line-height: 1.1;
}

.benefit-card svg,
.service-card svg {
  width: 1.45rem;
  height: 1.45rem;
}

.solution-card h2 {
  margin: 0.9rem 0 0;
  color: var(--color-muted-strong);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.65;
}

.benefit-card {
  animation: benefit-sequence 6s ease-in-out infinite;
}

.benefit-card:nth-child(1) { animation-delay: 0s; }
.benefit-card:nth-child(2) { animation-delay: 2s; }
.benefit-card:nth-child(3) { animation-delay: 4s; }

@keyframes benefit-sequence {
  0%, 33.333%, 100% {
    transform: scale(1);
    background: rgba(255, 255, 255, 0.03);
    box-shadow: none;
  }
  10%, 23.333% {
    transform: scale(1.035);
    background: rgba(225, 42, 251, 0.12);
    box-shadow: 0 0 1.8rem rgba(225, 42, 251, 0.14);
  }
}

.benefit-card p:not(.eyebrow) {
  margin: 0.65rem 0 0;
  color: var(--color-muted-strong);
  line-height: 1.7;
}

.benefit-grid,
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.benefit-grid {
  margin-bottom: clamp(3rem, 6vw, 6rem);
}

.benefit-card,
.service-card,
.process-step,
.faq-list details {
  border: 0;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.03);
}

.benefit-card,
.service-card {
  padding: 1.35rem;
}

.benefit-card {
  min-height: 18rem;
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 4vw, 3.25rem) clamp(1.75rem, 3vw, 2.75rem);
  text-align: center;
}

.benefit-card svg,
.service-card svg {
  color: var(--color-brand-soft);
}

.benefit-card h3,
.service-card h3,
.process-step h3,
.use-case-card h3 {
  margin: 1rem 0 0;
  font-size: 1.1rem;
}

.benefit-card p,
.service-card p,
.process-step p,
.use-case-card p {
  margin: 0.65rem 0 0;
  color: var(--color-muted);
  line-height: 1.65;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin: 3rem 0 0;
  padding: 0;
  list-style: none;
}

.process-callback {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 3rem;
  text-align: center;
}

.process-callback p {
  margin: 0;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 800;
}

.process-callback__button {
  margin-top: 1rem;
  padding: 0.9rem 1.35rem;
  border: 0;
  border-radius: 0.45rem;
  background: #b021b9;
  color: #fff;
  cursor: pointer;
  font-weight: 850;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.process-callback__button:hover,
.process-callback__button:focus-visible {
  background: #c83ad0;
  transform: translateY(-2px);
}

.process-step {
  padding: 1.25rem;
}

.process-step span {
  display: inline-grid;
  width: 2.5rem;
  height: 2.5rem;
  place-items: center;
  border-radius: 999px;
  background: rgba(225, 42, 251, 0.12);
  color: var(--color-brand-soft);
  font-weight: 900;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.65s ease,
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

.use-case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.5rem;
}

.use-case-card {
  display: block;
  overflow: hidden;
  border: 0;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.03);
  color: inherit;
  transform-origin: center;
  transition:
    background-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.use-case-card:hover,
.use-case-card:focus-visible {
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.26);
  transform: scale(1.04);
  outline: 0;
}

.use-case-card img {
  width: 100%;
  height: 15rem;
  object-fit: cover;
}

.use-case-card div {
  padding: 1.25rem;
}

.agency-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  padding: clamp(1.5rem, 4vw, 3rem);
  border: 0;
  border-radius: 0.675rem;
  background: linear-gradient(120deg, rgba(225, 42, 251, 0.1), rgba(79, 140, 255, 0.08));
}

.agency-panel .section-kicker {
  margin: 0 0 1rem;
  color: var(--color-brand-soft);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.agency-panel p:not(.section-kicker) {
  margin: 1.2rem 0 1.5rem;
  color: var(--color-muted-strong);
  line-height: 1.7;
}

.agency-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  align-content: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.agency-list li {
  padding: 1rem;
  border: 0;
  border-radius: 0.45rem;
  background: rgba(0, 0, 0, 0.2);
  color: var(--color-muted-strong);
  font-weight: 750;
}

.faq-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 3rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-list details {
  padding: 1.1rem 1.25rem;
}

.faq-list summary {
  cursor: pointer;
  color: #fff;
  font-weight: 850;
}

.faq-list p {
  margin: 1rem 0 0;
  color: var(--color-muted);
  line-height: 1.7;
}

.home-cta {
  width: min(100% - 3rem, 64rem);
  margin: clamp(3rem, 6vw, 5rem) auto;
  padding: clamp(2rem, 5vw, 4rem);
  border: 0;
  border-radius: 0.675rem;
  background: rgba(255, 255, 255, 0.045);
  text-align: center;
}

.home-cta .section-kicker {
  margin: 0 0 1rem;
  color: #f678ff;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.home-cta p:not(.section-kicker) {
  max-width: 46rem;
  margin: 1.15rem auto 1.75rem;
  color: var(--color-muted-strong);
  line-height: 1.7;
}

.mobile-quote-button {
  position: fixed;
  z-index: 45;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
  width: 100%;
  height: 70px;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 0.35rem 1rem;
  border-radius: 0;
  background: #b021b9;
  color: #fff;
  font-weight: 900;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.32);
  transform: none;
}

.mobile-quote-button__action {
  padding: 0.35rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 0.25rem;
  background: #fff;
  color: #b021b9;
  font-size: 0.78rem;
}

.mobile-quote-button:hover,
.mobile-quote-button:focus-visible {
  color: #fff;
}

.ai-hero {
  position: relative;
  display: grid;
  min-height: min(740px, 90vh);
  overflow: hidden;
  padding: 9rem 1.5rem 5rem;
}

.ai-hero__image,
.ai-hero__overlay {
  position: absolute;
  inset: 0;
}

.ai-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ai-hero__overlay {
  background:
    linear-gradient(90deg, rgba(5, 5, 7, 0.95), rgba(5, 5, 7, 0.72) 52%, rgba(5, 5, 7, 0.38)),
    linear-gradient(180deg, rgba(5, 5, 7, 0.12), var(--color-page));
}

.ai-hero__content {
  position: relative;
  align-self: end;
  width: min(100%, var(--container));
  margin-inline: auto;
}

.ai-hero .section-kicker {
  margin: 0 0 1.2rem;
  color: var(--color-brand-soft);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.ai-hero h1 {
  max-width: 58rem;
  margin: 0;
  font-size: clamp(2.55rem, 6vw, 5.4rem);
  line-height: 0.99;
  letter-spacing: 0;
}

.ai-hero p:not(.section-kicker) {
  max-width: 47rem;
  margin: 1.55rem 0 0;
  color: var(--color-muted-strong);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.65;
}

.ai-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

/* Visioconf&eacute;rence IA */
.visio-hero {
  position: relative;
  min-height: min(780px, 94vh);
  overflow: hidden;
  padding: clamp(8rem, 12vw, 11rem) 1.5rem clamp(4rem, 8vw, 7rem);
  background: #09090b;
}

.visio-hero::before { content: ''; position: absolute; z-index: 1; inset: 0; background: linear-gradient(90deg, rgba(5,5,7,.82), rgba(5,5,7,.54) 50%, rgba(5,5,7,.3)), linear-gradient(180deg, rgba(5,5,7,.25), rgba(9,9,11,.86)); }

.visio-hero__inner, .visio-demo {
  width: min(100%, var(--container));
  margin-inline: auto;
}
.visio-hero__inner { position: relative; z-index: 2; }

.visio-hero__copy { max-width: 51rem; margin-inline: auto; text-align: center; }
.visio-hero .section-kicker { margin: 0 0 1.15rem; color: var(--color-brand-soft); font-size: .76rem; font-weight: 900; text-transform: uppercase; }
.visio-hero h1 { max-width: 58rem; margin: 0 auto; font-size: clamp(3.1rem, 7.2vw, 6.35rem); font-weight: 900; line-height: .94; letter-spacing: -.04em; text-align: center; }
.visio-hero .home-hero__title-accent { display: inline-block; color: #f678ff; text-shadow: 0 .15em .8em rgba(225,42,251,.2); }
.visio-hero .home-hero__title-for { display: inline-block; color: #fff; }
.visio-hero__copy > p:not(.section-kicker) { max-width: 38rem; margin: 1.5rem auto 0; color: var(--color-muted-strong); font-size: clamp(1.05rem, 2vw, 1.28rem); line-height: 1.6; text-align: center; }
.visio-hero .ai-hero__actions { justify-content: center; }
.visio-hero__video { position: absolute; z-index: 0; inset: 0; overflow: hidden; background: #0c0b10; }
.visio-hero__video iframe { position: absolute; top: 50%; left: 50%; width: max(100%, 177.78vh); height: max(100%, 56.25vw); border: 0; pointer-events: none; transform: translate(-50%, -50%); }

.visio-product { position: relative; max-width: 70rem; margin: clamp(2rem, 5vw, 4rem) auto 0; padding: .7rem; border: 1px solid rgba(104,82,152,.18); border-radius: 1rem; background: linear-gradient(145deg,#fff,#f4f1fb); box-shadow: 0 2rem 7rem rgba(31,22,57,.16); text-align: left; }
.visio-product__bar { display: flex; align-items: center; justify-content: space-between; padding: .25rem .35rem .8rem; color: #625c70; font-size: .72rem; }
.visio-product__live { display: inline-flex; align-items: center; gap: .4rem; color: #282238; font-weight: 800; }
.visio-product__live::before { content: ''; width: .48rem; height: .48rem; border-radius: 50%; background: #fa5252; box-shadow: 0 0 0 .25rem rgba(250,82,82,.12); }
.visio-product__body { display: grid; grid-template-columns: minmax(0,1fr) 14.5rem; gap: .7rem; }
.visio-product__videos { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: .7rem; min-height: 25rem; }
.visio-tile { position: relative; display: flex; min-height: 12rem; align-items: end; padding: 1rem; overflow: hidden; border-radius: .65rem; background: linear-gradient(135deg,#486583,#182a3f 65%,#10131e); }
.visio-tile:nth-child(2) { background: linear-gradient(135deg,#835f4e,#35221e 65%,#171215); }
.visio-tile:nth-child(3) { background: linear-gradient(135deg,#55695d,#18251d 65%,#101612); }
.visio-tile:nth-child(4) { background: linear-gradient(135deg,#674c81,#2a1938 65%,#17101d); }
.visio-tile::before { content: ''; position: absolute; top: 18%; left: 50%; width: 5.3rem; height: 5.3rem; border-radius: 50%; background: rgba(255,255,255,.23); transform: translateX(-50%); }
.visio-tile::after { content: ''; position: absolute; top: calc(18% + 4.4rem); left: 50%; width: 9rem; height: 7rem; border-radius: 4.5rem 4.5rem 0 0; background: rgba(255,255,255,.18); transform: translateX(-50%); }
.visio-tile span { position: relative; z-index: 1; font-size: .8rem; font-weight: 800; }
.visio-product__panel { display: flex; flex-direction: column; gap: .8rem; padding: 1rem; border-radius: .65rem; background: #eeeaf7; }
.visio-product__panel h3 { margin: 0; color: #282238; font-size: .92rem; }
.visio-field { padding: .7rem; border-radius: .42rem; background: #fff; color: #625c70; font-size: .78rem; }
.visio-field strong { display: block; margin-top: .25rem; color: #282238; font-size: .88rem; }
.visio-mode { display: flex; justify-content: space-between; padding: .7rem; border: 1px solid rgba(176,33,185,.24); border-radius: .42rem; background: #f9eafe; color: #76217c; font-size: .78rem; font-weight: 800; }
.visio-status { margin-top: auto; padding: .7rem; border-radius: .42rem; background: rgba(87,212,139,.12); color: #a6f0c4; font-size: .75rem; font-weight: 800; }
.visio-status::before { content: '●'; margin-right: .4rem; }
.visio-product__controls { display: flex; gap: .5rem; justify-content: center; padding-top: .7rem; }
.visio-product__controls i { display: grid; width: 2.25rem; height: 2.25rem; place-items: center; border-radius: 50%; background: #e9e4f3; color: #413851; font-size: .7rem; font-style: normal; }

.visio-annotations { display: flex; flex-wrap: wrap; justify-content: center; gap: .65rem; margin-top: 1.15rem; }
.visio-annotations span, .use-case-list span { padding: .6rem .85rem; border: 1px solid rgba(255,255,255,.1); border-radius: 999px; background: rgba(255,255,255,.035); color: var(--color-muted-strong); font-size: .82rem; font-weight: 700; }
.visio-annotations span::before { content: '✦'; margin-right: .45rem; color: var(--color-brand-soft); }
.visio-flow { grid-template-columns: repeat(3, minmax(0, 1fr)); width: min(100%, 54rem); margin: 2.5rem auto 0; justify-content: center; }
.visio-flow li { display: flex; flex-direction: column; align-items: center; text-align: center; }
.visio-flow li span { margin-inline: auto; }
.visio-benefits { grid-template-columns: repeat(4,minmax(0,1fr)); margin-bottom: 0; }
.visio-benefits .benefit-card { min-height: 13rem; padding: 1.5rem; }
.visio-benefits .benefit-card h3 { margin: 1rem 0 0; }
.visio-benefits .benefit-card { animation-name: visio-benefit-sequence; animation-duration: 8s; }
.visio-benefits .benefit-card:nth-child(1) { animation-delay: 0s; }
.visio-benefits .benefit-card:nth-child(2) { animation-delay: 2s; }
.visio-benefits .benefit-card:nth-child(3) { animation-delay: 4s; }
.visio-benefits .benefit-card:nth-child(4) { animation-delay: 6s; }
@keyframes visio-benefit-sequence { 0%, 25%, 100% { transform: scale(1); background: rgba(255,255,255,.03); box-shadow: none; } 7.5%, 17.5% { transform: scale(1.035); background: rgba(225,42,251,.12); box-shadow: 0 0 1.8rem rgba(225,42,251,.14); } }
.use-case-list { display: flex; flex-wrap: wrap; justify-content: center; gap: .75rem; margin-top: 2.25rem; }
.visio-use-case-copy { max-width: 48rem; margin: 2rem auto 0; color: var(--color-muted-strong); line-height: 1.7; text-align: center; }
.visio-final { margin-bottom: clamp(4rem,8vw,7rem); background: linear-gradient(135deg,rgba(225,42,251,.15),rgba(79,140,255,.11)); }

@media (max-width: 800px) {
  .visio-product__body { grid-template-columns: 1fr; }
  .visio-product__panel { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); }
  .visio-status { margin-top: 0; }
  .visio-flow, .visio-benefits { grid-template-columns: repeat(2,minmax(0,1fr)); }
}

.page-nav {
  position: sticky;
  z-index: 30;
  top: 4.55rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
  padding: 0.85rem 1.5rem;
  border-block: 0;
  background: rgba(10, 10, 10, 0.88);
  backdrop-filter: blur(14px);
}

.page-nav a {
  color: var(--color-muted);
  font-size: 0.88rem;
  font-weight: 800;
  transition: color 0.2s ease;
}

.page-nav a:hover {
  color: #fff;
}

.ai-demo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.5rem;
}

.ai-demo-card {
  padding: 1.35rem;
  border: 0;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.03);
}

.ai-demo-card svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--color-brand-soft);
}

.ai-demo-card h3 {
  margin: 1rem 0 0;
  font-size: 1.1rem;
}

.ai-demo-card p {
  margin: 0.65rem 0 0;
  color: var(--color-muted);
  line-height: 1.65;
}

.ai-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin: 2.5rem 0 0;
  padding: 0;
  list-style: none;
}

.ai-flow li {
  padding: 1.25rem;
  border: 0;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.03);
}

.ai-flow span {
  display: inline-grid;
  width: 2.45rem;
  height: 2.45rem;
  place-items: center;
  border-radius: 999px;
  background: rgba(225, 42, 251, 0.12);
  color: var(--color-brand-soft);
  font-weight: 900;
}

.ai-flow h3 {
  margin: 1rem 0 0;
  font-size: 1.05rem;
}

.ai-flow p {
  margin: 0.65rem 0 0;
  color: var(--color-muted);
  line-height: 1.65;
}

.language-carousel {
  position: relative;
  width: min(100%, 76rem);
  margin: 2.8rem auto 0;
}

.language-carousel__viewport {
  overflow: hidden;
  padding-block: 0.45rem;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8rem, #000 calc(100% - 8rem), transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 8rem, #000 calc(100% - 8rem), transparent 100%);
}

.language-carousel__track {
  display: flex;
  gap: 0.85rem;
  width: max-content;
  will-change: transform;
}

.language-card {
  display: inline-flex;
  align-items: center;
  gap: 1.35rem;
  min-width: 26.5rem;
  padding: 2.1rem 2.35rem;
  border: 0;
  border-radius: 0.5rem;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.092), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.035);
  color: var(--color-muted-strong);
  font-size: 1.75rem;
  font-weight: 800;
  box-shadow: 0 16px 46px rgba(0, 0, 0, 0.18);
  transform: translateZ(0);
}

.language-card__flag {
  width: 5.5rem;
  height: 4rem;
  border-radius: 0.35rem;
  object-fit: cover;
  flex: 0 0 auto;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.language-carousel__glass {
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  width: min(9rem, 22vw);
  pointer-events: none;
}

.language-carousel__glass::before {
  content: "";
  position: absolute;
  inset: 0.35rem 0;
  backdrop-filter: blur(18px) saturate(1.55) contrast(1.08);
}

.language-carousel__glass--left {
  left: 0;
  background:
    radial-gradient(120% 85% at 0% 50%, rgba(225, 42, 251, 0.08), rgba(79, 140, 255, 0.045) 42%, transparent 72%),
    linear-gradient(90deg, var(--color-page) 0%, rgba(9, 9, 11, 0.72) 32%, rgba(9, 9, 11, 0.22) 68%, transparent 100%);
}

.language-carousel__glass--left::before {
  background:
    linear-gradient(90deg, rgba(9, 9, 11, 0.42), rgba(9, 9, 11, 0.12) 46%, transparent 100%),
    linear-gradient(135deg, rgba(225, 42, 251, 0.08), transparent 58%),
    linear-gradient(30deg, rgba(79, 140, 255, 0.05), transparent 64%);
  -webkit-mask-image: linear-gradient(90deg, #000 0, rgba(0, 0, 0, 0.72) 36%, transparent 100%);
  mask-image: linear-gradient(90deg, #000 0, rgba(0, 0, 0, 0.72) 36%, transparent 100%);
}

.language-carousel__glass--right {
  right: 0;
  background:
    radial-gradient(120% 85% at 100% 50%, rgba(225, 42, 251, 0.08), rgba(79, 140, 255, 0.045) 42%, transparent 72%),
    linear-gradient(270deg, var(--color-page) 0%, rgba(9, 9, 11, 0.72) 32%, rgba(9, 9, 11, 0.22) 68%, transparent 100%);
}

.language-carousel__glass--right::before {
  background:
    linear-gradient(270deg, rgba(9, 9, 11, 0.42), rgba(9, 9, 11, 0.12) 46%, transparent 100%),
    linear-gradient(225deg, rgba(225, 42, 251, 0.08), transparent 58%),
    linear-gradient(330deg, rgba(79, 140, 255, 0.05), transparent 64%);
  -webkit-mask-image: linear-gradient(270deg, #000 0, rgba(0, 0, 0, 0.72) 36%, transparent 100%);
  mask-image: linear-gradient(270deg, #000 0, rgba(0, 0, 0, 0.72) 36%, transparent 100%);
}

.quality-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  padding: clamp(1.5rem, 4vw, 3rem);
  border: 0;
  border-radius: 0.675rem;
  background: linear-gradient(135deg, rgba(225, 42, 251, 0.11), rgba(79, 140, 255, 0.07));
}

.quality-panel .section-kicker {
  margin: 0 0 1rem;
  color: var(--color-brand-soft);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.quality-panel h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.04;
}

.quality-panel p {
  color: var(--color-muted-strong);
  line-height: 1.7;
}

.quality-list {
  display: grid;
  gap: 0.85rem;
}

.quality-list article {
  padding: 1.1rem;
  border: 0;
  border-radius: 0.5rem;
  background: rgba(0, 0, 0, 0.22);
}

.quality-list svg {
  width: 1.35rem;
  height: 1.35rem;
  color: var(--color-brand-soft);
}

.quality-list h3 {
  margin: 0.8rem 0 0;
}

.quality-list p {
  margin: 0.45rem 0 0;
  color: var(--color-muted);
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.5rem;
}

.comparison-grid article {
  padding: 1.35rem;
  border: 0;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.03);
}

.comparison-grid h3 {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0;
  font-size: 1.15rem;
}

.comparison-grid svg {
  width: 1.35rem;
  height: 1.35rem;
  color: var(--color-brand-soft);
}

.comparison-grid p {
  margin: 0.85rem 0 0;
  color: var(--color-muted);
  line-height: 1.65;
}

.seo-page {
  overflow: hidden;
}

.seo-hero {
  position: relative;
  display: grid;
  min-height: min(700px, 86vh);
  overflow: hidden;
  padding: 9rem 1.5rem 4.5rem;
}

.seo-hero__image,
.seo-hero__overlay {
  position: absolute;
  inset: 0;
}

.seo-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.seo-hero__overlay {
  background:
    linear-gradient(90deg, rgba(5, 5, 7, 0.94), rgba(5, 5, 7, 0.76) 54%, rgba(5, 5, 7, 0.45)),
    linear-gradient(180deg, rgba(5, 5, 7, 0.08), var(--color-page));
}

.seo-hero__content {
  position: relative;
  align-self: end;
  width: min(100%, var(--container));
  margin-inline: auto;
}

.seo-hero .section-kicker {
  margin: 0 0 1rem;
  color: var(--color-brand-soft);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.seo-hero h1 {
  max-width: 62rem;
  margin: 0;
  font-size: clamp(2.35rem, 5.6vw, 5rem);
  line-height: 1;
  letter-spacing: 0;
}

.seo-hero__content > p {
  max-width: 52rem;
  margin: 1.35rem 0 0;
  color: var(--color-muted-strong);
  font-size: clamp(1.02rem, 2vw, 1.24rem);
  line-height: 1.68;
}

.seo-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.seo-section {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(18rem, 0.9fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  width: min(100% - 3rem, var(--container));
  margin-inline: auto;
  padding-block: clamp(4.25rem, 7vw, 6.5rem);
}

.seo-section--muted {
  width: 100%;
  max-width: none;
  padding-inline: max(1.5rem, calc((100% - var(--container)) / 2));
  border-block: 0;
  background: rgba(255, 255, 255, 0.018);
}

.seo-section__text,
.seo-info-card,
.seo-pricing,
.seo-related,
.seo-faq {
  min-width: 0;
}

.seo-section .section-kicker {
  margin: 0 0 1rem;
  color: var(--color-brand);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.seo-section h2 {
  margin: 0;
  font-size: clamp(1.9rem, 3.8vw, 3.25rem);
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: 0;
}

.seo-section p {
  color: var(--color-muted);
  line-height: 1.72;
}

.seo-section__text > p {
  margin: 1.1rem 0 0;
  font-size: 1.03rem;
}

.seo-info-card {
  align-self: start;
  padding: 1.35rem;
  border: 0;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.035);
}

.seo-info-card h3 {
  margin: 0;
  font-size: 1.15rem;
}

.seo-info-card ul {
  display: grid;
  gap: 0.7rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  color: var(--color-muted-strong);
}

.seo-info-card li {
  padding-left: 1.1rem;
  border-left: 2px solid rgba(225, 42, 251, 0.45);
  line-height: 1.5;
}

.seo-section__header {
  grid-column: 1 / -1;
  max-width: 52rem;
}

.seo-card-grid,
.seo-benefits,
.seo-related__grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.seo-card-grid article,
.seo-benefits article,
.seo-related__grid a {
  padding: 1.25rem;
  border: 0;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.03);
}

.seo-card-grid svg,
.seo-benefits svg {
  width: 1.45rem;
  height: 1.45rem;
  color: var(--color-brand-soft);
}

.seo-card-grid h3,
.seo-benefits h3,
.seo-related__grid h3 {
  margin: 1rem 0 0;
  font-size: 1.05rem;
}

.seo-card-grid p,
.seo-benefits p,
.seo-related__grid p {
  margin: 0.55rem 0 0;
  color: var(--color-muted);
  line-height: 1.65;
}

.seo-process {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.seo-process li {
  padding: 1.25rem;
  border: 0;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.03);
}

.seo-process span {
  display: inline-grid;
  width: 2.35rem;
  height: 2.35rem;
  place-items: center;
  border-radius: 999px;
  background: rgba(225, 42, 251, 0.12);
  color: var(--color-brand-soft);
  font-weight: 900;
}

.seo-process h3 {
  margin: 1rem 0 0;
  font-size: 1.05rem;
}

.seo-pricing {
  align-items: center;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border: 0;
  border-radius: 0.625rem;
  background: linear-gradient(135deg, rgba(225, 42, 251, 0.1), rgba(79, 140, 255, 0.06));
}

.seo-pricing .button {
  justify-self: end;
}

.seo-related,
.seo-faq {
  display: block;
}

.seo-related__grid {
  margin-top: 2rem;
}

.seo-related__grid a {
  transition:
    background-color 0.2s ease,
    transform 0.2s ease;
}

.seo-related__grid a:hover {
  background: rgba(225, 42, 251, 0.08);
  transform: translateY(-1px);
}

.contact-page {
  min-height: 100vh;
}

.contact-hero {
  width: min(100% - 2rem, 58rem);
  margin-inline: auto;
  padding: 8rem 0 3.5rem;
  text-align: center;
}

.contact-hero h1 {
  max-width: 12ch;
  margin: 0 auto;
  color: var(--color-text);
  font-size: clamp(2.75rem, 8vw, 5.4rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.contact-hero p:not(.section-kicker) {
  max-width: 45rem;
  margin: 1.25rem auto 0;
  color: var(--color-muted);
  font-size: 1.1rem;
  line-height: 1.8;
}

.contact-hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 1.8rem;
}

.contact-layout {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(18rem, 0.85fr);
  gap: 1.25rem;
  padding-bottom: 6rem;
}

.contact-form-panel,
.contact-aside article {
  border: 0;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: var(--shadow-panel);
}

.contact-form-panel {
  padding: clamp(1.25rem, 4vw, 2rem);
}

.contact-form-panel h2,
.contact-aside h2 {
  margin: 0;
  color: var(--color-text);
}

.contact-form {
  display: grid;
  gap: 1rem;
  margin-top: 1.4rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.form-field label,
.form-consent label {
  color: var(--color-text);
  font-size: 0.92rem;
  font-weight: 700;
}

.form-field input,
.form-field textarea {
  width: 100%;
  margin-top: 0.45rem;
  border: 0;
  border-radius: 0.45rem;
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-text);
  font: inherit;
  outline: none;
  padding: 0.85rem 0.95rem;
  transition: box-shadow 160ms ease;
}

.form-field textarea {
  min-height: 10rem;
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus {
  box-shadow: 0 0 0 4px rgba(225, 42, 251, 0.12);
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  color: var(--color-muted);
  line-height: 1.6;
}

.form-consent input {
  width: 1rem;
  height: 1rem;
  margin-top: 0.25rem;
  accent-color: var(--color-brand);
  flex: 0 0 auto;
}

.form-status {
  border-radius: 0.45rem;
  padding: 0.85rem 1rem;
  font-weight: 700;
  line-height: 1.5;
}

.form-status--success {
  border: 0;
  background: rgba(34, 197, 94, 0.1);
  color: #86efac;
}

.form-status--error {
  border: 0;
  background: rgba(248, 113, 113, 0.1);
  color: #fca5a5;
}

.contact-submit {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.contact-submit:disabled {
  cursor: wait;
  opacity: 0.72;
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-aside {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.contact-aside article {
  padding: 1.25rem;
}

.contact-aside svg {
  width: 1.35rem;
  height: 1.35rem;
  color: var(--color-brand-soft);
  margin-bottom: 1rem;
}

.contact-aside p {
  margin: 0.65rem 0 0;
  color: var(--color-muted);
  line-height: 1.7;
}

.contact-aside .text-link {
  display: inline-flex;
  margin-top: 0.8rem;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 0;
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(12px);
}

.site-header__inner {
  display: grid;
  grid-template-columns: minmax(9rem, 0.85fr) minmax(0, auto) minmax(20rem, 1.35fr);
  align-items: center;
  column-gap: 1.5rem;
  width: min(100%, var(--container));
  margin-inline: auto;
  padding: 1rem 1.5rem;
}

.site-header__brand {
  justify-self: start;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.site-header__brand span,
.site-footer__brand span {
  color: var(--color-brand);
}

.site-header__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 1.55vw, 2rem);
  justify-self: center;
  min-width: 0;
  color: var(--color-muted);
  font-size: 0.875rem;
  font-weight: 500;
  white-space: nowrap;
}

.header-nav-link,
.dropdown-trigger {
  color: inherit;
  transition: color 0.2s ease;
}

.header-nav-link:hover,
.header-nav-link.is-active,
.dropdown-trigger:hover,
.dropdown-trigger.is-active,
.dropdown-trigger[aria-expanded="true"] {
  color: #ffffff;
}

.site-header__dropdown {
  position: relative;
}

.dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.dropdown-trigger__chevron {
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.dropdown-trigger[aria-expanded="true"] .dropdown-trigger__chevron {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  width: 20rem;
  margin-top: 1rem;
  padding: 0.75rem;
  border: 0;
  border-radius: 0.875rem;
  background: rgba(17, 17, 17, 0.95);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(24px);
  opacity: 0;
  transform: translateX(-50%) translateY(-10px) scaleY(0.92);
  transform-origin: top center;
  pointer-events: none;
  transition:
    opacity 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.dropdown-menu.is-open {
  opacity: 1;
  transform: translateX(-50%) translateY(0) scaleY(1);
  pointer-events: auto;
}

.dropdown-menu__item {
  display: block;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  color: var(--color-muted-strong);
  font-size: 0.875rem;
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.dropdown-menu__item:hover,
.dropdown-menu__item.is-active {
  background: rgba(225, 42, 251, 0.14);
  color: #ffffff;
  transform: translateY(-1px);
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  justify-content: flex-end;
  justify-self: end;
}

.header-button,
.mobile-menu__button,
.footer-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 800;
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    opacity 0.2s ease,
    transform 0.2s ease;
}

.header-button {
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
}

.header-button--ghost,
.mobile-menu__button--ghost {
  border: 0;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

.header-button--ghost:hover,
.mobile-menu__button--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
}

.header-button--primary,
.mobile-menu__button--primary {
  background: linear-gradient(90deg, var(--color-brand), #a51fff);
  color: #fff;
  box-shadow: 0 8px 24px rgba(225, 42, 251, 0.35);
}

.header-button--primary:hover,
.mobile-menu__button--primary:hover {
  opacity: 0.95;
}

.mobile-menu-button {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 0.375rem;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  cursor: pointer;
}

.mobile-menu-button:hover {
  background: rgba(255, 255, 255, 0.1);
}

.mobile-menu {
  border-top: 0;
  background: rgba(10, 10, 10, 0.95);
}

.mobile-menu__inner {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: min(100%, var(--container));
  margin-inline: auto;
  padding: 1.25rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
}

.mobile-menu__group {
  padding: 1rem;
  border: 0;
  border-radius: 0.375rem;
  background: rgba(255, 255, 255, 0.03);
}

.mobile-menu__group--accent {

  background: rgba(225, 42, 251, 0.08);
}

.mobile-menu__label {
  margin: 0 0 0.75rem;
  color: var(--color-brand-soft);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.mobile-menu__stack {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-menu__link {
  display: block;
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  color: var(--color-muted-strong);
  transition:
    background-color 0.2s ease,
    color 0.2s ease;
}

.mobile-menu__link:hover {
  background: rgba(225, 42, 251, 0.14);
  color: #fff;
}

.mobile-menu__button {
  padding: 0.75rem 1.25rem;
  border-radius: 0.5rem;
}

.site-footer {
  border-top: 0;
  background: #080808;
  padding: 4rem 1.5rem;
}

.footer-social-bar {
  display: flex;
  min-height: 4.5rem;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 0.75rem 1rem;
  background: #b021b9;
  color: #fff;
  font-weight: 800;
  text-align: center;
}

.footer-social-bar a {
  display: inline-grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 50%;
  color: #fff;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.footer-social-bar a:hover,
.footer-social-bar a:focus-visible {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
}

.footer-social-bar svg {
  width: 1rem;
  height: 1rem;
}

.qr-page {
  display: grid;
  min-height: calc(100vh - 4.5rem);
  place-items: center;
  padding: 2.5rem 1.25rem 4rem;
}

.qr-page__brand {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  color: #fff;
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.qr-page__brand span {
  color: var(--color-brand-soft);
}

.qr-card {
  width: min(100%, 40rem);
  padding: clamp(1.75rem, 5vw, 3.25rem);
  border: 1px solid rgba(225, 42, 251, 0.24);
  border-radius: 1.5rem;
  background: linear-gradient(145deg, rgba(35, 17, 42, 0.92), rgba(17, 17, 21, 0.9));
  box-shadow: 0 2rem 6rem rgba(0, 0, 0, 0.34), 0 0 3rem rgba(225, 42, 251, 0.08);
  backdrop-filter: blur(18px);
}

.qr-card__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-brand-soft);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.qr-card__eyebrow svg {
  width: 1rem;
  height: 1rem;
}

.qr-card h1 {
  max-width: 31rem;
  margin: 1.25rem 0 0.75rem;
  font-size: clamp(1.8rem, 5vw, 3rem);
  letter-spacing: -0.055em;
  line-height: 1.08;
}

.qr-greeting {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.qr-greeting__wave {
  display: inline-block;
  font-size: clamp(2.4rem, 8vw, 4.5rem);
  line-height: 1;
  transform-origin: 70% 80%;
  animation: qr-wave 2.8s ease-in-out infinite;
}

@keyframes qr-wave {
  0%, 65%, 100% { transform: rotate(0deg); }
  70% { transform: rotate(13deg); }
  76% { transform: rotate(-8deg); }
  82% { transform: rotate(12deg); }
  88% { transform: rotate(-4deg); }
}

.qr-card__question {
  margin: 0 0 1.5rem;
  color: var(--color-muted-strong);
  font-size: 1rem;
}

.qr-contact-options {
  display: grid;
  justify-items: start;
  gap: 0.65rem;
  margin-bottom: 1.25rem;
}

.qr-call {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
  transition: color 0.2s ease, transform 0.2s ease;
}

.qr-call:hover,
.qr-call:focus-visible {
  color: var(--color-brand-soft);
  transform: translateY(-1px);
}

.qr-call__icon {
  display: grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  border: 1px solid rgba(243, 180, 255, 0.55);
  border-radius: 50%;
  background: rgba(225, 42, 251, 0.15);
  color: var(--color-brand-soft);
}

.qr-call__icon svg {
  width: 0.95rem;
  height: 0.95rem;
}

.qr-actions {
  display: grid;
  gap: 0.65rem;
}

.qr-action {
  display: grid;
  grid-template-columns: 2.75rem 1fr auto;
  align-items: center;
  gap: 0.85rem;
  min-height: 4.25rem;
  padding: 0.75rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 0.85rem;
  background: rgba(255, 255, 255, 0.045);
  transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.qr-action:hover,
.qr-action:focus-visible {
  border-color: rgba(243, 180, 255, 0.72);
  background: rgba(225, 42, 251, 0.12);
  transform: translateY(-2px);
}

.qr-action--primary {
  border-color: rgba(225, 42, 251, 0.5);
  background: linear-gradient(100deg, rgba(176, 33, 185, 0.88), rgba(109, 49, 164, 0.8));
}

.qr-action__icon {
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  place-items: center;
  border-radius: 0.7rem;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.qr-action__icon svg,
.qr-action__arrow {
  width: 1.15rem;
  height: 1.15rem;
}

.qr-action strong,
.qr-action small {
  display: block;
}

.qr-action strong {
  font-size: 0.9rem;
  line-height: 1.25;
}

.qr-action small {
  margin-top: 0.2rem;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.68rem;
  line-height: 1.3;
}

.qr-action__arrow {
  color: rgba(255, 255, 255, 0.64);
}

.qr-discount {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.qr-discount__badge {
  display: grid;
  min-width: 3.5rem;
  min-height: 3.5rem;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: #a51eae;
  font-size: 0.9rem;
  font-weight: 900;
  transform: rotate(-8deg);
}

.qr-discount p {
  margin: 0;
  color: var(--color-muted-strong);
  font-size: 0.76rem;
  line-height: 1.55;
}

.qr-discount strong {
  color: #fff;
}

.affiliate-page {
  width: min(100% - 3rem, 64rem);
  margin: 0 auto;
  padding: clamp(5rem, 10vw, 9rem) 0;
  text-align: center;
}

.affiliate-page h1 {
  margin: 0.75rem 0 1rem;
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  letter-spacing: -0.06em;
  line-height: 1;
}

.affiliate-page__intro {
  max-width: 42rem;
  margin: 0 auto 3rem;
  color: var(--color-muted-strong);
  font-size: 1.05rem;
  line-height: 1.75;
}

.affiliate-page__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 2.25rem;
  text-align: left;
}

.affiliate-page__grid article {
  padding: 1.75rem;
  border: 1px solid var(--border-soft);
  border-radius: 1rem;
  background: var(--color-panel-soft);
}

.affiliate-page__grid svg {
  width: 1.6rem;
  height: 1.6rem;
  color: var(--color-brand-soft);
}

.affiliate-page__grid h2 {
  margin: 1.25rem 0 0.5rem;
  font-size: 1.15rem;
}

.affiliate-page__grid p {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.site-footer__inner {
  width: min(100%, var(--container));
  margin-inline: auto;
}

.site-footer__top {
  display: grid;
  grid-template-columns: 1.25fr 2fr;
  gap: 3rem;
}

.site-footer__brand {
  display: inline-block;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.site-footer__intro p {
  max-width: 28rem;
  margin: 1.25rem 0 0;
  color: var(--color-muted);
  line-height: 1.65;
}

.site-footer__contact {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-top: 1.25rem;
  color: var(--color-muted);
  font-size: 0.875rem;
  line-height: 1.5;
}

.site-footer__contact strong {
  color: #fff;
  font-weight: 800;
}

.site-footer__contact a {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 0.4rem;
  color: var(--color-muted-strong);
  font-weight: 700;
}

.site-footer__contact a:hover {
  color: #fff;
}

.site-footer__contact svg {
  width: 0.95rem;
  height: 0.95rem;
}

.site-footer__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.footer-button {
  padding: 0.75rem 1.25rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
}

.footer-button--primary {
  background: #fff;
  color: #000;
}

.footer-button--primary:hover {
  transform: translateY(-1px);
}

.footer-button--ghost {
  border: 0;
  background: rgba(225, 42, 251, 0.1);
  color: #fff;
}

.footer-button--ghost:hover {
  background: rgba(225, 42, 251, 0.2);
}

.site-footer__nav {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2.5rem;
}

.footer-links h2 {
  margin: 0;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.footer-links div {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.25rem;
  color: var(--color-muted);
  font-size: 0.875rem;
}

.footer-links .footer-links__columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 1rem;
  row-gap: 0.75rem;
}

.footer-links a,
.site-footer__bottom a {
  transition: color 0.2s ease;
}

.footer-links a:hover,
.site-footer__bottom a:hover {
  color: #fff;
}

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 3.5rem;
  padding-top: 1.75rem;
  border-top: 0;
  color: #52525b;
  font-size: 0.75rem;
}

.site-footer__bottom p {
  margin: 0;
}

.site-footer__bottom div {
  display: flex;
  gap: 1.25rem;
}

@media (max-width: 1023px) {
  .seo-hero {
    min-height: auto;
    padding-top: 8rem;
  }

  .seo-section,
  .seo-section--muted,
  .seo-pricing {
    grid-template-columns: 1fr;
  }

  .seo-card-grid,
  .seo-benefits,
  .seo-related__grid,
  .seo-process {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .seo-pricing .button {
    justify-self: start;
  }

  .ai-hero {
    min-height: auto;
    padding-top: 8rem;
  }

  .ai-hero__overlay {
    background:
      linear-gradient(90deg, rgba(5, 5, 7, 0.95), rgba(5, 5, 7, 0.78)),
      linear-gradient(180deg, rgba(5, 5, 7, 0.1), var(--color-page));
  }

  .page-nav {
    justify-content: flex-start;
    overflow-x: auto;
  }

  .page-nav a {
    flex: 0 0 auto;
  }

  .ai-demo-grid,
  .ai-flow,
  .comparison-grid,
  .quality-panel {
    grid-template-columns: 1fr;
  }

  .language-card {
    min-width: 18rem;
    padding: 1.45rem 1.55rem;
    font-size: 1.28rem;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .home-hero {
    min-height: auto;
    padding-top: 8rem;
  }

  .home-hero__overlay {
    background:
      linear-gradient(90deg, rgba(5, 5, 7, 0.74), rgba(5, 5, 7, 0.48)),
      linear-gradient(180deg, rgba(5, 5, 7, 0.08), rgba(9, 9, 11, 0.82));
  }

  .solution-tabs,
  .agency-panel,
  .faq-section {
    grid-template-columns: 1fr;
  }

  .benefit-grid,
  .process-list,
  .use-case-grid {
    grid-template-columns: 1fr;
  }

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

  .site-header__inner {
    grid-template-columns: 1fr auto;
  }

  .site-header__nav {
    display: none;
  }

  .header-button {
    display: none;
  }

  .mobile-menu-button {
    display: inline-flex;
  }

  .site-footer__top {
    grid-template-columns: 1fr;
  }

  .site-footer__nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 639px) {
  .seo-hero {
    padding: 7rem 1rem 4rem;
  }

  .seo-hero h1 {
    font-size: clamp(2.15rem, 12vw, 3.2rem);
  }

  .seo-hero__actions {
    flex-direction: column;
  }

  .seo-section,
  .seo-section--muted {
    width: min(100% - 2rem, var(--container));
    padding-block: 4rem;
  }

  .seo-section--muted {
    padding-inline: 1rem;
  }

  .seo-card-grid,
  .seo-benefits,
  .seo-related__grid,
  .seo-process {
    grid-template-columns: 1fr;
  }

  .ai-hero {
    padding: 7rem 1rem 4rem;
  }

  .ai-hero h1 {
    font-size: clamp(2.25rem, 13vw, 3.35rem);
  }

  .ai-hero__actions {
    flex-direction: column;
  }

  .page-nav {
    top: 4.35rem;
  }

  .language-carousel {
    width: min(calc(100% + 2rem), 100vw);
    margin-inline: -1rem;
  }

  .language-card {
    min-width: 14.75rem;
    padding: 1.1rem 1.15rem;
    font-size: 1.08rem;
  }

  .language-card__flag {
    width: 3.2rem;
    height: 2.35rem;
  }

  .language-carousel__glass {
    width: 4.25rem;
  }

  .contact-hero {
    padding: 7rem 1rem 4rem;
  }

  .contact-hero h1 {
    font-size: clamp(2.2rem, 12vw, 3.25rem);
  }

  .contact-hero__actions,
  .form-grid {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .home-hero {
    min-height: 100svh;
    height: 100svh;
    align-items: center;
    padding: 0 1rem;
    position: sticky;
    top: 0;
  }

  .home-hero__content {
    align-self: center;
    display: block;
    height: 100%;
  }

  .home-hero h1 {
    position: absolute;
    top: 50%;
    left: 0;
    align-self: auto;
    width: 100%;
    max-width: 100%;
    font-size: clamp(1.65rem, 10vw, 2.5rem);
    overflow-wrap: anywhere;
    text-align: center;
    transform: translateY(calc(-50% + var(--hero-title-shift, 0px)));
  }

  .home-hero__dynamic {
    display: grid;
    width: 100%;
    height: 2.4em;
    align-items: center;
    justify-items: center;
    text-align: center;
  }

  .home-hero__title-accent,
  .home-hero__title-for {
    display: block;
  }

  .home-hero__title-line {
    display: block;
  }

  .home-hero__details {
    position: absolute;
    top: calc(50% + 3.5rem);
    left: 0;
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
  }

  .home-hero__details > p,
  .home-hero__actions,
  .home-hero__facts {
    opacity: var(--hero-details-opacity, 0);
  }

  .home-hero__actions {
    flex-direction: column;
  }

  .home-hero__facts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .home-hero__facts div + div {
    border-left: 0;
  }

  .home-hero__facts div {
    display: flex;
    min-width: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 0.35rem;
  }

  .home-hero__facts dt,
  .home-hero__facts dd {
    display: none;
  }

  .home-hero__fact-icon {
    display: block;
    width: 1.35rem;
    height: 1.35rem;
    margin-bottom: 0.4rem;
    color: #f678ff;
  }

  .home-hero__fact-mobile {
    display: block;
    color: #fff;
    font-size: 0.62rem;
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
    text-transform: uppercase;
  }

  .home-video {
    height: 70svh;
    min-height: 0;
    max-height: none;
  }

  .home-video__player {
    top: 50%;
    left: 50%;
    width: max(100%, 177.78svh);
    height: max(100%, 56.25vw);
    min-height: 0;
    transform: translate(-50%, -50%);
  }

  .home-video-follow-image {
    width: 100%;
    height: 56.25vw;
    object-fit: cover;
  }

  .home-section,
  .home-section--muted,
  .home-cta {
    width: min(100% - 2rem, var(--container));
    padding-block: 4rem;
  }

  .home-section--muted {
    padding-inline: 1rem;
  }

  .cta-line {
    flex-direction: column;
    justify-content: center;
    min-height: 10rem;
    padding: 1.5rem 1rem;
    text-align: center;
  }

  .section-header h2,
  .agency-panel h2,
  .home-cta h2 {
    font-size: clamp(1.9rem, 10vw, 2.7rem);
  }

  .agency-list {
    grid-template-columns: 1fr;
  }

  .mobile-quote-button {
    display: flex;
  }

  .mobile-quote-button:not(.is-scroll-ready) {
    display: none;
  }

  .site-footer__nav {
    grid-template-columns: 1fr;
  }

  .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 767px) {
  .home-hero-stage {
    height: calc(100svh + var(--hero-lock-distance, 0px));
  }

  .callback-widget {
    display: none;
    width: min(22rem, calc(100vw - 2rem));
  }

  .callback-widget.is-centered {
    display: block;
  }

  .callback-widget__panel {
    height: auto;
    min-height: 0;
    max-height: calc(100vh - 2rem);
  }

  .mobile-quote-button {
    display: flex;
  }
}

@media (max-width: 520px) {
  .qr-page {
    min-height: calc(100vh - 7rem);
    padding: 4.5rem 0.75rem 2rem;
  }

  .qr-page__brand {
    top: 1.25rem;
    left: 1rem;
  }

  .qr-card {
    padding: 1.5rem 1rem;
    border-radius: 1.15rem;
  }

  .qr-card h1 {
    font-size: 1.85rem;
  }

  .qr-action {
    grid-template-columns: 2.4rem 1fr auto;
    gap: 0.65rem;
    min-height: 4rem;
    padding: 0.65rem;
  }

  .qr-action__icon {
    width: 2.4rem;
    height: 2.4rem;
  }

  .qr-action strong {
    font-size: 0.78rem;
  }

  .qr-action small {
    font-size: 0.62rem;
  }

  .footer-social-bar {
    flex-wrap: wrap;
    gap: 0.6rem;
    font-size: 0.72rem;
  }

  .affiliate-page__grid {
    grid-template-columns: 1fr;
  }
}

/* Must follow .ai-flow: its shorthand margin otherwise resets the centred layout. */
.ai-flow.visio-flow {
  width: min(100%, 54rem);
  margin: 2.5rem auto 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  justify-content: center;
}

.ai-flow.visio-flow li {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

@media (max-width: 800px) {
  .ai-flow.visio-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Persistent language switcher shared by the French and English trees. */
.language-switcher {
  position: fixed;
  z-index: 1200;
  left: max(1rem, env(safe-area-inset-left));
  bottom: max(1rem, env(safe-area-inset-bottom));
}

.language-switcher__link {
  display: inline-flex;
  align-items: center;
  gap: .42rem;
  min-height: 2.65rem;
  padding: .45rem .72rem;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px;
  background: #111827;
  color: #fff;
  box-shadow: 0 .45rem 1.2rem rgba(15,23,42,.28);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-decoration: none;
  transition: transform .2s ease, background-color .2s ease;
}

.language-switcher__link:hover,
.language-switcher__link:focus-visible {
  background: #1f2937;
  transform: translateY(-2px);
}

.language-switcher__flag {
  font-size: 1.15rem;
  line-height: 1;
}

@media (max-width: 640px) {
  .language-switcher {
    left: max(.75rem, env(safe-area-inset-left));
    bottom: max(.75rem, env(safe-area-inset-bottom));
  }
}
