/* ===== GLOBAL STYLES ===== */
:root {
  --bg: #0B0B0D;
  --fg: #F4F3EF;
  --muted: #A8A8A8;
  --gold: #D4AF37;
  --line: #222228;
  --mx: 50%;
  --my: 50%;
  --hx: 56%;
  --hy: 36%;
  --wa: #2f9e44;
  --wa-bg: rgba(47,158,68,.10);
  --tg: #2a9df4;
  --tg-bg: rgba(42,157,244,.10);
  --hero-pb: 44px;
  --panel: #121214;
  --gold2: #f7e7a1;
}
:root {
    --bg: #0B0B0D;
    --bg-soft: #121214;
    --fg: #F4F3EF;
    --muted: #c9c5b6;
    --line: #1b1b20;
    --gold: #D4AF37;
    --gold-soft: #e8d79e;
    --gold-bright: #f7e7a1;
}
:root {
    --bg: #0B0B0D;
    --bg-soft: #121214;
    --fg: #F4F3EF;
    --muted: #c9c5b6;
    --line: #1b1b20;
    --gold: #D4AF37;
    --gold2: #b48816;
    --gold3: #f7e7a1;
}
* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

a {
  color: var(--gold);
}

button {
  font: inherit;
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

/* ===== HEADER STYLES ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11,11,13,.82);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--line);
}

.header .row {
  max-width: 1160px;
  margin: 0 auto;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

/* Shimmer logo */
.logo {
  font-weight: 800;
  letter-spacing: .6px;
  white-space: nowrap;
  position: relative;
  background: radial-gradient(560px 200px at var(--mx) var(--my),
              #fff3bf 0%, #f1d782 20%, #d4af37 40%, #b8860b 60%, #7a5c12 85%, #4d3a07 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 1px 0 rgba(0,0,0,.35)) drop-shadow(0 0 10px rgba(212,175,55,.08));
  transition: filter .2s ease;
}

.logo::after {
  content: "";
  position: absolute;
  left: -6px;
  top: -6px;
  right: -6px;
  bottom: -6px;
  pointer-events: none;
  background: radial-gradient(220px 120px at var(--mx) var(--my), rgba(255,255,220,.28), rgba(255,255,220,0) 70%);
  mix-blend-mode: screen;
  opacity: 0;
  transition: opacity .2s ease;
}

.header:hover .logo::after {
  opacity: .35;
}

/* Desktop nav */
nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

nav a {
  color: #EDEAE0;
  text-decoration: none;
  font-size: 14px;
  opacity: .92;
  position: relative;
  display: inline-block;
  padding: 6px 2px;
  transition: transform .15s ease, opacity .15s ease;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg,#b8860b,#d4af37,#f9e79f);
  transition: width .18s ease;
}

nav a:hover {
  opacity: 1;
  transform: translateY(-1px);
}

nav a:hover::after {
  width: 100%;
}

header#hdr .row .right {
    display: flex
;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    border: 0;
    background: transparent;
}
.btn {
    position: relative;
    display: inline-flex
;
    align-items: center;
    gap: 10px;
    padding: 13px 16px;
    border-radius: 12px;
    border: 1px solid #303038;
    background: #151517;
    color: #fff;
    text-decoration: none;
    line-height: 1;
    transition: transform .15s 
ease, box-shadow .2s 
ease, border-color .2s 
ease, background .2s 
ease;
    overflow: hidden;
    justify-content: center;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0,0,0,.35);
}

.btn:active {
  transform: translateY(0.5px) scale(.99);
}

/* Sheen sweep on hover */
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(120deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.24) 30%, rgba(255,255,255,0) 60%);
  transform: translateX(-120%) skewX(-15deg);
  transition: transform .6s ease;
}

.btn:hover::before {
  transform: translateX(120%) skewX(-15deg);
}

.btn-call {
  border-color: #3a3a3e;
}

.btn-gold {
  background: linear-gradient(140deg,#7a5c12,#d4af37,#f7e7a1,#b48816);
  color: #141414;
  border-color: #a98621;
}

.btn-gold:hover {
  box-shadow: 0 10px 26px rgba(212,175,55,.25);
}

/* Burger & mobile menu */
.burger {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  margin-left: 6px;
}

.burger span {
  width: 22px;
  height: 2px;
  background: #eae7db;
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 52px;
  left: 0;
  right: 0;
  background: #101013;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  z-index: 99;
}

.mobile-menu .menu {
  max-width: 1160px;
  margin: 0 auto;
  padding: 12px 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.mobile-menu a, .mobile-menu .btn {
  text-align: center;
}

.mobile-ctas {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 8px;
}

/* Header buttons safety patch */
header .btn {
  background: #141417;
  border: 1px solid #3a3a3e;
  color: #fff;
}

header .btn-call {
  background: #141417;
  border-color: #3a3a3e;
}

header .btn-gold {
  background: linear-gradient(140deg,#7a5c12,#d4af37,#f7e7a1,#b48816);
  color: #141414;
  border-color: #a98621;
}

header .btn-gold:hover {
  box-shadow: 0 10px 26px rgba(212,175,55,.25);
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  overflow: hidden;
  padding: 56px 0 var(--hero-pb);
  border-top: 1px solid #17171b;
  border-bottom: 1px solid var(--line);
}

.hero::before {
  content: "";
  position: absolute;
  inset: -10%;
  background: radial-gradient(320px 160px at var(--hx) var(--hy), rgba(212,175,55,.10), rgba(0,0,0,0) 60%);
  filter: blur(7px);
  pointer-events: none;
  transition: background-position .2s ease;
}

.grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 28px;
  align-items: start;
}

h1 {
  font-size: 44px;
  line-height: 1.1;
  margin: 0 0 12px;
}

.sub {
  color: #eae6d7;
  max-width: 720px;
  margin: 0 0 10px;
}

.sub.secondary {
  color: #d3ceb9;
  opacity: .95;
  margin-top: 6px;
  margin-bottom: 18px;
}

/* LEFT column */
.left-col {
  position: relative;
}

.cta-wrap {
  width: min(100%, 560px);
}

.btn-primary {
  background: linear-gradient(140deg,#7a5c12,#d4af37,#f7e7a1,#b48816) !important;
  color: #141414 !important;
  border-color: #a98621;
  width: 100%;
  text-align: center;
}

.btn-primary:hover {
  box-shadow: 0 12px 28px rgba(212,175,55,.25);
}

.cta-row {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 8px;
  margin-top: 10px;
}

.btn-wa {
  border-color: var(--wa);
  color: #d8f1de;
  background: var(--wa-bg);
}

.btn-wa:hover {
  background: rgba(47,158,68,.18);
}

.btn-tg {
  border-color: var(--tg);
  color: #d7ebfc;
  background: var(--tg-bg);
}

.btn-tg:hover {
  background: rgba(42,157,244,.18);
}

.btn-call {
  border-color: #e7e7e7;
  color: #ffffff;
  background: transparent;
}

.btn-call:hover {
  background: rgba(255,255,255,.05);
}

/* Mascot under CTA */
.mascot-under {
  display: block;
  margin: 12px auto 0;
  width: 192px;
  pointer-events: none;
  opacity: .95;
  filter: drop-shadow(0 12px 32px rgba(0,0,0,.45));
  animation: float 14s ease-in-out infinite;
}

/* RIGHT column */
.right-col {
  position: relative;
}

.right-col .badges {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 10px;
  margin: 0 0 12px;
}

.badge {
  font-size: 12px;
  background: #151517;
  border: 1px solid #2a2a2e;
  color: #eadaaa;
  padding: 8px 10px;
  border-radius: 999px;
  text-align: center;
}

.form {
  position: relative;
  background: #121214;
  border: 1px solid #2a2a2e;
  border-radius: 16px;
  padding: 16px;
  z-index: 3;
}

.form h3 {
  margin: 0 0 8px;
  font-size: 18px;
  color: #f0e7c8;
}

.form label {
  display: block;
  font-size: 13px;
  margin: 8px 0 6px;
  color: #d7d4cb;
}

.form input, .form textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #333;
  background: #0f0f11;
  color: #fff;
  outline: none;
}

.form .btn {
  width: 100%;
  text-align: center;
  margin-top: 8px;
}

.help {
  font-size: 12px;
  color: var(--muted);
  margin-top: 10px;
}

/* ===== HOW IT WORKS SECTION ===== */
.how-premium {
  --badge-top: 18px;
  --badge-left: 18px;
  --badge-size: 36px;
  --badge-ring: 3px;
  --icon-gap: 12px;
  --icon-size: 26px;
  --title-gap: 12px;
  position: relative;
  padding: 48px 0;
  border-top: 1px solid #17171b;
  border-bottom: 1px solid #17171b;
  background: #0B0B0D;
  color: #F4F3EF;
}

.how-premium .container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}

.how-premium h2 {
  margin: 0 0 20px;
  font-size: 32px;
  color: #e6d599;
  letter-spacing: .2px;
}

.how-premium .grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 28px;
  align-items: stretch;
  z-index: 1;
}

