/* YayaPay — a small, dependency-free landing page. */
:root {
  --ink: #142e23;
  --muted: #5e6e65;
  --green: #10643c;
  --green-dark: #0c422b;
  --mint: #e8f5ed;
  --lime: #d6f590;
  --line: #dae6dd;
  --paper: #fff;
  --radius: 24px;
  --ease: cubic-bezier(.2,.7,.2,1);
}

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

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter,"Segoe UI",Arial,sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

button,input {
  font: inherit;
}

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

button {
  cursor: pointer;
}

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

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

button {
  color: inherit;
}

svg {
  display: inline-block;
  flex-shrink: 0;
}

p,h1,h2,h3 {
  margin: 0;
}

button {
  border: 0;
}

a,button,input,summary {
  touch-action: manipulation;
}

a:focus-visible,button:focus-visible,input:focus-visible,summary:focus-visible {
  outline: 3px solid #499f4d;
  outline-offset: 5px;
}

button:disabled {
  cursor: default;
}

[hidden] {
  display: none!important;
}

::selection {
  background: #d6f590;
  color: #142e23;
}

.container {
  width: min(1200px,calc(100% - 80px));
  margin-inline: auto;
}

.section {
  padding-block: 112px;
}

.icon {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 12px 20px;
  background: white;
  border: 2px solid var(--green);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.announcement {
  background: var(--green-dark);
  color: #f2faef;
  font-size: 13px;
  letter-spacing: .015em;
}

.announcement-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 37px;
}

.announcement a {
  font-weight: 600;
}

.announcement a>span:last-child {
  margin-left: 10px;
  color: var(--lime);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgb(255 255 255 / 95%);
  border-bottom: 1px solid #edf1ed;
  backdrop-filter: blur(16px);
}

.header-inner {
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 760;
  font-size: 27px;
  letter-spacing: -1.1px;
  line-height: 1;
}

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 13px;
}

.brand-pay {
  color: var(--green);
}

.brand-dot {
  color: #58a543;
}

.desktop-nav {
  display: flex;
  gap: 30px;
  align-items: center;
  margin-left: 38px;
}

.desktop-nav a {
  font-size: 14px;
  font-weight: 550;
  color: #435b4d;
  position: relative;
  padding: 8px 0;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--green);
  transition: width .25s;
}

.desktop-nav a:hover::after {
  width: 100%;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  padding: 16px 23px;
  background: var(--green);
  border: 1px solid var(--green);
  color: white;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 650;
  line-height: 1.45;
  transition: background .2s,transform .2s,box-shadow .2s;
  min-height: 54px;
}

.button:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 7px 20px #153e2418;
}

.button>span[aria-hidden] {
  font-size: 23px;
  line-height: 1;
}

.button-small {
  min-height: 46px;
  padding: 12px 18px;
  font-size: 14px;
  border-radius: 9px;
}

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

.button-outline:hover {
  background: #f0f7f1;
  box-shadow: none;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  background: var(--mint);
  border-radius: 9px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
}

.menu-toggle span {
  width: 19px;
  height: 2px;
  background: var(--green);
  transition: transform .2s;
}

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

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

.mobile-nav {
  padding: 12px 24px 22px;
  border-top: 1px solid var(--line);
}

.mobile-nav a {
  display: block;
  padding: 11px;
  font-weight: 550;
}

.hero {
  display: grid;
  grid-template-columns: 1.12fr 1fr;
  align-items: center;
  gap: 34px;
  min-height: 742px;
  padding-block: 68px 74px;
}

.hero-copy {
  padding-bottom: 12px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: .13em;
  font-weight: 700;
  color: var(--green);
  line-height: 1.5;
}

.eyebrow-line {
  width: 24px;
  height: 2px;
  background: var(--green);
}

h1 {
  font-size: clamp(48px,5.1vw,72px);
  line-height: 1.075;
  letter-spacing: -3.8px;
  font-weight: 680;
  margin-top: 23px;
  white-space: normal;
}

h1>span {
  color: var(--green);
}

.hero-description {
  font-size: 17px;
  line-height: 1.8;
  color: var(--muted);
  max-width: 470px;
  margin-top: 24px;
}

.hero-offer {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-block: 28px;
}

