/* Nova Presswire - Core Styles */

:root {
  --primary: #1a56db;
  --primary-dark: #1e429f;
  --secondary: #6b7280;
  --text: #111827;
  --text-light: #6b7280;
  --bg: #ffffff;
  --bg-alt: #f9fafb;
  --border: #e5e7eb;
  --success: #059669;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

h1, h2, h3 { letter-spacing: -0.02em; }
h1 { font-weight: 800; }

a {
  color: var(--primary);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Stats Banner */
.stats-banner { background: #f0f4ff; padding: 3rem 0; border-bottom: 1px solid var(--border); }
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }
.counter-value { font-size: 2.5rem; font-weight: 800; color: var(--primary); display: block; }
.counter-label { font-size: 0.875rem; color: var(--text-light); font-weight: 500; }
@media (max-width: 768px) { .stats-row { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .stats-row { grid-template-columns: 1fr; } .counter-value { font-size: 2rem; } }

/* Header */
.site-header {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-img {
  height: 32px;
  width: auto;
}

.main-nav {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.main-nav a {
  color: var(--text);
  font-weight: 500;
}

.main-nav a.btn {
  color: white;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.hamburger {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  position: relative;
  transition: background 0.2s;
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  left: 0;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: transform 0.2s;
}

.hamburger::before {
  top: -7px;
}

.hamburger::after {
  top: 7px;
}

/* Hamburger animation when open */
.mobile-menu-toggle[aria-expanded="true"] .hamburger {
  background: transparent;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger::before {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger::after {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile styles */
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 1rem;
    gap: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-top: 1px solid var(--border);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--border);
    width: 100%;
  }

  .main-nav a:last-child {
    border-bottom: none;
  }

  .main-nav a.btn {
    margin-top: 0.5rem;
    text-align: center;
  }

  .site-header .container {
    position: relative;
  }
}

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  padding: 4rem 0;
  text-align: center;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero .lead {
  font-size: 1.25rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

.hero-actions {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.btn-outline {
  background: transparent;
  color: white;
  border: 2px solid white;
}

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

/* Page Header */
.page-header {
  background: var(--bg-alt);
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
}

.page-header h1 {
  font-size: 2rem;
}

/* Sections */
section {
  padding: 3rem 0;
}

.featured-section {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}

.featured-section h2 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.section-header h2 {
  font-size: 1.5rem;
}

.view-all {
  font-weight: 500;
}

/* Industry Filter */
.industry-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  margin-bottom: 2rem;
}

.industry-filter span {
  color: var(--text-light);
  margin-right: 0.5rem;
}

.industry-tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 9999px;
  font-size: 0.875rem;
  color: var(--text);
}

.industry-tag:hover {
  background: var(--primary);
  color: white;
  text-decoration: none;
}

/* PR Grid */
.pr-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 1.5rem;
}

.pr-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  overflow: hidden;
}

.pr-card .pr-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.pr-card .pr-content {
  padding: 1.5rem;
}

.pr-card:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.pr-card.featured {
  border-top: 3px solid var(--primary);
}

.pr-card h3 {
  font-size: 1.125rem;
  margin: 0.5rem 0;
}

.pr-card h3 a {
  color: var(--text);
}

/* PR List */
.pr-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.pr-item {
  padding: 1.5rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.pr-item:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.pr-item h2,
.pr-item h3 {
  font-size: 1.25rem;
  margin: 0.5rem 0;
}

.pr-item h2 a,
.pr-item h3 a {
  color: var(--text);
}

.pr-item h2 a:hover,
.pr-item h3 a:hover {
  color: var(--primary);
  text-decoration: none;
}

.pr-card h3 a:hover {
  color: var(--primary);
  text-decoration: none;
}

.pr-industry {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(26, 86, 219, 0.1);
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
}

.pr-summary {
  color: var(--text-light);
  margin: 0.5rem 0;
}

.pr-subheadline {
  color: var(--text-light);
  font-size: 1.125rem;
}

.pr-item-meta,
.pr-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.875rem;
  color: var(--text-light);
  margin-top: 1rem;
}

/* Listing Layout */
.listing-layout {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 2rem;
}

.sidebar h3 {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--text-light);
}

.industry-list,
.feed-list {
  list-style: none;
  margin-bottom: 2rem;
}

.industry-list li,
.feed-list li {
  margin-bottom: 0.5rem;
}

.industry-list a,
.feed-list a {
  color: var(--text);
  display: block;
  padding: 0.25rem 0;
}

.industry-list a.active {
  color: var(--primary);
  font-weight: 600;
}

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

.page-info {
  color: var(--text-light);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 0.375rem;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  border: none;
  line-height: 1;
  box-sizing: border-box;
}

.btn:hover {
  text-decoration: none;
}

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

.btn-primary:hover {
  background: var(--primary-dark);
}

.btn-secondary {
  background: var(--bg);
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  background: var(--bg-alt);
}

.btn-sm {
  height: 32px;
  padding: 0 0.75rem;
  font-size: 0.8125rem;
}

.btn-success {
  background: var(--success);
  color: white;
}

.btn-success:hover {
  background: #047857;
}

.btn-block {
  display: block;
  width: 100%;
}

/* Full Press Release */
.pr-full .pr-header {
  background: var(--bg-alt);
  padding: 3rem 0;
  border-bottom: 1px solid var(--border);
}

.pr-full h1 {
  font-size: 2rem;
  margin: 1rem 0 0.5rem;
}

.pr-feature-image {
  margin: 2rem 0;
}

.pr-feature-image img {
  max-width: 100%;
  height: auto;
  border-radius: 0.5rem;
}

.pr-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 3rem;
}

.pr-main-content {
  max-width: 720px;
}

.dateline {
  margin-bottom: 1.5rem;
}

.pr-text {
  line-height: 1.8;
}

.pr-text p {
  margin-bottom: 1.25rem;
}

.pr-contact {
  margin-top: 3rem;
  margin-bottom: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.pr-contact h3 {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.pr-sidebar {
  position: sticky;
  top: 100px;
}

.pr-sidebar h4 {
  font-size: 0.875rem;
  color: var(--text-light);
  margin-bottom: 0.75rem;
}

.share-section,
.formats-section,
.keywords-section {
  margin-bottom: 2rem;
}

.share-buttons {
  display: flex;
  gap: 0.5rem;
}

.share-btn {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
  font-size: 0.875rem;
  color: white;
}

.share-btn.twitter { background: #1da1f2; }
.share-btn.linkedin { background: #0077b5; }
.share-btn.facebook { background: #1877f2; }

.format-links {
  list-style: none;
}

.format-links li {
  margin-bottom: 0.5rem;
}

.keywords {
  font-size: 0.875rem;
  color: var(--text-light);
}

.pr-nav {
  padding: 2rem 0;
  border-top: 1px solid var(--border);
}

.pr-nav .container {
  display: flex;
  gap: 1rem;
}

/* CTA Section */
.cta-section {
  text-align: center;
  margin-top: 2rem;
}

/* Error Page */
.error-page {
  text-align: center;
  padding: 4rem 0;
}

.error-page h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.error-page p {
  margin-bottom: 2rem;
  color: var(--text-light);
}

/* Footer */
.site-footer {
  background: var(--text);
  color: white;
  padding: 3rem 0 1.5rem;
  margin-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
}

.footer-section a:hover {
  color: white;
}

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
}

/* Pricing Page */
.hero-sm {
  padding: 2.5rem 0;
}

.pricing-section {
  padding: 3rem 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
  align-items: stretch;
}

.pricing-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  padding: 2rem;
  text-align: center;
  position: relative;
  transition: border-color 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}

.pricing-card .pricing-features {
  height: 220px;
  overflow-y: auto;
  margin-bottom: 1.5rem;
}

.pricing-card > a.btn {
  margin-top: auto;
}

.pricing-card:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
  border: 2px solid var(--primary);
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.2);
}

.featured-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: white;
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
}

.pricing-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.pricing-description {
  color: var(--text-light);
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}

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

.price-amount {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text);
}

.price-unit {
  display: block;
  font-size: 0.875rem;
  color: var(--text-light);
}

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

.pricing-features li {
  padding: 0.5rem 0;
  font-size: 0.875rem;
  border-bottom: 1px solid var(--border);
}

.pricing-features li:before {
  content: "✓";
  color: var(--success);
  margin-right: 0.5rem;
}

/* Distribution Channels in Pricing */
.pricing-channels {
  height: 180px;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  text-align: left;
}

.pricing-channels h4 {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.channel-list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 130px;
  overflow-y: auto;
  scrollbar-width: thin;
}

.channel-list::-webkit-scrollbar {
  width: 6px;
}

.channel-list::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 3px;
}

