/* Service Pages Styles */

/* Page Hero */
.service-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 100px;
  padding-bottom: 3rem;
  text-align: center;
}

.service-hero-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
  padding: 2rem;
}

.service-hero-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.service-hero-desc {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.service-hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Active Nav Link */
.nav-link.active {
  color: #1a9b99;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: #1a9b99;
  border-radius: 1px;
}

.nav-link {
  position: relative;
}

/* Service Section */
.service-section {
  padding: 5rem 2rem;
  background: #0a0a0a;
}

.section-subtitle {
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.1rem;
  margin-bottom: 3rem;
  margin-top: -1rem;
}

/* Platforms Grid */
.platforms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.platform-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 1.25rem;
  text-align: center;
  transition: all 0.3s ease;
}

.platform-item:hover {
  background: rgba(139, 92, 246, 0.1);
  border-color: rgba(139, 92, 246, 0.3);
}

.platform-name {
  color: white;
  font-weight: 600;
  font-size: 0.9rem;
}

/* Steps Grid */
.steps-grid {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 1rem;
  flex-wrap: wrap;
}

.step-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  flex: 1;
  min-width: 250px;
  max-width: 320px;
  transition: all 0.3s ease;
}

.step-item:hover {
  transform: translateY(-4px);
  border-color: rgba(139, 92, 246, 0.3);
  background: rgba(139, 92, 246, 0.05);
}

.step-number {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #a855f7, #1a9b99);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  color: white;
  margin: 0 auto 1rem;
}

.step-item h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.75rem;
}

.step-item p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  line-height: 1.5;
}

.step-arrow-down {
  display: none;
}

/* Pricing Grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.pricing-grid.single {
  max-width: 400px;
}

.pricing-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-4px);
  border-color: rgba(139, 92, 246, 0.3);
}

.pricing-card.featured {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(26, 155, 153, 0.15));
  border-color: rgba(139, 92, 246, 0.4);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #a855f7, #1a9b99);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.35rem 1rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pricing-header h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
}

.pricing-amount {
  margin-bottom: 0.5rem;
}

.pricing-amount .currency {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.6);
  vertical-align: top;
}

.pricing-amount .price {
  font-size: 3rem;
  font-weight: 700;
  color: white;
}

.pricing-amount .price-text {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
}

.pricing-amount .period {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
}

.pricing-desc {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  text-align: left;
}

.catalog-search-form {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.catalog-search-input {
  width: min(100%, 640px);
  padding: 1rem 1.25rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  font-size: 1rem;
}

.catalog-search-input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}

.catalog-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.catalog-card:hover {
  transform: translateY(-4px);
  border-color: rgba(139, 92, 246, 0.35);
  background: rgba(139, 92, 246, 0.05);
}

.catalog-card-header {
  margin-bottom: 1rem;
}

.catalog-card-header h3 {
  margin-bottom: 0;
  color: #fff;
  font-size: 1.2rem;
}

.catalog-card-kicker {
  display: inline-block;
  margin-bottom: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1a9b99;
}

.catalog-meta {
  display: grid;
  gap: 0.85rem;
}

.catalog-meta-label {
  display: block;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.2rem;
}

.catalog-meta-value {
  display: block;
  color: #fff;
  font-weight: 600;
}

.catalog-card-footer {
  margin-top: 1.5rem;
}

.catalog-card-footer .btn {
  width: 100%;
  text-align: center;
}

.catalog-empty-state {
  padding: 2rem;
  border: 1px dashed rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
}

.catalog-pagination {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.catalog-pagination-label {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
}

.pricing-features li {
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features li strong {
  color: white;
}

.pricing-note {
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
  margin-top: 1rem;
}

/* Revenue Section */
.revenue-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
}

.revenue-card {
  display: flex;
  justify-content: center;
}

.revenue-circle {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(26, 155, 153, 0.2));
  border: 3px solid rgba(139, 92, 246, 0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.revenue-percent {
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(135deg, #a855f7, #1a9b99);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.revenue-label {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.revenue-info h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
}

.revenue-info p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

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

.revenue-details li {
  padding: 0.5rem 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.revenue-details li::before {
  content: '✓';
  color: #1a9b99;
  font-weight: 700;
}

/* FAQ Grid */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.faq-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 1.5rem;
}

.faq-item h3 {
  font-size: 1rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.75rem;
}

.faq-item p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Publishing Section */
.publishing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.publishing-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.publishing-card:hover {
  transform: translateY(-4px);
  border-color: rgba(139, 92, 246, 0.3);
  background: rgba(139, 92, 246, 0.05);
}

.publishing-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  background: rgba(139, 92, 246, 0.15);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.publishing-icon img {
  width: 32px;
  height: 32px;
  filter: brightness(0) invert(1);
}

.publishing-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.75rem;
}

.publishing-card p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* YouTube Section */
.youtube-section {
  background: linear-gradient(180deg, #0a0a0a, #111, #0a0a0a);
}

.youtube-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.youtube-content h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
}

.youtube-content > p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2rem;
  line-height: 1.6;
}

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

