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

:root {
  --bg:           #09090F;
  --surface:      #0E0E1A;
  --card:         #131322;
  --card-hover:   #191930;
  --border:       #1E1E38;
  --border-b:     #282848;

  --blue:         #3B9EFF;
  --blue-dark:    #2275CC;
  --blue-glow:    rgba(59,158,255,.10);
  --blue-bdr:     rgba(59,158,255,.22);

  --orange:       #FF8C42;
  --orange-glow:  rgba(255,140,66,.10);
  --orange-bdr:   rgba(255,140,66,.22);

  --purple:       #9B72F5;
  --purple-glow:  rgba(155,114,245,.10);
  --purple-bdr:   rgba(155,114,245,.22);

  --green:        #2DD4A0;
  --green-glow:   rgba(45,212,160,.10);
  --green-bdr:    rgba(45,212,160,.22);

  --yellow:       #F5C542;

  --bar-h:        40px;
  --text:         #EEEEF8;
  --sub:          #7878A2;
  --muted:        #4A4A6A;

  --r:     10px;
  --r-lg:  16px;
  --r-xl:  22px;
  --nav-h: 64px;
}

html { scroll-behavior: smooth; }
body {
  background: var(--bg); color: var(--text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6; font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }

/* ── ANNOUNCE BAR ─────────────────────────────── */
.announce-bar {
  background: #0D111F;
  border-bottom: 1px solid rgba(59,158,255,.2);
  text-align: center; padding: 0 40px 0 16px;
  height: var(--bar-h); overflow: hidden;
  font-size: 13px; font-weight: 500; color: var(--text);
  position: fixed; top: 0; left: 0; right: 0; z-index: 1001;
  display: flex; align-items: center; justify-content: center; gap: 10px;
}
.announce-bar a { color: var(--blue); font-weight: 600; }
.announce-bar a:hover { text-decoration: underline; }
.announce-close {
  position: absolute; right: 16px;
  background: none; border: none; color: var(--muted);
  cursor: pointer; font-size: 18px; line-height: 1; padding: 4px;
}
.announce-close:hover { color: var(--sub); }

/* ── NAV ─────────────────────────────────────── */
nav {
  position: fixed; top: var(--bar-h); left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(9,9,15,.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  z-index: 1000; transition: top .3s;
}
nav.no-bar { top: 0; }
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  height: 100%; padding: 0 24px;
  display: flex; align-items: center; gap: 6px;
}
.nav-logo {
  font-size: 18px; font-weight: 800;
  letter-spacing: -.02em; white-space: nowrap;
  margin-right: 14px;
}
.nav-logo .logo-iden { color: var(--blue); }
.nav-logo .logo-shop { color: var(--text); }
.nav-links {
  list-style: none; display: flex; align-items: center; gap: 2px; flex: 1;
}
.nav-links a {
  display: block; padding: 7px 14px; border-radius: 8px;
  font-size: 14px; font-weight: 500; color: var(--sub);
  transition: color .18s, background .18s;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); background: rgba(255,255,255,.06); }
.nav-cta {
  display: inline-flex; align-items: center; gap: 7px;
  margin-left: auto; padding: 9px 18px;
  background: var(--blue); color: #fff !important;
  font-size: 14px; font-weight: 600; border-radius: 10px;
  white-space: nowrap; transition: background .18s, box-shadow .18s, transform .15s;
}
.nav-cta:hover {
  background: #5AB3FF;
  box-shadow: 0 0 20px rgba(59,158,255,.35);
  transform: translateY(-1px);
}
.burger {
  display: none; margin-left: auto;
  background: none; border: none; cursor: pointer;
  padding: 8px; flex-direction: column; gap: 5px;
}
.burger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: .25s; }

