/*
Theme Name:  QuayPhim – Film Noir
Theme URI:   https://dev.com.vn
Author:      dev.com.vn
Description: Minimalist film noir – trang tinh, do dam, den. Dung kem QuayPhim Pro plugin.
Version:     1.2.0
Requires at least: 5.0
Requires PHP: 7.0
License:     GPL v2 or later
Text Domain: qpt
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ══ TOKENS ════════════════════════════════════════════════════════════════ */
:root {
  /* Brand */
  --red:    #c00;
  --red2:   #e00;
  --red3:   #990000;
  --red-bg: #fff5f5;
  /* Neutrals */
  --black:  #0a0a0a;
  --ink:    #1a1a1a;
  --charcoal: #333;
  --gray:   #666;
  --silver: #999;
  --border: #e5e5e5;
  --border2:#d0d0d0;
  --bg:     #ffffff;
  --bg2:    #f9f9f9;
  --bg3:    #f3f3f3;
  /* Typography */
  --font:   'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  /* Radius */
  --r:  6px;
  --r2: 10px;
  --r3: 999px;
  /* Shadow */
  --s1: 0 2px 8px rgba(0,0,0,.08);
  --s2: 0 6px 24px rgba(0,0,0,.12);
  --s3: 0 12px 40px rgba(0,0,0,.14);
}

/* ══ RESET ═════════════════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
button { border: none; cursor: pointer; font-family: var(--font); }
ul, ol { list-style: none; padding: 0; margin: 0; }
::selection { background: var(--red); color: #fff; }
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-thumb { background: var(--red); }

/* ══ LAYOUT ════════════════════════════════════════════════════════════════ */
.site { display: flex; flex-direction: column; min-height: 100vh; }
.site-content { flex: 1; }
.qpt-con { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
@media(max-width:640px){ .qpt-con { padding: 0 20px; } }

/* ══ TICKER ════════════════════════════════════════════════════════════════ */
.qpt-ticker {
  background: var(--black);
  border-bottom: 2px solid var(--red);
  padding: 8px 0;
  overflow: hidden;
  white-space: nowrap;
}
.qpt-ticker-inner { display: inline-flex; animation: qptTick 48s linear infinite; }
.qpt-ticker-inner:hover { animation-play-state: paused; }
@keyframes qptTick { from{transform:translateX(0)} to{transform:translateX(-50%)} }
.qpt-ti {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,.7);
  text-transform: uppercase;
  letter-spacing: 1.4px;
  padding: 0 32px;
  border-right: 1px solid rgba(255,255,255,.12);
}
.qpt-ti-dot {
  display: inline-block;
  width: 5px; height: 5px;
  background: var(--red);
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: middle;
}