.how-premium .card {
  position: relative;
  background: #121214;
  border: 1px solid #2a2a2e;
  border-radius: 16px;
  padding: 22px 20px;
  z-index: 1;
  min-height: 176px;
  padding-top: calc(var(--badge-top) + var(--badge-size) + var(--badge-ring) + var(--icon-gap) + var(--icon-size) + var(--icon-gap));
  transition: transform .18s ease, box-shadow .28s ease, border-color .28s ease;
}

.how-premium .card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: radial-gradient(120% 100% at 20% -10%, rgba(247,231,161,.10), rgba(212,175,55,.12) 35%, rgba(0,0,0,0) 70%);
  opacity: 0;
  transition: opacity .25s ease;
}

.how-premium .num {
  position: absolute;
  left: var(--badge-left);
  top: var(--badge-top);
  width: var(--badge-size);
  height: var(--badge-size);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: #1a1a1a;
  background: radial-gradient(circle at 35% 30%, #fff4bf 0%, #f0d98a 28%, #d4af37 56%, #b78515 82%, #5a430c 100%);
  box-shadow: 0 0 0 var(--badge-ring) rgba(212,175,55,.18), inset 0 2px 3px rgba(255,255,255,.20);
}

.how-premium .title-row {
  position: absolute;
  left: 20px;
  right: 20px;
  top: calc(var(--badge-top) + var(--badge-size) + var(--badge-ring) + var(--icon-gap));
  display: flex;
  align-items: center;
  min-height: var(--icon-size);
}

.how-premium .title-row .icon {
  width: var(--icon-size);
  height: var(--icon-size);
  color: #eee5cf;
  opacity: .96;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.45));
  margin-left: calc(var(--badge-left) + var(--badge-size)/2 - 20px - var(--icon-size)/2);
  flex: 0 0 auto;
}

.how-premium .title-row .icon svg {
  width: 100%;
  height: 100%;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.how-premium .title-inline {
  margin: 0 0 0 12px;
  font-size: 21px;
  font-weight: 800;
  letter-spacing: .2px;
  display: flex;
  gap: 8px;
  align-items: baseline;
}

.how-premium .title-inline small {
  font-size: 13.5px;
  font-weight: 700;
  color: #e2d8b8;
  opacity: .95;
}

.how-premium .desc {
  margin: 10px 0 0;
  color: #d0cab8;
  line-height: 1.55;
  font-size: 15.2px;
  max-width: 54ch;
}

/* ===== ACCEPT SECTION ===== */
#accept {
  position: relative;
  padding: 56px 0 64px;
  border-top: 1px solid #1b1b20;
}

#accept .container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}

#accept .eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #c9c5b6;
  background: #101012;
  border: 1px solid #1f1f25;
  border-radius: 999px;
  padding: 6px 10px;
  margin-bottom: 10px;
}

#accept h2 {
  font-size: 34px;
  line-height: 1.15;
  margin: 6px 0 14px;
}

#accept h2 .accent {
  background: linear-gradient(90deg,#d4af37,#f7e7a1);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

#accept .subnote {
  font-size: 14px;
  color: #d8d4c5;
  margin: 4px 0 28px;
}

#accept .grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px;
}

#accept .tile {
  background: #121214;
  border: 1px solid #232329;
  border-radius: 16px;
  padding: 18px;
  min-height: 146px;
  position: relative;
  overflow: hidden;
}

#accept .tile::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(120deg,rgba(212,175,55,.12),rgba(247,231,161,.04));
  -webkit-mask: linear-gradient(#000 0 0) content-box,linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

#accept .tile .icon-wrap {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(212,175,55,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(212,175,55,.24);
  box-shadow: inset 0 0 24px rgba(212,175,55,.16);
  transition: filter .4s ease, transform .2s ease, box-shadow .2s ease;
}

#accept .tile .icon {
  width: 22px;
  height: 22px;
  fill: #e5d79b;
  filter: drop-shadow(0 0 6px rgba(212,175,55,.18));
  transition: opacity .6s ease;
}

#accept .tile h3 {
  font-size: 18px;
  margin: 12px 0 8px;
}

#accept .tile p {
  font-size: 14px;
  color: #d8d4c5;
  margin: 0;
}

#accept .tile:hover {
  box-shadow: 0 16px 28px rgba(0,0,0,.32);
}

#accept .tile:hover .icon-wrap {
  box-shadow: inset 0 0 36px rgba(212,175,55,.26),0 0 18px rgba(212,175,55,.18);
  filter: saturate(115%);
}

#accept .tile:hover .icon {
  opacity: .95;
}

#accept .tile::after {
  content: "";
  position: absolute;
  inset: -12% -8% -12% -8%;
  pointer-events: none;
  background: radial-gradient(380px 140px at 85% -12%, rgba(212,175,55,.12), transparent 60%),
             radial-gradient(220px 120px at 6% 94%, rgba(247,231,161,.08), transparent 70%);
  opacity: 0;
  transition: opacity .35s ease;
}

#accept .tile:hover::after {
  opacity: 1;
}

/* CTA buttons */
#accept .cta-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 18px;
}

#accept .btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid #303038;
  background: #151517;
  color: #fff;
  text-decoration: none;
  line-height: 1;
  overflow: hidden;
}

#accept .btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(120deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.22) 34%, rgba(255,255,255,0) 64%);
  transform: translateX(-120%) skewX(-15deg);
  transition: transform .65s ease;
}

#accept .btn:hover::before {
  transform: translateX(120%) skewX(-15deg);
}

#accept .btn-wa {
  border-color: #25D366;
  background: rgba(37,211,102,.10);
  color: #eafdf2;
}

#accept .btn-tg {
  border-color: #2AABEE;
  background: rgba(42,171,238,.10);
  color: #e6f4ff;
}

#accept .btn .icon {
  width: 18px;
  height: 18px;
  fill: currentColor;
  opacity: .95;
}

/* ===== CONTACTS SECTION ===== */
#contacts .container {
  padding: 48px 20px;
}

#contacts h2 {
  margin: 0 0 16px;
  font-size: 28px;
  line-height: 1.2;
}

#contacts h2 .accent {
  background: linear-gradient(90deg,var(--gold),var(--gold2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

p.lead {
  margin: 8px 0 24px;
  color: var(--muted);
}

.wrap {
  display: grid;
  gap: 16px;
}

.left {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cards {
  display: grid;
  gap: 14px;
}

.card {
  background: #0f0f12;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  transition: .25s;
  cursor: pointer;
  position: relative;
}

.card.active {
  border-color: #a98621;
  box-shadow: 0 10px 24px rgba(0,0,0,.35);
}

.card__head {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px 4px;
}

.card__title {
  margin: 0;
  font-size: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 8px;
  background: linear-gradient(180deg,rgba(247,231,161,.12),rgba(212,175,55,.08));
}

.photo {
  position: relative;
  margin: 8px 12px 10px;
  border-radius: 16px;
  overflow: hidden;
  background: #0c0c10;
  aspect-ratio: 1/1;
  box-shadow: inset 0 0 0 1px var(--line);
  isolation: isolate;
}

.photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.03) contrast(1.03);
}

.photo figcaption {
  position: absolute;
  left: 10px;
  bottom: 10px;
  font-size: 12px;
  color: #e8e3d1;
  background: rgba(12,12,14,.55);
  padding: 2px 8px;
  border-radius: 8px;
  border: 1px solid rgba(232,215,154,.25);
}

.photo::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 1.4px;
  background: linear-gradient(120deg,rgba(165,127,26,.65),rgba(247,231,161,.95),rgba(165,127,26,.65));
  -webkit-mask: linear-gradient(#000 0 0) content-box,linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: .9;
  pointer-events: none;
}

.photo::after {
  content: "";
  position: absolute;
  inset: -60% -40% auto -40%;
  height: 60%;
  background: linear-gradient(120deg,rgba(247,231,161,0) 0%,rgba(247,231,161,.18) 40%,rgba(247,231,161,0) 80%);
  transform: rotate(12deg);
  filter: blur(8px);
  opacity: 0;
  pointer-events: none;
}

.card:hover .photo::after {
  opacity: .9;
  animation: sweep 1.2s ease forwards;
}

.card__body {
  padding: 6px 12px 12px;
  display: grid;
  gap: 6px;
}

.row {
  display: flex;
  gap: 8px;
  font-size: 13px;
  color: #e8e3d1;
}

.label {
  opacity: .7;
  min-width: 84px;
}

/* Contact box */
.contactbox {
  background: #0f0f12;
  border: 1px solid var(--line);
  border-radius: 14px;
  display: grid;
  gap: 14px;
  padding: 16px;
  align-items: start;
}

.primary-call {
  display: flex;
  justify-content: center;
}

.callbtn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  width: 100%;
  max-width: 460px;
  height: 56px;
  border-radius: 14px;
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: .2px;
  border: 1px solid #6a561a;
  overflow: hidden;
  background: linear-gradient(115deg,rgba(247,231,161,.18),rgba(212,175,55,.22)),linear-gradient(180deg,rgba(20,20,22,1),rgba(20,20,22,.95));
  box-shadow: 0 10px 28px rgba(0,0,0,.38);
  transition: transform .2s ease, box-shadow .2s ease;
}

