:root {
  color-scheme: dark;
  --bg-0: #08111d;
  --bg-1: #0d1727;
  --bg-2: #111f34;
  --surface: rgba(11, 18, 29, 0.74);
  --surface-strong: rgba(15, 24, 39, 0.76);
  --border: rgba(255, 255, 255, 0.09);
  --border-strong: rgba(255, 255, 255, 0.16);
  --text: rgba(248, 250, 255, 0.98);
  --muted: rgba(210, 219, 235, 0.8);
  --accent: #f7c46c;
  --accent-2: #8ad9ff;
  --accent-3: #ff9a6d;
  --shadow: 0 30px 100px rgba(0, 0, 0, 0.46);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  min-height: 100vh;
  min-height: 100svh;
  color: var(--text);
  font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background:
    radial-gradient(circle at 15% 12%, rgba(247, 196, 108, 0.17), transparent 25%),
    radial-gradient(circle at 85% 22%, rgba(138, 217, 255, 0.14), transparent 23%),
    radial-gradient(circle at 75% 88%, rgba(255, 154, 109, 0.12), transparent 24%),
    linear-gradient(160deg, var(--bg-0), var(--bg-1) 46%, var(--bg-2));
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
}

body::before {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at center, black 40%, transparent 92%);
  -webkit-mask-image: radial-gradient(circle at center, black 40%, transparent 92%);
  opacity: 0.55;
}

body::after {
  background:
    radial-gradient(circle at 22% 20%, rgba(247, 196, 108, 0.12), transparent 32%),
    radial-gradient(circle at 78% 72%, rgba(138, 217, 255, 0.1), transparent 30%);
  filter: blur(20px);
  opacity: 0.8;
}

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

[hidden] {
  display: none !important;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.page {
  position: relative;
  z-index: 1;
  width: min(1220px, 100%);
  margin: 0 auto;
  padding: 22px clamp(16px, 4vw, 34px) 34px;
  display: grid;
  gap: 20px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--surface-strong);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1220px, 100%);
  margin: 0 auto;
  padding: 12px clamp(16px, 4vw, 34px);
  gap: 18px;
}

.topbar__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  /* On desktop it shrinks to fit its content */
}

.topbar__actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.topbar__buttons {
  display: flex;
  align-items: center;
  gap: 14px;
}

.topbar__toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--text);
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
}

.topbar__toggle:hover {
  background: rgba(255, 255, 255, 0.1);
}

.topbar__toggle::after {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background-color: currentColor;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='3' y1='12' x2='21' y2='12'/%3E%3Cline x1='3' y1='6' x2='21' y2='6'/%3E%3Cline x1='3' y1='18' x2='21' y2='18'/%3E%3C/svg%3E") no-repeat center / contain;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='3' y1='12' x2='21' y2='12'/%3E%3Cline x1='3' y1='6' x2='21' y2='6'/%3E%3Cline x1='3' y1='18' x2='21' y2='18'/%3E%3C/svg%3E") no-repeat center / contain;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand__mark {
  width: 54px;
  height: 54px;
  flex: none;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.28);
}

.brand__copy {
  display: grid;
  gap: 2px;
}

.brand__copy strong {
  font-size: 1rem;
  letter-spacing: 0.01em;
}

.brand__copy span {
  font-size: 0.9rem;
  color: var(--muted);
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

.language-switcher__label {
  color: var(--muted);
  font-size: 0.92rem;
  white-space: nowrap;
}

.language-switcher__select {
  min-width: 190px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(247, 196, 108, 0.2);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font: inherit;
  cursor: pointer;
  outline: none;
  transition:
    border-color 220ms ease,
    background-color 220ms ease,
    transform 240ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

.language-switcher__select:hover,
.language-switcher__select:focus {
  border-color: rgba(247, 196, 108, 0.45);
  background: rgba(255, 255, 255, 0.06);
}

.language-switcher__select:focus {
  transform: translateY(-1px);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  padding: 0 28px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition:
    transform 240ms cubic-bezier(0.34, 1.56, 0.64, 1),
    border-color 220ms ease,
    background 220ms ease,
    color 220ms ease,
    box-shadow 280ms ease;
}

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

.button:active {
  transform: translateY(0) scale(0.97);
  transition-duration: 80ms;
}

.button--ghost {
  color: var(--text);
  border-color: rgba(247, 196, 108, 0.18);
  background:
    linear-gradient(135deg, rgba(247, 196, 108, 0.06), rgba(138, 217, 255, 0.04) 60%, rgba(255, 154, 109, 0.03));
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.button--ghost::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(247, 196, 108, 0.12), rgba(138, 217, 255, 0.08));
  opacity: 0;
  transition: opacity 260ms ease;
}

.button--ghost:hover {
  border-color: rgba(247, 196, 108, 0.32);
  box-shadow:
    0 4px 20px rgba(247, 196, 108, 0.1),
    0 1px 3px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.button--ghost:hover::before {
  opacity: 1;
}

.button--top {
  width: 50px;
  min-height: 50px;
  padding: 0;
  border-radius: 14px;
  color: var(--accent);
  border-color: rgba(247, 196, 108, 0.22);
  background: rgba(247, 196, 108, 0.06);
  box-shadow:
    0 0 0 0 rgba(247, 196, 108, 0),
    0 1px 2px rgba(0, 0, 0, 0.2);
}

.button--top::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg,
      transparent 30%,
      rgba(247, 196, 108, 0.12) 50%,
      transparent 70%);
  background-size: 250% 250%;
  background-position: 100% 100%;
  opacity: 0;
  transition: opacity 300ms ease, background-position 600ms ease;
}

