/*
Theme Name: Premium Web RU
Theme URI: https://premium-web.info/
Author: OpenAI
Author URI: https://openai.com/
Description: Легкая адаптивная WordPress-тема для русскоязычной версии Premium Web: быстрый безопасный доступ, тарифы, приложения, помощь и страницы платформ.
Version: 1.1.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
Text Domain: premium-web-ru
*/

:root {
  --pw-bg: #080808;
  --pw-surface: #111111;
  --pw-surface-2: #171612;
  --pw-surface-3: #211f18;
  --pw-text: #fff7df;
  --pw-text-on-dark: #fff7df;
  --pw-muted: #b9b09a;
  --pw-soft: #2b2617;
  --pw-line: rgba(255, 210, 46, .16);
  --pw-primary: #ffd22e;
  --pw-primary-2: #ffe477;
  --pw-blue-dark: #ffd22e;
  --pw-accent: #ffd22e;
  --pw-warning: #ffcc2f;
  --pw-danger: #ff6b6b;
  --pw-radius-sm: 14px;
  --pw-radius: 22px;
  --pw-radius-lg: 34px;
  --pw-shadow: 0 18px 55px rgba(0, 0, 0, .38);
  --pw-shadow-strong: 0 28px 90px rgba(0, 0, 0, .56);
  --pw-glow: 0 0 0 1px rgba(255, 210, 46, .13), 0 24px 80px rgba(255, 210, 46, .14);
  --pw-container: 1180px;
  --pw-header-height: 76px;
  --pw-font: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--pw-font);
  color: var(--pw-text);
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 210, 46, .18), transparent 28rem),
    radial-gradient(circle at 86% 6%, rgba(255, 184, 0, .10), transparent 28rem),
    linear-gradient(180deg, #0b0b0a 0%, #080808 58%, #050505 100%);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--pw-primary); }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
::selection { color: #0b0b0a; background: var(--pw-primary); }

.pw-container { width: min(100% - 36px, var(--pw-container)); margin: 0 auto; }
.pw-main { overflow: hidden; }
.pw-skip-link {
  position: absolute; left: 16px; top: -60px; z-index: 9999;
  background: var(--pw-primary); color: #0b0b0a; padding: 10px 14px; border-radius: 12px;
  transition: top .2s ease;
}
.pw-skip-link:focus { top: 14px; }

.pw-topline {
  background: linear-gradient(90deg, #0a0a0a, #15130b 54%, #2a2103);
  color: var(--pw-text);
  font-weight: 700;
  letter-spacing: -.01em;
}
.pw-topline__inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  font-size: 14px;
}
.pw-topline__icon { display: inline-flex; width: 22px; height: 22px; border-radius: 50%; align-items: center; justify-content: center; background: rgba(255,255,255,.18); }

.pw-site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(8,8,8,.86);
  border-bottom: 1px solid rgba(255,210,46,.14);
  backdrop-filter: blur(18px);
}
.admin-bar .pw-site-header { top: 32px; }
.pw-header__inner {
  min-height: var(--pw-header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.pw-logo { display: inline-flex; align-items: center; gap: 10px; flex: 0 0 auto; font-weight: 900; letter-spacing: -.045em; font-size: 23px; }
.pw-logo__mark {
  width: 42px; height: 42px; border-radius: 14px;
  background: linear-gradient(135deg, #ffe477, var(--pw-primary) 62%, #a67c00);
  display: grid; place-items: center; color: #0b0b0a; box-shadow: 0 14px 34px rgba(255,210,46,.24);
}
.pw-logo__mark svg { width: 25px; height: 25px; }
.pw-logo__text span { color: var(--pw-primary); }

.pw-nav { display: flex; align-items: center; gap: 6px; }
.pw-menu,
.pw-menu ul { list-style: none; padding: 0; margin: 0; }
.pw-menu { display: flex; align-items: center; gap: 4px; }
.pw-menu > li { position: relative; }
.pw-menu a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 13px;
  border-radius: 999px;
  color: rgba(255,247,223,.82);
  font-weight: 750;
  font-size: 14px;
}
.pw-menu a:hover,
.pw-menu .current-menu-item > a,
.pw-menu .current_page_item > a { background: rgba(255,210,46,.10); color: var(--pw-primary); }
.pw-menu .menu-item-has-children > a::after,
.pw-menu .pw-has-submenu > a::after { content: ""; width: 7px; height: 7px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg) translateY(-2px); opacity: .75; }
.pw-menu ul.sub-menu,
.pw-submenu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  width: 260px;
  padding: 10px;
  border-radius: 20px;
  border: 1px solid var(--pw-line);
  background: rgba(17,17,17,.96);
  box-shadow: var(--pw-shadow);
  display: grid;
  gap: 2px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}
.pw-menu li:hover > ul.sub-menu,
.pw-menu li:focus-within > ul.sub-menu,
.pw-menu .pw-has-submenu:hover > .pw-submenu,
.pw-menu .pw-has-submenu:focus-within > .pw-submenu,
.pw-menu .pw-submenu.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
.pw-menu ul a,
.pw-submenu a { width: 100%; border-radius: 14px; justify-content: flex-start; }
.pw-header__actions { display: flex; align-items: center; gap: 10px; flex: 0 0 auto; }
.pw-burger {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--pw-line);
  background: var(--pw-surface);
  border-radius: 16px;
  position: relative;
}
.pw-burger span,
.pw-burger::before,
.pw-burger::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  height: 2px;
  background: var(--pw-text);
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease, top .2s ease;
}
.pw-burger span { top: 22px; }
.pw-burger::before { top: 15px; }
.pw-burger::after { top: 29px; }
.pw-burger.is-active span { opacity: 0; }
.pw-burger.is-active::before { top: 22px; transform: rotate(45deg); }
.pw-burger.is-active::after { top: 22px; transform: rotate(-45deg); }