.hero-offer>div {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.hero-offer strong {
  font-size: 42px;
  letter-spacing: -1.5px;
  line-height: 1.3;
  font-weight: 660;
}

.hero-offer strong .offer-unit {
  font-size: 30px;
  margin-left: 2px;
}

.rupee {
  font-size: 31px;
  margin-right: 3px;
}

.hero-offer>div>span {
  color: var(--muted);
  font-size: 14px;
}

.offer-divider {
  height: 47px;
  width: 1px;
  background: #d4dfd6;
}

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

.hero-caption {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 13px;
  color: #647369;
  margin-top: 18px;
}

.hero-caption .icon {
  width: 17px;
  height: 17px;
}

.hero-caption>span {
  padding: 0 4px;
}

.offer-note {
  color: #738076;
  font-size: 12px;
  line-height: 1.6;
  max-width: 455px;
  margin-top: 16px;
}

.hero-visual {
  position: relative;
  height: 580px;
  min-width: 0;
}

.visual-backdrop {
  position: absolute;
  inset: 37px 0 2px 27px;
  border-radius: 36px;
  background: var(--green);
  overflow: hidden;
}

.backdrop-orbit {
  position: absolute;
  top: 80px;
  left: 50%;
  width: 540px;
  height: 540px;
  border: 1px solid #77b18c66;
  border-radius: 50%;
  transform: translateX(-50%);
}

.orbit-inner {
  width: 430px;
  height: 430px;
  top: 135px;
}

.backdrop-label {
  position: absolute;
  left: 24px;
  top: 26px;
  color: #eaf4e0;
  font-size: 12px;
  letter-spacing: .12em;
  font-weight: 550;
  line-height: 1.8;
}

.phone {
  display: block;
  position: relative;
  background: #16291f;
  padding: 6px;
  border: 1px solid #3f5145;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: 0 20px 48px #071b2938;
}

.phone img {
  width: 100%;
  height: auto;
  border-radius: 27px;
}

.hero-phone {
  width: 250px;
  position: absolute;
  top: 0;
  left: 48%;
  transform: translateX(-50%) rotate(5deg);
  box-shadow: 16px 23px 44px #0527134d;
  animation: phone-enter 1s var(--ease) both;
}

.reward-sticker {
  position: absolute;
  top: 119px;
  right: -16px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 17px 20px;
  background: #fff;
  border: 1px solid #e8eee8;
  border-radius: 16px;
  box-shadow: 0 14px 30px #103b2314;
  animation: float-up 5s ease-in-out infinite;
}

.sticker-symbol {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--mint);
  color: var(--green);
  font-size: 24px;
  font-weight: 600;
}

.reward-sticker>span:last-child {
  display: flex;
  flex-direction: column;
  color: #738076;
  font-size: 12px;
  line-height: 1.6;
}

.reward-sticker strong {
  font-size: 19px;
  font-weight: 650;
  letter-spacing: -.4px;
  color: var(--ink);
}

.rate-sticker {
  position: absolute;
  left: 0;
  bottom: 67px;
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--lime);
  padding: 17px 18px;
  border-radius: 14px;
  box-shadow: 0 10px 36px #12382033;
  animation: float-up 6s ease-in-out 1s infinite;
}

.token-symbol {
  border: 1px solid #5278436b;
  background: #e7ffb9;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  font-size: 27px;
  color: var(--green);
}

.rate-sticker>div:nth-child(2) {
  display: flex;
  flex-direction: column;
}

.rate-sticker>div>span {
  font-size: 12px;
  letter-spacing: .07em;
  font-weight: 650;
  color: #416831;
}

.rate-sticker strong {
  font-size: 25px;
  font-weight: 650;
  line-height: 1.3;
  letter-spacing: -.8px;
}

.rate-sticker small {
  font-size: 12px;
  font-weight: 450;
  letter-spacing: 0;
}

.rate-arrow {
  font-size: 25px;
  margin-left: 8px;
}

.visual-caption {
  position: absolute;
  bottom: 19px;
  right: 21px;
  color: #d5e7d6;
  font-size: 12px;
  letter-spacing: .03em;
}

.feature-ribbon {
  border-block: 1px solid var(--line);
  background: #f5faf6;
}

.ribbon-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
  min-height: 92px;
}

.ribbon-inner>div {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 17px;
  font-weight: 550;
  color: #2e503d;
}

.ribbon-inner .icon {
  width: 25px;
  height: 25px;
}

.ribbon-cross {
  color: #80a68b;
  font-size: 19px;
}

.ribbon-tether {
  font-size: 29px;
  line-height: 1.3;
  font-weight: 600;
}

h2 {
  font-size: clamp(34px,3.4vw,49px);
  line-height: 1.15;
  font-weight: 650;
  letter-spacing: -2px;
  margin-top: 15px;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  align-items: flex-end;
  margin-bottom: 48px;
}

.section-heading>p {
  max-width: 350px;
  color: var(--muted);
  padding-bottom: 4px;
  font-size: 16px;
  line-height: 1.8;
}

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

.step-card {
  padding: 30px 28px 27px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  transition: border-color .25s,transform .25s;
}

.step-card:hover {
  border-color: #81b293;
  transform: translateY(-4px);
}

.step-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 33px;
}

.step-number {
  font-size: 47px;
  color: #c7ddce;
  line-height: 1;
  letter-spacing: -3px;
  font-weight: 500;
}

.step-icon {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: var(--green);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.step-card h3 {
  font-size: 20px;
  font-weight: 650;
  letter-spacing: -.5px;
  line-height: 1.4;
  margin-bottom: 12px;
}

.step-card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

.step-card a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--green);
  font-size: 14px;
  font-weight: 650;
  margin-top: 24px;
}

.step-card a>span {
  font-size: 20px;
}

.step-card a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.app-section {
  background: #f3f8f4;
  border-block: 1px solid #e7f0e9;
}

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

.app-card {
  border-radius: 24px;
  background: #e4eee7;
  overflow: hidden;
  min-width: 0;
}

.app-card-featured {
  background: #d5eacd;
}

.app-card-heading {
  padding: 29px 28px 0;
}

.screen-number {
  color: #55785c;
  font-size: 12px;
  letter-spacing: .1em;
  font-weight: 650;
}

.app-card h3 {
  font-size: 21px;
  letter-spacing: -.65px;
  font-weight: 650;
  margin-top: 9px;
  line-height: 1.4;
}

.app-card p {
  font-size: 14px;
  color: #526a58;
  margin-top: 8px;
}

.screen-button {
  display: block;
  position: relative;
  background: transparent;
  width: 100%;
  height: 472px;
  padding: 26px 36px 0;
  overflow: hidden;
}