.button--top:hover {
  color: #fff;
  border-color: rgba(247, 196, 108, 0.45);
  background: rgba(247, 196, 108, 0.12);
  box-shadow:
    0 0 18px rgba(247, 196, 108, 0.18),
    0 4px 14px rgba(0, 0, 0, 0.22);
}

.button--top:hover::before {
  opacity: 1;
  background-position: 0% 0%;
}

.button--top::after {
  content: "";
  display: block;
  width: 22px;
  height: 22px;
  background-color: currentColor;
  flex-shrink: 0;
  transition: transform 280ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

.button--top:hover::after {
  transform: scale(1.12);
}

.button--faq::after {
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='22' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9' /%3E%3Cpath d='M9.5 9a2.5 2.5 0 1 1 4.4 1.6c-.7.7-1.4 1.2-1.4 2' /%3E%3Cpath d='M12 17h.01' /%3E%3C/svg%3E") no-repeat center / contain;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='22' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9' /%3E%3Cpath d='M9.5 9a2.5 2.5 0 1 1 4.4 1.6c-.7.7-1.4 1.2-1.4 2' /%3E%3Cpath d='M12 17h.01' /%3E%3C/svg%3E") no-repeat center / contain;
}

.button--qr::after {
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='22' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='2' y='2' width='8' height='8' rx='1' /%3E%3Crect x='14' y='2' width='8' height='8' rx='1' /%3E%3Crect x='2' y='14' width='8' height='8' rx='1' /%3E%3Crect x='5' y='5' width='2' height='2' /%3E%3Crect x='17' y='5' width='2' height='2' /%3E%3Crect x='5' y='17' width='2' height='2' /%3E%3Cpath d='M14 14h2v2h-2z' /%3E%3Cpath d='M20 14h2v2h-2z' /%3E%3Cpath d='M14 20h2v2h-2z' /%3E%3Cpath d='M20 20h2v2h-2z' /%3E%3Cpath d='M18 14h0' /%3E%3Cpath d='M14 18h0' /%3E%3Cpath d='M18 18h0' /%3E%3C/svg%3E") no-repeat center / contain;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='22' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='2' y='2' width='8' height='8' rx='1' /%3E%3Crect x='14' y='2' width='8' height='8' rx='1' /%3E%3Crect x='2' y='14' width='8' height='8' rx='1' /%3E%3Crect x='5' y='5' width='2' height='2' /%3E%3Crect x='17' y='5' width='2' height='2' /%3E%3Crect x='5' y='17' width='2' height='2' /%3E%3Cpath d='M14 14h2v2h-2z' /%3E%3Cpath d='M20 14h2v2h-2z' /%3E%3Cpath d='M14 20h2v2h-2z' /%3E%3Cpath d='M20 20h2v2h-2z' /%3E%3Cpath d='M18 14h0' /%3E%3Cpath d='M14 18h0' /%3E%3Cpath d='M18 18h0' /%3E%3C/svg%3E") no-repeat center / contain;
}

.button--contacts::after {
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='22' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='4' /%3E%3Cpath d='M16 12a4 4 0 1 1-2.5-3.7' /%3E%3Cpath d='M16 8v6a2 2 0 0 0 4 0v-2a8 8 0 1 0-8 8' /%3E%3C/svg%3E") no-repeat center / contain;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='22' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='4' /%3E%3Cpath d='M16 12a4 4 0 1 1-2.5-3.7' /%3E%3Cpath d='M16 8v6a2 2 0 0 0 4 0v-2a8 8 0 1 0-8 8' /%3E%3C/svg%3E") no-repeat center / contain;
}

