:root {
  --ink: #17211f;
  --muted: #596763;
  --paper: #f6f7f4;
  --surface: #ffffff;
  --line: #dfe6df;
  --teal: #0c9b8e;
  --teal-dark: #08786e;
  --coral: #e8654f;
  --amber: #d79f39;
  --forest: #24564a;
  --shadow: 0 20px 60px rgba(23, 33, 31, 0.12);
  --motion-fast: 180ms;
  --motion-medium: 520ms;
  --motion-slow: 900ms;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
  overflow-x: hidden;
}

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 68px;
  padding: 14px clamp(18px, 4vw, 54px);
  color: #ffffff;
  transition: background var(--motion-fast) ease, box-shadow var(--motion-fast) ease, color var(--motion-fast) ease;
  animation: headerDrop var(--motion-slow) var(--ease-out) both;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 30px rgba(23, 33, 31, 0.1);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-weight: 800;
  letter-spacing: 0;
}

.brand span:last-child {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius);
  background: var(--teal);
  color: #ffffff;
  font-size: 0.82rem;
  box-shadow: 0 0 0 rgba(12, 155, 142, 0);
  animation: brandPulse 4.8s ease-in-out 1.2s infinite;
}

.site-header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.94rem;
  font-weight: 700;
}

.site-nav a {
  position: relative;
  padding: 10px 13px;
  border-radius: var(--radius);
  transition: color var(--motion-fast) ease, background var(--motion-fast) ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  right: 13px;
  bottom: 7px;
  left: 13px;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--motion-fast) ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(12, 155, 142, 0.12);
  outline: none;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: inherit;
}

.site-header.is-scrolled .language-switch,
.site-header.is-open .language-switch {
  border-color: var(--line);
  background: #ffffff;
}

.lang-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 30px;
  padding: 0 8px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
  font-size: 0.76rem;
  font-weight: 850;
  line-height: 1;
}

.lang-button:hover,
.lang-button:focus-visible {
  background: rgba(12, 155, 142, 0.12);
  outline: none;
}

.lang-button.is-active {
  background: var(--teal);
  color: #ffffff;
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: clamp(520px, 78svh, 760px);
  overflow: hidden;
  color: #ffffff;
  background: #111a18;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  object-fit: cover;
  object-position: 60% center;
  transform: translate3d(0, 0, 0) scale(1.04);
  transition: transform 120ms linear;
  animation: heroSettle 1400ms var(--ease-out) both;
}

.hero-overlay {
  background: rgba(7, 13, 12, 0.58);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(690px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 96px);
  padding-top: 76px;
  padding-bottom: 48px;
  transform: translate3d(0, var(--hero-shift, 0), 0);
  transition: transform 120ms linear;
}

.hero-content > * {
  opacity: 0;
  transform: translateX(-28px);
  animation: fadeFromLeft var(--motion-slow) var(--ease-out) both;
}

.hero-content > :nth-child(1) {
  animation-delay: 160ms;
}

.hero-content > :nth-child(2) {
  animation-delay: 260ms;
}

.hero-content > :nth-child(3) {
  animation-delay: 380ms;
}

.hero-content > :nth-child(4) {
  animation-delay: 500ms;
}

.hero-motion {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.hero-motion::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: min(62vw, 860px);
  background: linear-gradient(90deg, rgba(98, 222, 210, 0.18), rgba(98, 222, 210, 0.08) 42%, transparent 100%);
  opacity: 0;
  transform: translateX(-22%);
  animation: heroFadeWash 1200ms var(--ease-out) 120ms both;
}

.hero-motion::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 13, 12, 0.36), transparent 48%);
  opacity: 0;
  animation: heroFadeWash 1000ms var(--ease-out) both;
}

.hero-motion span {
  display: none;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #62ded2;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 11ch;
  margin: 0;
  font-size: 7.2rem;
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: 4rem;
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 1.12rem;
  line-height: 1.2;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 640px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.24rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1;
  transition: transform var(--motion-fast) ease, background var(--motion-fast) ease, box-shadow var(--motion-fast) ease, border-color var(--motion-fast) ease;
}

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

.button:active {
  transform: translateY(0);
}

.button-primary {
  background: var(--teal);
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(12, 155, 142, 0.26);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--teal-dark);
  box-shadow: 0 16px 34px rgba(12, 155, 142, 0.32);
  outline: none;
}

