:root {
  --ink: #101114;
  --ink-soft: #25272d;
  --muted: #6a6d76;
  --paper: #ffffff;
  --mist: #f5f1ea;
  --line: #e0ddd6;
  --line-strong: #c9c4bb;
  --accent: #ff2d1b;
  --accent-dark: #d91d10;
  --gold: #c98420;
  --market-green: #0e9f6e;
  --shadow: 0 22px 70px rgba(17, 19, 24, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  background: var(--mist);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--mist);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

body::selection {
  background: rgba(255, 45, 27, 0.18);
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 40;
  padding: 10px 14px;
  pointer-events: none;
}

.nav-shell {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1160px, 100%);
  min-height: 54px;
  margin: 0 auto;
  padding: 0 12px;
  border: 1px solid rgba(202, 210, 216, 0.74);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 40px rgba(17, 19, 24, 0.08);
  backdrop-filter: blur(22px);
  pointer-events: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  color: var(--ink);
  font-weight: 700;
}

.brand-mark {
  width: 30px;
  height: 30px;
  border-radius: 8px;
}

.brand-name {
  overflow: hidden;
  max-width: 52vw;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.menu-button {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 8px;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 19px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.site-header.is-open .menu-button span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.site-header.is-open .menu-button span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.nav-links {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  left: 0;
  display: grid;
  gap: 2px;
  padding: 8px;
  border: 1px solid rgba(202, 210, 216, 0.82);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.site-header.is-open .nav-links {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-links a {
  display: block;
  padding: 14px 13px;
  border-radius: 8px;
  color: var(--ink-soft);
  font-size: 15px;
  font-weight: 600;
}

.nav-links a:hover,
.nav-links a.is-active {
  color: var(--ink);
  background: #fff0ee;
}

.hero {
  position: relative;
  display: flex;
  min-height: 80svh;
  align-items: center;
  overflow: hidden;
  padding: 116px 20px 70px;
  background: #f5f1ea;
}

#marketCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 32%;
  background: linear-gradient(180deg, rgba(245, 241, 234, 0), #f5f1ea 88%);
  content: "";
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(1160px, 100%);
  margin: 0 auto;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
}

.hero h1 {
  max-width: 1120px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(48px, 15vw, 104px);
  font-weight: 820;
  line-height: 0.98;
}

.no-break {
  white-space: nowrap;
}

.hero-copy {
  max-width: 650px;
  margin: 22px 0 0;
  color: var(--ink-soft);
  font-size: clamp(18px, 4.7vw, 24px);
  line-height: 1.58;
}

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

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 750;
  line-height: 1;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-dark {
  color: #fff;
  background: var(--ink);
  box-shadow: 0 18px 34px rgba(17, 19, 24, 0.18);
}

.button-light {
  border-color: rgba(17, 19, 24, 0.15);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.82);
}

.button-consult {
  position: relative;
  gap: 8px;
  border-color: rgba(255, 45, 27, 0.26);
  color: var(--accent);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 16px 34px rgba(255, 45, 27, 0.1);
  cursor: pointer;
}

.button-consult::before {
  display: inline-block;
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #18c77a;
  box-shadow: 0 0 0 0 rgba(24, 199, 122, 0.24), 0 0 10px rgba(24, 199, 122, 0.28);
  content: "";
  animation: crispDotBreath 4.8s cubic-bezier(0.37, 0, 0.63, 1) infinite;
}

.button-consult:hover,
.button-consult:focus-visible {
  background: #fff;
  box-shadow: 0 18px 42px rgba(255, 45, 27, 0.16);
}

.section {
  padding: 74px 20px;
  scroll-margin-top: 92px;
}

.section-inner {
  width: min(1160px, 100%);
  margin: 0 auto;
}

.split-layout {
  display: grid;
  gap: 32px;
}

.section h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(32px, 9vw, 68px);
  font-weight: 760;
  line-height: 1.02;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 32px;
}

.section-heading p:not(.section-kicker) {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}

.rich-copy p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.82;
}

.rich-copy p + p {
  margin-top: 18px;
}

.mission-strip {
  display: grid;
  gap: 8px;
  margin-top: 26px;
  padding: 22px;
  border-left: 4px solid var(--accent);
  background: #ffffff;
}

.mission-strip span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.mission-strip strong {
  color: var(--ink);
  font-size: 22px;
  line-height: 1.25;
}

.service-section,
.contact-section,
.faq-section {
  background: var(--paper);
}

.service-grid {
  display: grid;
  gap: 14px;
}

.service-card,
.price-card,
.contact-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.service-card {
  position: relative;
  display: grid;
  gap: 16px;
  min-height: 244px;
  padding: 22px;
  overflow: hidden;
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.service-card:hover {
  border-color: var(--line-strong);
  box-shadow: 0 16px 40px rgba(17, 19, 24, 0.08);
  transform: translateY(-2px);
}

.service-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 30px;
  border-radius: 999px;
  color: var(--accent);
  background: rgba(255, 45, 27, 0.1);
  font-size: 12px;
  font-weight: 850;
}

.service-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 25px;
  line-height: 1.2;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.72;
}