.pw-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 12px 19px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 850;
  line-height: 1.15;
  letter-spacing: -.01em;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}
.pw-btn:hover { transform: translateY(-2px); }

.pw-btn--primary:hover { color: #0b0b0a; box-shadow: 0 22px 56px rgba(255,210,46,.30); }
.pw-btn--ghost { background: rgba(17,17,17,.9); border-color: rgba(255,210,46,.18); color: var(--pw-text); box-shadow: 0 10px 28px rgba(0,0,0,.26); }
.pw-btn--ghost:hover { border-color: rgba(255,210,46,.45); background: rgba(255,210,46,.10); }
.pw-btn--dark { background: #050505; color: var(--pw-primary); border-color: rgba(255,210,46,.28); }
.pw-btn--dark:hover { color: var(--pw-primary); box-shadow: 0 20px 52px rgba(255,210,46,.13); }
.pw-btn--full { width: 100%; }
.pw-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  color: var(--pw-blue-dark);
  background: rgba(255,210,46,.10);
  border: 1px solid rgba(255,210,46,.20);
  font-weight: 800;
  font-size: 13px;
}
.pw-kicker { margin: 0 0 12px; color: var(--pw-primary); font-weight: 900; text-transform: uppercase; letter-spacing: .12em; font-size: 12px; }
.pw-section { padding: 82px 0; }
.pw-section--tight { padding: 58px 0; }
.pw-section--white { background: rgba(12,12,12,.72); }
.pw-section--blue { background: linear-gradient(180deg, rgba(255,210,46,.06), rgba(8,8,8,.92)); }
.pw-section__head { max-width: 760px; margin: 0 auto 34px; text-align: center; }
.pw-section__head--left { margin-left: 0; text-align: left; }
.pw-section__head h1,
.pw-section__head h2 { margin: 0 0 13px; letter-spacing: -.045em; line-height: 1.08; }
.pw-section__head h1 { font-size: clamp(38px, 6vw, 76px); }
.pw-section__head h2 { font-size: clamp(30px, 4.5vw, 52px); }
.pw-section__head p { margin: 0; color: var(--pw-muted); font-size: 18px; }

.pw-hero { padding: 64px 0 72px; position: relative; }
.pw-hero::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 520px;
  z-index: -1;
  background:
    radial-gradient(circle at 76% 20%, rgba(255,210,46,.18), transparent 24rem),
    radial-gradient(circle at 22% 10%, rgba(255,184,0,.10), transparent 24rem);
}
.pw-hero__grid { display: grid; grid-template-columns: minmax(0, 1.04fr) minmax(360px, .96fr); gap: 48px; align-items: center; }
.pw-hero h1 { margin: 18px 0 18px; font-size: clamp(42px, 6.7vw, 82px); line-height: .96; letter-spacing: -.062em; }
.pw-hero h1 span { color: var(--pw-primary); }
.pw-hero__lead { margin: 0 0 28px; max-width: 650px; color: var(--pw-muted); font-size: clamp(18px, 2vw, 22px); }
.pw-hero__actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }
.pw-hero__stats { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; max-width: 660px; }
.pw-stat { padding: 16px; border: 1px solid var(--pw-line); border-radius: 20px; background: rgba(17,17,17,.86); box-shadow: 0 14px 40px rgba(0,0,0,.30); }
.pw-stat strong { display: block; font-size: 23px; line-height: 1.1; letter-spacing: -.04em; }
.pw-stat span { display: block; margin-top: 5px; color: var(--pw-muted); font-size: 13px; line-height: 1.35; }