.callbtn::after {
  content: "";
  position: absolute;
  inset: -20% -60% auto -60%;
  height: 180%;
  background: linear-gradient(110deg,rgba(247,231,161,0) 0%,rgba(247,231,161,.15) 45%,rgba(247,231,161,0) 70%);
  transform: translateX(-120%) rotate(8deg);
  filter: blur(8px);
  opacity: 0;
  pointer-events: none;
}

.callbtn:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 0 3px rgba(212,175,55,.12),0 12px 28px rgba(0,0,0,.45);
}

.callbtn:hover::after {
  opacity: .9;
  animation: sheen 1.2s ease forwards;
}

.ph {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
}

.subbtns {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.sbtn {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  height: 42px;
  border-radius: 12px;
  padding: 0 16px;
  border: 2px solid currentColor;
  background: transparent;
  color: #fff;
  text-decoration: none;
  min-width: 180px;
  transition: .2s;
}

.sbtn--wa {
  color: var(--wa);
}

.sbtn--tg {
  color: var(--tg);
}

.sbtn:hover {
  box-shadow: 0 0 0 4px color-mix(in srgb,currentColor 18%,transparent);
  background: color-mix(in srgb,currentColor 8%,transparent);
}

.sbtn:active {
  transform: translateY(1px) scale(.99);
}

.sbtn .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 10px color-mix(in srgb,currentColor 60%,transparent);
}

.sbtn span:last-child {
  color: #fff;
}

/* Form inputs */
.form {
  background: #0f0f12;
  border: 1px dashed #2a2a31;
  border-radius: 12px;
  padding: 12px;
  display: grid;
  gap: 10px;
}

.input {
  height: 42px;
  border-radius: 10px;
  border: 1px solid #2a2a31;
  background: #121216;
  color: #fff;
  padding: 0 12px;
  width: 100%;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.input::placeholder {
  color: #9c9786;
}

.input:hover {
  border-color: #3a3a45;
}

.input:focus {
  outline: 0;
  border-color: #a98621;
  box-shadow: 0 0 0 3px rgba(212,175,55,.12), inset 0 0 0 1px rgba(212,175,55,.45);
}

.small {
  font-size: 12px;
  color: #9c9786;
}

.submit {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 46px;
  border-radius: 12px;
  border: 1px solid #6a561a;
  background: linear-gradient(98deg,rgba(247,231,161,.10),rgba(212,175,55,.14));
  color: #fff;
  cursor: pointer;
  letter-spacing: .2px;
  transition: transform .22s ease, box-shadow .22s ease;
  font-weight: 500;
}

.submit:hover {
  transform: scale(1.02);
}

.icon {
  width: 18px;
  height: 18px;
  display: inline-block;
  flex: 0 0 auto;
}

/* Lens icon */
.icon-lens path {
  fill: none;
  stroke: url(#ggrad);
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Right column */
.right {
  background: #0f0f12;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  display: grid;
  grid-template-rows: auto auto auto;
  gap: 0;
}

/* Map header */
.maphead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.33px 10px;
  border-bottom: 1px solid var(--line);
  margin: 0;
}

.maphead h3 {
  margin: 0;
  font-size: 16px;
  line-height: 1;
  font-weight: 700;
}

.maphead .status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #cfc8b0;
  line-height: 1;
}

.spark {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: radial-gradient(circle,#f7e7a1 20%,#d4af37 60%,rgba(247,231,161,0) 70%);
}

/* Google map */
.mapwrap {
  position: relative;
  margin: 0;
  border-bottom: 1px solid var(--line);
}

#gmap {
  height: 400px;
  width: 100%;
  border: 0;
  display: block;
  margin: 0;
  padding: 0;
  line-height: 0;
}

/* Mascot stage */
.mascot {
  position: relative;
  height: 300px;
  padding: 0 12px;
  overflow: visible;
  border-bottom: 1px solid var(--line);
}

.mascot__wrap {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}

.mascot__img {
  display: block;
  max-width: 300px;
  width: 58vw;
  height: auto;
  filter: drop-shadow(0 0 12px rgba(247,231,161,.24)) drop-shadow(0 10px 28px rgba(0,0,0,.42));
}

.mascot__halo, .mascot__halo::before, .mascot__halo::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 8px;
  transform: translateX(-50%);
  width: 280px;
  height: 170px;
  pointer-events: none;
  border-radius: 48% 52% 8% 8%/48% 48% 12% 12%;
  background: radial-gradient(ellipse at 50% 70%,rgba(247,231,161,.16),rgba(247,231,161,.06) 35%,rgba(247,231,161,0) 65%);
  filter: blur(12px);
  opacity: .6;
}

.mascot__orbit {
  position: absolute;
  left: 50%;
  bottom: 105px;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  pointer-events: none;
}

.mascot__orbit span {
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: radial-gradient(circle,#f7e7a1 0,#d4af37 65%,rgba(212,175,55,0) 67%);
  box-shadow: 0 0 12px rgba(247,231,161,.7);
}

.mascot__bubble {
  position: absolute;
  left: 50%;
  top: 4%;
  transform: translateX(-50%);
  background: rgba(12,12,14,.82);
  border: 1px solid rgba(232,215,154,.45);
  border-radius: 14px;
  padding: 8px 12px;
  color: #fff;
  backdrop-filter: blur(2px);
  box-shadow: 0 10px 24px rgba(0,0,0,.35);
  font-size: 14px;
  line-height: 1.25;
  white-space: nowrap;
  z-index: 3;
}

.mascot__bubble::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: calc(50% - 6px);
  width: 12px;
  height: 12px;
  background: inherit;
  border-left: 1px solid rgba(232,215,154,.45);
  border-bottom: 1px solid rgba(232,215,154,.45);
  transform: rotate(45deg);
}

