:root {
  --bg: #0a0e17;
  --bg-alt: #0d1220;
  --surface: #121a2b;
  --surface-hover: #16203570;
  --border: #232f47;
  --text: #eef2fb;
  --text-dim: #9aa7c2;
  --text-faint: #6b7690;
  --blue: #1877f2;
  --blue-light: #4e9bff;
  --purple: #7c5cfc;
  --green: #00e5a0;
  --telegram: #29abe2;
  --telegram-dark: #1d95c9;
  --radius: 16px;
  --max-w: 1180px;
  --shadow: 0 20px 60px -20px rgba(0, 0, 0, 0.6);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

h1, h2, h3, h4 {
  font-family: 'Sora', 'Inter', sans-serif;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* Background glows */
.bg-glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.25;
  z-index: 0;
  pointer-events: none;
}
.bg-glow-1 {
  width: 600px; height: 600px;
  background: var(--blue);
  top: -200px; left: -150px;
}
.bg-glow-2 {
  width: 500px; height: 500px;
  background: var(--purple);
  top: 40%; right: -150px;
}
.bg-glow-3 {
  width: 460px; height: 460px;
  background: var(--green);
  bottom: -180px; left: 20%;
  opacity: 0.12;
}

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
  background: rgba(10, 14, 23, 0.75);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.logo {
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
}
.logo-mark {
  background: linear-gradient(135deg, var(--blue-light), var(--purple));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.logo-text { color: var(--text); font-weight: 600; font-size: 1.05rem; }

.nav {
  display: flex;
  gap: 32px;
}
.nav a {
  color: var(--text-dim);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav a:hover { color: var(--text); }

.header-actions { display: flex; align-items: center; gap: 16px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 26px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}
.btn:active { transform: scale(0.98); }

.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--purple));
  color: #fff;
  box-shadow: 0 8px 24px -8px rgba(24, 119, 242, 0.6);
}
.btn-primary:hover { box-shadow: 0 10px 30px -6px rgba(124, 92, 252, 0.7); }

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn-ghost:hover { border-color: var(--blue-light); color: var(--blue-light); }

.btn-outline {
  background: transparent;
  border-color: var(--border);
  color: var(--text);
  width: 100%;
}
.btn-outline:hover { border-color: var(--blue-light); }

.btn-sm { padding: 10px 18px; font-size: 0.88rem; }
.btn-block { width: 100%; }

.btn-telegram {
  background: var(--telegram);
  color: #fff;
  gap: 9px;
  box-shadow: 0 8px 24px -8px rgba(41, 171, 226, 0.55);
}
.btn-telegram:hover { background: var(--telegram-dark); }
.tg-icon { width: 18px; height: 18px; flex-shrink: 0; }
.tg-icon-lg { width: 30px; height: 30px; flex-shrink: 0; }

/* ===== HERO ===== */
.hero {
  position: relative;
  z-index: 1;
  padding: 100px 0 70px;
  text-align: center;
}

.pill {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--blue-light);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  max-width: 900px;
  margin: 0 auto 22px;
  font-weight: 800;
}

.text-gradient {
  background: linear-gradient(135deg, var(--blue-light), var(--purple) 60%, var(--green));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-sub {
  max-width: 640px;
  margin: 0 auto 36px;
  color: var(--text-dim);
  font-size: 1.08rem;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

/* hero feature badges */
.hero-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin-bottom: 32px;
}
.hero-badges li {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(0, 229, 160, 0.07);
  border: 1px solid rgba(0, 229, 160, 0.25);
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--text-dim);
}
.badge-icon {
  font-size: 0.95rem;
  line-height: 1;
  color: var(--green);
}

/* platform chips under hero CTA */
.platform-chips {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.platform-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px 10px 14px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dim);
  transition: border-color 0.2s, color 0.2s, transform 0.2s;
}
.platform-chip:hover {
  border-color: var(--blue-light);
  color: var(--text);
  transform: translateY(-2px);
}
.platform-chip img { width: 24px; height: 24px; }

.hero-figure {
  max-width: 980px;
  margin: 0 auto 60px;
}
.hero-figure img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: var(--shadow);
}
.hero-figure figcaption {
  margin-top: 14px;
  font-size: 0.82rem;
  color: var(--text-faint);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  max-width: 980px;
  margin: 0 auto;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-num {
  font-family: 'Sora', sans-serif;
  font-size: 1.7rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--blue-light), var(--green));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat-label { font-size: 0.82rem; color: var(--text-faint); }

/* ===== TRUST STRIP ===== */
.trust-strip {
  position: relative;
  z-index: 1;
  padding: 28px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-alt);
}
.trust-strip-label {
  text-align: center;
  color: var(--text-faint);
  font-size: 0.82rem;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.trust-strip-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 28px;
}
.trust-strip-items span {
  color: var(--text-dim);
  font-size: 0.9rem;
  font-weight: 500;
}

