.trust-badge-row { display: flex; justify-content: center; gap: 30px; flex-wrap: wrap; margin-top: 25px; font-size: 14px; opacity: 0.9; }
  .trust-item { display: flex; align-items: center; gap: 8px; }
  .comp-table { width: 100%; border-collapse: collapse; margin-top: 30px; background: white; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 15px rgba(0,0,0,0.05); }
  .comp-table th, .comp-table td { padding: 15px 20px; text-align: left; border-bottom: 1px solid #eee; }
  .comp-table th { background: #f8f9fa; color: #333; font-weight: 700; }
  .comp-table .highlight { background: #e8f5e9; color: #075E54; font-weight: bold; }
  .faq-container { max-width: 800px; margin: 0 auto; }
  .faq-item { background: white; border: 1px solid #e2e8f0; border-radius: 8px; margin-bottom: 15px; padding: 20px; cursor: pointer; transition: all 0.3s; }
  .faq-item:hover { border-color: #25D366; box-shadow: 0 4px 12px rgba(0,0,0,0.05); }
  .faq-q { font-weight: 600; font-size: 18px; color: #333; display: flex; justify-content: space-between; }
  .faq-a { color: #666; margin-top: 10px; display: none; line-height: 1.6; border-top: 1px solid #eee; padding-top: 10px; }
  .faq-item.active .faq-a { display: block; }
  .faq-item.active .faq-q { color: #075E54; }

  .gst-plans-grid { display: flex; flex-wrap: wrap; gap: 24px; justify-content: center; }
  .gst-card {
    background: #fff; border: 2px solid #e2e8f0; border-radius: 16px;
    padding: 32px 26px; width: 310px; position: relative;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05); transition: transform 0.2s, box-shadow 0.2s;
  }
  .gst-card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(7,94,84,0.13); }
  .gst-card.popular { border-color: #075E54; background: #f0faf8; }
  .gst-popular-badge {
    position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
    background: #075E54; color: #fff; font-size: 0.75rem; font-weight: 700;
    padding: 4px 18px; border-radius: 20px; white-space: nowrap;
  }
  .gst-card-icon { font-size: 2.2rem; margin-bottom: 10px; }
  .gst-card h3 { font-size: 1.2rem; font-weight: 700; color: #075E54; margin: 0 0 4px; }
  .gst-card .tagline { font-size: 0.85rem; color: #888; margin-bottom: 14px; }
  .gst-price { font-size: 2.4rem; font-weight: 800; color: #128C7E; margin-bottom: 2px; }
  .gst-price .woocommerce-Price-amount { font-size: 2.4rem; font-weight: 800; color: #128C7E; }
  .gst-price-note { font-size: 0.8rem; color: #aaa; margin-bottom: 18px; }
  .gst-features { list-style: none; padding: 0; margin: 0 0 24px; }
  .gst-features li {
    font-size: 0.88rem; padding: 6px 0; color: #333;
    border-bottom: 1px solid #f0f0f0; display: flex; align-items: flex-start; gap: 8px;
  }
  .gst-features li:last-child { border-bottom: none; }
  .gst-features li::before { content: "✅"; font-size: 0.78rem; margin-top: 2px; flex-shrink: 0; }
  .gst-btn-primary {
    display: block; width: 100%; text-align: center;
    background: #25D366; color: white !important; padding: 14px 0;
    border-radius: 50px; font-weight: bold; font-size: 1rem;
    text-decoration: none !important; box-shadow: 0 4px 15px rgba(37,211,102,0.35);
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .gst-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,211,102,0.45); color: white !important; }
  .gst-btn-outline {
    display: block; width: 100%; text-align: center;
    background: transparent; border: 2px solid #075E54;
    color: #075E54 !important; padding: 12px 0; border-radius: 50px;
    font-weight: bold; font-size: 1rem; text-decoration: none !important; transition: all 0.2s;
  }
  .gst-btn-outline:hover { background: #075E54; color: white !important; }

  .gst-addons-grid { display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; }
  .gst-addon-card { background: #fff; border: 2px dashed #a7d9d3; border-radius: 14px; padding: 26px 24px; width: 310px; }
  .gst-addon-card h4 { font-size: 1.05rem; font-weight: 700; color: #075E54; margin: 8px 0 4px; }
  .gst-addon-price { font-size: 1.7rem; font-weight: 800; color: #128C7E; margin: 6px 0 10px; }
  .gst-addon-price .woocommerce-Price-amount { font-size: 1.7rem; font-weight: 800; color: #128C7E; }
  .gst-addon-card p { font-size: 0.87rem; color: #555; margin-bottom: 14px; line-height: 1.6; }

  @media (max-width: 768px) {
    .gst-card, .gst-addon-card { width: 100%; }
    .trust-badge-row { gap: 15px; flex-direction: column; align-items: center; }
    .comp-table { display: block; overflow-x: auto; }
  }