/* ============ PSB Store — Design System ============ */
:root {
  --ink: #0b0b0f;
  --ink-2: #141419;
  --ink-3: #1d1d24;
  --paper: #faf3ee;
  --paper-2: #fffcf9;
  --line: rgba(11, 11, 15, 0.08);
  --line-strong: rgba(11, 11, 15, 0.16);
  --line-dark: rgba(255, 255, 255, 0.12);
  --crimson: #910101;
  --crimson-2: #6f0000;
  --crimson-tint: #ffb0a5;
  --violet: #8b2fd1;
  --grad: linear-gradient(120deg, #910101 0%, #8b1e2d 35%, #8b2fd1 70%, #4e5bff 100%);
  --muted: #6b6b73;
  --muted-dark: #a8a8b1;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 24px 60px -24px rgba(11, 11, 15, 0.22);
  --shadow-soft: 0 10px 30px -12px rgba(11, 11, 15, 0.14);
  --font-head: "Space Grotesk", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img,
svg {
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: 0;
  background: none;
  color: inherit;
}

input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

::selection {
  background: var(--crimson);
  color: #fff;
}

:focus-visible {
  outline: 2px solid var(--crimson);
  outline-offset: 2px;
}

.container {
  width: min(1200px, 92%);
  margin-inline: auto;
}

.container-narrow {
  width: min(780px, 92%);
}

/* ============ Buttons & misc ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  padding: 12px 22px;
  border-radius: 999px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}

.btn svg {
  width: 17px;
  height: 17px;
}

.btn-lg {
  padding: 15px 30px;
  font-size: 16px;
}

.btn-sm {
  padding: 9px 18px;
  font-size: 14px;
}

.btn-primary {
  background: var(--crimson);
  color: #fff;
}

.btn-primary:hover {
  background: var(--crimson-2);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -12px rgba(145, 1, 1, 0.55);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  color: #f2f2f4;
  border: 1px solid var(--line-dark);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.28);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--ink);
  color: #fff;
}

.btn-dark:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -14px rgba(11, 11, 15, 0.5);
}

.btn-white {
  background: #fff;
  color: var(--ink);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -14px rgba(11, 11, 15, 0.35);
}

.btn-block {
  width: 100%;
}

.icon-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #e8e8ec;
  border: 1px solid transparent;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.icon-btn svg {
  width: 20px;
  height: 20px;
}

.icon-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--line-dark);
  color: #fff;
}

.lang-btn {
  width: auto;
  padding: 0 12px;
  gap: 6px;
  border-radius: 999px;
  border: 1px solid var(--line-dark);
  font-weight: 600;
  color: #e8e8ec;
}

.lang-btn svg {
  width: 15px;
  height: 15px;
}

.lang-btn .lang-label {
  font-size: 12px;
  letter-spacing: 0.04em;
  font-family: var(--font-head);
  white-space: nowrap;
}

.lang-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
}

.cart-count {
  position: absolute;
  top: -2px;
  right: -2px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  display: grid;
  place-items: center;
  background: var(--crimson);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  border-radius: 999px;
  border: 2px solid var(--ink-2);
  transition: transform 0.2s ease;
}

.cart-count.pop {
  transform: scale(1.35);
}

/* ============ Header / Nav ============ */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: rgba(11, 11, 15, 0.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.site-header.scrolled {
  background: rgba(11, 11, 15, 0.92);
  border-bottom-color: var(--line-dark);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 74px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-mark {
  width: 40px;
  height: 40px;
}

.logo-text {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  font-family: var(--font-head);
}

.logo-psb {
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 0.01em;
  color: #fff;
}

.logo-bar {
  width: 6px;
  height: 6px;
  border-radius: 2px;
  background: var(--crimson);
  align-self: center;
}

.logo-store {
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 0.02em;
  color: var(--muted-dark);
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  display: inline-block;
  padding: 9px 14px;
  border-radius: 8px;
  color: #cfcfd6;
  font-weight: 500;
  font-size: 15px;
  position: relative;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.nav-link.active {
  color: #fff;
}

.nav-link.active::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 3px;
  height: 2px;
  border-radius: 2px;
  background: var(--crimson);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  align-items: center;
  border: 1px solid var(--line-dark);
}

.hamburger span {
  width: 18px;
  height: 2px;
  background: #e8e8ec;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.site-header.nav-open .hamburger span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.nav-open .hamburger span:nth-child(2) {
  opacity: 0;
}

.site-header.nav-open .hamburger span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============ Search overlay ============ */
.search-overlay {
  position: fixed;
  top: 74px;
  left: 0;
  right: 0;
  z-index: 99;
  background: rgba(11, 11, 15, 0.97);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line-dark);
  padding: 20px 0;
}

.search-form {
  display: flex;
  align-items: center;
  gap: 14px;
}

.search-ico {
  width: 22px;
  height: 22px;
  color: var(--muted-dark);
  flex-shrink: 0;
}

.search-form input {
  flex: 1;
  background: transparent;
  border: 0;
  outline: none;
  color: #fff;
  font-size: 19px;
  padding: 8px 0;
  min-width: 0;
}

.search-form input::placeholder {
  color: #6f6f78;
}

.search-close {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #e8e8ec;
  border: 1px solid var(--line-dark);
  transition: background 0.2s ease;
}

.search-close:hover {
  background: rgba(255, 255, 255, 0.08);
}

.search-close svg {
  width: 18px;
  height: 18px;
}

/* ============ Hero ============ */
.hero {
  position: relative;
  background: var(--ink);
  color: #f2f2f4;
  padding: 156px 0 0;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.6;
}

.glow-a {
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(145, 1, 1, 0.65), transparent 65%);
  top: -160px;
  left: -120px;
}

.glow-b {
  width: 640px;
  height: 640px;
  background: radial-gradient(circle, rgba(122, 77, 246, 0.38), transparent 65%);
  top: 60px;
  right: -200px;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 20%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 20%, #000 30%, transparent 75%);
}

.hero-inner {
  position: relative;
  text-align: center;
  z-index: 2;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-eyebrow {
  color: #c8c8d1;
}

.pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--crimson);
  box-shadow: 0 0 0 0 rgba(145, 1, 1, 0.6);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(145, 1, 1, 0.6);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(145, 1, 1, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(145, 1, 1, 0);
  }
}

.hero-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
  margin: 22px 0 20px;
}