.preview-phone {
  width: 240px;
  max-width: 100%;
  margin-inline: auto;
  border-radius: 27px;
  padding: 5px;
  transition: transform .5s var(--ease);
  box-shadow: 0 14px 25px #15362323;
}

.preview-phone img {
  border-radius: 21px;
}

.screen-button:hover .preview-phone {
  transform: translateY(-8px);
}

.expand-label {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: #fffef7f5;
  border: 1px solid #dbe7db;
  border-radius: 30px;
  box-shadow: 0 4px 10px #12392016;
  display: flex;
  gap: 7px;
  align-items: center;
  padding: 9px 13px;
  font-size: 12px;
  white-space: nowrap;
}

.expand-label .icon {
  width: 15px;
  height: 15px;
}

.section-note {
  text-align: center;
  color: #748276;
  font-size: 12px;
  margin-top: 23px;
}

.calculator-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 110px;
}

.calculator-intro h2>span {
  color: var(--green);
}

.calculator-intro>p {
  color: var(--muted);
  font-size: 16px;
  margin-top: 23px;
  max-width: 415px;
  line-height: 1.8;
}

.example-note {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 30px;
  padding: 21px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  max-width: 350px;
}

.example-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  flex-shrink: 0;
  background: var(--mint);
  border-radius: 14px;
  color: var(--green);
  font-size: 27px;
}

.example-note strong {
  font-size: 14px;
  font-weight: 650;
  display: block;
  margin-bottom: 4px;
}

.example-note p {
  font-size: 17px;
  line-height: 1.65;
  color: #4f6758;
}

.calculator-intro>.calculator-disclaimer {
  font-size: 12px;
  max-width: 350px;
  line-height: 1.8;
}

.calculator-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 30px;
  box-shadow: 0 14px 50px #13362208;
}

.calculator-modes {
  display: flex;
  background: #edf4ee;
  padding: 5px;
  border: 0;
  gap: 4px;
  border-radius: 10px;
  margin: 0 0 28px;
  min-width: 0;
}

.calculator-modes label {
  width: 50%;
  position: relative;
  cursor: pointer;
}

.calculator-modes input {
  position: absolute;
  opacity: 0;
  inset: 0;
  pointer-events: none;
}

.calculator-modes span {
  display: block;
  padding: 11px 7px;
  border-radius: 7px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: #6e8271;
  transition: .2s;
}

.calculator-modes input:checked+span {
  background: white;
  color: var(--green);
  box-shadow: 0 2px 6px #213d2510;
}

.calculator-modes input:focus-visible+span {
  outline: 3px solid #499f4d;
  outline-offset: 2px;
}

.input-label {
  font-size: 14px;
  font-weight: 600;
  display: block;
  margin-bottom: 9px;
}

.amount-field {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 16px;
  border: 1px solid #b6cabc;
  border-radius: 10px;
  background: #fff;
}

.amount-field:focus-within {
  border-color: var(--green);
  box-shadow: 0 0 0 3px #e3f2e5;
}

.amount-field>span:first-child {
  font-size: 26px;
  font-weight: 500;
  color: #819488;
}

.amount-field>span:last-child {
  font-size: 12px;
  font-weight: 600;
  color: #6b816f;
}

.amount-field input {
  border: 0;
  background: transparent;
  outline: none;
  box-shadow: none;
  width: 100%;
  min-width: 0;
  padding: 4px;
  font-size: 29px;
  letter-spacing: -1px;
  color: var(--ink);
  appearance: textfield;
  -moz-appearance: textfield;
  line-height: 1.3;
}

.amount-field input::-webkit-outer-spin-button,.amount-field input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.input-help {
  font-size: 12px;
  color: #738078;
  line-height: 1.5;
  margin-top: 7px;
}

.quick-amounts {
  display: flex;
  gap: 8px;
  margin: 13px 0 24px;
}

.quick-amounts button {
  font-size: 12px;
  line-height: 1.4;
  padding: 8px 13px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 6px;
  transition: .2s;
}

.quick-amounts button:hover {
  background: var(--mint);
  border-color: #7aa087;
}

.input-error {
  font-size: 13px;
  color: #a52f32;
  padding: 0 0 15px;
}

.calculation-result {
  padding: 23px 22px;
  background: #f0f7ed;
  border: 1px solid #dfeadb;
  border-radius: 12px;
}

.calculation-result>span {
  font-size: 13px;
  color: #5d755f;
  display: block;
}

.calculation-result>output {
  display: block;
  font-size: 45px;
  letter-spacing: -1.8px;
  color: var(--green);
  font-weight: 650;
  line-height: 1.35;
  margin-top: 4px;
  overflow-wrap: anywhere;
}

.result-breakdown {
  margin-top: 18px;
  display: grid;
  gap: 9px;
  font-size: 13px;
}

.result-breakdown>div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: #637363;
}

.result-breakdown strong {
  color: #294d30;
  font-weight: 550;
  text-align: right;
}

.result-breakdown .result-total {
  border-top: 1px solid #d7e5d2;
  padding-top: 11px;
  margin-top: 3px;
  color: #38573c;
}

.result-total strong {
  font-weight: 700;
}

.calculator-cta {
  width: 100%;
  margin-top: 21px;
}

.calculator-footnote {
  font-size: 12px;
  color: #7c897c;
  text-align: center;
  margin-top: 11px;
}

.no-script-note {
  font-size: 14px;
  margin-top: 12px;
}

.faq-section {
  background: #f8faf7;
  border-block: 1px solid #ecf0e8;
}

.faq-layout {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 110px;
}