.mascot__bubble b {
  background: linear-gradient(90deg, var(--gold), var(--gold2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ===== FAQ SECTION ===== */
#faq .container {
  padding: 48px 20px;
}

#faq h2 {
  margin: 0 0 16px;
  font-size: 28px;
  line-height: 1.2;
}

#faq h2 .accent {
  background: linear-gradient(90deg,var(--gold),var(--gold2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Wand (lead) with sparkles */
.lead--wand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ddd;
}

.wand {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
}

.wand svg {
  display: block;
  filter: drop-shadow(0 0 4px rgba(247,231,161,.25));
}

.wand .spark {
  opacity: .85;
  transform-origin: center;
  animation: twinkle 2.2s ease-in-out infinite;
}

.wand .spark.s2 {
  animation-delay: .4s;
}

.wand .spark.s3 {
  animation-delay: .9s;
}

/* FAQ panel */
.faq {
  background: var(--panel);
  border: 1px solid #232329;
  border-radius: 16px;
  overflow: hidden;
}

.faq .grid {
  display: grid;
  gap: 10px;
  padding: 14px;
}

.col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.item {
  background: #0f0f12;
  border: 1px solid #22232a;
  border-radius: 12px;
  overflow: hidden;
  transition: border-color .25s ease,box-shadow .25s ease;
}

.item.open {
  border-color: #a98621;
  box-shadow: 0 8px 22px rgba(0,0,0,.35);
}

.q {
  all: unset;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  cursor: pointer;
  padding: 14px;
  border-radius: 12px;
}

.q:hover {
  background: linear-gradient(90deg,rgba(247,231,161,.04),rgba(247,231,161,.02));
}

.q .left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.qtext {
  font-weight: 600;
  letter-spacing: .2px;
}

.chev {
  transition: transform .28s ease;
  opacity: .9;
}

.item.open .chev {
  transform: rotate(180deg);
}

.q--center {
  justify-content: center;
  gap: 8px;
}

.left--center {
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.a-wrap {
  max-height: 0;
  overflow: hidden;
}

.a {
  padding: 0 14px 14px;
  color: #e8e3d1;
  line-height: 1.55;
  opacity: 0;
  transform: translateY(-4px);
}

.item.open .a {
  opacity: 1;
  transform: translateY(0);
}

/* Promo accent */
.item.promo {
  position: relative;
  border-color: #6a561a;
  box-shadow: inset 0 0 0 1px rgba(212,175,55,.18);
}

.item.promo::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 14px;
  pointer-events: none;
  background: radial-gradient(120px 40px at 12% 110%, rgba(247,231,161,.15), transparent 60%);
}

.item.promo .promo-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: linear-gradient(180deg,rgba(247,231,161,.18),rgba(212,175,55,.10));
  box-shadow: 0 0 10px rgba(212,175,55,.25);
  animation: pulse 2.8s ease-in-out infinite;
}

.promo-code {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 10px;
  border: 1px dashed rgba(247,231,161,.65);
  background: linear-gradient(90deg,rgba(247,231,161,.10),rgba(212,175,55,.12));
  color: #fff;
  font-weight: 700;
  letter-spacing: .5px;
  text-shadow: 0 0 12px rgba(247,231,161,.35);
}

/* CTA */
.cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: center;
  border-top: 1px solid var(--line);
  padding: 14px;
}

.faq .btn {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  height: 44px;
  border-radius: 12px;
  padding: 0 14px;
  border: 1px solid #2f2f35;
  background: #141416;
  color: #fff;
  text-decoration: none;
  transition: .2s ease;
}

.faq .btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(0,0,0,.35);
}

.btn--wa {
  border-color: #1f3b27;
}

.btn--tg {
  border-color: #1f2a3b;
}

.btn--wa .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #25D366;
  box-shadow: 0 0 10px rgba(37,211,102,.55);
}

.btn--tg .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #2AABEE;
  box-shadow: 0 0 10px rgba(42,171,238,.55);
}

.btn--call {
  border-color: #3a3a3f;
}

/* ===== ANIMATIONS ===== */
@keyframes float {
  0%, 100% { transform: translateY(0) }
  50% { transform: translateY(-2px) }
}

@keyframes softPulse {
  0% { box-shadow: 0 8px 24px rgba(0,0,0,.35) }
  50% { box-shadow: 0 12px 30px rgba(212,175,55,.18) }
  100% { box-shadow: 0 8px 24px rgba(0,0,0,.35) }
}

@keyframes sweep {
  from { transform: translateX(-40%) rotate(12deg) }
  to { transform: translateX(140%) rotate(12deg) }
}

@keyframes sheen {
  to { transform: translateX(220%) rotate(8deg) }
}

@keyframes ring {
  0%, 100% { transform: rotate(0) translateX(0) }
  10% { transform: rotate(-8deg) translateX(-1px) }
  20% { transform: rotate(8deg) translateX(1px) }
  30% { transform: rotate(-6deg) translateX(-1px) }
  40% { transform: rotate(6deg) translateX(1px) }
  50% { transform: rotate(0) translateX(0) }
}

@keyframes callGlow {
  0%, 100% { box-shadow: 0 10px 28px rgba(0,0,0,.38), 0 0 0 0 rgba(212,175,55,0) }
  50% { box-shadow: 0 10px 28px rgba(0,0,0,.38), 0 0 0 10px rgba(212,175,55,.08) }
}

@keyframes btnPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212,175,55,0) }
  50% { box-shadow: 0 0 0 6px rgba(212,175,55,.08) }
}

@keyframes haloPulse {
  0% { transform: translateX(-50%) scale(.98) }
  50% { transform: translateX(-50%) scale(1.03) }
  100% { transform: translateX(-50%) scale(.98) }
}

@keyframes spin {
  from { transform: rotate(0deg) }
  to { transform: rotate(360deg) }
}

@keyframes twinkle {
  0%, 100% { transform: scale(.6); opacity: .7 }
  50% { transform: scale(1.15); opacity: 1 }
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 10px rgba(212,175,55,.25) }
  50% { box-shadow: 0 0 18px rgba(247,231,161,.45) }
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 1100px) {
  .grid {
    grid-template-columns: 1fr;
  }
  section#trust .container .grid {
    grid-template-columns: 1fr !important;
}
}

@media (max-width: 980px) {
  nav {
    display: none;
  }
  
  .burger {
    display: flex;
  }
  
  .how-premium .grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .how-premium .grid::before {
    display: none;
  }
}

@media (max-width: 1000px) {
  #accept .grid {
    grid-template-columns: repeat(2,1fr);
  }
}

@media (max-width: 899.98px) {
  .faq .grid {
    grid-template-columns: 1fr;
  }
  
  .col-left, .col-right, .col-full {
    grid-column: auto;
  }
}