.service-card h3::before {
  color: var(--ink);
  content: ">";
  margin-right: 4px;
}

.service-meta {
  display: grid;
  gap: 8px;
  margin: 0;
}

.service-meta div {
  display: grid;
  gap: 5px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #faf9f6;
}

.service-meta dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 780;
}

.service-meta dd {
  margin: 0;
  color: var(--ink);
  font-size: 15px;
  font-weight: 760;
  line-height: 1.48;
}

.follow-card {
  border-color: var(--ink);
  background: var(--ink);
  box-shadow: 0 24px 70px rgba(16, 17, 20, 0.2);
}

.follow-card h3,
.follow-card p,
.follow-card .service-meta dd {
  color: #fff;
}

.follow-card .service-index {
  color: #fff;
  background: var(--accent);
}

.follow-card h3::before {
  color: var(--accent);
}

.follow-title {
  display: grid;
  gap: 8px;
}

.follow-title h3 {
  color: var(--accent);
  font-size: clamp(32px, 8vw, 52px);
}

.follow-title p {
  color: rgba(255, 255, 255, 0.86);
  font-size: 17px;
  font-weight: 780;
}

.follow-card .service-meta div {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.07);
}

.follow-card .service-meta dt {
  color: rgba(255, 255, 255, 0.58);
}

.highlight {
  display: inline-block;
  margin: 0 2px;
  padding: 0 4px;
  color: var(--ink);
  background: #ffe600;
  font-weight: 850;
}