.faq-intro>p {
  color: var(--muted);
  margin-top: 21px;
  font-size: 16px;
  max-width: 285px;
  line-height: 1.8;
}

.text-link {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  color: var(--green);
  font-size: 14px;
  font-weight: 650;
  margin-top: 24px;
}

.text-link>span {
  font-size: 20px;
}

.faq-list details {
  border-bottom: 1px solid #dae3d7;
}

.faq-list details:first-child {
  border-top: 1px solid #dae3d7;
}

.faq-list summary {
  display: block;
  position: relative;
  list-style: none;
  cursor: pointer;
  padding: 24px 38px 24px 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.6;
}

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

.faq-toggle {
  position: absolute;
  width: 16px;
  height: 16px;
  right: 2px;
  top: 28px;
}

.faq-toggle::before,.faq-toggle::after {
  content: "";
  position: absolute;
  background: var(--green);
  left: 0;
  top: 7px;
  width: 14px;
  height: 1.5px;
  transition: transform .2s;
}

.faq-toggle::after {
  transform: rotate(90deg);
}

details[open] .faq-toggle::after {
  transform: rotate(0);
}

.faq-answer {
  font-size: 15px;
  line-height: 1.85;
  color: #667363;
  padding: 0 25px 24px 0;
}

.download-section {
  padding-block: 94px 72px;
}

.download-card {
  background: var(--green-dark);
  border-radius: 28px;
  padding: 60px 65px;
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 50px;
  position: relative;
  overflow: hidden;
  color: white;
}

.download-card .eyebrow {
  color: #b5d6b4;
  font-size: 12px;
}

.download-card h2 {
  font-size: 57px;
  letter-spacing: -2.2px;
  line-height: 1.05;
  color: #fff;
}

.download-copy>p {
  color: #b7d1bb;
  font-size: 16px;
  line-height: 1.7;
  margin-top: 19px;
}

.download-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 23px;
  margin-top: 29px;
}

.button-light {
  background: var(--lime);
  border-color: var(--lime);
  color: #234727;
  font-size: 14px;
}

.button-light:hover {
  background: #e3ffaf;
  border-color: #e3ffaf;
  color: var(--ink);
}

.download-register {
  font-size: 14px;
  color: #e2eddd;
  display: inline-flex;
  gap: 13px;
  align-items: center;
}

.download-register>span {
  font-size: 21px;
}

.download-meta {
  display: block;
  color: #99b89f;
  font-size: 12px;
  margin-top: 16px;
}

.download-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.download-logo-ring {
  width: 250px;
  height: 250px;
  display: grid;
  place-items: center;
  border: 1px solid #7fab7d42;
  border-radius: 50%;
  position: relative;
}

.download-logo-ring::after {
  content: "";
  position: absolute;
  inset: -25px;
  border: 1px solid #7fab7d23;
  border-radius: 50%;
}

.download-logo-ring img {
  border-radius: 40px;
  box-shadow: 0 12px 30px #061e1840;
  width: 160px;
  height: 160px;
}

.download-brand>span {
  font-size: 35px;
  font-weight: 600;
  letter-spacing: -1.8px;
  margin-top: 25px;
  line-height: 1.5;
}

.download-brand>small {
  color: #9dbea4;
  font-size: 12px;
  letter-spacing: .03em;
}

.site-footer {
  padding-bottom: 30px;
}

.footer-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-block: 14px 33px;
}

.footer-main .brand {
  font-size: 25px;
}

.footer-main nav {
  display: flex;
  gap: 28px;
  font-size: 13px;
  color: #607464;
  align-items: center;
}

.footer-privacy {
  background: none;
  font-size: 13px;
  padding: 0;
}

.back-top {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: #536d57;
  font-size: 20px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
  border-top: 1px solid var(--line);
  padding-top: 24px;
  color: #7b867c;
  font-size: 12px;
}

.mobile-action-bar {
  display: none;
}

/* Telegram stays within easy reach, above the mobile action bar. */
.telegram-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 18px;
  color: #126e9e;
  font-size: 15px;
  font-weight: 600;
}

.telegram-link:hover {
  color: #084b74;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.telegram-link .icon {
  width: 20px;
  height: 20px;
}

.telegram-float {
  position: fixed;
  right: 26px;
  bottom: 26px;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-height: 54px;
  padding: 13px 19px;
  border: 1px solid #ffffff45;
  border-radius: 30px;
  background: #087db5;
  color: #fff;
  box-shadow: 0 7px 24px #063d6040;
  font-size: 14px;
  font-weight: 600;
  animation: telegram-pulse 3.4s ease-in-out infinite;
  transition: background .2s, transform .2s;
}

.telegram-float:hover {
  background: #076591;
  transform: translateY(-3px);
}

.telegram-float .icon {
  width: 24px;
  height: 24px;
}