.channel-list::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 3px;
}

.channel-list::-webkit-scrollbar-thumb:hover {
  background: #999;
}

.channel-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0;
  font-size: 0.8125rem;
  color: var(--text);
}

.channel-icon {
  font-size: 1rem;
}

.channel-item.channel-news_wire {
  color: var(--primary);
  font-weight: 500;
}

/* Addons */
.addons-section {
  text-align: center;
  margin-bottom: 4rem;
}

.addons-section h2 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.addons-description {
  color: var(--text-light);
  margin-bottom: 2rem;
}

.addons-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.addon-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  padding: 1.5rem;
}

.addon-info h4 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.addon-price {
  color: var(--primary);
  font-weight: 600;
}

/* FAQ */
.pricing-faq {
  max-width: 800px;
  margin: 0 auto;
}

.pricing-faq h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.faq-item h4 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.faq-item p {
  color: var(--text-light);
  font-size: 0.875rem;
}

/* Checkout Page */
.checkout-page {
  background: var(--bg-alt);
  padding: 2rem 0;
  min-height: calc(100vh - 200px);
}

.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 2rem;
  align-items: start;
}

.checkout-main {
  background: white;
  border-radius: 0.5rem;
  border: 1px solid var(--border);
  padding: 2rem;
}

.checkout-main h1 {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.checkout-section {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.checkout-section:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}

.checkout-section h2 {
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.checkout-user {
  background: var(--bg-alt);
  padding: 1rem;
  border-radius: 0.375rem;
}

.checkout-form .form-group {
  margin-bottom: 1rem;
}

.checkout-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.checkout-form label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.checkout-form input {
  width: 100%;
  padding: 0.625rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: 0.375rem;
  font-size: 0.875rem;
}

.checkout-form input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26, 86, 219, 0.1);
}

