:root {
  --bg: #151515;
  --bg-2: #1d1d1d;
  --bg-3: #272727;
  --green: #99be1d;
  --green-hover: #8bad1a;
  --green-dark: #6d8715;
  --light: #f5f9e8;
  --light-2: #faf8f4;
  --text: #ffffff;
  --text-soft: #ededed;
  --muted: #c6c6c6;
  --line: rgba(237, 237, 237, 0.14);
  --green-line: rgba(153, 190, 29, 0.35);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  --radius: 8px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: Outfit, Arial, sans-serif;
  letter-spacing: 0;
}
body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background: linear-gradient(135deg, rgba(153,190,29,.07), transparent 34%), var(--bg);
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
h1, h2, h3, p { margin: 0; }
h1, h2, h3 { font-family: Poppins, Outfit, sans-serif; letter-spacing: 0; }
.shell { width: min(calc(100% - 48px), 1240px); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
.skip-link { position: fixed; top: 8px; left: 8px; z-index: 100; transform: translateY(-150%); padding: 10px 14px; background: var(--green); color: #111; border-radius: 6px; font-weight: 700; }
.skip-link:focus { transform: translateY(0); }

.site-header { position: sticky; top: 0; z-index: 60; border-bottom: 1px solid var(--line); background: rgba(21,21,21,.92); backdrop-filter: blur(18px); }
.header-inner { display: grid; grid-template-columns: 230px 1fr auto; gap: 24px; align-items: center; min-height: 80px; }
.brand { display: inline-flex; align-items: center; min-width: 0; }
.brand img { width: 210px; height: 42px; object-fit: contain; object-position: left center; }
.brand-fallback { font-family: Poppins, sans-serif; font-weight: 700; }
.site-nav { display: flex; justify-content: center; gap: 25px; color: var(--muted); font-weight: 600; }
.site-nav a, .sign-in { transition: color .18s ease; }
.site-nav a:hover, .site-nav a:focus-visible, .sign-in:hover, .sign-in:focus-visible { color: var(--green); }
.header-tools { display: flex; align-items: center; gap: 14px; }
.language-switcher { position: relative; display: inline-flex; flex: 0 0 auto; }
.language-trigger { display: inline-flex; align-items: center; justify-content: space-between; gap: 8px; min-width: 62px; height: 38px; padding: 0 10px 0 12px; border: 1px solid var(--line); border-radius: 7px; background: rgba(255,255,255,.03); color: var(--text); font: inherit; font-size: 12px; font-weight: 700; cursor: pointer; }
.language-trigger:hover, .language-trigger[aria-expanded="true"] { border-color: rgba(153,190,29,.65); background: rgba(153,190,29,.08); }
.language-trigger svg { transition: transform .18s ease; }
.language-trigger[aria-expanded="true"] svg { transform: rotate(180deg); }
.language-menu { position: absolute; top: calc(100% + 7px); right: 0; z-index: 80; display: grid; min-width: 76px; padding: 4px; border: 1px solid var(--line); border-radius: 7px; background: #1d1d1d; box-shadow: 0 14px 34px rgba(0,0,0,.34); }
.language-menu[hidden] { display: none; }
.language-menu button { width: 100%; height: 34px; padding: 0 10px; border: 0; border-radius: 5px; background: transparent; color: var(--muted); font: inherit; font-size: 12px; font-weight: 700; text-align: left; cursor: pointer; }
.language-menu button:hover { background: rgba(255,255,255,.06); color: var(--text); }
.language-menu button.is-active { background: var(--green); color: #111; }
.footer-languages .language-menu { top: auto; bottom: calc(100% + 7px); }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 0 22px; border: 1px solid transparent; border-radius: 7px; font-weight: 700; line-height: 1.1; text-align: center; transition: transform .18s ease, background .18s ease, border-color .18s ease; }
.button:hover, .button:focus-visible { transform: translateY(-1px); }
.button-primary { background: var(--green); color: #111; }
.button-primary:hover, .button-primary:focus-visible { background: var(--green-hover); }
.button-secondary { border-color: var(--green-line); background: rgba(153,190,29,.07); color: var(--light); }
.button-secondary:hover, .button-secondary:focus-visible { border-color: var(--green); background: rgba(153,190,29,.12); }
.menu-button { display: none; width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 7px; background: var(--bg-2); align-items: center; justify-content: center; }

.hero { min-height: calc(100vh - 80px); min-height: calc(100svh - 80px); display: flex; align-items: center; padding: 48px 0 42px; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(390px, .98fr); gap: 68px; align-items: center; }
.hero-copy { display: grid; gap: 24px; }
.eyebrow { color: var(--green); font-size: 13px; font-weight: 700; text-transform: uppercase; }
h1 { max-width: 780px; font-size: clamp(48px, 5.4vw, 76px); line-height: 1.03; }
.hero-subtitle { max-width: 710px; color: var(--text-soft); font-size: 19px; line-height: 1.55; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-actions .button-primary { justify-content: space-between; gap: 22px; min-width: 280px; min-height: 66px; padding-inline: 28px; font-size: 18px; box-shadow: 0 14px 34px rgba(153,190,29,.22); }
.hero-actions .button-secondary { min-height: 52px; padding-inline: 25px; align-self: center; }
.app-access { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 15px; color: var(--muted); font-size: 13px; font-weight: 600; }
.app-access a { display: inline-flex; align-items: center; gap: 5px; color: var(--light); border-bottom: 1px solid rgba(153,190,29,.55); transition: color .18s ease, border-color .18s ease; }
.app-access a:hover, .app-access a:focus-visible { color: var(--green); border-color: var(--green); }
.app-access svg { width: 13px; height: 13px; }
.section-action { display: flex; justify-content: flex-start; margin-top: 34px; padding-top: 24px; border-top: 1px solid var(--line); }
.section-action[hidden] { display: none; }
.section-cta-button { gap: 18px; min-height: 54px; padding-inline: 24px; border-color: var(--green-line); background: rgba(153,190,29,.08); color: var(--light); }
.section-cta-button:hover, .section-cta-button:focus-visible { border-color: var(--green); background: var(--green); color: #111; }
.section-light .section-action { border-color: rgba(21,21,21,.14); }
.section-light .section-cta-button { border-color: #273014; background: #171a12; color: #fff; }
.section-light .section-cta-button:hover, .section-light .section-cta-button:focus-visible { background: var(--green); color: #111; }
.product-layout .section-action { grid-column: 1 / -1; }
.faq-layout .section-action { grid-column: 2; }
.hero-facts { display: flex; flex-wrap: wrap; gap: 8px; }
.hero-facts span { padding: 8px 11px; border: 1px solid var(--green-line); border-radius: 999px; color: var(--light); background: rgba(153,190,29,.06); font-size: 13px; font-weight: 600; }
.hero-product { display: flex; justify-content: center; min-width: 0; }

.phone-stage { position: relative; width: min(100%, 340px); padding-top: 8px; }
.phone-shell { position: relative; min-height: 620px; padding: 20px 16px 16px; border: 4px solid #303030; border-radius: 38px; background: #f7f7f4; color: #161616; box-shadow: 0 34px 80px rgba(0,0,0,.46), inset 0 0 0 2px #d9d9d6; }
.phone-speaker { width: 76px; height: 20px; margin: -8px auto 11px; border-radius: 20px; background: #050505; }
.app-bar { display: grid; grid-template-columns: 24px 1fr 24px; align-items: center; margin-bottom: 15px; font-size: 13px; text-align: center; }
.virtual-card { position: relative; z-index: 1; display: grid; align-content: space-between; min-height: 170px; padding: 18px; overflow: hidden; border: 1px solid rgba(153,190,29,.45); border-radius: 20px; background: linear-gradient(145deg, #0d0e0c, #1b1c19); color: #fff; box-shadow: 0 20px 34px rgba(0,0,0,.22); }
.card-brand img { width: 145px; height: 24px; object-fit: contain; object-position: left; }
.card-number { align-self: center; font-family: monospace; font-size: 16px; font-weight: 700; letter-spacing: 1.2px; }
.card-meta { display: flex; justify-content: space-between; align-items: end; }
.card-meta span { display: grid; gap: 2px; color: var(--green); font-size: 9px; text-transform: uppercase; }
.card-meta strong { color: #fff; font-size: 12px; }
.visa { color: var(--green) !important; font-size: 22px !important; font-style: italic; }
.card-line { position: absolute; right: -16px; width: 170px; height: 1px; background: var(--green); transform: rotate(45deg); opacity: .75; }
.line-one { top: 30px; }.line-two { top: 49px; }
.wallet-panel, .fund-panel, .activity-panel { display: grid; gap: 9px; margin-top: 14px; padding: 12px; border: 1px solid #deded9; border-radius: 12px; background: #fff; }
.ui-label { color: #5d5d5d; font-size: 12px; font-weight: 600; }
.wallet-choice { display: flex; justify-content: space-between; align-items: center; min-height: 47px; padding: 0 14px; border: 1px solid #deded9; border-radius: 10px; background: #f7f7f4; color: #171717; font-weight: 700; text-align: left; }
.wallet-choice small { color: var(--green-dark); font-size: 10px; }
.payment-status { display: flex; align-items: center; gap: 10px; padding: 11px; border-radius: 10px; background: #f1f6df; color: var(--green-dark); }
.payment-status span { display: grid; gap: 2px; }
.payment-status strong { color: #1f2810; font-size: 12px; }
.payment-status small { color: #56623d; font-size: 10px; }
.balance-line, .field-row { display: flex; justify-content: space-between; align-items: center; min-height: 38px; padding: 0 10px; border: 1px solid #e4e4de; border-radius: 9px; font-size: 11px; }
.balance-line { background: #f1f6df; }
.field-row span { color: #6a6a68; }
.field-row strong { display: inline-flex; align-items: center; gap: 4px; max-width: 190px; font-size: 10px; text-align: right; }
.review-note { display: flex; align-items: center; gap: 7px; padding: 9px 10px; border-radius: 8px; background: #f1f1ed; color: #555; font-size: 10px; }
.activity-row { display: grid; grid-template-columns: 34px 1fr 18px; gap: 8px; align-items: center; padding: 8px 0; border-bottom: 1px solid #ecece7; color: var(--green-dark); }
.activity-row:last-child { border-bottom: 0; }
.activity-icon { display: grid; place-items: center; width: 32px; height: 32px; border-radius: 50%; background: #f0f1ec; color: #333; }
.activity-row span:nth-child(2) { display: grid; gap: 2px; }
.activity-row strong { color: #171717; font-size: 11px; }
.activity-row small { color: #777; font-size: 9px; }
.phone-nav { position: absolute; right: 18px; bottom: 15px; left: 18px; display: grid; grid-template-columns: repeat(4,1fr); padding-top: 10px; border-top: 1px solid #dfdfda; }
.phone-nav span { display: grid; justify-items: center; gap: 3px; color: #777; }
.phone-nav span.active { color: var(--green-dark); }
.phone-nav small { font-size: 9px; }

.proof-strip { border-block: 1px solid var(--line); background: var(--bg-2); }
.proof-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.proof-grid > div { display: grid; grid-template-columns: 36px 1fr; gap: 10px; align-items: center; min-height: 118px; padding: 22px; border-right: 1px solid var(--line); }
.proof-grid > div:last-child { border-right: 0; }
.proof-icon { display: grid; place-items: center; width: 36px; height: 36px; border-radius: 7px; background: rgba(153,190,29,.1); color: var(--green); }
.proof-grid span:last-child { display: grid; gap: 3px; }
.proof-grid strong { font-size: 14px; }
.proof-grid small { color: var(--muted); font-size: 12px; line-height: 1.35; }

.section { padding: 104px 0; }
.section-dark { background: #111; }
.section-light { background: var(--light-2); color: #171717; }
.section-heading { display: grid; gap: 13px; max-width: 760px; margin-bottom: 46px; }
.section-heading h2, .trust-copy h2, .final-cta h2 { font-size: clamp(34px, 4vw, 52px); line-height: 1.1; }
.section-heading p:last-child, .trust-copy > p:last-child, .final-cta p:last-child { color: var(--muted); font-size: 17px; line-height: 1.55; }
.section-heading-dark p:last-child { color: #555; }
.product-layout { display: grid; grid-template-columns: .78fr 1.22fr; gap: 60px; align-items: center; }
.product-heading { margin-bottom: 0; }
.flow-board { display: grid; gap: 10px; padding: 15px; border: 1px solid var(--line); border-radius: 8px; background: var(--bg-2); box-shadow: var(--shadow); }
.flow-step { position: relative; display: grid; grid-template-columns: 34px 42px 1fr; gap: 12px; align-items: center; min-height: 78px; padding: 12px; border: 1px solid var(--line); border-radius: 7px; background: var(--bg); }
.flow-step:not(:last-child)::after { position: absolute; bottom: -11px; left: 68px; z-index: 2; width: 1px; height: 10px; background: var(--green); content: ""; }
.flow-number { color: #6f6f6f; font-family: Poppins, sans-serif; font-size: 12px; font-weight: 700; }
.icon-box { display: grid; place-items: center; width: 42px; height: 42px; border: 1px solid var(--green-line); border-radius: 7px; background: rgba(153,190,29,.08); color: var(--green); }
.flow-step > div:last-child { display: grid; gap: 4px; }
.flow-step strong { font-size: 15px; }
.flow-step small { color: var(--muted); font-size: 13px; line-height: 1.4; }
.steps-grid, .benefit-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.step-card, .benefit-card { position: relative; min-height: 260px; padding: 24px; border: 1px solid var(--line); border-radius: 8px; background: var(--bg-2); }
.step-number { position: absolute; top: 22px; right: 22px; color: rgba(255,255,255,.13); font-family: Poppins, sans-serif; font-size: 25px; font-weight: 700; }
.step-card h3, .benefit-card h3 { margin: 24px 0 10px; font-size: 19px; }
.step-card p, .benefit-card p { color: var(--muted); font-size: 15px; line-height: 1.55; }
.benefit-card { border-color: rgba(21,21,21,.13); background: #fff; }
.benefit-card .icon-box { border-color: rgba(109,135,21,.25); color: var(--green-dark); }
.benefit-card p { color: #555; }
.use-grid { display: grid; grid-template-columns: repeat(6,1fr); gap: 13px; }
.use-card { display: grid; align-content: space-between; min-height: 230px; padding: 22px; border: 1px solid var(--line); border-radius: 8px; background: var(--bg-2); }
.use-card:nth-child(1), .use-card:nth-child(2) { grid-column: span 3; }
.use-card:nth-child(n+3) { grid-column: span 2; }
.use-icon { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 7px; background: rgba(153,190,29,.1); color: var(--green); }
.use-card h3 { margin: 20px 0 7px; font-size: 18px; }
.use-card p { color: var(--muted); font-size: 14px; line-height: 1.5; }
.use-status { width: max-content; margin-top: 18px; padding: 6px 9px; border: 1px solid var(--green-line); border-radius: 999px; color: var(--light); font-size: 11px; font-weight: 600; }

.trust-section { border-block: 1px solid var(--green-line); background: #202319; }
.trust-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; align-items: center; }
.trust-copy { display: grid; gap: 14px; }
.trust-list { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }
.trust-list li { display: grid; grid-template-columns: 22px 1fr; gap: 11px; align-items: start; padding: 15px; border: 1px solid rgba(153,190,29,.25); border-radius: 7px; background: rgba(21,21,21,.48); color: var(--text-soft); line-height: 1.45; }
.trust-list svg { color: var(--green); margin-top: 2px; }
.faq-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 70px; align-items: start; }
.faq-heading { position: sticky; top: 120px; margin-bottom: 0; }
.faq-list { display: grid; gap: 10px; }
.faq-list details { border: 1px solid var(--line); border-radius: 8px; background: var(--bg-2); }
.faq-list summary { display: flex; justify-content: space-between; gap: 20px; align-items: center; min-height: 70px; padding: 18px 20px; cursor: pointer; font-family: Poppins, sans-serif; font-size: 16px; font-weight: 600; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list details[open] summary svg { transform: rotate(45deg); }
.faq-list summary svg { flex: 0 0 auto; color: var(--green); transition: transform .18s ease; }
.faq-list details p { padding: 0 20px 20px; color: var(--muted); line-height: 1.55; }
.final-cta { padding: 62px 0; background: var(--light); color: #171717; }
.final-cta-inner { display: grid; grid-template-columns: 1fr auto; gap: 44px; align-items: center; }
.final-cta-inner > div { display: grid; gap: 12px; }
.final-cta p:last-child { max-width: 760px; color: #555; }
.final-actions { justify-items: end; min-width: 275px; }
.final-actions .button { justify-content: space-between; gap: 20px; min-width: 270px; min-height: 60px; }
.app-access-final { justify-content: flex-end; color: #666; }
.app-access-final a { color: #28330e; }

.site-footer { padding: 52px 0 30px; border-top: 1px solid var(--line); background: #0e0e0e; }
.footer-top { display: grid; grid-template-columns: 230px 1fr auto; gap: 30px; align-items: center; }
.footer-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 22px; color: var(--muted); }
.footer-legal { display: grid; gap: 10px; margin-top: 35px; padding-top: 25px; border-top: 1px solid var(--line); color: #979797; font-size: 12px; line-height: 1.5; }

@media (max-width: 1100px) {
  .header-inner { grid-template-columns: 200px 1fr auto; }
  .site-nav { gap: 15px; font-size: 14px; }
  .header-cta { display: none; }
  .hero-grid { gap: 36px; }
  .steps-grid, .benefit-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 860px) {
  .shell { width: min(calc(100% - 32px), 720px); }
  .header-inner { position: relative; grid-template-columns: 1fr auto; min-height: 72px; }
  .brand img { width: 180px; }
  .site-nav { position: absolute; top: 72px; right: 0; left: 0; display: none; flex-direction: column; align-items: stretch; padding: 16px; border-bottom: 1px solid var(--line); background: #171717; }
  .site-nav a { padding: 12px 8px; }
  .menu-open .site-nav { display: flex; }
  .header-tools { gap: 9px; }
  .sign-in { display: none; }
  .menu-button { display: inline-flex; }
  .hero { min-height: auto; padding: 46px 0 64px; }
  .hero-grid, .product-layout, .trust-layout, .faq-layout { grid-template-columns: 1fr; }
  .hero-copy { text-align: center; }
  .hero-copy > * { margin-inline: auto; }
  .hero-actions, .hero-facts { justify-content: center; }
  .hero-product { margin-top: 16px; }
  .proof-grid { grid-template-columns: repeat(2,1fr); }
  .proof-grid > div { border-bottom: 1px solid var(--line); }
  .proof-grid > div:nth-child(2) { border-right: 0; }
  .proof-grid > div:nth-last-child(-n+2) { border-bottom: 0; }
  .section { padding: 82px 0; }
  .faq-heading { position: static; }
  .final-cta-inner, .footer-top { grid-template-columns: 1fr; text-align: center; }
  .final-cta-inner .button { width: max-content; margin-inline: auto; }
  .final-actions { justify-items: center; }
  .app-access-final { justify-content: center; }
  .footer-brand, .footer-languages { margin-inline: auto; }
}

@media (max-width: 560px) {
  .shell { width: min(calc(100% - 24px), 520px); }
  .site-header { position: sticky; }
  .brand img { width: 150px; height: 34px; }
  .language-trigger { min-width: 58px; height: 36px; padding-inline: 10px 8px; }
  .header-tools { gap: 6px; }
  .hero { position: relative; min-height: calc(100svh - 120px); padding: 30px 0 18px; overflow: hidden; }
  .hero-grid { position: relative; display: block; min-height: calc(100svh - 168px); }
  .hero-copy { position: relative; z-index: 2; gap: 14px; padding-bottom: 180px; text-align: left; }
  html[lang="kk"] .hero-copy { padding-bottom: 220px; }
  .hero-copy > * { margin-inline: 0; }
  h1 { font-size: 38px; line-height: 1.05; }
  .hero-subtitle { max-width: 100%; font-size: 15px; line-height: 1.4; }
  .hero-actions { justify-content: flex-start; }
  .hero-actions { width: 100%; }
  .hero-actions .button { width: 100%; }
  .hero-actions .button-primary { min-width: 0; min-height: 60px; }
  .app-access-hero { gap: 7px 13px; font-size: 12px; }
  .app-access-hero > span { width: 100%; }
  .hero-facts { display: none; }
  .hero-product { position: absolute; right: 20px; bottom: -207px; z-index: 1; width: 270px; height: 420px; margin: 0; overflow: visible; pointer-events: none; }
  .phone-stage { width: 340px; transform: scale(.74); transform-origin: top right; }
  .phone-shell { min-height: 620px; padding: 20px 16px 16px; border-radius: 38px; }
  .virtual-card { min-height: 170px; padding: 18px; }
  .card-brand img { width: 145px; }
  .proof-grid { grid-template-columns: 1fr; }
  .proof-grid > div { min-height: 92px; border-right: 0; border-bottom: 1px solid var(--line) !important; }
  .proof-grid > div:last-child { border-bottom: 0 !important; }
  .section { padding: 70px 0; }
  .section-heading { margin-bottom: 34px; }
  .section-action { margin-top: 28px; padding-top: 20px; }
  .section-cta-button { width: 100%; justify-content: space-between; }
  .faq-layout .section-action { grid-column: auto; }
  .section-heading h2, .trust-copy h2, .final-cta h2 { font-size: 34px; }
  .steps-grid, .benefit-grid, .use-grid { grid-template-columns: 1fr; }
  .step-card, .benefit-card { min-height: 220px; }
  .use-card:nth-child(n) { grid-column: auto; min-height: 210px; }
  .flow-step { grid-template-columns: 28px 40px 1fr; padding: 10px; }
  .flow-step:not(:last-child)::after { left: 59px; }
  .faq-list summary { font-size: 15px; }
  .final-cta { padding: 54px 0; }
  .final-actions { min-width: 0; width: 100%; }
  .final-actions .button { width: 100%; }
}

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