@keyframes telegram-pulse {
  0%, 100% { box-shadow:0 7px 24px #063d6040, 0 0 0 0 #188bbb22; }
  60% { box-shadow:0 7px 24px #063d6040, 0 0 0 8px #188bbb00; }
}

.preview-dialog,.privacy-dialog {
  border: 0;
  padding: 0;
  border-radius: 18px;
  color: var(--ink);
  box-shadow: 0 20px 80px #001c204d;
  max-height: 90vh;
  max-height: 90dvh;
}

.preview-dialog {
  width: min(440px,calc(100vw - 30px));
  background: #fff;
}

.preview-dialog>img {
  width: 100%;
  height: auto;
  padding: 8px;
}

.preview-dialog::backdrop,.privacy-dialog::backdrop {
  background: #092419bb;
  backdrop-filter: blur(6px);
}

.dialog-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 14px 18px;
  background: white;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 1;
}

.dialog-top h2 {
  margin: 0;
  font-size: 17px;
  letter-spacing: -.4px;
  line-height: 1.4;
}

.dialog-close {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  font-size: 27px;
  background: var(--mint);
  border-radius: 50%;
  line-height: 1;
}

.privacy-dialog {
  width: min(580px,calc(100vw - 32px));
}

.privacy-body {
  padding: 24px;
  font-size: 15px;
  color: #58715e;
  line-height: 1.85;
  display: grid;
  gap: 16px;
}

body.dialog-open {
  overflow: hidden;
}

.page-loader {
  position: fixed;
  inset: 0;
  background: radial-gradient(ellipse at 50% 40%, #1c7148 0%, #0c422b 45%, #06291d 100%);
  color: #fff;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .35s ease,visibility .35s ease;
}

.page-loader::before {
  content: "";
  position: absolute;
  width: min(580px, 94vw);
  height: min(580px, 94vw);
  border-radius: 50%;
  border: 1px solid #a9dca322;
  box-shadow: 0 0 0 70px #afeca607, 0 0 0 140px #afeca604;
  pointer-events: none;
}

html[data-booting="true"] .page-loader {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  animation: loader-safety 1ms linear 4500ms forwards;
}

.loader-eyebrow {
  color: #b7d6bb;
  font-size: 12px;
  font-weight: 550;
  letter-spacing: .26em;
  margin-bottom: 17px;
  z-index: 1;
}

.loader-orbit {
  width: 220px;
  height: 220px;
  display: grid;
  place-items: center;
  position: relative;
}

.loader-orbit img {
  border-radius: 28px;
  width: 104px;
  height: 104px;
  box-shadow: 0 12px 38px #00150d80;
  z-index: 1;
  animation: logo-breathe 1.2s ease-in-out infinite;
}

.orbit {
  position: absolute;
  inset: 4px;
  border: 1px solid #c7ec91a6;
  border-radius: 50%;
  transform: rotate(-30deg) scaleY(.58);
  animation: orbit-turn 3s linear infinite;
}

.orbit-two {
  transform: rotate(40deg) scaleY(.58);
  animation: orbit-turn-alt 3s linear infinite;
}

.orbit-point {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--lime);
  left: 8px;
  top: 96px;
  box-shadow: 0 0 0 5px #d6f59020, 0 0 22px #d6f59075;
}

.loader-wordmark {
  font-size: 43px;
  font-weight: 700;
  letter-spacing: -1.5px;
  line-height: 1.4;
  z-index: 1;
  margin-top: 8px;
}

.loader-wordmark>span {
  color: var(--lime);
}

.loader-caption {
  font-size: 14px;
  color: #c6ddc8;
  letter-spacing: .09em;
  margin-top: 5px;
  z-index: 1;
}

.loader-track {
  width: 164px;
  height: 3px;
  border-radius: 3px;
  background: #daefc52b;
  margin-top: 24px;
  overflow: hidden;
  z-index: 1;
}

.loader-track>span {
  display: block;
  height: 100%;
  width: 45%;
  background: var(--lime);
  border-radius: 3px;
  animation: loading-track 1s ease-in-out infinite;
}

.loader-features {
  display: flex;
  gap: 8px;
  margin-top: 22px;
  z-index: 1;
}

.loader-features span {
  border: 1px solid #c8e4b331;
  border-radius: 20px;
  padding: 5px 12px;
  color: #d8ebcd;
  font-size: 12px;
  letter-spacing: .09em;
}

.loader-skip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  margin-top: 22px;
  padding: 8px 12px;
  background: transparent;
  color: #d4e7cf;
  font-size: 13px;
  z-index: 1;
}

.loader-skip:hover,
.loader-skip:focus-visible {
  color: #fff;
}

@keyframes loader-safety {
  to {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}

@keyframes phone-enter {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(24px) rotate(7deg);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0) rotate(5deg);
  }
}

@keyframes float-up {
  0%,100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes logo-breathe {
  50% {
    transform: scale(.96);
  }
}

@keyframes orbit-turn {
  to {
    transform: rotate(330deg) scaleY(.58);
  }
}

@keyframes orbit-turn-alt {
  to {
    transform: rotate(-320deg) scaleY(.58);
  }
}

@keyframes loading-track {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(325%);
  }
}

@media(min-width:1440px) {
  .hero {
    gap: 65px;
  }
  .hero-visual {
    height: 590px;
  }
  .hero-phone {
    width: 257px;
  }
}

@media(max-width:1100px) {
  .container {
    width: calc(100% - 56px);
  }
  .desktop-nav {
    gap: 21px;
    margin-left: 0;
  }
  .hero {
    gap: 25px;
    min-height: 700px;
  }
  .hero-description {
    font-size: 16px;
  }
  .hero-visual {
    height: 550px;
  }
  .hero-phone {
    width: 228px;
    left: 50%;
    top: 15px;
  }
  .visual-backdrop {
    inset: 45px 0 15px 15px;
  }
  .reward-sticker {
    top: 126px;
    right: -9px;
    padding: 13px 14px;
    gap: 10px;
  }
  .reward-sticker strong {
    font-size: 16px;
  }
  .sticker-symbol {
    width: 34px;
    height: 34px;
    font-size: 20px;
  }
  .rate-sticker {
    left: -3px;
    bottom: 60px;
    padding: 14px 13px;
    gap: 10px;
  }
  .rate-sticker strong {
    font-size: 22px;
  }
  .rate-arrow {
    display: none;
  }
  .hero-actions {
    gap: 10px;
  }
  .hero-actions .button {
    font-size: 14px;
    padding: 14px 17px;
    gap: 10px;
  }
  .calculator-section {
    gap: 60px;
  }
  .faq-layout {
    gap: 60px;
  }
  .screen-button {
    padding-inline: 25px;
    height: 430px;
  }
  .app-card-heading {
    padding-inline: 22px;
  }
  .app-card h3 {
    font-size: 19px;
  }
  .download-card {
    padding: 50px;
    gap: 25px;
  }
  .download-actions {
    gap: 17px;
  }
  .download-register {
    font-size: 13px;
  }
}

