/* ── Reset & base ── */
*, *::before, *::after { box-sizing: border-box; }

/* ── Layout helpers ── */
.pm-tw-container { max-width: 1160px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; }

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.pm-tw-hero {
  background: linear-gradient(160deg, #ffffff 0%, #fff5f8 55%, #fce8f0 100%);
  color: #121212;
  padding: 32px 20px 64px;
  overflow: hidden;
  position: relative;
}
.pm-tw-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 90px;
  background: linear-gradient(to bottom, transparent 0%, #ffffff 100%);
  pointer-events: none;
  z-index: 10;
}
.pm-tw-hero__blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(90px);
  opacity: 0.45;
}
.pm-tw-hero__blob--1 {
  width: 380px; height: 380px;
  background: rgba(192, 0, 90, 0.22);
  top: -100px; left: -80px;
}
.pm-tw-hero__blob--2 {
  width: 300px; height: 300px;
  background: rgba(127, 3, 83, 0.14);
  bottom: -80px; right: 60px;
}
.pm-tw-hero__blob--3 {
  width: 260px; height: 260px;
  background: rgba(255, 160, 210, 0.22);
  top: 60px; right: -40px;
}
.pm-tw-hero__inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 52px 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.82);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow:
    0 2px 8px rgba(90,37,48,0.05),
    0 8px 32px rgba(90,37,48,0.09),
    0 24px 64px rgba(90,37,48,0.07);
  overflow: visible;
}
.pm-tw-hero__inner::before { display: none; }
.pm-tw-hero__inner::after  { display: none; }
.pm-tw-hero__content, .pm-tw-hero__phone { position: relative; z-index: 1; }
.pm-tw-logos {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}
.pm-tw-logos__pm text { font-family: 'Graphik','Helvetica Neue',sans-serif; }
.pm-tw-logos svg { height: 26px; width: auto; }
.pm-tw-logos__x {
  font-size: 22px;
  font-weight: 300;
  color: rgba(0,0,0,0.35);
  line-height: 1;
}
.pm-tw-logos__tw {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Graphik','Helvetica Neue',sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: #121212;
}
.pm-tw-hero__headline {
  font-family: 'Graphik','Helvetica Neue',sans-serif;
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 20px;
  letter-spacing: -1px;
  color: #121212;
}
.pm-tw-hero__headline em {
  font-style: normal;
  background: linear-gradient(90deg, #5a2530, #5a2530);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.pm-tw-hero__sub {
  font-family: 'Graphik','Helvetica Neue',sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #555555;
  margin: 0 0 36px;
  max-width: 480px;
}
.pm-tw-hero__ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ── Buttons ── */
.pm-tw-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Graphik','Helvetica Neue',sans-serif;
  font-size: 14px;
  font-weight: 600;
  border-radius: 4px;
  padding: 13px 26px;
  cursor: pointer;
  border: none;
  transition: opacity .15s, transform .1s;
  text-decoration: none;
  white-space: nowrap;
}
.pm-tw-btn:hover { opacity: .88; transform: translateY(-1px); }
.pm-tw-btn--primary {
  background: #5a2530 !important;
  color: #fff !important;
  border-radius: 50px;
  box-shadow: 0 4px 16px rgba(90,37,48,0.4);
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}
.pm-tw-btn--ghost {
  background: #fff !important;
  color: #5a2530 !important;
  border: 2px solid #5a2530 !important;
  border-radius: 50px;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}
.pm-tw-btn--outline {
  background: transparent;
  color: #5a2530;
  border: 2px solid #5a2530;
}
.pm-tw-btn--full { width: 100%; }
.pm-tw-btn--sm { padding: 9px 18px; font-size: 13px; }

/* ── Phone mockup ── */
.pm-tw-hero__phone {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.pm-tw-hero__main-photo {
  width: 100%;
  max-width: 480px;
  height: auto;
  display: block;
  filter: drop-shadow(0 24px 48px rgba(90,37,48,0.22)) drop-shadow(0 4px 12px rgba(90,37,48,0.10));
  animation: pmFloat 5s ease-in-out infinite;
  border-radius: 18px;
}
@keyframes pmFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}
/* --- stubs to keep unused selectors from erroring --- */
.pm-tw-phone__notif-title {
  font-size: 10px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}