.follow-note {
  display: grid;
  gap: 7px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.follow-note strong {
  color: #fff;
  font-size: 15px;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.follow-note span {
  color: #fff;
  font-size: 16px;
  font-weight: 780;
  line-height: 1.62;
}

.service-warn {
  color: rgba(255, 255, 255, 0.66) !important;
  font-size: 14px !important;
}

.pricing-section {
  background: #f5f1ea;
}

.pricing-grid {
  display: grid;
  gap: 14px;
}

.price-card {
  position: relative;
  display: flex;
  min-height: 390px;
  flex-direction: column;
  padding: 24px;
  overflow: hidden;
}

.featured-price {
  border-color: rgba(255, 45, 27, 0.35);
  box-shadow: 0 22px 70px rgba(255, 45, 27, 0.11);
}

.price-label {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 6px 10px;
  border-radius: 999px;
  color: #fff;
  background: var(--accent);
  font-size: 12px;
  font-weight: 780;
}

.price-head h3 {
  margin: 0;
  color: var(--ink);
  font-size: 24px;
}

.price-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  align-items: center;
  margin-top: 18px;
}

.price-head p,
.price-row p {
  margin: 18px 0 0;
  color: var(--ink);
  font-size: 18px;
  font-weight: 750;
}

.price-row p {
  margin: 0;
}

.price-head span {
  margin-right: 4px;
  font-size: clamp(48px, 14vw, 72px);
  font-weight: 800;
  line-height: 1;
}

.daily-price {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 0 14px;
  border-radius: 8px;
  color: var(--accent);
  background: var(--ink);
  font-size: clamp(18px, 5.5vw, 28px);
  font-weight: 850;
  line-height: 1;
  white-space: nowrap;
}

.price-card ul {
  display: grid;
  gap: 13px;
  margin: 26px 0 28px;
  padding: 0;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.price-card li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  content: "";
}

.full-button {
  width: 100%;
  margin-top: auto;
}

.pay-panel {
  display: grid;
  gap: 18px;
  align-items: center;
  margin-top: 16px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.pay-panel span,
.contact-label {
  display: block;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
}

.pay-panel strong {
  display: block;
  margin-top: 8px;
  color: var(--ink);
  font-size: clamp(22px, 6vw, 34px);
  line-height: 1.16;
  overflow-wrap: anywhere;
}

.pay-panel p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.copy-button {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--ink);
  background: #fff;
  font-size: 14px;
  font-weight: 750;
  cursor: pointer;
}

.copy-button.is-copied {
  border-color: rgba(255, 45, 27, 0.35);
  color: var(--accent);
  background: #fff0ee;
}

.community-section {
  background: var(--ink);
  color: #fff;
}

.community-section .section-kicker {
  color: #ff7b6f;
}

.community-section h2 {
  color: #fff;
}

.step-list {
  display: grid;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.step-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: start;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.step-item span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: #fff;
  font-weight: 800;
}

.step-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
  line-height: 1.76;
}

.contact-grid {
  display: grid;
  gap: 14px;
}

.contact-card {
  padding: 22px;
}

.contact-label {
  display: inline-flex;
  gap: 7px;
  align-items: center;
}

.contact-label svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: currentColor;
}

.qr-card {
  display: grid;
  gap: 18px;
}

.telegram-card {
  align-content: start;
}

.contact-card h3 {
  margin: 8px 0 0;
  color: var(--ink);
  font-size: 23px;
  line-height: 1.24;
  overflow-wrap: anywhere;
}

.contact-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.qr-card img {
  width: min(260px, 100%);
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.qr-card .copy-button {
  width: 100%;
}

.telegram-guide {
  display: grid;
  gap: 14px;
  padding: 15px;
  border: 1px solid rgba(255, 45, 27, 0.16);
  border-radius: 8px;
  background: #fff8f6;
}

.telegram-guide-copy strong,
.telegram-guide-copy span {
  display: block;
}

.telegram-guide-copy strong {
  color: var(--ink);
  font-size: 16px;
  line-height: 1.35;
}

.telegram-guide-copy span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.guide-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.guide-button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 0 12px;
  border: 1px solid rgba(17, 19, 24, 0.15);
  border-radius: 999px;
  color: var(--ink);
  background: #fff;
  font-size: 13px;
  font-weight: 780;
  line-height: 1;
}

.guide-button svg {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  fill: currentColor;
}

.guide-button-primary {
  border-color: var(--ink);
  color: #fff;
  background: var(--ink);
}

.compact-contact {
  display: flex;
  min-height: 184px;
  flex-direction: column;
  justify-content: space-between;
}

.compact-contact .contact-label {
  align-self: flex-start;
}