.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-sub {
  max-width: 620px;
  margin: 0 auto;
  font-size: 18px;
  color: var(--muted-dark);
}

.hero-cta {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin: 34px 0 26px;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-weight: 600;
  font-size: 15px;
  color: #e2e2e8;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  padding: 11px 20px;
}

.trust-check {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--crimson);
  color: #fff;
}

.trust-check svg {
  width: 13px;
  height: 13px;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 56px 0 84px;
}

.pv-card {
  width: min(560px, 100%);
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  padding: 8px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 40px 90px -30px rgba(0, 0, 0, 0.7);
}

.pv-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px 12px;
  border-bottom: 1px solid var(--line-dark);
}

.pv-title {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
}

.pv-live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: var(--muted-dark);
}

.pv-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
}

.pv-row + .pv-row {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.pv-ico {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  background: #1d1d24;
  border: 1px solid var(--line-dark);
  border-radius: 12px;
  font-family: var(--font-head);
  font-weight: 700;
  color: #fff;
}

.pv-ico-red {
  background: rgba(145, 1, 1, 0.9);
  border-color: rgba(255, 255, 255, 0.15);
}

.pv-info {
  flex: 1;
  min-width: 0;
}

.pv-info strong {
  display: block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pv-info small {
  color: var(--muted-dark);
  font-size: 13px;
}

.pv-price {
  font-family: var(--font-head);
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
}

.pv-price .pv-per {
  font-size: 11px;
  color: var(--muted-dark);
  font-weight: 500;
  margin-left: 2px;
}

.pv-foot {
  text-align: center;
  padding: 12px 16px;
  border-top: 1px solid var(--line-dark);
  font-size: 13.5px;
  color: var(--muted-dark);
}

.pv-foot strong {
  color: #fff;
  background: linear-gradient(120deg, #ff8d7d, #c48bff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Marquee */
.marquee {
  border-top: 1px solid var(--line-dark);
  padding: 22px 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 22px;
  width: max-content;
  animation: marquee 38s linear infinite;
}

.marquee:hover .marquee-track {
  animation-play-state: paused;
}

.chip {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  color: #e6e6ea;
  letter-spacing: 0.02em;
}

.sep {
  color: var(--crimson);
  font-weight: 700;
  font-size: 13px;
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

/* ============ Sections ============ */
.section {
  padding: 100px 0;
}

.section-alt {
  background: #f3e8e1;
}

.section-dark {
  background: var(--ink-2);
  color: #e9e9ee;
  position: relative;
}

.section-dark .eyebrow {
  color: var(--muted-dark);
}

.section-head {
  max-width: 640px;
  margin-bottom: 52px;
}

.section-head h2 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  letter-spacing: -0.02em;
  line-height: 1.12;
  margin: 12px 0 14px;
}

.section-head p {
  color: var(--muted);
  font-size: 17px;
}

.section-dark .section-head p {
  color: var(--muted-dark);
}

/* ============ Tabs ============ */
.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 34px;
}

.tab-btn {
  padding: 9px 18px;
  border-radius: 999px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 14px;
  color: var(--muted);
  border: 1px solid var(--line-strong);
  transition: all 0.2s ease;
}

.tab-btn:hover {
  border-color: var(--crimson);
  color: var(--ink);
}

.tab-btn.active {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

/* ============ Products ============ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.product-card {
  display: flex;
  flex-direction: column;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, opacity 0.3s ease, background 0.25s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: rgba(145, 1, 1, 0.3);
}

.product-card.dim {
  opacity: 0.25;
  pointer-events: none;
}

.product-card.hidden {
  display: none;
}

.product-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 14px;
  min-height: 46px;
}

.product-logo {
  width: 118px;
  height: 40px;
  object-fit: contain;
  object-position: center;
  margin-left: auto;
}

.product-logo-wide {
  width: 96px;
}

.product-ico {
  display: none;
  width: 46px;
  height: 46px;
  margin-left: auto;
  place-items: center;
  border-radius: 13px;
  background: var(--ink);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 18px;
}

.no-logo .product-logo {
  display: none;
}

.no-logo .product-ico {
  display: grid;
}

.badge {
  font-size: 11px;
  font-weight: 700;
  font-family: var(--font-head);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
}

.badge-sale {
  background: var(--crimson);
  color: #fff;
}

.badge-new {
  background: rgba(139, 47, 209, 0.12);
  color: var(--violet);
  border: 1px solid rgba(139, 47, 209, 0.35);
}

.product-name {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.01em;
}

.product-meta {
  font-size: 13.5px;
  color: var(--muted);
  margin-top: 3px;
}

.plan-select {
  margin: 16px 0 12px;
}

.plan-select label {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 6px;
  font-family: var(--font-head);
}

.plan-dur {
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  background: #f3e9e2;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  padding: 11px 40px 11px 14px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='8' viewBox='0 0 14 8'%3E%3Cpath d='M1 1l6 6 6-6' fill='none' stroke='%23910101' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}

.plan-dur:hover,
.plan-dur:focus {
  border-color: var(--crimson);
  outline: none;
  box-shadow: 0 0 0 3px rgba(145, 1, 1, 0.1);
}

.product-price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0 0 16px;
  min-height: 34px;
}

.price {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.01em;
}

.period {
  font-size: 13.5px;
  color: var(--muted);
}

.contact-price .price {
  font-size: 17px;
  color: var(--crimson);
}

.details-hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 0 0 10px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 12.5px;
  color: var(--crimson);
  opacity: 0.85;
}

.details-hint::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 2px;
  background: var(--crimson);
  transform: rotate(45deg);
}

.product-card:hover .details-hint {
  opacity: 1;
}

.product-card .btn {
  margin-top: auto;
}

.tabs-empty {
  text-align: center;
  padding: 30px;
  color: var(--muted);
}

/* ============ Features (Why PSB) ============ */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feature {
  background: var(--ink-3);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 26px;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.feature:hover {
  transform: translateY(-4px);
  border-color: rgba(145, 1, 1, 0.5);
}

.feature-ico {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: rgba(145, 1, 1, 0.22);
  border: 1px solid rgba(145, 1, 1, 0.45);
  color: var(--crimson-tint);
  margin-bottom: 18px;
}

.feature-ico svg {
  width: 22px;
  height: 22px;
}

.feature h3 {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 6px;
}

.feature p {
  color: var(--muted-dark);
  font-size: 14.5px;
}

.payments {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 46px;
  padding-top: 34px;
  border-top: 1px solid var(--line-dark);
}

.payments-label {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted-dark);
  margin-right: 8px;
}

.pay-chip {
  font-size: 13.5px;
  font-weight: 600;
  font-family: var(--font-head);
  color: #e6e6ea;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line-dark);
  padding: 7px 14px;
  border-radius: 999px;
}

/* ============ CTA banner ============ */
.cta-banner {
  background: var(--grad);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}

.cta-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
}

.cta-inner {
  position: relative;
  text-align: center;
  z-index: 2;
}

.cta-inner h2 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(1.9rem, 3.6vw, 2.8rem);
  letter-spacing: -0.02em;
  color: #fff;
}

.cta-inner p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 17px;
  margin: 12px auto 30px;
  max-width: 480px;
}

.cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

/* ============ FAQ ============ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.faq-item.open {
  border-color: rgba(145, 1, 1, 0.35);
  box-shadow: var(--shadow-soft);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  padding: 20px 22px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 16.5px;
}

.faq-q svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--crimson);
  transition: transform 0.3s ease;
}

.faq-item.open .faq-q svg {
  transform: rotate(180deg);
}

.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}

.faq-item.open .faq-a {
  grid-template-rows: 1fr;
}

.faq-a > div {
  overflow: hidden;
}

.faq-a p {
  padding: 0 22px 20px;
  color: var(--muted);
  font-size: 15px;
}

/* ============ Contact ============ */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.contact-minicard {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-minicard:hover {
  transform: translateY(-4px);
  border-color: rgba(145, 1, 1, 0.35);
  box-shadow: var(--shadow);
}

.contact-ico {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: var(--crimson);
  color: #fff;
}

.contact-ico svg {
  width: 21px;
  height: 21px;
}

.contact-body strong {
  display: block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 16px;
}

.contact-body span {
  display: block;
  font-size: 14px;
  color: var(--ink);
  font-weight: 500;
  margin-top: 2px;
}

.contact-body small {
  display: block;
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
}

/* ============ Footer ============ */
.footer {
  background: var(--ink);
  color: #c9c9d1;
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  padding-bottom: 54px;
  border-bottom: 1px solid var(--line-dark);
}

.footer-tagline {
  margin: 18px 0 22px;
  font-size: 15px;
  color: var(--muted-dark);
  max-width: 300px;
}

.socials {
  display: flex;
  gap: 10px;
}

.socials a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line-dark);
  color: #cfcfd6;
  transition: all 0.2s ease;
}