@media(max-width:900px) {
  .desktop-nav {
    gap: 17px;
  }
  .desktop-nav a {
    font-size: 13px;
  }
  .header-inner {
    gap: 15px;
  }
  .brand {
    font-size: 24px;
  }
  .brand img {
    width: 39px;
    height: 39px;
  }
  .header-download {
    padding-inline: 13px;
    font-size: 13px;
  }
  .hero {
    grid-template-columns: 1.1fr 1fr;
    gap: 16px;
  }
  h1 {
    font-size: 48px;
    letter-spacing: -2.8px;
  }
  .hero-visual {
    height: 520px;
  }
  .hero-phone {
    width: 210px;
  }
  .visual-backdrop {
    inset: 50px 0 25px 7px;
    border-radius: 28px;
  }
  .backdrop-label {
    left: 16px;
    font-size: 12px;
  }
  .reward-sticker {
    top: 132px;
    right: -4px;
    gap: 7px;
    padding: 10px 12px;
    border-radius: 12px;
  }
  .reward-sticker>span:last-child {
    font-size: 12px;
  }
  .reward-sticker strong {
    font-size: 15px;
  }
  .rate-sticker {
    bottom: 65px;
    left: -10px;
  }
  .visual-caption {
    bottom: 35px;
    right: 15px;
    font-size: 12px;
  }
  .hero-description {
    font-size: 15px;
    line-height: 1.75;
  }
  .hero-offer {
    margin-block: 23px;
  }
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero-actions .button {
    min-width: 195px;
    justify-content: space-between;
  }
  .hero-caption {
    font-size: 12px;
  }
  .offer-note {
    max-width: 350px;
    font-size: 12px;
  }
  .ribbon-inner {
    gap: 10px;
  }
  .ribbon-inner>div {
    font-size: 14px;
    gap: 8px;
  }
  .ribbon-cross {
    font-size: 16px;
  }
  .section {
    padding-block: 88px;
  }
  .section-heading {
    gap: 40px;
  }
  .section-heading>p {
    max-width: 300px;
    font-size: 15px;
  }
  .step-card {
    padding: 25px 22px;
  }
  .steps-grid {
    gap: 17px;
  }
  .step-card h3 {
    font-size: 18px;
  }
  .step-card p {
    font-size: 14px;
  }
  .step-card a {
    font-size: 13px;
  }
  .app-grid {
    gap: 16px;
  }
  .app-card-heading {
    padding: 24px 18px 0;
  }
  .app-card h3 {
    font-size: 18px;
  }
  .app-card p {
    font-size: 13px;
    min-height: 42px;
  }
  .screen-button {
    padding: 24px 23px 0;
    height: 370px;
  }
  .calculator-section {
    gap: 36px;
  }
  .calculator-panel {
    padding: 25px;
  }
  .calculator-intro h2 {
    font-size: 39px;
  }
  .calculator-intro>p {
    font-size: 15px;
  }
  .calculator-modes span {
    font-size: 13px;
  }
  .faq-layout {
    gap: 50px;
    grid-template-columns: .85fr 1.15fr;
  }
  .faq-list summary {
    font-size: 15px;
  }
  .download-card {
    padding: 43px 39px;
  }
  .download-card h2 {
    font-size: 50px;
  }
  .download-logo-ring {
    width: 210px;
    height: 210px;
  }
  .download-logo-ring img {
    width: 138px;
    height: 138px;
  }
  .download-brand>span {
    font-size: 30px;
  }
  .footer-main nav {
    gap: 20px;
  }
  .footer-bottom {
    align-items: flex-start;
  }
  .footer-bottom p:last-child {
    max-width: 380px;
    text-align: right;
  }
}