/* ── MOBILE MENU ─────────────────────────────── */
.mobile-menu {
  display: none; position: fixed;
  top: calc(var(--bar-h) + var(--nav-h)); left: 0; right: 0;
  background: var(--surface); border-bottom: 1px solid var(--border);
  padding: 12px 16px 20px; z-index: 998;
  flex-direction: column; gap: 4px;
}
.mobile-menu.no-bar { top: var(--nav-h); }
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 13px 16px; border-radius: var(--r);
  font-size: 15px; font-weight: 500; color: var(--sub); transition: .18s;
}
.mobile-menu a:hover { color: var(--text); background: rgba(255,255,255,.06); }
.mobile-menu .m-cta {
  background: var(--blue); color: #fff !important;
  text-align: center; margin-top: 8px; font-weight: 600;
}
.mobile-menu .m-cta:hover { background: #5AB3FF; }

/* ── LAYOUT ──────────────────────────────────── */
.page { padding-top: calc(var(--nav-h) + var(--bar-h)); }
.page.no-bar { padding-top: var(--nav-h); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
section { padding: 80px 0; }

/* ── HERO ────────────────────────────────────── */
.hero {
  padding: 96px 0 88px;
  text-align: center; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -80px; left: 50%; transform: translateX(-50%);
  width: 800px; height: 600px;
  background: radial-gradient(ellipse at center, rgba(59,158,255,.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 18px;
  background: var(--blue-glow); border: 1px solid var(--blue-bdr);
  border-radius: 100px; font-size: 13px; font-weight: 600; color: var(--blue);
  margin-bottom: 28px;
}
.pulse {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--blue); animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.4;transform:scale(.7)} }

.hero h1 {
  font-size: clamp(30px, 5.5vw, 58px);
  font-weight: 800; line-height: 1.1; letter-spacing: -.03em;
  max-width: 800px; margin: 0 auto 22px;
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, #3B9EFF 0%, #7DD3FC 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: clamp(15px, 2vw, 18px); color: var(--sub);
  max-width: 580px; margin: 0 auto 14px; line-height: 1.7;
}
.hero-own {
  font-size: 14px; color: var(--muted); margin: 0 auto 40px;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.hero-own::before, .hero-own::after { content: ''; flex: 1; max-width: 80px; height: 1px; background: var(--border); }

/* ── VERTICALS ───────────────────────────────── */
.verticals-label {
  font-size: 11px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 12px;
}
.verticals {
  display: flex; justify-content: center; flex-wrap: wrap;
  gap: 10px; margin-bottom: 44px;
}
.vert-chip {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 9px 20px; background: var(--card);
  border: 1px solid var(--border); border-radius: 100px;
  font-size: 14px; font-weight: 500; transition: border-color .2s;
}
.vert-chip:hover { border-color: var(--border-b); }
.vert-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.vert-dot--ig  { background: #F59E0B; box-shadow: 0 0 6px rgba(245,158,11,.5); }
.vert-dot--bet { background: #8B5CF6; box-shadow: 0 0 6px rgba(139,92,246,.5); }
.vert-dot--dat { background: #F472B6; box-shadow: 0 0 6px rgba(244,114,182,.5); }

/* ── BUTTONS ─────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px; border-radius: var(--r);
  font-size: 15px; font-weight: 600;
  cursor: pointer; border: none; transition: .2s;
}
.btn-primary {
  background: var(--blue); color: #fff;
  box-shadow: 0 0 0 rgba(59,158,255,0);
}
.btn-primary:hover {
  background: #5AB3FF; transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(59,158,255,.35); color: #fff;
}
.btn-outline {
  background: transparent; border: 1px solid var(--border); color: var(--text);
}
.btn-outline:hover { border-color: var(--blue); color: var(--blue); }
.btn-lg { padding: 15px 34px; font-size: 16px; border-radius: var(--r-lg); }

/* ── TRUST STRIP ─────────────────────────────── */
.trust-strip {
  background: var(--surface);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.trust-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 0;
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  padding: 18px 28px; font-size: 14px; font-weight: 500;
  border-right: 1px solid var(--border);
}
.trust-item:last-child { border-right: none; }
.trust-item .t-ico { font-size: 18px; }
.trust-item strong { color: var(--blue); font-weight: 700; }

/* ── STATS ───────────────────────────────────── */
.stats-row {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px; margin: 52px 0 0;
}
.stat-item {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 22px 16px; text-align: center;
  transition: border-color .2s;
}
.stat-item:hover { border-color: var(--border-b); }
.stat-num { font-size: 32px; font-weight: 800; color: var(--blue); line-height: 1; margin-bottom: 8px; }
.stat-lbl { font-size: 12px; color: var(--sub); line-height: 1.4; }

/* ── SECTION HEADER ──────────────────────────── */
.sec-header { text-align: center; margin-bottom: 52px; }
.sec-tag {
  display: inline-block; padding: 4px 14px;
  background: var(--blue-glow); border-radius: 100px;
  font-size: 11px; font-weight: 700; letter-spacing: .09em;
  text-transform: uppercase; color: var(--blue); margin-bottom: 14px;
}
.sec-header h2 {
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 800; letter-spacing: -.025em; margin-bottom: 12px;
}
.sec-header p { color: var(--sub); font-size: 17px; max-width: 520px; margin: 0 auto; }

/* ── PROBLEM/SOLUTION BLOCK ──────────────────── */
.problem-block {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r-xl); overflow: hidden;
  display: grid; grid-template-columns: 1fr 1fr;
}
.pb-side {
  padding: 40px 36px;
}
.pb-side.pb-problem { border-right: 1px solid var(--border); }
.pb-side.pb-solution { background: var(--blue-glow); }
.pb-label {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 11px; font-weight: 700; letter-spacing: .09em;
  text-transform: uppercase; padding: 4px 12px;
  border-radius: 100px; margin-bottom: 18px;
}
.pb-label.lbl-problem { background: rgba(255,92,92,.1); color: #FF5C5C; }
.pb-label.lbl-solution { background: var(--blue-glow); color: var(--blue); }
.pb-side h3 { font-size: 20px; font-weight: 800; margin-bottom: 16px; line-height: 1.3; }
.pb-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.pb-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--sub); }
.pb-list li .ico { flex-shrink: 0; font-size: 16px; margin-top: 1px; }
.pb-result {
  margin-top: 24px; padding: 14px 18px;
  background: rgba(45,212,160,.08); border: 1px solid rgba(45,212,160,.2);
  border-radius: var(--r); font-size: 13px; color: var(--green); font-weight: 600;
}

/* ── PRODUCT CARDS ───────────────────────────── */
.products-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
  gap: 16px;
}
.product-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r-xl); padding: 26px;
  display: flex; flex-direction: column;
  transition: border-color .22s, transform .22s, box-shadow .22s;
  position: relative; overflow: hidden;
}
.product-card .card-top-bar {
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  transform: scaleX(0); transform-origin: left; transition: transform .3s;
}
.product-card:hover { transform: translateY(-4px); }
.product-card:hover .card-top-bar { transform: scaleX(1); }

/* Category color variants */
.card--blue { }
.card--blue:hover { border-color: var(--blue-bdr); box-shadow: 0 8px 32px rgba(59,158,255,.08); }
.card--blue .card-top-bar { background: var(--blue); }
.card--blue .card-price, .card--blue .card-icon { background: var(--blue-glow); border-color: var(--blue-bdr); color: var(--blue); }
.card--blue .card-btn { background: var(--blue-glow); border-color: var(--blue-bdr); color: var(--blue); }
.card--blue .card-btn:hover { background: var(--blue); color: #fff; border-color: var(--blue); box-shadow: 0 4px 18px rgba(59,158,255,.4); }

.card--orange:hover { border-color: var(--orange-bdr); box-shadow: 0 8px 32px rgba(255,140,66,.08); }
.card--orange .card-top-bar { background: var(--orange); }
.card--orange .card-price-val { color: var(--orange) !important; }
.card--orange .card-icon { background: var(--orange-glow); border-color: var(--orange-bdr); }
.card--orange .card-btn { background: var(--orange-glow); border-color: var(--orange-bdr); color: var(--orange); }
.card--orange .card-btn:hover { background: var(--orange); color: #fff; border-color: var(--orange); box-shadow: 0 4px 18px rgba(255,140,66,.4); }

.card--purple:hover { border-color: var(--purple-bdr); box-shadow: 0 8px 32px rgba(155,114,245,.08); }
.card--purple .card-top-bar { background: var(--purple); }
.card--purple .card-price-val { color: var(--purple) !important; }
.card--purple .card-icon { background: var(--purple-glow); border-color: var(--purple-bdr); }
.card--purple .card-btn { background: var(--purple-glow); border-color: var(--purple-bdr); color: var(--purple); }
.card--purple .card-btn:hover { background: var(--purple); color: #fff; border-color: var(--purple); box-shadow: 0 4px 18px rgba(155,114,245,.4); }

.card--green:hover { border-color: var(--green-bdr); box-shadow: 0 8px 32px rgba(45,212,160,.08); }
.card--green .card-top-bar { background: var(--green); }
.card--green .card-price-val { color: var(--green) !important; }
.card--green .card-icon { background: var(--green-glow); border-color: var(--green-bdr); }
.card--green .card-btn { background: var(--green-glow); border-color: var(--green-bdr); color: var(--green); }
.card--green .card-btn:hover { background: var(--green); color: #fff; border-color: var(--green); box-shadow: 0 4px 18px rgba(45,212,160,.4); }

.card-icon {
  width: 48px; height: 48px; border: 1px solid;
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 20px;
}
.product-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 9px; letter-spacing: -.01em; }
.card-desc { color: var(--sub); font-size: 13px; line-height: 1.7; flex: 1; margin-bottom: 16px; }
.card-price { font-size: 13px; font-weight: 600; margin-bottom: 16px; padding: 8px 12px; border: 1px solid; border-radius: 8px; display: inline-block; }
.card-price-val { font-size: 18px; font-weight: 800; color: var(--blue); }
.card-feats {
  list-style: none; display: flex; flex-direction: column;
  gap: 7px; margin-bottom: 22px;
}
.card-feats li {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 13px; color: var(--sub);
}
.card-feats li::before {
  content: '→'; color: var(--blue); font-weight: 700;
  flex-shrink: 0; font-size: 12px; margin-top: 2px;
}
.card--orange .card-feats li::before { color: var(--orange); }
.card--purple .card-feats li::before { color: var(--purple); }
.card--green .card-feats li::before { color: var(--green); }

.card-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 20px; border: 1px solid;
  border-radius: var(--r); font-size: 14px; font-weight: 600;
  text-decoration: none; transition: .2s; cursor: pointer;
  margin-top: auto;
}

/* ── QUOTE BLOCK (TG style) ──────────────────── */
.quote-block {
  border-left: 3px solid var(--blue);
  background: var(--blue-glow);
  border-radius: 0 var(--r) var(--r) 0;
  padding: 16px 20px; margin: 20px 0;
  font-size: 14px; color: var(--sub); line-height: 1.7;
}
.quote-block strong { color: var(--text); }

.warn-block {
  border-left: 3px solid var(--orange);
  background: var(--orange-glow);
  border-radius: 0 var(--r) var(--r) 0;
  padding: 16px 20px; margin: 20px 0;
  font-size: 14px; color: var(--sub); line-height: 1.7;
}
.warn-block strong { color: var(--orange); }

.tip-block {
  border-left: 3px solid var(--green);
  background: var(--green-glow);
  border-radius: 0 var(--r) var(--r) 0;
  padding: 16px 20px; margin: 20px 0;
  font-size: 14px; color: var(--sub); line-height: 1.7;
}
.tip-block strong { color: var(--green); }

/* ── ADVANTAGES GRID ─────────────────────────── */
.adv-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}
.adv-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 24px 22px;
  transition: border-color .2s;
}
.adv-card:hover { border-color: var(--border-b); }
.adv-icon { font-size: 28px; margin-bottom: 14px; }
.adv-card h4 { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.adv-card p { font-size: 13px; color: var(--sub); line-height: 1.65; }

/* ── ROTATION SECTION ────────────────────────── */
.rotation-block {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r-xl); padding: 40px;
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; align-items: center;
}
.rotation-block h3 { font-size: 22px; font-weight: 800; letter-spacing: -.02em; margin-bottom: 14px; }
.rotation-block h3 em { font-style: normal; color: var(--orange); }
.rotation-block p { font-size: 14px; color: var(--sub); line-height: 1.75; margin-bottom: 20px; }
.rotation-types { display: flex; flex-direction: column; gap: 10px; }
.rot-type {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r); padding: 12px 16px;
}
.rot-type .rt-name { font-size: 14px; font-weight: 600; }
.rot-type .rt-desc { font-size: 12px; color: var(--sub); margin-top: 2px; }
.rot-type .rt-price {
  font-size: 15px; font-weight: 800; color: var(--orange);
  background: var(--orange-glow); padding: 4px 10px; border-radius: 6px;
  flex-shrink: 0; margin-left: 12px;
}