.socials a:hover {
  background: var(--crimson);
  border-color: var(--crimson);
  color: #fff;
  transform: translateY(-3px);
}

.socials svg {
  width: 18px;
  height: 18px;
}

.footer-col h4 {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  color: #fff;
  margin-bottom: 18px;
  letter-spacing: 0.02em;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-col a,
.footer-col span {
  font-size: 14.5px;
  color: var(--muted-dark);
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: #fff;
}

.footer-contact li {
  font-size: 14.5px;
}

.footer-pay {
  margin-top: 22px;
}

.footer-pay > span:first-child {
  display: block;
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--muted-dark);
  margin-bottom: 10px;
}

.footer-pay .pay-chip {
  margin: 0 6px 6px 0;
  padding: 5px 12px;
  font-size: 12.5px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 26px 0;
  font-size: 13.5px;
  color: #7c7c86;
}

.footer-policies {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer-policies a {
  color: #8f8f99;
  transition: color 0.2s ease;
}

.footer-policies a:hover {
  color: #fff;
}

.back-top {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--line-dark);
  color: #cfcfd6;
  transition: all 0.2s ease;
}

.back-top:hover {
  background: var(--crimson);
  border-color: var(--crimson);
  color: #fff;
}

.back-top svg {
  width: 18px;
  height: 18px;
}