.button-paypal {
  background: #ffc439;
  color: #111a18;
  box-shadow: 0 12px 28px rgba(255, 196, 57, 0.24);
}

.button-paypal:hover,
.button-paypal:focus-visible {
  background: #f0b72f;
  box-shadow: 0 16px 34px rgba(255, 196, 57, 0.3);
  outline: none;
}

.button-outline {
  border-color: var(--line);
  background: #ffffff;
  color: var(--ink);
}

.button-outline:hover,
.button-outline:focus-visible {
  border-color: rgba(12, 155, 142, 0.42);
  background: #f7fbf8;
  outline: none;
}

.button.is-disabled,
.button.is-disabled:hover,
.button.is-disabled:focus-visible {
  cursor: not-allowed;
  opacity: 0.62;
  box-shadow: none;
  transform: none;
}

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

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.68);
  outline: none;
}

.button-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.5);
  color: #ffffff;
  backdrop-filter: blur(4px);
}

.button-outline:hover,
.button-outline:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.85);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.08);
  outline: none;
}

.button-outline svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.contact-section {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding-bottom: clamp(64px, 9vw, 96px);
}

.contact-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: clamp(20px, 4vw, 42px);
  align-items: center;
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 18px 44px rgba(23, 33, 31, 0.1);
}

.contact-visual {
  display: grid;
  place-items: center;
  width: clamp(52px, 6vw, 68px);
  height: clamp(52px, 6vw, 68px);
  border-radius: 50%;
  background: rgba(12, 155, 142, 0.1);
  color: var(--teal);
  flex-shrink: 0;
}

.contact-visual svg {
  width: clamp(20px, 2.4vw, 26px);
  height: clamp(20px, 2.4vw, 26px);
}

.contact-body h2 {
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  margin-top: 4px;
}

.contact-body p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 1.04rem;
  max-width: 660px;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
}

.button-mail {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  padding: 13px 24px;
}

.button-mail svg {
  flex-shrink: 0;
}

.contact-response {
  color: var(--muted);
  font-size: 0.88rem;
}

html[dir="rtl"] .contact-visual {
  order: 1;
}

html[dir="rtl"] .contact-card {
  text-align: right;
}

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

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 280px));
  justify-content: center;
  width: 100%;
  margin: 0;
  position: relative;
  z-index: 2;
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.proof-strip div {
  position: relative;
  padding: 20px clamp(14px, 2vw, 28px);
  border-right: 1px solid var(--line);
  overflow: hidden;
  min-width: 0;
}

.proof-strip div::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--motion-medium) var(--ease-out);
}

.proof-strip div.is-visible::before {
  transform: scaleX(1);
}

.proof-strip div:last-child {
  border-right: 0;
}

.proof-strip strong,
.proof-strip span {
  display: block;
}

.proof-strip strong {
  font-size: 1.06rem;
}

.proof-strip span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.88rem;
}

.section {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(64px, 9vw, 112px) 0;
}

.section-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: end;
}

.section-copy h2 {
  max-width: 820px;
}

.section-copy,
.section-note,
.section-heading,
.integration-copy,
.license-panel > *,
.payment-safe-copy,
.payment-points article,
.step-card,
.feature-item,
.screenshot-card,
.pricing-card,
.logo-cloud span {
  min-width: 0;
}

.section-note,
.integration-copy p,
.license-panel p,
.feature-item p,
.step-card p,
.screenshot-card p,
.pricing-note,
.plan-sites {
  color: var(--muted);
  font-size: 1rem;
}

.section-note {
  margin: 0;
  font-size: 1.08rem;
}

.section-heading {
  display: grid;
  gap: 10px;
  max-width: 820px;
  margin-bottom: clamp(28px, 5vw, 46px);
}

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

.step-card,
.feature-item {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  transform: translateZ(0);
  transition: transform var(--motion-medium) var(--ease-out), border-color var(--motion-fast) ease, box-shadow var(--motion-medium) var(--ease-out);
}

.step-card::before,
.feature-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--motion-medium) var(--ease-out);
}

.step-card:hover,
.feature-item:hover {
  border-color: rgba(12, 155, 142, 0.38);
  box-shadow: 0 22px 44px rgba(23, 33, 31, 0.12);
  transform: translateY(-6px);
}

