/* =====================================================
   PAGE TEMPLATE — dùng chung cho các trang nội dung
   VPS HC — assets/css/page-template.css
   ===================================================== */

/* ── Hero ── */
.pt-hero {
  padding: 100px 0 70px;
  position: relative;
  overflow: hidden;
}
.pt-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.pt-hero .container { position: relative; z-index: 2; }

/* Badge trên hero */
.pt-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50px;
  padding: 6px 16px;
  color: rgba(255,255,255,.9);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.pt-hero-badge .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #4ade80;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: .4; }
}

/* Breadcrumb */
.pt-breadcrumb {
  font-size: .85rem;
  margin-bottom: 22px;
}
.pt-breadcrumb a {
  color: rgba(255,255,255,.6);
  text-decoration: none;
  transition: color .2s;
}
.pt-breadcrumb a:hover { color: #fff; }
.pt-breadcrumb .sep { color: rgba(255,255,255,.35); margin: 0 10px; }
.pt-breadcrumb .current { color: rgba(255,255,255,.9); }

/* Quick Stats Row */
.pt-hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}
.pt-hero-stat {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 12px;
  padding: 12px 20px;
  color: #fff;
}
.pt-hero-stat .stat-label { font-size: .68rem; opacity: .6; text-transform: uppercase; letter-spacing: 1px; }
.pt-hero-stat .stat-val   { font-size: 1rem; font-weight: 700; }

/* ── Pricing Section ── */
.pt-pricing-section {
  padding: 80px 0;
  background: #f8fafc;
}
.pt-section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--pt-accent, #2563eb);
  border-bottom: 2px solid var(--pt-accent, #2563eb);
  padding-bottom: 4px;
  margin-bottom: 14px;
}
.pt-section-title {
  font-size: 2rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.2;
}
.pt-section-sub {
  color: #64748b;
  font-size: 1rem;
  margin-top: 10px;
  max-width: 580px;
}

