/* Core Variables */
:root {
  --primary: #6a1b9a;
  --primary-light: #d1a4f0;
  --highlight: #dfbae3;
  --text-dark: #222;
  --text-light: #fff;
  --background: #fafafa;
}

/* Reset + Base */
html {
  height: 100%;
}

body {
  height: 100%;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  font-family: 'Poppins', sans-serif;
  background-color: var(--background);
  background-image: url('/paytoview/img/lavender.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: var(--text-dark);
  line-height: 1.6;
}
img,
video {
  max-width: 100%;
  height: auto;
}

iframe {
  max-width: 100%;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
img,
iframe,
video {
  max-width: 100%;
  height: auto;
}
iframe[src*="youtube.com"] {
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto; 
}
a {
  color: var(--primary);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 2rem;
}

h1 {
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: #000;
}

h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--primary);
  text-align: center;
}

h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #fff;
}

h4 {
  font-size: 1.4em;
  color: var(--primary);
}

figcaption {
  margin-top: 8px;
  font-size: 0.9em;
  color: #555;
  font-style: italic;
}
/* Hide on mobile */
.desktop-only {
  display: block;
}

/* Hide on desktop */
.mobile-only {
  display: none;
}
/* Utility / Shared */
.highlight {
  display: inline-block;
  background-color: var(--primary);
  color: white !important;
  padding: 0.3em 0.8em;
  border-radius: 12px;
  font-weight: 600;
  box-shadow: 0 2px 6px rgba(106, 27, 154, 0.3);
  transition: background-color 0.3s ease;
  text-decoration: none;
  font-size: 1.4em;
}

.highlight:hover {
  background-color: var(--primary-light);
  box-shadow: 0 4px 12px rgba(209, 164, 240, 0.6);
}

.heading-with-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.heading-with-button h2 {
  margin: 0;
  font-size: 1.8rem;
  color: var(--primary);
  text-align: center;
}

.ad-container {
  margin: 40px auto;
  text-align: center;
}

.button {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  font-weight: bold;
  color: var(--primary);
  background-color: white;
  border: 2px solid var(--primary);
  border-radius: 6px;
  transition: all 0.3s ease;
  text-align: center;
  cursor: pointer;
}

.button:hover {
  background-color: var(--primary-light);
  color: #222;
}

/* Top Menu */
.ptv-top-menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--primary);
  padding: 1.2rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  gap: 1rem;
}

.ptv-logo {
  display: flex;
  align-items: center;
  font-size: 0.9rem;
  font-weight: 600;
  color: white;
}

.ptv-logo img {
  width: 200px;
  height: auto;
  display: block;
  margin-right: 0.6rem;
}

.logo-text {
  display: flex;
  align-items: center;
  color: white;
  font-weight: 600;
  font-size: 0.9rem;
}

.ptv-nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.ptv-nav-links li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  transition: background-color 0.3s ease, color 0.3s ease;
  display: block;
}

.ptv-nav-links li a:hover,
.ptv-nav-links li a:focus,
.ptv-nav-links li a.active {
  background-color: var(--primary-light);
  color: #222;
}

/* Burger button */
.ptv-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  padding: 0;
  margin: 0;
  width: 42px;
  height: 42px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}

.ptv-menu-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background: #fff;
  border-radius: 999px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.ptv-menu-toggle.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.ptv-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.ptv-menu-toggle.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* Image cards */
.image-card {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 1rem;
  margin: 2rem auto;
  max-width: 800px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.video-wrapper {
  width: 100%;
  max-width: 800px;
  margin: 20px auto;
  aspect-ratio: 16 / 9;
}

.video-wrapper iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  border-radius: 12px;
}
.image-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.image-card img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

/* Hero */
.hero {
  text-align: center;
  margin-top: 2rem;
}

.hero h1 {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  color: #444;
}

/* Main content blocks */
.content-wrapper {
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  margin: 30px auto;
  padding: 0 20px 20px;
  max-width: 900px;
  width: 100%;
}

