/* ==========================================================================
   Kultura — pay.kulturapay.com
   Design tokens taken from the "Kultura Bold" app design system.
   ========================================================================== */

:root {
  --orange: #ff5a0f;
  --orange-dark: #c2410c;
  --orange-soft: #fff1e6;
  --peach: #ffd2b8;
  --dark: #2b1408;
  --dark-2: #3a2216;
  --cream: #f5f0e8;
  --cream-2: #efe9df;
  --muted: #6e625a;
  --line: #e6ddd2;
  --white: #ffffff;
  --usdt: #26a17b;
  --visa: #1a1f71;
  --mc-red: #eb001b;
  --mc-orange: #f79e1b;

  --font-display: "Bricolage Grotesque", "Manrope", system-ui, sans-serif;
  --font-body: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;

  --wrap: 1180px;
  --gutter: 28px;
  --radius-xl: 40px;
  --radius-lg: 32px;
  --radius-md: 24px;
  --radius-sm: 16px;
  --header-h: 84px;

  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--white);
  color: var(--dark);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
input, select { font: inherit; color: inherit; }
h1, h2, h3, h4, p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; border-radius: 6px; }
.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;
}

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

/* ---------- Typography ---------- */
.h {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -.035em;
  line-height: 1.02;
  margin: 0;
}
.h--xl { font-size: clamp(48px, 7vw, 88px); }
.h--lg { font-size: clamp(36px, 4.5vw, 56px); }
.h--md { font-size: clamp(24px, 2.4vw, 28px); }
.eyebrow {
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange);
}
.lede { font-weight: 500; font-size: 17px; line-height: 1.55; color: var(--muted); }
.text-pretty { text-wrap: pretty; }

/* ---------- Layout ---------- */
.wrap { max-width: var(--wrap); margin: 0 auto; padding-left: var(--gutter); padding-right: var(--gutter); }
.section { padding: clamp(72px, 9vw, 110px) 0; }
.section--cream { background: var(--cream); }
.section--dark { background: var(--dark); color: var(--white); }
.section--orange { background: var(--orange); color: var(--dark); }
.section__head { max-width: 720px; }
.section__head .h { margin-top: 14px; }
.section__head .lede { margin-top: 18px; max-width: 560px; }
.section__head--split {
  max-width: none;
  display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 20px;
}
.section__head--split .h { max-width: 640px; }
.section__head--split .lede { margin: 0; max-width: 360px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 18px 30px;
  border-radius: 999px;
  font-weight: 700; font-size: 16px; line-height: 1;
  white-space: nowrap;
  transition: transform .2s var(--ease), background-color .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease), box-shadow .2s var(--ease);
  border: 2px solid transparent;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--primary { background: var(--orange); color: var(--dark); border-color: var(--orange); }
.btn--primary:hover { background: #ff6a26; border-color: #ff6a26; box-shadow: 0 12px 30px rgba(255, 90, 15, .35); }
.btn--dark { background: var(--dark); color: var(--white); border-color: var(--dark); }
.btn--dark:hover { background: var(--dark-2); border-color: var(--dark-2); }
.btn--ghost { border-color: rgba(255, 255, 255, .35); color: var(--white); }
.btn--ghost:hover { border-color: rgba(255, 255, 255, .7); background: rgba(255, 255, 255, .06); }
.btn--outline-dark { border-color: var(--dark); color: var(--dark); }
.btn--outline-dark:hover { background: rgba(43, 20, 8, .06); }
.btn--sm { padding: 12px 22px; font-size: 14px; }
.btn svg { width: 18px; height: 18px; flex: none; }

/* ---------- Header ---------- */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  height: var(--header-h);
  color: var(--white);
  transition: background-color .3s var(--ease), box-shadow .3s var(--ease), height .3s var(--ease);
}
.header.is-scrolled {
  height: 68px;
  background: rgba(43, 20, 8, .85);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  backdrop-filter: saturate(160%) blur(14px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, .06);
}
.header__inner { display: flex; align-items: center; gap: 36px; height: 100%; }
.header__logo { display: inline-flex; align-items: center; gap: 12px; font-family: var(--font-display); font-weight: 800; font-size: 22px; letter-spacing: -.02em; }
.header__logo img { width: 40px; height: 40px; }
.nav { display: flex; gap: 28px; font-weight: 600; font-size: 14px; }
.nav a { opacity: .85; transition: opacity .2s; padding: 6px 0; position: relative; }
.nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px;
  background: var(--orange); transform: scaleX(0); transform-origin: left; transition: transform .25s var(--ease);
}
.nav a:hover, .nav a.is-active { opacity: 1; }
.nav a:hover::after, .nav a.is-active::after { transform: scaleX(1); }
.header__cta { margin-left: auto; }
.burger {
  display: none; margin-left: auto;
  width: 44px; height: 44px; border-radius: 50%;
  align-items: center; justify-content: center;
  background: rgba(255, 255, 255, .1);
}
.burger svg { width: 22px; height: 22px; }
.burger .ic-close { display: none; }
.burger[aria-expanded="true"] .ic-menu { display: none; }
.burger[aria-expanded="true"] .ic-close { display: block; }

