:root {
  --bg: #06080f;
  --bg-deep: #03050a;
  --card: rgba(18, 22, 36, 0.78);
  --card-border: rgba(255, 255, 255, 0.12);
  --text: #f4f6ff;
  --muted: #9ca5ba;
  --accent: #5b8cff;
  --accent-soft: rgba(91, 140, 255, 0.22);
  --accent-2: #7b5cff;
  --max: 1160px;
  --radius: 16px;
}

/* Product themes */
body.theme-1001sms {
  --accent: #ff2f7d;
  --accent-soft: rgba(255, 47, 125, 0.22);
  --card-border: rgba(255, 47, 125, 0.35);
}

body.theme-reels {
  --accent: #ff4d9a;
  --accent-soft: rgba(255, 77, 154, 0.22);
  --card-border: rgba(255, 77, 154, 0.35);
}

body.theme-live {
  --accent: #ff5c3a;
  --accent-soft: rgba(255, 92, 58, 0.24);
  --card-border: rgba(255, 92, 58, 0.38);
}

body.theme-gci {
  --accent: #ff9900;
  --accent-2: #58d7ff;
  --accent-soft: rgba(255, 153, 0, 0.24);
  --card-border: rgba(255, 153, 0, 0.38);
  --bg: #050913;
  --bg-deep: #02040a;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: clip;
  -webkit-text-size-adjust: 100%;
}

html,
body {
  margin: 0;
  padding: 0;
  background: radial-gradient(circle at 18% 0%, #1a1238 0%, var(--bg) 38%, var(--bg-deep) 100%);
  color: var(--text);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  overflow-x: clip;
  position: relative;
}

body.nav-open {
  overflow: hidden;
}

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

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

.bg-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -3;
  overflow: hidden;
}

.bg-layer-a {
  background:
    radial-gradient(circle at 72% 22%, rgba(123, 92, 255, 0.22), transparent 42%),
    radial-gradient(circle at 18% 78%, rgba(91, 140, 255, 0.12), transparent 38%);
}

body.theme-gci .bg-layer-a {
  background:
    radial-gradient(circle at 68% 18%, rgba(255, 153, 0, 0.28), transparent 44%),
    radial-gradient(circle at 12% 72%, rgba(88, 215, 255, 0.14), transparent 40%);
}

.bg-layer-b {
  background: radial-gradient(circle at 50% 110%, rgba(91, 140, 255, 0.1), transparent 45%);
}

.bg-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  opacity: 0.14;
  background-image: radial-gradient(rgba(255, 255, 255, 0.18) 0.4px, transparent 0.4px);
  background-size: 3px 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(12px);
  background: linear-gradient(to right, rgba(6, 8, 15, 0.92), rgba(6, 8, 15, 0.72));
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 14px clamp(14px, 4vw, 40px);
  flex-wrap: wrap;
}

.lang-switcher {
  display: inline-flex;
  gap: 4px;
  padding: 3px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.2);
}

.lang-switcher button {
  border: none;
  background: transparent;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 6px 10px;
  border-radius: 7px;
  cursor: pointer;
  font-family: inherit;
}

.lang-switcher button.active {
  color: var(--text);
  background: var(--accent-soft);
  box-shadow: 0 0 0 1px var(--card-border);
}

.lang-switcher button:hover:not(.active) {
  color: var(--text);
}

.header-cta-group {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #1a0a00;
  white-space: nowrap;
  background: linear-gradient(135deg, #7dffb2, #3dd68c);
  border: 2px solid rgba(255, 255, 255, 0.45);
  box-shadow:
    0 0 24px rgba(80, 255, 160, 0.55),
    0 4px 16px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.header-phone:hover {
  transform: translateY(-1px);
  box-shadow:
    0 0 32px rgba(80, 255, 160, 0.75),
    0 6px 20px rgba(0, 0, 0, 0.3);
  color: #1a0a00;
}

.header-phone__icon {
  font-size: 16px;
  line-height: 1;
}

.footer-phone-bar {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 16px max(16px, env(safe-area-inset-right, 0px)) 16px max(16px, env(safe-area-inset-left, 0px));
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 20px;
  text-align: center;
  border-top: 2px solid rgba(125, 255, 178, 0.35);
  background: linear-gradient(180deg, rgba(60, 180, 120, 0.22), rgba(6, 8, 15, 0.95));
}

.footer-phone-bar__label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #7dffb2;
}

.footer-phone-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 14px;
  font-size: clamp(18px, 4.5vw, 24px);
  font-weight: 900;
  letter-spacing: 0.03em;
  color: #0a1a10;
  background: linear-gradient(135deg, #9dffc4, #4de88a);
  border: 2px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 28px rgba(80, 255, 160, 0.5);
}

.footer-phone-link:hover {
  color: #0a1a10;
  transform: scale(1.02);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0.01em;
  flex-shrink: 0;
}

.brand-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 16px var(--accent);
}