/* Pricing Cards */
.pt-pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 22px;
  margin-top: 40px;
}
.pt-plan-card {
  background: #fff;
  border: 1.5px solid #e2e8f0;
  border-radius: 18px;
  padding: 28px 24px 24px;
  position: relative;
  transition: box-shadow .25s, transform .25s, border-color .25s;
}
.pt-plan-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,.09);
  transform: translateY(-4px);
}
.pt-plan-card.popular {
  border-color: var(--pt-accent, #2563eb);
  box-shadow: 0 0 0 1px var(--pt-accent, #2563eb), 0 12px 40px rgba(37,99,235,.12);
}
.pt-popular-badge {
  position: absolute;
  top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--pt-accent, #2563eb);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
}
.pt-plan-name {
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 4px;
}
.pt-plan-price {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--pt-accent, #2563eb);
  line-height: 1;
  margin: 14px 0 4px;
}
.pt-plan-price sup { font-size: .9rem; vertical-align: top; margin-top: 6px; }
.pt-plan-price .period {
  font-size: .8rem;
  font-weight: 400;
  color: #94a3b8;
}
.pt-plan-divider {
  height: 1px;
  background: #e2e8f0;
  margin: 16px 0;
}
.pt-plan-specs {
  list-style: none;
  padding: 0; margin: 0;
}
.pt-plan-specs li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: .87rem;
  color: #475569;
  padding: 5px 0;
  border-bottom: 1px solid #f1f5f9;
}
.pt-plan-specs li:last-child { border-bottom: none; }
.pt-plan-specs li i {
  color: var(--pt-accent, #2563eb);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 1px;
}
.pt-plan-specs li .spec-val { font-weight: 600; color: #0f172a; }
.pt-plan-btn {
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 20px;
  padding: 11px;
  border-radius: 10px;
  background: var(--pt-accent, #2563eb);
  color: #fff;
  font-weight: 700;
  font-size: .9rem;
  text-decoration: none;
  transition: opacity .2s, transform .1s;
}
.pt-plan-btn:hover { opacity: .88; color: #fff; transform: scale(1.01); }
.pt-plan-card.popular .pt-plan-btn { background: var(--pt-accent, #2563eb); }

/* ── Features Section ── */
.pt-features-section {
  padding: 80px 0;
  background: #fff;
}
.pt-feat-card {
  display: flex;
  gap: 18px;
  padding: 22px 20px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  height: 100%;
  transition: box-shadow .2s;
}
.pt-feat-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,.07); }
.pt-feat-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 1.3rem;
  background: var(--pt-accent-light, rgba(37,99,235,.1));
  color: var(--pt-accent, #2563eb);
}
.pt-feat-title { font-size: .96rem; font-weight: 700; color: #0f172a; margin-bottom: 6px; }
.pt-feat-desc  { font-size: .85rem; color: #64748b; line-height: 1.6; margin: 0; }

/* ── CTA Section ── */
.pt-cta-section {
  padding: 70px 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.pt-cta-section::after {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(37,99,235,.1);
  right: -80px; top: -80px;
  pointer-events: none;
}
.pt-cta-section .container { position: relative; z-index: 1; }

/* ── Policy / Content pages ── */
.pt-policy-wrap {
  padding: 60px 0 80px;
}
.pt-policy-content {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 48px 56px;
  line-height: 1.85;
  color: #334155;
  font-size: .97rem;
}
@media (max-width: 767px) {
  .pt-policy-content { padding: 28px 22px; }
}
.pt-policy-content h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #0f172a;
  margin: 36px 0 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid #e2e8f0;
}
.pt-policy-content h2:first-child { margin-top: 0; }
.pt-policy-content h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1e293b;
  margin: 20px 0 8px;
}
.pt-policy-content ul {
  padding-left: 20px;
}
.pt-policy-content ul li {
  margin-bottom: 8px;
}
.pt-policy-content .policy-note {
  background: #eff6ff;
  border-left: 4px solid #2563eb;
  padding: 14px 18px;
  border-radius: 0 8px 8px 0;
  margin: 20px 0;
  font-size: .92rem;
  color: #1e40af;
}
.pt-policy-toc {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 22px 28px;
  margin-bottom: 36px;
}
.pt-policy-toc h6 {
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #64748b;
  margin-bottom: 12px;
}
.pt-policy-toc ol {
  margin: 0; padding-left: 20px;
}
.pt-policy-toc ol li { margin-bottom: 4px; font-size: .9rem; }
.pt-policy-toc ol li a { color: #2563eb; text-decoration: none; }
.pt-policy-toc ol li a:hover { text-decoration: underline; }

/* ── About Page ── */
.pt-about-section { padding: 80px 0; background: #fff; }
.pt-about-section + .pt-about-section { background: #f8fafc; }

/* Stats bar */
.pt-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: #e2e8f0;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  overflow: hidden;
  margin-top: 60px;
}
.pt-stat-item {
  background: #fff;
  padding: 36px 24px;
  text-align: center;
}
.pt-stat-num {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--pt-accent, #2563eb);
  line-height: 1;
  margin-bottom: 6px;
}
.pt-stat-label {
  font-size: .82rem;
  color: #64748b;
  font-weight: 500;
}

/* Value cards grid */
.pt-values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.pt-value-card {
  background: #fff;
  border: 1.5px solid #e2e8f0;
  border-radius: 14px;
  padding: 24px 22px;
  transition: box-shadow .2s, border-color .2s;
}
.pt-value-card:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,.07);
  border-color: var(--pt-accent, #2563eb);
}
.pt-value-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--pt-accent-light, rgba(37,99,235,.1));
  color: var(--pt-accent, #2563eb);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 14px;
}
.pt-value-title { font-size: .95rem; font-weight: 700; color: #0f172a; margin-bottom: 6px; }
.pt-value-desc  { font-size: .84rem; color: #64748b; line-height: 1.6; margin: 0; }

/* Timeline / Mission section */
.pt-mission-section { padding: 80px 0; background: #f8fafc; }
.pt-mission-inner {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  overflow: hidden;
}
.pt-mission-text { padding: 52px 52px 52px 52px; }
.pt-mission-img  { background: #f1f5f9; min-height: 340px; display: flex; align-items: center; justify-content: center; padding: 32px; }
.pt-mission-img img { max-height: 300px; width: 100%; object-fit: contain; }
@media (max-width: 767px) {
  .pt-mission-text { padding: 32px 24px; }
}

/* Team / person card */
.pt-person-card {
  background: #fff;
  border: 1.5px solid #e2e8f0;
  border-radius: 16px;
  padding: 28px 24px 24px;
  text-align: center;
  transition: box-shadow .2s;
}
.pt-person-card:hover { box-shadow: 0 10px 30px rgba(0,0,0,.08); }
.pt-person-avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--pt-accent-light, rgba(37,99,235,.1));
  color: var(--pt-accent, #2563eb);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 16px;
}
.pt-person-name { font-size: 1rem; font-weight: 700; color: #0f172a; margin-bottom: 2px; }
.pt-person-role { font-size: .82rem; color: #64748b; margin-bottom: 0; }

/* CTA strip inside about */
.pt-about-cta {
  background: linear-gradient(135deg, var(--pt-accent,#2563eb) 0%, #1d4ed8 100%);
  border-radius: 20px;
  padding: 48px 40px;
  text-align: center;
  margin-top: 60px;
}
.pt-about-cta h3 { font-size: 1.6rem; font-weight: 800; color: #fff; margin-bottom: 10px; }
.pt-about-cta p  { color: rgba(255,255,255,.82); max-width: 480px; margin: 0 auto 24px; font-size: .97rem; }
@media (max-width: 575px) {
  .pt-about-cta { padding: 32px 20px; }
  .pt-about-cta h3 { font-size: 1.3rem; }
}

/* ── FAQs Page ── */
.pt-faq-section { padding: 80px 0; background: #fff; }

/* Category tabs */
.pt-faq-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 52px;
}
.pt-faq-nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 50px;
  border: 1.5px solid #e2e8f0;
  background: #fff;
  color: #475569;
  font-size: .88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
  text-decoration: none;
}
.pt-faq-nav-btn:hover, .pt-faq-nav-btn.active {
  background: var(--pt-accent, #2563eb);
  border-color: var(--pt-accent, #2563eb);
  color: #fff;
}

/* FAQ group header */
.pt-faq-group-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.pt-faq-group-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--pt-accent-light, rgba(37,99,235,.1));
  color: var(--pt-accent, #2563eb);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}
.pt-faq-group-title h5 { font-size: 1.05rem; font-weight: 700; color: #0f172a; margin: 0; }

/* Accordion custom styling */
.pt-faq-accordion .accordion-item {
  border: 1.5px solid #e2e8f0;
  border-radius: 12px !important;
  overflow: hidden;
  margin-bottom: 10px;
}
.pt-faq-accordion .accordion-item:last-child { margin-bottom: 0; }
.pt-faq-accordion .accordion-button {
  font-size: .93rem;
  font-weight: 600;
  color: #0f172a;
  background: #fff;
  padding: 18px 20px;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.pt-faq-accordion .accordion-button:not(.collapsed) {
  color: var(--pt-accent, #2563eb);
  background: #f8fafc;
}
.pt-faq-accordion .accordion-button::after {
  filter: none;
}
.pt-faq-accordion .accordion-body {
  font-size: .9rem;
  color: #475569;
  line-height: 1.75;
  padding: 4px 20px 20px;
  background: #f8fafc;
}
.pt-faq-accordion .accordion-body ul {
  padding-left: 0;
  list-style: none;
  margin: 0;
}
.pt-faq-accordion .accordion-body ul li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 4px 0;
}
.pt-faq-accordion .accordion-body ul li i {
  color: var(--pt-accent, #2563eb);
  flex-shrink: 0;
  margin-top: 3px;
}

/* Contact card inside FAQ */
.pt-faq-contact-card {
  background: linear-gradient(135deg, #f0f6ff 0%, #e8f1ff 100%);
  border: 1px solid #c7d9f9;
  border-radius: 20px;
  padding: 40px 36px;
  text-align: center;
  margin-top: 56px;
}
.pt-faq-contact-card h4 { font-size: 1.4rem; font-weight: 800; color: #0f172a; margin-bottom: 10px; }
.pt-faq-contact-card p  { color: #64748b; max-width: 460px; margin: 0 auto 24px; font-size: .95rem; }

/* ── Section divider ── */
.pt-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, #e2e8f0, transparent);
  margin: 0;
}

/* ══════════════════════════════════════
   SLA Page
   ══════════════════════════════════════ */
.pt-sla-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 28px 0;
}
.pt-sla-tier {
  border: 1.5px solid #e2e8f0;
  border-radius: 14px;
  overflow: hidden;
}
.pt-sla-tier.popular { border-color: var(--pt-accent, #2563eb); }
.pt-sla-tier-head {
  padding: 14px 18px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .9rem;
  flex-wrap: wrap;
}
.pt-sla-tier-head i { font-size: 1.1rem; }
.pt-sla-tier ul {
  list-style: none;
  padding: 14px 18px;
  margin: 0;
}
.pt-sla-tier ul li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: .86rem;
  color: #475569;
  padding: 5px 0;
  border-bottom: 1px solid #f1f5f9;
}
.pt-sla-tier ul li:last-child { border-bottom: none; }
.pt-sla-tier ul li i { color: var(--pt-accent, #2563eb); flex-shrink: 0; margin-top: 2px; }
.pt-sla-table { margin: 20px 0; font-size: .88rem; }
.pt-sla-table th { background: #f1f5f9; color: #0f172a; font-weight: 700; }
@media (max-width: 767px) {
  .pt-sla-tiers { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════
   Affiliate Page
   ══════════════════════════════════════ */
.pt-aff-step {
  background: #fff;
  border: 1.5px solid #e2e8f0;
  border-radius: 16px;
  padding: 36px 24px 24px;
  text-align: center;
  position: relative;
  height: 100%;
  transition: box-shadow .2s, border-color .2s;
}
.pt-aff-step:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,.07);
  border-color: var(--pt-accent, #2563eb);
}
.pt-aff-step-num {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--pt-accent, #2563eb);
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  position: absolute;
  top: -18px; left: 50%; transform: translateX(-50%);
  box-shadow: 0 4px 12px rgba(0,0,0,.15);
}
.pt-aff-step-icon {
  font-size: 2.4rem;
  color: var(--pt-accent, #2563eb);
  display: block;
  margin-bottom: 14px;
}
.pt-aff-step h5 { font-size: 1.05rem; font-weight: 700; color: #0f172a; margin-bottom: 10px; }
.pt-aff-step p  { font-size: .88rem; color: #64748b; line-height: 1.65; margin: 0; }
.pt-aff-step p a { color: var(--pt-accent, #2563eb); }

/* Commission tier cards */
.pt-comm-card {
  background: #fff;
  border: 1.5px solid #e2e8f0;
  border-radius: 16px;
  padding: 28px 22px 22px;
  text-align: center;
  position: relative;
  height: 100%;
  transition: box-shadow .2s, border-color .2s;
}
.pt-comm-card.popular {
  border-color: var(--pt-accent, #2563eb);
  box-shadow: 0 8px 28px rgba(22,163,74,.12);
}
.pt-comm-badge {
  position: absolute;
  top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--pt-accent, #2563eb);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
}
.pt-comm-level {
  font-size: .82rem; font-weight: 700;
  color: #64748b; text-transform: uppercase;
  letter-spacing: 1px; margin-bottom: 10px;
}
.pt-comm-rate {
  font-size: 2.8rem; font-weight: 800;
  color: var(--pt-accent, #2563eb);
  line-height: 1; margin-bottom: 6px;
}
.pt-comm-rate sup { font-size: 1.2rem; vertical-align: top; margin-top: 8px; }
.pt-comm-req { font-size: .8rem; color: #94a3b8; margin-bottom: 16px; }
.pt-comm-card ul {
  list-style: none; padding: 0; margin: 0;
  text-align: left; border-top: 1px solid #f1f5f9; padding-top: 14px;
}
.pt-comm-card ul li {
  display: flex; align-items: center;
  gap: 8px; font-size: .85rem;
  color: #475569; padding: 5px 0;
}
.pt-comm-card ul li i { color: var(--pt-accent, #2563eb); flex-shrink: 0; }

/* ══════════════════════════════════════
   Promotions Page
   ══════════════════════════════════════ */
.pt-promo-section { padding: 80px 0; }
.pt-promo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 40px;
}
.pt-promo-card {
  background: #fff;
  border: 1.5px solid #e2e8f0;
  border-radius: 18px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: box-shadow .25s, transform .25s;
}
.pt-promo-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,.09);
  transform: translateY(-4px);
  color: inherit;
}
.pt-promo-card-thumb {
  aspect-ratio: 16/7;
  overflow: hidden;
  background: #f1f5f9;
  flex-shrink: 0;
}
.pt-promo-card-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.pt-promo-card:hover .pt-promo-card-thumb img { transform: scale(1.04); }
.pt-promo-card-thumb-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem; color: #cbd5e1;
  aspect-ratio: 16/7;
}
.pt-promo-card-body { padding: 20px 22px 12px; flex: 1; }
.pt-promo-card-badge {
  display: inline-block;
  background: rgba(220,38,38,.1);
  color: #dc2626;
  font-size: .72rem; font-weight: 700;
  padding: 3px 10px; border-radius: 20px;
  margin-bottom: 10px;
}
.pt-promo-card-title {
  font-size: 1rem; font-weight: 700;
  color: #0f172a; margin-bottom: 8px; line-height: 1.4;
}
.pt-promo-card-excerpt {
  font-size: .86rem; color: #64748b;
  line-height: 1.6; margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.pt-promo-card-footer {
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 12px 22px; margin-top: auto;
  border-top: 1px solid #f1f5f9;
  font-size: .8rem; color: #94a3b8;
}
.pt-promo-empty {
  text-align: center;
  padding: 60px 20px;
  background: #fff;
  border: 1.5px dashed #e2e8f0;
  border-radius: 18px;
  color: #94a3b8;
  margin-top: 40px;
}
.pt-promo-empty i { font-size: 3rem; display: block; margin-bottom: 12px; }
.pt-promo-empty p { margin: 0; font-size: .95rem; }
@media (max-width: 991px) {
  .pt-promo-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575px) {
  .pt-promo-grid { grid-template-columns: 1fr; }
}

/* ── Responsive ── */
@media (max-width: 991px) {
  .pt-pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .pt-hero { padding: 80px 0 50px; }
  .pt-stats-row { grid-template-columns: repeat(2, 1fr); }
  .pt-values-grid { grid-template-columns: 1fr; }
}
@media (max-width: 575px) {
  .pt-pricing-grid { grid-template-columns: 1fr; }
  .pt-section-title { font-size: 1.6rem; }
  .pt-hero { padding: 60px 0 40px; }
  .pt-stats-row { grid-template-columns: 1fr 1fr; }
  .pt-faq-contact-card { padding: 28px 20px; }
  .pt-mission-text { padding: 24px 18px; }
}