.mobile-menu {
  position: fixed; inset: 0; z-index: 40;
  background: var(--dark); color: var(--white);
  padding: calc(var(--header-h) + 24px) var(--gutter) 40px;
  display: flex; flex-direction: column; gap: 8px;
  transform: translateY(-8px); opacity: 0; visibility: hidden;
  transition: opacity .25s var(--ease), transform .25s var(--ease), visibility 0s .25s;
}
.mobile-menu.is-open { transform: none; opacity: 1; visibility: visible; transition-delay: 0s; }
.mobile-menu > a:not(.btn) {
  font-family: var(--font-display); font-weight: 800; font-size: 34px; letter-spacing: -.03em;
  padding: 12px 0; border-bottom: 1px solid rgba(255, 255, 255, .1);
}
.mobile-menu .btn { margin-top: 24px; align-self: flex-start; }
.mobile-menu__foot { margin-top: auto; font-size: 13px; opacity: .6; }
body.menu-open { overflow: hidden; }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background: var(--dark); color: var(--white);
  padding-top: var(--header-h);
}
.hero__bg { position: absolute; inset: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 55%; opacity: .55; }
.hero__bg::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--dark) 0%, rgba(43, 20, 8, .92) 40%, rgba(43, 20, 8, .35) 100%);
}
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(43, 20, 8, .2) 0%, rgba(43, 20, 8, 0) 30%, var(--dark) 100%);
}
.hero__inner {
  position: relative;
  display: flex; flex-wrap: wrap; align-items: center; gap: 48px;
  padding-top: 64px; padding-bottom: 96px;
}
.hero__copy { flex: 1 1 420px; min-width: 0; }
.hero__visual { flex: 0 1 auto; display: flex; justify-content: center; }
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px; border-radius: 999px;
  border: 1.5px solid rgba(255, 255, 255, .3);
  font-weight: 700; font-size: 12px; letter-spacing: .08em; text-transform: uppercase;
}
.badge__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 0 rgba(255, 90, 15, .6); animation: pulse 2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(255, 90, 15, .6); } 70% { box-shadow: 0 0 0 8px rgba(255, 90, 15, 0); } 100% { box-shadow: 0 0 0 0 rgba(255, 90, 15, 0); } }
.hero .h--xl { margin-top: 24px; }
.hero__lede { margin-top: 24px; max-width: 520px; font-weight: 500; font-size: 19px; line-height: 1.5; opacity: .8; }
.hero__actions { margin-top: 36px; display: flex; flex-wrap: wrap; gap: 12px; }
.hero__methods { margin-top: 40px; display: flex; flex-wrap: wrap; align-items: center; gap: 12px; font-weight: 600; font-size: 13px; opacity: .8; }
.tag { display: inline-flex; align-items: center; padding: 6px 12px; border-radius: 999px; font-weight: 800; font-size: 12px; line-height: 1.2; }
.tag--usdt { background: var(--usdt); color: #fff; }
.tag--visa { background: var(--visa); color: #fff; letter-spacing: .05em; }
.tag--mc { background: #fff; color: var(--dark); }

/* ---------- Phone mockup ---------- */
.phone {
  width: 300px; height: 620px; flex: none;
  border-radius: 44px;
  background: var(--cream); color: var(--dark);
  border: 8px solid var(--dark);
  overflow: hidden;
  display: flex; flex-direction: column;
  font-size: 13px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, .45);
}
.phone--hero { transform: rotate(-4deg); }
.phone--dark { background: var(--dark); color: var(--white); box-shadow: 0 30px 60px rgba(43, 20, 8, .25); }
.phone__top { background: var(--dark); color: var(--white); padding: 18px 20px 20px; border-radius: 0 0 28px 28px; }
.phone__bar { display: flex; align-items: center; height: 36px; }
.phone__bar img { width: 30px; height: 30px; }
.avatar { margin-left: auto; width: 36px; height: 36px; border-radius: 50%; background: var(--orange); color: var(--dark); display: grid; place-items: center; font-weight: 800; font-size: 12px; }
.phone__label { margin-top: 16px; font-weight: 600; font-size: 12px; opacity: .65; }
.phone__amount { margin-top: 4px; font-size: 38px; }
.phone__amount span { opacity: .45; }
.phone__actions { margin-top: 16px; display: flex; gap: 8px; }
.pill { flex: 1; height: 42px; border-radius: 999px; display: inline-flex; align-items: center; justify-content: center; gap: 6px; font-weight: 700; font-size: 13px; }
.pill svg { width: 14px; height: 14px; }
.pill--orange { background: var(--orange); color: var(--dark); }
.pill--white { background: var(--white); color: var(--dark); }
.phone__body { padding: 16px 18px 0; display: flex; flex-direction: column; gap: 6px; }
.phone__h { font-size: 17px; margin-bottom: 4px; }
.phone__h + .phone__h { margin-top: 12px; }
.acct { height: 44px; border-radius: 14px; background: var(--white); display: flex; align-items: center; padding: 0 14px; gap: 10px; font-weight: 700; }
.acct__ic { width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center; font-weight: 800; font-size: 13px; color: #fff; }
.acct__ic--usd { background: var(--dark); }
.acct__ic--eur { background: var(--orange); color: var(--dark); }
.acct__ic--usdt { background: var(--usdt); }
.acct b { margin-left: auto; font-family: var(--font-display); font-weight: 700; font-size: 15px; letter-spacing: -.02em; }
.chips { display: flex; gap: 8px; overflow: hidden; margin-top: 12px; -webkit-mask-image: linear-gradient(90deg, #000 85%, transparent); mask-image: linear-gradient(90deg, #000 85%, transparent); }
.chip { flex: none; width: 64px; height: 68px; border-radius: 16px; background: var(--white); padding: 10px; display: flex; flex-direction: column; font-weight: 700; font-size: 11px; }
.chip--dark { background: var(--dark); color: var(--white); }
.chip::before { content: ""; width: 16px; height: 16px; border-radius: 50%; background: var(--orange); }
.chip span { margin-top: auto; }
.geo { margin-top: 8px; height: 70px; border-radius: 18px; position: relative; overflow: hidden; color: var(--white); }
.geo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 35%; }
.geo::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(43, 20, 8, .85), rgba(43, 20, 8, .15)); }
.geo__in { position: relative; padding: 12px 14px; }
.geo__city { font-weight: 700; font-size: 10px; color: var(--orange); }
.geo__rate { margin-top: 2px; font-size: 15px; }

/* KYC phone */
.kyc__bar { padding: 18px 20px; display: flex; align-items: center; gap: 10px; height: 36px; }
.kyc__back { width: 32px; height: 32px; border-radius: 50%; background: rgba(255, 255, 255, .15); flex: none; }
.kyc__steps { flex: 1; display: flex; gap: 5px; }
.kyc__steps i { flex: 1; height: 5px; border-radius: 3px; background: rgba(255, 255, 255, .2); }
.kyc__steps i.done { background: var(--orange); }
.kyc__title { margin-top: 20px; padding: 0 20px; font-size: 26px; }
.kyc__hint { margin-top: 8px; padding: 0 20px; font-weight: 500; font-size: 12px; line-height: 1.5; opacity: .7; }
.kyc__cam { margin-top: 28px; position: relative; height: 190px; overflow: hidden; background: repeating-linear-gradient(135deg, #3a2216 0 10px, #32190f 10px 20px); }
.kyc__frame { position: absolute; inset: 18px 20px; border-radius: 18px; border: 3px solid var(--orange); box-shadow: 0 0 0 999px rgba(43, 20, 8, .6); }
.kyc__frame::after {
  content: ""; position: absolute; left: 6px; right: 6px; top: 0; height: 2px; background: var(--orange); opacity: .9;
  animation: scan 2.4s ease-in-out infinite;
}
@keyframes scan { 0% { top: 4%; } 50% { top: 92%; } 100% { top: 4%; } }
.kyc__status { margin-top: 20px; display: flex; justify-content: center; }
.kyc__status span { padding: 8px 14px; border-radius: 999px; background: var(--orange); color: var(--dark); font-weight: 700; font-size: 11px; }
.kyc__shutter { margin-top: auto; padding: 0 0 26px; display: flex; justify-content: center; }
.kyc__shutter i { width: 64px; height: 64px; border-radius: 50%; background: #fff; display: grid; place-items: center; }
.kyc__shutter i::after { content: ""; width: 50px; height: 50px; border-radius: 50%; border: 3px solid var(--dark); }

/* ---------- Steps ("How it works") ---------- */
.steps { margin-top: 56px; display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.step { border-radius: var(--radius-lg); padding: 32px; display: flex; flex-direction: column; min-height: 420px; }
.step--cream { background: var(--cream); }
.step--dark { background: var(--dark); color: var(--white); }
.step--orange { background: var(--orange); color: var(--dark); }
.step__num { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; font-size: 18px; }
.step--cream .step__num, .step--orange .step__num { background: var(--dark); color: var(--orange); }
.step--dark .step__num { background: var(--orange); color: var(--dark); }
.step__title { margin-top: 24px; font-size: 28px; }
.step__text { margin-top: 12px; font-weight: 500; font-size: 15px; line-height: 1.55; color: var(--muted); }
.step--dark .step__text { color: rgba(255, 255, 255, .75); }
.step--orange .step__text { color: var(--dark); }
.step__visual { margin-top: auto; padding-top: 28px; }

.ring-wrap { display: flex; justify-content: center; }
.ring { position: relative; width: 180px; height: 180px; border-radius: 50%; display: grid; place-items: center; font-weight: 700; font-size: 14px; color: var(--muted); text-align: center; }
.ring::before {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  border: 10px solid var(--peach); border-top-color: var(--orange);
  animation: spin 1.6s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.methods { display: flex; flex-direction: column; gap: 8px; }
.method { height: 60px; border-radius: 18px; background: rgba(255, 255, 255, .08); display: flex; align-items: center; padding: 0 16px; gap: 12px; font-weight: 700; font-size: 15px; }
.method__ic { width: 36px; height: 36px; border-radius: 50%; display: grid; place-items: center; font-weight: 800; font-size: 16px; color: #fff; flex: none; }
.method__ic--usdt { background: var(--usdt); }
.method__ic--visa { background: var(--visa); font-size: 9px; letter-spacing: .05em; }
.method__ic--mc { background: #fff; }
.mc { display: flex; }
.mc i { width: 14px; height: 14px; border-radius: 50%; background: var(--mc-red); }
.mc i + i { background: var(--mc-orange); margin-left: -5px; }
.method__fee { margin-left: auto; font-weight: 600; font-size: 12px; opacity: .6; }

.receipt { border-radius: var(--radius-md); background: var(--white); padding: 20px; }
.receipt__merchant { font-weight: 600; font-size: 12px; color: var(--muted); }
.receipt__sum { margin-top: 4px; font-size: 40px; }
.receipt__row { margin-top: 12px; display: flex; justify-content: space-between; font-weight: 600; font-size: 13px; }
.receipt__row + .receipt__row { margin-top: 6px; }
.receipt__row span:first-child { color: var(--muted); }
.receipt__pay { margin-top: 14px; height: 46px; border-radius: 999px; background: var(--orange); display: grid; place-items: center; font-weight: 700; font-size: 14px; }

/* ---------- Photo cards ---------- */
.places { margin-top: 48px; display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px; }
.photo-card {
  position: relative; overflow: hidden; border-radius: var(--radius-lg); color: var(--white);
  min-height: 460px; display: flex; align-items: flex-end;
  isolation: isolate;
}
.photo-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform .8s var(--ease); }
.photo-card:hover img { transform: scale(1.04); }
.photo-card::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(43, 20, 8, 0) 40%, rgba(43, 20, 8, .9)); }
.photo-card__in { padding: 24px; }
.photo-card__title { font-size: 30px; }
.photo-card__sub { margin-top: 8px; font-weight: 600; font-size: 14px; opacity: .8; }

/* ---------- Fees ---------- */
.fees { display: flex; flex-wrap: wrap; align-items: center; gap: 40px; }
.fees__copy { flex: 1 1 380px; }
.fees__copy .eyebrow { color: var(--dark); }
.fees__copy .lede { color: var(--dark); margin-top: 20px; max-width: 460px; }
.fees__grid { flex: 1 1 380px; display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 12px; }
.stat { border-radius: var(--radius-md); background: var(--dark); color: var(--white); padding: 24px; }
.stat__val { font-size: 44px; }
.stat__label { margin-top: 6px; font-weight: 600; font-size: 14px; opacity: .7; }

.calc {
  margin-top: 56px;
  border-radius: var(--radius-lg); background: var(--dark); color: var(--white);
  padding: clamp(24px, 4vw, 40px);
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 32px; align-items: center;
}
.calc__title { font-size: 28px; }
.calc__hint { margin-top: 8px; font-weight: 500; font-size: 14px; opacity: .65; max-width: 420px; }
.calc__form { margin-top: 24px; display: grid; grid-template-columns: 1fr auto; gap: 10px; }
.field { position: relative; display: flex; align-items: center; height: 60px; border-radius: 999px; background: rgba(255, 255, 255, .08); border: 2px solid transparent; padding: 0 22px; gap: 10px; transition: border-color .2s; }
.field:focus-within { border-color: var(--orange); }
.field__prefix { font-family: var(--font-display); font-weight: 700; font-size: 20px; opacity: .6; }
.field input { flex: 1; min-width: 0; background: transparent; border: 0; outline: 0; font-family: var(--font-display); font-weight: 700; font-size: 22px; letter-spacing: -.02em; color: #fff; -moz-appearance: textfield; }
.field input::-webkit-outer-spin-button, .field input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.seg { display: inline-flex; background: rgba(255, 255, 255, .08); border-radius: 999px; padding: 4px; height: 60px; }
.seg button { padding: 0 18px; border-radius: 999px; font-weight: 700; font-size: 14px; opacity: .7; transition: background-color .2s, color .2s, opacity .2s; }
.seg button[aria-pressed="true"] { background: var(--orange); color: var(--dark); opacity: 1; }
.calc__out { border-radius: var(--radius-md); background: var(--white); color: var(--dark); padding: 24px; }
.calc__out .receipt__sum { font-size: clamp(36px, 4vw, 48px); }
.calc__disclaimer { grid-column: 1 / -1; font-size: 12px; opacity: .5; margin-top: -8px; }

/* ---------- Services bento ---------- */
.bento { margin-top: 48px; display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 260px; gap: 16px; }
.bento__item { position: relative; overflow: hidden; border-radius: var(--radius-lg); min-width: 0; display: flex; flex-direction: column; padding: 28px; isolation: isolate; }
.bento__item--wide { grid-column: span 2; }
.bento__item--photo { color: var(--white); justify-content: flex-end; }
.bento__item--photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform .8s var(--ease); }
.bento__item--photo:hover img { transform: scale(1.04); }
.bento__item--photo::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(43, 20, 8, 0) 40%, rgba(43, 20, 8, .9)); }
.bento__item--wide.bento__item--photo::before { background: linear-gradient(90deg, rgba(43, 20, 8, .85), rgba(43, 20, 8, .1)); }
.bento__item--dark { background: var(--dark); color: var(--white); }
.bento__item--cream { background: var(--cream); }
.bento__tag { display: inline-flex; align-self: flex-start; padding: 6px 12px; border-radius: 999px; background: var(--orange); color: var(--dark); font-weight: 700; font-size: 12px; }
.bento__tag--dark { background: var(--dark); color: var(--white); }
.bento__title { margin-top: auto; font-size: 26px; padding-top: 12px; }
.bento__item--wide .bento__title { font-size: 32px; max-width: 380px; }
.bento__item--dark .bento__title, .bento__item--cream .bento__title { margin-top: auto; }

/* ---------- Security ---------- */
.security { display: flex; flex-wrap: wrap; align-items: center; gap: 56px; }
.security__visual { flex: 0 1 auto; display: flex; justify-content: center; margin: 0 auto; }
.security__copy { flex: 1 1 380px; min-width: 0; }
.checklist { margin-top: 36px; }
.checklist li { display: flex; gap: 18px; padding: 20px 0; border-top: 2px solid var(--line); }
.checklist li:last-child { border-bottom: 2px solid var(--line); }
.check { flex: none; width: 36px; height: 36px; border-radius: 50%; background: var(--dark); color: var(--orange); display: grid; place-items: center; }
.check svg { width: 16px; height: 16px; }
.checklist h3 { font-weight: 700; font-size: 17px; }
.checklist p { margin-top: 4px; font-weight: 500; font-size: 15px; line-height: 1.5; color: var(--muted); }

/* ---------- FAQ ---------- */
.faq { margin-top: 48px; max-width: 820px; }
.faq details { border-top: 2px solid var(--line); }
.faq details:last-child { border-bottom: 2px solid var(--line); }
.faq summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 22px 0; font-weight: 700; font-size: 18px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .plus { flex: none; width: 32px; height: 32px; border-radius: 50%; background: var(--cream); display: grid; place-items: center; transition: transform .3s var(--ease), background-color .3s; }
.faq summary .plus svg { width: 14px; height: 14px; }
.faq details[open] summary .plus { transform: rotate(45deg); background: var(--orange); }
.faq .faq__body { padding: 0 60px 24px 0; font-weight: 500; font-size: 15px; line-height: 1.6; color: var(--muted); }

/* ---------- CTA ---------- */
.cta {
  border-radius: var(--radius-xl); background: var(--orange); color: var(--dark);
  padding: clamp(40px, 6vw, 80px);
  display: flex; flex-wrap: wrap; align-items: center; gap: 32px;
}
.cta__copy { flex: 1 1 360px; }
.cta__copy .h { font-size: clamp(40px, 5.5vw, 72px); }
.cta__copy p { margin-top: 16px; font-weight: 500; font-size: 18px; line-height: 1.5; max-width: 440px; }
.cta__actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* ---------- Footer ---------- */
.footer { background: var(--dark); color: var(--white); padding: clamp(72px, 9vw, 110px) 0 40px; }
.footer__grid { margin-top: 72px; display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 32px; }
.footer__brand p { margin-top: 16px; font-weight: 500; font-size: 14px; line-height: 1.55; opacity: .65; max-width: 300px; }
.footer__brand .header__logo img { width: 36px; height: 36px; }
.footer h4 { font-weight: 700; font-size: 13px; letter-spacing: .1em; text-transform: uppercase; opacity: .5; margin-bottom: 16px; }
.footer li + li { margin-top: 10px; }
.footer li a { font-weight: 600; font-size: 15px; opacity: .85; transition: opacity .2s, color .2s; }
.footer li a:hover { opacity: 1; color: var(--orange); }
.footer__bottom { margin-top: 56px; padding-top: 24px; border-top: 1px solid rgba(255, 255, 255, .1); display: flex; flex-wrap: wrap; align-items: center; gap: 12px 24px; font-weight: 600; font-size: 13px; opacity: .6; }
.footer__bottom .right { margin-left: auto; }
.footer__note { margin-top: 20px; font-size: 12px; line-height: 1.6; opacity: .4; max-width: 820px; }

/* ---------- Legal pages ---------- */
.page-head { background: var(--dark); color: var(--white); padding: calc(var(--header-h) + 56px) 0 64px; }
.page-head .h { margin-top: 14px; }
.page-head .meta { margin-top: 16px; font-weight: 600; font-size: 14px; opacity: .6; }
.legal { padding: 64px 0 110px; }
.legal__grid { display: grid; grid-template-columns: 240px 1fr; gap: 56px; align-items: start; }
.toc { position: sticky; top: 100px; }
.toc a { display: block; padding: 8px 0; font-weight: 600; font-size: 14px; color: var(--muted); border-left: 2px solid var(--line); padding-left: 14px; transition: color .2s, border-color .2s; }
.toc a:hover, .toc a.is-active { color: var(--dark); border-color: var(--orange); }
.prose { max-width: 720px; }
.prose h2 { font-family: var(--font-display); font-weight: 800; letter-spacing: -.03em; font-size: 30px; margin: 48px 0 16px; scroll-margin-top: 100px; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-weight: 700; font-size: 18px; margin: 28px 0 10px; }
.prose p, .prose li { font-weight: 500; font-size: 16px; line-height: 1.65; color: #4a3f38; }
.prose p + p { margin-top: 14px; }
.prose ul { list-style: disc; padding-left: 22px; margin: 12px 0; }
.prose li + li { margin-top: 6px; }
.prose a { color: var(--orange-dark); text-decoration: underline; text-underline-offset: 3px; }
.prose .callout { margin: 24px 0; padding: 20px 24px; border-radius: var(--radius-sm); background: var(--orange-soft); border-left: 4px solid var(--orange); }

/* ---------- 404 ---------- */
.notfound { min-height: 100vh; background: var(--dark); color: var(--white); display: grid; place-items: center; text-align: center; padding: 120px var(--gutter) 60px; }
.notfound__code { font-size: clamp(80px, 18vw, 200px); color: var(--orange); line-height: .9; }
.notfound p { margin: 20px auto 0; max-width: 420px; font-weight: 500; font-size: 18px; opacity: .75; }

/* ---------- Scroll reveal ---------- */
.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js .reveal.is-in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .1s; }
.reveal[data-delay="2"] { transition-delay: .2s; }
.reveal[data-delay="3"] { transition-delay: .3s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .bento { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .calc { grid-template-columns: 1fr; }
  .legal__grid { grid-template-columns: 1fr; gap: 32px; }
  .toc { position: static; display: flex; flex-wrap: wrap; gap: 4px 16px; }
  .toc a { border-left: 0; padding-left: 0; }
}
@media (max-width: 880px) {
  .nav, .header__cta { display: none; }
  .burger { display: inline-flex; }
}
@media (max-width: 760px) {
  :root { --gutter: 20px; --header-h: 72px; }
  .hero__inner { padding-top: 40px; padding-bottom: 72px; gap: 40px; }
  .hero__visual { width: 100%; }
  .phone--hero { transform: none; }
  .phone { width: 280px; height: 580px; }
  .h--xl { font-size: clamp(42px, 12vw, 64px); }
  .hero__lede { font-size: 17px; }
  .btn { padding: 16px 24px; font-size: 15px; white-space: normal; text-align: center; line-height: 1.25; }
  .hero__actions .btn { flex: 1 1 auto; }
  .step { min-height: 0; padding: 28px 24px; }
  .step__title { font-size: 26px; }
  .photo-card { min-height: 380px; }
  .bento { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .bento__item--wide { grid-column: auto; }
  .bento__item--wide .bento__title { font-size: 26px; }
  .stat__val { font-size: 38px; }
  .calc__form { grid-template-columns: 1fr; }
  .seg { width: 100%; }
  .seg button { flex: 1; }
  .faq summary { font-size: 16px; padding: 18px 0; }
  .faq .faq__body { padding-right: 0; }
  .cta__actions { width: 100%; }
  .cta__actions .btn { flex: 1 1 auto; }
  .footer__grid { grid-template-columns: 1fr; gap: 28px; margin-top: 48px; }
  .footer__bottom .right { margin-left: 0; }
  .prose h2 { font-size: 26px; }
}
@media (max-width: 400px) {
  .phone { width: 260px; height: 540px; }
}

/* ---------- Inner pages ---------- */
.header--solid { height: 68px; background: var(--dark); box-shadow: 0 1px 0 rgba(255, 255, 255, .06); }
.header--solid + .mobile-menu { padding-top: calc(68px + 24px); }
.footer--compact { padding-top: clamp(56px, 7vw, 80px); }

/* ---------- Guide page ---------- */
.page-head--guide .lede { color: rgba(255, 255, 255, .75); margin-top: 18px; max-width: 640px; }
.guide-nav { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }
.guide-nav a { padding: 10px 16px; border-radius: 999px; border: 1.5px solid rgba(255, 255, 255, .25); font-weight: 700; font-size: 13px; transition: border-color .2s, color .2s, background-color .2s; }
.guide-nav a:hover { border-color: var(--orange); color: var(--orange); }
.guide-part { padding: clamp(56px, 7vw, 88px) 0; scroll-margin-top: 68px; }
.guide-part + .guide-part { border-top: 2px solid var(--line); }
.part-head { display: grid; grid-template-columns: 110px 1fr; gap: 24px; align-items: start; }
.part-num { font-size: 72px; color: var(--orange); letter-spacing: -.05em; line-height: .9; }
.part-head h2 { font-size: clamp(30px, 3.6vw, 44px); }
.part-head .lede { margin-top: 12px; max-width: 640px; }
.part-head .lede a { color: var(--orange-dark); text-decoration: underline; text-underline-offset: 3px; }
.part-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.part-meta span { padding: 6px 12px; border-radius: 999px; background: var(--cream); font-weight: 700; font-size: 12px; color: var(--muted); }

.shots-wrap { position: relative; margin-top: 40px; }
.shots { display: flex; gap: 20px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 4px 4px 12px; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
.shots::-webkit-scrollbar { display: none; }
.shot { flex: none; width: 220px; margin: 0; scroll-snap-align: start; display: flex; flex-direction: column; }
.shot__tag { align-self: flex-start; margin-bottom: 10px; padding: 4px 10px; border-radius: 999px; background: var(--orange); color: var(--dark); font-weight: 800; font-size: 11px; }
.shot__tag--usdt { background: var(--usdt); color: #fff; }
.shots:has(.shot__tag) .shot:not(:has(.shot__tag)) .shot__frame { margin-top: 32px; }
.shot__frame {
  display: block; width: 100%; position: relative; overflow: hidden;
  border-radius: 30px; border: 5px solid var(--dark); background: var(--dark);
  aspect-ratio: 390 / 844; box-shadow: 0 20px 40px rgba(43, 20, 8, .15);
  cursor: zoom-in; transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.shot__frame:hover { transform: translateY(-4px); box-shadow: 0 28px 50px rgba(43, 20, 8, .22); }
.shot__frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.shot__cap { margin: 14px 0 0; display: flex; gap: 10px; align-items: flex-start; }
.shot__num { flex: none; width: 24px; height: 24px; border-radius: 50%; background: var(--dark); color: var(--orange); font-family: var(--font-display); font-weight: 800; font-size: 12px; display: grid; place-items: center; margin-top: 1px; }
.shot__cap p { font-weight: 700; font-size: 14px; line-height: 1.4; }
.shot__cap small { display: block; margin-top: 3px; font-weight: 500; font-size: 13px; line-height: 1.45; color: var(--muted); }
.shots-nav { position: absolute; top: -64px; right: 0; display: flex; gap: 8px; z-index: 2; }
.shots-nav button { width: 44px; height: 44px; border-radius: 50%; border: 2px solid var(--line); background: #fff; display: grid; place-items: center; transition: border-color .2s, background-color .2s, color .2s; }
.shots-nav button:hover { border-color: var(--dark); }
.shots-nav button:disabled { opacity: .3; cursor: default; }
.shots-nav button:disabled:hover { border-color: var(--line); }
.shots-nav button svg { width: 18px; height: 18px; }
.shots-wrap[data-scrollable="false"] .shots-nav { display: none; }
.shots-wrap[data-scrollable="true"]::after { content: ""; position: absolute; top: 0; right: 0; bottom: 0; width: 60px; background: linear-gradient(90deg, rgba(255, 255, 255, 0), #fff); pointer-events: none; }
.shots-wrap[data-scrollable="true"][data-at-end="true"]::after { display: none; }

.tips { margin-top: 32px; display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 12px; }
.tip { border-radius: var(--radius-sm); background: var(--cream); padding: 18px 20px; }
.tip--orange { background: var(--orange-soft); }
.tip b { display: block; font-weight: 700; font-size: 14px; }
.tip p { margin-top: 4px; font-weight: 500; font-size: 14px; line-height: 1.5; color: var(--muted); }
.tip a { color: var(--orange-dark); text-decoration: underline; text-underline-offset: 3px; }

.lightbox { border: 0; padding: 0; background: transparent; max-width: none; max-height: none; width: 100vw; height: 100vh; }
.lightbox[open] { display: grid; place-items: center; }
.lightbox::backdrop { background: rgba(43, 20, 8, .88); }
.lightbox__in { display: flex; flex-direction: column; align-items: center; }
.lightbox__frame { height: min(844px, 84vh); aspect-ratio: 390 / 844; border-radius: 40px; border: 6px solid var(--dark); overflow: hidden; background: var(--dark); box-shadow: 0 40px 80px rgba(0, 0, 0, .5); }
.lightbox__frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.lightbox__cap { margin-top: 14px; color: #fff; font-weight: 600; font-size: 15px; text-align: center; max-width: 420px; padding: 0 20px; }
.lightbox__close { position: fixed; top: 20px; right: 20px; width: 48px; height: 48px; border-radius: 50%; background: #fff; color: var(--dark); display: grid; place-items: center; }
.section__more { margin-top: 32px; }

@media (max-width: 760px) {
  .part-head { grid-template-columns: 1fr; gap: 12px; }
  .part-num { font-size: 56px; }
  .shots { gap: 14px; margin: 0 calc(-1 * var(--gutter)); padding: 4px var(--gutter) 12px; scroll-padding-left: var(--gutter); }
  .shot { width: 200px; }
  .shots-nav { display: none; }
  .shots-wrap[data-scrollable="true"]::after { display: none; }
  .lightbox__frame { height: min(844px, 78vh); }
}

/* ---------- Language switcher & i18n ---------- */
.header__right { margin-left: auto; display: flex; align-items: center; gap: 10px; }
.header__cta { margin-left: 0; }
.burger { margin-left: 12px; }
.lang { position: relative; }
.lang summary {
  list-style: none; cursor: pointer;
  display: inline-flex; align-items: center; gap: 6px;
  height: 40px; padding: 0 14px; border-radius: 999px;
  border: 1.5px solid rgba(255, 255, 255, .3);
  font-weight: 700; font-size: 13px; letter-spacing: .04em;
  transition: border-color .2s, background-color .2s;
}
.lang summary::-webkit-details-marker { display: none; }
.lang summary:hover { border-color: rgba(255, 255, 255, .7); }
.lang summary svg { width: 12px; height: 12px; transition: transform .2s var(--ease); }
.lang[open] summary svg { transform: rotate(180deg); }
.lang__list {
  position: absolute; top: calc(100% + 8px); right: 0; z-index: 60;
  min-width: 170px; margin: 0; padding: 6px;
  background: var(--white); color: var(--dark);
  border-radius: 16px; box-shadow: 0 20px 50px rgba(43, 20, 8, .25);
}
.lang__list a { display: block; padding: 10px 12px; border-radius: 10px; font-weight: 600; font-size: 14px; transition: background-color .15s; }
.lang__list a:hover { background: var(--cream); }
.lang__list .is-current a { color: var(--orange-dark); font-weight: 800; }
.mobile-menu__langs, .footer__langs { display: flex; flex-wrap: wrap; gap: 8px; }
.mobile-menu__langs { margin-top: 24px; }
.footer__langs { margin-top: 48px; }
.mobile-menu__langs a, .footer__langs a {
  padding: 9px 14px; border-radius: 999px;
  border: 1.5px solid rgba(255, 255, 255, .25);
  font-weight: 700; font-size: 13px; opacity: .85;
  transition: border-color .2s, opacity .2s;
}
.mobile-menu__langs a:hover, .footer__langs a:hover { opacity: 1; border-color: rgba(255, 255, 255, .7); }
.mobile-menu__langs a.is-current, .footer__langs a.is-current { background: var(--orange); color: var(--dark); border-color: var(--orange); opacity: 1; }
.footer--compact .footer__grid { margin-top: 0; }
/* Bricolage Grotesque has no Cyrillic: use Manrope for Russian display text so Latin and Cyrillic glyphs match */
html[lang="ru"] { --font-display: "Manrope", system-ui, sans-serif; }
html[lang="ru"] .h { letter-spacing: -.03em; }
html[lang="ru"] .h--xl { font-size: clamp(42px, 6vw, 76px); }
html[lang="de"] .h--xl { font-size: clamp(42px, 6.2vw, 78px); }
@media (max-width: 880px) {
  .header__right { gap: 0; }
}
@media (max-width: 400px) {
  .lang summary { padding: 0 10px; height: 36px; }
}
/* long single-word titles (e.g. German) must never widen the mobile viewport */
.page-head .h, .prose h2, .prose h3, .part-head h2 { overflow-wrap: anywhere; }
