@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);
}

.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__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;
  align-self: end;
  width: min(100%, var(--container));
  margin-inline: auto;
}

.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);
  line-height: 0.98;
  letter-spacing: 0;
}

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

.home-hero__content > 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;
  gap: 0.85rem;
  margin-top: 2rem;
}

.home-hero__facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  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);
}

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

.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);
}

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

.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: 0;
  text-align: left;
}

.section-header .section-kicker {
  margin: 0 0 0.9rem;
  color: var(--color-brand);
  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);
  line-height: 1.04;
  letter-spacing: 0;
}

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

.solution-tabs {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.25rem;
  margin-top: 3rem;
}

.solution-tabs__list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.solution-tab {
  padding: 1.2rem;
  border: 0;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.025);
  color: var(--color-muted);
  cursor: pointer;
  text-align: left;
  transition:
    background-color 0.2s ease,
    color 0.2s ease;
}

.solution-tab span {
  display: block;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 900;
}

.solution-tab small {
  display: block;
  margin-top: 0.35rem;
  line-height: 1.45;
}

.solution-tab[aria-selected="true"] {
  background: rgba(225, 42, 251, 0.12);
  color: var(--color-muted-strong);
}

.solution-tabs__panels,
.solution-panel {
  min-height: 100%;
}

.solution-panel {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  padding: clamp(1.5rem, 4vw, 2.4rem);
  border: 0;
  border-radius: 0.625rem;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025));
  box-shadow: var(--shadow-panel);
}

.solution-panel__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-panel__icon svg,
.benefit-card svg,
.service-card svg {
  width: 1.45rem;
  height: 1.45rem;
}

.solution-panel h3 {
  margin: 0;
  font-size: clamp(1.45rem, 3vw, 2.1rem);
  line-height: 1.1;
}

.solution-panel p:not(.eyebrow) {
  margin: 1rem 0 1.5rem;
  color: var(--color-muted-strong);
  line-height: 1.7;
}

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

.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 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-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: var(--color-brand-soft);
  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: 1rem;
  bottom: 1rem;
  left: 1rem;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1rem;
  border-radius: 0.45rem;
  background: #fff;
  color: #050505;
  font-weight: 900;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.32);
  transform: translateY(140%);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.mobile-quote-button.is-visible {
  transform: translateY(0);
}

.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;
}

.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);
  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;
}

.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__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;
  }

  .solution-tabs__list {
    flex-direction: row;
    overflow-x: auto;
    padding-bottom: 0.35rem;
  }

  .solution-tab {
    min-width: 15rem;
  }

  .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 {
    padding: 7rem 1rem 4rem;
  }

  .home-hero h1 {
    font-size: clamp(2.3rem, 14vw, 3.5rem);
  }

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

  .home-hero__facts {
    grid-template-columns: 1fr;
  }

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

  .home-video {
    height: calc(100vw * 0.5625);
    min-height: 0;
    max-height: none;
  }

  .home-video__player {
    top: 0;
    height: 100%;
    min-height: 0;
    transform: none;
  }

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

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

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

  .solution-panel {
    grid-template-columns: 1fr;
  }

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

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

  .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;
  }
}
