:root {
  --bg: #0A1428;
  --bg-2: #0F1E3D;
  --bg-3: #122754;
  --surface: rgba(255, 255, 255, 0.04);
  --surface-2: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.16);
  --text: #F5F8FF;
  --muted: rgba(245, 248, 255, 0.65);
  --muted-2: rgba(245, 248, 255, 0.45);
  --accent: #2F80FF;
  --accent-2: #4DA3FF;
  --accent-soft: rgba(77, 163, 255, 0.12);
  --danger: #FF5C8A;
  --radius: 20px;
  --radius-sm: 12px;
  --shadow: 0 20px 60px rgba(5, 12, 30, 0.45);
  --max: 1200px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Manrope', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text);
  background:
    radial-gradient(1200px 700px at 10% -10%, rgba(47, 128, 255, 0.18), transparent 60%),
    radial-gradient(900px 600px at 110% 10%, rgba(120, 72, 255, 0.14), transparent 55%),
    radial-gradient(1000px 800px at 50% 120%, rgba(77, 163, 255, 0.10), transparent 60%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  background-attachment: fixed;
  min-height: 100vh;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: var(--accent-2); text-decoration: none; transition: color .2s ease; }
a:hover { color: #8FC2FF; }

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

/* ===================== HEADER ===================== */
.pw-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 16px 0;
  transition: background .25s ease, backdrop-filter .25s ease, border-color .25s ease;
  border-bottom: 1px solid transparent;
}
.pw-header.is-scrolled {
  background: rgba(10, 20, 40, 0.75);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--border);
}
.pw-header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
}
.pw-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.01em;
}
.pw-logo:hover { color: var(--text); }
.pw-logo-mark {
  width: 28px;
  height: 28px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  box-shadow: 0 6px 20px rgba(47, 128, 255, 0.45);
  position: relative;
}
.pw-logo-mark::after {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 6px;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.7), transparent 60%);
}
.pw-nav {
  display: flex;
  gap: 6px;
  margin-left: auto;
}
.pw-nav a {
  color: var(--muted);
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 15px;
  transition: color .2s ease, background .2s ease;
}
.pw-nav a:hover {
  color: var(--text);
  background: var(--surface);
}
.pw-burger {
  display: none;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  width: 42px;
  height: 42px;
  padding: 10px;
  cursor: pointer;
  color: var(--text);
}
.pw-burger span {
  display: block;
  height: 2px;
  background: var(--text);
  margin: 4px 0;
  border-radius: 2px;
}

/* ===================== BUTTONS ===================== */
.pw-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  font-family: inherit;
  text-align: center;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
  white-space: nowrap;
  line-height: 1;
}
.pw-btn-sm { padding: 10px 18px; font-size: 14px; }
.pw-btn-lg { padding: 16px 28px; font-size: 16px; }
.pw-btn-block { width: 100%; }
.pw-btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  color: #fff;
  box-shadow: 0 12px 30px rgba(47, 128, 255, 0.35);
}
.pw-btn-primary:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(47, 128, 255, 0.45);
}
.pw-btn-ghost {
  background: var(--surface);
  color: var(--text);
  border-color: var(--border-strong);
}
.pw-btn-ghost:hover {
  color: var(--text);
  background: var(--surface-2);
  border-color: var(--accent-2);
}