@media (max-width: 700px) {
  .cta-row {
    grid-template-columns: 1fr;
  }
  
  .mascot-under {
    width: 150px;
  }
  
  .btn-request {
    display: none;
  }
  
  .mobile-menu .menu {
    grid-template-columns: 1fr;
  }
  
  .mobile-ctas {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  #accept .grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 1101px) {
  .mascot-under {
    margin-bottom: calc(-1 * var(--hero-pb) + 2px);
  }
}

@media (min-width: 980px) {
  .wrap {
    grid-template-columns: 1fr 1.2fr;
  }
}

@media (min-width: 900px) {
  .faq .grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .col-left {
    grid-column: 1;
  }
  
  .col-right {
    grid-column: 2;
  }
  
  .col-full {
    grid-column: 1 / -1;
  }
}

@media (min-width: 700px) {
  .cards {
    grid-template-columns: 1fr 1fr;
  }
}

/* Accessibility and reduced motion */
@media (prefers-reduced-motion: reduce) {
  .logo {
    transition: none;
  }
  
  .logo::after {
    display: none;
  }
  
  .btn:hover {
    transform: none;
    box-shadow: none;
  }
  
  .btn::before {
    display: none;
  }
  
  .hero::before {
    display: none;
  }
  
  .mascot-under {
    animation: none;
  }
  
  .wand .spark {
    animation: none;
  }
  
  .a-wrap {
    transition: none;
  }
  
  .a {
    transition: none;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .callbtn {
    animation: callGlow 4.2s ease-in-out infinite;
  }
  
  .submit {
    animation: btnPulse 3.4s ease-in-out infinite;
  }
  
  .ph {
    animation: ring 2.8s ease-in-out infinite;
    transform-origin: 50% 50%;
  }
  
  .mascot__halo::before {
    animation: haloPulse 5.6s ease-in-out infinite;
    opacity: .42;
  }
  
  .mascot__halo::after {
    animation: haloPulse 7s ease-in-out infinite .6s;
    opacity: .32;
  }
  
  .mascot__orbit span:nth-child(1) {
    transform-origin: -130px -42px;
    animation: spin 12s linear infinite;
  }
  
  .mascot__orbit span:nth-child(2) {
    transform-origin: 140px -16px;
    animation: spin 13.5s linear infinite reverse;
  }
  
  .mascot__orbit span:nth-child(3) {
    transform-origin: -110px -24px;
    animation: spin 16s linear infinite;
    opacity: .85;
  }
  
  .a-wrap {
    transition: max-height .38s cubic-bezier(.22,.85,.25,1);
  }
  
  .a {
    transition: opacity .34s ease, transform .34s ease;
  }
}

/* Slider */
.slider{position:relative}
.track{
  display:grid;grid-auto-flow:column;grid-auto-columns:74%;
  gap:12px;overflow-x:auto;overscroll-behavior-x:contain;scroll-snap-type:x mandatory;
  padding:4px 2px 12px;-webkit-overflow-scrolling:touch; scroll-behavior:smooth;
}
@media(min-width:720px){.track{grid-auto-columns:48%}}
@media(min-width:1024px){.track{grid-auto-columns:32%}}

.track::-webkit-scrollbar{height:8px} .track::-webkit-scrollbar-thumb{background:#26262b;border-radius:999px}
.track::-webkit-scrollbar-track{background:transparent}

.card{
  scroll-snap-align:start;background:var(--bg-soft);border:1px solid #232329;border-radius:16px;
  padding:18px;min-height:260px;display:flex;flex-direction:column;gap:12px;
  transition:transform .18s ease,box-shadow .28s cubic-bezier(.2,.8,.2,1),border-color .22s ease;
}
.card:hover{transform:translateY(-3px);border-color:#a98621;box-shadow:0 12px 26px rgba(0,0,0,.35)}

.card-header{display:flex;flex-direction:column;align-items:center;gap:10px;margin-top:4px}

/* Avatar with rotating gold rays */
.avatar-wrap{position:relative;width:96px;height:96px;border-radius:50%;display:flex;align-items:center;justify-content:center}
.avatar-photo{width:96px;height:96px;border-radius:50%;object-fit:cover;box-shadow:0 0 0 2px rgba(212,175,55,.35), 0 0 0 4px rgba(212,175,55,.12) inset}
@media(min-width:1024px){ .avatar-wrap{width:110px;height:110px} .avatar-photo{width:110px;height:110px} }

/* rays ring */
.avatar-wrap::before{
  content:""; position:absolute; inset:-12px; border-radius:50%;
  background: repeating-conic-gradient(from 0deg, rgba(247,231,161,0) 0 18deg, rgba(247,231,161,.30) 18deg 22deg, rgba(247,231,161,0) 22deg 36deg);
  -webkit-mask: radial-gradient(circle at 50% 50%, transparent 65%, black 66%); 
  mask: radial-gradient(circle at 50% 50%, transparent 65%, black 66%);
  filter: blur(.3px);
  opacity:0; transform: rotate(0deg);
  animation: spin 12s linear infinite;
  animation-play-state: paused;
}
.card:hover .avatar-wrap::before{ opacity:.45; animation-play-state: running }
@keyframes spin{ to{ transform: rotate(360deg) } }

.name{font-weight:700;letter-spacing:.2px}

.comment{
  margin:0;color:#e7e2cf;font-size:15px;line-height:1.5;
  background:#151517;border:1px solid #2b2b30;border-radius:14px;padding:12px 14px;position:relative;
}
.comment::before{
  content:"";position:absolute;top:-8px;left:50%;transform:translateX(-50%);
  border-width:0 8px 8px 8px;border-style:solid;border-color:transparent transparent #2b2b30 transparent;
}
.comment::after{
  content:"";position:absolute;top:-7px;left:50%;transform:translateX(-50%);
  border-width:0 7px 7px 7px;border-style:solid;border-color:transparent transparent #151517 transparent;
}

/* Controls + 2-dot liquid indicator */
.controls{display:flex;align-items:center;justify-content:center;gap:12px;margin-top:12px}
.dots-rail{position:relative;width:78px;height:16px;padding:0 18px;background:#1c1c22;border-radius:999px;display:flex;align-items:center;justify-content:space-between;box-shadow: inset 0 0 0 1px #2a2a30}
.tick{width:6px;height:6px;border-radius:50%;background:#34343a}
.blob{position:absolute;top:50%;left:0;width:14px;height:14px;border-radius:50%;transform:translate(0,-50%);background:linear-gradient(90deg,#f7e7a1,#D4AF37,#a57f1a);box-shadow:0 0 12px rgba(212,175,55,.35),0 0 4px rgba(247,231,161,.45);transition: transform .55s cubic-bezier(.22,.85,.25,1), width .45s cubic-bezier(.22,.85,.25,1);will-change: transform,width}
.blob.squeeze{ width:22px }

@media(prefers-reduced-motion:reduce){
  section#trust .container .grid .card:hover{transform:none;box-shadow:none}
  .avatar-wrap::before{ display:none }
}
.section::after{content:"";position:absolute;left:0;right:0;bottom:0;height:1px;background:var(--line)}
section#trust .container .grid .card{position:relative;background:var(--bg-soft);border:1px solid #232329;border-radius:16px;padding:16px;overflow:hidden;transition:transform .18s ease, box-shadow .22s ease, border-color .22s ease;}
section#trust .container .grid .card::before{content:"";position:absolute;inset:0;border-radius:inherit;padding:1px;background:linear-gradient(120deg,rgba(212,175,55,.12),rgba(247,231,161,.04));-webkit-mask:linear-gradient(#000 0 0) content-box,linear-gradient(#000 0 0);-webkit-mask-composite: xor;mask-composite: exclude;pointer-events:none}
section#trust .container .grid .card:hover{transform:translateY(-3px);box-shadow:0 18px 38px rgba(0,0,0,.35);border-color:#2d2d33}

.icon-wrap{width:42px;height:42px;border-radius:12px;border:1px solid #2a2a2f;background:radial-gradient(circle at 30% 30%,rgba(212,175,55,.18),rgba(0,0,0,0));display:flex;align-items:center;justify-content:center;margin-bottom:12px}
.icon{width:22px;height:22px;}

section#trust .container .grid .card h3{font-size:16px;margin:0 0 8px}
section#trust .container .grid .card p{margin:0;color:#dedacd;line-height:1.4;font-size:14px}

.badge{position:absolute;top:12px;right:12px;font-size:10px;color:#c8b57a;border:1px solid #3a3018;background:rgba(212,175,55,.08);padding:3px 6px;border-radius:999px}

@media (prefers-reduced-motion: reduce){ .card:hover{transform:none;box-shadow:none} }

section#trust .container{max-width:1160px;margin:0 auto;padding:0 20px;}
.section{position:relative;padding:48px 0;border-bottom:1px solid var(--line)}

.head-eyebrow{display:inline-block;font-size:12px;letter-spacing:.08em;text-transform:uppercase;color:var(--muted);background:#101012;border:1px solid #1f1f25;border-radius:999px;padding:6px 10px}
#calc4 {
                    --bg: #0B0B0D;
                    --bg-soft: #121214;
                    --fg: #F4F3EF;
                    --muted: #c9c5b6;
                    --line: #1b1b20;
                    --gold: #D4AF37;
                    --gold2: #b48816;
                    --gold3: #f7e7a1;
                    --wa: #25D366;
                    --wa-bg: rgba(37,211,102,.10);
                    --tg: #2AABEE;
                    --tg-bg: rgba(42,171,238,.10);
                    --equal-h: 144px
                }

                #calc4 .container {
                    max-width: 1160px;
                    margin: 0 auto;
                    padding: 0 20px
                }

                #calc4 .eyebrow {
                    display: inline-block;
                    font-size: 12px;
                    letter-spacing: .08em;
                    text-transform: uppercase;
                    color: var(--muted);
                    background: #101012;
                    border: 1px solid #1f1f25;
                    border-radius: 999px;
                    padding: 6px 10px
                }

                #calc4 h2 {
                    font-size: 28px;
                    margin: 12px 0 10px;
                    line-height: 1.2
                }

                #calc4 h2 .accent {
                    background: linear-gradient(90deg,var(--gold),var(--gold3));
                    -webkit-background-clip: text;
                    background-clip: text;
                    color: transparent
                }

                #calc4 p.lead {
                    font-size: 14px;
                    color: #e9e5d4;
                    margin: 0 0 16px
                }

                @media (min-width: 1100px) {
                    #calc4 .lead.lead-single {
                        white-space:nowrap
                    }
                }

                #calc4 .calc {
                    display: grid;
                    grid-template-columns: 1.2fr .8fr;
                    gap: 16px;
                    align-items: start
                }

                @media (max-width: 940px) {
                    #calc4 .calc {
                        grid-template-columns:1fr
                    }
                }

                #calc4 .box {
                    background: var(--bg-soft);
                    border: 1px solid #232329;
                    border-radius: 16px;
                    padding: 16px;
                    position: relative;
                    overflow: hidden
                }

                #calc4 .box::before {
                    content: "";
                    position: absolute;
                    inset: 0;
                    border-radius: inherit;
                    padding: 1px;
                    background: linear-gradient(120deg,rgba(212,175,55,.12),rgba(247,231,161,.04));
                    -webkit-mask: linear-gradient(#000 0 0) content-box,linear-gradient(#000 0 0);
                    -webkit-mask-composite: xor;
                    mask-composite: exclude;
                    pointer-events: none
                }

                #calc4 .box.gold-veil::after {
                    content: "";
                    position: absolute;
                    inset: -12% -6% -12% -6%;
                    pointer-events: none;
                    background: radial-gradient(420px 160px at 60% -10%, rgba(212,175,55,.09), transparent 60%), radial-gradient(260px 120px at 90% 90%, rgba(247,231,161,.06), transparent 70%);
                    filter: blur(10px) saturate(110%)
                }

                #calc4 label {
                    display: block;
                    font-size: 13px;
                    margin: 10px 0 6px;
                    color: #d7d4cb
                }

                /* Probe title matches result title color (golden look) */
                #calc4 label.probe-label {
                    font-size: 18px;
                    font-weight: 600;
                    margin: 0;
                    background: linear-gradient(90deg,#f1e4a6,#d4af37 60%,#f1e4a6);
                    -webkit-background-clip: text;
                    background-clip: text;
                    color: transparent
                }

                #calc4 label.weight-label {
                    margin: 10px 0 6px
                }

                #calc4 input[type="number"], #calc4 select {
                    width: 100%;
                    padding: 10px 12px;
                    border-radius: 10px;
                    border: 1px solid #333;
                    background: #0f0f11;
                    color: #fff;
                    outline: none
                }

                #calc4 input[type="number"]::-webkit-outer-spin-button, #calc4 input[type="number"]::-webkit-inner-spin-button {
                    -webkit-appearance: none;
                    margin: 0
                }

                #calc4 input[type="number"] {
                    -moz-appearance: textfield
                }

                #calc4 .row {
                    display: grid;
                    grid-template-columns: 1fr 1fr;
                    gap: 12px;
                    align-items: center
                }

                @media (max-width: 560px) {
                    #calc4 .row {
                        grid-template-columns:1fr
                    }
                }

                #calc4 .probe-block {
                    min-height: var(--equal-h);
                    display: flex;
                    flex-direction: column;
                    justify-content: flex-start;
                    align-items: flex-start;
                    padding-top: 2px
                }

                #calc4 .row-weight {
                    grid-template-columns: max-content auto;
                    align-items: center;
                    gap: 12px
                }

                #calc4 .weight-wrap {
                    position: relative;
                    display: inline-grid;
                    grid-template-columns: auto 20px;
                    align-items: stretch
                }

                #calc4 .weight-input {
                    width: 220px;
                    max-width: 220px
                }

                #calc4 .stepper {
                    display: grid;
                    grid-template-rows: 1fr 1fr;
                    gap: 4px;
                    margin-left: 6px;
                    align-items: center;
                    justify-items: center
                }

                #calc4 .spin-btn {
                    width: 20px;
                    height: 18px;
                    border: 1px solid #3a2d0b;
                    background: #101012;
                    border-radius: 6px;
                    color: var(--gold);
                    display: inline-flex;
                    align-items: center;
                    justify-content: center;
                    cursor: pointer;
                    transition: transform .06s ease, box-shadow .15s ease, background .15s ease
                }

                #calc4 .spin-btn:hover {
                    background: rgba(212,175,55,.08);
                    box-shadow: 0 0 0 2px rgba(212,175,55,.10) inset
                }

                #calc4 .spin-btn:active {
                    transform: translateY(1px)
                }

                #calc4 .spin-btn svg {
                    width: 12px;
                    height: 12px;
                    display: block
                }

                #calc4 .segment {
                    display: flex;
                    flex-wrap: wrap;
                    gap: 8px;
                    margin: 6px 0 6px
                }

                #calc4 .segment input {
                    display: none
                }

                #calc4 .segment label.btn {
                    cursor: pointer;
                    transition: transform .08s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
                    background: transparent;
                    border: 1px solid #2e2e34;
                    border-radius: 12px;
                    padding: 9px 12px;
                    font-size: 13px
                }

                #calc4 .segment input:checked + label {
                    color: var(--gold3)!important;
                    font-weight: 700;
                    border-color: #a98621;
                    box-shadow: 0 0 0 1px rgba(212,175,55,.22),0 6px 14px rgba(212,175,55,.12);
                    animation: probePulse .42s ease;
                    background: linear-gradient(145deg,#7a5c12,#b48816 40%,#d4af37 70%,#f7e7a1)
                }

                @keyframes probePulse {
                    0% {
                        transform: scale(.98)
                    }

                    50% {
                        transform: scale(1.02)
                    }

                    100% {
                        transform: scale(1)
                    }
                }

                @media (prefers-reduced-motion:reduce) {
                    #calc4 .segment input:checked + label {
                        animation: none
                    }
                }

                /* Result title (gold shimmer) */
                #calc4 .result-title {
                    font-size: 18px;
                    font-weight: 600;
                    margin: 0 0 6px;
                    background: linear-gradient(90deg,#f1e4a6,#d4af37 60%,#f1e4a6);
                    -webkit-background-clip: text;
                    background-clip: text;
                    color: transparent;
                    background-size: 150% 100%;
                    animation: shineTitle 14s linear infinite
                }

                @keyframes shineTitle {
                    from {
                        background-position: 0% 50%
                    }

                    to {
                        background-position: 150% 50%
                    }
                }

                @media (prefers-reduced-motion:reduce) {
                    #calc4 .result-title {
                        animation: none
                    }
                }

                #calc4 .result-top {
                    min-height: var(--equal-h);
                    display: flex;
                    flex-direction: column;
                    justify-content: flex-start;
                    padding-top: 2px
                }

                #calc4 .btn {
                    position: relative;
                    display: inline-flex;
                    align-items: center;
                    gap: 10px;
                    padding: 12px 14px;
                    border-radius: 12px;
                    border: 1px solid #303038;
                    background: #151517;
                    color: #fff;
                    text-decoration: none;
                    line-height: 1;
                    overflow: hidden;
                    transition: transform .12s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
                    justify-content: center;
                    text-align: center
                }

                #calc4 .btn:hover {
                    transform: translateY(-1px);
                    box-shadow: 0 12px 26px rgba(0,0,0,.35)
                }

                #calc4 .btn::before {
                    content: "";
                    position: absolute;
                    inset: 0;
                    border-radius: inherit;
                    pointer-events: none;
                    background: linear-gradient(120deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.24) 30%, rgba(255,255,255,0) 60%);
                    transform: translateX(-120%) skewX(-15deg);
                    transition: transform .6s ease
                }

                #calc4 .btn:hover::before {
                    transform: translateX(120%) skewX(-15deg)
                }

                /* Polished edges for the "Рассчитать цену" button */
                #calc4 .btn.gold {
                    background: #141414;
                    border-color: #a98621;
                    color: #f4f0da
                }

                #calc4 .btn.gold::after {
                    content: "";
                    position: absolute;
                    inset: 0;
                    border-radius: inherit;
                    padding: 1.6px;
                    background: linear-gradient(120deg,#7a5c12 0%,#d4af37 35%,#f7e7a1 55%,#b48816 85%);
                    -webkit-mask: linear-gradient(#000 0 0) content-box,linear-gradient(#000 0 0);
                    -webkit-mask-composite: xor;
                    mask-composite: exclude;
                    opacity: .95;
                    pointer-events: none
                }

                #calc4 .btn.gold:hover {
                    box-shadow: 0 10px 28px rgba(212,175,55,.14)
                }

                #calc4 .btn-accent {
                    background: rgba(212,175,55,.08);
                    border-color: #a98621;
                    color: #f5ebc8
                }

                #calc4 .btn-accent.pulse {
                    animation: pulseSoft 4.8s ease-in-out infinite;
                    box-shadow: 0 0 0 0 rgba(212,175,55,0)
                }

                @keyframes pulseSoft {
                    0%,100% {
                        box-shadow: 0 0 0 0 rgba(212,175,55,0);
                        transform: scale(1)
                    }

                    50% {
                        box-shadow: 0 0 16px 5px rgba(212,175,55,.12);
                        transform: scale(1.015)
                    }
                }

                @media (prefers-reduced-motion:reduce) {
                    #calc4 .btn-accent.pulse {
                        animation: none;
                        box-shadow: none
                    }
                }

                #calc4 .btn-wa {
                    border-color: var(--wa);
                    color: #e6fff0;
                    background: var(--wa-bg)
                }

                #calc4 .btn-tg {
                    border-color: var(--tg);
                    color: #e5f5ff;
                    background: var(--tg-bg)
                }

                #calc4 .icon {
                    width: 18px;
                    height: 18px;
                    display: inline-block;
                    flex: 0 0 18px
                }

                /* Checkbox line */
                #calc4 .checkline {
                    display: flex;
                    align-items: center;
                    gap: 10px;
                    justify-content: flex-start
                }

                #calc4 .check {
                    appearance: none;
                    -webkit-appearance: none;
                    width: 20px;
                    height: 20px;
                    border-radius: 6px;
                    border: 1px solid #3a2d0b;
                    background: #0f0f11;
                    position: relative;
                    outline: none;
                    cursor: pointer;
                    display: inline-block;
                    transition: transform .06s ease, box-shadow .15s ease
                }

                #calc4 .check:hover {
                    box-shadow: 0 0 0 3px rgba(212,175,55,.12) inset
                }

                #calc4 .check:active {
                    transform: scale(.98)
                }

                #calc4 .check:checked {
                    background: linear-gradient(145deg, rgba(212,175,55,.18), rgba(212,175,55,.06));
                    border-color: #a98621
                }

                #calc4 .check:checked::after {
                    content: "";
                    position: absolute;
                    width: 10px;
                    height: 6px;
                    left: 50%;
                    top: 50%;
                    transform: translate(-50%,-50%) rotate(-45deg);
                    border-left: 2px solid var(--gold3);
                    border-bottom: 2px solid var(--gold3);
                    border-radius: .5px
                }

                #calc4 .checklabel {
                    color: #e9e5d4;
                    font-size: 14px;
                    display: inline-flex;
                    align-items: center;
                    height: 20px;
                    line-height: 20px
                }

                /* Golden numbers with soft shimmer */
                #calc4 .result .num {
                    background: linear-gradient(90deg,#eadc9a,#d4af37 55%,#f3e5aa);
                    -webkit-background-clip: text;
                    background-clip: text;
                    color: transparent;
                    background-size: 160% 100%;
                    animation: shimmer 12s linear infinite;
                    text-shadow: 0 0 1px rgba(212,175,55,.20),0 0 6px rgba(212,175,55,.08)
                }

                @keyframes shimmer {
                    from {
                        background-position: 0% 50%
                    }

                    to {
                        background-position: 160% 50%
                    }
                }

                @media (prefers-reduced-motion:reduce) {
                    #calc4 .result .num {
                        animation: none
                    }
                }

                #calc4 .price {
                    font-size: 18px;
                    line-height: 1.2;
                    margin: 2px 0 6px
                }

                #calc4 .price .num {
                    font-size: 34px;
                    line-height: 1
                }

                #calc4 .range {
                    font-size: 15px;
                    color: #e7e0c8
                }

                #calc4 .range .num {
                    font-size: 20px
                }

                #calc4 .note {
                    font-size: 12px;
                    color: #bdb8aa;
                    margin-top: 6px
                }

                #calc4 .cta-grid {
                    display: grid;
                    grid-template-columns: 1fr 208px;
                    gap: 8px;
                    margin-top: 10px;
                    align-items: stretch
                }

                #calc4 .mini-col {
                    display: grid;
                    grid-template-rows: 1fr 1fr;
                    gap: 8px
                }

                #calc4 .btn.block {
                    width: 100%;
                    justify-content: center;
                    min-height: 44px
                }

                #calc4 .btn.mini {
                    width: 100%;
                    min-height: 44px;
                    padding: 10px 12px
                }

                @media (max-width: 700px) {
                    #calc4 .cta-grid {
                        grid-template-columns:1fr
                    }

                    #calc4 .mini-col {
                        grid-template-rows: auto auto
                    }
                }

                #calc4 .info {
                    font-size: 12px;
                    color: #bdb8aa;
                    line-height: 1.35;
                    align-self: center
                }