/* ══ HEADER ════════════════════════════════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 0 40px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 1px 0 var(--border);
  transition: box-shadow .2s;
}
.site-header.scrolled { box-shadow: 0 2px 16px rgba(0,0,0,.08); }
@media(max-width:900px){ .site-header { padding: 0 20px; } }

/* Brand */
.qpt-brand { display: flex; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 0; }
.qpt-brand-mark {
  width: 34px; height: 34px;
  background: var(--red);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.qpt-brand-name {
  font-size: .95rem;
  font-weight: 800;
  color: var(--black);
  letter-spacing: -.3px;
}
.qpt-brand-name span { color: var(--red); }

/* Nav */
.qpt-nav-links {
  display: flex;
  gap: 0;
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}
.qpt-nav-links li { list-style: none !important; }
.qpt-nav-links li::before { display: none !important; content: none !important; }
.qpt-nav-links a {
  display: block;
  font-size: .82rem;
  font-weight: 500;
  color: var(--charcoal);
  padding: 8px 14px;
  border-radius: var(--r);
  transition: all .15s;
  white-space: nowrap;
}
.qpt-nav-links a:hover,
.qpt-nav-links .current-menu-item > a,
.qpt-nav-links a.current { background: var(--bg3); color: var(--red); }
@media(max-width:900px){ .qpt-nav-links { display: none; } }

.qpt-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 20px;
  background: var(--red);
  color: #fff;
  border-radius: var(--r);
  font-size: .82rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .15s;
  white-space: nowrap;
}
.qpt-nav-cta:hover { background: var(--red2); color: #fff; }
.qpt-hamburger {
  display: none;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 7px 10px;
  color: var(--ink);
  font-size: .9rem;
}
@media(max-width:900px){ .qpt-hamburger { display: flex; align-items: center; } }

/* Mobile menu */
.qpt-mobile-menu { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 9999; }
.qpt-mobile-menu.open { display: block; }
.qpt-mobile-inner {
  position: absolute; top: 0; right: 0; bottom: 0; width: 260px;
  background: #fff;
  padding: 20px;
  border-left: 3px solid var(--red);
  overflow-y: auto;
}
.qpt-mobile-close { display: flex; justify-content: flex-end; margin-bottom: 16px; }
.qpt-mobile-close button {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: 50%; width: 32px; height: 32px;
  color: var(--charcoal); font-size: .85rem;
}
.qpt-mobile-inner ul { list-style: none; padding: 0; }
.qpt-mobile-inner ul li { list-style: none; }
.qpt-mobile-inner ul li::before { display: none; content: none; }
.qpt-mobile-inner ul li a {
  display: block; padding: 11px 12px;
  font-size: .9rem; font-weight: 500; color: var(--charcoal);
  border-radius: var(--r); transition: all .15s;
  border-bottom: 1px solid var(--border);
}
.qpt-mobile-inner ul li a:hover { background: var(--red-bg); color: var(--red); }

/* ══ HERO ══════════════════════════════════════════════════════════════════ */
.qpt-hero {
  padding: 88px 40px 64px;
  background: #fff;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
/* Film grain texture */
.qpt-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 70% 60% at 90% 50%, rgba(192,0,0,.04) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 10% 80%, rgba(192,0,0,.03) 0%, transparent 60%);
  pointer-events: none;
}
/* Red side bar accent */
.qpt-hero::after {
  content: '';
  position: absolute;
  left: 0; top: 20%; bottom: 20%;
  width: 4px;
  background: var(--red);
  border-radius: 0 2px 2px 0;
}
.qpt-hw {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media(max-width:1000px){ .qpt-hw { grid-template-columns: 1fr; } .qpt-hero-card { display: none !important; } }
@media(max-width:640px){ .qpt-hero { padding: 64px 20px 48px; } }

.qpt-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--red-bg);
  border: 1px solid rgba(192,0,0,.2);
  border-radius: var(--r3);
  padding: 5px 14px;
  margin-bottom: 18px;
}
.qpt-bd {
  width: 6px; height: 6px;
  background: var(--red);
  border-radius: 50%;
  animation: qptBlink 1.8s ease-in-out infinite;
}
@keyframes qptBlink { 0%,100%{opacity:1} 50%{opacity:.25} }
.qpt-bt { font-size: .72rem; font-weight: 700; color: var(--red); text-transform: uppercase; letter-spacing: 1px; }

.qpt-hero h1 {
  font-size: clamp(2.6rem, 5.5vw, 4.8rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -2px;
  color: var(--black);
  margin-bottom: 20px;
}
.qpt-hero h1 .el {
  color: var(--red);
  /* No gradient - pure red, minimalist */
  -webkit-text-fill-color: var(--red);
}
.qpt-hero-p {
  font-size: 1.05rem;
  color: var(--gray);
  line-height: 1.7;
  max-width: 500px;
  margin-bottom: 32px;
}
.qpt-hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }
.qpt-trust { display: flex; gap: 20px; flex-wrap: wrap; }
.qpt-tr-i { display: flex; align-items: center; gap: 6px; font-size: .82rem; color: var(--silver); }
.qpt-tck {
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--red);
  display: flex; align-items: center; justify-content: center;
  font-size: .56rem; color: #fff; flex-shrink: 0;
}