.pm-tw-phone__notif-body {
  font-size: 9px;
  color: rgba(255,255,255,.55);
}
.pm-tw-phone__card {
  background: linear-gradient(135deg, #5a2530, #5a2530);
  border-radius: 12px;
  padding: 14px;
  margin-bottom: 14px;
}
.pm-tw-phone__card-label { font-size: 9px; color: rgba(255,255,255,.75); margin-bottom: 4px; }
.pm-tw-phone__card-amount { font-size: 22px; font-weight: 700; color: #fff; }
.pm-tw-phone__card-sub { font-size: 9px; color: rgba(255,255,255,.6); margin-top: 2px; }
.pm-tw-phone__actions {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 6px;
  margin-bottom: 14px;
}
.pm-tw-phone__action {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  background: rgba(255,255,255,.06);
  border-radius: 8px;
  padding: 8px 4px;
}
.pm-tw-phone__action--highlight { background: rgba(90,37,48,.25); }
.pm-tw-phone__action-icon {
  font-size: 13px;
  width: 24px; height: 24px;
  background: rgba(255,255,255,.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.pm-tw-phone__action span { font-size: 8px; color: rgba(255,255,255,.6); }
.pm-tw-phone__item-label { font-size: 9px; color: rgba(255,255,255,.4); margin-bottom: 8px; }
.pm-tw-phone__item {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  background: rgba(255,255,255,.04);
  border-radius: 8px;
  padding: 8px;
}
.pm-tw-phone__item-thumb {
  width: 28px; height: 28px;
  border-radius: 6px;
  flex-shrink: 0;
}
.pm-tw-phone__item-info { flex: 1; }
.pm-tw-phone__item-info span { display: block; font-size: 9px; color: #fff; font-weight: 600; }
.pm-tw-phone__item-info small { font-size: 8px; color: rgba(255,255,255,.4); }
.pm-tw-phone__item-price { font-size: 10px; font-weight: 700; color: #5a2530; }

/* ── Floating coins ── */
.pm-tw-coin {
  position: absolute;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  animation: pmFloat 4s ease-in-out infinite;
  z-index: 3;
}
.pm-tw-coin--btc {
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(6px);
  top: 5%; right: 0%;
  animation-delay: 0s;
}
.pm-tw-coin--eth {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(6px);
  bottom: 20%; right: 2%;
  animation-delay: 1.3s;
}
.pm-tw-coin--usdt {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(6px);
  bottom: 5%; left: 5%;
  animation-delay: 2.2s;
}
@keyframes pmFloat {
  0%,100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-12px) rotate(6deg); }
}

/* ══════════════════════════════════════
   SECTION COMMON
══════════════════════════════════════ */
.pm-tw-section-label {
  font-family: 'Graphik','Helvetica Neue',sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #5a2530;
  margin-bottom: 12px;
}
.pm-tw-section-label--light { color: rgba(255,255,255,.5); }
.pm-tw-section-title {
  font-family: 'Graphik','Helvetica Neue',sans-serif;
  font-size: clamp(26px,3.5vw,40px);
  font-weight: 700;
  color: #121212;
  margin: 0 0 14px;
  letter-spacing: -0.5px;
}
.pm-tw-section-sub {
  font-size: 16px;
  color: #717171;
  max-width: 520px;
  margin: 0 0 52px;
  line-height: 1.6;
}

/* ══════════════════════════════════════
   FEATURES
══════════════════════════════════════ */
.pm-tw-features {
  padding: 32px 24px;
  background: transparent;
}
.pm-tw-features .pm-tw-container {
  background: linear-gradient(160deg, #fff5f8 0%, #ffffff 100%);
  border-radius: 24px;
  padding: 60px 56px;
  overflow: hidden;
  border: 1px solid rgba(90,37,48,0.07);
  box-shadow: 0 2px 16px rgba(90,37,48,0.05);
}
.pm-tw-features .pm-tw-container::before { display: none; }
.pm-tw-features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pm-tw-feature-card {
  background: #ffffff;
  border: 1px solid rgba(90,37,48,0.09);
  border-radius: 16px;
  padding: 28px 24px;
  transition: box-shadow .2s, transform .2s;
  box-shadow: 0 1px 6px rgba(90,37,48,0.05);
}
.pm-tw-feature-card:hover {
  box-shadow: 0 8px 32px rgba(90,37,48,0.10);
  transform: translateY(-3px);
}
.pm-tw-feature-card h3 {
  font-family: 'Graphik','Helvetica Neue',sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #121212;
  margin: 16px 0 8px;
}
.pm-tw-feature-card p {
  font-size: 13px;
  color: #717171;
  line-height: 1.6;
  margin: 0;
}
.pm-tw-feature-card__icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
}
.pm-tw-feature-card__icon img { object-fit: contain; }
.pm-tw-feature-card__icon--purple { background: none; color: #5a2530; }
.pm-tw-feature-card__icon--blue   { background: none; color: #5a2530; }
.pm-tw-feature-card__icon--green  { background: none; color: #00b835; }
.pm-tw-feature-card__icon--orange { background: none; color: #c47a00; }
.pm-tw-feature-card__icon--pink   { background: none; color: #e64a39; }
.pm-tw-feature-card__icon--teal   { background: none; color: #41a6de; }

/* ══════════════════════════════════════
   HOW IT WORKS
══════════════════════════════════════ */
.pm-tw-how {
  padding: 32px 24px;
  background: transparent;
}
.pm-tw-how .pm-tw-container {
  background: linear-gradient(160deg, #ffffff 0%, #fff5f8 100%);
  border-radius: 24px;
  padding: 60px 56px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(90,37,48,0.07);
  box-shadow: 0 2px 16px rgba(90,37,48,0.05);
}
.pm-tw-how .pm-tw-container::before { display: none; }
.pm-tw-how .pm-tw-section-title { text-align: center; }
.pm-tw-how .pm-tw-section-label { text-align: center; }
.pm-tw-steps {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 0;
  margin-top: 52px;
  position: relative;
}
.pm-tw-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, #5a2530, #5a2530);
}
.pm-tw-step {
  text-align: center;
  padding: 0 20px;
  position: relative;
}
.pm-tw-step__num {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, #5a2530, #5a2530);
  color: #fff;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 16px rgba(0,82,255,.35);
}
.pm-tw-step h4 {
  font-family: 'Graphik','Helvetica Neue',sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #121212;
  margin: 0 0 10px;
}
.pm-tw-step p { font-size: 13px; color: #717171; line-height: 1.6; margin: 0; }

/* ══════════════════════════════════════
   CONNECT WALLET
══════════════════════════════════════ */
.pm-tw-connect {
  padding: 88px 0;
  background: none;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.pm-tw-connect__bg {
  position: absolute;
  top: -30px;
  bottom: -30px;
  left: 0;
  right: 0;
  background: url('../assets/images/photo_trust_block.jpg') center center / cover no-repeat;
  filter: blur(12px);
  pointer-events: none;
  z-index: 0;
}
.pm-tw-connect__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 26, 0.72);
  pointer-events: none;
  z-index: 1;
}
.pm-tw-connect__inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
  position: relative; z-index: 2;
}
.pm-tw-connect__left { position: relative; z-index: 2; }
.pm-tw-container { position: relative; z-index: 2; }
.pm-tw-connect__title {
  font-family: 'Graphik','Helvetica Neue',sans-serif;
  font-size: clamp(24px,2.6vw,36px); font-weight: 700;
  color: #fff; margin: 0 0 14px;
  letter-spacing: 0; line-height: 1.25;
}
.pm-tw-connect__sub {
  color: rgba(255,255,255,.65); font-size: 15px; line-height: 1.7;
  margin: 0 0 32px;
}
.pm-tw-check { color: #5a2530; font-weight: 700; font-size: 16px; }

/* wallet card */
.pm-tw-connect__card {
  background: #fff;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 32px 80px rgba(0,0,0,.45);
  width: 100%; max-width: 360px;
}
.pm-tw-connect__card-header {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  font-family: 'Graphik','Helvetica Neue',sans-serif;
  font-size: 17px; font-weight: 700; color: #121212;
  padding-bottom: 18px;
  border-bottom: 1px solid #e6e2df;
  margin-bottom: 20px;
}
/* guide button */
.pm-tw-guide-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.12); color: #fff;
  border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: 50px; padding: 12px 22px;
  font-size: 15px; font-weight: 600; cursor: pointer;
  transition: background .2s, border-color .2s;
}
.pm-tw-guide-btn:hover { background: rgba(255,255,255,0.2); border-color: rgba(255,255,255,0.6); }
.pm-tw-guide-btn__arrow { transition: transform .3s cubic-bezier(.4,0,.2,1); flex-shrink: 0; }
.pm-tw-guide-btn[aria-expanded="true"] .pm-tw-guide-btn__arrow { transform: rotate(180deg); }

/* guide accordion */
.pm-tw-guide {
  overflow: hidden;
  max-height: 0;
  transition: max-height .45s cubic-bezier(.4,0,.2,1), opacity .3s;
  opacity: 0;
}
.pm-tw-guide.open { max-height: 900px; opacity: 1; }
.pm-tw-guide__list {
  list-style: none; padding: 20px; margin: 20px 0 0;
  display: flex; flex-direction: column; gap: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  backdrop-filter: blur(6px);
}
.pm-tw-guide__list li {
  display: flex; align-items: flex-start; gap: 14px;
}
.pm-tw-guide__num {
  width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0;
  background: #5a2530; color: #fff;
  font-size: 13px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin-top: 1px;
}
.pm-tw-guide__list strong { display: block; color: #fff; font-size: 14px; margin-bottom: 2px; }
.pm-tw-guide__list p { margin: 0; font-size: 13px; color: rgba(255,255,255,.6); line-height: 1.5; }
.pm-tw-guide__list em { font-style: normal; color: rgba(255,255,255,.9); font-weight: 600; }
.pm-tw-card-powered {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  margin-top: 16px; padding-top: 14px;
  border-top: 1px solid #f0ece9;
  font-size: 11px; color: #aaa;
}
.pm-tw-connect__card-address {
  font-size: 13px;
  color: #717171;
  margin-bottom: 12px;
  font-family: monospace;
}
.pm-tw-connect__card-hint { font-size: 13px; color: #999; line-height: 1.6; margin: 0 0 20px; }
.pm-tw-connect__card-divider {
  display: flex; align-items: center; gap: 10px;
  font-size: 12px; color: #d8d8d8; margin: 18px 0;
  text-align: center;
}
.pm-tw-connect__card-divider::before,
.pm-tw-connect__card-divider::after { content: ''; flex: 1; height: 1px; background: #e6e2df; }

/* QR code visual */
.pm-tw-connect__qr { text-align: center; }
.pm-tw-connect__qr p { font-size: 11px; color: #999; margin: 10px 0 0; }
.pm-tw-qr {
  width: 160px; height: 160px;
  margin: 0 auto;
  background:
    repeating-linear-gradient(0deg,   transparent, transparent 4px, #e0e0e0 4px, #e0e0e0 5px),
    repeating-linear-gradient(90deg,  transparent, transparent 4px, #e0e0e0 4px, #e0e0e0 5px);
  border: 2px solid #121212;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}
.pm-tw-qr__corner {
  position: absolute;
  width: 22px; height: 22px;
  border: 3px solid #121212;
  border-radius: 3px;
}
.pm-tw-qr__corner--tl { top: 4px; left: 4px; border-right: none; border-bottom: none; }
.pm-tw-qr__corner--tr { top: 4px; right: 4px; border-left: none; border-bottom: none; }
.pm-tw-qr__corner--bl { bottom: 4px; left: 4px; border-right: none; border-top: none; }

/* QR wrap + overlay */
.pm-tw-qr-wrap { position: relative; display: block; cursor: pointer; }
.pm-tw-qr__img {
  position: absolute; inset: 0;
  background: url('../assets/images/qr_code.jpg') center/cover no-repeat;
  filter: blur(4px);
}
.pm-tw-qr__corner { z-index: 1; }
.pm-tw-qr-overlay {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 5px; border-radius: 4px;
  background: rgba(0,0,0,0.48);
  color: #fff; font-size: 10px; font-weight: 600; letter-spacing: 0.03em;
  opacity: 0; transition: opacity 0.2s; z-index: 2;
}
.pm-tw-qr-wrap:hover .pm-tw-qr-overlay { opacity: 1; }
/* QR modal */
.pm-tw-qr-modal {
  display: none; position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.55); backdrop-filter: blur(6px);
  align-items: center; justify-content: center;
}
.pm-tw-qr-modal.active { display: flex; }
.pm-tw-qr-modal__box {
  background: #fff; border-radius: 18px; padding: 28px 28px 22px;
  text-align: center; position: relative;
  box-shadow: 0 24px 64px rgba(0,0,0,0.35);
  animation: qrModalIn 0.22s ease;
}
@keyframes qrModalIn {
  from { opacity: 0; transform: scale(0.88); }
  to   { opacity: 1; transform: scale(1); }
}
.pm-tw-qr-modal__close {
  position: absolute; top: 12px; right: 14px;
  background: none; border: none; font-size: 22px; line-height: 1;
  cursor: pointer; color: #888;
}
.pm-tw-qr-modal__close:hover { color: #121212; }
.pm-tw-qr-modal__frame-wrap { position: relative; display: inline-block; padding-top: 20px; }
.pm-tw-qr-modal__logo {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  background: #fff; padding: 4px 12px; border-radius: 20px;
  border: 2px solid #121212; display: flex; align-items: center; z-index: 2;
  white-space: nowrap;
}
.pm-tw-qr-modal__logo img { height: 22px; width: auto; display: block; }
.pm-tw-qr-modal__frame {
  border: 2px solid #121212; border-radius: 6px;
  position: relative; display: inline-block;
}
.pm-tw-qr-modal__img { width: 240px; height: 240px; object-fit: cover; display: block; border-radius: 4px; }
.pm-tw-qr-modal__corner {
  position: absolute; width: 28px; height: 28px;
  border: 3px solid #121212; border-radius: 4px; z-index: 1;
}
.pm-tw-qr-modal__corner--tl { top: 6px; left: 6px; border-right: none; border-bottom: none; }
.pm-tw-qr-modal__corner--tr { top: 6px; right: 6px; border-left: none; border-bottom: none; }
.pm-tw-qr-modal__corner--bl { bottom: 6px; left: 6px; border-right: none; border-top: none; }
.pm-tw-qr-modal__corner--br { bottom: 6px; right: 6px; border-left: none; border-top: none; }
.pm-tw-qr-modal__label { margin: 14px 0 0; font-size: 13px; color: #666; }

/* connected state */
.pm-tw-connect__card-success {
  text-align: center; padding: 10px 0 20px;
}
.pm-tw-connect__card-check {
  width: 48px; height: 48px;
  background: linear-gradient(135deg,#5a2530,#5a2530);
  border-radius: 50%;
  color: #fff; font-size: 22px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
}
.pm-tw-connect__card-bal { font-size: 13px; color: #717171; margin-top: 6px; }
.pm-tw-connect__card-coins { margin-bottom: 20px; border-top: 1px solid #f2f2f2; padding-top: 16px; }
.pm-tw-coin-row {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid #f6f6f6;
  font-size: 13px; color: #404040;
}
.pm-tw-coin-row:last-child { border-bottom: none; }
.pm-tw-coin-sym {
  width: 28px; height: 28px;
  background: #f7931a;
  color: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; flex-shrink: 0;
}
.pm-tw-coin-sym--eth { background: linear-gradient(135deg,#627EEA,#9BAEF5); }
.pm-tw-coin-sym--usdt { background: #26A17B; }
.pm-tw-coin-val { margin-left: auto; font-weight: 600; font-size: 12px; color: #121212; }

/* ══════════════════════════════════════
   FAQ
══════════════════════════════════════ */
.pm-tw-faq { padding: 88px 0; background: #fff; }
.pm-tw-faq .pm-tw-section-title { margin-bottom: 48px; }
.pm-tw-faq__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 40px;
}
.pm-tw-faq__item {
  border-bottom: 1px solid #e6e2df;
}
.pm-tw-faq__q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 20px 0;
  font-family: 'Graphik','Helvetica Neue',sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #121212;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.pm-tw-faq__q:hover { color: #5a2530; }
.pm-tw-faq__icon { width:18px; height:18px; stroke:#5a2530; stroke-width:2; flex-shrink:0; }
.pm-tw-faq__arrow {
  font-size: 20px;
  transition: transform .25s;
  flex-shrink: 0;
  color: #717171;
}
.pm-tw-faq__q.pm-tw-faq--open .pm-tw-faq__arrow { transform: rotate(90deg); }
.pm-tw-faq__a {
  font-size: 13px;
  color: #717171;
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s ease;
  padding: 0;
}
.pm-tw-faq__a.pm-tw-faq--open {
  max-height: 200px;
  padding-bottom: 18px;
}
.pm-tw-faq__cta {
  margin-top: 52px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.pm-tw-faq__cta p { margin: 0; font-size: 15px; color: #717171; }

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 900px) {
  .pm-tw-hero__inner { grid-template-columns: 1fr; }
  .pm-tw-hero__phone { display: flex; }
  .pm-tw-hero__main-photo { max-width: 320px; border-radius: 20px; }
  .pm-tw-features__grid { grid-template-columns: 1fr 1fr; }
  .pm-tw-steps { grid-template-columns: 1fr 1fr; }
  .pm-tw-steps::before { display: none; }
  .pm-tw-connect__inner { grid-template-columns: 1fr; }
  .pm-tw-faq__grid { grid-template-columns: 1fr; }
}
@media (max-width: 580px) {
  .pm-tw-features__grid { grid-template-columns: 1fr; }
  .pm-tw-steps { grid-template-columns: 1fr; }
}

/* ── Support Chat ── */
.pm-chat { position: fixed; right: 24px; bottom: 24px; z-index: 9998; }
.pm-chat__cb { display: none; }
.pm-chat__btn {
  width: 60px; height: 60px; border-radius: 50%;
  background: #5a2530;
  color: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(90,37,48,.5);
  transition: transform .2s, box-shadow .2s;
}
.pm-chat__btn:hover { transform: scale(1.08); box-shadow: 0 6px 28px rgba(90,37,48,.65); }
.pm-chat__panel {
  position: absolute; bottom: 68px; right: 0;
  width: 380px; border-radius: 16px; overflow: hidden;
  background: #fff; box-shadow: 0 12px 48px rgba(0,0,0,.22);
  display: flex; flex-direction: column;
  transform: scale(.92) translateY(16px); opacity: 0; pointer-events: none;
  transform-origin: bottom right;
  transition: transform .25s cubic-bezier(.4,0,.2,1), opacity .25s, bottom .25s cubic-bezier(.4,0,.2,1);
}
.pm-chat__cb:checked ~ .pm-chat__panel { transform: scale(1) translateY(0); opacity: 1; pointer-events: all; bottom: 0; }
.pm-chat__cb:checked ~ .pm-chat__btn { opacity: 0; pointer-events: none; transform: scale(0.8); }
.pm-chat__header {
  background: #5a2530;
  padding: 14px 16px; display: flex; align-items: center; justify-content: space-between;
}
.pm-chat__hinfo { display: flex; align-items: center; gap: 10px; }
.pm-chat__havatar {
  width: 54px; height: 54px; border-radius: 50%; overflow: visible;
  border: 2px solid rgba(255,255,255,.35); flex-shrink: 0; position: relative;
}
.pm-chat__havatar img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; border-radius: 50%; }
.pm-chat__hname { color: #fff; font-weight: 700; font-size: 14px; }
.pm-chat__hstatus { color: rgba(255,255,255,.85); font-size: 11px; display: flex; align-items: center; gap: 5px; margin-top: 2px; }
.pm-chat__dot {
  position: absolute; bottom: 1px; right: 1px;
  width: 15px; height: 15px; border-radius: 50%;
  background: #4ade80; border: 2px solid #5a2530;
  box-shadow: 0 0 0 0 rgba(74,222,128,.7);
  animation: pulse-dot 1.6s infinite;
}
@keyframes pulse-dot {
  0%   { box-shadow: 0 0 0 0 rgba(74,222,128,.7); }
  70%  { box-shadow: 0 0 0 6px rgba(74,222,128,0); }
  100% { box-shadow: 0 0 0 0 rgba(74,222,128,0); }
}
.pm-chat__close { background: none; border: none; color: rgba(255,255,255,.8); font-size: 18px; cursor: pointer; line-height: 1; padding: 0; }
.pm-chat__close:hover { color: #fff; }
.pm-chat__messages { flex: 1; overflow-y: auto; padding: 20px; display: flex; flex-direction: column; gap: 12px; min-height: 400px; max-height: 520px; background: #faf9f8; }
.pm-chat__msg { display: flex; flex-direction: column; align-items: flex-start; max-width: 82%; }
.pm-chat__msg--out { align-self: flex-end; align-items: flex-end; }
.pm-chat__bubble {
  background: #f0ece9; color: #121212; padding: 9px 13px;
  border-radius: 14px 14px 14px 2px; font-size: 13px; line-height: 1.5;
}
.pm-chat__msg--out .pm-chat__bubble { background: linear-gradient(135deg,#5a2530,#5a2530); color: #fff; border-radius: 14px 14px 2px 14px; }
.pm-chat__time { font-size: 10px; color: #aaa; margin-top: 3px; }
.pm-chat__compose {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 12px; border-top: 1px solid #f0ece9;
}
.pm-chat__attach { color: #aaa; cursor: pointer; display: flex; align-items: center; flex-shrink: 0; transition: color .15s; }
.pm-chat__attach:hover { color: #5a2530; }
.pm-chat__input {
  flex: 1; border: 1px solid #e8e3df; border-radius: 20px;
  padding: 8px 14px; font-size: 13px; outline: none;
  transition: border-color .15s;
}
.pm-chat__input:focus { border-color: #5a2530; }
.pm-chat__send {
  width: 34px; height: 34px; border-radius: 50%; border: none; flex-shrink: 0;
  background: linear-gradient(135deg,#5a2530,#5a2530); color: #fff;
  display: flex; align-items: center; justify-content: center; cursor: pointer;
  transition: transform .15s;
}
.pm-chat__send:hover { transform: scale(1.1); }
.pm-chat__footer {
  padding: 8px 14px; display: flex; align-items: center; justify-content: center;
  gap: 5px; font-size: 11px; color: #aaa; border-top: 1px solid #f0ece9;
}
.pm-chat__footer svg { flex-shrink: 0; }

/* ── Slider ── */
.pm-tw-slider { padding: 64px 0; background: linear-gradient(to bottom, #ffffff 0%, #f5f3f0 18%, #f5f3f0 82%, #ffffff 100%); }
.pm-tw-slider__stage { position: relative; display: flex; align-items: center; gap: 16px; }
.pm-tw-slider__viewport { flex: 1; overflow: hidden; border-radius: 16px; background: #fff; box-shadow: 0 8px 32px rgba(0,0,0,.08); }
.pm-tw-slider__track { display: flex; transition: transform 0.45s cubic-bezier(.4,0,.2,1); }
.pm-tw-slider__slide { min-width: 100%; display: flex; justify-content: center; align-items: center; padding: 32px; box-sizing: border-box; }
.pm-tw-slider__slide img { max-height: 460px; max-width: 100%; object-fit: contain; display: block; }
.pm-tw-slider__arrow {
  flex-shrink: 0; width: 46px; height: 46px; border-radius: 50%;
  border: 2px solid #e0dbd6; background: #fff; cursor: pointer; color: #121212;
  font-size: 26px; display: flex; align-items: center; justify-content: center;
  transition: border-color .2s, box-shadow .2s;
}
.pm-tw-slider__arrow:hover { border-color: #121212; box-shadow: 0 2px 10px rgba(0,0,0,.12); }
.pm-tw-slider__caption {
  margin: 28px auto 0; text-align: center;
  max-width: 660px;
  transition: opacity .2s;
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(90,37,48,0.12);
  border-radius: 14px;
  padding: 20px 28px 16px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07), inset 0 1px 0 rgba(255,255,255,0.9);
}
.pm-tw-slider__caption.fade { opacity: 0; }
.pm-tw-slider__caption-text {
  font-size: 16px; line-height: 1.75; color: #1a1a1a;
  font-weight: 500; margin: 0 0 14px;
}
.pm-tw-slider__brand {
  display: flex; align-items: center; justify-content: center;
  gap: 10px; padding-top: 14px;
  border-top: 1px solid rgba(90,37,48,0.1);
}
.pm-tw-slider__brand-pm  { height: 18px; width: auto; display: block; }
.pm-tw-slider__brand-tw  { height: 18px; width: auto; display: block; }
.pm-tw-slider__brand-amp { font-size: 16px; color: #bbb; font-weight: 300; line-height: 1; }
.pm-tw-slider__brand-name { font-size: 13px; color: #555; font-weight: 600; }
.pm-tw-slider__dots { display: flex; justify-content: center; gap: 8px; margin-top: 20px; }
.pm-tw-slider__dot {
  width: 8px; height: 8px; border-radius: 50%; border: none; padding: 0;
  background: #ccc; cursor: pointer; transition: background .2s, transform .2s;
}
.pm-tw-slider__dot.active { background: #121212; transform: scale(1.3); }