.step-card:hover::before,
.feature-item:hover::before,
.step-card.is-visible::before,
.feature-item.is-visible::before {
  transform: scaleX(1);
}

.step-card {
  min-height: 260px;
  padding: 24px;
}

.step-number {
  display: inline-flex;
  margin-bottom: 38px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  transition: color var(--motion-fast) ease, transform var(--motion-fast) ease;
}

.step-card:hover .step-number {
  color: var(--teal-dark);
  transform: translateX(4px);
}

.step-card p,
.feature-item p {
  margin: 14px 0 0;
}

.feature-band {
  width: 100%;
  max-width: none;
  padding-right: max(18px, calc((100vw - 1120px) / 2));
  padding-left: max(18px, calc((100vw - 1120px) / 2));
  background: #eef4f0;
}

.feature-grid {
  grid-template-columns: repeat(3, 1fr);
}

.feature-item {
  min-height: 238px;
  padding: 24px;
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 26px;
  border-radius: var(--radius);
  background: rgba(12, 155, 142, 0.12);
  color: var(--teal-dark);
  transition: transform var(--motion-medium) var(--ease-out), background var(--motion-fast) ease, color var(--motion-fast) ease;
}

.feature-item:hover .feature-icon {
  transform: translateY(-4px) rotate(-4deg);
}

.feature-icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.feature-item:nth-child(2) .feature-icon,
.feature-item:nth-child(5) .feature-icon {
  color: var(--coral);
  background: rgba(232, 101, 79, 0.12);
}

.feature-item:nth-child(3) .feature-icon,
.feature-item:nth-child(6) .feature-icon {
  color: var(--amber);
  background: rgba(215, 159, 57, 0.15);
}

.screenshot-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(300px, 0.72fr);
  gap: clamp(18px, 4vw, 36px);
  align-items: start;
}

.screenshot-primary,
.screenshot-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 18px 44px rgba(23, 33, 31, 0.08);
}

.screenshot-primary {
  position: sticky;
  top: 88px;
  overflow: hidden;
}

.screenshot-primary img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.screenshot-badge {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: var(--radius);
  background: rgba(23, 33, 31, 0.76);
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 800;
  backdrop-filter: blur(12px);
}

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

.screenshot-card {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 14px;
  transition: transform var(--motion-medium) var(--ease-out), border-color var(--motion-fast) ease, box-shadow var(--motion-medium) var(--ease-out);
}

.screenshot-card:hover {
  border-color: rgba(12, 155, 142, 0.38);
  box-shadow: 0 22px 44px rgba(23, 33, 31, 0.12);
  transform: translateY(-4px);
}

.screenshot-card a {
  display: block;
  overflow: hidden;
  border-radius: var(--radius);
  background: #17211f;
}

.screenshot-card img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  object-position: 64% center;
  transition: transform var(--motion-medium) var(--ease-out);
}

.screenshot-card:nth-child(2) img {
  object-position: 50% center;
}

.screenshot-card:nth-child(3) img {
  object-position: 76% center;
}

.screenshot-card:hover img {
  transform: scale(1.05);
}

.screenshot-card p {
  margin: 8px 0 0;
}

.integration-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(28px, 6vw, 68px);
  align-items: start;
}

.integration-copy p {
  margin: 0 0 18px;
  font-size: 1.07rem;
}

.text-link {
  display: inline-flex;
  color: var(--teal-dark);
  font-weight: 800;
  transition: color var(--motion-fast) ease, transform var(--motion-fast) ease;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--forest);
  transform: translateX(4px);
  outline: none;
}

.logo-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.logo-cloud span {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  color: var(--ink);
  font-weight: 750;
  transition: transform var(--motion-fast) ease, border-color var(--motion-fast) ease, box-shadow var(--motion-fast) ease;
}

.logo-cloud span:hover {
  border-color: rgba(12, 155, 142, 0.36);
  box-shadow: 0 10px 26px rgba(23, 33, 31, 0.08);
  transform: translateY(-3px);
}

.pricing {
  width: 100%;
  max-width: none;
  padding-right: max(18px, calc((100vw - 1120px) / 2));
  padding-left: max(18px, calc((100vw - 1120px) / 2));
  background: #fbfcfa;
}

.pricing .section-heading {
  width: min(1120px, 100%);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  width: min(1120px, 100%);
}