/* Hero card */
.qpt-hero-card {
  background: var(--black);
  border-radius: var(--r2);
  padding: 28px;
  position: relative;
  overflow: hidden;
}
.qpt-hero-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
}
.qpt-hch { font-size: .7rem; font-weight: 700; color: var(--red); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 18px; }
.qpt-hs {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: space-between;
}
.qpt-hs:last-of-type { border-bottom: none; }
.qpt-hs-l { font-size: .82rem; color: rgba(255,255,255,.5); }
.qpt-hs-v { font-size: 1.4rem; font-weight: 800; color: #fff; letter-spacing: -1px; line-height: 1; }
.qpt-hs-v small { font-size: .7rem; font-weight: 400; color: rgba(255,255,255,.4); }
.qpt-hcf { margin-top: 16px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,.08); }
.qpt-hcf p { font-size: .78rem; color: rgba(255,255,255,.4); margin-bottom: 10px; }
.qpt-hrow { display: flex; gap: 8px; }
.qpt-hrow input {
  flex: 1; padding: 10px 14px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r);
  font-size: .84rem; font-family: var(--font);
  color: #fff; outline: none;
  transition: border-color .15s;
}
.qpt-hrow input:focus { border-color: var(--red); }
.qpt-hrow input::placeholder { color: rgba(255,255,255,.3); }
.qpt-btn-hc {
  padding: 10px 16px;
  background: var(--red);
  color: #fff;
  border-radius: var(--r);
  font-size: .8rem; font-weight: 700;
  white-space: nowrap;
  transition: background .15s;
}
.qpt-btn-hc:hover { background: var(--red2); }

/* ══ STATS BAR ═════════════════════════════════════════════════════════════ */
.qpt-stats-bar {
  background: var(--black);
  padding: 0 40px;
}
.qpt-si {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5,1fr);
}
@media(max-width:780px){ .qpt-si { grid-template-columns: repeat(3,1fr); } .qpt-stats-bar { padding: 0 20px; } }
.qpt-st-item {
  padding: 22px 0;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.08);
}
.qpt-st-item:last-child { border-right: none; }
.qpt-st-n { font-size: 1.9rem; font-weight: 900; color: #fff; letter-spacing: -1px; display: block; line-height: 1; }
.qpt-st-l { font-size: .66rem; color: rgba(255,255,255,.4); text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; display: block; }

/* ══ SECTION BASE ══════════════════════════════════════════════════════════ */
.qpt-sec   { padding: 72px 40px; background: #fff; }
.qpt-sec-d2{ padding: 72px 40px; background: var(--bg2); }
@media(max-width:640px){ .qpt-sec, .qpt-sec-d2 { padding: 52px 20px; } }

/* Section header */
.qpt-ey {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--red);
  margin-bottom: 10px;
}
.qpt-ey::before {
  content: '';
  display: inline-block;
  width: 20px; height: 2px;
  background: var(--red);
  border-radius: 1px;
  flex-shrink: 0;
}
.qpt-h2 {
  font-size: clamp(1.9rem, 3.5vw, 3.0rem);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.08;
  color: var(--black);
  margin-bottom: 12px;
}
.qpt-h2 .el { color: var(--red); }
.qpt-sub { font-size: .95rem; color: var(--gray); line-height: 1.7; max-width: 500px; }
.qpt-shr {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}
.qpt-more {
  font-size: .78rem;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: .5px;
  white-space: nowrap;
  transition: opacity .15s;
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
}
.qpt-more:hover { opacity: .7; }

/* ══ BUTTONS ═══════════════════════════════════════════════════════════════ */
.btn-p {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 13px 26px;
  background: var(--red);
  color: #fff;
  border-radius: var(--r);
  font-size: .88rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .15s;
}
.btn-p:hover { background: var(--red2); color: #fff; }
.btn-o {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 12px 24px;
  background: #fff;
  color: var(--black);
  border: 1.5px solid var(--border2);
  border-radius: var(--r);
  font-size: .88rem;
  font-weight: 600;
  text-decoration: none;
  transition: all .15s;
}
.btn-o:hover { border-color: var(--red); color: var(--red); }

/* ══ PRE-PRODUCTION CARDS ══════════════════════════════════════════════════ */
.qpt-pc {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r2);
  padding: 22px;
  transition: all .2s;
  position: relative;
  border-top: 3px solid transparent;
}
.qpt-pc:hover {
  border-top-color: var(--red);
  box-shadow: var(--s2);
  transform: translateY(-3px);
}
.qpt-pc-ic {
  width: 44px; height: 44px;
  border-radius: var(--r);
  background: var(--red-bg);
  border: 1px solid rgba(192,0,0,.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; margin-bottom: 14px;
}
.qpt-pc-name { font-size: .92rem; font-weight: 700; color: var(--black); margin-bottom: 6px; line-height: 1.3; }
.qpt-pc-desc { font-size: .8rem; color: var(--gray); line-height: 1.6; margin-bottom: 12px; }
.qpt-pc-items { display: flex; gap: 5px; flex-wrap: wrap; }
.qpt-pci {
  font-size: .68rem; font-weight: 600;
  padding: 2px 8px; border-radius: var(--r3);
  background: var(--bg3); color: var(--charcoal);
  border: 1px solid var(--border);
}

/* ══ EQUIPMENT ═════════════════════════════════════════════════════════════ */
.qpt-equip-feature {
  background: var(--black);
  border-radius: var(--r2);
  padding: 32px;
  position: relative;
  overflow: hidden;
}
.qpt-equip-feature::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--red);
}
.qpt-ef-icon { font-size: 2.4rem; margin-bottom: 14px; display: block; }
.qpt-ef-title { font-size: 1.1rem; font-weight: 800; color: #fff; margin-bottom: 8px; }
.qpt-ef-desc { font-size: .85rem; color: rgba(255,255,255,.55); line-height: 1.65; margin-bottom: 16px; }
.qpt-ef-specs { display: flex; flex-wrap: wrap; gap: 6px; }
.qpt-ef-spec {
  font-size: .7rem; font-weight: 600;
  padding: 3px 10px; border-radius: var(--r3);
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.7);
  border: 1px solid rgba(255,255,255,.1);
}
.qpt-eq {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--r2);
  padding: 18px 16px;
  transition: all .2s;
  border-bottom: 3px solid transparent;
}
.qpt-eq:hover { border-bottom-color: var(--red); box-shadow: var(--s1); transform: translateY(-2px); }
.qpt-eq-em { font-size: 1.6rem; display: block; margin-bottom: 8px; }
.qpt-eq-name { font-size: .88rem; font-weight: 700; color: var(--black); margin-bottom: 4px; }
.qpt-eq-model { font-size: .74rem; color: var(--red); font-weight: 600; margin-bottom: 5px; }
.qpt-eq-desc { font-size: .78rem; color: var(--gray); line-height: 1.5; }