.pw-visual {
  min-height: 520px;
  border-radius: 44px;
  background:
    linear-gradient(145deg, rgba(19,19,18,.96), rgba(9,9,9,.98)),
    radial-gradient(circle at 72% 18%, rgba(255,210,46,.24), transparent 12rem);
  border: 1px solid rgba(255,210,46,.17);
  box-shadow: var(--pw-shadow-strong);
  position: relative;
  overflow: hidden;
}
.pw-visual::before,
.pw-visual::after { content: ""; position: absolute; border-radius: 50%; }
.pw-visual::before { width: 420px; height: 420px; left: 50%; top: 42%; transform: translate(-50%, -50%); background: radial-gradient(circle, rgba(255,210,46,.10), rgba(255,210,46,.025) 42%, transparent 43%), repeating-radial-gradient(circle, rgba(255,210,46,.16) 0 1px, transparent 1px 42px); }
.pw-visual::after { width: 280px; height: 280px; right: -90px; bottom: -80px; background: rgba(255,210,46,.12); }
.pw-phone {
  position: absolute;
  left: 50%; top: 50%;
  width: 245px; height: 435px;
  transform: translate(-50%, -50%) rotate(-7deg);
  border-radius: 38px;
  background: #030303;
  box-shadow: 0 34px 88px rgba(0,0,0,.65), 0 0 0 1px rgba(255,210,46,.14);
  padding: 13px;
}
.pw-phone__screen {
  height: 100%;
  border-radius: 29px;
  overflow: hidden;
  background:
    radial-gradient(circle at 52% 38%, rgba(255,210,46,.15), transparent 7.4rem),
    linear-gradient(180deg, #131313, #050505);
  position: relative;
  padding: 22px;
}
.pw-phone__screen::before {
  content: "";
  position: absolute;
  left: 50%; top: 18px;
  width: 70px; height: 7px;
  background: rgba(255,247,223,.18);
  border-radius: 999px;
  transform: translateX(-50%);
}
.pw-connect-card { position: absolute; left: 22px; right: 22px; bottom: 22px; padding: 18px; border-radius: 22px; background: rgba(15,15,14,.92); border: 1px solid rgba(255,210,46,.14); box-shadow: 0 22px 56px rgba(0,0,0,.44); }
.pw-toggle { width: 96px; height: 96px; border-radius: 50%; margin: 42px auto 18px; display: grid; place-items: center; background: linear-gradient(135deg, #ffe477, var(--pw-primary)); color: #0b0b0a; box-shadow: 0 0 0 10px rgba(255,210,46,.08), 0 22px 55px rgba(255,210,46,.32); }
.pw-toggle svg { width: 42px; height: 42px; }
.pw-screen-line { height: 10px; border-radius: 999px; background: rgba(255,210,46,.16); margin: 9px 0; }
.pw-screen-line:nth-child(2) { width: 64%; }
.pw-screen-line:nth-child(3) { width: 86%; }
.pw-server-dot { position: absolute; width: 13px; height: 13px; border-radius: 50%; background: var(--pw-primary); box-shadow: 0 0 0 8px rgba(255,210,46,.12), 0 0 25px rgba(255,210,46,.75); }
.pw-server-dot--1 { left: 17%; top: 24%; }
.pw-server-dot--2 { left: 68%; top: 31%; }
.pw-server-dot--3 { left: 73%; top: 64%; }
.pw-server-dot--4 { left: 28%; top: 71%; }
.pw-floating { position: absolute; z-index: 3; padding: 14px 16px; border-radius: 18px; background: rgba(18,18,17,.92); border: 1px solid rgba(255,210,46,.16); box-shadow: var(--pw-shadow); font-weight: 850; color: var(--pw-blue-dark); }
.pw-floating small { display: block; color: var(--pw-muted); font-weight: 700; }
.pw-floating--one { top: 54px; left: 42px; }
.pw-floating--two { right: 36px; top: 132px; }
.pw-floating--three { left: 40px; bottom: 70px; }

.pw-grid { display: grid; gap: 18px; }
.pw-grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.pw-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.pw-grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.pw-card {
  background: rgba(17,17,17,.92);
  border: 1px solid var(--pw-line);
  border-radius: var(--pw-radius);
  padding: 26px;
  box-shadow: 0 18px 50px rgba(0,0,0,.34);
}
.pw-card--featured { border-color: rgba(255,210,46,.42); box-shadow: var(--pw-shadow); position: relative; overflow: hidden; }
.pw-card--featured::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 5px; background: linear-gradient(90deg, #ffe477, var(--pw-primary)); }
.pw-card__icon { width: 50px; height: 50px; border-radius: 16px; display: grid; place-items: center; margin-bottom: 16px; color: #0b0b0a; background: linear-gradient(135deg, #ffe477, var(--pw-primary)); box-shadow: 0 14px 30px rgba(255,210,46,.18); }
.pw-card__icon svg { width: 25px; height: 25px; }
.pw-card h2,
.pw-card h3 { margin: 0 0 10px; line-height: 1.18; letter-spacing: -.032em; }
.pw-card h3 { font-size: 22px; }
.pw-card p { color: var(--pw-muted); margin: 0 0 14px; }
.pw-card p:last-child { margin-bottom: 0; }
.pw-list { margin: 16px 0 0; padding: 0; list-style: none; display: grid; gap: 10px; }
.pw-list li { position: relative; padding-left: 28px; color: rgba(255,247,223,.80); }
.pw-list li::before { content: ""; position: absolute; left: 0; top: .55em; width: 14px; height: 14px; border-radius: 50%; background: linear-gradient(135deg, #ffe477, var(--pw-primary)); box-shadow: 0 0 0 5px rgba(255,210,46,.10); }
.pw-list--plain li { padding-left: 0; }
.pw-list--plain li::before { display: none; }

.pw-process { counter-reset: step; }
.pw-step { position: relative; padding-left: 72px; }
.pw-step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute; left: 0; top: 0;
  width: 48px; height: 48px; border-radius: 16px;
  display: grid; place-items: center;
  color: #0b0b0a; font-weight: 900;
  background: linear-gradient(135deg, #ffe477, var(--pw-primary));
  box-shadow: 0 12px 30px rgba(255,210,46,.18);
}

.pw-tabs { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-bottom: 24px; }
.pw-tab { border: 1px solid var(--pw-line); background: rgba(17,17,17,.92); border-radius: 999px; padding: 12px 18px; font-weight: 850; color: var(--pw-muted); }
.pw-tab.is-active { color: #0b0b0a; border-color: var(--pw-primary); background: var(--pw-primary); }
.pw-tab-panel { display: none; }
.pw-tab-panel.is-active { display: block; }

.pw-price { display: flex; align-items: flex-end; gap: 8px; margin: 18px 0 12px; }
.pw-price strong { font-size: 46px; line-height: .94; letter-spacing: -.06em; }
.pw-price span { color: var(--pw-muted); font-weight: 800; padding-bottom: 4px; }
.pw-badge { display: inline-flex; align-items: center; padding: 6px 10px; border-radius: 999px; color: #0b0b0a; background: var(--pw-primary); font-weight: 900; font-size: 12px; }
.pw-badge--blue { color: var(--pw-primary); background: rgba(255,210,46,.10); }
.pw-badge--orange { color: #0b0b0a; background: #ffe477; }

.pw-pricing-table { width: 100%; border-collapse: collapse; overflow: hidden; border-radius: 22px; background: rgba(17,17,17,.94); box-shadow: var(--pw-shadow); border: 1px solid var(--pw-line); }
.pw-pricing-table th,
.pw-pricing-table td { padding: 18px; border-bottom: 1px solid var(--pw-line); text-align: left; vertical-align: top; }
.pw-pricing-table th { background: #0d0d0c; color: var(--pw-primary); }
.pw-pricing-table tr:last-child td { border-bottom: 0; }
.pw-pricing-table del { color: #8b93a8; }

.pw-page-hero { padding: 62px 0 38px; }
.pw-page-hero__box {
  position: relative;
  overflow: hidden;
  border-radius: 38px;
  background:
    radial-gradient(circle at 84% 16%, rgba(255,210,46,.22), transparent 18rem),
    linear-gradient(135deg, #0b0b0a, #14130f 62%, #2b2104);
  color: #fff;
  padding: clamp(34px, 6vw, 72px);
  box-shadow: var(--pw-shadow-strong);
}
.pw-page-hero__box::after { content: ""; position: absolute; width: 420px; height: 420px; right: -120px; top: -160px; border-radius: 50%; background: rgba(255,210,46,.11); }
.pw-page-hero h1 { max-width: 850px; margin: 0 0 14px; font-size: clamp(38px, 6vw, 68px); line-height: 1.02; letter-spacing: -.055em; }
.pw-page-hero p { max-width: 750px; margin: 0; color: rgba(255,247,223,.78); font-size: 19px; }
.pw-breadcrumbs { margin-bottom: 16px; color: rgba(255,247,223,.72); font-weight: 750; font-size: 14px; }
.pw-breadcrumbs a { color: #fff; }

.pw-cta {
  border-radius: 34px;
  padding: clamp(30px, 5vw, 56px);
  color: #fff;
  background:
    radial-gradient(circle at 85% 14%, rgba(255,210,46,.24), transparent 18rem),
    linear-gradient(135deg, #070707, #15140f 60%, #2a2105);
  box-shadow: var(--pw-shadow-strong);
  overflow: hidden;
  position: relative;
}
.pw-cta h2 { max-width: 760px; margin: 0 0 12px; font-size: clamp(30px, 4.6vw, 52px); line-height: 1.05; letter-spacing: -.045em; }
.pw-cta p { max-width: 680px; margin: 0 0 24px; color: rgba(255,247,223,.74); font-size: 18px; }
.pw-cta__actions { display: flex; gap: 12px; flex-wrap: wrap; }

.pw-platform { display: flex; gap: 16px; align-items: flex-start; }
.pw-platform__mark { width: 58px; height: 58px; border-radius: 18px; background: rgba(255,210,46,.10); display: grid; place-items: center; color: var(--pw-primary); font-size: 24px; flex: 0 0 auto; }
.pw-platform__body { min-width: 0; }
.pw-platform__body h3 { margin: 0 0 6px; }

.pw-faq { display: grid; gap: 12px; max-width: 900px; margin: 0 auto; }
.pw-faq__item { border: 1px solid var(--pw-line); border-radius: 20px; background: rgba(17,17,17,.92); overflow: hidden; box-shadow: 0 14px 36px rgba(0,0,0,.30); }
.pw-faq__question { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 19px 22px; border: 0; background: transparent; color: var(--pw-text); text-align: left; font-weight: 900; }
.pw-faq__question::after { content: "+"; flex: 0 0 auto; width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center; background: rgba(255,210,46,.10); color: var(--pw-primary); font-size: 21px; }
.pw-faq__item.is-open .pw-faq__question::after { content: "–"; }
.pw-faq__answer { display: none; padding: 0 22px 20px; color: var(--pw-muted); }
.pw-faq__item.is-open .pw-faq__answer { display: block; }
.pw-faq__answer p { margin: 0 0 10px; }
.pw-faq__answer p:last-child { margin-bottom: 0; }

.pw-note { border: 1px solid rgba(255,178,61,.36); background: rgba(255,210,46,.10); border-radius: 22px; padding: 22px; color: #ffe9a3; }
.pw-note--blue { border-color: rgba(255,210,46,.24); background: rgba(255,210,46,.08); color: var(--pw-primary); }
.pw-form { display: grid; gap: 14px; }
.pw-form label { font-weight: 850; }
.pw-input { width: 100%; min-height: 52px; border: 1px solid var(--pw-line); border-radius: 16px; background: rgba(7,7,7,.82); color: var(--pw-text); padding: 13px 16px; outline: 0; transition: border-color .18s ease, box-shadow .18s ease; }
.pw-input:focus { border-color: rgba(255,210,46,.7); box-shadow: 0 0 0 4px rgba(255,210,46,.12); }
textarea.pw-input { min-height: 126px; resize: vertical; }

.pw-footer { background: #050505; color: rgba(255,247,223,.82); padding: 58px 0 28px; }
.pw-footer a { color: rgba(255,247,223,.88); }
.pw-footer a:hover { color: var(--pw-primary); }
.pw-footer__grid { display: grid; grid-template-columns: 1.25fr repeat(3, minmax(0, .7fr)); gap: 30px; align-items: start; }
.pw-footer h3 { margin: 0 0 13px; color: var(--pw-text); }
.pw-footer p { margin: 0 0 10px; color: rgba(255,247,223,.62); }
.pw-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; }
.pw-footer__bottom { margin-top: 34px; padding-top: 22px; border-top: 1px solid rgba(255,210,46,.13); display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; font-size: 14px; color: rgba(255,247,223,.55); }

.pw-cookie { position: fixed; left: 18px; right: 18px; bottom: 18px; max-width: 620px; margin: 0 auto; z-index: 950; padding: 16px; background: rgba(17,17,17,.96); border: 1px solid var(--pw-line); border-radius: 20px; box-shadow: var(--pw-shadow-strong); display: none; gap: 16px; align-items: center; justify-content: space-between; }
.pw-cookie.is-visible { display: flex; }
.pw-cookie p { margin: 0; color: var(--pw-muted); font-size: 14px; }

.pw-wp-content { padding: 58px 0 82px; }
.pw-wp-content .entry-title { font-size: clamp(34px, 5vw, 58px); line-height: 1.05; letter-spacing: -.04em; margin: 0 0 18px; }
.pw-wp-content .entry-content > *:first-child { margin-top: 0; }
.pw-wp-content .entry-content a { color: var(--pw-primary); font-weight: 800; }
.pw-btn--primary { color: #0b0b0a; background: linear-gradient(135deg, #ffe477, var(--pw-primary)); box-shadow: 0 18px 42px rgba(255,210,46,.24); }
.entry-content a.pw-btn--primary { color: #0b0b0a;}
.pw-404 { min-height: 62vh; display: grid; place-items: center; text-align: center; padding: 70px 0; }
.pw-404 h1 { margin: 0 0 12px; font-size: clamp(60px, 14vw, 150px); letter-spacing: -.08em; line-height: .86; color: var(--pw-primary); }
.pw-404 p { max-width: 620px; margin: 0 auto 22px; color: var(--pw-muted); font-size: 18px; }


/* Premium Web dark/yellow refinement */
.pw-main,
.pw-section,
.pw-wp-content { color: var(--pw-text); }
.pw-card,
.pw-faq__item,
.pw-price,
.pw-note,
.pw-pricing-table,
.pw-input,
.pw-tab,
.pw-cookie { color: var(--pw-text); }
.pw-card:hover,
.pw-faq__item:hover,
.pw-stat:hover { border-color: rgba(255,210,46,.28); box-shadow: var(--pw-glow); }
.pw-hero h1 span,
.pw-section__head h1 span,
.pw-section__head h2 span { color: var(--pw-primary); }
.pw-site-header::after { content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 1px; background: linear-gradient(90deg, transparent, rgba(255,210,46,.38), transparent); pointer-events: none; }
.pw-visual { box-shadow: 0 30px 90px rgba(0,0,0,.55), inset 0 1px 0 rgba(255,255,255,.04); }
.pw-phone::before { content: ""; position: absolute; left: 50%; top: 21px; width: 74px; height: 8px; border-radius: 999px; transform: translateX(-50%); background: #050505; z-index: 3; }
.pw-phone__screen::after { content: ""; position: absolute; inset: 62px 18px 132px; opacity: .48; background: radial-gradient(circle at 18% 38%, var(--pw-primary) 0 4px, transparent 5px), radial-gradient(circle at 42% 25%, var(--pw-primary) 0 4px, transparent 5px), radial-gradient(circle at 67% 41%, var(--pw-primary) 0 4px, transparent 5px), radial-gradient(circle at 78% 62%, var(--pw-primary) 0 4px, transparent 5px), linear-gradient(135deg, transparent 0 16%, rgba(255,210,46,.28) 16% 17%, transparent 17% 100%); filter: drop-shadow(0 0 8px rgba(255,210,46,.7)); pointer-events: none; }
.pw-logo__text { color: var(--pw-text); }
.pw-price strong { color: var(--pw-primary); }
.pw-input::placeholder { color: rgba(255,247,223,.46); }
.pw-page-hero__box,
.pw-cta { border: 1px solid rgba(255,210,46,.16); }

@media (max-width: 1080px) {
  .pw-header__actions .pw-btn {}
  .pw-hero__grid { grid-template-columns: 1fr; }
	.visual { display: none;}
  .pw-visual { min-height: 470px; max-width: 620px; margin: 0 auto; width: 100%; }
  .pw-grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
  :root { --pw-header-height: 68px; }
  .admin-bar .pw-site-header { top: 46px; }
  .pw-burger { display: inline-flex; }
  .pw-nav {
    position: fixed;
    top: calc(var(--pw-header-height) + 38px);
    left: 18px;
    right: 18px;
    max-height: calc(100vh - var(--pw-header-height) - 70px);
    overflow: auto;
    padding: 16px;
    border-radius: 24px;
    border: 1px solid var(--pw-line);
    background: var(--pw-surface);
    box-shadow: var(--pw-shadow-strong);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
  }
  .pw-nav.is-open { transform: translateY(0); opacity: 1; visibility: visible; }
  .pw-menu { display: grid; width: 100%; gap: 6px; }
  .pw-menu a { width: 100%; justify-content: space-between; border-radius: 15px; padding: 13px 14px; }
  .pw-menu ul.sub-menu,
  .pw-submenu { position: static; width: auto; box-shadow: none; border: 0; background: var(--pw-surface-2); margin: 4px 0 0 12px; padding: 6px; display: none; opacity: 1; visibility: visible; transform: none; }
  .pw-menu li.is-open > ul.sub-menu,
  .pw-menu .pw-submenu.is-open { display: grid; }
  .pw-menu li:hover > ul.sub-menu { display: none; }
  .pw-menu li.is-open:hover > ul.sub-menu { display: grid; }
  .pw-grid--3,
  .pw-grid--2 { grid-template-columns: 1fr; }
  .pw-section { padding: 64px 0; }
  .pw-footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
  .pw-container { width: min(100% - 26px, var(--pw-container)); }
  .pw-logo__text { font-size: 20px; }
  .pw-hero { padding: 42px 0 56px; }
  .pw-hero__stats { grid-template-columns: 1fr; }
  .pw-hero__actions .pw-btn,
  .pw-cta__actions .pw-btn { width: 100%; }
  .pw-grid--4 { grid-template-columns: 1fr; }
  .pw-card { padding: 22px; }
  .pw-visual { min-height: 390px; border-radius: 30px; }
  .pw-phone { width: 200px; height: 355px; border-radius: 31px; }
  .pw-floating { display: none; }
  .pw-page-hero__box { border-radius: 28px; }
  .pw-footer__grid { grid-template-columns: 1fr; }
  .pw-footer__bottom { display: grid; }
  .pw-cookie { align-items: flex-start; flex-direction: column; }
  .pw-cookie .pw-btn { width: 100%; }
  .pw-pricing-table,
  .pw-pricing-table tbody,
  .pw-pricing-table tr,
  .pw-pricing-table td { display: block; width: 100%; }
  .pw-pricing-table thead { display: none; }
  .pw-pricing-table tr { border-bottom: 1px solid var(--pw-line); padding: 10px 0; }
  .pw-pricing-table td { border: 0; padding: 10px 16px; }
  .pw-pricing-table td::before { content: attr(data-label); display: block; margin-bottom: 5px; color: var(--pw-muted); font-weight: 850; font-size: 12px; text-transform: uppercase; letter-spacing: .08em; }
}

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

@media (max-width: 470px) {
	header span.pw-logo__text {display: none;}
}
.visual { margin: 0 auto;}
.pw-card .pw-btn {
	margin-top: 20px;
}