.hero,
.content-grid {
  display: grid;
  gap: 20px;
}

.hero {
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  align-items: stretch;
}

.hero,
.panel {
  position: relative;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 24%),
    linear-gradient(180deg, rgba(8, 13, 24, 0.92), rgba(12, 19, 32, 0.78));
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.hero__copy {
  overflow: hidden;
  padding: clamp(24px, 4vw, 40px);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -18% -28% auto;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(247, 196, 108, 0.2), transparent 70%);
  filter: blur(4px);
  pointer-events: none;
}

.eyebrow {
  margin: 0 0 14px;
  letter-spacing: 0.18em;
  font-size: 1rem;
  color: var(--accent);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: -0.04em;
}

h1 {
  max-width: 10ch;
  font-size: clamp(3.1rem, 7.8vw, 5.9rem);
  line-height: 0.88;
}

h2 {
  font-size: clamp(1.55rem, 2.8vw, 2.2rem);
  line-height: 1.02;
}

h3 {
  font-size: 1.08rem;
  line-height: 1.45;
}

.hero__subtitle {
  margin: 18px 0 0;
  max-width: 38rem;
  font-size: clamp(1.08rem, 1.6vw, 1.22rem);
  line-height: 1.65;
  color: rgba(245, 247, 255, 0.92);
}

.hero__lead {
  margin: 18px 0 0;
  max-width: 40rem;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--muted);
}

.tag-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.hero__quote {
  margin: 28px 0 0;
  padding: 18px 18px 18px 20px;
  border-left: 3px solid rgba(247, 196, 108, 0.85);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
}

.hero__quote p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(240, 244, 252, 0.9);
}

.quoting-robot {
  position: relative;
  width: min(100%, 640px);
  justify-self: center;
  perspective: 1100px;
}

.quoting-robot__stage {
  position: relative;
  aspect-ratio: 1 / 1;
  width: 100%;
  perspective: 1100px;
  transform-style: preserve-3d;
  filter: drop-shadow(0 26px 35px rgba(0, 0, 0, 0.28));
}

.quoting-robot__layer {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
  pointer-events: none;
}

.quoting-robot__layer--body {
  z-index: 1;
}

.quoting-robot__layer--head {
  z-index: 2;
  transform-origin: 50% 56%;
  will-change: transform;
  isolation: isolate;
  --head-tilt-x: 0deg;
  --head-tilt-y: 0deg;
  --head-shift-x: 0px;
  --head-shift-y: 0px;
  --head-scale: 1;
  --head-glow-x: 0%;
  --head-glow-y: 0%;
  --head-shadow: 0.22;
}

.quoting-robot__image {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  user-select: none;
  pointer-events: none;
  -webkit-user-drag: none;
  transform: translateZ(0);
  will-change: transform;
}

.quoting-robot__layer--head {
  transform:
    translate3d(var(--head-shift-x), var(--head-shift-y), 0) rotateX(var(--head-tilt-x)) rotateY(var(--head-tilt-y)) scale3d(var(--head-scale), var(--head-scale), 1);
}

.quoting-robot__layer--head::before,
.quoting-robot__layer--head::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  -webkit-mask-image: url("./assets/images/head.png");
  mask-image: url("./assets/images/head.png");
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}

.quoting-robot__layer--head .quoting-robot__image {
  z-index: 0;
  filter: saturate(1.06) contrast(1.03);
}

.quoting-robot__eye {
  position: absolute;
  z-index: 2;
  border-radius: 50%;
  overflow: hidden;
  transform: translate(-50%, -50%) translateZ(0);
  background:
    radial-gradient(circle at 36% 34%, rgba(147, 243, 255, 0.98) 0 10%, rgba(62, 200, 255, 0.9) 18%, rgba(26, 111, 230, 0.94) 40%, rgba(10, 58, 150, 0.98) 67%, rgba(6, 22, 61, 1) 100%);
  border: 2px solid rgba(176, 245, 255, 0.78);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.14),
    inset 0 -12px 18px rgba(0, 0, 0, 0.18),
    0 0 16px rgba(57, 202, 255, 0.34);
  will-change: transform, opacity;
}

.quoting-robot__pupil {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 44%;
  height: 44%;
  border-radius: 50%;
  transform: translate3d(-50%, -50%, 0);
  background:
    radial-gradient(circle at 35% 35%, rgba(144, 247, 255, 0.95) 0 13%, rgba(40, 214, 255, 0.88) 20%, rgba(23, 113, 228, 0.94) 52%, rgba(7, 32, 88, 1) 100%);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    0 0 10px rgba(28, 173, 255, 0.46);
  will-change: transform;
}