section#trust .container .grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
}
@media (min-width: 981px) {
    .how-premium .grid::before {
        content: "";
        position: absolute;
        z-index: 0;
        left: 20px;
        right: 20px;
        top: calc(var(--badge-top) + var(--badge-size) / 2 + var(--badge-ring));
        height: 3px;
        border-radius: 999px;
        background: linear-gradient(90deg, rgba(122, 92, 18, .14), rgba(212, 175, 55, .38), rgba(122, 92, 18, .14));
    }
}
section#benefits .container .grid{display:grid;gap:12px}
@media (min-width:640px){ section#hero .container .grid{grid-template-columns:repeat(2,minmax(0,1fr))} }
@media (min-width:1024px){ .grid{grid-template-columns:repeat(3,minmax(0,1fr))} }

section#benefits .container .grid .card{
background: var(--bg-soft);
    border: 1px solid #232329;
    border-radius: 16px;
    padding: 16px;
    transition: transform .14s 
ease, box-shadow .22s 
ease, border-color .22s 
ease;
    position: relative;
    overflow: hidden;
    min-height: 186px;
}
section#benefits .container .grid .card:hover{ transform:translateY(-3px); border-color:#a98621; box-shadow:0 12px 26px rgba(0,0,0,.35) }

section#benefits .container .grid .card .icon{ width:32px; height:32px; color:#f3ebd0; margin-bottom:12px; position:relative;
             display:flex; align-items:center; justify-content:center }