/* ============ Floating WhatsApp ============ */
.float-wa {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #22c15e;
  box-shadow: 0 14px 34px -10px rgba(34, 193, 94, 0.6);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.float-wa:hover {
  transform: translateY(-4px) scale(1.06);
  box-shadow: 0 18px 40px -12px rgba(34, 193, 94, 0.7);
}

.float-wa svg {
  width: 28px;
  height: 28px;
}

.float-wa.pulse-ring::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(34, 193, 94, 0.5);
  animation: ring 2.4s infinite;
}

@keyframes ring {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.55);
    opacity: 0;
  }
}

/* ============ Toast ============ */
.toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  transform: translate(-50%, 20px);
  background: var(--ink);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 14.5px;
  padding: 13px 22px;
  border-radius: 12px;
  border: 1px solid var(--line-dark);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 200;
  max-width: 88vw;
  text-align: center;
}

.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

/* ============ Product modal ============ */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(11, 11, 15, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.modal {
  width: min(640px, 100%);
  max-height: min(86vh, 760px);
  display: flex;
  flex-direction: column;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
  transform: translateY(16px) scale(0.97);
  transition: transform 0.3s ease;
  overflow: hidden;
}

.modal-overlay.open .modal {
  transform: none;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 5;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--paper);
  border: 1px solid var(--line-strong);
  color: var(--ink);
  transition: background 0.2s ease, transform 0.2s ease;
}