/* ── REVIEWS ─────────────────────────────────── */
.reviews-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 14px;
}
.review-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r-xl); padding: 20px;
  transition: border-color .2s;
}
.review-card:hover { border-color: var(--border-b); }
.review-top { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.r-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--blue-glow); border: 1px solid var(--blue-bdr);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 800; color: var(--blue); flex-shrink: 0;
}
.r-info { flex: 1; min-width: 0; }
.r-name { font-size: 13px; font-weight: 600; margin-bottom: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.r-date { font-size: 11px; color: var(--muted); }
.tg-tag {
  font-size: 10px; font-weight: 600; color: #29B6F6;
  background: rgba(41,182,246,.1); padding: 3px 8px; border-radius: 6px;
  flex-shrink: 0;
}
.r-stars { margin-bottom: 8px; color: #FBBF24; font-size: 12px; letter-spacing: 1px; }
.r-text { font-size: 13px; color: var(--sub); line-height: 1.7; }
.r-spend {
  display: inline-flex; align-items: center; gap: 5px;
  margin-top: 10px; padding: 5px 10px;
  background: var(--green-glow); border: 1px solid var(--green-bdr);
  border-radius: 6px; font-size: 12px; font-weight: 600; color: var(--green);
}

/* ── FAQ ─────────────────────────────────────── */
.faq-wrap { max-width: 760px; margin: 0 auto; }
.faq-item {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r-lg); margin-bottom: 8px; overflow: hidden;
  transition: border-color .2s;
}
.faq-item.open { border-color: var(--border-b); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding: 18px 22px; font-size: 15px; font-weight: 600;
  cursor: pointer; user-select: none; transition: color .18s;
}
.faq-q:hover { color: var(--blue); }
.faq-q .fq-emoji { flex-shrink: 0; font-size: 16px; }
.faq-q-text { flex: 1; }
.faq-icon {
  width: 22px; height: 22px; flex-shrink: 0;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 10px; transition: .25s; color: var(--sub);
}
.faq-item.open .faq-icon {
  background: var(--blue-glow); border-color: var(--blue-bdr);
  color: var(--blue); transform: rotate(180deg);
}
.faq-a {
  max-height: 0; overflow: hidden; padding: 0 22px;
  font-size: 14px; color: var(--sub); line-height: 1.8;
  transition: max-height .35s ease, padding .25s;
}
.faq-item.open .faq-a { max-height: 400px; padding: 0 22px 20px; }

/* ── CTA BANNER ──────────────────────────────── */
.cta-section { padding: 0 0 80px; }
.cta-box {
  background: linear-gradient(130deg, rgba(59,158,255,.1) 0%, rgba(59,158,255,.04) 50%, transparent 100%);
  border: 1px solid rgba(59,158,255,.2);
  border-radius: var(--r-xl); padding: 64px 40px; text-align: center;
  position: relative; overflow: hidden;
}
.cta-box::after {
  content: ''; position: absolute;
  top: -100px; right: -100px;
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(59,158,255,.08) 0%, transparent 70%);
  pointer-events: none;
}
.cta-box h2 { font-size: clamp(22px, 4vw, 36px); font-weight: 800; letter-spacing: -.02em; margin-bottom: 14px; }
.cta-box p { color: var(--sub); font-size: 17px; max-width: 460px; margin: 0 auto 36px; line-height: 1.65; }