.section-header {
  background-color: #6c3aad;
  color: white;
  text-align: center;
  font-size: 1.4em;
  font-weight: bold;
  padding: 16px 0;
  margin: 0 -20px 20px;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Features */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 3rem auto;
  padding: 0 2rem;
  flex: 1;
}

.feature-box {
  background: linear-gradient(145deg, #ffffff, #f6f2fb);
  padding: 22px 18px;
  border-radius: 16px;

  box-shadow:
    0 6px 18px rgba(0, 0, 0, 0.06),
    0 1px 0 rgba(255, 255, 255, 0.6) inset;

  transition: all 0.28s ease;
  cursor: default;
}

/* ✨ Hover effect */
.feature-box:hover {
  transform: translateY(-8px) scale(1.02);

  box-shadow:
    0 14px 32px rgba(106, 27, 154, 0.18),
    0 4px 10px rgba(0, 0, 0, 0.08);
}
.feature-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;

  font-size: 1.05rem;
  font-weight: 600;
  color: #333;
  margin: 0;
}

.feature-icon {
  width: 42px;
  height: 42px;
  object-fit: contain;

  transition: transform 0.25s ease;
}

/* ✨ Icon animation on hover */
.feature-box:hover .feature-icon {
  transform: scale(1.15) rotate(3deg);
}
.features h4 {
  font-size: 18px;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.features img {
  margin-bottom: 5px;
}

.licenses {
  font-weight: bold;
  color: var(--primary);
}

/* Players section */
.players-section {
  text-align: center;
  margin: 3rem 0;
}

.players-section h2 {
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.players-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.players-logos img {
  max-height: 60px;
  max-width: 150px;
  object-fit: contain;
}

/* Testimonials */
.testimonial-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.testimonial-container {
  display: flex;
  width: 200%;
  transition: transform 0.5s ease;
}

.testimonials {
  display: flex;
  width: 50%;
  justify-content: space-between;
  text-align: center;
}

.testimonial {
  width: 48%;
  background: #fff;
  padding: 1em;
  border-radius: 12px;
  box-sizing: border-box;
  min-height: 140px;
  margin: 0 0.5%;
}

blockquote {
  font-style: normal;
  font-size: 0.9em;
  margin-bottom: 0.5em;
  color: #444;
}

.stars {
  color: #ffc107;
  font-size: 1.3em;
  margin: 0.3em 0 0.8em;
  text-align: center;
}

.reviewer {
  font-weight: 600;
  color: #666;
  font-size: 0.95em;
  text-align: center;
}

input#slide1:checked ~ .testimonial-wrapper .testimonial-container {
  transform: translateX(0%);
}

input#slide2:checked ~ .testimonial-wrapper .testimonial-container {
  transform: translateX(-50%);
}

.testimonial-controls {
  text-align: center;
  margin-top: 1em;
}