@media(max-width:720px) {
  .telegram-float {
    width: 54px;
    height: 54px;
    right: 16px;
    bottom: calc(86px + env(safe-area-inset-bottom));
    padding: 14px;
  }
  .telegram-float>span {
    display: none;
  }
  .container {
    width: calc(100% - 40px);
  }
  .announcement-inner {
    min-height: 33px;
    font-size: 12px;
  }
  .announcement-inner>span {
    font-size: 12px;
  }
  .desktop-nav {
    display: none;
  }
  .header-inner {
    height: 75px;
  }
  .brand {
    font-size: 25px;
    letter-spacing: -1px;
  }
  .brand img {
    width: 40px;
    height: 40px;
  }
  .header-download {
    margin-left: auto;
    min-height: 40px;
    padding: 9px 13px;
    font-size: 12px;
    gap: 8px;
  }
  .header-download .icon {
    width: 16px;
    height: 16px;
  }
  .menu-toggle {
    display: flex;
  }
  .hero {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 38px;
    padding-top: 43px;
    padding-bottom: 45px;
    min-height: auto;
  }
  .hero-copy {
    padding: 0;
  }
  .eyebrow {
    font-size: 12px;
    letter-spacing: .11em;
  }
  h1 {
    font-size: clamp(44px,8.4vw,60px);
    letter-spacing: -2.8px;
    margin-top: 18px;
    line-height: 1.09;
  }
  .hero-description {
    font-size: 16px;
    max-width: 490px;
    margin-top: 19px;
    line-height: 1.75;
  }
  .hero-offer {
    margin-block: 25px;
    gap: 32px;
  }
  .hero-offer strong {
    font-size: 38px;
  }
  .hero-offer>div>span {
    font-size: 13px;
  }
  .hero-actions {
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
  }
  .hero-actions .button {
    min-width: 0;
    font-size: 14px;
    justify-content: center;
    padding: 14px 19px;
    gap: 10px;
  }
  .hero-caption {
    font-size: 12px;
    margin-top: 16px;
  }
  .offer-note {
    font-size: 12px;
    max-width: 490px;
    line-height: 1.6;
    margin-top: 13px;
  }
  .hero-visual {
    height: 534px;
    width: min(455px,100%);
    align-self: center;
    margin-top: 7px;
  }
  .visual-backdrop {
    inset: 22px 7px 0 7px;
    border-radius: 28px;
  }
  .hero-phone {
    width: 226px;
    top: 0;
    left: 49%;
    border-radius: 31px;
  }
  .hero-phone img {
    border-radius: 25px;
  }
  .reward-sticker {
    top: 105px;
    right: -2px;
    padding: 14px 15px;
    gap: 10px;
  }
  .reward-sticker>span:last-child {
    font-size: 12px;
  }
  .reward-sticker strong {
    font-size: 18px;
  }
  .sticker-symbol {
    width: 37px;
    height: 37px;
    font-size: 23px;
  }
  .rate-sticker {
    left: 0;
    bottom: 61px;
    padding: 15px 16px;
    gap: 11px;
  }
  .rate-sticker strong {
    font-size: 24px;
  }
  .rate-sticker>div>span {
    font-size: 12px;
  }
  .token-symbol {
    width: 42px;
    height: 42px;
    font-size: 25px;
  }
  .rate-arrow {
    display: block;
  }
  .backdrop-label {
    left: 19px;
    top: 26px;
    font-size: 12px;
  }
  .visual-caption {
    bottom: 18px;
    right: 23px;
    font-size: 12px;
  }
  .ribbon-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding-block: 22px;
    gap: 18px 20px;
  }
  .ribbon-cross {
    display: none;
  }
  .ribbon-inner>div {
    justify-content: center;
    font-size: 14px;
    gap: 10px;
  }
  .ribbon-inner .icon {
    width: 22px;
    height: 22px;
  }
  .ribbon-tether {
    font-size: 24px;
  }
  .section {
    padding-block: 70px;
  }
  h2 {
    font-size: 38px;
    letter-spacing: -1.7px;
  }
  .section-heading {
    display: block;
    margin-bottom: 30px;
  }
  .section-heading>p {
    margin-top: 18px;
    max-width: 400px;
    font-size: 15px;
    line-height: 1.8;
  }
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .step-card {
    padding: 27px 25px;
  }
  .step-top {
    margin-bottom: 20px;
  }
  .step-number {
    font-size: 42px;
  }
  .step-card h3 {
    font-size: 22px;
  }
  .step-card p {
    font-size: 16px;
  }
  .step-card a {
    font-size: 14px;
    margin-top: 19px;
  }
  .app-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .app-card {
    max-width: 440px;
    width: 100%;
    margin-inline: auto;
  }
  .app-card-heading {
    padding: 26px 27px 0;
  }
  .screen-number {
    font-size: 12px;
  }
  .app-card h3 {
    font-size: 23px;
  }
  .app-card p {
    font-size: 15px;
    min-height: 0;
  }
  .screen-button {
    height: 460px;
    padding: 25px 45px 0;
  }
  .preview-phone {
    width: 244px;
    border-radius: 30px;
  }
  .preview-phone img {
    border-radius: 24px;
  }
  .expand-label {
    font-size: 13px;
    bottom: 17px;
    padding: 10px 16px;
  }
  .section-note {
    font-size: 12px;
  }
  .calculator-section {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .calculator-intro h2 {
    font-size: 39px;
  }
  .calculator-intro>p {
    font-size: 16px;
    max-width: 450px;
  }
  .example-note {
    max-width: none;
    margin-top: 25px;
    padding-block: 17px;
  }
  .example-note p br {
    display: none;
  }
  .calculator-intro>.calculator-disclaimer {
    max-width: none;
    font-size: 12px;
    margin-top: 17px;
  }
  .calculator-panel {
    padding: 24px;
    border-radius: 20px;
  }
  .calculator-modes span {
    font-size: 14px;
  }
  .amount-field input {
    font-size: 31px;
  }
  .quick-amounts button {
    font-size: 13px;
    padding: 9px 14px;
  }
  .calculation-result {
    padding: 21px 20px;
  }
  .result-breakdown {
    font-size: 14px;
  }
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .faq-intro>p {
    max-width: 380px;
  }
  .faq-list summary {
    font-size: 16px;
    padding-block: 22px;
  }
  .faq-answer {
    font-size: 15px;
  }
  .download-section {
    padding-block: 60px 42px;
  }
  .download-card {
    grid-template-columns: 1fr;
    padding: 36px 28px 40px;
    border-radius: 24px;
    gap: 0;
  }
  .download-card h2 {
    font-size: 47px;
  }
  .download-card .eyebrow {
    font-size: 12px;
  }
  .download-copy>p {
    font-size: 15px;
  }
  .download-actions {
    gap: 20px;
    align-items: flex-start;
    flex-direction: column;
  }
  .download-register {
    font-size: 14px;
  }
  .download-brand {
    display: none;
  }
  .footer-main {
    flex-wrap: wrap;
    gap: 27px;
    padding-bottom: 28px;
  }
  .footer-main .brand {
    font-size: 25px;
  }
  .footer-main nav {
    order: 2;
    width: 100%;
    flex-wrap: wrap;
    gap: 22px;
    font-size: 13px;
  }
  .footer-privacy {
    font-size: 13px;
  }
  .footer-bottom {
    display: block;
    padding-top: 22px;
    line-height: 1.8;
  }
  .footer-bottom p:last-child {
    max-width: 370px;
    text-align: left;
    margin-top: 9px;
  }
  .site-footer {
    padding-bottom: 108px;
  }
  .mobile-action-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 35;
    background: rgb(255 255 255 / 96%);
    border-top: 1px solid #dae5dc;
    padding: 10px 20px calc(10px + env(safe-area-inset-bottom));
    gap: 12px;
    backdrop-filter: blur(12px);
    box-shadow: 0 -4px 24px #19422309;
  }
  .mobile-action-bar .button {
    flex: 1;
    min-height: 45px;
    font-size: 13px;
    padding: 11px 14px;
    border-radius: 8px;
    gap: 14px;
  }
  .back-top {
    margin-left: auto;
  }
  .preview-dialog,.privacy-dialog {
    max-height: 85vh;
    max-height: 85dvh;
  }
  .privacy-body {
    padding: 20px;
    font-size: 14px;
  }
}