/* ===== SECTIONS ===== */
.section {
  position: relative;
  z-index: 1;
  padding: 96px 0;
}
.section-alt { background: var(--bg-alt); }

.section-head {
  max-width: 640px;
  margin: 0 auto 56px;
  text-align: center;
}
.eyebrow {
  display: inline-block;
  color: var(--green);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section-head h2 {
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  margin-bottom: 14px;
}
.section-head p { color: var(--text-dim); }
.section-note { font-size: 0.85rem; color: var(--text-faint); font-style: italic; }

/* ===== GRID / CARDS ===== */
.grid { display: grid; gap: 24px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.card:hover { transform: translateY(-4px); border-color: var(--blue-light); }
.card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.card p { color: var(--text-dim); font-size: 0.95rem; }

.card-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 20px;
}
.icon-blue { background: rgba(24, 119, 242, 0.15); }
.icon-purple { background: rgba(124, 92, 252, 0.15); }
.icon-green { background: rgba(0, 229, 160, 0.15); }

/* vertical cards with images */
.vertical-card { padding: 0; overflow: hidden; }
.vertical-card h3 { font-size: 1.3rem; }
.card-image {
  width: 100%;
  height: auto;
  display: block;
  border-bottom: 1px solid var(--border);
}
.card-body { padding: 28px 30px 30px; }
.mini-list {
  margin: 18px 0 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mini-list li {
  position: relative;
  padding-left: 20px;
  font-size: 0.88rem;
  color: var(--text-dim);
}
.mini-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 8px;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green);
}
.card-platforms {
  display: flex;
  gap: 10px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}
.card-platforms img { width: 22px; height: 22px; opacity: 0.9; }

/* ===== PLATFORM ROWS ===== */
.platform-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 56px 0;
  border-top: 1px solid var(--border);
}
.platform-row:first-of-type { border-top: none; padding-top: 8px; }
.platform-row.reverse .platform-copy { order: 2; }
.platform-row.reverse .platform-figure { order: 1; }

.platform-heading {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.platform-logo {
  width: 58px; height: 58px;
  border-radius: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.platform-logo-dark { background: #0b0f19; }
.platform-logo-light { background: #f5f7fc; }
.platform-heading h3 { font-size: 1.5rem; margin-bottom: 4px; }
.platform-tagline { color: var(--text-faint); font-size: 0.88rem; }

.platform-desc {
  color: var(--text-dim);
  margin-bottom: 24px;
  font-size: 0.98rem;
}

.platform-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}
.platform-features li {
  position: relative;
  padding-left: 28px;
  font-size: 0.92rem;
  color: var(--text-dim);
}
.platform-features li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 0;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: rgba(0, 229, 160, 0.14);
  color: var(--green);
  font-size: 0.7rem;
  display: flex; align-items: center; justify-content: center;
}
.platform-features strong { color: var(--text); font-weight: 600; }

.platform-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.meta-label {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-faint);
  margin-bottom: 6px;
}
.meta-value {
  display: block;
  font-family: 'Sora', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
}

.platform-figure img {
  width: 100%;
  height: auto;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

/* ===== COMPARISON TABLE ===== */
.table-wrap {
  overflow-x: auto;
  margin-top: 56px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
}
.compare-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.compare-table caption {
  text-align: left;
  padding: 24px 28px 4px;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text);
}
.compare-table th,
.compare-table td {
  padding: 14px 28px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.compare-table thead th {
  color: var(--text-faint);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}
.th-logo { display: inline-flex; align-items: center; gap: 8px; }
.th-logo img { width: 20px; height: 20px; }
.compare-table tbody th {
  color: var(--text);
  font-weight: 600;
}
.compare-table tbody td { color: var(--text-dim); }
.compare-table tbody tr:last-child th,
.compare-table tbody tr:last-child td { border-bottom: none; }
.compare-table tbody tr:hover { background: rgba(24, 119, 242, 0.05); }

/* ===== STEPS ===== */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.step {
  padding: 28px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
  position: relative;
}
.step-num {
  font-family: 'Sora', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1px var(--blue-light);
  margin-bottom: 14px;
}
.step h3 { font-size: 1.05rem; margin-bottom: 8px; }
.step p { color: var(--text-dim); font-size: 0.9rem; }

/* ===== PRICING ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.price-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.price-card.featured {
  border-color: var(--blue-light);
  background: linear-gradient(180deg, rgba(24,119,242,0.08), var(--surface) 40%);
  box-shadow: var(--shadow);
}
.price-badge {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--blue), var(--purple));
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 999px;
  white-space: nowrap;
}
.price-card h3 { font-size: 1.1rem; margin-bottom: 14px; }
.price-range {
  color: var(--text-dim);
  font-size: 0.85rem;
  margin-bottom: 6px;
}
.price-range span { display: block; font-size: 0.78rem; color: var(--text-faint); }
.price-fee {
  font-family: 'Sora', sans-serif;
  font-size: 2.1rem;
  font-weight: 800;
  margin-bottom: 22px;
  background: linear-gradient(135deg, var(--blue-light), var(--green));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.price-fee span {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-faint);
  -webkit-text-fill-color: var(--text-faint);
}
.price-platforms {
  display: flex;
  gap: 8px;
  padding-bottom: 18px;
  margin-bottom: 4px;
  border-bottom: 1px solid var(--border);
}
.price-platforms img { width: 20px; height: 20px; opacity: 0.85; }

.price-card ul { margin-bottom: 28px; flex: 1; }
.price-card li {
  padding: 8px 0;
  border-bottom: 1px dashed var(--border);
  font-size: 0.88rem;
  color: var(--text-dim);
}
.price-card li:last-child { border-bottom: none; }

.pricing-note {
  text-align: center;
  color: var(--text-faint);
  font-size: 0.85rem;
  margin-top: 36px;
}

/* payment methods strip */
.payment-strip {
  margin-top: 32px;
  padding: 26px 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  text-align: center;
}
.payment-label {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--text-faint);
  margin-bottom: 18px;
}
.payment-items {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}
.payment-chip {
  display: inline-flex;
  align-items: baseline;
  gap: 7px;
  padding: 10px 18px;
  border-radius: 10px;
  background: var(--bg);
  border: 1px solid var(--border);
  font-family: 'Sora', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
}
.payment-chip em {
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text-faint);
}

