/* GST product detail pages (WCFM + WooCommerce Pro) */
.gst-detail-page {
  --navy:#1b2a52; --navy-dark:#11193a; --red:#e23744; --red-dark:#c92a36;
  --bg:#f4f6fb; --card:#ffffff; --text:#27314a; --muted:#6b7488;
  --green:#1faa59; --border:#e6e9f2;
  font-family: 'Segoe UI', Roboto, -apple-system, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}
.gst-detail-page a { text-decoration: none; }
.gst-detail-page .hero {
  background:linear-gradient(135deg,var(--navy) 0%, var(--navy-dark) 100%);
  color:#fff;
  padding:70px 6% 90px;
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:40px;
  }
.gst-detail-page .hero-content {flex:1 1 460px;}
.gst-detail-page .hero-badge {
  display:inline-block;
  background:rgba(226,55,68,.15);
  border:1px solid var(--red);
  color:#ff8a90;
  padding:5px 14px;
  border-radius:30px;
  font-size:.8rem;
  letter-spacing:.5px;
  margin-bottom:18px;
  }
.gst-detail-page .hero h1 {
  font-size:2.6rem;font-weight:800;line-height:1.2;margin-bottom:18px;
  color:#fff;
}
.gst-detail-page .hero h1 em {color:#ff8a90;font-style:normal;}
.gst-detail-page .hero h1:hover,
.gst-detail-page .hero h1:focus,
.gst-detail-page .hero:hover h1,
.gst-detail-page .hero-content:hover h1 {
  color:#fff;
}
.gst-detail-page .hero h1 em:hover,
.gst-detail-page .hero h1 em:focus,
.gst-detail-page .hero:hover h1 em,
.gst-detail-page .hero h1:hover em {
  color:#ff8a90;
}
.gst-detail-page .hero p {color:#c6cbe0;font-size:1.05rem;max-width:540px;margin-bottom:30px;}
.gst-detail-page .price-tag {
  display:flex;align-items:baseline;gap:10px;margin-bottom:30px;
  }
.gst-detail-page .price-tag .amt {font-size:2.2rem;font-weight:800;color:#fff;}
.gst-detail-page .price-tag .term {color:#9aa2c0;font-size:.95rem;}
.gst-detail-page .cta-row {display:flex;gap:16px;flex-wrap:wrap;}
.gst-detail-page .btn {
  display:inline-block;
  padding:14px 30px;
  border-radius:8px;
  font-weight:700;
  font-size:.95rem;
  cursor:pointer;
  border:none;
  }
.gst-detail-page .btn-red {background:var(--red);color:#fff;transition:.2s;}
.gst-detail-page .btn-red:hover,
.gst-detail-page .btn-red:focus,
.gst-detail-page .btn-red:active {background:var(--red-dark);color:#fff;}
.gst-detail-page .btn-outline {background:transparent;color:#fff;border:1px solid rgba(255,255,255,.4);}
.gst-detail-page .btn-outline:hover,
.gst-detail-page .btn-outline:focus,
.gst-detail-page .btn-outline:active {border-color:#fff;color:#fff;background:transparent;}
.gst-detail-page .hero-visual {
  flex:1 1 380px;
  min-width:300px;
  }
.gst-detail-page .hero-visual .panel {
  background:#fff;
  border-radius:14px;
  padding:22px;
  box-shadow:0 30px 60px rgba(0,0,0,.35);
  }
.gst-detail-page .hero-visual .panel-head {display:flex;justify-content:space-between;align-items:center;margin-bottom:16px;}
.gst-detail-page .hero-visual .panel-head h4 {color:var(--navy);font-size:1rem;}
.gst-detail-page .hero-visual .dot-row span {display:inline-block;width:8px;height:8px;border-radius:50%;background:var(--border);margin-left:4px;}
.gst-detail-page .checklist-mini {list-style:none;}
.gst-detail-page .checklist-mini li {display:flex;align-items:center;gap:10px;padding:9px 0;border-bottom:1px solid var(--border);font-size:.9rem;color:var(--text);}
.gst-detail-page .checklist-mini li:last-child {border-bottom:none;}
.gst-detail-page .tick {
  width:20px;height:20px;border-radius:50%;background:rgba(31,170,89,.12);
  color:var(--green);display:flex;align-items:center;justify-content:center;font-size:.75rem;flex-shrink:0;
  }
.gst-detail-page section {padding:70px 6%;}
.gst-detail-page .section-head {text-align:center;max-width:700px;margin:0 auto 50px;}
.gst-detail-page .eyebrow {
  color:var(--red);font-weight:700;font-size:.8rem;letter-spacing:1.5px;text-transform:uppercase;margin-bottom:10px;display:block;
  }
.gst-detail-page .section-head h2 {font-size:2rem;color:var(--navy);font-weight:800;margin-bottom:14px;}
.gst-detail-page .section-head p {color:var(--muted);}
.gst-detail-page .feature-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
  max-width:1180px;
  margin:0 auto;
  }
.gst-detail-page .feature-card {
  background:var(--card);
  border:1px solid var(--border);
  border-radius:12px;
  padding:28px 24px;
  transition:.2s;
  }
.gst-detail-page .feature-card:hover {
  transform:translateY(-4px);
  box-shadow:0 14px 30px rgba(27,42,82,.1);
  border-color:var(--red);
  }
.gst-detail-page .feature-card .icon {
  width:56px;height:56px;border-radius:10px;
  background:var(--navy);color:#fff;
  display:flex;align-items:center;justify-content:center;
  font-weight:800;margin-bottom:16px;font-size:1.1rem;
  }
.gst-detail-page .feature-card h3 {color:var(--navy);font-size:1.05rem;margin-bottom:8px;}
.gst-detail-page .feature-card p {color:var(--muted);font-size:.9rem;}
.gst-detail-page .detail-table-wrap {
  max-width:900px;margin:0 auto;
  background:var(--card);
  border-radius:14px;
  overflow:hidden;
  border:2px solid var(--red);
  box-shadow:0 20px 50px rgba(226,55,68,.12);
  }
.gst-detail-page .detail-table-head {
  background:var(--navy-dark);
  color:#fff;
  padding:22px 30px;
  display:flex;justify-content:space-between;align-items:center;
  }
.gst-detail-page .detail-table-head h3 {font-size:1.2rem;color:#fff;margin:0;}
.gst-detail-page .detail-table-head .badge {
  background:var(--red);padding:5px 14px;border-radius:20px;font-size:.78rem;font-weight:700;
  }
.gst-detail-page table.dtable {width:100%;border-collapse:collapse;}
.gst-detail-page table.dtable tr {border-bottom:1px solid var(--border);}
.gst-detail-page table.dtable tr:last-child {border-bottom:none;}
.gst-detail-page table.dtable td {padding:16px 30px;font-size:.95rem;color:var(--text);}
.gst-detail-page table.dtable td.feat {width:65%;}
.gst-detail-page table.dtable td.stat {width:35%;text-align:right;font-weight:700;color:var(--green);}
.gst-detail-page table.dtable td.stat .check {
  display:inline-flex;align-items:center;gap:8px;justify-content:flex-end;
  }
.gst-detail-page table.dtable td.stat .circle {
  width:22px;height:22px;border-radius:50%;background:rgba(31,170,89,.12);
  color:var(--green);display:flex;align-items:center;justify-content:center;font-size:.8rem;
  }
.gst-detail-page table.dtable tr:nth-child(even) {background:#fafbfd;}
.gst-detail-page .table-footer {
  padding:24px 30px;display:flex;justify-content:space-between;align-items:center;
  background:#fafbfd;
  }
.gst-detail-page .table-footer .price-block .amt {font-size:1.6rem;font-weight:800;color:var(--navy);}
.gst-detail-page .table-footer .price-block .term {color:var(--muted);font-size:.85rem;}
.gst-detail-page .plan-grid {
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:28px;
  max-width:980px;
  margin:0 auto;
  align-items:stretch;
  }
.gst-detail-page .plan-card {
  background:var(--card);
  border-radius:14px;
  border:2px solid var(--border);
  overflow:hidden;
  display:flex;
  flex-direction:column;
  }
.gst-detail-page .plan-card.pro {
  border:2px solid var(--red);
  box-shadow:0 20px 50px rgba(226,55,68,.12);
  position:relative;
  }
.gst-detail-page .plan-card-head {
  background:var(--navy-dark);
  color:#fff;
  padding:22px 28px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  }
.gst-detail-page .plan-card.pro .plan-card-head {background:linear-gradient(135deg,var(--navy) 0%,var(--navy-dark) 100%);}
.gst-detail-page .plan-card-head h3 {
  font-size:1.15rem;
  color:#fff;
  margin:0;
  font-weight:700;
}
.gst-detail-page .plan-card-head h3:hover,
.gst-detail-page .plan-card:hover .plan-card-head h3,
.gst-detail-page .plan-card.pro:hover .plan-card-head h3 {
  color:#fff;
}
.gst-detail-page .plan-card-head .badge {
  background:var(--red);padding:5px 14px;border-radius:20px;font-size:.72rem;font-weight:700;letter-spacing:.4px;
  color:#fff;
}
.gst-detail-page .plan-card-body {padding:26px 28px;flex:1;display:flex;flex-direction:column;}
.gst-detail-page .plan-card-body .plan-desc {color:var(--muted);font-size:.9rem;margin-bottom:18px;}
.gst-detail-page .plan-price {display:flex;align-items:baseline;gap:8px;margin-bottom:20px;}
.gst-detail-page .plan-price .amt {font-size:2rem;font-weight:800;color:var(--navy);}
.gst-detail-page .plan-price .term {color:var(--muted);font-size:.85rem;}
.gst-detail-page .plan-list {list-style:none;flex:1;margin-bottom:22px;}
.gst-detail-page .plan-list li {
  display:flex;align-items:flex-start;gap:10px;padding:9px 0;border-bottom:1px solid var(--border);font-size:.9rem;color:var(--text);
  }
.gst-detail-page .plan-list li:last-child {border-bottom:none;}
.gst-detail-page .plan-list .circle {
  width:20px;height:20px;border-radius:50%;background:rgba(31,170,89,.12);
  color:var(--green);display:flex;align-items:center;justify-content:center;font-size:.7rem;flex-shrink:0;margin-top:2px;
  }
.gst-detail-page .plan-card-body .btn {width:100%;text-align:center;}
.gst-detail-page .btn-navy {background:var(--navy);color:#fff;transition:.2s;}
.gst-detail-page .btn-navy:hover,
.gst-detail-page .btn-navy:focus,
.gst-detail-page .btn-navy:active {background:var(--navy-dark);color:#fff;}
.gst-detail-page .faq-accordion {max-width:900px;margin:0 auto;}
.gst-detail-page .faq-accordion .accordion-item {
  background:var(--card);
  border:1px solid var(--border);
  border-radius:8px !important;
  margin-bottom:14px;
  overflow:hidden;
  box-shadow:0 2px 8px rgba(27,42,82,.04);
  }
.gst-detail-page .faq-accordion .accordion-item:last-child {margin-bottom:0;}
.gst-detail-page .faq-accordion .accordion-button {
  font-weight:700;
  font-size:1rem;
  color:var(--navy);
  padding:22px 26px;
  background:var(--card);
  box-shadow:none !important;
  display:flex;
  align-items:center;
  justify-content:space-between;
  }
.gst-detail-page .faq-accordion .accordion-button:not(.collapsed) {
  color:var(--navy);
  background:var(--card);
  text-decoration:underline;
  }
.gst-detail-page .faq-accordion .accordion-button:focus {box-shadow:none;border-color:transparent;}
.gst-detail-page .faq-accordion .accordion-button::after {display:none;}
.gst-detail-page .faq-accordion .accordion-button .toggle-icon {
  width:26px;height:26px;border-radius:5px;
  background:var(--navy-dark);color:#fff;
  display:flex;align-items:center;justify-content:center;
  font-size:1rem;font-weight:700;flex-shrink:0;margin-left:16px;
  transition:.2s;
  }
.gst-detail-page .faq-accordion .accordion-button.collapsed .toggle-icon::before {content:"+";}
.gst-detail-page .faq-accordion .accordion-button:not(.collapsed) .toggle-icon::before {content:"\2212";}
.gst-detail-page .faq-accordion .accordion-body {
  padding:0 26px 24px;
  color:var(--muted);
  font-size:.92rem;
  line-height:1.7;
  }
.gst-detail-page .why-grid {
  display:grid;grid-template-columns:repeat(2,1fr);gap:18px;max-width:1000px;margin:0 auto;
  }
.gst-detail-page .why-item {
  display:flex;gap:16px;background:var(--card);border:1px solid var(--border);border-radius:12px;padding:20px;
  }
.gst-detail-page .why-item .num {color:var(--red);font-weight:800;font-size:1.3rem;flex-shrink:0;}
.gst-detail-page .why-item h4 {color:var(--navy);margin-bottom:4px;font-size:1rem;}
.gst-detail-page .why-item p {color:var(--muted);font-size:.88rem;}
.gst-detail-page .cta-band {
  background:linear-gradient(135deg,var(--navy) 0%,var(--navy-dark) 100%);
  color:#fff;
  text-align:center;
  border-radius:18px;
  margin:0 6% 0;
  padding:60px 6%;
  }
.gst-detail-page .cta-band h2 {
  font-size:1.9rem;margin-bottom:14px;
  color:#fff;
}
.gst-detail-page .cta-band h2:hover,
.gst-detail-page .cta-band h2:focus,
.gst-detail-page .cta-band:hover h2 {
  color:#fff;
}
.gst-detail-page .cta-band p {color:#c6cbe0;margin-bottom:28px;}
.gst-detail-page .faq-accordion .accordion-button {
  width: 100%;
  border: 0;
  text-align: left;
  cursor: pointer;
}

/* Theme isolation — lock mockup colors (incl. hover) on Pro/WCFM detail pages */
body.gst-detail-landing-page .gst-detail-page .hero h1,
body.gst-detail-landing-page .gst-detail-page .hero h1:hover,
body.gst-detail-landing-page .gst-detail-page .hero h1:focus,
body.gst-detail-landing-page .gst-detail-page .hero:hover h1,
body.gst-detail-landing-page .gst-detail-page .hero-content:hover h1 {
  color: #fff !important;
}
body.gst-detail-landing-page .gst-detail-page .hero h1 em,
body.gst-detail-landing-page .gst-detail-page .hero h1 em:hover,
body.gst-detail-landing-page .gst-detail-page .hero h1 em:focus,
body.gst-detail-landing-page .gst-detail-page .hero:hover h1 em,
body.gst-detail-landing-page .gst-detail-page .hero h1:hover em {
  color: #ff8a90 !important;
}
body.gst-detail-landing-page .gst-detail-page .cta-band h2,
body.gst-detail-landing-page .gst-detail-page .cta-band h2:hover,
body.gst-detail-landing-page .gst-detail-page .cta-band h2:focus,
body.gst-detail-landing-page .gst-detail-page .cta-band:hover h2 {
  color: #fff !important;
}
body.gst-detail-landing-page .gst-detail-page .btn::before,
body.gst-detail-landing-page .gst-detail-page .btn:before,
body.gst-detail-landing-page .gst-detail-page a.btn::before,
body.gst-detail-landing-page .gst-detail-page a.btn:before {
  display: none !important;
  content: none !important;
}
body.gst-detail-landing-page .gst-detail-page .btn-red,
body.gst-detail-landing-page .gst-detail-page a.btn-red,
body.gst-detail-landing-page .gst-detail-page .btn-red:hover,
body.gst-detail-landing-page .gst-detail-page a.btn-red:hover,
body.gst-detail-landing-page .gst-detail-page .btn-red:focus,
body.gst-detail-landing-page .gst-detail-page a.btn-red:focus {
  background: #e23744 !important;
  background-color: #e23744 !important;
  color: #fff !important;
  border: none !important;
}
body.gst-detail-landing-page .gst-detail-page .btn-red:hover,
body.gst-detail-landing-page .gst-detail-page a.btn-red:hover {
  background: #c92a36 !important;
  background-color: #c92a36 !important;
}
body.gst-detail-landing-page .gst-detail-page .btn-outline,
body.gst-detail-landing-page .gst-detail-page a.btn-outline,
body.gst-detail-landing-page .gst-detail-page .btn-outline:hover,
body.gst-detail-landing-page .gst-detail-page a.btn-outline:hover,
body.gst-detail-landing-page .gst-detail-page .btn-outline:focus,
body.gst-detail-landing-page .gst-detail-page a.btn-outline:focus {
  background: transparent !important;
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.4) !important;
}
body.gst-detail-landing-page .gst-detail-page .btn-outline:hover,
body.gst-detail-landing-page .gst-detail-page a.btn-outline:hover {
  border-color: #fff !important;
}
body.gst-detail-landing-page .gst-detail-page h1,
body.gst-detail-landing-page .gst-detail-page h2,
body.gst-detail-landing-page .gst-detail-page h3,
body.gst-detail-landing-page .gst-detail-page h4 {
  font-family: 'Segoe UI', Roboto, -apple-system, Arial, sans-serif !important;
}
body.gst-detail-landing-page .gst-detail-page .plan-card-head {
  background: #11193a !important;
  color: #fff !important;
}
body.gst-detail-landing-page .gst-detail-page .plan-card.pro .plan-card-head {
  background: linear-gradient(135deg, #1b2a52 0%, #11193a 100%) !important;
}
body.gst-detail-landing-page .gst-detail-page .plan-card-head h3,
body.gst-detail-landing-page .gst-detail-page .plan-card-head h3:hover,
body.gst-detail-landing-page .gst-detail-page .plan-card:hover .plan-card-head h3,
body.gst-detail-landing-page .gst-detail-page .plan-card.pro:hover .plan-card-head h3 {
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
}
body.gst-detail-landing-page .gst-detail-page .plan-card-head .badge {
  background: #e23744 !important;
  background-color: #e23744 !important;
  color: #fff !important;
}
body.gst-detail-landing-page .gst-detail-page .detail-table-head h3,
body.gst-detail-landing-page .gst-detail-page .detail-table-head h3:hover {
  color: #fff !important;
}
body.gst-detail-landing-page .gst-detail-page .btn-navy,
body.gst-detail-landing-page .gst-detail-page a.btn-navy {
  background: #1b2a52 !important;
  background-color: #1b2a52 !important;
  color: #fff !important;
  border: none !important;
}
body.gst-detail-landing-page .gst-detail-page .btn-navy:hover,
body.gst-detail-landing-page .gst-detail-page a.btn-navy:hover,
body.gst-detail-landing-page .gst-detail-page .btn-navy:focus,
body.gst-detail-landing-page .gst-detail-page a.btn-navy:focus {
  background: #11193a !important;
  background-color: #11193a !important;
  color: #fff !important;
}
body.gst-detail-landing-page .gst-detail-page .section-head h2,
body.gst-detail-landing-page .gst-detail-page .section-head h2:hover {
  color: #1b2a52 !important;
}
body.gst-detail-landing-page .gst-detail-page .feature-card h3,
body.gst-detail-landing-page .gst-detail-page .feature-card h3:hover {
  color: #1b2a52 !important;
}
body.gst-detail-landing-page .gst-detail-page .why-item h4,
body.gst-detail-landing-page .gst-detail-page .why-item h4:hover {
  color: #1b2a52 !important;
}
@media(max-width:900px){
.gst-detail-page .feature-grid {grid-template-columns:repeat(2,1fr);}
.gst-detail-page .why-grid {grid-template-columns:1fr;}
.gst-detail-page .plan-grid {grid-template-columns:1fr;max-width:480px;}
}
@media(max-width:640px){
.gst-detail-page .feature-grid {grid-template-columns:1fr;}
.gst-detail-page .hero h1 {font-size:2rem;}
.gst-detail-page table.dtable td {padding:14px 16px;font-size:.85rem;}
.gst-detail-page .detail-table-head, .gst-detail-page .table-footer {padding:18px 16px;flex-direction:column;gap:12px;align-items:flex-start;}
}