.nav {
  display: flex;
  gap: 14px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  flex-wrap: wrap;
}

.nav a:hover,
.nav a.active {
  color: var(--text);
}

.nav-toggle {
  display: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border-radius: 10px;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  padding: 11px 18px;
  font-size: 14px;
  font-weight: 700;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  white-space: nowrap;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

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

.btn-accent {
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-2, var(--accent)));
  box-shadow: 0 8px 24px var(--accent-soft);
}

body.theme-gci .btn-accent {
  background: linear-gradient(135deg, #ffb84d, #ff9900);
  box-shadow: 0 8px 28px rgba(255, 153, 0, 0.35);
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
}

main {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding-left: max(16px, env(safe-area-inset-left, 0px));
  padding-right: max(16px, env(safe-area-inset-right, 0px));
}

.hero {
  min-height: calc(100vh - 76px);
  padding: clamp(40px, 8vh, 96px) 0 48px;
  position: relative;
}

.hero-compact {
  min-height: auto;
  padding: clamp(36px, 6vh, 72px) 0 32px;
}

.parallax-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(8px);
  opacity: 0.5;
  pointer-events: none;
}

.orb-a {
  width: 360px;
  height: 360px;
  right: -50px;
  top: 30px;
  background: radial-gradient(circle at 30% 30%, var(--accent-soft), transparent 65%);
}

.orb-b {
  width: 260px;
  height: 260px;
  left: -60px;
  bottom: 60px;
  background: radial-gradient(circle at 50% 50%, rgba(123, 92, 255, 0.3), transparent 70%);
}

.eyebrow {
  color: var(--accent);
  font-size: 12px;
  letter-spacing: 0.14em;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 12px;
}

h1 {
  margin: 0;
  font-size: clamp(30px, 4.8vw, 58px);
  line-height: 1.06;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.lead,
.hero-subtitle {
  margin-top: 18px;
  color: var(--muted);
  font-size: clamp(15px, 1.55vw, 19px);
  line-height: 1.55;
  max-width: 760px;
}

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

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

.hero-stats article {
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 16px;
}

.stat-value {
  margin: 0;
  font-size: 24px;
  font-weight: 800;
}

.stat-label {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.section {
  padding: 56px 0;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(22px, 3vw, 38px);
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.section-head p {
  margin: 10px 0 0;
  color: var(--muted);
  max-width: 640px;
  line-height: 1.5;
}

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

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

.card {
  background: linear-gradient(160deg, rgba(16, 20, 34, 0.95), rgba(8, 10, 18, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 18px;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.card:hover {
  transform: translateY(-3px);
  border-color: var(--card-border);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.32), 0 0 20px var(--accent-soft);
}

.card h3 {
  margin: 0 0 8px;
  font-size: 17px;
}

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

.card-tag {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 4px 8px;
  border-radius: 6px;
  background: var(--accent-soft);
}

.product-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.product-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 22px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--card);
  transition: transform 0.22s ease, border-color 0.22s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: var(--card-border);
}

.product-card.featured {
  border-color: rgba(255, 153, 0, 0.45);
  background: linear-gradient(145deg, rgba(40, 28, 8, 0.55), rgba(16, 20, 34, 0.92));
}

.product-card h3 {
  margin: 0;
  font-size: 22px;
}

.product-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
  flex: 1;
}

.product-card .btn {
  align-self: flex-start;
}

.marketplace-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.marketplace-pill {
  font-size: 12px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--muted);
}

.marketplace-pill.primary {
  color: #1a1200;
  background: linear-gradient(135deg, #ffd080, #ff9900);
  border-color: transparent;
}

.marketplace-pill.active {
  color: var(--text);
  border-color: var(--card-border);
  background: var(--accent-soft);
}

.form-card {
  margin-top: 22px;
  padding: 24px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--card);
}

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

.form-grid .full {
  grid-column: 1 / -1;
}

label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

input,
select,
textarea {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(0, 0, 0, 0.25);
  color: var(--text);
  padding: 11px 12px;
  font-size: 14px;
  font-family: inherit;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.form-field-note {
  margin: 6px 0 0;
  font-size: 12px;
  line-height: 1.45;
  color: var(--muted);
}

.form-percent-block input[type="number"] {
  max-width: 140px;
}

.form-status-ok {
  color: #7dffb2 !important;
}

.form-status-error {
  color: #ff8fa8 !important;
}

.form-note {
  margin-top: 12px;
  font-size: 13px;
  color: var(--muted);
}

.timeline {
  margin-top: 22px;
  display: grid;
  gap: 12px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--card);
}

.timeline-item > span {
  font-size: 22px;
  font-weight: 800;
  color: var(--accent);
}

.timeline-item h3 {
  margin: 0 0 8px;
  font-size: 17px;
}

.timeline-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
  font-size: 14px;
}