/* ══ SERVICE CARDS ═════════════════════════════════════════════════════════ */
.qpt-sc {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r2);
  padding: 24px;
  transition: all .2s;
  display: flex; flex-direction: column;
  border-left: 3px solid transparent;
}
.qpt-sc:hover { border-left-color: var(--red); box-shadow: var(--s2); transform: translateX(3px); }
.qpt-sc-ic {
  width: 46px; height: 46px;
  border-radius: var(--r);
  background: var(--red-bg);
  border: 1px solid rgba(192,0,0,.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; margin-bottom: 14px;
}
.qpt-sc-name { font-size: .95rem; font-weight: 700; color: var(--black); margin-bottom: 6px; line-height: 1.3; }
.qpt-sc-desc { font-size: .82rem; color: var(--gray); line-height: 1.6; margin-bottom: 12px; flex: 1; }
.qpt-sc-tags { display: flex; gap: 4px; flex-wrap: wrap; margin-bottom: 10px; }
.qpt-tag-sm {
  font-size: .68rem; font-weight: 600;
  padding: 2px 8px; border-radius: var(--r3);
  background: var(--bg3); color: var(--charcoal); border: 1px solid var(--border);
}
.qpt-sc-price { font-size: .86rem; font-weight: 700; color: var(--red); }
.qpt-sc-lnk {
  font-size: .8rem; font-weight: 600; color: var(--red);
  display: inline-flex; align-items: center; gap: 4px;
  margin-top: 10px; text-decoration: none;
  transition: gap .15s;
}
.qpt-sc:hover .qpt-sc-lnk { gap: 8px; }

/* ══ PROCESS ═══════════════════════════════════════════════════════════════ */
.qpt-proc-sec {
  padding: 72px 40px;
  background: var(--black);
  position: relative;
  overflow: hidden;
}
.qpt-proc-sec::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(192,0,0,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(192,0,0,.04) 1px, transparent 1px);
  background-size: 48px 48px;
}
/* Section title in dark section */
.qpt-proc-sec .qpt-ey { color: var(--red); }
.qpt-proc-sec .qpt-ey::before { background: var(--red); }
.qpt-proc-sec .qpt-h2 { color: #fff; }
.qpt-proc-sec .qpt-h2 .el { color: var(--red); }
.qpt-proc-sec .qpt-sub { color: rgba(255,255,255,.45); }

.qpt-proc-steps {
  display: grid;
  grid-template-columns: repeat(6,1fr);
  gap: 0;
  position: relative; z-index: 1;
  margin-top: 44px;
}
@media(max-width:1000px){ .qpt-proc-steps { grid-template-columns: repeat(3,1fr); gap: 24px; } }
@media(max-width:560px) { .qpt-proc-steps { grid-template-columns: 1fr 1fr; gap: 18px; } }
@media(max-width:640px) { .qpt-proc-sec { padding: 52px 20px; } }

.qpt-ps { text-align: center; padding: 0 6px; position: relative; }
.qpt-ps::after {
  content: '›'; position: absolute; top: 18px; right: -12px;
  font-size: 1rem; color: rgba(255,255,255,.2);
}
.qpt-ps:last-child::after { display: none; }
@media(max-width:1000px){ .qpt-ps::after { display: none; } }
.qpt-ps-n {
  width: 46px; height: 46px;
  border-radius: 50%;
  margin: 0 auto 10px;
  background: rgba(255,255,255,.06);
  border: 1.5px solid rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem; font-weight: 800; color: #fff;
  transition: all .2s;
}
.qpt-ps:hover .qpt-ps-n { background: var(--red); border-color: var(--red); transform: scale(1.1); }
.qpt-ps-ico { font-size: 1.15rem; display: block; margin-bottom: 6px; }
.qpt-ps-name { font-size: .78rem; font-weight: 700; color: #fff; margin-bottom: 3px; }
.qpt-ps-desc { font-size: .7rem; color: rgba(255,255,255,.35); line-height: 1.5; }

/* ══ PACKAGES ══════════════════════════════════════════════════════════════ */
.qpt-pk {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--r2);
  padding: 28px 24px;
  display: flex; flex-direction: column;
  transition: all .2s;
  position: relative;
}
.qpt-pk:hover { box-shadow: var(--s2); transform: translateY(-3px); }
.qpt-pk.feat {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(192,0,0,.08), var(--s2);
}
.qpt-pk-badge {
  position: absolute; top: 16px; right: 16px;
  background: var(--red); color: #fff;
  font-size: .62rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .8px;
  padding: 3px 10px; border-radius: var(--r3);
}
.qpt-pk-icon { font-size: 1.8rem; margin-bottom: 12px; display: block; }
.qpt-pk-name { font-size: 1rem; font-weight: 800; color: var(--black); margin-bottom: 4px; }
.qpt-pk-for { font-size: .8rem; color: var(--gray); margin-bottom: 16px; line-height: 1.5; }
.qpt-pk-price { margin-bottom: 18px; }
.qpt-pk-num {
  font-size: 1.6rem; font-weight: 900;
  color: var(--black); letter-spacing: -1px;
  display: block; line-height: 1;
}
.qpt-pk-num small { font-size: .7rem; font-weight: 400; color: var(--silver); }
.qpt-pk-feats { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 8px; margin-bottom: 22px; flex: 1; }
.qpt-pk-feats li {
  font-size: .83rem; color: var(--charcoal);
  display: flex; align-items: flex-start; gap: 8px; line-height: 1.45;
}
.qpt-pk-feats li::before { content: '✓'; color: var(--red); font-weight: 700; font-size: .82rem; flex-shrink: 0; margin-top: 1px; }
.qpt-btn-pk {
  width: 100%; padding: 12px;
  border-radius: var(--r);
  font-size: .84rem; font-weight: 700;
  text-align: center; display: block;
  text-decoration: none; cursor: pointer;
  font-family: var(--font);
  transition: all .15s;
}
.qpt-btn-fill { background: var(--red); color: #fff; border: none; }
.qpt-btn-fill:hover { background: var(--red2); color: #fff; }
.qpt-btn-line { background: transparent; color: var(--red); border: 1.5px solid var(--red); }
.qpt-btn-line:hover { background: var(--red-bg); color: var(--red); }

/* ══ WHY ═══════════════════════════════════════════════════════════════════ */
.qpt-wc {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r2);
  padding: 24px 18px;
  text-align: center;
  transition: all .2s;
}
.qpt-wc:hover { border-color: var(--red); box-shadow: var(--s1); transform: translateY(-3px); }
.qpt-wc-ico { font-size: 1.7rem; display: block; margin-bottom: 10px; }
.qpt-wc-num {
  font-size: 2rem; font-weight: 900;
  color: var(--red); letter-spacing: -1px;
  display: block; line-height: 1; margin-bottom: 4px;
}
.qpt-wc-lbl {
  font-size: .66rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  color: var(--silver); margin-bottom: 8px; display: block;
}
.qpt-wc-desc { font-size: .82rem; color: var(--gray); line-height: 1.6; }

/* ══ FAQ ═══════════════════════════════════════════════════════════════════ */
.qpt-faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 4px; }
.qpt-fq { border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; background: #fff; }
.qpt-fq.open { border-color: var(--red); }
.qpt-fq-q {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px; cursor: pointer;
  font-size: .9rem; font-weight: 600; color: var(--black); gap: 12px;
}
.qpt-fq-q:hover { background: var(--bg2); }
.qpt-fq.open .qpt-fq-q { color: var(--red); }
.qpt-fq-ico {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--bg3); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: .65rem; color: var(--charcoal);
  flex-shrink: 0; transition: all .2s;
}
.qpt-fq.open .qpt-fq-ico { background: var(--red); color: #fff; border-color: var(--red); transform: rotate(45deg); }
.qpt-fq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.qpt-fq.open .qpt-fq-a { max-height: 400px; }
.qpt-fq-inner {
  padding: 0 20px 16px;
  font-size: .86rem; color: var(--gray); line-height: 1.75;
  border-top: 1px solid var(--border);
}

/* ══ CTA ═══════════════════════════════════════════════════════════════════ */
.qpt-cta-sec {
  background: var(--black);
  padding: 80px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.qpt-cta-sec::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 100%, rgba(192,0,0,.15) 0%, transparent 60%);
}
.qpt-cta-sec > .qpt-con { position: relative; z-index: 1; }
.qpt-cta-sec h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 900; color: #fff;
  letter-spacing: -1.5px; line-height: 1.05;
  margin-bottom: 14px;
}
.qpt-cta-sec h2 .el { color: var(--red); }
.qpt-cta-sec p { font-size: .95rem; color: rgba(255,255,255,.5); margin-bottom: 32px; }
.qpt-cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.qpt-btn-cw {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 14px 28px;
  background: var(--red); color: #fff;
  border-radius: var(--r); font-weight: 700; font-size: .9rem;
  text-decoration: none; transition: background .15s;
}
.qpt-btn-cw:hover { background: var(--red2); color: #fff; }
.qpt-btn-co {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 14px 28px;
  background: transparent; color: #fff;
  border: 1.5px solid rgba(255,255,255,.25);
  border-radius: var(--r); font-weight: 600; font-size: .9rem;
  text-decoration: none; transition: all .15s;
}
.qpt-btn-co:hover { border-color: rgba(255,255,255,.6); background: rgba(255,255,255,.06); color: #fff; }
@media(max-width:640px){ .qpt-cta-sec { padding: 56px 20px; } }

/* ══ NEWSLETTER ════════════════════════════════════════════════════════════ */
.qpt-nl {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 36px 40px;
}
.qpt-nl-in { max-width: 480px; margin: 0 auto; text-align: center; }
.qpt-nl-in h3 { font-size: 1.05rem; font-weight: 700; color: var(--black); margin-bottom: 5px; }
.qpt-nl-in p { font-size: .85rem; color: var(--gray); margin-bottom: 16px; }
.qpt-nl-form { display: flex; gap: 8px; }
.qpt-nl-form input {
  flex: 1; padding: 10px 14px;
  background: #fff; border: 1px solid var(--border2);
  border-radius: var(--r);
  font-size: .88rem; color: var(--black); font-family: var(--font); outline: none;
}
.qpt-nl-form input:focus { border-color: var(--red); }
.qpt-nl-form input::placeholder { color: var(--silver); }
.qpt-nl-form button {
  padding: 10px 20px;
  background: var(--red); color: #fff;
  border-radius: var(--r); font-weight: 700; font-size: .86rem;
  white-space: nowrap; transition: background .15s;
}
.qpt-nl-form button:hover { background: var(--red2); }
@media(max-width:640px){ .qpt-nl { padding: 36px 20px; } }

/* ══ FOOTER ════════════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--black);
  color: rgba(255,255,255,.45);
  padding: 52px 40px 20px;
}
.qpt-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 36px; margin-bottom: 36px;
}
@media(max-width:900px){ .qpt-footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; } }
@media(max-width:500px){ .qpt-footer-grid { grid-template-columns: 1fr; } .site-footer { padding: 40px 20px 20px; } }
.qpt-fc h4 { font-size: .8rem; font-weight: 700; color: rgba(255,255,255,.9); margin: 0 0 14px; text-transform: uppercase; letter-spacing: .5px; }
.qpt-fc ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 7px; }
.qpt-fc ul li { list-style: none; }
.qpt-fc ul li::before { display: none; content: none; }
.qpt-fc ul li a { font-size: .84rem; color: rgba(255,255,255,.4); transition: color .15s; }
.qpt-fc ul li a:hover { color: var(--red); }
.qpt-footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.qpt-footer-brand-ico {
  width: 32px; height: 32px;
  background: var(--red); border-radius: 4px;
  display: flex; align-items: center; justify-content: center; font-size: .85rem;
}
.qpt-footer-brand-name { font-size: .95rem; font-weight: 800; color: #fff; }
.qpt-footer-desc { font-size: .82rem; color: rgba(255,255,255,.35); line-height: 1.7; margin-bottom: 14px; }
.qpt-footer-socials { display: flex; gap: 7px; }
.qpt-footer-social {
  width: 32px; height: 32px;
  border-radius: 4px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.4); transition: all .15s;
}
.qpt-footer-social:hover { background: var(--red); color: #fff; border-color: var(--red); }
.qpt-footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 18px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 8px;
  font-size: .78rem; color: rgba(255,255,255,.25);
}

/* ══ SCROLL TOP & TOAST ════════════════════════════════════════════════════ */
.qpt-scroll-top {
  position: fixed; bottom: 24px; right: 24px; z-index: 999;
  width: 40px; height: 40px;
  background: var(--red); color: #fff;
  border: none; border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem;
  opacity: 0; pointer-events: none;
  transition: all .2s; cursor: pointer;
  box-shadow: 0 4px 16px rgba(192,0,0,.3);
}
.qpt-scroll-top.show { opacity: 1; pointer-events: all; }
.qpt-scroll-top:hover { background: var(--red2); }
.qpt-toast {
  position: fixed; bottom: 24px; left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--black); color: #fff;
  border-left: 3px solid var(--red);
  border-radius: var(--r); padding: 12px 20px;
  font-size: .86rem; font-weight: 600;
  box-shadow: var(--s3); opacity: 0;
  pointer-events: none; transition: all .25s; z-index: 10000;
  white-space: nowrap;
}
.qpt-toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ══ SINGLE / ARCHIVE ══════════════════════════════════════════════════════ */
.qpt-single-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800; letter-spacing: -.5px;
  line-height: 1.12; color: var(--black);
}
.qpt-entry-content { line-height: 1.8; color: var(--charcoal); }
.qpt-entry-content h2, .qpt-entry-content h3 { font-weight: 700; color: var(--black); margin: 1.5em 0 .6em; }
.qpt-entry-content p { margin-bottom: 1em; }
.qpt-entry-content ul, .qpt-entry-content ol { padding-left: 1.5em; margin-bottom: 1em; }

/* Admin bar */
body.admin-bar .site-header { top: 32px; }
@media(max-width:782px){ body.admin-bar .site-header { top: 46px; } }