/* ===== WHY ===== */
.why-item {
  padding: 28px 4px;
}
.why-num {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--green);
  margin-bottom: 10px;
  letter-spacing: 0.05em;
}
.why-item h3 { font-size: 1.1rem; margin-bottom: 8px; }
.why-item p { color: var(--text-dim); font-size: 0.92rem; }

/* ===== TESTIMONIALS ===== */
.testimonial {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}
.testimonial-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.testimonial-platform {
  width: 22px; height: 22px;
  opacity: 0.9;
}
.stars { color: #ffb800; letter-spacing: 2px; font-size: 0.95rem; }
.testimonial p {
  color: var(--text-dim);
  font-size: 0.94rem;
  margin-bottom: 22px;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-family: 'Sora', sans-serif;
  flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: 0.92rem; }
.testimonial-author span { font-size: 0.8rem; color: var(--text-faint); }

/* ===== FAQ ===== */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: none;
  border: none;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 0.98rem;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
}
.faq-icon {
  font-size: 1.3rem;
  color: var(--blue-light);
  transition: transform 0.25s ease;
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 24px;
}
.faq-item.open .faq-answer {
  max-height: 420px;
  padding: 0 24px 22px;
}
.faq-answer p { color: var(--text-dim); font-size: 0.92rem; }
.faq-answer a { color: var(--telegram); font-weight: 600; text-decoration: underline; }
.faq-answer a:hover { color: #6cc9ee; }

/* ===== CTA / CONTACT ===== */
.cta-section { padding-bottom: 120px; }
.cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 56px;
}
.cta-copy { min-width: 0; }
.cta-copy h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin: 14px 0 16px; }
.cta-copy p { color: var(--text-dim); margin-bottom: 24px; }
.cta-points { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.cta-points li { color: var(--text-dim); font-size: 0.92rem; }
.cta-logos {
  display: flex;
  gap: 14px;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.cta-logos img { width: 28px; height: 28px; opacity: 0.9; }

/* Telegram contact card */
.telegram-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(41, 171, 226, 0.16), rgba(41, 171, 226, 0.05));
  border: 1px solid rgba(41, 171, 226, 0.4);
  color: var(--telegram);
  margin-bottom: 28px;
  transition: border-color 0.2s, transform 0.2s;
}
.telegram-card:hover {
  border-color: var(--telegram);
  transform: translateY(-2px);
}
/* min-width:0 lets these shrink below their content width. Without it the
   unbroken @handle sets a min-content floor that widens the whole CTA column
   and pushes the page into horizontal overflow on narrow screens. */
.telegram-text { display: flex; flex-direction: column; gap: 3px; flex: 1; min-width: 0; }
.telegram-text strong {
  font-family: 'Sora', sans-serif;
  font-size: 1rem;
  color: var(--text);
  overflow-wrap: anywhere;
}
.telegram-text em { overflow-wrap: anywhere; }
.telegram-text em {
  font-style: normal;
  font-size: 0.8rem;
  color: var(--text-faint);
}
.telegram-go { font-size: 1.2rem; color: var(--telegram); }