.modal-close:hover {
  background: var(--crimson);
  color: #fff;
  transform: rotate(90deg);
}

.modal-close svg {
  width: 18px;
  height: 18px;
}

.modal-scroll {
  position: relative;
  overflow-y: auto;
  padding: 26px 26px 30px;
}

.modal-head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-right: 44px;
  margin-bottom: 18px;
}

.modal-logo {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: var(--ink);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 22px;
}

.modal-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 21px;
  letter-spacing: -0.01em;
}

.modal-meta {
  font-size: 13.5px;
  color: var(--muted);
  margin-top: 2px;
}

.modal-block {
  margin-top: 20px;
}

.modal-block-title {
  display: block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 12px;
}

.modal-list {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.modal-list li {
  position: relative;
  padding-left: 22px;
  font-size: 14.5px;
  line-height: 1.5;
}

.modal-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--crimson);
}

.modal-list-rules li::before {
  border-radius: 3px;
  background: var(--violet);
}

.modal-price-wrap {
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  background: #f3e9e2;
  border: 1px solid var(--line);
}

.modal-price {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 26px;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.modal-price.ask-price {
  font-size: 16px;
  color: var(--crimson);
  font-weight: 600;
}

.modal-fixed {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  color: var(--ink);
  background: #f3e9e2;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 9px 18px;
}

.pay-box {
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--paper-2);
}

.pay-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 16px;
}

.pay-row + .pay-row {
  border-top: 1px solid var(--line);
}

.pay-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  flex-shrink: 0;
}

.pay-name {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 14.5px;
}

.pay-num {
  margin-left: auto;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.03em;
  font-variant-numeric: tabular-nums;
}

.pay-send {
  margin-top: 10px;
  text-align: center;
}

.pay-send strong {
  font-family: var(--font-head);
  font-size: 13.5px;
  font-weight: 700;
  color: var(--crimson);
}

.modal-note {
  font-size: 12.5px;
  color: var(--muted);
  margin-top: 10px;
  line-height: 1.55;
}

.modal-tx-input {
  width: 100%;
  background: #f3e9e2;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  padding: 12px 15px;
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.modal-tx-input:focus {
  border-color: var(--crimson);
  box-shadow: 0 0 0 3px rgba(145, 1, 1, 0.12);
}

.modal-tx-input.valid {
  border-color: rgba(34, 193, 94, 0.7);
  box-shadow: 0 0 0 3px rgba(34, 193, 94, 0.15);
  background: #f2fbf4;
}

.modal-order {
  margin-top: 20px;
}

/* ============ Reveal animations ============ */
.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--d, 0s);
}

.js .reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ============ Responsive ============ */
@media (max-width: 1060px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .nav-actions .btn-account {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: 74px;
    left: 0;
    right: 0;
    background: rgba(11, 11, 15, 0.98);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--line-dark);
    padding: 14px;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .site-header.nav-open .main-nav {
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }

  .main-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
  }

  .nav-link {
    padding: 13px 16px;
    border-radius: 10px;
  }

  .nav-link.active::after {
    display: none;
  }

  .nav-link.active {
    background: rgba(255, 255, 255, 0.08);
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .section {
    padding: 72px 0;
  }

  .hero {
    padding-top: 128px;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .logo-store {
    display: none;
  }

  .pv-ico {
    display: none;
  }
}