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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: #080d15;
  color: #f8fafc;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input {
  font: inherit;
}

button {
  color: inherit;
}

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

/* ---------- GLOBAL ---------- */
.page-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #f5b942, #f97316, #38bdf8);
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 13px;
  font-size: 13px;
  font-weight: 700;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

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

.button-primary {
  background: linear-gradient(135deg, #f3c86b, #df9b2b);
  color: #111827;
  box-shadow: 0 14px 34px rgba(223, 155, 43, .22);
}

.button-dark {
  border-color: rgba(255,255,255,.1);
  background: #151c27;
  color: #fff;
}

.button-muted {
  border-color: rgba(255,255,255,.08);
  background: rgba(255,255,255,.06);
}

.button-telegram {
  background: linear-gradient(135deg, #38bdf8, #0284c7);
  color: #fff;
}

/* ---------- LOADER ---------- */
.site-loader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #060a10;
  transition: opacity .6s ease, visibility .6s ease;
}

.site-loader.is-hidden {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.loader-atmosphere {
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(circle at 30% 30%, rgba(243,200,107,.14), transparent 28%),
    radial-gradient(circle at 70% 65%, rgba(56,189,248,.10), transparent 30%);
  animation: loaderAtmosphere 7s ease-in-out infinite;
}

.loader-panel {
  position: relative;
  z-index: 2;
  width: min(470px, calc(100% - 32px));
  text-align: center;
}

.loader-symbol-wrap {
  position: relative;
  display: grid;
  width: 210px;
  height: 210px;
  margin: 0 auto 24px;
  place-items: center;
}

.loader-symbol {
  position: relative;
  z-index: 3;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 55px rgba(243,200,107,.25);
  animation: loaderLogoFloat 3s ease-in-out infinite;
}

.loader-ring {
  position: absolute;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 50%;
}

.loader-ring-a {
  inset: 0;
  border-top-color: #f3c86b;
  animation: rotateClockwise 8s linear infinite;
}

.loader-ring-b {
  inset: 30px;
  border-right-color: #38bdf8;
  border-style: dashed;
  animation: rotateCounter 6s linear infinite;
}

.loader-ring-c {
  inset: 62px;
  border-bottom-color: #f97316;
  animation: loaderPulse 2.4s ease-in-out infinite;
}

.loader-overline {
  margin: 0;
  color: #e7bc62;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.2px;
}

.loader-panel h1 {
  margin: 10px 0 6px;
  font-size: clamp(28px, 6vw, 38px);
  line-height: 1.1;
}

.loader-message {
  margin: 0 0 20px;
  color: #9ca3af;
}

.loader-progress-track {
  height: 7px;
  overflow: hidden;
  border-radius: 99px;
  background: #1d2633;
}

.loader-progress-track span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, #f3c86b, #f97316, #38bdf8);
}

.loader-percent {
  display: block;
  margin-top: 10px;
}

/* ---------- HEADER ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  transition: background .25s ease, border-color .25s ease;
}

.site-header.is-scrolled {
  border-bottom: 1px solid rgba(255,255,255,.06);
  background: rgba(6,10,16,.9);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  height: 78px;
  align-items: center;
  gap: 24px;
}

.site-brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 11px;
}

.site-brand img {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  border-radius: 50%;
  object-fit: cover;
}

.site-brand span {
  display: flex;
  flex-direction: column;
}

.site-brand strong {
  font-size: 20px;
  line-height: 1.15;
}

.site-brand small {
  margin-top: 3px;
  color: #94a3b8;
  font-size: 9px;
}

.site-nav {
  display: flex;
  margin-left: auto;
  align-items: center;
  gap: 22px;
}

.site-nav a {
  color: #cbd5e1;
  font-size: 13px;
}

.header-actions {
  display: flex;
  gap: 8px;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  margin-left: auto;
  padding: 9px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  border-radius: 99px;
  background: #fff;
}

/* ---------- HERO ---------- */
.hero-section {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding: 138px 0 70px;
  background:
    radial-gradient(circle at 80% 24%, rgba(56,189,248,.10), transparent 31%),
    radial-gradient(circle at 15% 20%, rgba(243,200,107,.15), transparent 29%),
    linear-gradient(180deg, #172332 0%, #080d15 100%);
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 58px 58px;
}

.hero-glow {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  filter: blur(100px);
}

.hero-glow-left {
  top: 18%;
  left: -150px;
  background: rgba(243,200,107,.10);
}

.hero-glow-right {
  right: -150px;
  bottom: 5%;
  background: rgba(56,189,248,.08);
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(430px, .92fr);
  gap: 60px;
  align-items: center;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-pills > span {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 8px;
  padding: 7px 13px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 99px;
  background: rgba(15,23,42,.68);
  font-size: 11px;
  font-weight: 700;
}

.brand-pill img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
}

.status-pill i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 6px rgba(34,197,94,.1);
}

.eyebrow {
  margin: 18px 0 0;
  color: #aeb8c6;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.8px;
}

.hero-copy h1 {
  max-width: 720px;
  margin: 18px 0;
  font-size: clamp(54px, 6.4vw, 82px);
  line-height: .98;
  letter-spacing: -4px;
}

.hero-copy h1 span,
.section-heading h2 span,
.calculator-copy h2 span {
  display: block;
  background: linear-gradient(120deg, #fff, #f3c86b, #f97316, #38bdf8);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-description {
  max-width: 650px;
  margin: 0;
  color: #b7c0cb;
  font-size: 17px;
  line-height: 1.75;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 28px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.hero-stats article {
  min-width: 0;
  padding: 17px;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 16px;
  background: rgba(15,23,42,.72);
}

.hero-stats strong,
.hero-stats span {
  display: block;
}

.hero-stats strong {
  font-size: 20px;
}

.hero-stats span {
  margin-top: 4px;
  color: #94a3b8;
  font-size: 10px;
}

/* ---------- SHOWCASE ---------- */
.showcase {
  position: relative;
  display: grid;
  min-width: 0;
  height: 590px;
  place-items: center;
}

.showcase-backdrop {
  position: absolute;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(243,200,107,.12), rgba(56,189,248,.07), transparent 70%);
  filter: blur(18px);
  animation: backdropPulse 5s ease-in-out infinite;
}

.app-shot {
  position: absolute;
  overflow: hidden;
  margin: 0;
  border: 6px solid #111827;
  border-radius: 32px;
  background: #fff;
  box-shadow: 0 35px 90px rgba(0,0,0,.42);
}

.app-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.app-shot-main {
  z-index: 3;
  width: 276px;
  height: 552px;
  animation: mainPhoneFloat 5s ease-in-out infinite;
}

.app-shot-left,
.app-shot-right {
  top: 105px;
  width: 200px;
  height: 400px;
  opacity: .68;
}

.app-shot-left {
  left: 0;
  transform: rotate(-7deg);
}

.app-shot-right {
  right: 0;
  transform: rotate(7deg);
}

.showcase-label {
  position: absolute;
  z-index: 4;
  padding: 14px 18px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 15px;
  background: rgba(7,11,18,.88);
  backdrop-filter: blur(14px);
}

.showcase-label small,
.showcase-label strong {
  display: block;
}

.showcase-label small {
  color: #94a3b8;
  font-size: 9px;
}

.showcase-label strong {
  margin-top: 3px;
  font-size: 21px;
}

.showcase-rate {
  top: 65px;
  right: 2px;
}

.showcase-cashback {
  bottom: 54px;
  left: 2px;
}

/* ---------- STRIP ---------- */
.running-strip {
  overflow: hidden;
  background: linear-gradient(90deg, #f3c86b, #f97316, #38bdf8);
  color: #111827;
}

.running-strip > div {
  display: flex;
  width: max-content;
  gap: 22px;
  padding: 12px 0;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.3px;
  animation: runningText 20s linear infinite;
}

/* ---------- SECTIONS ---------- */
.content-section {
  padding: 96px 0;
  background: linear-gradient(180deg, #111925 0%, #080d15 100%);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 50px;
  text-align: center;
}

.section-heading > p:first-child {
  margin: 0;
  color: #dcb45f;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
}

.section-heading h2,
.calculator-copy h2 {
  margin: 13px 0;
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1.05;
  letter-spacing: -2px;
}

.heading-rule {
  width: 58px;
  height: 3px;
  margin: 20px auto;
  border-radius: 99px;
  background: linear-gradient(90deg, #f3c86b, #38bdf8);
}

.section-description,
.calculator-copy > p {
  margin: 0;
  color: #9ca3af;
  line-height: 1.75;
}

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

.feature-card {
  min-width: 0;
  padding: 27px;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 23px;
  background: linear-gradient(145deg, #182231, #0d141e);
  box-shadow: 0 18px 55px rgba(0,0,0,.17);
  transition: transform .25s ease;
}

.feature-card:hover {
  transform: translateY(-7px);
}

.feature-icon {
  display: grid;
  width: 56px;
  height: 56px;
  margin-bottom: 20px;
  place-items: center;
  border-radius: 17px;
  background: linear-gradient(145deg, rgba(243,200,107,.28), rgba(56,189,248,.18));
  font-size: 23px;
  font-weight: 700;
}

.feature-card h3 {
  margin: 0 0 9px;
}

.feature-card p {
  margin: 0;
  color: #9ca3af;
  font-size: 13px;
  line-height: 1.7;
}

/* ---------- CALCULATOR ---------- */
.calculator-section {
  background:
    radial-gradient(circle at 15% 35%, rgba(243,200,107,.09), transparent 30%),
    #080d15;
}

.calculator-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, .88fr);
  gap: 68px;
  align-items: center;
}

.calculator-copy code {
  padding: 2px 6px;
  border-radius: 5px;
  background: #171f2b;
  color: #f3c86b;
}

.calculator-details {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 27px;
}

.calculator-details article {
  min-width: 0;
  padding: 17px;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 15px;
  background: rgba(15,23,42,.72);
}

.calculator-details strong,
.calculator-details span {
  display: block;
}

.calculator-details span {
  margin-top: 4px;
  color: #94a3b8;
  font-size: 10px;
}

.calculator-card {
  min-width: 0;
  padding: 30px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 26px;
  background: linear-gradient(145deg, #182231, #0d141e);
}

.calculator-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}

.calculator-header small {
  color: #94a3b8;
}

.calculator-header h3 {
  margin: 4px 0 0;
  font-size: 25px;
}

.calculator-header > span {
  display: grid;
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
  place-items: center;
  border-radius: 17px;
  background: linear-gradient(145deg, #f3c86b, #38bdf8);
  color: #111827;
  font-size: 27px;
  font-weight: 700;
}

.calculator-card label {
  display: block;
  margin: 13px 0 8px;
  color: #94a3b8;
  font-size: 11px;
}

.calculator-field {
  display: flex;
  min-height: 70px;
  min-width: 0;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 0 19px;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 16px;
  background: #070b12;
}

.calculator-field input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

.calculator-field strong {
  min-width: 0;
  overflow-wrap: anywhere;
  font-size: 28px;
}

.calculator-field b {
  flex: 0 0 auto;
  color: #f3c86b;
}

.calculator-arrow {
  position: relative;
  z-index: 2;
  display: grid;
  width: 42px;
  height: 42px;
  margin: -4px auto -18px;
  place-items: center;
  border: 5px solid #182231;
  border-radius: 50%;
  background: linear-gradient(145deg, #f3c86b, #38bdf8);
  color: #111827;
  animation: arrowBob 2s ease-in-out infinite;
}

.calculator-rate {
  display: flex;
  margin-top: 20px;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 14px;
  border-radius: 14px;
  background: rgba(255,255,255,.04);
}

.calculator-rate strong {
  color: #38bdf8;
}

/* ---------- PREVIEW ---------- */
.preview-section {
  background: #060a10;
}

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

.preview-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 23px;
  background: linear-gradient(145deg, #182231, #0d141e);
  box-shadow: 0 18px 55px rgba(0,0,0,.17);
}

.preview-image {
  height: 430px;
  overflow: hidden;
  background: #fff;
}

.preview-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.preview-content {
  padding: 20px;
}

.preview-content > span {
  color: #e4b75d;
  font-size: 12px;
  font-weight: 700;
}

.preview-content h3 {
  margin: 7px 0;
}

.preview-content p {
  margin: 0;
  color: #9ca3af;
  font-size: 13px;
  line-height: 1.65;
}

/* ---------- FAQ ---------- */
.faq-section {
  background: linear-gradient(180deg, #060a10, #020407);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(0, 1.22fr);
  gap: 68px;
}

.section-heading-left {
  margin: 0;
  text-align: left;
}

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

.faq-item {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 16px;
  background: #17212e;
}

.faq-item button {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 20px;
  border: 0;
  background: transparent;
  text-align: left;
  font-weight: 700;
  cursor: pointer;
}

.faq-item button span {
  color: #f3c86b;
  font-size: 22px;
  transition: transform .25s ease;
}

.faq-item > div {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}

.faq-item p {
  margin: 0;
  padding: 0 20px 20px;
  color: #9ca3af;
  line-height: 1.7;
}

.faq-item.is-open button span {
  transform: rotate(45deg);
}

/* ---------- CTA / FOOTER ---------- */
.cta-section {
  padding: 68px 0;
  background: #020407;
}

.cta-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 34px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 27px;
  background:
    linear-gradient(135deg, rgba(243,200,107,.13), rgba(15,23,42,.96), rgba(56,189,248,.08));
}

.cta-card p {
  margin: 0;
  color: #f3c86b;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.8px;
}

.cta-card h2 {
  margin: 7px 0;
  font-size: 36px;
}

.cta-card span {
  color: #9ca3af;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.floating-telegram {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1100;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 15px 9px 9px;
  border-radius: 99px;
  background: linear-gradient(135deg, #38bdf8, #0284c7);
  box-shadow: 0 18px 48px rgba(2,132,199,.32);
  animation: floatingTelegram 3s ease-in-out infinite;
}

.floating-telegram b {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: #0284c7;
  transform: rotate(-18deg);
}

.site-footer {
  padding: 64px 0 22px;
  background: #010204;
}

.footer-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 54px;
}

.footer-brand {
  margin-bottom: 15px;
}

.footer-layout p {
  margin: 0;
  color: #7f8b9a;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-links h3 {
  margin: 0 0 5px;
  font-size: 15px;
}

.footer-links a {
  color: #9ca3af;
  font-size: 13px;
}

.footer-disclaimer {
  margin-top: 34px;
  padding: 16px;
  border-radius: 13px;
  background: rgba(255,255,255,.03);
  color: #6b7280;
  font-size: 11px;
}

.footer-bottom {
  margin-top: 19px;
  padding-top: 17px;
  border-top: 1px solid rgba(255,255,255,.06);
  color: #596270;
}

/* ---------- REVEAL ---------- */
.reveal-item {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal-item.is-visible {
  opacity: 1;
  transform: none;
}

/* ---------- ANIMATIONS ---------- */
@keyframes loaderAtmosphere {
  50% { transform: scale(1.08) translateY(-14px); }
}

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

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

@keyframes loaderPulse {
  50% { transform: scale(1.08); opacity: .55; }
}

@keyframes loaderLogoFloat {
  50% { transform: translateY(-6px); }
}

@keyframes backdropPulse {
  50% { transform: scale(1.07); opacity: .65; }
}

@keyframes mainPhoneFloat {
  50% { transform: translateY(-12px); }
}

@keyframes runningText {
  to { transform: translateX(-50%); }
}

@keyframes arrowBob {
  50% { transform: translateY(4px); }
}

@keyframes floatingTelegram {
  50% { transform: translateY(-6px); }
}

/* ---------- TABLET ---------- */
@media (max-width: 1040px) {
  .site-nav,
  .header-actions {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav.is-open {
    position: absolute;
    top: 78px;
    left: 18px;
    right: 18px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 16px;
    background: #17212e;
    box-shadow: 0 22px 55px rgba(0,0,0,.35);
  }

  .site-nav.is-open a {
    padding: 14px 18px;
    border-bottom: 1px solid rgba(255,255,255,.06);
  }

  .hero-layout,
  .calculator-layout,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-pills,
  .hero-buttons {
    justify-content: center;
  }

  .hero-description {
    margin-inline: auto;
  }

  .showcase {
    margin-top: 20px;
  }

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

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

  .section-heading-left {
    margin-inline: auto;
    text-align: center;
  }

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

  .cta-buttons {
    justify-content: center;
  }

  .footer-layout {
    grid-template-columns: 1fr 1fr;
  }
}

/* ---------- MOBILE ---------- */
@media (max-width: 680px) {
  .container {
    width: min(100% - 24px, 1160px);
  }

  .site-brand strong {
    font-size: 18px;
  }

  .site-brand small {
    display: none;
  }

  .hero-section {
    padding-top: 112px;
  }

  .hero-copy h1 {
    font-size: clamp(43px, 13vw, 58px);
    letter-spacing: -2px;
  }

  .hero-description {
    font-size: 15px;
  }

  .hero-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .hero-buttons .button {
    width: 100%;
  }

  .hero-buttons .button-telegram {
    grid-column: 1 / -1;
  }

  .hero-stats,
  .feature-grid,
  .preview-grid,
  .calculator-details,
  .footer-layout {
    grid-template-columns: 1fr;
  }

  .showcase {
    height: 490px;
  }

  .showcase-backdrop {
    width: 340px;
    height: 340px;
  }

  .app-shot-main {
    width: 232px;
    height: 464px;
  }

  .app-shot-left,
  .app-shot-right {
    top: 92px;
    width: 150px;
    height: 300px;
    opacity: .34;
  }

  .app-shot-left {
    left: -18px;
  }

  .app-shot-right {
    right: -18px;
  }

  .showcase-label {
    transform: scale(.85);
  }

  .content-section {
    padding: 74px 0;
  }

  .preview-image {
    height: 395px;
  }

  .calculator-card {
    padding: 22px;
  }

  .calculator-field strong {
    font-size: 22px;
  }

  .cta-buttons {
    display: grid;
    grid-template-columns: 1fr;
  }

  .cta-buttons .button {
    width: 100%;
  }

  .floating-telegram span {
    display: none;
  }
}

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