.quoting-robot__glint {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18%;
  height: 18%;
  border-radius: 50%;
  background: rgba(235, 252, 255, 0.96);
  filter: blur(0.5px);
  opacity: 0.96;
  transform: translate3d(-50%, -50%, 0);
}

.quoting-robot__lid {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  transform: scaleY(var(--blink-scale, 0));
  transform-origin: center;
  background:
    linear-gradient(180deg, rgba(206, 236, 252, 0.98), rgba(166, 215, 247, 0.98));
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.45),
    inset 0 -6px 10px rgba(48, 99, 131, 0.2);
}

.promo-card--note {
  display: grid;
  gap: 10px;
  color: rgba(242, 245, 251, 0.9);
}

.promo-card--note p {
  margin: 0;
  line-height: 1.7;
  color: var(--muted);
}

.contacts {
  padding: 12px 0 4px;
}

.contacts .container {
  width: 100%;
  margin: 0 auto;
}

.contacts h2 {
  margin-bottom: 18px;
}

/* Contacts Form */
.contact-form {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
  margin: 0 auto;
  padding: 30px;
  border-radius: 20px;
  border: 1px solid var(--border);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 24%),
    rgba(11, 18, 29, 0.84);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.contact-form input,
.contact-form textarea {
  width: min(100%, 900px);
  padding: 15px;
  margin-bottom: 30px;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-family: inherit;
  background: rgba(255, 255, 255, 0.04);
  transition: border-color 0.3s ease, background-color 0.3s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--muted);
  opacity: 0.8;
}

.contact-form textarea {
  resize: vertical;
  min-height: 200px;
  max-height: 500px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.06);
}

.contact-form .consent-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 24px;
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.5;
}

.contact-form .consent-row input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin: 4px 0 0;
  flex: 0 0 auto;
  accent-color: var(--accent);
}

.contact-form .consent-row a {
  color: var(--accent);
  text-decoration: underline;
}

.contact-form button[type="submit"] {
  width: min(100%, 900px);
  padding: 15px;
  background: var(--accent);
  color: #000;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition:
    transform 240ms cubic-bezier(0.34, 1.56, 0.64, 1),
    background-color 220ms ease,
    box-shadow 280ms ease,
    opacity 220ms ease;
}

.contact-form button[type="submit"]:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.contact-form button[type="submit"]:not(:disabled):hover {
  background: #ffe4a6;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(247, 196, 108, 0.3);
}

/* Privacy Modal */
.privacy-modal {
  position: fixed;
  inset: 72px 0 0 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  padding: 24px;
}

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

.privacy-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.privacy-modal__dialog {
  position: relative;
  display: flex;
  flex-direction: column;
  width: min(820px, 100%);
  height: 100%;
  max-height: 100%;
  overflow: hidden;
  padding: 30px;
  border: 1px solid rgba(247, 196, 108, 0.18);
  border-radius: 28px;
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 24%),
    rgba(11, 18, 29, 0.94);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.48);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.privacy-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}

.privacy-modal__header h2 {
  margin: 0;
  font-size: clamp(1.4rem, 2.1vw, 2rem);
  line-height: 1.15;
}

.privacy-modal__close {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
  transition:
    transform 240ms cubic-bezier(0.34, 1.56, 0.64, 1),
    border-color 220ms ease,
    color 220ms ease,
    background-color 220ms ease;
}

.privacy-modal__close:hover {
  transform: translateY(-1px);
  border-color: rgba(247, 196, 108, 0.45);
  color: var(--accent);
}

.privacy-modal__body {
  flex: 1 1 auto;
  min-height: 0;
  overflow: hidden;
  color: var(--muted);
}

.privacy-modal__frame {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 0 8px 8px 0;
  background: transparent;
}

.privacy-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.privacy-modal__accept,
.privacy-modal__cancel,
.privacy-modal__doc-button {
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 12px;
  font: inherit;
  font-weight: 700;
  font-size: 0.98rem;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition:
    transform 240ms cubic-bezier(0.34, 1.56, 0.64, 1),
    border-color 220ms ease,
    background-color 220ms ease,
    color 220ms ease,
    opacity 220ms ease;
}

.privacy-modal__accept {
  background: var(--accent);
  color: #000;
}

.privacy-modal__accept:hover {
  background: #ffe4a6;
  transform: translateY(-1px);
}