.youtube-features li {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.youtube-features li strong {
  display: block;
  color: white;
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.youtube-features li span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.youtube-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.youtube-demo {
  width: 280px;
  height: 180px;
  background: linear-gradient(135deg, #ff0000, #cc0000);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.youtube-demo-icon {
  width: 60px;
  height: 60px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #ff0000;
}

.youtube-demo p {
  color: white;
  font-weight: 600;
}

/* Why Publish */
.why-publish-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.why-publish-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
}

.why-publish-number {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  background: rgba(139, 92, 246, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a9b99;
}

.why-publish-item h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.75rem;
}

.why-publish-item p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Promotions Section */
.promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.promo-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}

.promo-card:hover {
  transform: translateY(-4px);
  border-color: rgba(139, 92, 246, 0.3);
}

.promo-card.featured {
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.15), rgba(26, 155, 153, 0.1));
  border-color: rgba(168, 85, 247, 0.4);
}

.promo-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #a855f7, #1a9b99);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.3rem 0.8rem;
  border-radius: 12px;
  text-transform: uppercase;
}

.promo-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: linear-gradient(135deg, #a855f7, #1a9b99);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}

.promo-hero-badge img {
  width: 1rem;
  height: 1rem;
  filter: brightness(0) invert(1);
}

.promo-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  background: rgba(139, 92, 246, 0.15);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.promo-icon img {
  width: 32px;
  height: 32px;
  filter: brightness(0) invert(1);
}

.promo-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.75rem;
}

.promo-card > p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.promo-features {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.promo-features li {
  padding: 0.5rem 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
}

.promo-features li::before {
  content: '→';
  color: #1a9b99;
  margin-right: 0.5rem;
}

/* Playlist Section */
.playlist-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.playlist-info h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
}

.playlist-info > p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

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

.playlist-steps li {
  padding: 0.75rem 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.playlist-steps li::before {
  content: '✓';
  color: #1a9b99;
  font-weight: 700;
}

.playlist-stats {
  display: grid;
  gap: 1rem;
}

.stat-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg, #a855f7, #1a9b99);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
}

/* Tips Section */
.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.tip-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 1.5rem;
}

.tip-number {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  color: #1a9b99;
  margin-bottom: 0.75rem;
}

.tip-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
}

.tip-card p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  line-height: 1.5;
}

/* Bundles Section */
.bundles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.bundle-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}

.bundle-card:hover {
  transform: translateY(-4px);
  border-color: rgba(139, 92, 246, 0.3);
}

.bundle-card.featured {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(26, 155, 153, 0.15));
  border-color: rgba(139, 92, 246, 0.4);
}

.bundle-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #a855f7, #1a9b99);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.35rem 1rem;
  border-radius: 20px;
}

.bundle-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.25rem;
}

.bundle-header p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.bundle-price {
  margin-bottom: 0.5rem;
}

.bundle-price .currency {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.6);
}

.bundle-price .price {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
}

.bundle-price .period {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

.bundle-savings {
  color: #1a9b99;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.bundle-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  text-align: left;
}

.bundle-features li {
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.bundle-features li:last-child {
  border-bottom: none;
}

.bundle-features li strong {
  color: white;
}

/* Comparison Table */
.comparison-table {
  overflow-x: auto;
  margin-top: 2rem;
}

.comparison-table table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}

.comparison-table th,
.comparison-table td {
  padding: 1rem;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.comparison-table th:first-child,
.comparison-table td:first-child {
  text-align: left;
}

.comparison-table th {
  background: rgba(255, 255, 255, 0.03);
  color: white;
  font-weight: 600;
}

.comparison-table th:not(:first-child) {
  background: rgba(139, 92, 246, 0.1);
}

.comparison-table td {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.comparison-table td:first-child {
  color: white;
  font-weight: 500;
}

.comparison-table .check {
  color: #1a9b99;
  font-weight: 700;
}

/* Individual Section */
.individual-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.individual-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.individual-card:hover {
  transform: translateY(-4px);
  border-color: rgba(139, 92, 246, 0.3);
}

.individual-header h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.25rem;
}

.individual-header p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.individual-price {
  margin-bottom: 1.5rem;
}

.individual-price .price {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: white;
}

.individual-price .period {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
}

.individual-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  text-align: left;
}

.individual-features li {
  padding: 0.5rem 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
}

.individual-features li::before {
  content: '•';
  color: #1a9b99;
  margin-right: 0.5rem;
}

/* Responsive */
@media (max-width: 768px) {
  .service-hero {
    min-height: 50vh;
    padding-top: 80px;
  }

  .steps-grid {
    flex-direction: column;
    align-items: center;
  }

  .step-arrow-down {
    display: block;
    color: rgba(139, 92, 246, 0.4);
    font-size: 1.5rem;
  }

  .revenue-grid,
  .youtube-grid,
  .playlist-info-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .bundles-grid {
    grid-template-columns: 1fr;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .platforms-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