.compact-contact a {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  margin-top: 24px;
  color: var(--ink);
  font-weight: 760;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.faq-section {
  background: linear-gradient(180deg, var(--paper) 0%, var(--mist) 100%);
}

.faq-heading {
  max-width: 840px;
}

.faq-list {
  display: grid;
  gap: 14px;
  grid-auto-rows: auto;
  align-items: start;
}

.faq-item {
  display: grid;
  align-content: start;
  min-height: 0;
  height: auto;
  align-self: start;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 40px rgba(17, 19, 24, 0.04);
}

.faq-question,
.faq-answer {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-items: start;
}

.faq-question {
  width: 100%;
  min-width: 0;
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  font: inherit;
  text-align: left;
  appearance: none;
  -webkit-appearance: none;
  -webkit-tap-highlight-color: rgba(255, 45, 27, 0.12);
  touch-action: manipulation;
}

.faq-question > span:first-child,
.faq-answer > span:first-child {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 850;
  line-height: 1;
}

.faq-question > span:first-child {
  color: var(--paper);
  background: var(--ink);
}

.faq-answer > span:first-child {
  color: var(--accent);
  background: rgba(255, 45, 27, 0.1);
}

.faq-question-title {
  display: block;
  margin: 1px 0 0;
  color: var(--ink);
  font-size: 19px;
  font-weight: 780;
  line-height: 1.36;
}

.faq-toggle-icon {
  display: none;
}

.faq-answer {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.faq-answer p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.78;
}

.faq-closer {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
  padding: 22px;
  border: 1px solid rgba(255, 45, 27, 0.2);
  border-radius: 8px;
  background: #fff8f6;
}

.faq-closer p {
  margin: 0;
  color: var(--ink);
  font-size: 17px;
  font-weight: 760;
  line-height: 1.55;
}

.faq-closer .button {
  flex: 0 0 auto;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: flex-end;
  justify-content: space-between;
  padding: 34px 20px 92px;
  color: #fff;
  background: #111318;
}

.footer-info {
  display: grid;
  gap: 9px;
}

.footer-info p,
.footer-links a {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
}

.footer-copyright {
  color: #fff !important;
  font-weight: 760;
  line-height: 1.4;
}

.footer-mission {
  line-height: 1.5;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.footer-links a {
  text-decoration: underline;
  text-underline-offset: 5px;
}

.footer-social {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  text-decoration: none !important;
}

.footer-social svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.crisp-reminder {
  position: fixed;
  right: 88px;
  bottom: max(30px, calc(env(safe-area-inset-bottom) + 30px));
  z-index: 2147483600;
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  gap: 8px;
  padding: 0 15px;
  border: 1px solid rgba(255, 45, 27, 0.28);
  border-radius: 999px;
  color: #fff;
  background: var(--ink);
  box-shadow: 0 16px 40px rgba(16, 17, 20, 0.24), 0 0 0 8px rgba(255, 45, 27, 0.08);
  font-size: 14px;
  font-weight: 850;
  line-height: 1;
  cursor: pointer;
}

.crisp-reminder::after {
  position: absolute;
  top: 50%;
  right: -5px;
  width: 10px;
  height: 10px;
  border-top: 1px solid rgba(255, 45, 27, 0.28);
  border-right: 1px solid rgba(255, 45, 27, 0.28);
  background: var(--ink);
  content: "";
  transform: translateY(-50%) rotate(45deg);
}

.crisp-reminder:hover,
.crisp-reminder:focus-visible {
  box-shadow: 0 18px 44px rgba(16, 17, 20, 0.3), 0 0 0 10px rgba(255, 45, 27, 0.12);
}

.crisp-reminder-dot {
  position: relative;
  display: inline-block;
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #18c77a;
  box-shadow: 0 0 0 0 rgba(24, 199, 122, 0.24), 0 0 10px rgba(24, 199, 122, 0.28);
  animation: crispDotBreath 4.8s cubic-bezier(0.37, 0, 0.63, 1) infinite;
}

.crisp-reminder-dot::after {
  position: absolute;
  inset: -7px;
  border-radius: inherit;
  background: radial-gradient(circle, rgba(24, 199, 122, 0.32), rgba(24, 199, 122, 0));
  content: "";
  opacity: 0.35;
  transform: scale(0.62);
  animation: crispDotHaloBreath 4.8s cubic-bezier(0.37, 0, 0.63, 1) infinite;
}

@keyframes crispDotBreath {
  0%,
  100% {
    opacity: 0.76;
    transform: scale(0.86);
    box-shadow: 0 0 0 0 rgba(24, 199, 122, 0.2), 0 0 8px rgba(24, 199, 122, 0.18);
  }

  44%,
  50% {
    opacity: 1;
    transform: scale(1.14);
    box-shadow: 0 0 0 7px rgba(24, 199, 122, 0.14), 0 0 16px rgba(24, 199, 122, 0.46);
  }

  62% {
    opacity: 0.96;
    transform: scale(1.04);
    box-shadow: 0 0 0 10px rgba(24, 199, 122, 0), 0 0 12px rgba(24, 199, 122, 0.28);
  }
}

@keyframes crispDotHaloBreath {
  0%,
  100% {
    opacity: 0.14;
    transform: scale(0.62);
  }

  50% {
    opacity: 0.42;
    transform: scale(1.1);
  }

  68% {
    opacity: 0;
    transform: scale(1.34);
  }
}

.mobile-cta {
  position: fixed;
  right: 12px;
  bottom: max(12px, env(safe-area-inset-bottom));
  left: 12px;
  z-index: 30;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(202, 210, 216, 0.82);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 44px rgba(17, 19, 24, 0.18);
  backdrop-filter: blur(18px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(calc(100% + 24px));
  transition: opacity 180ms ease, transform 180ms ease;
}

.mobile-cta.is-visible,
.mobile-cta:focus-within {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-cta a {
  display: grid;
  min-height: 44px;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  background: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.mobile-cta a:first-child {
  color: var(--ink);
  background: #f4eee7;
}

@media (min-width: 700px) {
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .follow-card {
    grid-column: span 2;
  }

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

  .faq-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
  }

  .faq-item {
    height: 100%;
    align-self: stretch;
  }

  .pay-panel {
    grid-template-columns: 1fr auto;
  }

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

  .mobile-cta {
    display: none;
  }
}

@media (max-width: 699px) {
  html {
    scroll-padding-top: calc(88px + env(safe-area-inset-top, 0px));
  }

  .site-header {
    padding: 8px 14px;
  }

  .nav-shell {
    min-height: 50px;
    padding: 0 10px;
    box-shadow: 0 12px 32px rgba(17, 19, 24, 0.08);
  }

  .brand {
    gap: 8px;
    font-size: 15px;
  }

  .brand-mark {
    width: 28px;
    height: 28px;
  }

  .brand-name {
    max-width: 62vw;
  }

  .menu-button {
    width: 38px;
    height: 38px;
  }

  .nav-links {
    top: calc(100% + 8px);
    padding: 6px;
  }

  .nav-links a {
    padding: 11px 12px;
    font-size: 14px;
  }

  .hero {
    min-height: 64svh;
    padding: 88px 20px 46px;
  }

  .eyebrow,
  .section-kicker {
    margin-bottom: 10px;
    font-size: 11px;
  }

  .hero h1 {
    font-size: clamp(42px, 12.8vw, 56px);
    line-height: 1.03;
  }

  .hero-copy {
    max-width: 100%;
    margin-top: 16px;
    font-size: 16px;
    line-height: 1.55;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    width: min(100%, 420px);
    margin-top: 22px;
  }

  .hero-actions .button {
    min-height: 42px;
    padding: 0 14px;
    font-size: 13px;
    white-space: nowrap;
  }

  .hero-actions .button-consult {
    grid-column: 1 / -1;
    min-height: 44px;
  }

  .section {
    padding: 48px 20px;
    scroll-margin-top: calc(88px + env(safe-area-inset-top, 0px));
  }

  .split-layout {
    gap: 20px;
  }

  .section h2 {
    font-size: clamp(29px, 8.4vw, 40px);
    line-height: 1.07;
  }

  .section-heading {
    margin-bottom: 20px;
  }

  .section-heading p:not(.section-kicker) {
    margin-top: 12px;
    font-size: 15px;
    line-height: 1.62;
  }

  .rich-copy p {
    font-size: 15px;
    line-height: 1.72;
  }

  .rich-copy p + p {
    margin-top: 12px;
  }

  .mission-strip {
    gap: 6px;
    margin-top: 18px;
    padding: 16px;
  }

  .mission-strip span {
    font-size: 12px;
  }

  .mission-strip strong {
    font-size: 18px;
  }

  .service-grid,
  .pricing-grid,
  .contact-grid {
    gap: 10px;
  }

  .service-card {
    gap: 12px;
    min-height: 0;
    padding: 16px;
  }

  .service-index {
    width: 36px;
    height: 26px;
    font-size: 11px;
  }

  .service-card h3 {
    font-size: 20px;
  }

  .service-card p {
    font-size: 14px;
    line-height: 1.62;
  }

  .service-meta div {
    gap: 4px;
    padding: 10px;
  }

  .service-meta dd {
    font-size: 14px;
  }

  .follow-title h3 {
    font-size: clamp(30px, 9vw, 40px);
  }

  .follow-title p,
  .follow-note span {
    font-size: 15px;
    line-height: 1.55;
  }

  .follow-note {
    gap: 6px;
    padding-top: 12px;
  }

  .pricing-section {
    padding-bottom: 108px;
  }

  .price-card {
    min-height: 0;
    padding: 18px;
  }

  .price-label {
    top: 14px;
    right: 14px;
  }

  .price-head h3 {
    font-size: 21px;
  }

  .price-row {
    gap: 9px 12px;
    margin-top: 14px;
  }

  .price-head p,
  .price-row p {
    margin-top: 14px;
    font-size: 16px;
  }

  .price-row p {
    margin: 0;
  }

  .price-head span {
    font-size: clamp(44px, 12vw, 58px);
  }

  .daily-price {
    min-height: 34px;
    padding: 0 11px;
    font-size: clamp(16px, 5vw, 22px);
  }

  .price-card ul {
    gap: 9px;
    margin: 20px 0 22px;
  }

  .price-card li {
    font-size: 14px;
    line-height: 1.52;
  }

  .pay-panel {
    gap: 14px;
    margin-top: 12px;
    padding: 17px;
  }

  .pay-panel strong {
    font-size: clamp(20px, 5.5vw, 28px);
  }

  .pay-panel p {
    font-size: 14px;
    line-height: 1.58;
  }

  .copy-button,
  .guide-button {
    min-height: 40px;
    font-size: 13px;
  }

  .step-item {
    grid-template-columns: 34px 1fr;
    gap: 12px;
    padding: 15px 0;
  }

  .step-item span {
    width: 30px;
    height: 30px;
  }

  .step-item p {
    font-size: 15px;
    line-height: 1.62;
  }

  .contact-section {
    padding-top: 48px;
  }

  .faq-section {
    padding-top: 48px;
    padding-bottom: 112px;
  }

  .contact-card {
    padding: 16px;
  }

  .contact-card h3 {
    font-size: 19px;
  }

  .qr-card {
    gap: 12px;
  }

  .qr-card img {
    width: min(204px, 78vw);
  }

  .telegram-guide {
    gap: 10px;
    padding: 13px;
  }

  .guide-actions {
    grid-template-columns: 1fr;
  }

  .compact-contact {
    min-height: 150px;
  }

  .compact-contact a {
    margin-top: 18px;
  }

  .faq-list {
    gap: 10px;
    grid-auto-rows: auto;
    align-items: start;
  }

  .faq-item {
    min-height: 0;
    height: auto;
    align-self: start;
    padding: 15px;
  }

  body.faq-enhanced .faq-question {
    grid-template-columns: 30px 1fr 28px;
    cursor: pointer;
  }

  .faq-question,
  .faq-answer {
    grid-template-columns: 30px 1fr;
    gap: 10px;
  }

  .faq-question > span:first-child,
  .faq-answer > span:first-child {
    width: 27px;
    height: 27px;
    font-size: 12px;
  }

  .faq-toggle-icon {
    position: relative;
    display: none;
    width: 28px;
    height: 28px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.64);
  }

  body.faq-enhanced .faq-toggle-icon {
    display: block;
  }

  .faq-toggle-icon::before,
  .faq-toggle-icon::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    content: "";
    transform: translate(-50%, -50%);
  }

  .faq-toggle-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
    transition: transform 160ms ease, opacity 160ms ease;
  }

  .faq-item.is-open .faq-toggle-icon::after {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(0deg);
  }

  .faq-question-title {
    font-size: 16px;
    line-height: 1.36;
  }

  body.faq-enhanced .faq-item:not(.is-open) .faq-answer {
    display: none !important;
  }

  body.faq-enhanced .faq-item:not(.is-open) {
    min-height: 0 !important;
    height: auto !important;
    grid-template-rows: auto;
  }

  .faq-answer {
    margin-top: 12px;
    padding-top: 12px;
  }

  .faq-answer p {
    font-size: 13.5px;
    line-height: 1.64;
  }

  .faq-closer {
    display: grid;
    gap: 12px;
    margin-top: 12px;
    padding: 15px;
  }

  .faq-closer p {
    font-size: 14px;
    line-height: 1.55;
  }

  .faq-closer .button {
    width: 100%;
  }

  .crisp-reminder {
    right: 22px;
    bottom: max(64px, calc(env(safe-area-inset-bottom) + 64px));
    min-height: 32px;
    padding: 0 10px;
    border-color: rgba(16, 17, 20, 0.1);
    color: var(--ink);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 10px 26px rgba(16, 17, 20, 0.14);
    backdrop-filter: blur(14px);
    font-size: 12px;
    font-weight: 780;
    animation: none;
  }

  .crisp-reminder::after {
    border-color: rgba(16, 17, 20, 0.1);
    background: rgba(255, 255, 255, 0.92);
  }

  .crisp-reminder:hover,
  .crisp-reminder:focus-visible {
    box-shadow: 0 12px 30px rgba(16, 17, 20, 0.18);
  }

  .crisp-reminder-dot {
    width: 7px;
    height: 7px;
    box-shadow: 0 0 0 4px rgba(21, 183, 106, 0.12);
  }

  .mobile-cta {
    gap: 7px;
    padding: 6px;
    bottom: max(10px, calc(env(safe-area-inset-bottom) + 10px));
  }

  .mobile-cta a {
    min-height: 40px;
    font-size: 13px;
  }
}

@media (min-width: 900px) {
  .menu-button {
    display: none;
  }

  .nav-links {
    position: static;
    display: flex;
    align-items: center;
    gap: 2px;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-links a {
    padding: 10px 10px;
    font-size: 14px;
  }

  .hero {
    min-height: 78svh;
    padding-top: 116px;
  }

  .hero-copy {
    max-width: 710px;
  }

  .section {
    padding: 104px 28px;
  }

  .split-layout {
    grid-template-columns: 0.86fr 1.14fr;
    gap: 78px;
    align-items: start;
  }

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

  .service-card {
    min-height: 270px;
  }

  .follow-card {
    grid-column: span 2;
  }

  .pricing-grid {
    gap: 18px;
  }

  .price-card {
    min-height: 430px;
    padding: 34px;
  }

  .contact-card {
    padding: 26px;
  }

  .faq-list {
    gap: 18px;
  }

  .faq-item {
    padding: 24px;
  }
}

@media (max-width: 370px) {
  .brand-name {
    max-width: 52vw;
  }

  .hero {
    padding-right: 16px;
    padding-left: 16px;
  }
}

@media (prefers-color-scheme: dark) {
  :root {
    --ink: #f5f3ee;
    --ink-soft: #d6d9df;
    --muted: #a2a8b4;
    --paper: #151820;
    --mist: #0f1116;
    --line: #2a2f3a;
    --line-strong: #3a414f;
    --accent: #ff503f;
    --accent-dark: #ff2d1b;
    --gold: #e3a84a;
    --market-green: #34d399;
    --shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
  }

  body::selection {
    background: rgba(255, 80, 63, 0.28);
  }

  .nav-shell {
    border-color: rgba(255, 255, 255, 0.1);
    background: rgba(18, 21, 29, 0.76);
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.32);
  }

  .nav-links {
    border-color: rgba(255, 255, 255, 0.11);
    background: rgba(18, 21, 29, 0.96);
  }

  .nav-links a:hover,
  .nav-links a.is-active {
    color: var(--ink);
    background: rgba(255, 80, 63, 0.14);
  }

  .hero {
    background: var(--mist);
  }

  .hero::after {
    background: linear-gradient(180deg, rgba(15, 17, 22, 0), var(--mist) 88%);
  }

  .button-dark,
  .guide-button-primary {
    color: #101114;
    background: #f7f3ea;
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.34);
  }

  .button-light,
  .button-consult,
  .copy-button,
  .guide-button {
    border-color: rgba(255, 255, 255, 0.13);
    color: var(--ink);
    background: rgba(255, 255, 255, 0.07);
  }

  .button-consult {
    color: #ff8a7f;
    box-shadow: 0 16px 34px rgba(255, 80, 63, 0.08);
  }

  .button-consult:hover,
  .button-consult:focus-visible,
  .copy-button.is-copied {
    background: rgba(255, 80, 63, 0.13);
  }

  .mission-strip,
  .service-card,
  .price-card,
  .contact-card,
  .faq-item,
  .pay-panel {
    background: #191d26;
  }

  .service-meta div {
    background: #11141b;
  }

  .service-card:hover {
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.28);
  }

  .service-index {
    background: rgba(255, 80, 63, 0.16);
  }

  .follow-card,
  .community-section {
    border-color: #333949;
    background: #0b0d12;
  }

  .follow-card,
  .featured-price {
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
  }

  .follow-card .service-meta div {
    background: rgba(255, 255, 255, 0.06);
  }

  .highlight {
    color: #16130a;
    background: #ffe45c;
  }

  .pricing-section {
    background: var(--mist);
  }

  .faq-section {
    background: linear-gradient(180deg, var(--paper) 0%, var(--mist) 100%);
  }

  .daily-price {
    color: #ff8a7f;
    background: #0b0d12;
  }

  .copy-button.is-copied {
    border-color: rgba(255, 80, 63, 0.42);
    color: #ff8a7f;
  }

  .step-item span {
    color: #101114;
    background: #f7f3ea;
  }

  .qr-card img {
    border-color: rgba(255, 255, 255, 0.12);
    background: #fff;
  }

  .telegram-guide {
    border-color: rgba(255, 80, 63, 0.22);
    background: rgba(255, 80, 63, 0.08);
  }

  .faq-item {
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.18);
  }

  .faq-question > span:first-child {
    color: #101114;
    background: #f7f3ea;
  }

  .faq-answer > span:first-child {
    background: rgba(255, 80, 63, 0.14);
  }

  .faq-toggle-icon {
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.06);
  }

  .faq-closer {
    border-color: rgba(255, 80, 63, 0.22);
    background: rgba(255, 80, 63, 0.08);
  }

  .site-footer {
    background: #07080b;
  }

  .footer-social {
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.05);
  }

  .crisp-reminder {
    color: #101114;
    background: #f7f3ea;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.36), 0 0 0 8px rgba(255, 80, 63, 0.08);
  }

  .crisp-reminder::after {
    background: #f7f3ea;
  }

  .mobile-cta {
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(18, 21, 29, 0.88);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.38);
  }

  .mobile-cta a {
    color: #101114;
    background: #f7f3ea;
  }

  .mobile-cta a:first-child {
    color: var(--ink);
    background: rgba(255, 255, 255, 0.09);
  }
}

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