/* Payment section trust elements */
.payment-container {
  background: #fafbfc;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  padding: 1.25rem;
}
.payment-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #059669;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #e5e7eb;
}
.card-label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.card-input-wrapper {
  margin-bottom: 0.75rem;
}
.card-input {
  background: #fff;
  border: 1px solid #d1d5db;
  border-radius: 0.375rem;
  padding: 0.75rem 0.875rem;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.card-input.StripeElement--focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26, 86, 219, 0.1);
}
.card-input.StripeElement--invalid {
  border-color: #ef4444;
}
.card-errors {
  color: #ef4444;
  font-size: 0.8125rem;
  margin-top: 0.5rem;
  min-height: 1.25rem;
}
.payment-badges {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-top: 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid #e5e7eb;
}
.payment-badges img, .payment-badges .card-brand { height: 22px; opacity: 0.7; }
.badge-divider {
  width: 1px;
  height: 18px;
  background: #d1d5db;
}
.ssl-text {
  font-size: 0.6875rem;
  color: #9ca3af;
  font-weight: 500;
}
.checkout-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 1rem;
  padding: 0.875rem 1.5rem;
  font-weight: 600;
}
.checkout-btn .btn-lock { flex-shrink: 0; }
.checkout-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  font-size: 0.8125rem;
  color: #6b7280;
  margin-top: 0.75rem;
  text-align: center;
}
.checkout-guarantee svg { flex-shrink: 0; }