section#benefits .container .grid .card .icon svg{ width:32px; height:32px; display:block; stroke:currentColor; fill:none;
                 stroke-width:1.8; stroke-linecap:round; stroke-linejoin:round }
section#benefits .container .grid .card .icon svg *{ vector-effect: non-scaling-stroke }

/* Soft golden glow around icon on hover (унифицировано) */
section#benefits .container .grid .card .icon::before{
  content:""; position:absolute; width:46px; height:46px; border-radius:50%;
  background: radial-gradient( circle at 50% 50%, rgba(247,231,161,.28) 0%, rgba(212,175,55,.18) 45%, transparent 70% );
  filter: blur(5px);
  opacity:0; transform:scale(.88); transition: opacity .22s ease, transform .22s ease;
  pointer-events:none;
}
section#benefits .container .grid .card:hover .icon::before{ opacity:1; transform:scale(1) }
section#benefits .container .grid .card:hover .icon svg{ color:var(--gold-soft); filter: drop-shadow(0 0 6px rgba(212,175,55,.28)) brightness(1.05) }

section#benefits .container .grid .card h3{ font-size:18px; margin:0 0 6px }
section#benefits .container .grid .card p{ font-size:14px; margin:0; color:#c9c5b6 }
section#benefits .container h2{font-size:28px;margin:12px 0 18px;line-height:1.2;text-align:left}
section#benefits .container h2 .accent{background:linear-gradient(90deg,var(--gold),#f7e7a1);-webkit-background-clip:text;background-clip:text;color:transparent}

/* Cursor glow (block-local): small golden halo following pointer */
#cursor-glow{
  position:fixed; left:0; top:0; width:22px; height:22px;
  margin-left:-11px; margin-top:-11px; border-radius:50%;
  pointer-events:none; z-index:9999; opacity:.7;
  filter: blur(6px);
  background: radial-gradient(circle at 50% 50%, rgba(247,231,161,.42) 0%, rgba(212,175,55,.18) 40%, transparent 65%);
  mix-blend-mode:screen; transition: transform .08s ease, opacity .2s ease;
}
#cursor-glow.hidden{ opacity:0 }

/* Hide on touch devices */
.touch #cursor-glow{ display:none }

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  section#benefits .container .grid .card:hover{ transform:none; box-shadow:none }
  section#benefits .container .grid .card .icon::before{ display:none }
  #cursor-glow{ display:none }
}

/* Optional: bottom separator */
.section::after{
  content:""; position:absolute; left:0; right:0; bottom:0; height:1px; background:var(--line);
}

section#calc .container{max-width:1160px;margin:0 auto;padding:0 20px;}
.section{position:relative;padding:48px 0;border-bottom:1px solid var(--line)}

