/*
Theme Name: VPN House RU
Theme URI: https://vpnhouse.net/
Author: ChatGPT
Author URI: https://openai.com/
Description: Легкая SEO-оптимизированная WordPress-тема для русскоязычного сайта VPN House.
Version: 1.0.1
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
License: GPLv2 or later
Text Domain: vpn-house-ru
*/

:root {
  --vnh-bg: #f4fbf6;
  --vnh-bg-2: #eaf7ef;
  --vnh-surface: #ffffff;
  --vnh-surface-soft: #f4fbf7;
  --vnh-surface-blue: #eefaf2;
  --vnh-text: #10221a;
  --vnh-muted: #63746a;
  --vnh-white: #ffffff;
  --vnh-primary: #21b26b;
  --vnh-primary-dark: #138a50;
  --vnh-accent: #7bdc8a;
  --vnh-accent-2: #d8f86f;
  --vnh-border: rgba(33, 178, 107, .18);
  --vnh-border-dark: rgba(33, 178, 107, .22);
  --vnh-shadow: 0 20px 55px rgba(19, 138, 80, .12);
  --vnh-shadow-soft: 0 14px 35px rgba(19, 138, 80, .09);
  --vnh-radius: 28px;
  --vnh-radius-sm: 18px;
  --vnh-wrap: 1180px;
  --vnh-header: 74px;
  --vnh-font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--vnh-font);
  color: var(--vnh-text);
  background: #fbfdf9;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.vnh-lock { overflow: hidden; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--vnh-primary); }
img { max-width: 100%; height: auto; display: block; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }
.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.vnh-wrap { width: min(calc(100% - 36px), var(--vnh-wrap)); margin-inline: auto; }
.vnh-section { padding: 92px 0; position: relative; }
.vnh-section--soft { background: var(--vnh-surface-soft); }
.vnh-section--dark { background: linear-gradient(180deg, #f0fbf4 0%, #e8f7ed 100%); color: var(--vnh-text); overflow: hidden; }
.vnh-section--dark::before {
  content: "";
  position: absolute;
  inset: -20% auto auto -10%;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(33, 178, 107, .20), transparent 68%);
  filter: blur(14px);
  pointer-events: none;
}
.vnh-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 16px;
  padding: 8px 13px;
  border: 1px solid var(--vnh-border);
  border-radius: 999px;
  color: var(--vnh-primary);
  background: rgba(33, 178, 107, .10);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .01em;
}
.vnh-kicker::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--vnh-primary);
  box-shadow: 0 0 0 5px rgba(33, 178, 107, .14);
}
.vnh-section--dark .vnh-kicker { color: var(--vnh-primary-dark); border-color: var(--vnh-border-dark); background: rgba(255, 255, 255, .72); }
.vnh-section-head { max-width: 780px; margin-bottom: 36px; }
.vnh-section-head--center { text-align: center; margin-inline: auto; }
.vnh-title, .vnh-content h1, .vnh-content h2, .vnh-content h3, .vnh-content h4 {
  margin: 0;
  line-height: 1.1;
  letter-spacing: -.04em;
  color: inherit;
}
.vnh-title--xl { font-size: clamp(42px, 7vw, 82px); }
.vnh-title--lg, .vnh-content h1 { font-size: clamp(34px, 5vw, 58px); }
.vnh-title--md, .vnh-content h2 { font-size: clamp(28px, 4vw, 44px); }
.vnh-title--sm, .vnh-content h3 { font-size: clamp(22px, 3vw, 28px); }
.vnh-lead, .vnh-content .vnh-lead {
  margin: 18px 0 0;
  font-size: clamp(18px, 2vw, 22px);
  color: var(--vnh-muted);
  max-width: 760px;
}
.vnh-section--dark .vnh-lead, .vnh-section--dark p, .vnh-hero p { color: var(--vnh-muted); }
.vnh-text { color: var(--vnh-muted); margin: 12px 0 0; }
.vnh-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-top: 28px; }
.vnh-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 850;
  line-height: 1.1;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.vnh-btn:hover { transform: translateY(-2px); color: inherit; }