.addons-selection {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.addon-checkbox {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--bg-alt);
  border-radius: 0.375rem;
  cursor: pointer;
  transition: background 0.15s;
}

.addon-checkbox:hover {
  background: var(--border);
}

.addon-checkbox input {
  width: 18px;
  height: 18px;
}

.addon-label {
  display: flex;
  justify-content: space-between;
  flex: 1;
}

.addon-name {
  font-weight: 500;
}

.mock-payment-notice {
  background: #fef3c7;
  border: 1px solid #fcd34d;
  border-radius: 0.375rem;
  padding: 1rem;
  font-size: 0.875rem;
}

.mock-payment-notice p {
  margin: 0;
}

/* Checkout Sidebar */
.checkout-sidebar {
  position: sticky;
  top: 2rem;
}

.order-summary {
  background: white;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  padding: 1.5rem;
}

.order-summary h3 {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.summary-item {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
}

.package-item {
  font-weight: 600;
}

.addon-item {
  font-size: 0.875rem;
  color: var(--text-light);
}

.summary-total {
  display: flex;
  justify-content: space-between;
  padding: 1rem 0;
  margin-top: 1rem;
  border-top: 1px solid var(--border);
  font-weight: 700;
  font-size: 1.125rem;
}

.package-features {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.package-features h4 {
  font-size: 0.875rem;
  color: var(--text-light);
  margin-bottom: 0.75rem;
}

.package-features ul {
  list-style: none;
  font-size: 0.875rem;
}

.package-features li {
  padding: 0.25rem 0;
  color: var(--text-light);
}

.package-features li:before {
  content: "✓";
  color: var(--success);
  margin-right: 0.5rem;
}

/* Package Channels (Checkout) */
.package-channels {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.package-channels h4 {
  font-size: 0.875rem;
  color: var(--text-light);
  margin-bottom: 0.75rem;
}

.package-channels ul {
  list-style: none;
  font-size: 0.8125rem;
}

.package-channels li {
  padding: 0.25rem 0;
  color: var(--text-light);
}

.package-channels li:before {
  content: "📡";
  margin-right: 0.5rem;
}

.package-channels li.channel-news_wire:before {
  content: "⚡";
}

.package-channels li.channel-news_wire {
  color: var(--primary);
}

/* Success Page */
.success-page {
  background: var(--bg-alt);
  padding: 4rem 0;
  min-height: calc(100vh - 200px);
}

.success-card {
  max-width: 600px;
  margin: 0 auto;
  background: white;
  border-radius: 0.5rem;
  border: 1px solid var(--border);
  padding: 3rem;
  text-align: center;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: var(--success);
  color: white;
  border-radius: 50%;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.success-card h1 {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.success-message {
  color: var(--text-light);
  margin-bottom: 2rem;
}

.order-details {
  background: var(--bg-alt);
  border-radius: 0.375rem;
  padding: 1.5rem;
  margin-bottom: 2rem;
  text-align: left;
}

.order-details h3 {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.detail-row {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  font-size: 0.875rem;
}

.next-steps {
  text-align: left;
  margin-bottom: 2rem;
}

.next-steps h3 {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.next-steps ol {
  padding-left: 1.25rem;
}

.next-steps li {
  padding: 0.25rem 0;
  font-size: 0.875rem;
  color: var(--text-light);
}

.success-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

/* Responsive */
@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto 4rem;
  }

  .pricing-card.featured {
    transform: none;
  }

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

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

  .checkout-layout {
    grid-template-columns: 1fr;
  }

  .checkout-sidebar {
    order: -1;
    position: static;
  }

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

@media (max-width: 768px) {
  .hero h1 {
    font-size: 1.75rem;
  }

  .listing-layout {
    grid-template-columns: 1fr;
  }

  .sidebar {
    order: 2;
  }

  .pr-content-wrapper {
    grid-template-columns: 1fr;
  }

  .pr-sidebar {
    position: static;
  }

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

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

  .checkout-form .form-row {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
  }

  .success-actions {
    flex-direction: column;
  }
}