.site-footer {
  margin-top: 48px;
  padding: 28px clamp(14px, 4vw, 40px) 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.site-footer .footer-inner {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
}

.site-footer a {
  color: var(--text);
}

.badge-live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #7dffb2;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(80, 220, 140, 0.14);
  border: 1px solid rgba(80, 220, 140, 0.35);
}

.badge-live::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #7dffb2;
  box-shadow: 0 0 8px #7dffb2;
}

.invest-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.invest-card {
  padding: 22px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(160deg, rgba(22, 28, 48, 0.95), rgba(8, 10, 18, 0.92));
}

.invest-card.highlight {
  border-color: rgba(91, 140, 255, 0.45);
  box-shadow: 0 0 32px rgba(91, 140, 255, 0.12);
}

.invest-card h3 {
  margin: 0 0 10px;
  font-size: 20px;
}

.invest-card p,
.invest-card li {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.invest-card ul {
  margin: 12px 0 0;
  padding-left: 18px;
}

/* ——— Investment plan (fixed pricing) ——— */
.pricing-plan-section {
  position: relative;
}

.regulatory-notice {
  position: relative;
  margin: 0 0 22px;
  padding: 20px 22px 20px 56px;
  border-radius: 16px;
  border: 3px solid #ff7700;
  background: linear-gradient(125deg, rgba(255, 90, 0, 0.45), rgba(255, 200, 60, 0.22) 45%, rgba(20, 12, 0, 0.92));
  box-shadow:
    0 0 32px rgba(255, 120, 0, 0.55),
    0 8px 40px rgba(255, 80, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  animation: regulatory-glow 2.8s ease-in-out infinite;
}

.regulatory-notice::before {
  content: "⚖";
  position: absolute;
  left: 18px;
  top: 20px;
  font-size: 26px;
  line-height: 1;
  filter: drop-shadow(0 0 8px rgba(255, 200, 80, 0.9));
}

.regulatory-notice__badge {
  display: inline-block;
  margin-bottom: 10px;
  padding: 5px 12px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #1a0a00;
  background: linear-gradient(90deg, #ffe566, #ff9900);
  box-shadow: 0 0 16px rgba(255, 180, 0, 0.8);
}

.regulatory-notice__title {
  margin: 0 0 10px;
  font-size: clamp(17px, 2.8vw, 22px);
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: #fff;
  text-shadow: 0 0 20px rgba(255, 160, 0, 0.6);
}

.regulatory-notice__text {
  margin: 0;
  font-size: clamp(15px, 2.2vw, 18px);
  font-weight: 600;
  line-height: 1.55;
  color: #fff8e8;
}

.regulatory-notice__text strong {
  color: #ffd966;
  font-weight: 800;
}

.regulatory-notice--form {
  margin-bottom: 24px;
}

.plan-phase-notice {
  margin: 0 0 18px;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px dashed rgba(140, 170, 220, 0.4);
  background: rgba(12, 18, 36, 0.55);
}

.plan-phase-notice__badge {
  display: inline-block;
  margin-bottom: 8px;
  padding: 3px 9px;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #a8c4ff;
  background: rgba(91, 140, 255, 0.15);
  border: 1px solid rgba(91, 140, 255, 0.25);
}

.plan-phase-notice__title {
  margin: 0 0 8px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
  color: rgba(220, 228, 255, 0.95);
}

.plan-phase-notice__text {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: var(--muted);
}

.plan-phase-notice__text strong {
  color: rgba(200, 215, 255, 0.9);
  font-weight: 600;
}

@keyframes regulatory-glow {
  0%,
  100% {
    border-color: #ff7700;
    box-shadow:
      0 0 32px rgba(255, 120, 0, 0.55),
      0 8px 40px rgba(255, 80, 0, 0.25),
      inset 0 1px 0 rgba(255, 255, 255, 0.2);
  }
  50% {
    border-color: #ffaa33;
    box-shadow:
      0 0 48px rgba(255, 160, 0, 0.75),
      0 8px 48px rgba(255, 100, 0, 0.35),
      inset 0 1px 0 rgba(255, 255, 255, 0.25);
  }
}

.pricing-plan-box {
  margin-top: 20px;
  padding: clamp(18px, 3vw, 28px);
  border-radius: 22px;
  border: 2px solid rgba(255, 153, 0, 0.55);
  background: linear-gradient(155deg, rgba(48, 32, 6, 0.65), rgba(10, 14, 28, 0.95));
  box-shadow:
    0 0 0 1px rgba(255, 153, 0, 0.15),
    0 24px 64px rgba(255, 120, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.pricing-plan-intro {
  margin: 0;
  max-width: 720px;
  font-size: 17px;
  line-height: 1.55;
  color: var(--text);
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}

.pricing-table th,
.pricing-table td {
  padding: 14px 12px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  vertical-align: middle;
}

.pricing-table th {
  color: rgba(255, 200, 120, 0.95);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.pricing-table tbody tr:last-child td {
  border-bottom: none;
}

.pricing-table .pricing-share {
  color: var(--muted);
  font-weight: 600;
  white-space: nowrap;
}

.pricing-price {
  font-size: clamp(22px, 4vw, 30px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #ffb84d;
  white-space: nowrap;
}

.pricing-was {
  margin-left: 8px;
  font-size: 15px;
  font-weight: 600;
  color: var(--muted);
  text-decoration: line-through;
}

.pricing-bundle-row td {
  padding-top: 18px;
  padding-bottom: 18px;
  background: rgba(255, 153, 0, 0.1);
}

.pricing-bundle-row strong {
  color: #fff;
  font-size: 16px;
}

.pricing-bundle-tag {
  display: inline-block;
  margin-left: 8px;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #1a1200;
  background: linear-gradient(90deg, #ffc44d, #ff9900);
}

.pricing-income-cell {
  white-space: nowrap;
}

.pricing-income-min {
  display: block;
  font-size: 18px;
  font-weight: 800;
  color: #8eb8ff;
}

.pricing-income-goal {
  display: block;
  font-size: 18px;
  font-weight: 800;
  color: #7dffb2;
}

.pricing-income-label {
  display: block;
  margin-top: 4px;
  font-size: 10px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.pricing-sum-note {
  margin: 14px 0 0;
  font-size: 14px;
  color: var(--muted);
}

.pricing-sum-note + .pricing-sum-note {
  margin-top: 8px;
}

.pricing-guarantees {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.pricing-guarantee {
  padding: 20px;
  border-radius: 16px;
  border: 1px solid rgba(91, 140, 255, 0.35);
  background: linear-gradient(160deg, rgba(20, 32, 64, 0.9), rgba(8, 10, 20, 0.92));
}

.pricing-guarantee h3 {
  margin: 0 0 8px;
  font-size: 17px;
  color: #a8c4ff;
}

.pricing-guarantee p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
}

.pricing-guarantee-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 10px;
  border-radius: 12px;
  font-size: 20px;
  font-weight: 900;
  color: #fff;
  background: linear-gradient(135deg, #5b8cff, #7b5cff);
}

.pricing-plan-cta {
  margin-top: 18px;
}

@media (max-width: 700px) {
  .pricing-guarantees {
    grid-template-columns: 1fr;
  }
}

.metrics-table-wrap {
  margin-top: 22px;
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.metrics-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.metrics-table th,
.metrics-table td {
  padding: 12px 14px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.metrics-table th {
  color: var(--muted);
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: rgba(0, 0, 0, 0.2);
}

.metrics-table td strong {
  color: var(--text);
  font-weight: 700;
}

.metrics-table tr:last-child td {
  border-bottom: none;
}

.lang-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.lang-pill {
  font-size: 13px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
}

.screenshot-gallery {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding: 8px 4px 18px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.25) transparent;
}

.screenshot-gallery::-webkit-scrollbar {
  height: 6px;
}

.screenshot-gallery::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.22);
  border-radius: 99px;
}

.screenshot-item {
  flex: 0 0 auto;
  scroll-snap-align: center;
  padding: 0;
  border: none;
  background: transparent;
  cursor: zoom-in;
  border-radius: 22px;
  overflow: hidden;
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.1);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.screenshot-item:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow:
    0 28px 56px rgba(0, 0, 0, 0.5),
    0 0 24px var(--accent-soft);
}

.screenshot-item img {
  display: block;
  height: min(520px, 68vh);
  width: auto;
  max-width: none;
}

.screenshot-gallery.compact .screenshot-item img {
  height: min(380px, 52vh);
}

.showcase-grid {
  margin-top: 22px;
  display: grid;
  gap: 28px;
}

.showcase-block h3 {
  margin: 0 0 4px;
  font-size: 18px;
}

.showcase-block p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 13px;
}

.hero-with-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.hero-with-gallery .hero-copy {
  min-width: 0;
}

@media (max-width: 960px) {
  .hero-with-gallery {
    grid-template-columns: 1fr;
  }
}

.screenshot-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(3, 5, 10, 0.92);
  backdrop-filter: blur(10px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.screenshot-lightbox.open {
  opacity: 1;
  pointer-events: auto;
}

.screenshot-lightbox-img {
  max-width: min(100%, 420px);
  max-height: calc(100vh - 100px);
  width: auto;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6);
}

.screenshot-lightbox-cap {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.screenshot-lightbox-close {
  position: absolute;
  top: 16px;
  right: 20px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

/* ——— Mobile & tablet ——— */
@media (max-width: 900px) {
  .features-grid,
  .features-grid.cols-2,
  .hero-stats,
  .product-grid,
  .form-grid,
  .invest-grid {
    grid-template-columns: 1fr;
  }

  .site-header {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto auto;
    align-items: center;
    gap: 10px 12px;
    padding: 12px max(16px, env(safe-area-inset-right, 0px)) 12px max(16px, env(safe-area-inset-left, 0px));
    position: sticky;
  }

  .brand {
    grid-column: 1;
    grid-row: 1;
    min-width: 0;
    font-size: 15px;
  }

  .nav-toggle {
    display: inline-flex;
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    min-height: 44px;
    align-items: center;
  }

  .header-cta-group {
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
  }

  .header-cta-group .btn {
    white-space: normal;
    text-align: center;
    padding: 10px 14px;
    font-size: 13px;
  }

  .header-phone {
    flex: 1 1 100%;
    justify-content: center;
    font-size: 13px;
    padding: 10px 12px;
  }

  .nav {
    display: none;
    grid-column: 1 / -1;
    grid-row: 3;
    position: static;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    width: 100%;
    padding: 12px 0 4px;
    margin: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: transparent;
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    padding: 12px 4px;
    border-radius: 8px;
  }

  .nav a:hover,
  .nav a.active {
    background: rgba(255, 255, 255, 0.06);
  }

  .hero {
    min-height: auto;
    padding-top: 28px;
    padding-bottom: 32px;
  }

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

  .stat-value {
    font-size: 22px;
  }

  .section {
    padding: 40px 0;
  }

  .form-card {
    padding: 16px;
    margin-top: 16px;
  }

  .form-percent-block input[type="number"] {
    max-width: none;
  }

  .regulatory-notice {
    padding: 16px 14px 16px 14px;
    animation: none;
  }

  .regulatory-notice::before {
    position: static;
    display: block;
    margin-bottom: 8px;
  }

  .pricing-plan-intro {
    font-size: 15px;
  }

  .pricing-scroll-hint {
    display: block;
  }
}

@media (max-width: 720px) {
  .pricing-plan-box {
    overflow-x: visible;
    padding: 12px;
    margin-top: 14px;
  }

  .pricing-table {
    min-width: 0;
    display: block;
    font-size: 14px;
  }

  .pricing-table thead {
    display: none;
  }

  .pricing-table tbody {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .pricing-table tr {
    display: block;
    padding: 14px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(0, 0, 0, 0.28);
  }

  .pricing-table tr.pricing-bundle-row {
    border-color: rgba(255, 153, 0, 0.4);
    background: rgba(255, 153, 0, 0.12);
  }

  .pricing-table tr.pricing-bundle-row td {
    background: transparent;
  }

  .pricing-table td {
    display: grid;
    grid-template-columns: minmax(88px, 42%) 1fr;
    gap: 6px 10px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    white-space: normal;
    text-align: left;
  }

  .pricing-table td:last-child {
    border-bottom: none;
  }

  .pricing-table td::before {
    content: attr(data-label);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255, 200, 120, 0.9);
    line-height: 1.35;
  }

  .pricing-table td:first-child {
    display: block;
    grid-template-columns: none;
    padding-top: 0;
    padding-bottom: 12px;
    margin-bottom: 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 16px;
  }

  .pricing-table td:first-child::before {
    display: none;
  }

  .pricing-income-cell {
    white-space: normal;
  }

  .pricing-price {
    font-size: 24px;
    white-space: normal;
  }

  .pricing-was {
    display: block;
    margin: 4px 0 0;
  }

  .pricing-bundle-tag {
    display: inline-block;
    margin: 6px 0 0;
  }

  .metrics-table-wrap {
    overflow-x: visible;
    border: none;
    background: transparent;
  }

  .metrics-table {
    display: block;
  }

  .metrics-table thead {
    display: none;
  }

  .metrics-table tbody {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .metrics-table tr {
    display: block;
    padding: 14px;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: var(--card);
  }

  .metrics-table td {
    display: block;
    padding: 4px 0;
    border: none;
  }

  .metrics-table td:first-child {
    font-weight: 700;
    font-size: 15px;
    color: var(--text);
    margin-bottom: 4px;
  }

  .metrics-table td:nth-child(2) {
    font-size: 20px;
    padding: 2px 0 6px;
  }

  .metrics-table td:nth-child(3) {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.45;
  }

  .screenshot-item img {
    height: min(320px, 55vh);
  }

  .screenshot-gallery.compact .screenshot-item img {
    height: min(260px, 45vh);
  }

  .timeline-item {
    grid-template-columns: 44px 1fr;
    gap: 12px;
    padding: 14px;
  }

  .hero-actions .btn {
    flex: 1 1 auto;
    min-width: min(100%, 200px);
    white-space: normal;
    justify-content: center;
  }

  .pricing-plan-cta .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }

  .lead,
  .hero-subtitle {
    font-size: 15px;
  }

  .parallax-orb {
    opacity: 0.25;
    transform: scale(0.65);
  }

  .orb-a {
    right: -120px;
  }

  .orb-b {
    left: -100px;
  }

  .lang-switcher button {
    padding: 6px 8px;
    font-size: 10px;
  }

  .header-phone__num {
    font-size: 12px;
  }

  .footer-phone-link {
    padding: 10px 16px;
    width: 100%;
    justify-content: center;
  }

  .site-footer {
    padding-bottom: max(28px, env(safe-area-inset-bottom, 0px));
  }

  .site-footer .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

.pricing-scroll-hint {
  display: none;
  margin: 0 0 12px;
  font-size: 12px;
  color: var(--muted);
}