.pricing-card {
  position: relative;
  display: grid;
  gap: 16px;
  align-content: start;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 18px 44px rgba(23, 33, 31, 0.08);
}

.pricing-card.is-featured {
  border-color: rgba(12, 155, 142, 0.5);
  box-shadow: 0 24px 56px rgba(12, 155, 142, 0.14);
}

.plan-badge,
.plan-kicker {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: var(--radius);
  font-size: 0.74rem;
  font-weight: 850;
}

.plan-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--teal);
  color: #ffffff;
}

.plan-kicker {
  background: rgba(12, 155, 142, 0.12);
  color: var(--teal-dark);
}

.pricing-card h3 {
  font-size: 2rem;
}

.plan-sites {
  margin: -10px 0 0;
}

.price-block {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.price-block > span {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}

.price-values {
  display: grid;
  gap: 4px;
  direction: ltr;
  text-align: right;
}

.price-values del {
  color: #8b9692;
  font-size: 0.92rem;
}

.price-values strong {
  color: var(--ink);
  font-size: 1.35rem;
  line-height: 1;
}

.pricing-card .button {
  width: 100%;
  margin-top: 8px;
}

.checkout-actions {
  display: grid;
  gap: 8px;
  margin-top: 8px;
}

.checkout-actions .button {
  min-height: 44px;
  margin-top: 0;
  font-size: 0.92rem;
}

.lifetime-price-block {
  margin-top: 8px;
}

.paypal-subscription-button {
  min-height: 46px;
}

.paypal-lifetime-form {
  display: inline-grid;
  justify-items: center;
  align-content: start;
  gap: 0.5rem;
  width: 100%;
}

.paypal-lifetime-form input[type="submit"],
.pp-4PEH5XPMGBC4G {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-width: 11.625rem;
  max-width: 100%;
  height: 2.625rem;
  padding: 0 2rem;
  border: 0;
  border-radius: 1.5rem;
  background-color: #ffd140;
  color: #000000;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.25rem;
  text-align: center;
  cursor: pointer;
}

.paypal-card-icons {
  width: auto;
  height: auto;
  max-width: min(100%, 230px);
}

.paypal-powered {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1;
}

.paypal-powered img {
  display: inline-block;
  width: auto;
  height: 0.875rem;
  max-width: 4.25rem;
  vertical-align: middle;
}

.pricing-note {
  width: min(1120px, 100%);
  margin: 18px 0 0;
}

.payment-safe {
  display: grid;
  gap: clamp(24px, 4vw, 40px);
}

.payment-safe-copy {
  max-width: 820px;
}

.payment-safe-copy p {
  max-width: 760px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

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

.payment-points article {
  min-height: 150px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 14px 34px rgba(23, 33, 31, 0.07);
}

.payment-points p {
  margin: 12px 0 0;
  color: var(--muted);
}

.license {
  width: 100%;
  max-width: none;
  padding: clamp(64px, 9vw, 96px) max(18px, calc((100vw - 1120px) / 2));
  color: #ffffff;
  background: #17211f;
}

.license-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 380px);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.license-panel .eyebrow {
  color: #62ded2;
}

.license-panel p {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 0.35em;
  left: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: inset 0 0 0 4px #17211f;
  transition: transform var(--motion-medium) var(--ease-out), box-shadow var(--motion-fast) ease;
}

.check-list li.is-visible::before {
  transform: scale(1.18);
  box-shadow: inset 0 0 0 4px #17211f, 0 0 0 6px rgba(12, 155, 142, 0.12);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 28px 0 42px;
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer span {
  font-weight: 800;
  color: var(--ink);
}

.site-footer a,
.site-footer span {
  overflow-wrap: anywhere;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--teal-dark);
  outline: none;
}

html[dir="rtl"] body {
  text-align: right;
}

html[dir="rtl"] .eyebrow,
html[dir="rtl"] .step-number {
  letter-spacing: 0;
}

html[dir="rtl"] .hero-content {
  margin-right: clamp(18px, 7vw, 96px);
  margin-left: 0;
}

html[dir="rtl"] .site-nav a::after,
html[dir="rtl"] .proof-strip div::before,
html[dir="rtl"] .step-card::before,
html[dir="rtl"] .feature-item::before {
  transform-origin: right;
}

html[dir="rtl"] .screenshot-badge {
  right: auto;
  left: 18px;
}

html[dir="rtl"] .plan-badge {
  right: auto;
  left: 18px;
}

html[dir="rtl"] .proof-strip div {
  border-right: 0;
  border-left: 1px solid var(--line);
}

html[dir="rtl"] .proof-strip div:last-child {
  border-left: 0;
}

html[dir="rtl"] .step-card:hover .step-number,
html[dir="rtl"] .text-link:hover,
html[dir="rtl"] .text-link:focus-visible {
  transform: translateX(-4px);
}

html[dir="rtl"] .check-list li {
  padding-right: 28px;
  padding-left: 0;
}

html[dir="rtl"] .check-list li::before {
  right: 0;
  left: auto;
}

.has-motion [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity var(--motion-slow) var(--ease-out), transform var(--motion-slow) var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
}

.has-motion [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.proof-strip [data-reveal]:nth-child(2),
.steps-grid [data-reveal]:nth-child(2),
.feature-grid [data-reveal]:nth-child(2),
.logo-cloud [data-reveal]:nth-child(2),
.check-list [data-reveal]:nth-child(2) {
  --reveal-delay: 90ms;
}

.proof-strip [data-reveal]:nth-child(3),
.steps-grid [data-reveal]:nth-child(3),
.feature-grid [data-reveal]:nth-child(3),
.logo-cloud [data-reveal]:nth-child(3),
.check-list [data-reveal]:nth-child(3) {
  --reveal-delay: 180ms;
}

.proof-strip [data-reveal]:nth-child(4),
.steps-grid [data-reveal]:nth-child(4),
.feature-grid [data-reveal]:nth-child(4),
.logo-cloud [data-reveal]:nth-child(4),
.check-list [data-reveal]:nth-child(4) {
  --reveal-delay: 270ms;
}

.feature-grid [data-reveal]:nth-child(5),
.logo-cloud [data-reveal]:nth-child(5) {
  --reveal-delay: 360ms;
}

.feature-grid [data-reveal]:nth-child(6),
.logo-cloud [data-reveal]:nth-child(6) {
  --reveal-delay: 450ms;
}

.logo-cloud [data-reveal]:nth-child(7) {
  --reveal-delay: 540ms;
}

.logo-cloud [data-reveal]:nth-child(8) {
  --reveal-delay: 630ms;
}

@keyframes headerDrop {
  from {
    opacity: 0;
    transform: translateY(-18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroSettle {
  from {
    transform: translate3d(0, 0, 0) scale(1.1);
  }
  to {
    transform: translate3d(0, 0, 0) scale(1.04);
  }
}

@keyframes fadeFromLeft {
  from {
    opacity: 0;
    transform: translateX(-28px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes heroFadeWash {
  0% {
    opacity: 0;
    transform: translateX(-22%);
  }
  55% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes brandPulse {
  0%,
  72%,
  100% {
    box-shadow: 0 0 0 0 rgba(12, 155, 142, 0);
  }
  86% {
    box-shadow: 0 0 0 10px rgba(12, 155, 142, 0.16);
  }
}

@media (max-width: 940px) {
  .site-header {
    min-height: 64px;
  }

  .site-header-actions {
    gap: 8px;
  }

  .nav-toggle {
    display: inline-grid;
    gap: 5px;
    width: 42px;
    height: 42px;
    place-content: center;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.08);
    color: inherit;
  }

  .site-header.is-scrolled .nav-toggle,
  .site-header.is-open .nav-toggle {
    border-color: var(--line);
    background: #ffffff;
  }

  .nav-toggle span:not(.sr-only) {
    width: 20px;
    height: 2px;
    background: currentColor;
    transition: transform var(--motion-fast) ease, opacity var(--motion-fast) ease;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(2) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(4) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    top: 64px;
    right: 18px;
    left: 18px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #ffffff;
    color: var(--ink);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    visibility: hidden;
    transition: opacity var(--motion-fast) ease, transform var(--motion-fast) ease, visibility var(--motion-fast) ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
  }

  .site-nav a {
    padding: 13px 14px;
  }

  .hero {
    min-height: clamp(500px, 72svh, 660px);
  }

  .hero-media {
    object-position: 68% center;
  }

  .hero-content {
    width: min(620px, calc(100% - 36px));
    margin: 0 auto;
    padding-top: 52px;
    padding-bottom: 42px;
  }

  html[dir="rtl"] .hero-content {
    margin: 0 auto;
  }

  .hero-copy {
    max-width: 560px;
  }

  .proof-strip,
  .section-intro,
  .integration-layout,
  .screenshot-showcase,
  .license-panel {
    grid-template-columns: 1fr;
  }

  .screenshot-primary {
    position: static;
  }

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

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

@media (max-width: 620px) {
  .site-header {
    padding-inline: 14px;
  }

  .brand {
    font-size: 0.96rem;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .hero {
    min-height: auto;
  }

  .hero-overlay {
    background: rgba(7, 13, 12, 0.68);
  }

  .hero-media {
    object-position: 72% center;
  }

  .hero-content {
    width: calc(100% - 28px);
    max-width: 520px;
    padding-top: 104px;
    padding-bottom: 54px;
  }

  .eyebrow {
    font-size: 0.72rem;
  }

  h1 {
    font-size: 4.2rem;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    width: min(100%, 280px);
    max-width: none;
  }

  .proof-strip,
  .steps-grid,
  .feature-grid,
  .pricing-grid,
  .payment-points {
    grid-template-columns: 1fr;
  }

  .screenshot-card {
    grid-template-columns: 1fr;
  }

  .screenshot-card img {
    aspect-ratio: 16 / 9;
  }

  .proof-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof-strip div:last-child {
    border-bottom: 0;
  }

  .section {
    width: calc(100% - 28px);
    max-width: 1120px;
  }

  .feature-band {
    width: 100%;
    padding-right: 14px;
    padding-left: 14px;
  }

  .pricing {
    padding-right: 14px;
    padding-left: 14px;
  }

  .step-card,
  .feature-item,
  .pricing-card {
    min-height: auto;
    padding: 22px;
  }

  .step-number {
    margin-bottom: 22px;
  }

  .license-panel {
    width: 100%;
  }

  .contact-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .contact-visual {
    justify-self: center;
  }

  .contact-actions {
    justify-content: center;
  }

  .contact-body p {
    max-width: 100%;
  }

  .site-footer {
    width: calc(100% - 28px);
    max-width: 1120px;
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 940px) {
  h1 {
    font-size: 5.4rem;
  }

  h2 {
    font-size: 3.2rem;
  }

  .hero-copy {
    font-size: 1.12rem;
  }

}

@media (max-width: 420px) {
  .site-header {
    min-height: 60px;
  }

  .site-header-actions {
    gap: 6px;
  }

  .brand {
    gap: 8px;
  }

  .brand span:last-child {
    max-width: 138px;
  }

  .language-switch {
    padding: 2px;
  }

  .lang-button {
    min-width: 30px;
    height: 28px;
    padding: 0 7px;
    font-size: 0.72rem;
  }

  .site-nav {
    top: 60px;
    right: 14px;
    left: 14px;
  }

  .hero-content {
    width: calc(100% - 24px);
    max-width: 420px;
    padding-top: 92px;
  }

  h1 {
    font-size: 3.55rem;
  }

  h2 {
    font-size: 2.12rem;
  }

  .section {
    width: calc(100% - 24px);
    max-width: 1120px;
    padding: 54px 0;
  }

  .feature-band,
  .pricing,
  .license {
    padding-right: 12px;
    padding-left: 12px;
  }

  .proof-strip div,
  .step-card,
  .feature-item,
  .pricing-card {
    padding: 18px;
  }

  .price-block {
    gap: 10px;
  }

  .price-values strong {
    font-size: 1.22rem;
  }

  .logo-cloud {
    gap: 8px;
  }

  .logo-cloud span {
    justify-content: center;
    width: 100%;
    min-height: 42px;
    text-align: center;
  }
}

@media (max-width: 340px) {
  .brand span:last-child {
    max-width: 96px;
  }

  h1 {
    font-size: 3.1rem;
  }

  h2 {
    font-size: 1.9rem;
  }

  .button {
    padding-inline: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }

  .has-motion [data-reveal],
  .has-motion [data-reveal].is-visible,
  .hero-content,
  .hero-content > *,
  .hero-media,
  .hero-motion {
    opacity: 1;
    transform: none !important;
  }

  .hero-motion {
    display: none;
  }
}