.eyebrow{display:inline-block;font-size:12px;letter-spacing:.08em;text-transform:uppercase;color:var(--muted);background:#101012;border:1px solid #1f1f25;border-radius:999px;padding:6px 10px}
h2{font-size:28px;margin:12px 0 10px;line-height:1.2}
h2 .accent{background:linear-gradient(90deg,var(--gold),var(--gold3));-webkit-background-clip:text;background-clip:text;color:transparent}
p.lead{font-size:14px;color:#e9e5d4;margin:0 0 16px}
@media (min-width: 1100px){ .lead.lead-single{ white-space:nowrap; } }

.calc{display:grid;grid-template-columns:1.2fr .8fr;gap:16px;align-items:start}
@media (max-width: 940px){ .calc{grid-template-columns:1fr} }

.box{background:var(--bg-soft);border:1px solid #232329;border-radius:16px;padding:16px;position:relative;overflow:hidden}
.box::before{content:"";position:absolute;inset:0;border-radius:inherit;padding:1px;background:linear-gradient(120deg,rgba(212,175,55,.12),rgba(247,231,161,.04));-webkit-mask:linear-gradient(#000 0 0) content-box,linear-gradient(#000 0 0);-webkit-mask-composite:xor;mask-composite:exclude;pointer-events:none}
.box.gold-veil::after{content:"";position:absolute;inset:-12% -6% -12% -6%;pointer-events:none;background:radial-gradient(420px 160px at 60% -10%, rgba(212,175,55,.09), transparent 60%),radial-gradient(260px 120px at 90% 90%, rgba(247,231,161,.06), transparent 70%);filter: blur(10px) saturate(110%);}

label{display:block;font-size:13px;margin:10px 0 6px;color:#d7d4cb}
label.probe-label{font-size:18px;font-weight:600;color:#f3ebd0;margin:0}
label.weight-label{margin:10px 0 6px}
input[type="number"],select{width:100%;padding:10px 12px;border-radius:10px;border:1px solid #333;background:#0f0f11;color:#fff;outline:none}
input[type="number"]::-webkit-outer-spin-button, input[type="number"]::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
input[type="number"] { -moz-appearance:textfield; }

.row{display:grid;grid-template-columns:1fr 1fr;gap:12px;align-items:center}
@media (max-width:560px){ .row{grid-template-columns:1fr} }

.probe-block{min-height:var(--equal-h);display:flex;flex-direction:column;justify-content:flex-start;align-items:flex-start;padding-top:2px}
.row-weight{grid-template-columns:max-content auto;align-items:center;gap:12px}
.weight-wrap{position:relative;display:inline-grid;grid-template-columns:auto 20px;align-items:stretch}
.weight-input{width:220px;max-width:220px}
.stepper{display:grid;grid-template-rows:1fr 1fr;gap:4px;margin-left:6px;align-items:center;justify-items:center}
.spin-btn{width:20px;height:18px;border:1px solid #3a2d0b;background:#101012;border-radius:6px;color:var(--gold);display:inline-flex;align-items:center;justify-content:center;cursor:pointer;transition:transform .06s ease, box-shadow .15s ease, background .15s ease}
.spin-btn:hover{background:rgba(212,175,55,.08);box-shadow:0 0 0 2px rgba(212,175,55,.10) inset}
.spin-btn:active{transform:translateY(1px)}
.spin-btn svg{width:12px;height:12px;display:block}

.segment{display:flex;flex-wrap:wrap;gap:8px;margin:6px 0 6px}
.segment input{display:none}
.segment label.btn{cursor:pointer;transition:transform .08s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease}
.segment label.btn.ghost{background:transparent;border-color:#2e2e34}
.segment input:checked + label{
  background:linear-gradient(145deg,#7a5c12,#b48816 40%,#d4af37 70%,#f7e7a1);
  color:var(--gold3)!important;font-weight:700;
  text-shadow:0 1px 2px rgba(0,0,0,.60),0 0 6px rgba(0,0,0,.35);
  border-color:#a98621;
  box-shadow:0 0 0 1px rgba(212,175,55,.22),0 6px 14px rgba(212,175,55,.12);
  animation:probePulse .42s ease;
}
@keyframes probePulse{0%{transform:scale(.98)}50%{transform:scale(1.02)}100%{transform:scale(1)}}
@media (prefers-reduced-motion: reduce){ .segment input:checked + label{ animation:none } }

/* Result block: golden heading + golden numbers */
.result-title{
  font-size:18px;font-weight:600;margin:0 0 6px;
  background:linear-gradient(90deg,#f1e4a6,#d4af37 60%,#f1e4a6);
  -webkit-background-clip:text;background-clip:text;color:transparent;
  background-size:150% 100%; animation:shineTitle 14s linear infinite;
}
@keyframes shineTitle{ from{background-position:0% 50%} to{background-position:150% 50%} }
@media (prefers-reduced-motion: reduce){ .result-title{animation:none} }

.result-top{min-height:var(--equal-h);display:flex;flex-direction:column;justify-content:flex-start;padding-top:2px}

.btn{position:relative;display:inline-flex;align-items:center;gap:10px;padding:12px 14px;border-radius:12px;border:1px solid #303038;background:#151517;color:#fff;text-decoration:none;line-height:1;transition:transform .12s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;overflow:hidden;justify-content:center;text-align:center}
.btn:hover{transform:translateY(-1px);box-shadow:0 12px 26px rgba(0,0,0,.35)}
.btn::before{content:"";position:absolute;inset:0;border-radius:inherit;pointer-events:none;background:linear-gradient(120deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.24) 30%, rgba(255,255,255,0) 60%);transform:translateX(-120%) skewX(-15deg);transition:transform .6s ease}
.btn:hover::before{transform:translateX(120%) skewX(-15deg)}
.btn.small{padding:9px 12px;font-size:13px}
.btn.gold{background:linear-gradient(140deg,#7a5c12,#d4af37,#f7e7a1,#b48816);color:#141414;border-color:#a98621}
.btn.ghost{background:transparent;border-color:#2e2e34}
.btn-accent{background:rgba(212,175,55,.08);border-color:#a98621;color:#f5ebc8}
.btn-accent.pulse{animation:pulseSoft 4.8s ease-in-out infinite;box-shadow:0 0 0 0 rgba(212,175,55,0)}
@keyframes pulseSoft{0%,100%{box-shadow:0 0 0 0 rgba(212,175,55,0);transform:scale(1)}50%{box-shadow:0 0 16px 5px rgba(212,175,55,.12);transform:scale(1.015)}}
@media (prefers-reduced-motion: reduce){ .btn-accent.pulse{ animation:none; box-shadow:none } }

.btn-wa{border-color:var(--wa);color:#e6fff0;background:var(--wa-bg)}
.btn-tg{border-color:var(--tg);color:#e5f5ff;background:var(--tg-bg)}
.icon{width:18px;height:18px;display:inline-block;flex:0 0 18px}

/* Checkbox line */
.checkline{display:flex;align-items:center;gap:10px;justify-content:flex-start}
.check{appearance:none;-webkit-appearance:none;width:20px;height:20px;border-radius:6px;border:1px solid #3a2d0b;background:#0f0f11;position:relative;outline:none;cursor:pointer;display:inline-block;transition:transform .06s ease, box-shadow .15s ease}
.check:hover{box-shadow:0 0 0 3px rgba(212,175,55,.12) inset}
.check:active{transform:scale(.98)}
.check:checked{background:linear-gradient(145deg, rgba(212,175,55,.18), rgba(212,175,55,.06));border-color:#a98621}
/* centered checkmark */
.check:checked::after{
  content:"";position:absolute;width:10px;height:6px;left:50%;top:50%;
  transform:translate(-50%,-50%) rotate(-45deg);
  border-left:2px solid var(--gold3);border-bottom:2px solid var(--gold3);border-radius:.5px;
}
.checklabel{color:#e9e5d4;font-size:14px;display:inline-flex;align-items:center;height:20px;line-height:20px}

/* softly golden numbers with subtle shimmer */
.result .num{
  background:linear-gradient(90deg,#eadc9a,#d4af37 55%,#f3e5aa);
  -webkit-background-clip:text;background-clip:text;color:transparent;
  background-size:160% 100%; animation:shimmer 12s linear infinite;
  text-shadow:0 0 1px rgba(212,175,55,.20), 0 0 6px rgba(212,175,55,.08);
}
@keyframes shimmer{ from{background-position:0% 50%} to{background-position:160% 50%} }
@media (prefers-reduced-motion: reduce){ .result .num{animation:none} }
.right-col .badge {
    font-size: 12px;
    background: #151517;
    border: 1px solid #2a2a2e;
    color: #eadaaa;
    padding: 8px 10px;
    border-radius: 999px;
    text-align: center;
    position: relative;
    top: 0;
    right: 0;
}
.price{font-size:18px;line-height:1.2;margin:2px 0 6px}
.price .num{font-size:34px;line-height:1}
.range{font-size:15px;color:#e7e0c8}
.range .num{font-size:20px}
.note{font-size:12px;color:#bdb8aa;margin-top:6px}

.cta-grid{display:grid;grid-template-columns: 1fr 208px;gap:8px;margin-top:10px;align-items:stretch}
.mini-col{display:grid;grid-template-rows: 1fr 1fr;gap:8px}
.btn.block{width:100%;justify-content:center;min-height:44px}
.btn.mini{width:100%;min-height:44px;padding:10px 12px}

@media (max-width:700px){ .cta-grid{grid-template-columns:1fr} .mini-col{grid-template-rows:auto auto} }

.info{font-size:12px;color:#bdb8aa;line-height:1.35;align-self:center}