.vnh-btn--primary {
  color: #fff;
  background: linear-gradient(135deg, var(--vnh-primary), #74d78b);
  box-shadow: 0 18px 35px rgba(33, 178, 107, .24);
}
.vnh-btn--primary:hover { color: #fff; box-shadow: 0 20px 42px rgba(33, 178, 107, .32); }
.vnh-btn--ghost { border-color: var(--vnh-border); color: var(--vnh-primary); background: rgba(255, 255, 255, .8); }
.vnh-btn--ghost:hover { background: #fff; color: var(--vnh-primary-dark); }
.vnh-btn--light { color: var(--vnh-primary-dark); background: #fff; border-color: rgba(33,178,107,.18); }
.vnh-btn--accent { color: #10301f; background: linear-gradient(135deg, var(--vnh-accent), var(--vnh-accent-2)); box-shadow: 0 18px 35px rgba(33, 178, 107, .20); }
.vnh-pill-row { display: flex; flex-wrap: wrap; gap: 10px; margin: 26px 0 0; padding: 0; list-style: none; }
.vnh-pill-row li, .vnh-pill { display: inline-flex; align-items: center; gap: 8px; padding: 9px 13px; border-radius: 999px; background: #fff; border: 1px solid var(--vnh-border); color: #24543a; font-weight: 750; font-size: 14px; box-shadow: 0 10px 24px rgba(19,138,80,.08); }
.vnh-check-list { display: grid; gap: 12px; margin: 22px 0 0; padding: 0; list-style: none; }
.vnh-check-list li { position: relative; padding-left: 34px; color: var(--vnh-muted); }
.vnh-check-list li::before { content: "✓"; position: absolute; left: 0; top: 0; display: grid; place-items: center; width: 23px; height: 23px; border-radius: 50%; background: rgba(33, 178, 107, .14); color: #138a50; font-weight: 900; font-size: 13px; }
.vnh-section--dark .vnh-check-list li { color: var(--vnh-muted); }
.vnh-section--dark .vnh-check-list li::before { background: rgba(33, 178, 107, .14); color: var(--vnh-primary-dark); }

.vnh-site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  min-height: var(--vnh-header);
  background: rgba(255, 255, 255, .86);
  border-bottom: 1px solid rgba(18, 32, 54, .08);
  backdrop-filter: blur(18px);
}
.admin-bar .vnh-site-header { top: 32px; }
.vnh-header-inner { min-height: var(--vnh-header); display: flex; align-items: center; justify-content: space-between; gap: 22px; }
.vnh-logo { display: inline-flex; align-items: center; gap: 10px; font-weight: 950; font-size: 22px; letter-spacing: -.04em; color: var(--vnh-text); }
.vnh-logo-mark { width: 40px; height: 40px; border-radius: 14px; display: grid; place-items: center; background: linear-gradient(135deg, var(--vnh-primary), var(--vnh-accent)); color: #fff; box-shadow: 0 12px 28px rgba(33, 178, 107, .24); }
.vnh-logo-mark svg { width: 22px; height: 22px; }
.vnh-logo small { display: block; margin-top: -5px; color: var(--vnh-muted); font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.vnh-nav-shell { display: flex; align-items: center; gap: 18px; }
.vnh-menu, .vnh-menu ul { margin: 0; padding: 0; list-style: none; }
.vnh-menu { display: flex; align-items: center; gap: 3px; }
.vnh-menu li { position: relative; }
.vnh-menu a, .vnh-submenu-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  min-height: 44px;
  padding: 11px 13px;
  border-radius: 999px;
  color: #253550;
  font-size: 15px;
  font-weight: 800;
  background: transparent;
  border: 0;
}
.vnh-menu a:hover, .vnh-submenu-toggle:hover { background: rgba(33, 178, 107, .10); color: var(--vnh-primary); }
.vnh-menu .menu-item-has-children > a::after, .vnh-menu .vnh-has-submenu > .vnh-submenu-toggle::after { content: ""; width: 7px; height: 7px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg) translateY(-2px); opacity: .7; }
.vnh-menu .sub-menu, .vnh-submenu {
  position: absolute;
  left: 0;
  top: calc(100% + 10px);
  min-width: 245px;
  padding: 10px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(18, 32, 54, .08);
  box-shadow: var(--vnh-shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}
.vnh-menu .menu-item-has-children:hover > .sub-menu,
.vnh-menu .menu-item-has-children:focus-within > .sub-menu,
.vnh-menu .vnh-has-submenu:hover > .vnh-submenu,
.vnh-menu .vnh-has-submenu:focus-within > .vnh-submenu,
.vnh-menu .vnh-has-submenu.vnh-submenu-open > .vnh-submenu { opacity: 1; visibility: visible; transform: translateY(0); }
.vnh-menu .sub-menu::before, .vnh-submenu::before { content: ""; position: absolute; left: 0; right: 0; top: -14px; height: 14px; }
.vnh-menu .sub-menu a, .vnh-submenu a { justify-content: flex-start; border-radius: 12px; min-height: 40px; padding: 10px 12px; white-space: nowrap; }
.vnh-header-cta { display: inline-flex; }
.vnh-burger { display: none; align-items: center; justify-content: center; width: 46px; height: 46px; border: 0; border-radius: 14px; background: rgba(33, 178, 107, .11); color: var(--vnh-primary-dark); }
.vnh-burger span { display: block; position: relative; width: 22px; height: 2px; border-radius: 99px; background: currentColor; transition: background .2s ease; }
.vnh-burger span::before, .vnh-burger span::after { content: ""; position: absolute; left: 0; width: 22px; height: 2px; border-radius: 99px; background: currentColor; transition: transform .2s ease, top .2s ease; }
.vnh-burger span::before { top: -7px; }
.vnh-burger span::after { top: 7px; }
.vnh-burger[aria-expanded="true"] span { background: transparent; }
.vnh-burger[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.vnh-burger[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }

.vnh-hero {
  position: relative;
  min-height: calc(100vh - var(--vnh-header));
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--vnh-text);
  background:
    radial-gradient(circle at 78% 20%, rgba(216, 248, 111, .44), transparent 25%),
    radial-gradient(circle at 15% 24%, rgba(123, 220, 138, .28), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f5fbf6 52%, #eef8f1 100%);
}
.vnh-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(33,178,107,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(33,178,107,.055) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at 50% 45%, black, transparent 78%);
  pointer-events: none;
}
.vnh-hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr); gap: 52px; align-items: center; padding: 76px 0; }
.vnh-hero-copy { max-width: 720px; }
.vnh-hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 34px; }
.vnh-stat { padding: 17px; border: 1px solid rgba(33,178,107,.14); border-radius: 18px; background: rgba(255,255,255,.82); box-shadow: 0 12px 30px rgba(19,138,80,.08); backdrop-filter: blur(10px); }
.vnh-stat strong { display: block; color: var(--vnh-text); font-size: 22px; line-height: 1; }
.vnh-stat span { display: block; margin-top: 7px; color: var(--vnh-muted); font-size: 13px; font-weight: 750; }
.vnh-hero-visual { position: relative; min-height: 560px; }
.vnh-orbit-card { position: absolute; inset: 70px 0 auto auto; width: min(92%, 520px); min-height: 430px; border: 1px solid rgba(33,178,107,.16); border-radius: 42px; background: linear-gradient(160deg, rgba(255,255,255,.96), rgba(242,250,245,.88)); box-shadow: 0 35px 80px rgba(19,138,80,.14); backdrop-filter: blur(18px); overflow: hidden; }
.vnh-orbit-card::before { content: ""; position: absolute; inset: 36px; border-radius: 50%; border: 1px solid rgba(33,178,107,.22); box-shadow: 0 0 0 44px rgba(33,178,107,.06), 0 0 0 92px rgba(216,248,111,.10); }
.vnh-orbit-card::after { content: ""; position: absolute; left: 50%; top: 50%; width: 148px; height: 148px; border-radius: 50%; transform: translate(-50%, -50%); background: radial-gradient(circle at 30% 25%, #e8ffd9, #7bdc8a 46%, #21b26b 74%); box-shadow: 0 0 44px rgba(33,178,107,.28); }
.vnh-device-card { position: absolute; z-index: 2; left: 0; top: 44px; width: 220px; padding: 18px; border-radius: 30px; background: #fff; color: var(--vnh-text); box-shadow: 0 26px 60px rgba(19,138,80,.16); }
.vnh-device-screen { height: 260px; border-radius: 24px; background: linear-gradient(160deg, #eaf9ef, #b9efc4 52%, #21b26b); position: relative; overflow: hidden; }
.vnh-device-screen::before { content: ""; position: absolute; inset: 34px; border-radius: 50%; background: radial-gradient(circle, rgba(255,255,255,.95), transparent 5px), radial-gradient(circle at 70% 40%, rgba(216,248,111,.95), transparent 4px), linear-gradient(135deg, transparent 45%, rgba(255,255,255,.32) 45% 48%, transparent 48%); background-size: 100% 100%; border: 1px solid rgba(255,255,255,.52); }
.vnh-connect-badge { position: absolute; z-index: 3; right: 26px; bottom: 78px; display: grid; gap: 5px; padding: 16px 18px; border-radius: 18px; background: rgba(255,255,255,.97); color: var(--vnh-text); box-shadow: 0 22px 45px rgba(19,138,80,.16); }
.vnh-connect-badge strong { display: flex; align-items: center; gap: 9px; font-size: 15px; }
.vnh-connect-badge strong::before { content: ""; width: 12px; height: 12px; border-radius: 50%; background: #21d688; box-shadow: 0 0 0 5px rgba(33,214,136,.14); }
.vnh-connect-badge span { color: var(--vnh-muted); font-size: 12px; font-weight: 800; }
.vnh-floating-chip { position: absolute; z-index: 4; display: inline-flex; align-items: center; gap: 8px; padding: 10px 12px; border-radius: 999px; color: #24543a; background: rgba(255,255,255,.90); border: 1px solid rgba(33,178,107,.18); box-shadow: 0 18px 35px rgba(19,138,80,.10); backdrop-filter: blur(12px); font-size: 13px; font-weight: 850; }
.vnh-floating-chip--one { right: 18px; top: 34px; }
.vnh-floating-chip--two { left: 80px; bottom: 92px; }
.vnh-floating-chip--three { right: 78px; bottom: 22px; }

.vnh-grid { display: grid; gap: 22px; }
.vnh-grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.vnh-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.vnh-grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.vnh-card { position: relative; padding: 26px; border: 1px solid rgba(18,32,54,.08); border-radius: var(--vnh-radius); background: #fff; box-shadow: var(--vnh-shadow-soft); overflow: hidden; }
.vnh-card--blue { background: linear-gradient(180deg, #ffffff, #effaf2); border-color: rgba(33, 178, 107, .16); }
.vnh-card--dark { color: var(--vnh-text); background: linear-gradient(145deg, #ffffff, #edf8f1); border-color: rgba(33,178,107,.16); }
.vnh-card h3 { margin: 0; font-size: 22px; line-height: 1.2; letter-spacing: -.03em; }
.vnh-card p { margin: 11px 0 0; color: var(--vnh-muted); }
.vnh-card--dark p { color: var(--vnh-muted); }
.vnh-icon { width: 52px; height: 52px; border-radius: 18px; display: grid; place-items: center; margin-bottom: 18px; color: var(--vnh-primary-dark); background: rgba(33, 178, 107, .12); font-size: 25px; }
.vnh-icon--accent { color: #138a50; background: rgba(33,178,107,.13); }
.vnh-product-tabs { display: flex; gap: 9px; flex-wrap: wrap; margin-bottom: 24px; }
.vnh-tab { padding: 10px 15px; border: 1px solid var(--vnh-border); border-radius: 999px; background: #fff; color: var(--vnh-muted); font-weight: 850; }
.vnh-tab.vnh-active { background: var(--vnh-primary); color: #fff; box-shadow: 0 14px 30px rgba(33,178,107,.22); }
.vnh-product-card { display: flex; flex-direction: column; min-height: 100%; }
.vnh-product-top { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.vnh-product-label { font-size: 13px; color: var(--vnh-muted); font-weight: 800; }
.vnh-download-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: auto; padding-top: 22px; }
.vnh-price-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; align-items: stretch; }
.vnh-price { padding: 30px; border-radius: 30px; border: 1px solid rgba(18,32,54,.08); background: #fff; box-shadow: var(--vnh-shadow-soft); display: flex; flex-direction: column; min-height: 100%; }
.vnh-price.vnh-popular { transform: translateY(-10px); border-color: rgba(33,178,107,.32); box-shadow: 0 30px 70px rgba(33,178,107,.16); }
.vnh-price-badge { align-self: flex-start; padding: 7px 11px; border-radius: 999px; background: rgba(33,178,107,.13); color: #138a50; font-size: 13px; font-weight: 900; }
.vnh-price h3 { margin: 18px 0 0; font-size: 24px; }
.vnh-price-num { display: flex; align-items: baseline; gap: 6px; margin: 14px 0 0; color: var(--vnh-text); }
.vnh-price-num strong { font-size: clamp(36px, 5vw, 48px); letter-spacing: -.05em; line-height: 1; }
.vnh-price-num span { color: var(--vnh-muted); font-weight: 800; }
.vnh-price-total { margin: 8px 0 0; color: var(--vnh-muted); font-weight: 750; }
.vnh-price ul { display: grid; gap: 11px; margin: 24px 0; padding: 0; list-style: none; }
.vnh-price li { position: relative; padding-left: 26px; color: var(--vnh-muted); }
.vnh-price li::before { content: "✓"; position: absolute; left: 0; color: #21b26b; font-weight: 900; }
.vnh-price .vnh-btn { margin-top: auto; }
.vnh-steps { counter-reset: vnhstep; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.vnh-step { position: relative; padding: 28px; border-radius: var(--vnh-radius); background: #fff; border: 1px solid rgba(18,32,54,.08); box-shadow: var(--vnh-shadow-soft); }
.vnh-step::before { counter-increment: vnhstep; content: "0" counter(vnhstep); display: inline-grid; place-items: center; width: 48px; height: 48px; border-radius: 16px; margin-bottom: 18px; color: #fff; background: linear-gradient(135deg, var(--vnh-primary), var(--vnh-accent)); font-weight: 950; box-shadow: 0 12px 25px rgba(33,178,107,.18); }
.vnh-protocol { display: grid; grid-template-columns: minmax(0, .95fr) minmax(320px, 1.05fr); gap: 36px; align-items: center; }
.vnh-protocol-panel { position: relative; min-height: 420px; border-radius: 42px; border: 1px solid rgba(33,178,107,.18); background: rgba(255,255,255,.72); overflow: hidden; box-shadow: 0 24px 65px rgba(19,138,80,.11); }
.vnh-protocol-panel::before { content: "IPRose"; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); font-size: clamp(46px, 8vw, 88px); font-weight: 950; letter-spacing: -.08em; color: rgba(33,178,107,.16); }
.vnh-protocol-panel::after { content: ""; position: absolute; inset: 58px; border-radius: 50%; border: 1px dashed rgba(33,178,107,.42); box-shadow: 0 0 0 58px rgba(33,178,107,.07), 0 0 80px rgba(216,248,111,.18); }
.vnh-map-pins { position: absolute; inset: 0; }
.vnh-map-pins span { position: absolute; width: 12px; height: 12px; border-radius: 50%; background: var(--vnh-accent); box-shadow: 0 0 0 8px rgba(33,178,107,.14), 0 0 28px rgba(33,178,107,.38); }
.vnh-map-pins span:nth-child(1) { left: 20%; top: 34%; }
.vnh-map-pins span:nth-child(2) { left: 62%; top: 24%; }
.vnh-map-pins span:nth-child(3) { left: 74%; top: 58%; }
.vnh-map-pins span:nth-child(4) { left: 36%; top: 67%; }
.vnh-map-pins span:nth-child(5) { left: 50%; top: 46%; }
.vnh-table-wrap { width: 100%; overflow: hidden; border-radius: 22px; border: 1px solid rgba(18,32,54,.08); background: #fff; box-shadow: var(--vnh-shadow-soft); }
.vnh-table { width: 100%; border-collapse: collapse; }
.vnh-table th, .vnh-table td { padding: 17px 18px; border-bottom: 1px solid rgba(18,32,54,.08); text-align: left; vertical-align: top; }
.vnh-table th { color: var(--vnh-text); background: #eefaf2; font-size: 14px; text-transform: uppercase; letter-spacing: .04em; }
.vnh-table tr:last-child td { border-bottom: 0; }
.vnh-table td { color: var(--vnh-muted); }
.vnh-table strong { color: var(--vnh-text); }
.vnh-faq { display: grid; gap: 12px; max-width: 900px; margin: 0 auto; }
.vnh-faq-item { border: 1px solid rgba(18,32,54,.08); border-radius: 18px; background: #fff; box-shadow: 0 10px 30px rgba(16,42,83,.06); overflow: hidden; }
.vnh-faq-question { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 22px; border: 0; background: transparent; color: var(--vnh-text); text-align: left; font-weight: 900; }
.vnh-faq-question::after { content: "+"; display: grid; place-items: center; flex: 0 0 auto; width: 28px; height: 28px; border-radius: 50%; background: rgba(33,178,107,.12); color: var(--vnh-primary-dark); font-size: 20px; line-height: 1; }
.vnh-faq-question[aria-expanded="true"]::after { content: "−"; }
.vnh-faq-answer { display: none; padding: 0 22px 20px; color: var(--vnh-muted); }
.vnh-faq-answer p { margin: 0; }
.vnh-faq-answer.vnh-open { display: block; }
.vnh-cta { position: relative; overflow: hidden; border-radius: 38px; padding: clamp(34px, 6vw, 60px); color: var(--vnh-text); background: linear-gradient(135deg, #ffffff, #eaf8ef 58%, #dff5e7); border: 1px solid rgba(33,178,107,.18); box-shadow: var(--vnh-shadow); }
.vnh-cta::after { content: ""; position: absolute; right: -90px; top: -120px; width: 360px; height: 360px; border-radius: 50%; background: rgba(123,220,138,.24); }
.vnh-cta-inner { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 30px; align-items: center; }
.vnh-cta p { color: var(--vnh-muted); margin: 14px 0 0; }
.vnh-page-hero { padding: 82px 0 64px; background: linear-gradient(160deg, #ffffff 0%, #f1fbf5 62%, #fff 100%); overflow: hidden; }
.vnh-page-hero__inner { display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, 440px); gap: 42px; align-items: center; }
.vnh-page-card { padding: 26px; border-radius: 34px; border: 1px solid rgba(33,178,107,.16); background: rgba(255,255,255,.78); box-shadow: var(--vnh-shadow-soft); }
.vnh-page-card .vnh-card { box-shadow: none; }
.vnh-content { padding: 0 0 88px; }
.vnh-content p { margin: 14px 0 0; color: var(--vnh-muted); }
.vnh-content ul, .vnh-content ol { color: var(--vnh-muted); }
.vnh-content .vnh-section { padding: 32px 0; }
.vnh-breadcrumbs { color: var(--vnh-muted); font-size: 14px; font-weight: 750; margin-bottom: 18px; }
.vnh-breadcrumbs a { color: var(--vnh-primary); }
.vnh-contact-box { display: grid; gap: 14px; }
.vnh-contact-line { padding: 18px; border-radius: 18px; border: 1px solid rgba(18,32,54,.08); background: #fff; }
.vnh-contact-line span { display: block; color: var(--vnh-muted); font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: .04em; }
.vnh-contact-line strong { display: block; margin-top: 3px; color: var(--vnh-text); word-break: break-word; }
.vnh-site-footer { color: #63746a; background: #f4fbf6; border-top: 1px solid rgba(33,178,107,.14); }
.vnh-footer-top { display: grid; grid-template-columns: 1.1fr repeat(3, minmax(0, .7fr)); gap: 32px; padding: 62px 0 44px; border-bottom: 1px solid rgba(33,178,107,.14); }
.vnh-footer-title { margin: 0 0 14px; color: var(--vnh-text); font-size: 16px; font-weight: 950; }
.vnh-footer-col p { margin: 12px 0 0; color: var(--vnh-muted); }
.vnh-footer-list { display: grid; gap: 9px; margin: 0; padding: 0; list-style: none; }
.vnh-footer-list a { color: #52675b; }
.vnh-footer-list a:hover { color: var(--vnh-primary-dark); }
.vnh-footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 24px 0 30px; font-size: 14px; color: #718077; }
.vnh-not-found { padding: 96px 0; text-align: center; }
.vnh-not-found .vnh-title--xl { color: var(--vnh-primary); }
.vnh-hero-visual { margin: 0 auto;}
@media (max-width: 1080px) {
  .vnh-grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .vnh-hero-inner, .vnh-protocol, .vnh-page-hero__inner { grid-template-columns: 1fr; }
  .vnh-hero-visual { min-height: 500px; }
  .vnh-price-grid, .vnh-steps { grid-template-columns: 1fr; }
  .vnh-price.vnh-popular { transform: none; }
	.vnh-hero-visual { display: none;}
}

@media (max-width: 920px) {
  .admin-bar .vnh-site-header { top: 0; }
  .vnh-burger { display: inline-flex; margin-left: auto;}
  .vnh-header-cta { display: none; }
  .vnh-nav-shell {
    position: fixed;
    inset: var(--vnh-header) 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    max-height: calc(100vh - var(--vnh-header));
    overflow-y: auto;
    padding: 16px 18px 24px;
    background: #fff;
    border-bottom: 1px solid rgba(18,32,54,.08);
    box-shadow: 0 30px 60px rgba(18,32,54,.15);
  }
  .vnh-nav-shell.vnh-open { display: flex; }
  .vnh-menu { display: grid; align-items: stretch; gap: 6px; width: 100%; }
  .vnh-menu a, .vnh-submenu-toggle { justify-content: space-between; width: 100%; border-radius: 14px; min-height: 48px; background: #f2fbf5; }
  .vnh-menu .sub-menu, .vnh-submenu {
    position: static;
    display: none;
    min-width: 0;
    margin: 6px 0 8px;
    padding: 8px;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: #f5fcf7;
    border-radius: 16px;
  }
  .vnh-menu .menu-item-has-children.vnh-submenu-open > .sub-menu,
  .vnh-menu .vnh-has-submenu.vnh-submenu-open > .vnh-submenu { display: grid; }
  .vnh-menu .sub-menu::before, .vnh-submenu::before { display: none; }
  .vnh-nav-shell .vnh-header-cta { display: inline-flex; width: 100%; }
  .vnh-nav-shell .vnh-header-cta .vnh-btn { width: 100%; }
  .vnh-grid--3, .vnh-grid--2 { grid-template-columns: 1fr; }
  .vnh-cta-inner { grid-template-columns: 1fr; }
  .vnh-hero { min-height: auto; }
	
}

@media (max-width: 720px) {
  :root { --vnh-header: 68px; }
  .vnh-wrap { width: min(calc(100% - 28px), var(--vnh-wrap)); }
  .vnh-section { padding: 64px 0; }
  .vnh-hero-inner { padding: 42px 0 58px; gap: 26px; }
  .vnh-hero-visual { min-height: 390px; }
  .vnh-orbit-card { width: 100%; min-height: 330px; inset: 42px 0 auto auto; border-radius: 32px; }
  .vnh-device-card { width: 155px; top: 16px; padding: 12px; border-radius: 22px; }
  .vnh-device-screen { height: 190px; border-radius: 18px; }
  .vnh-connect-badge { right: 10px; bottom: 58px; padding: 12px; }
  .vnh-floating-chip { font-size: 12px; }
  .vnh-floating-chip--one { top: 8px; right: 6px; }
  .vnh-floating-chip--two { left: 8px; bottom: 62px; }
  .vnh-floating-chip--three { right: 14px; bottom: 10px; }
  .vnh-hero-stats { grid-template-columns: 1fr; }
  .vnh-grid--4 { grid-template-columns: 1fr; }
  .vnh-card, .vnh-price, .vnh-step { padding: 22px; border-radius: 22px; }
  .vnh-page-hero { padding: 52px 0 42px; }
  .vnh-footer-top { grid-template-columns: 1fr; padding-top: 48px; }
  .vnh-footer-bottom { flex-direction: column; align-items: flex-start; }
  .vnh-table-wrap { border: 0; box-shadow: none; background: transparent; }
  .vnh-table, .vnh-table tbody, .vnh-table tr, .vnh-table td { display: block; width: 100%; }
  .vnh-table thead { display: none; }
  .vnh-table tr { margin-bottom: 14px; border-radius: 18px; background: #fff; border: 1px solid rgba(18,32,54,.08); box-shadow: 0 10px 28px rgba(16,42,83,.07); overflow: hidden; }
  .vnh-table td { display: grid; grid-template-columns: 122px 1fr; gap: 12px; padding: 14px 16px; border-bottom: 1px solid rgba(18,32,54,.06); }
  .vnh-table td::before { content: attr(data-label); color: var(--vnh-text); font-weight: 900; }
  .vnh-table td:last-child { border-bottom: 0; }
	.vnh-hero-visual { display: block;}
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
}


@media (max-width: 470px) {
	header .vnh-logo span { display: none;}
}