:root {
  --bg: #f7f9fc;
  --surface: #fff;
  --surface-soft: #f3f6fb;
  --ink: #081b36;
  --text: #18314f;
  --muted: #64758a;
  --line: #dfe8f2;
  --blue: #0b74d1;
  --blue-dark: #0c2f5e;
  --red: #e3182c;
  --red-dark: #bd1021;
  --green: #19a658;
  --shadow: 0 24px 60px #081b3614;
  --shadow-soft: 0 14px 32px #081b360f;
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  color: var(--ink);
  background: var(--bg);
  --font-family-base:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-family: var(--font-family-base);
  --color-heading: #081b36;
  --color-text: #18314f;
  --color-text-muted: #64758a;
  --color-lead: #51657c;
  --font-size-h1: clamp(36px, 4vw, 56px);
  --font-weight-h1: 850;
  --line-height-h1: 1.04;
  --letter-spacing-h1: -0.045em;
  --font-size-h2: clamp(28px, 2.6vw, 38px);
  --font-weight-h2: 820;
  --line-height-h2: 1.12;
  --letter-spacing-h2: -0.032em;
  --font-size-h3: 19px;
  --font-weight-h3: 800;
  --line-height-h3: 1.25;
  --letter-spacing-h3: -0.018em;
  --font-size-card-body: 14px;
  --line-height-card-body: 1.58;
  --font-size-body: 15.5px;
  --font-weight-body: 400;
  --line-height-body: 1.66;
  --font-size-lead: clamp(16px, 1.35vw, 18px);
  --line-height-lead: 1.62;
  --section-padding-y: 72px;
  --section-padding-y-mobile: 52px;
  --hero-padding-top: 62px;
  --hero-padding-bottom: 72px;
  --hero-padding-top-mobile: 36px;
  --hero-padding-bottom-mobile: 52px;
  --section-header-gap: 32px;
  --section-header-gap-mobile: 22px;
  --heading-text-gap: 12px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background:
    radial-gradient(circle at 84% 6%, #0b74d11a, #0000 24%),
    radial-gradient(circle at 8% 18%, #e3182c0e, #0000 24%),
    linear-gradient(#fff 0%, #f7fbff 42%, #fff 100%);
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
}

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

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

p {
  margin: 0;
}

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(1160px, 100% - 44px);
  margin: 0 auto;
}

.siteHeader {
  z-index: 20;
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  background: #ffffffe6;
  border-bottom: 1px solid #dfe8f2e6;
  position: sticky;
  top: 0;
}

.headerInner {
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  min-height: 64px;
  display: flex;
}

.logo {
  align-items: center;
  min-width: 138px;
  display: inline-flex;
}

.logo img {
  width: 200px;
  padding: 5px;
  height: auto;
}

.logoFallback {
  color: var(--ink);
  font-size: 23px;
  font-weight: 900;
  display: none;
}

.logo img[hidden] + .logoFallback {
  display: inline;
}

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

.languageSelectWrap {
  z-index: 80;
  align-items: center;
  display: inline-flex;
  position: relative;
}

.languageSelectButton {
  color: #17365d;
  cursor: pointer;
  background: #fffffff0;
  border: 1px solid #d7e3ef;
  border-radius: 12px;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 12px;
  font-size: 13px;
  font-weight: 850;
  display: inline-flex;
  box-shadow: 0 8px 20px #081b360b;
}

.languageSelectButton svg {
  color: #6a7c91;
}

.languageFlagImg {
  object-fit: cover;
  border-radius: 2px;
  flex: none;
  width: 20px;
  height: 14px;
  box-shadow: 0 0 0 1px #102b4d14;
}

.languageMenu {
  background: #fffffffa;
  border: 1px solid #d7e3ef;
  border-radius: 16px;
  width: 230px;
  max-height: min(360px, 100vh - 120px);
  padding: 8px;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  overflow: auto;
  box-shadow: 0 22px 48px #081b3629;
}

.languageOption {
  color: #17365d;
  text-align: left;
  cursor: pointer;
  background: 0 0;
  border: 0;
  border-radius: 11px;
  align-items: center;
  gap: 10px;
  width: 100%;
  min-height: 40px;
  padding: 0 10px;
  font-size: 13px;
  font-weight: 760;
  display: flex;
}

.languageOption:hover,
.languageOption.isActive {
  background: #eef6ff;
}

html[dir="rtl"] body {
  direction: rtl;
}

html[dir="rtl"] .languageSelectWrap,
html[dir="rtl"] .languageSelectButton,
html[dir="rtl"] .languageMenu,
html[dir="rtl"] .languageOption,
html[dir="rtl"] .phoneShell,
html[dir="rtl"] .productPreview {
  direction: ltr;
}

.headerNote {
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.btn {
  letter-spacing: -0.01em;
  white-space: nowrap;
  border: 1px solid #0000;
  border-radius: 13px;
  justify-content: center;
  align-items: center;
  gap: 9px;
  min-height: 48px;
  padding: 0 20px;
  font-weight: 800;
  transition:
    transform 0.16s,
    box-shadow 0.16s,
    border-color 0.16s,
    background 0.16s;
  display: inline-flex;
}

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

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--red), #f04455);
  box-shadow: 0 14px 26px #e3182c38;
}

.btn-primary:hover {
  box-shadow: 0 17px 30px #e3182c47;
}

.btn-secondary {
  color: #0b2f5e;
  background: #fff;
  border-color: #cbd8e8;
  box-shadow: 0 8px 20px #081b360e;
}

.btn-secondary:hover {
  border-color: #adc3db;
  box-shadow: 0 12px 26px #081b3613;
}

.btnSmall {
  border-radius: 12px;
  min-height: 42px;
  padding: 0 17px;
  font-size: 14px;
}

.heroSection,
.seoHero,
.pollHero {
  padding: var(--hero-padding-top) 0 var(--hero-padding-bottom);
}

:where(.heroSection) {
  position: relative;
  overflow: hidden;
}

.heroBg {
  pointer-events: none;
  border-radius: 999px;
  position: absolute;
}

.heroBgOne {
  filter: blur(2px);
  background: #0b74d114;
  width: 440px;
  height: 440px;
  top: 74px;
  right: -180px;
}

.heroBgTwo {
  filter: blur(2px);
  background: #e3182c0b;
  width: 300px;
  height: 300px;
  bottom: 42px;
  left: -180px;
}

.heroGrid {
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.72fr);
  align-items: center;
  gap: 66px;
  display: grid;
  position: relative;
}