@media(max-width:390px) {
  .container {
    width: calc(100% - 32px);
  }
  .announcement-inner>span {
    font-size: 12px;
  }
  .announcement-inner {
    font-size: 12px;
  }
  .header-inner {
    gap: 10px;
  }
  .brand {
    font-size: 22px;
    gap: 7px;
  }
  .brand img {
    width: 36px;
    height: 36px;
  }
  .header-download {
    font-size: 12px;
    padding: 9px 11px;
  }
  .header-download .icon {
    display: none;
  }
  .menu-toggle {
    width: 38px;
    height: 38px;
  }
  h1 {
    font-size: clamp(35px,10.5vw,41px);
    letter-spacing: -2.8px;
  }
  .hero-actions .button {
    padding: 13px 15px;
    font-size: 13px;
    gap: 9px;
  }
  .hero-description {
    font-size: 15px;
  }
  .hero-visual {
    height: 505px;
  }
  .hero-phone {
    width: 212px;
  }
  .reward-sticker {
    right: -1px;
    top: 112px;
    padding: 12px 10px;
    gap: 8px;
  }
  .reward-sticker strong {
    font-size: 16px;
  }
  .sticker-symbol {
    width: 32px;
    height: 32px;
    font-size: 20px;
  }
  .rate-sticker {
    padding: 12px 14px;
    bottom: 60px;
    gap: 9px;
  }
  .rate-sticker strong {
    font-size: 22px;
  }
  .rate-arrow {
    font-size: 21px;
  }
  .token-symbol {
    width: 37px;
    height: 37px;
    font-size: 24px;
  }
  .backdrop-label {
    font-size: 12px;
    left: 16px;
  }
  .visual-caption {
    font-size: 12px;
  }
  .calculator-panel {
    padding: 20px;
  }
  .calculator-modes span {
    font-size: 13px;
  }
  .calculator-modes {
    padding: 4px;
  }
  .quick-amounts {
    gap: 6px;
  }
  .quick-amounts button {
    font-size: 12px;
    padding: 8px 12px;
  }
  .calculation-result>output {
    font-size: 40px;
  }
  .result-breakdown {
    font-size: 12px;
  }
  .app-card-heading {
    padding-inline: 24px;
  }
  .screen-button {
    height: 440px;
    padding-inline: 38px;
  }
  .download-card {
    padding-inline: 25px;
  }
  .download-card h2 {
    font-size: 44px;
  }
  .footer-main nav {
    gap: 18px;
  }
}

@media(prefers-reduced-motion:reduce) {
  html {
    scroll-behavior: auto;
  }
  *,*::before,*::after {
    animation: none!important;
    transition: none!important;
  }
  .loader-track>span {
    width: 100%;
  }
  .hero-phone {
    opacity: 1;
    transform: translateX(-50%) rotate(5deg);
  }
}

@media print {
  .telegram-float {
    display: none;
  }
  .page-loader,.announcement,.site-header,.mobile-action-bar,.hero-actions,.screen-button,.download-section,dialog,.menu-toggle {
    display: none!important;
  }
  .container {
    width: 100%;
  }
  .section {
    padding-block: 25px;
  }
  .hero {
    display: block;
    min-height: 0;
    padding-block: 20px;
  }
  .hero-visual {
    display: none;
  }
  .app-grid,.steps-grid {
    display: block;
  }
  .app-card,.step-card {
    break-inside: avoid;
    margin-bottom: 15px;
  }
  .calculator-section,.faq-layout {
    display: block;
  }
  details .faq-answer {
    display: block;
  }
  .footer-main {
    display: none;
  }
  .site-footer {
    padding-bottom: 0;
  }
}