/* ── FOOTER ──────────────────────────────────── */
footer { background: var(--surface); border-top: 1px solid var(--border); padding: 52px 0 28px; }
.footer-grid {
  display: grid; grid-template-columns: 1.8fr repeat(3, 1fr);
  gap: 48px; margin-bottom: 44px;
}
.footer-brand .nav-logo { font-size: 20px; display: inline-block; margin-bottom: 12px; }
.footer-brand p { color: var(--sub); font-size: 14px; line-height: 1.65; margin-bottom: 20px; }
.footer-tg-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 500; color: var(--sub); transition: .18s;
}
.footer-tg-link:hover { color: var(--blue); }
.footer-col h4 {
  font-size: 11px; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 18px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col ul a { font-size: 14px; color: var(--sub); transition: .18s; }
.footer-col ul a:hover { color: var(--text); }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 24px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom span { font-size: 13px; color: var(--muted); }
.footer-channels { display: flex; align-items: center; gap: 16px; }

/* ── PAGE HERO (inner pages) ─────────────────── */
.page-hero { padding: 52px 0 48px; border-bottom: 1px solid var(--border); }
.page-hero .sec-tag { display: block; text-align: left; margin-bottom: 14px; }
.page-hero h1 { font-size: clamp(26px, 4.5vw, 46px); font-weight: 800; letter-spacing: -.025em; margin-bottom: 14px; }
.page-hero p { color: var(--sub); font-size: 17px; max-width: 580px; line-height: 1.7; }

/* ── PRICING TABLE ───────────────────────────── */
.table-wrap {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r-lg); overflow: hidden; margin-top: 28px;
}
.price-table { width: 100%; border-collapse: collapse; }
.price-table th {
  text-align: left; padding: 13px 20px;
  font-size: 11px; font-weight: 700; letter-spacing: .07em;
  text-transform: uppercase; color: var(--muted);
  background: var(--surface); border-bottom: 1px solid var(--border);
}
.price-table td {
  padding: 15px 20px; font-size: 14px; color: var(--sub);
  border-bottom: 1px solid var(--border); vertical-align: middle;
}
.price-table tr:last-child td { border-bottom: none; }
.price-table td:first-child { color: var(--text); font-weight: 600; }
.price-val { color: var(--blue) !important; font-size: 16px !important; font-weight: 800 !important; }
.price-table tr:hover td { background: var(--card-hover); }