.heroCopy {
  max-width: 650px;
}

.eyebrow {
  color: #21466f;
  background: #ffffffb8;
  border: 1px solid #d8e7f7;
  border-radius: 999px;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-bottom: 18px;
  padding: 8px 13px;
  font-size: 13px;
  font-weight: 800;
  display: inline-flex;
}

h1,
.seoPage h1,
.pollHeroCopy h1 {
  margin: 0;
  color: var(--color-heading);
  font-size: var(--font-size-h1);
  font-weight: var(--font-weight-h1);
  line-height: var(--line-height-h1);
  letter-spacing: var(--letter-spacing-h1);
}

.heroCopy h1 {
  max-width: 680px;
}

.heroLead,
.seoLead,
.pollHeroLead {
  margin-top: 20px;
  color: var(--color-lead);
  font-size: var(--font-size-lead);
  font-weight: var(--font-weight-body);
  line-height: var(--line-height-lead);
  max-width: 600px;
}

.heroActions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
  display: flex;
}

.heroProof {
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 30px;
  display: grid;
}

.proofItem {
  min-height: 94px;
  box-shadow: var(--shadow-soft);
  background: #ffffffc2;
  border: 1px solid #e0eaf5;
  border-radius: 16px;
  padding: 15px;
}

.proofItem svg {
  color: var(--blue);
  margin-bottom: 8px;
}

.proofItem strong {
  font-size: 14px;
  line-height: 1.2;
  display: block;
}

.proofItem span {
  color: var(--muted);
  margin-top: 5px;
  font-size: 12.5px;
  line-height: 1.38;
  display: block;
}

.productPreview {
  place-items: center;
  min-height: 548px;
  display: grid;
  position: relative;
}