/* floating Telegram button */
.telegram-fab {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 200;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px 14px 16px;
  border-radius: 999px;
  background: var(--telegram);
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 12px 30px -8px rgba(41, 171, 226, 0.7);
  transition: background 0.2s, transform 0.2s;
}
.telegram-fab:hover { background: var(--telegram-dark); transform: translateY(-2px); }
.telegram-fab svg { width: 22px; height: 22px; flex-shrink: 0; }

.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-dim);
  font-weight: 500;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
  color: var(--text);
  font-family: inherit;
  font-size: 0.92rem;
  resize: vertical;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--blue-light);
}
.platform-picker {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 16px 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.platform-picker legend {
  font-size: 0.85rem;
  color: var(--text-dim);
  font-weight: 500;
  padding: 0 6px;
}
.checkbox {
  flex-direction: row !important;
  align-items: center;
  gap: 8px !important;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--bg);
  cursor: pointer;
  font-size: 0.88rem;
  transition: border-color 0.2s;
}
.checkbox:hover { border-color: var(--blue-light); }
.checkbox:has(input:checked) {
  border-color: var(--blue-light);
  background: rgba(24, 119, 242, 0.1);
  color: var(--text);
}
.checkbox input { width: 15px; height: 15px; accent-color: var(--blue); cursor: pointer; }
.checkbox img { width: 20px; height: 20px; }

/* honeypot: off-screen rather than display:none so bots still fill it */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-note { text-align: center; font-size: 0.85rem; color: var(--green); min-height: 18px; }
.btn:disabled { opacity: 0.6; cursor: not-allowed; }

/* ===== FOOTER ===== */
.site-footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
  background: var(--bg-alt);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 48px;
}
.footer-brand p { color: var(--text-faint); font-size: 0.88rem; margin-top: 14px; max-width: 260px; }
.footer-logos { display: flex; gap: 12px; margin-top: 20px; }
.footer-logos img { width: 24px; height: 24px; opacity: 0.8; }
.footer-col h4 { font-size: 0.85rem; color: var(--text-faint); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 16px; }
.footer-col a { display: block; color: var(--text-dim); font-size: 0.92rem; margin-bottom: 10px; }
.footer-col a:hover { color: var(--text); }
.footer-telegram {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  color: var(--telegram) !important;
  font-weight: 600;
  overflow-wrap: anywhere;
}
.footer-telegram:hover { color: #6cc9ee !important; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  color: var(--text-faint);
  font-size: 0.8rem;
}
.footer-disclaimer { max-width: 480px; text-align: right; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1080px) {
  .nav { gap: 22px; }
  .nav a { font-size: 0.9rem; }
}

@media (max-width: 1000px) {
  .hero-stats { grid-template-columns: repeat(3, 1fr); gap: 28px 24px; }
}

@media (max-width: 960px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-inner { grid-template-columns: 1fr; padding: 40px 28px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }

  .platform-row { grid-template-columns: 1fr; gap: 36px; }
  .platform-row.reverse .platform-copy { order: 1; }
  .platform-row.reverse .platform-figure { order: 2; }
}

/* seven nav links stop fitting alongside the logo and CTA below this width */
@media (max-width: 940px) {
  .nav {
    display: none;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--bg-alt);
    border-bottom: 1px solid var(--border);
    padding: 8px 24px 20px;
  }
  .nav a { padding: 12px 0; border-bottom: 1px solid var(--border); }
  .nav a:last-child { border-bottom: none; }
  .nav.nav-open { display: flex; }
  .nav-toggle { display: flex; }
  .nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.active span:nth-child(2) { opacity: 0; }
  .nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

@media (max-width: 720px) {
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .hero-badges li { font-size: 0.8rem; padding: 7px 13px; }
  .grid-3 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer-disclaimer { text-align: left; }

  .platform-meta { grid-template-columns: 1fr; gap: 14px; }
  .platform-heading h3 { font-size: 1.25rem; }
  .platform-chip { padding: 9px 16px 9px 12px; font-size: 0.85rem; }
  .card-body { padding: 24px; }

  .payment-strip { padding: 22px 18px; }
  .payment-chip { padding: 9px 14px; font-size: 0.85rem; }
  /* icon-only so the button never covers the form submit on small screens */
  .telegram-fab { right: 16px; bottom: 16px; padding: 14px; }
  .telegram-fab .fab-label { display: none; }
}

@media (max-width: 400px) {
  .container { padding: 0 16px; }
  .nav { padding: 8px 16px 20px; }
  .header-actions { gap: 10px; }
  .btn-sm { padding: 9px 13px; font-size: 0.8rem; }
  .logo { font-size: 1.15rem; }
  .logo-text { font-size: 0.95rem; }
}