/* ── GEO CHIPS ───────────────────────────────── */
.geo-grid { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.geo-chip {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 7px 14px; background: var(--card);
  border: 1px solid var(--border); border-radius: 100px;
  font-size: 13px; font-weight: 500; transition: border-color .2s;
}
.geo-chip:hover { border-color: var(--border-b); }

/* ── INFO CARDS ──────────────────────────────── */
.info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 14px; margin-top: 28px; }
.info-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 22px;
  transition: border-color .2s;
}
.info-card:hover { border-color: var(--border-b); }
.info-card h4 { font-size: 15px; font-weight: 700; margin-bottom: 10px; }
.info-card p { font-size: 13px; color: var(--sub); line-height: 1.7; }
.info-card ul { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.info-card ul li { display: flex; align-items: flex-start; gap: 8px; font-size: 13px; color: var(--sub); }
.info-card ul li::before { content: '→'; color: var(--blue); flex-shrink: 0; }

/* ── CONTACT CARD ────────────────────────────── */
.contact-card {
  max-width: 480px; background: var(--card);
  border: 1px solid var(--border); border-radius: var(--r-xl);
  padding: 48px 40px; text-align: center;
}
.contact-card .big-icon { font-size: 52px; margin-bottom: 20px; }
.contact-card h3 { font-size: 22px; font-weight: 700; margin-bottom: 12px; }
.contact-card p { color: var(--sub); font-size: 15px; margin-bottom: 28px; line-height: 1.65; }
.contact-links { display: flex; flex-direction: column; gap: 10px; margin-top: 24px; }
.contact-links a {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; color: var(--sub); justify-content: center; transition: .18s;
}
.contact-links a:hover { color: var(--blue); }

.divider { border: none; border-top: 1px solid var(--border); margin: 0; }

/* ── MOBILE FLOATING CTA ─────────────────────── */
.m-sticky-cta { display: none; }

/* ── RESPONSIVE ──────────────────────────────── */

@media (max-width: 960px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links, .nav-cta { display: none; }
  .burger { display: flex; }
  .problem-block { grid-template-columns: 1fr; }
  .pb-side.pb-problem { border-right: none; border-bottom: 1px solid var(--border); }
  .rotation-block { grid-template-columns: 1fr; }
  .trust-item { padding: 10px 16px; border-right: none; }
}

@media (max-width: 640px) {
  :root { --nav-h: 56px; --bar-h: 38px; }

  .container { padding: 0 16px; }
  .nav-inner { padding: 0 16px; }
  .nav-logo { font-size: 16px; margin-right: 0; }
  .burger { padding: 10px 8px; }

  .announce-bar { font-size: 12px; }
  .announce-full { display: none; }
  .announce-close { right: 10px; font-size: 20px; }

  section { padding: 44px 0; }
  .hero { padding: 48px 0 40px; }

  .hero-badge { font-size: 12px; padding: 5px 13px; margin-bottom: 18px; max-width: 92%; text-align: center; flex-wrap: wrap; justify-content: center; }
  .hero-sub { font-size: 15px; margin-bottom: 10px; }
  .hero-own { font-size: 12px; gap: 4px; margin-bottom: 26px; }
  .hero-own::before, .hero-own::after { max-width: 20px; }
  .verticals { gap: 7px; margin-bottom: 22px; }
  .vert-chip { padding: 7px 14px; font-size: 13px; }
  .btn-lg { padding: 14px 24px; font-size: 15px; }

  .stats-row { grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 22px; }
  .stat-item { padding: 16px 10px; }
  .stat-num { font-size: 24px; }
  .stat-lbl { font-size: 11px; }

  .trust-inner { flex-wrap: wrap; justify-content: flex-start; }
  .trust-item { width: 50%; padding: 11px 12px; border-bottom: 1px solid var(--border); font-size: 12px; gap: 6px; }
  .trust-item:nth-child(odd) { border-right: 1px solid var(--border); }
  .trust-item:nth-last-child(1), .trust-item:nth-last-child(2) { border-bottom: none; }
  .t-ico { font-size: 15px; flex-shrink: 0; }

  .sec-header { margin-bottom: 26px; }
  .sec-header p { font-size: 15px; }

  .pb-side { padding: 20px 18px; }
  .pb-side h3 { font-size: 18px; }
  .pb-list li { font-size: 13px; }
  .pb-result { font-size: 12px; padding: 10px 14px; margin-top: 14px; }

  .products-grid { grid-template-columns: 1fr; gap: 10px; }
  .product-card { padding: 20px 18px; }
  .card-icon { width: 42px; height: 42px; font-size: 18px; margin-bottom: 14px; }
  .product-card h3 { font-size: 16px; }
  .card-desc { font-size: 13px; margin-bottom: 12px; }
  .card-feats { gap: 6px; margin-bottom: 16px; }
  .card-feats li { font-size: 12px; }

  .quote-block, .warn-block, .tip-block { font-size: 13px; padding: 12px 14px; }

  .rotation-block { padding: 22px 18px; gap: 22px; }
  .rotation-block h3 { font-size: 18px; }
  .rotation-block p { font-size: 13px; margin-bottom: 14px; }
  .rot-type { padding: 10px 12px; }
  .rot-type .rt-name { font-size: 13px; }
  .rot-type .rt-desc { font-size: 11px; }
  .rot-type .rt-price { font-size: 13px; padding: 3px 8px; margin-left: 8px; }

  .adv-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .adv-card { padding: 15px 13px; }
  .adv-icon { font-size: 22px; margin-bottom: 9px; }
  .adv-card h4 { font-size: 13px; margin-bottom: 5px; }
  .adv-card p { font-size: 12px; line-height: 1.55; }

  .reviews-grid { grid-template-columns: 1fr; gap: 8px; }
  .review-card { padding: 16px; }
  .r-spend { font-size: 11px; }

  .faq-q { padding: 14px 16px; font-size: 14px; gap: 8px; }
  .faq-q .fq-emoji { font-size: 14px; }
  .faq-a { padding: 0 16px; font-size: 13px; }
  .faq-item.open .faq-a { padding: 0 16px 16px; }

  .cta-box { padding: 32px 18px; }
  .cta-box h2 { font-size: clamp(20px, 6vw, 28px); }
  .cta-box p { font-size: 15px; margin-bottom: 20px; }
  .cta-box .btn-lg { width: 100%; justify-content: center; }
  .cta-section { padding-bottom: 96px; }

  footer { padding: 36px 0 96px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; margin-bottom: 24px; }

  .page-hero { padding: 26px 0 22px; }
  .page-hero h1 { font-size: clamp(22px, 7vw, 36px); }
  .page-hero p { font-size: 15px; }

  .info-grid { grid-template-columns: 1fr; gap: 8px; }
  .geo-chip { font-size: 12px; padding: 6px 12px; gap: 5px; }

  /* Price table → card layout */
  .table-wrap { overflow-x: visible; background: transparent; border: none; border-radius: 0; margin-top: 20px; }
  .price-table { min-width: unset; display: block; }
  .price-table thead { display: none; }
  .price-table tbody { display: flex; flex-direction: column; gap: 8px; }
  .price-table tr {
    display: block;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 16px;
    transition: border-color .2s;
  }
  .price-table tr:hover td { background: transparent; }
  .price-table td {
    display: block;
    padding: 0;
    border-bottom: none;
    font-size: 13px;
    color: var(--sub);
  }
  .price-table td:first-child { color: var(--text); font-size: 15px; margin-bottom: 4px; }
  .price-table td:nth-child(2) { font-size: 12px; color: var(--muted); margin-bottom: 10px; }
  .price-table td:nth-child(3) { display: none; }
  .price-table td:nth-child(4) { margin-bottom: 12px; }
  .price-val { font-size: 22px !important; display: block; margin-top: 2px; }
  .price-table td:last-child .card-btn { width: 100%; justify-content: center; padding: 12px; font-size: 14px; }

  .contact-card { padding: 30px 20px; max-width: 100%; width: 100%; }
  .contact-card .big-icon { font-size: 40px; margin-bottom: 14px; }
  .contact-card h3 { font-size: 20px; }
  .contact-card .btn-lg { width: 100%; justify-content: center; }

  /* Floating CTA */
  .m-sticky-cta {
    display: flex;
    position: fixed; bottom: 0; left: 0; right: 0;
    padding: 10px 16px;
    padding-bottom: max(12px, env(safe-area-inset-bottom));
    background: rgba(14,14,26,.96);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--border);
    z-index: 900;
  }
  .m-sticky-cta a {
    flex: 1;
    display: flex; align-items: center; justify-content: center; gap: 9px;
    padding: 14px 16px;
    background: var(--blue); color: #fff;
    border-radius: var(--r); font-size: 15px; font-weight: 600;
    transition: background .18s;
    box-shadow: 0 4px 24px rgba(59,158,255,.4);
  }
  .m-sticky-cta a:active { background: #5AB3FF; transform: scale(.98); }
}

@media (max-width: 380px) {
  .adv-grid { grid-template-columns: 1fr; }
  .trust-item { width: 100%; border-right: none !important; }
}