.previewGlow {
  background: radial-gradient(circle, #0b74d124, #0b74d10a 54%, #0000 76%);
  border-radius: 50%;
  width: 430px;
  height: 430px;
  position: absolute;
}

.phoneShell {
  z-index: 2;
  background: linear-gradient(#0a1f3d 0%, #0d2a51 58%, #123868 100%);
  border: 1px solid #ffffff14;
  border-radius: 38px;
  width: 286px;
  min-height: 548px;
  padding: 12px;
  position: relative;
  box-shadow:
    0 32px 80px #081b3638,
    inset 0 1px #ffffff14;
}

.phoneTop {
  z-index: 4;
  background: #071527;
  border-radius: 0 0 14px 14px;
  width: 84px;
  height: 21px;
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translate(-50%);
}

.phoneBezel {
  pointer-events: none;
  border: 1px solid #ffffff0f;
  border-radius: 32px;
  position: absolute;
  inset: 8px;
}

.phoneScreen {
  background:
    linear-gradient(#fffffff0, #f6fafff5),
    linear-gradient(#eef6ff, #dceefd 64%, #eef6ff);
  border-radius: 28px;
  min-height: 524px;
  padding: 34px 14px 14px;
  position: relative;
  overflow: hidden;
}

.phoneScreen:before {
  content: "";
  opacity: 0.24;
  background-image: radial-gradient(circle, #0b74d129 1px, #0000 1.5px);
  background-size: 21px 21px;
  position: absolute;
  inset: 0;
}

.phoneScreen:after {
  content: "";
  pointer-events: none;
  background: linear-gradient(135deg, #ffffff42, #0000 30% 70%, #ffffff1f);
  position: absolute;
  inset: 0;
}

.appTopBar {
  background: #ffffffe0;
  border: 1px solid #ffffffc7;
  border-radius: 18px;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 13px;
  display: flex;
  box-shadow: 0 10px 24px #081b3612;
  z-index: 2;
  position: relative;
}

.appTopBar span {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 10.5px;
  font-weight: 800;
  display: block;
}

.appTopBar strong {
  margin-top: 3px;
  font-size: 15px;
  display: block;
}

.statusDot {
  background: #eaf8f0;
  border-radius: 999px;
  padding: 6px 8px;
  color: #11643a;
  text-transform: none;
  letter-spacing: 0;
  font-size: 11px;
  display: inline-flex;
}

.drawCard {
  color: #fff;
  background: linear-gradient(135deg, #ea163f, #f33e5f);
  border-radius: 20px;
  align-items: center;
  gap: 12px;
  margin-top: 13px;
  padding: 15px;
  display: flex;
  box-shadow: 0 18px 34px #e3182c33;
  z-index: 2;
  position: relative;
}

.drawIcon {
  background: #ffffff29;
  border-radius: 14px;
  flex: none;
  place-items: center;
  width: 42px;
  height: 42px;
  display: grid;
}

.drawCard b {
  font-size: 15px;
  display: block;
}

.drawCard p {
  color: #ffffffd1;
  margin-top: 4px;
  font-size: 12.5px;
  line-height: 1.35;
}

.miniStats {
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 12px;
  display: grid;
  z-index: 2;
  position: relative;
}

.miniStat {
  text-align: center;
  background: #ffffffe0;
  border: 1px solid #ffffffc7;
  border-radius: 15px;
  padding: 11px 7px;
  box-shadow: 0 6px 16px #081b360a;
}

.miniStat strong {
  letter-spacing: -0.03em;
  font-size: 17px;
  display: block;
}

.miniStat span {
  color: var(--muted);
  margin-top: 3px;
  font-size: 10.5px;
  font-weight: 750;
  display: block;
}

.progressBox {
  background: #ffffffe0;
  border: 1px solid #ffffffc7;
  border-radius: 18px;
  margin-top: 12px;
  padding: 13px;
  z-index: 2;
  position: relative;
}

.progressHead {
  justify-content: space-between;
  align-items: center;
  font-size: 12.5px;
  font-weight: 800;
  display: flex;
}

.progressHead span {
  color: var(--muted);
}

.progressTrack {
  background: #dfeaf7;
  border-radius: 99px;
  height: 8px;
  margin-top: 11px;
  overflow: hidden;
}

.progressTrack span {
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), #50b7f0);
  width: 62%;
  height: 100%;
  display: block;
}

.winnerBox {
  color: #fff;
  background: #0b274b;
  border-radius: 16px;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  padding: 12px;
  display: flex;
  box-shadow: 0 12px 22px #081b361f;
  z-index: 2;
  position: relative;
}

.winnerBox svg {
  color: #ffd15a;
}

.winnerBox span {
  color: #ffffffa3;
  font-size: 12px;
  font-weight: 750;
  display: block;
}

.winnerBox b {
  margin-top: 2px;
  font-size: 15px;
  display: block;
}

.floatingCard {
  z-index: 3;
  height: 44px;
  box-shadow: var(--shadow-soft);
  color: #17365d;
  background: #ffffffeb;
  border: 1px solid #e0eaf5;
  border-radius: 15px;
  align-items: center;
  gap: 9px;
  padding: 0 14px;
  font-size: 13px;
  font-weight: 800;
  display: inline-flex;
  position: absolute;
  border: 1px solid rgba(0, 118, 236, 0.82);
}

.floatingCard svg {
  color: var(--blue);
}

.floatingCardOne {
  left: 6px;
  top: 60px;
}

.floatingCardTwo {
  top: auto;
  right: auto;
  bottom: 112px;
  left: 28px;
}

.floatingCardThree {
  bottom: auto;
  left: auto;
  right: 0;
  top: 225px;
}

.section,
.seoSection,
.pollSection {
  padding: var(--section-padding-y) 0;
}

.seoSectionHeader.isLeft {
  text-align: left;
  margin-left: 0;
}

.seoSectionHeader.isLeft .seoKicker {
  margin-left: 0;
}

.seoKicker {
  color: #21466f;
  background: #ffffffb8;
  border: 1px solid #d8e7f7;
  border-radius: 999px;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin: 0 auto 14px;
  padding: 8px 13px;
  font-size: 13px;
  font-weight: 800;
  display: inline-flex;
}

.seoKicker:before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 5px #e3182c12;
}

.seoCta {
  padding: 22px 0 88px;
}

.seoCtaBox,
.pollCtaBox {
  border-radius: var(--radius-xl);
  color: #fff;
  background: linear-gradient(145deg, #0c2244, #123661 56%, #e3182c 150%);
  box-shadow: var(--shadow);
  padding: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
  overflow: hidden;
}

.seoCtaBox:before,
.pollCtaBox:before {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: #ffffff1a;
}

.seoCtaBox > div,
.seoCtaBox > a,
.pollCtaBox > div,
.pollCtaBox > a {
  position: relative;
}

.seoCtaBox p,
.pollCtaBox p {
  color: #c9d6e4;
  margin-top: var(--heading-text-gap);
  max-width: 760px;
  font-size: var(--font-size-body);
  font-weight: var(--font-weight-body);
  line-height: var(--line-height-body);
}

.seoFooter {
  padding: 0 0 34px;
}

.seoFooterInner {
  border-top: 1px solid var(--line);
  padding-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.seoFooterText {
  color: var(--muted);
  font-size: 13.5px;
}

.seoFooterLinks {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  color: #31506f;
  font-size: 13.5px;
  font-weight: 800;
}

.seoFooterLinks a:hover {
  color: var(--blue-dark);
}

.sectionTint {
  background: linear-gradient(#eff7ffb8, #ffffffeb);
  border-top: 1px solid #dfe8f2bd;
  border-bottom: 1px solid #dfe8f2bd;
}

.sectionHeader,
.seoSectionHeader {
  margin-bottom: var(--section-header-gap);
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.sectionHeader span,
.scenarioIntro span {
  color: var(--red-dark);
  letter-spacing: 0.11em;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-size: 11.5px;
  font-weight: 850;
  line-height: 1;
  display: inline-block;
}

h2 {
  margin: 0;
  color: var(--color-heading);
  font-size: var(--font-size-h2);
  font-weight: var(--font-weight-h2);
  line-height: var(--line-height-h2);
  letter-spacing: var(--letter-spacing-h2);
}

h3 {
  color: #102b4d;
  margin: 0;
  font-size: var(--font-size-h3);
  font-weight: var(--font-weight-h3);
  line-height: var(--line-height-h3);
  letter-spacing: var(--letter-spacing-h3);
}

.sectionHeader p,
.seoSectionText,
.pollStepsIntroText,
.noJsContent p {
  margin-top: var(--heading-text-gap);
  color: var(--color-text-muted);
  font-size: var(--font-size-body);
  font-weight: var(--font-weight-body);
  line-height: var(--line-height-body);
}

.narrow {
  text-align: center;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.splitHeader {
  grid-template-columns: 0.95fr 0.9fr;
  align-items: end;
  gap: 32px;
  display: grid;
}

.splitHeader p {
  margin: 0;
}

.stepsGrid {
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  display: grid;
}

.stepCard {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  min-height: 196px;
  box-shadow: var(--shadow-soft);
  background: #fff;
  padding: 24px;
  position: relative;
}

.stepCard:after {
  content: "";
  background: linear-gradient(90deg, var(--red), var(--blue));
  opacity: 0.75;
  border-radius: 999px 999px 0 0;
  height: 3px;
  position: absolute;
  inset: auto 22px 0;
}

.stepNumber {
  color: #95a8bd;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
  font-size: 12px;
  font-weight: 850;
  display: inline-flex;
}

.stepCard h3 {
  font-size: var(--font-size-h3);
  font-weight: var(--font-weight-h3);
  line-height: var(--line-height-h3);
  letter-spacing: var(--letter-spacing-h3);
}

.stepCard p {
  color: var(--muted);
  margin-top: 11px;
  font-size: var(--font-size-card-body);
  line-height: var(--line-height-card-body);
}

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

.featureCard {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: #fffffff0;
  min-height: 204px;
  padding: 24px;
  transition:
    transform 0.16s,
    box-shadow 0.16s,
    border-color 0.16s;
  box-shadow: 0 8px 22px #081b360b;
}

.featureCard:hover {
  box-shadow: var(--shadow-soft);
  border-color: #c8d9eb;
  transform: translateY(-2px);
}

.featureIcon {
  width: 44px;
  height: 44px;
  color: var(--blue);
  background: #eef6ff;
  border-radius: 14px;
  place-items: center;
  margin-bottom: 18px;
  display: grid;
}

.featureCard:nth-child(2) .featureIcon {
  color: var(--red);
  background: #fff1f3;
}

.featureCard:nth-child(3) .featureIcon {
  color: var(--green);
  background: #edf9f2;
}

.featureCard:nth-child(4) .featureIcon {
  color: #7856d6;
  background: #f4f1ff;
}

.featureCard:nth-child(6) .featureIcon {
  color: #d98614;
  background: #fff7ea;
}

.featureCard h3 {
  font-size: var(--font-size-h3);
  font-weight: var(--font-weight-h3);
  line-height: var(--line-height-h3);
  letter-spacing: var(--letter-spacing-h3);
}

.featureCard p {
  color: var(--muted);
  margin-top: 10px;
  font-size: var(--font-size-card-body);
  line-height: var(--line-height-card-body);
}

.scenariosWrap {
  grid-template-columns: 0.82fr 1.18fr;
  align-items: stretch;
  gap: 18px;
  display: grid;
}

.scenarioIntro {
  border-radius: var(--radius-xl);
  color: #fff;
  height: 100%;
  min-height: 324px;
  box-shadow: var(--shadow);
  background: linear-gradient(145deg, #0c2244, #123661);
  flex-direction: column;
  padding: 30px;
  display: flex;
  position: sticky;
  top: 90px;
}

.scenarioIntro h2 {
  margin-bottom: 0;
  color: #fff;
}

.scenarioIntro p {
  flex: auto;
  align-items: center;
  margin: 0;
  display: flex;
  color: #c9d6e4;
  margin-top: var(--heading-text-gap);
  font-size: var(--font-size-body);
  font-weight: var(--font-weight-body);
  line-height: var(--line-height-body);
}

.scenarioButton {
  color: #fff;
  background: #ffffff1a;
  border-color: #ffffff3d;
  width: fit-content;
  margin-top: auto;
}

.scenarioGrid {
  grid-template-rows: repeat(2, 1fr);
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  min-height: 324px;
  display: grid;
}

.scenarioCard {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  min-height: 0;
  box-shadow: var(--shadow-soft);
  background: #fff;
  padding: 20px;
}

.scenarioCard svg {
  color: var(--red);
  margin-bottom: 18px;
}

.scenarioCard:nth-child(2n) svg {
  color: var(--blue);
}

.scenarioCard h3 {
  font-size: var(--font-size-h3);
  font-weight: var(--font-weight-h3);
  line-height: var(--line-height-h3);
  letter-spacing: var(--letter-spacing-h3);
}

.scenarioCard p {
  color: var(--muted);
  margin-top: 8px;
  font-size: var(--font-size-card-body);
  line-height: var(--line-height-card-body);
}

.faqSection {
  padding-top: 22px;
}

.faqSections {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 16px;
  display: grid;
}

.faqSectionBlock:last-child:nth-child(odd) {
  grid-column: 1/-1;
}

.faqSectionBlock {
  border: 1px solid var(--line);
  background: #ffffffe6;
  border-radius: 22px;
  padding: 22px;
  box-shadow: 0 8px 22px #081b360b;
}

.faqSectionBlock h3 {
  margin: 0 0 14px;
  font-size: var(--font-size-h3);
  font-weight: var(--font-weight-h3);
  line-height: var(--line-height-h3);
  letter-spacing: var(--letter-spacing-h3);
}

.faqItemsList {
  gap: 8px;
  display: grid;
}

.faqItem {
  background: #fff;
  border: 1px solid #e7eff8;
  border-radius: 14px;
  overflow: hidden;
}

.faqItem summary {
  cursor: pointer;
  color: #102b4d;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  padding: 0 16px;
  font-size: 14px;
  font-weight: 780;
  line-height: 1.3;
  list-style: none;
  display: flex;
}

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

.faqItem summary svg {
  color: #8da0b5;
  flex: none;
  transition: transform 0.16s;
}

.faqItem[open] summary svg {
  transform: rotate(180deg);
}

.faqItem p {
  color: var(--muted);
  padding: 0 16px 16px;
  font-size: 13.5px;
  line-height: 1.55;
}

.finalCta {
  padding: 12px 0 56px;
}

.finalCtaBox {
  border-radius: var(--radius-xl);
  color: #fff;
  background: linear-gradient(135deg, #0b2447, #113961 55%, #e3182c 150%);
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 32px;
  display: flex;
  box-shadow: 0 22px 48px #081b3624;
  position: relative;
  padding-right: 250px;
}

.finalCtaBox h2,
.seoCtaBox h2,
.pollCtaBox h2 {
  color: #fff;
  max-width: 760px;
}

.seoSplitCard.isDark h2,
.seoDesignPanel.isAccent h2 {
  color: #fff;
}


.finalCtaBox p {
  color: #ffffffc7;
  max-width: 740px;
  margin-top: var(--heading-text-gap);
  font-size: var(--font-size-body);
  font-weight: var(--font-weight-body);
  line-height: var(--line-height-body);
}

.finalCtaBox span {
  color: #ffd6dc;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-size: 11.5px;
  font-weight: 850;
  line-height: 1;
  display: inline-block;
}

.finalButton {
  position: absolute;
  right: 32px;
  top: 50%;
  width: 170px;
  height: 195px;
  min-height: 0;
  flex: 0 0 auto;
  padding: 0;
  border: 0;
  border-radius: 18px;
  background: #fff url("/tgdraw-qr-bot.png") center/contain no-repeat;
  color: transparent;
  font-size: 0;
  line-height: 0;
  box-shadow: 0 18px 38px #00000026;
  overflow: hidden;
  transform: translateY(-50%);
}

.footer {
  background: #ffffffbd;
  border-top: 1px solid #e0e9f3;
  padding: 24px 0 32px;
}

.footerInner {
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  display: flex;
}

.footer .logo img {
  width: 120px;
}

.footer p {
  color: var(--muted);
  font-size: 13px;
}

.phoneScreenDemo {
  display: grid;
  color: #172a43;
  direction: ltr;
  gap: 9px;
  padding: 34px 14px 14px;
  align-content: start;
  grid-template-rows: 132px 180px minmax(0, 1fr);
}

.phoneScreenDemo:before,
.phoneScreenDemo:after {
  z-index: 0;
}

.demoCard {
  z-index: 2;
  position: relative;
  background: linear-gradient(180deg, #fffffff7, #f8fbffe8);
  border: 1px solid #ffffffd6;
  border-radius: 18px;
  box-shadow:
    0 12px 28px #081b361f,
    inset 0 1px #ffffffc9;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.checkDemoCard {
  padding: 8px 11px 9px;
}

.checkOrb {
  width: 64px;
  height: 48px;
  margin: 0 auto 2px;
  position: relative;
}

.checkOrbLens {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, #edf1f6, #d3dbe6);
  transform: translate(-50%, -50%);
  box-shadow:
    inset 0 2px 8px #102b4d14,
    0 8px 18px #081b3614;
  animation: phoneSearchPulse 2.2s ease-in-out infinite;
}

.checkOrbLens:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 13px;
  height: 13px;
  border: 3px solid #5b687e5e;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.checkOrbHandle {
  position: absolute;
  left: 51%;
  top: 59%;
  width: 13px;
  height: 3px;
  border-radius: 3px;
  background: #5b687e5e;
  transform: rotate(45deg);
  transform-origin: left center;
}

.checkTitle {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  color: #344053;
  font-size: 13px;
  font-weight: 850;
  line-height: 1.15;
  text-align: center;
  white-space: nowrap;
  margin: 1px 0 8px;
}

.demoIcon {
  display: inline-grid;
  place-items: center;
  font-weight: 900;
  font-size: 14px;
  line-height: 1;
  transform: none;
  color: #0b74d1;
}

.channelLine {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid #e3ebf5;
  border-radius: 13px;
  min-height: 33px;
  padding: 5px 8px;
  box-shadow: 0 6px 14px #081b3614;
}

.winnerAvatar {
  display: inline-grid;
  place-items: center;
  flex: none;
  width: 23px;
  height: 23px;
  border-radius: 50%;
  background: linear-gradient(135deg, #eef3f9, #dfe7f1);
  color: #1c2c42;
  font-weight: 900;
  font-size: 12px;
}

.channelLine b {
  min-width: 0;
  flex: 1;
  font-size: 12px;
  font-weight: 850;
  color: #2f3d50;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.checkSpin {
  flex: none;
  width: 13px;
  height: 13px;
  border: 2px solid #cdd7e5;
  border-top-color: #0b74d1;
  border-radius: 50%;
  animation: phoneSpin 1s linear infinite;
}

.questionDemoCard {
  min-height: 180px;
  padding: 12px 10px 11px;
}

.questionLabel {
  display: block;
  color: #7a8797;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 8.5px;
  font-weight: 900;
  line-height: 1;
}

.questionTitle {
  display: block;
  color: #111827;
  font-size: 15.5px;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 4px 0 10px;
}

.answerList {
  display: grid;
  gap: 7px;
}

.answerItem {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  background: #fbfdff;
  color: #344053;
  font-size: 11px;
  font-weight: 750;
  padding: 0 9px;
  box-shadow: 0 3px 8px #081b360a;
  height: 30px;
}

.answerRadio {
  width: 13px;
  height: 13px;
  border: 1.7px solid #8f9bac;
  border-radius: 50%;
  background: #fff;
  position: relative;
  flex: none;
}

.answerSelected {
  border-color: #768294;
  background: #fff;
  box-shadow:
    0 5px 12px #081b361f,
    inset 0 0 0 1px #768294;
}

.answerSelected .answerRadio:after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: #364152;
}

.resultDemoCard {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: auto;
  min-height: 0;
  padding: 6px 13px 12px;
  justify-content: flex-start;
}

.resultConfetti:before {
  left: 74px;
  box-shadow: 16px -5px #33c3ff,
    33px 7px #66d17a,
    52px -2px #ff5870;
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #ffca3a;
  top: 18px;
  animation: phoneConfetti 2.4s ease-in-out infinite;
}

.resultConfetti:after {
  right: 74px;
  box-shadow: -15px 6px #33c3ff,
    -33px -4px #66d17a,
    -51px 7px #ff5870;
  animation-delay: 0.35s;
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #ffca3a;
  top: 18px;
  animation: phoneConfetti 2.4s ease-in-out infinite;
}

.resultEnded {
  color: #39465a;
  font-weight: 900;
  font-size: 11px;
  line-height: 1.15;
}

.resultEnded:before {
  content: "⚑";
  margin-right: 5px;
}

.resultWinnerLabel {
  display: block;
  color: #1f2937;
  font-weight: 900;
  font-size: 11px;
  line-height: 1.12;
  margin-top: 0;
}

.winnerLine {
  display: flex;
  align-items: center;
  color: #374151;
  font-size: 11px;
  width: 100%;
  margin-top: 5px;
  justify-content: center;
  text-align: center;
  gap: 7px;
}

.winnerLine b {
  color: #172a43;
  font-size: 12px;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.winnerIndex {
  color: #7b8798;
  font-weight: 900;
  width: 14px;
  text-align: right;
}

.phoneLottie {
  display: block;
  position: relative;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.searchLottie {
  width: 58px;
  height: 48px;
  margin: 0 auto 2px;
}

.endLottie {
  width: 48px;
  height: 42px;
  margin: 0 auto 1px;
}

.channelAvatar {
  background: linear-gradient(135deg, #eef3f9, #dfe7f1);
  color: #12233a;
  display: inline-grid;
  place-items: center;
  flex: none;
  width: 23px;
  height: 23px;
  border-radius: 50%;
  font-weight: 900;
  font-size: 12px;
}

.checkOk {
  display: inline-grid;
  place-items: center;
  flex: none;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: #0b2f5e;
  color: #fff;
  font-size: 11px;
  font-weight: 950;
  line-height: 1;
  box-shadow: 0 4px 10px #0b2f5e30;
}

.resultTrophy,
.resultConfetti {
  display: none;
  font-size: 39px;
  line-height: 1;
  margin: 0 auto 4px;
  filter: drop-shadow(0 7px 11px #ffb31847);
  animation: phoneTrophyFloat 2.8s ease-in-out infinite;
}

.winnerAvatarLogo {
  padding: 0;
  border: 1px solid #e0e8f2;
  box-shadow: 0 3px 8px #081b3612;
  overflow: hidden;
  border-radius: 50%;
  background: #fff;
}

.winnerAvatarLogo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transform: none;
  border-radius: 50%;
}

lottie-player:not(:defined).searchLottie {
  border-radius: 999px;
  background: linear-gradient(135deg, #edf1f6, #d5dce7);
  box-shadow:
    inset 0 2px 8px #102b4d14,
    0 8px 18px #081b3614;
}

lottie-player:not(:defined).searchLottie:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 48%;
  width: 18px;
  height: 18px;
  border: 3px solid #6b76875e;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

lottie-player:not(:defined).searchLottie:after {
  content: "";
  position: absolute;
  left: 54%;
  top: 58%;
  width: 14px;
  height: 4px;
  border-radius: 4px;
  background: #6b76875e;
  transform: rotate(45deg);
  transform-origin: left center;
}

lottie-player:not(:defined).endLottie {
  border-radius: 999px;
  background: linear-gradient(135deg, #fff8db, #fff);
  box-shadow: 0 6px 14px #ffb31820;
}

lottie-player:not(:defined).endLottie:before {
  content: "🏆";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 36px;
  line-height: 1;
  filter: drop-shadow(0 4px 7px #ffb31842);
}

.finalButton svg {
  display: none;
}

.finalButton:hover {
  transform: translateY(calc(-50% - 2px));
  box-shadow: 0 22px 44px #00000030;
}

.languageFlagEmoji {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  font-size: 18px;
  line-height: 1;
  font-family:
    "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", sans-serif;
}

.languageSelectButton .languageFlagEmoji {
  margin-top: -1px;
}

.languageOption .languageFlagEmoji {
  width: 22px;
  height: 22px;
  font-size: 18px;
}

.languageSelectButton > span:not(.languageFlagEmoji) {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.siteHeader .btnSmall {
  flex: 0 0 auto;
}

.noJsContent {
  width: min(960px, 100% - 44px);
  margin: 0 auto;
  padding: var(--section-padding-y) 0;
}

.noJsContent section + section {
  margin-top: 42px;
}

@keyframes phoneSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes phoneSearchPulse {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.95;
  }

  50% {
    transform: translate(-50%, -50%) scale(1.08);
    opacity: 0.72;
  }
}

@keyframes phoneTrophyFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-3px);
  }
}

@keyframes phoneConfetti {
  0%,
  100% {
    opacity: 0.55;
    transform: translateY(0) scale(0.9);
  }

  50% {
    opacity: 1;
    transform: translateY(-5px) scale(1);
  }
}

@media (max-width: 1100px) {
  .floatingCardTwo {
    left: 16%;
    bottom: 112px;
  }

  .floatingCardThree {
    top: 238px;
    left: 16%;
  }

  .heroGrid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .heroCopy {
    max-width: 900px;
  }

  .productPreview {
    min-height: 520px;
  }

  .floatingCardOne {
    left: 12%;
  }

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

  .splitHeader {
    grid-template-columns: 1fr;
    gap: var(--heading-text-gap);
  }

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

  .scenarioIntro {
    position: static;
  }
}

@media (max-width: 820px) {
  .floatingCardTwo {
    left: 8px;
    bottom: 102px;
    top: auto;
    right: 0;
  }

  .floatingCardThree {
    right: 0;
    top: 225px;
    bottom: 102px;
    left: 8px;
  }

  .finalCtaBox {
    padding-right: 24px;
    border-radius: 24px;
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
  }

  .finalButton {
    position: static;
    width: 100%;
    height: 176px;
    align-self: center;
    transform: none;
  }

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

  .floatingCardOne {
    top: 112px;
    left: 0;
  }

  .container {
    width: min(100% - 28px, 680px);
  }

  .logo img {
    width: 130px;
  }

  .heroSection,
  .seoHero,
  .pollHero {
    padding: var(--hero-padding-top-mobile) 0 var(--hero-padding-bottom-mobile);
  }

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

  .proofItem {
    align-items: flex-start;
    gap: 12px;
    min-height: auto;
    display: flex;
  }

  .proofItem svg {
    margin-bottom: 0;
  }

  .productPreview {
    transform-origin: top;
    min-height: 520px;
    margin-bottom: -24px;
    transform: scale(0.94);
  }

  .floatingCard {
    height: 40px;
    width: fit-content;
    font-size: 12.5px;
  }

  .section,
  .seoSection,
  .pollSection {
    padding: var(--section-padding-y-mobile) 0;
  }

  .sectionHeader,
  .seoSectionHeader {
    margin-bottom: var(--section-header-gap-mobile);
  }

  .featureGrid,
  .faqSections {
    grid-template-columns: 1fr;
  }

  .faqSectionBlock:last-child:nth-child(odd) {
    grid-column: auto;
  }

  .scenarioGrid {
    grid-template-rows: none;
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .scenarioIntro,
  .featureCard,
  .scenarioCard {
    min-height: auto;
  }

  .footerInner {
    text-align: center;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  body {
    min-width: 0;
  }

  .container {
    width: min(1160px, 100% - 16px);
  }

  .headerInner {
    min-height: 64px;
    gap: 8px;
  }

  .logo {
    min-width: 104px;
    max-width: 116px;
    flex: 0 1 112px;
  }

  .logo img {
    width: 112px;
  }

  .headerRight {
    gap: 3px;
    margin-left: auto;
    min-width: 0;
    flex: 0 0 auto;
  }

  .languageSelectButton {
    font-size: 12px;
    width: 58px;
    min-width: 58px;
    max-width: none;
    height: 44px;
    min-height: 44px;
    padding: 0 10px;
    justify-content: center;
    gap: 6px;
    border-radius: 15px;
    background: #fff;
    box-shadow: 0 8px 18px #081b3610;
  }

  .languageSelectButton svg {
    width: 14px;
    height: 14px;
    flex: none;
  }

  .siteHeader .btnSmall {
    width: auto;
    min-width: 132px;
    height: 44px;
    min-height: 44px;
    padding: 0 13px;
    border-radius: 15px;
    gap: 7px;
    font-size: 13px;
    line-height: 1;
    box-shadow: 0 13px 25px #e3182c2e;
  }

  .siteHeader .btnSmall svg {
    display: block;
    width: 16px;
    height: 16px;
    flex: none;
  }

  .siteHeader {
    background: #fffffff5;
    box-shadow: 0 10px 26px #081b360a;
  }

  .siteHeader .container.headerInner {
    width: calc(100% - 24px);
    max-width: 680px;
  }

  .languageSelectButton > span:not(.languageFlagEmoji) {
    display: none;
  }

  .languageSelectButton .languageFlagEmoji {
    width: 24px;
    height: 24px;
    margin: 0;
    font-size: 22px;
    line-height: 1;
  }

  .languageMenu {
    right: 0;
    width: min(270px, calc(100vw - 24px));
    max-height: min(420px, calc(100vh - 96px));
  }

  .siteHeader .headerRight {
    gap: 10px;
  }

  .siteHeader .languageSelectWrap {
    padding-left: 0;
    padding-right: 0;
    margin-left: 0;
    margin-right: 0;
    position: static;
  }

  .siteHeader .languageMenu {
    position: fixed;
    left: 50%;
    right: auto;
    top: 74px;
    width: min(380px, calc(100vw - 28px));
    max-height: min(520px, calc(100vh - 96px));
    transform: translateX(-50%);
    z-index: 1000;
    border-radius: 20px;
    padding: 10px;
    box-shadow: 0 24px 56px #081b3630;
  }

  html[dir="rtl"] .siteHeader .container.headerInner {
    justify-content: space-between;
  }

  html[dir="rtl"] .siteHeader .headerRight {
    margin-left: 0;
    margin-right: 0;
  }
}

@media (max-width: 540px) {
  .phoneScreenDemo {
    grid-template-rows: 130px 176px minmax(0, 1fr);
  }

  .checkTitle {
    font-size: 12.4px;
  }

  .questionTitle {
    font-size: 14.6px;
  }

  .answerItem {
    font-size: 10.8px;
  }

  .floatingCardTwo {
    left: -8px;
    right: -8px;
    bottom: 112px;
  }

  .floatingCardThree {
    right: 1px;
    top: 238px;
    left: auto;
  }

  .resultDemoCard {
    padding-bottom: 10px;
  }

  .finalButton {
    width: 148px;
    height: 169px;
  }

  .floatingCardOne {
    top: 60px;
    left: -8px;
  }

  .headerInner {
    min-height: 60px;
  }

  .btnSmall {
    min-height: 40px;
    padding: 0 13px;
    font-size: 13px;
  }

  .languageSelectWrap {
    min-height: 40px;
    padding-left: 11px;
    padding-right: 32px;
  }

  .btn {
    width: 100%;
  }

  .heroActions {
    gap: 10px;
  }

  .eyebrow {
    font-size: 12px;
  }

  .phoneShell {
    width: 270px;
  }

  .productPreview {
    min-height: 470px;
    margin: 0;
    transform: scale(0.88);
  }

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

  .stepCard {
    min-height: auto;
  }

  .stepNumber {
    margin-bottom: 18px;
  }

  .faqSectionBlock {
    padding: 18px;
  }

  .faqItem summary {
    min-height: 0;
    padding: 12px 14px;
  }
}

@media (max-width: 380px) {
  .container {
    width: min(1160px, 100% - 12px);
  }

  .headerInner {
    gap: 7px;
  }

  .logo {
    min-width: 92px;
    max-width: 98px;
    flex-basis: 98px;
  }

  .logo img {
    width: 98px;
  }

  .languageSelectButton {
    max-width: 46px;
    justify-content: center;
    width: 54px;
    min-width: 54px;
    height: 42px;
    min-height: 42px;
    padding: 0 9px;
    border-radius: 14px;
  }

  .languageSelectButton > span:not(.languageFlagEmoji) {
    display: none;
  }

  .siteHeader .btnSmall {
    width: 40px;
    line-height: 0;
    min-width: 128px;
    height: 42px;
    min-height: 42px;
    padding: 0 11px;
    border-radius: 14px;
    font-size: 12.5px;
    gap: 6px;
  }

  .siteHeader .btnSmall svg {
    width: 15px;
    height: 15px;
  }

  .siteHeader .container.headerInner {
    width: calc(100% - 20px);
  }

  .headerRight {
    gap: 2px;
  }

  .languageSelectButton .languageFlagEmoji {
    width: 23px;
    height: 23px;
    font-size: 21px;
  }

  .siteHeader .headerRight {
    gap: 10px;
  }

  .siteHeader .languageSelectWrap {
    padding-left: 0;
    padding-right: 0;
  }

  .siteHeader .languageMenu {
    top: 70px;
    width: calc(100vw - 24px);
  }
}

@media (max-width: 340px) {
  .siteHeader .container.headerInner {
    width: calc(100% - 16px);
  }

  .headerInner {
    gap: 6px;
  }

  .headerRight {
    gap: 1px;
  }

  .logo {
    min-width: 82px;
    max-width: 88px;
    flex-basis: 88px;
  }

  .logo img {
    width: 88px;
  }

  .languageSelectButton {
    width: 50px;
    min-width: 50px;
    height: 40px;
    min-height: 40px;
    padding: 0 8px;
  }

  .languageSelectButton .languageFlagEmoji {
    width: 22px;
    height: 22px;
    font-size: 20px;
  }

  .siteHeader .btnSmall {
    min-width: 122px;
    height: 40px;
    min-height: 40px;
    padding: 0 10px;
    font-size: 12px;
  }

  .siteHeader .btnSmall svg {
    width: 14px;
    height: 14px;
  }

  .siteHeader .headerRight {
    gap: 10px;
  }
}

@media (max-width: 300px) {
  .logo {
    min-width: 76px;
    max-width: 80px;
    flex-basis: 80px;
  }

  .logo img {
    width: 80px;
  }

  .languageSelectButton {
    min-width: 40px;
    max-width: 42px;
  }

  .siteHeader .btnSmall {
    width: 38px;
    min-width: 38px;
  }
}