.control-btn {
  background: #fcd34d;
  color: #333;
  padding: 0.5em 1.5em;
  margin: 0 1em;
  cursor: pointer;
  border-radius: 8px;
  user-select: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.control-btn:hover {
  background: #fbbf24;
}

/* Pricing plans */
.plan-fees {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
  margin: 1rem auto;
  max-width: 1000px;
}

.plan-fees.two-cols {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.plan-fees.two-cols .plan-box {
  width: 45%;
}

.plan-box {
  width: 31%;
  min-width: 250px;
  background-color: var(--primary-light);
  color: white;
  padding: 1rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-align: center;
  box-sizing: border-box;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.plan-box:hover {
  background-color: var(--primary);
  transform: scale(1.05);
  color: white;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.plan-box:hover h2,
.plan-box:hover .price,
.plan-box:hover .license,
.plan-box:hover ul li {
  color: white;
}

.plan-box:hover .btn {
  background-color: white;
  color: var(--primary);
}

.plan-box .btn {
  display: inline-block;
  background: linear-gradient(145deg, #ffe55f, #f7c700);
  color: #333;
  font-weight: bold;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.plan-box .btn:hover {
  background: linear-gradient(145deg, #f7c700, #ff9526);
  color: #111;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
}

.plan-box.highlight {
  background-color: var(--primary);
  border: 3px solid white;
}

.plan-box.highlight .btn {
  background-color: #ff9526;
  color: #333;
  font-weight: 600;
  font-size: 0.8em;
  padding: 0.7rem 1.5rem;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.plan-box.highlight .btn:hover {
  background-color: var(--primary-light);
  color: #222;
  transform: translateY(-2px);
}

.plan-box h2 {
  font-size: 1.5rem;
  color: white;
}

.plan-box .price {
  font-size: 2rem;
  font-weight: 700;
  margin: 1rem 0;
  color: white;
}

.plan-box .license {
  font-size: 1rem;
  color: white;
  margin-bottom: 1.5rem;
}

.plan-box ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.plan-box ul li {
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
  font-size: 0.95rem;
  color: #fff;
}

.plan-box ul li::before {
  color: #fff;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

/* Tables */
.features-table-section {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 2rem 0;
}

.features-table-section table {
  width: 100%;
  max-width: 1200px;
  border-collapse: collapse;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
  border: none;
}

.features-table-section table th {
  background-color: #6c3aad;
  color: white;
  padding: 1rem 1.25rem;
  text-align: center;
}

.features-table-section table td {
  padding: 1rem 1.25rem;
  border: 1px solid #ddd;
  text-align: center;
}

.features-table td {
  font-size: 0.95rem;
}

.features-table td:first-child {
  text-align: left;
}
.feature-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.3;
}

.feature-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}
.comparison-cards {
  display: none;
}
.comparison-card {
  background: linear-gradient(145deg, #ffffff, #f7f2fb);
  border-radius: 18px;
  padding: 0;
  margin: 0 0 1.2rem 0;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  border: 1px solid rgba(106, 27, 154, 0.08);
}

.comparison-card-featured {
  box-shadow: 0 14px 34px rgba(106, 27, 154, 0.16);
  border: 1px solid rgba(106, 27, 154, 0.2);
}

.comparison-card-header {
  background: linear-gradient(135deg, #6a1b9a, #8e44ad);
  color: #fff;
  font-weight: 700;
  font-size: 1.15rem;
  text-align: center;
  padding: 1rem;
}

.comparison-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.comparison-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 1rem;
  border-bottom: 1px solid #eee;
  font-size: 0.96rem;
}

.comparison-list li:last-child {
  border-bottom: none;
}

.comparison-list li span {
  color: #444;
  text-align: left;
}

.comparison-list li strong {
  color: #6a1b9a;
  font-size: 1rem;
  flex-shrink: 0;
}
.comparison-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #ff9526;
  color: #fff;
  font-size: 0.7rem;
  padding: 5px 10px;
  border-radius: 999px;
  font-weight: 600;
}
.comparison-card {
  position: relative;
}
.plan-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.plan-header-featured span:first-child {
  font-weight: 700;
}

.plan-badge {
  background: #ff9526;
  color: #fff;
  font-size: 0.7rem;
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 600;
  white-space: nowrap;
}
.icon {
  font-weight: bold;
  display: inline-block;
}

.icon.check {
  display: block;
  text-align: center;
  color: #4caf50;
}

.icon.cross {
  display: block;
  text-align: center;
  color: #e53935;
}


/* Step / instruction tables */
.ptv-steps {
  display: flex;
  flex-direction: column;
  margin-top: 20px;
  border: 1px solid #ccc;
  border-radius: 12px;
  overflow: hidden;
  background: white;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
  font-family: sans-serif;
}

.ptv-row {
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid #ccc;
}

.ptv-row:first-child {
  border-top: none;
}

.ptv-header {
  background-color: #6c3aad;
  color: white;
  font-weight: bold;
}

.col-step,
.col-detail,
.col-left,
.col-middle,
.col-example,
.col-license,
.col-setting {
  padding: 12px 16px;
  text-align: left;
  border-right: 1px solid #ccc;
}

.col-step {
  flex: 1;
  min-width: 180px;
  background-color: #f9f9f9;
  font-weight: bold;
}

.col-detail {
  flex: 2.5;
  min-width: 300px;
}

.col-left {
  flex: 1;
  min-width: 180px;
  font-weight: bold;
  background: #f4f4f4;
}

.col-middle {
  flex: 2.5;
  min-width: 300px;
}

.col-example {
  flex: 1.2;
  min-width: 150px;
}

.col-license {
  flex: 1;
  min-width: 120px;
}

.col-setting {
  flex: 1;
  min-width: 180px;
  font-weight: bold;
  background: #f4f4f4;
}

.ptv-header .col-step,
.ptv-header .col-detail,
.ptv-header .col-left,
.ptv-header .col-middle,
.ptv-header .col-example,
.ptv-header .col-license,
.ptv-header .col-setting {
  background-color: #6c3aad;
  color: white;
  font-weight: bold;
}

/* Installation */
.installation-instructions {
  max-width: 800px;
  margin: 2rem auto;
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  font-size: 1rem;
  color: #333;
}

.installation-instructions::before {
  content: '';
  display: block;
  height: 40px;
  background-color: #6a1b9a;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  padding: 0;
  margin: 0;
}

.installation-instructions h2 {
  color: var(--primary);
  margin-bottom: 1rem;
}

.installation-instructions ol {
  text-align: left;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.installation-instructions ol li {
  margin-bottom: 1rem;
  line-height: 1.5;
}

.installation-instructions a {
  color: var(--primary);
  text-decoration: underline;
}

/* FAQ */
.faq-container {
  max-width: 800px;
  margin: 30px auto;
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.faqhero {
  text-align: left;
  margin-top: 2rem;
}

.faq-item {
  border-bottom: 1px solid #eee;
}

.faq-question {
  cursor: pointer;
  padding: 15px;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  color: var(--primary);
}

.faq-answer {
  display: none;
  padding: 0 15px 15px;
  color: #555;
}

.faq-question:hover {
  background: #d1a4f0;
}

.faq-question::after {
  content: '+';
  font-size: 20px;
  transition: transform 0.3s;
  color: var(--primary);
}

.faq-item.active .faq-question::after {
  content: '-';
}

.faq-item.active .faq-answer {
  display: block;
  animation: fadeIn 0.3s ease-in-out;
}

/* Checkout */
.checkout-box {
  max-width: 600px;
  margin: auto;
  background: white;
  padding: 2em;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

input,
button,
select {
  width: 100%;
  margin-top: 1em;
  padding: 1em;
  font-size: 1rem;
  border-radius: 8px;
  border: 1px solid #ccc;
}

.price-summary {
  font-size: 1.2em;
  margin-top: 1em;
}
.desktop-only {
  display: block;
}

.mobile-only {
  display: none;
}
/* Scroll to top */
#scrollToTopBtn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  background-color: #6c3aad;
  color: white;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  z-index: 1000;
}

#scrollToTopBtn:hover {
  background-color: var(--primary-light);
  box-shadow: 0 6px 12px rgba(209, 164, 240, 0.6);
}

/* Footer */
.site-footer {
  background-color: var(--primary);
  padding: 20px 0;
  text-align: center;
  font-size: 0.95em;
  color: #fff;
  margin-top: 40px;
}

.site-footer a {
  color: #fff;
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: none;
}

.footer-content {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0 1rem;
}

.footer-left,
.footer-right {
  flex: 1 1 300px;
}

.footer-left p,
.footer-right p {
  margin: 0.3rem 0;
}

.footer-right {
  text-align: right;
}
@media (max-width: 900px) {
  .desktop-only {
    display: none !important;
  }

  .mobile-only {
    display: block !important;
  }

  .ptv-top-menu {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    background-color: var(--primary);
    padding: 1rem 1.25rem;
    top: 0;
    z-index: 1000;
    position: sticky;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    gap: 1rem;
  }

  .ptv-logo {
    display: flex;
    align-items: center;
  }

  .ptv-logo img {
    width: 160px;
    height: auto;
    display: block;
  }

  .ptv-nav-links {
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.4rem;
    list-style: none;
    width: 100%;
    margin: 1rem 0 0 0;
    padding: 0.75rem 0 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
  }

  .ptv-nav-links.open {
    display: flex;
  }

  .ptv-nav-links li {
    width: 100%;
  }

  .ptv-nav-links li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 0.8rem 0.95rem;
    border-radius: 6px;
    transition: background-color 0.3s ease, color 0.3s ease;
    display: block;
    width: 100%;
    box-sizing: border-box;
  }

  .ptv-nav-links li a:hover,
  .ptv-nav-links li a:focus,
  .ptv-nav-links li a.active {
    background-color: var(--primary-light);
    color: #222;
  }

  .ptv-menu-toggle {
    display: flex;
    background: transparent;
    border: none;
    padding: 0;
    margin: 0;
    width: 42px;
    height: 42px;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
  }

  .ptv-menu-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background: #fff;
    border-radius: 999px;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  .ptv-menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }

  .ptv-menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .ptv-menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }

  .logo-text {
    font-size: 1rem;
  }

  .container,
  .content-wrapper,
  .faq-container,
  .installation-instructions,
  .checkout-box {
    width: calc(100% - 32px);
    max-width: 100%;
    padding-left: 16px;
    padding-right: 16px;
    box-sizing: border-box;
  }

  .content-wrapper {
    width: calc(100% - 24px);
    margin: 20px auto;
    padding: 0 16px 16px;
  }

  .section-header {
    margin: 0 -16px 16px;
    font-size: 1.1rem;
    padding: 14px 0;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1.05rem;
  }

  .heading-with-button {
    flex-direction: column;
    gap: 0.75rem;
  }

  .heading-with-button h2 {
    font-size: 1.5rem;
  }

  .highlight {
    font-size: 1.05rem;
    padding: 0.45em 0.9em;
  }

  .plan-fees,
  .plan-fees.two-cols,
  .plan-fees.three-cols {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }

  .plan-box,
  .plan-fees.two-cols .plan-box,
  .plan-fees.three-cols .plan-box {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }

  .features {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem auto;
    padding: 0 1rem;
  }

  .feature-box {
    padding: 16px;
  }

  .feature-icon {
    width: 32px;
    height: 32px;
  }

  .feature-title {
    font-size: 0.95rem;
  }

  .players-logos {
    gap: 1rem;
  }

  .players-logos img {
    max-height: 46px;
    max-width: 120px;
  }

  .testimonial-container,
  .testimonials {
    width: 100%;
  }

  .testimonials {
    flex-direction: column;
    gap: 1rem;
  }

  .testimonial {
    width: 100%;
    margin: 0;
  }

  
 .features-table-section {
    display: none;
  }

  .comparison-cards {
    display: block;
    margin-top: 1.5rem;
  }

  .ptv-row {
    flex-direction: column;
  }

  .col-step,
  .col-detail,
  .col-left,
  .col-middle,
  .col-example,
  .col-license,
  .col-setting {
    min-width: 100%;
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #eee;
    box-sizing: border-box;
  }

  .ptv-header .col-step,
  .ptv-header .col-detail,
  .ptv-header .col-left,
  .ptv-header .col-middle,
  .ptv-header .col-example,
  .ptv-header .col-license,
  .ptv-header .col-setting {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }

  .site-footer {
    margin-top: 24px;
    padding: 18px 0;
  }

  .footer-content {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }

  .footer-left,
  .footer-right {
    flex: 1 1 auto;
    text-align: center;
  }
  /*.ptv-steps {
    border: none;
    box-shadow: none;
    background: transparent;
    gap: 1rem;
  }*/
  
  .ptv-steps {
   display:none;
  }
  
  .ptv-header {
    display: none;
  }

  .ptv-row {
    display: block;
    border: none;
    background: #fff;
    border-radius: 16px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
  }

  .col-setting,
  .col-detail,
  .col-example,
  .col-license {
    display: block;
    width: 100%;
    min-width: 0;
    border-right: none;
    border-bottom: 1px solid #eee;
    box-sizing: border-box;
    padding: 0.9rem 1rem;
  }

  .col-license {
    border-bottom: none;
  }

  .col-setting {
    background: linear-gradient(135deg, #6a1b9a, #8e44ad);
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
  }

  .col-detail,
  .col-example,
  .col-license {
    background: #fff;
    position: relative;
    padding-top: 2rem;
  }

  .col-detail::before,
  .col-example::before,
  .col-license::before {
    position: absolute;
    top: 0.7rem;
    left: 1rem;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #6a1b9a;
    opacity: 0.85;
  }

  .col-detail::before {
    content: "Details";
  }

  .col-example::before {
    content: "Example";
  }

  .col-license::before {
    content: "License";
  }

  .col-example img {
    max-width: 100%;
    height: auto;
    display: block;
  }
}

@media (max-width: 600px) {
  h1,
  .hero h1 {
    font-size: 1.7rem;
    line-height: 1.2;
  }

  h2 {
    font-size: 1.4rem;
  }

  h3 {
    font-size: 1.35rem;
  }

  h4 {
    font-size: 1.1rem;
  }

  /* Top Menu */
  .ptv-top-menu {
    padding: 0.9rem 1rem;
    gap: 0.75rem;
  }

  .ptv-logo img {
    width: 140px;
  }

  .ptv-menu-toggle {
    width: 40px;
    height: 40px;
  }

  .ptv-menu-toggle span {
    width: 26px;
    height: 3px;
  }

  .ptv-nav-links {
    margin-top: 0.85rem;
    padding-top: 0.65rem;
    gap: 0.35rem;
  }

  .ptv-nav-links li a {
    padding: 0.75rem 0.85rem;
    font-size: 0.96rem;
  }

  .content-wrapper,
  .faq-container,
  .installation-instructions,
  .checkout-box {
    width: calc(100% - 20px);
    padding-left: 14px;
    padding-right: 14px;
    box-sizing: border-box;
  }

  .content-wrapper {
    padding-bottom: 14px;
  }

  .section-header {
    margin: 0 -14px 14px;
    font-size: 1rem;
  }

  .hero {
    margin-top: 1rem;
  }

  .hero p,
  p,
  li {
    font-size: 0.98rem;
  }

  .highlight {
    font-size: 0.95rem;
    width: 100%;
    text-align: center;
  }

  .plan-box {
    padding: 0.9rem;
  }

  .plan-box h2 {
    font-size: 1.25rem;
  }

  .plan-box .price {
    font-size: 1.7rem;
  }

  .plan-box .license,
  .plan-box ul li {
    font-size: 0.92rem;
  }


  .testimonial {
    min-height: auto;
    padding: 0.9rem;
  }

  blockquote {
    font-size: 0.95rem;
  }

  .reviewer {
    font-size: 0.9rem;
  }

  .control-btn {
    display: inline-block;
    width: auto;
    margin: 0 0.35rem;
    padding: 0.5em 1em;
    font-size: 0.95rem;
  }

  .installation-instructions {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }

  .faq-question {
    padding: 12px;
    font-size: 0.98rem;
  }

  .faq-answer {
    padding: 0 12px 12px;
  }

  .arrow.left {
    left: 0.5em;
  }

  .arrow.right {
    right: 0.5em;
  }

  #scrollToTopBtn {
    right: 18px;
    bottom: 18px;
    width: 42px;
    height: 42px;
    font-size: 20px;
  }
  .features-table-section {
    display: none;
  }
  .comparison-card-header {
    font-size: 1.05rem;
    padding: 0.9rem;
  }

  .comparison-list li {
    padding: 0.8rem 0.9rem;
    font-size: 0.92rem;
  }

  .comparison-list li strong {
    font-size: 0.95rem;
  }
  .ptv-row {
    border-radius: 14px;
    margin-bottom: 0.85rem;
  }

  .col-setting,
  .col-detail,
  .col-example,
  .col-license {
    padding-left: 0.9rem;
    padding-right: 0.9rem;
  }

  .col-detail,
  .col-example,
  .col-license {
    padding-top: 1.9rem;
    font-size: 0.94rem;
  }

  .col-detail::before,
  .col-example::before,
  .col-license::before {
    left: 0.9rem;
    font-size: 0.68rem;
  }
}