/* --- Color Palette & Fonts --- */
:root {
  --brand-orange: #F16623;
  --brand-blue: #2A4B8D;
  --text-dark: #1c1e21;
  --text-light: #606770;
  --background-light: #f8f9fa;
  --container-white: #ffffff;
  --border-color: #dee2e6;
  --highlight-color: #fff9f5;
  --success-green: #28a745;
  --warning-red: #dc3545;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background-color: var(--background-light);
  color: var(--text-dark);
  margin: 0;
  line-height: 1.6;
}

/* Brand Header */
.brand-header {
  background-color: var(--brand-orange);
  padding: 20px;
  text-align: center;
}
.header-logo {
  max-width: 450px;
  height: auto;
}

/* Page Content */
.comparison-page {
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 20px;
}

.page-header {
  text-align: center;
  margin-bottom: 50px;
}
.page-header h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 15px;
}
.page-header p {
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 30px;
}
.back-link {
  color: var(--brand-orange);
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
}
.back-link:hover {
  text-decoration: underline;
}

/* Comparison Table */
.comparison-container {
  background-color: var(--container-white);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  overflow: hidden;
  margin-bottom: 60px;
}

.comparison-table {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.2fr;
  min-width: 800px;
}

/* Header Row */
.table-header {
  display: contents;
}
.table-header > div {
  padding: 25px 20px;
  background-color: var(--background-light);
  border-bottom: 2px solid var(--border-color);
  text-align: center;
}
.feature-column {
  text-align: left !important;
  background-color: var(--container-white) !important;
}
.artist-amp-column.highlighted {
  background-color: var(--highlight-color) !important;
  border: 2px solid var(--brand-orange);
  position: relative;
}
.artist-amp-column h3 {
  color: var(--brand-orange);
  margin-bottom: 5px;
}
.price {
  font-size: 18px;
  font-weight: 700;
  margin: 5px 0;
}
.badge {
  position: absolute;
  top: -10px;
  right: 10px;
  background-color: var(--brand-orange);
  color: white;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: bold;
}

/* Section Headers */
.section-header {
  grid-column: 1 / -1;
  padding: 20px;
  background-color: var(--brand-blue);
  color: white;
  font-weight: 600;
}
.section-header h4 {
  margin: 0;
  font-size: 18px;
}

/* Table Rows */
.table-row {
  display: contents;
}
.table-row > div {
  padding: 15px 20px;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.feature-name {
  font-weight: 600;
  text-align: left !important;
  justify-content: flex-start !important;
  background-color: #fafbfc;
}
.feature-value.highlight {
  background-color: var(--highlight-color);
  color: var(--brand-orange);
  font-weight: 700;
}
.feature-value.warning {
  color: var(--warning-red);
  font-weight: 600;
}

/* CTA Section */
.cta-section {
  text-align: center;
  padding: 60px 40px;
  background-color: var(--container-white);
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.06);
  margin-bottom: 40px;
}
.cta-section h2 {
  font-size: 36px;
  margin-bottom: 15px;
}
.cta-section p {
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.primary-button {
  background-color: var(--brand-orange);
  color: white;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  transition: opacity 0.3s;
}
.primary-button:hover {
  opacity: 0.9;
}
.secondary-button {
  background-color: transparent;
  color: var(--brand-blue);
  padding: 15px 30px;
  border: 2px solid var(--brand-blue);
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  transition: all 0.3s;
}
.secondary-button:hover {
  background-color: var(--brand-blue);
  color: white;
}

/* Disclaimer */
.disclaimer {
  text-align: center;
  color: var(--text-light);
  font-style: italic;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .comparison-container {
    overflow-x: auto;
  }
  .comparison-table {
    min-width: 1000px;
  }
}

@media (max-width: 768px) {
  .page-header h1 {
    font-size: 32px;
  }
  .cta-section {
    padding: 40px 20px;
  }
  .cta-section h2 {
    font-size: 28px;
  }
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  .primary-button, .secondary-button {
    width: 100%;
    max-width: 300px;
  }
}