/* ===================== HERO ===================== */
.pw-hero {
  position: relative;
  padding: 48px 0 96px;
  overflow: hidden;
}
.pw-hero-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(600px 400px at 80% 20%, rgba(47, 128, 255, 0.18), transparent 60%),
    radial-gradient(500px 300px at 20% 80%, rgba(77, 163, 255, 0.12), transparent 60%);
}
.pw-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
}
.pw-badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255,92,138,0.2), rgba(255,92,138,0.08));
  border: 1px solid rgba(255, 92, 138, 0.4);
  color: #FFB8CC;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.pw-hero-title {
  margin: 18px 0 16px;
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  font-weight: 800;
  background: linear-gradient(180deg, #fff 0%, #B9CEF0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.pw-hero-lead {
  margin: 0 0 22px;
  font-size: 18px;
  color: var(--muted);
  max-width: 540px;
}
.pw-hero-usp {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: grid;
  gap: 10px;
}
.pw-hero-usp li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
  font-size: 15px;
}
.pw-hero-usp li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent-2);
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 800;
}
.pw-price {
  display: inline-flex;
  align-items: baseline;
  gap: 14px;
  padding: 14px 22px;
  border-radius: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  margin-bottom: 22px;
}
.pw-price-old {
  color: var(--muted-2);
  text-decoration: line-through;
  font-size: 18px;
  font-weight: 500;
}
.pw-price-new {
  color: #fff;
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.pw-hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.pw-hero-visual {
  position: relative;
}
.pw-hero-card {
  position: relative;
  border-radius: 28px;
  padding: 20px;
  background: linear-gradient(155deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border: 1px solid var(--border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.pw-hero-card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: conic-gradient(from 120deg, transparent 0 40%, rgba(77,163,255,0.25) 50%, transparent 60% 100%);
  animation: pw-spin 14s linear infinite;
  z-index: 0;
}
.pw-hero-card::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(160deg, #0F1E3D 0%, #0A1428 100%);
  z-index: 0;
}
.pw-hero-card img {
  position: relative;
  z-index: 1;
  border-radius: 20px;
  aspect-ratio: 1/1;
  object-fit: cover;
  width: 100%;
}
@keyframes pw-spin { to { transform: rotate(360deg); } }
.pw-hero-badge {
  position: absolute;
  left: -18px;
  bottom: 24px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  padding: 14px 18px;
  border-radius: 16px;
  box-shadow: 0 14px 30px rgba(47, 128, 255, 0.4);
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 13px;
}
.pw-hero-badge strong { font-size: 22px; line-height: 1; }

/* ===================== SECTION ===================== */
.pw-section {
  padding: 88px 0;
  position: relative;
}
.pw-section-head {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
}
.pw-eyebrow {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  border: 1px solid rgba(77, 163, 255, 0.3);
  color: var(--accent-2);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.pw-section-title {
  margin: 0 0 14px;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.pw-section-lead {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}
.pw-section-dark {
  background: linear-gradient(180deg, rgba(10, 20, 40, 0.6) 0%, rgba(10, 20, 40, 0) 100%);
}

/* ===================== SLIDER ===================== */
.pw-slider {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  padding: 0 0 48px;
}
.pw-slider-track {
  display: flex;
  transition: transform .6s cubic-bezier(.2,.8,.2,1);
  will-change: transform;
}
.pw-slide {
  flex: 0 0 33.333%;
  padding: 0 12px;
}
.pw-slide > img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: var(--surface);
}
.pw-slide-caption {
  padding: 18px 6px 0;
}
.pw-slide-caption h3 {
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 700;
}
.pw-slide-caption p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}
.pw-slider-arrow {
  position: absolute;
  top: calc(50% - 40px);
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(10, 20, 40, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-strong);
  color: var(--text);
  font-size: 26px;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background .2s ease, transform .2s ease;
  z-index: 3;
  line-height: 1;
}
.pw-slider-arrow:hover { background: var(--accent); border-color: var(--accent); }
.pw-slider-prev { left: 8px; }
.pw-slider-next { right: 8px; }

.pw-slider-dots,
.pw-reviews-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 24px;
}
.pw-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--border-strong);
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: background .2s ease, width .2s ease;
}
.pw-dot.is-active {
  background: var(--accent-2);
  width: 28px;
}

/* ===================== FEATURES ===================== */
.pw-features {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 32px;
}
.pw-feature-hero {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.pw-feature-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.85;
}
.pw-feature-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,20,40,0) 30%, rgba(10,20,40,0.92) 100%);
  z-index: 1;
}
.pw-feature-hero-body {
  position: relative;
  z-index: 2;
  padding: 32px;
}
.pw-feature-hero h3 {
  margin: 0 0 10px;
  font-size: 26px;
  font-weight: 800;
}
.pw-feature-hero p {
  margin: 0;
  color: var(--muted);
}
.pw-feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.pw-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 22px;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.pw-card:hover {
  transform: translateY(-4px);
  background: var(--surface-2);
  border-color: var(--accent-2);
}
.pw-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--accent-soft);
  color: var(--accent-2);
  font-size: 20px;
  margin-bottom: 14px;
}
.pw-card h4 { margin: 0 0 6px; font-size: 17px; font-weight: 700; }
.pw-card p { margin: 0; color: var(--muted); font-size: 14px; }

/* ===================== PRICING ===================== */
.pw-pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}
.pw-price-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.pw-price-card:hover { transform: translateY(-6px); border-color: var(--accent-2); }
.pw-price-card header h3 { margin: 0 0 4px; font-size: 22px; font-weight: 800; }
.pw-price-card header p { margin: 0; color: var(--muted); font-size: 14px; }
.pw-price-card-value {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 14px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.pw-price-card-value .pw-price-old { font-size: 16px; }
.pw-price-card-value .pw-price-new {
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.pw-price-card-value small { font-size: 16px; font-weight: 600; color: var(--muted); }
.pw-price-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
  flex: 1;
}
.pw-price-card li {
  position: relative;
  padding-left: 26px;
  color: var(--muted);
  font-size: 14px;
}
.pw-price-card li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 0;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent-2);
  display: grid; place-items: center;
  font-size: 11px; font-weight: 800;
}
.pw-price-card-featured {
  background: linear-gradient(160deg, rgba(47,128,255,0.18), rgba(47,128,255,0.04));
  border-color: rgba(77,163,255,0.4);
  box-shadow: 0 30px 60px rgba(47, 128, 255, 0.18);
  transform: translateY(-8px);
}
.pw-price-card-featured:hover { transform: translateY(-12px); }
.pw-ribbon {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: 0 10px 20px rgba(47,128,255,0.4);
}