.privacy-modal__doc-button,
.privacy-modal__cancel {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  border-color: var(--border);
}

.privacy-modal__doc-button:hover,
.privacy-modal__cancel:hover {
  transform: translateY(-1px);
  border-color: rgba(247, 196, 108, 0.38);
  color: var(--accent);
}

.privacy-modal-open {
  overflow: hidden;
}

@media (max-width: 640px) {
  .privacy-modal {
    padding: 14px;
  }

  .privacy-modal__dialog {
    padding: 22px;
    border-radius: 20px;
    height: 100%;
    max-height: 100%;
  }

  .privacy-modal__actions {
    flex-direction: column;
  }

  .privacy-modal__accept,
  .privacy-modal__cancel,
  .privacy-modal__doc-button {
    width: 100%;
  }
}

.qr-selector {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
}

.qr-selector label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(245, 247, 255, 0.9);
  cursor: pointer;
}

.qr-selector input {
  accent-color: var(--accent);
}

.toggle-stack {
  display: grid;
  gap: 18px;
}

.promo-card__videoLink {
  position: relative;
  display: block;
  max-width: 350px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #050913;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.qrcode {
  position: relative;
  display: block;
  max-width: 350px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.promo-card__video {
  width: 100%;
  height: auto;
}

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

.panel {
  grid-column: span 6;
  padding: clamp(20px, 3vw, 28px);
}

.panel--wide {
  grid-column: span 12;
}

.section-heading {
  display: grid;
  gap: 4px;
  margin-bottom: 18px;
}

.section-heading .eyebrow {
  margin-bottom: 0;
}

.panel__body {
  display: grid;
  gap: 18px;
}

.prose {
  line-height: 1.78;
  color: var(--muted);
}

.prose p {
  margin: 0;
}

.feature-list {
  list-style: none;
  margin: 4px 0 2px;
  padding: 0;
  display: grid;
  gap: 0;
}

.feature-list li {
  position: relative;
  padding: 14px 18px 14px 32px;
  font-size: 1.08rem;
  line-height: 1.5;
  color: rgba(249, 250, 255, 0.96);
  border-bottom: 1px solid var(--border);
  transition: background-color 260ms ease, padding-left 260ms ease;
}

.feature-list li:last-child {
  border-bottom: none;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px rgba(247, 196, 108, 0.4);
}

.feature-list li:hover {
  background: rgba(255, 255, 255, 0.03);
  padding-left: 36px;
}

.updates {
  color: var(--muted);
  line-height: 1.78;
}

.updates p {
  margin: 0;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
  overflow: hidden;
}

.faq-item[open] {
  border-color: rgba(247, 196, 108, 0.22);
  background: rgba(255, 255, 255, 0.045);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 20px;
  font-size: 1.02rem;
  line-height: 1.5;
  font-weight: 600;
  color: rgba(249, 250, 255, 0.96);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--accent);
  font-weight: 700;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin: 0;
  padding: 0 20px 18px;
  color: var(--muted);
  line-height: 1.75;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 4px 2px 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.footer p {
  margin: 0;
}

html.js [data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  filter: blur(8px);
  transition:
    opacity 700ms ease,
    transform 700ms ease,
    filter 700ms ease;
}

html.js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

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

  .panel {
    grid-column: span 12;
  }
}

@media (max-width: 720px) {
  .page {
    padding: 14px 14px 24px;
  }

  .topbar,
  .footer {
    flex-direction: column;
    align-items: stretch;
  }

  .topbar__inner {
    padding: 12px 14px;
    flex-direction: column;
    align-items: stretch;
  }

  .topbar__header {
    width: 100%;
  }

  .topbar__toggle {
    display: block;
  }

  .topbar__actions {
    display: none;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    margin-top: 14px;
    gap: 14px;
  }

  .topbar__buttons {
    justify-content: center;
  }

  .topbar__actions.is-open {
    display: flex;
  }

  .language-switcher {
    margin-left: 0;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .language-switcher__select {
    width: 100%;
  }

  .hero__actions {
    width: 100%;
  }

  .button {
    width: 100%;
  }

  .brand {
    width: 100%;
  }

  .brand__copy span {
    white-space: normal;
  }

}

@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;
    scroll-behavior: auto !important;
  }

  html.js [data-reveal] {
    opacity: 1;
    transform: none;
    filter: none;
  }

  .quoting-robot__layer--head {
    transform: translate3d(0, 0, 0) rotateX(0deg) rotateY(0deg) scale3d(1, 1, 1);
  }
}