/* ===================== REVIEWS ===================== */
.pw-reviews {
  overflow: hidden;
  padding-bottom: 8px;
}
.pw-reviews-track {
  display: flex;
  transition: transform .6s cubic-bezier(.2,.8,.2,1);
  will-change: transform;
}
.pw-review {
  position: relative;
  box-sizing: border-box;
  padding: 0 10px;
  display: flex;
}
.pw-review::before {
  content: "";
  position: absolute;
  inset: 0 10px;
  border-radius: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  z-index: 0;
  transition: border-color .2s ease, background .2s ease;
}
.pw-review:hover::before { border-color: var(--accent-2); background: var(--surface-2); }
.pw-review > * {
  position: relative;
  z-index: 1;
  box-sizing: border-box;
}
.pw-review-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 24px 24px 0;
  width: 100%;
}
.pw-review .pw-stars {
  color: #FFC857;
  font-size: 16px;
  letter-spacing: 2px;
  padding: 10px 24px 0;
  width: 100%;
}
.pw-review > p {
  color: var(--muted);
  font-size: 15px;
  margin: 10px 0 0;
  padding: 0 24px 24px;
  width: 100%;
}
.pw-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--av, var(--accent));
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 14px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.25);
  flex: 0 0 46px;
}
.pw-review-head h4 { margin: 0; font-size: 16px; font-weight: 700; }
.pw-review-head span { color: var(--muted-2); font-size: 13px; display: block; }

.pw-reviews-track > .pw-review {
  flex-direction: column;
}

/* ===================== GALLERY ===================== */
.pw-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 14px;
}
.pw-gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: var(--surface);
}
.pw-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.pw-gallery-item:hover img { transform: scale(1.06); }
.pw-gallery-xl {
  grid-column: span 2;
  grid-row: span 2;
}

/* ===================== CTA BAND ===================== */
.pw-cta-band {
  padding: 64px 0;
}
.pw-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 40px 48px;
  border-radius: 28px;
  background:
    radial-gradient(800px 300px at 0% 0%, rgba(77,163,255,0.25), transparent 60%),
    linear-gradient(135deg, rgba(47,128,255,0.2), rgba(47,128,255,0.05));
  border: 1px solid rgba(77,163,255,0.35);
  box-shadow: 0 30px 80px rgba(47,128,255,0.15);
}
.pw-cta-inner h2 {
  margin: 0 0 8px;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}
.pw-cta-inner p { margin: 0; color: var(--muted); }

/* ===================== FOOTER ===================== */
.pw-footer {
  padding: 64px 0 32px;
  border-top: 1px solid var(--border);
  background: rgba(8, 16, 34, 0.6);
  margin-top: 40px;
}
.pw-disclaimer {
  color: var(--muted-2);
  font-size: 13px;
  max-width: 900px;
  margin: 0 auto 40px;
  text-align: center;
  line-height: 1.6;
}
.pw-footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 40px;
}
.pw-footer-grid h5 {
  margin: 0 0 14px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted-2);
}
.pw-footer-grid p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.9;
}
.pw-footer-grid a { color: var(--muted); }
.pw-footer-grid a:hover { color: var(--accent-2); }
.pw-footer-about {
  color: var(--muted);
  font-size: 14px;
  max-width: 320px;
}
.pw-footer-bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  color: var(--muted-2);
  font-size: 13px;
  text-align: center;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1023px) {
  .pw-hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .pw-hero-visual { max-width: 520px; margin: 0 auto; }
  .pw-features { grid-template-columns: 1fr; }
  .pw-feature-hero { min-height: 320px; }
  .pw-pricing { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .pw-price-card-featured { transform: none; }
  .pw-price-card-featured:hover { transform: translateY(-4px); }
  .pw-gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .pw-gallery-xl { grid-column: span 2; grid-row: span 1; }
  .pw-cta-inner { flex-direction: column; text-align: center; padding: 32px 24px; }
}

@media (max-width: 767px) {
  .pw-section { padding: 64px 0; }
  .pw-section-head { margin-bottom: 36px; }
  .pw-hero { padding: 24px 0 64px; }
  .pw-burger { display: inline-flex; align-items: center; justify-content: center; flex-direction: column; }
  .pw-nav {
    position: fixed;
    inset: 64px 0 auto 0;
    background: rgba(10, 20, 40, 0.96);
    backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 16px;
    border-bottom: 1px solid var(--border);
    transform: translateY(-110%);
    transition: transform .3s ease;
    margin: 0;
  }
  .pw-nav.is-open { transform: translateY(0); }
  .pw-nav a { padding: 14px 16px; font-size: 16px; }
  .pw-header .pw-btn-sm { display: none; }
  .pw-feature-list { grid-template-columns: 1fr; }
  .pw-feature-hero h3 { font-size: 20px; }
  .pw-hero-badge { left: 12px; bottom: 12px; padding: 10px 14px; font-size: 12px; }
  .pw-hero-badge strong { font-size: 18px; }
  .pw-cta-inner h2 { font-size: 22px; }
  .pw-price-card-value .pw-price-new { font-size: 34px; }
  .pw-footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .pw-gallery { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .pw-gallery-xl { grid-column: span 1; }
  .pw-slider-arrow { width: 40px; height: 40px; font-size: 22px; }
}
