/* ==================== */
/* CSS Variables */
/* ==================== */
:root {
  --primary-color: #2BADA8;
  --primary-dark: #229F9A;
  --primary-light: #3EC4BF;
  --secondary-color: #1A7F7A;
  --accent-color: #FFB84D;

  --text-dark: #1A202C;
  --text-medium: #4A5568;
  --text-light: #718096;

  --bg-white: #FFFFFF;
  --bg-light: #F7FAFC;
  --bg-dark: #2D3748;

  --border-color: #E2E8F0;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);

  --transition: all 0.3s ease;
}

/* ==================== */
/* Reset & Base Styles */
/* ==================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

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

section {
  padding: 80px 0;
}

h1, h2, h3, h4 {
  line-height: 1.2;
  font-weight: 700;
}

h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-align: center;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

p {
  color: var(--text-medium);
  font-size: 1.1rem;
}

.section-subtitle {
  text-align: center;
  color: var(--text-light);
  font-size: 1.2rem;
  margin-bottom: 3rem;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ==================== */
/* Buttons */
/* ==================== */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  text-align: center;
}

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

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background: var(--bg-white);
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

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

.btn-outline {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

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

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

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

.btn-large {
  padding: 16px 36px;
  font-size: 1.1rem;
}

/* ==================== */
/* Navigation */
/* ==================== */
.navbar {
  background: white;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
}

.logo img {
  width: 36px;
  height: 36px;
}

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

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

.nav-links a:hover {
  color: var(--primary-color);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  gap: 4px;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--text-dark);
  transition: var(--transition);
}

/* ==================== */
/* Hero Section */
/* ==================== */
.hero {
  background: linear-gradient(135deg, var(--bg-light) 0%, #E6FFFD 100%);
  padding: 100px 0;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content h1 {
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 1.3rem;
  color: var(--text-medium);
  margin-bottom: 2rem;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.badge {
  background: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  color: var(--primary-color);
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}

/* Browser Mockup */
.browser-mockup {
  background: white;
  border-radius: 12px;
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}

.browser-header {
  background: #E2E8F0;
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.browser-dots {
  display: flex;
  gap: 6px;
}

.browser-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #CBD5E0;
}

.browser-url {
  flex: 1;
  background: white;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.9rem;
  color: var(--text-light);
}

.browser-content {
  padding: 40px;
  position: relative;
  min-height: 400px;
}

.article-preview {
  opacity: 0.3;
}

.article-text {
  height: 12px;
  background: var(--border-color);
  border-radius: 4px;
  margin-bottom: 10px;
}

.article-text.short {
  width: 60%;
}

.article-text.medium {
  width: 80%;
}

.summary-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: var(--shadow-xl);
  width: 80%;
  border: 3px solid var(--primary-color);
}

.summary-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--primary-color);
  font-weight: 700;
}

.summary-header img {
  width: 24px;
  height: 24px;
}

.summary-text {
  height: 10px;
  background: var(--primary-light);
  border-radius: 4px;
  margin-bottom: 8px;
  opacity: 0.3;
}

/* ==================== */
/* Features Section */
/* ==================== */
.features {
  background: white;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.feature-card {
  padding: 30px;
  border-radius: 12px;
  border: 2px solid var(--border-color);
  transition: var(--transition);
}

.feature-card:hover {
  border-color: var(--primary-color);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.feature-card p {
  color: var(--text-medium);
}

/* ==================== */
/* How It Works Section */
/* ==================== */
.how-it-works {
  background: var(--bg-light);
}

.steps {
  max-width: 800px;
  margin: 0 auto;
}

.step {
  display: flex;
  gap: 30px;
  margin-bottom: 40px;
  align-items: flex-start;
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  flex-shrink: 0;
}

.step-content h3 {
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.step-content p {
  color: var(--text-medium);
}

/* ==================== */
/* Pricing Section */
/* ==================== */
.pricing {
  background: white;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  max-width: 1300px;
  margin: 0 auto;
}

.pricing-card {
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 16px;
  padding: 35px;
  transition: var(--transition);
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.pricing-card.featured {
  border-color: var(--primary-color);
  border-width: 3px;
}

.popular-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--accent-color);
  color: white;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 700;
}

.plan-header {
  text-align: center;
  margin-bottom: 30px;
  padding-bottom: 25px;
  border-bottom: 2px solid var(--border-color);
}

.plan-header h3 {
  color: var(--text-dark);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.price {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-bottom: 10px;
}

.currency {
  font-size: 1.5rem;
  color: var(--text-medium);
  margin-top: 8px;
}

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

.period {
  font-size: 1rem;
  color: var(--text-light);
  align-self: flex-end;
  margin-bottom: 12px;
}

.plan-features {
  list-style: none;
  margin-bottom: 30px;
}

.plan-features li {
  padding: 12px 0;
  color: var(--text-medium);
  font-size: 1rem;
}

.pricing-card .btn {
  width: 100%;
}

/* Best Deal Badge */
.pricing-card.best-deal {
  border-color: #10B981;
  border-width: 3px;
  position: relative;
  transform: scale(1.02);
}

.best-deal-badge {
  position: absolute;
  top: -15px;
  right: 20px;
  background: linear-gradient(135deg, #10B981 0%, #059669 100%);
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
  animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* Premium Feature Styling in Plan Cards */
.premium-feature {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(124, 58, 237, 0.1) 100%);
  border-left: 3px solid #8B5CF6;
  padding: 12px 16px !important;
  margin: 8px 0 !important;
  border-radius: 8px;
  font-weight: 700;
  color: #6B21A8;
  position: relative;
}

.new-badge {
  display: inline-block;
  background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
  color: white;
  padding: 2px 8px;
  border-radius: 10px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-left: 6px;
  vertical-align: middle;
  box-shadow: 0 2px 6px rgba(245, 158, 11, 0.3);
  animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
  0%, 100% {
    box-shadow: 0 2px 6px rgba(245, 158, 11, 0.3);
  }
  50% {
    box-shadow: 0 2px 12px rgba(245, 158, 11, 0.6);
  }
}

/* Compare Plans Button */
.compare-plans-btn-wrapper {
  text-align: center;
  margin: 30px 0 50px 0;
}

.btn-compare {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 32px;
  font-size: 1rem;
  font-weight: 600;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.btn-compare:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-compare::after {
  content: '↓';
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.btn-compare:hover::after {
  transform: translateY(3px);
}

/* ==================== */
/* Feature Matrix */
/* ==================== */
.feature-matrix {
  margin-top: 80px;
  padding-top: 60px;
  border-top: 2px solid var(--border-color);
}

.matrix-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
  color: var(--primary-color);
}

.matrix-wrapper {
  background: white;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  overflow-x: auto;
}

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

.comparison-table thead {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: white;
}

.comparison-table th {
  padding: 20px 16px;
  font-size: 1.1rem;
  font-weight: 700;
  text-align: center;
  border-right: 2px solid rgba(255, 255, 255, 0.2);
}

.comparison-table th.feature-col {
  text-align: left;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.9);
  min-width: 220px;
}

.comparison-table th:last-child {
  border-right: none;
}

.comparison-table th.featured-col {
  background: linear-gradient(135deg, var(--accent-color) 0%, #FF9D1A 100%);
}

.comparison-table tbody tr {
  border-bottom: 1px solid var(--border-color);
  transition: background-color 0.2s ease;
}

.comparison-table tbody tr:hover {
  background-color: var(--bg-light);
}

.comparison-table tbody tr:last-child {
  border-bottom: none;
}

.comparison-table td {
  padding: 16px;
  text-align: center;
  border-right: 1px solid var(--border-color);
}

.comparison-table td:last-child {
  border-right: none;
}

.comparison-table td.featured-col {
  background: linear-gradient(to bottom, rgba(255, 184, 77, 0.08) 0%, rgba(255, 184, 77, 0.04) 100%);
}

/* Category headers */
.category-row {
  background: linear-gradient(135deg, rgba(43, 173, 168, 0.08) 0%, rgba(20, 184, 166, 0.08) 100%);
}

.category-row .category-header {
  padding: 12px 16px;
  font-weight: 700;
  color: var(--primary-color);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 2px solid var(--primary-color);
  text-align: left;
}

.category-row .category-header svg {
  vertical-align: middle;
  margin-right: 8px;
  color: var(--primary-color);
}

/* Feature name */
.feature-name {
  text-align: left !important;
  font-weight: 600;
  color: var(--text-medium);
}

/* Check and cross marks */
.check {
  color: #10B981;
  font-size: 1.4rem;
  font-weight: 700;
}

.cross {
  color: #EF4444;
  font-size: 1.4rem;
  font-weight: 700;
}

/* Value text */
.value-text {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 1rem;
}

/* Premium Feature Row in Matrix */
.premium-feature-row {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.08) 0%, rgba(124, 58, 237, 0.05) 100%);
  border-left: 4px solid #8B5CF6;
  border-right: 4px solid #8B5CF6;
}

.premium-feature-row:hover {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.12) 0%, rgba(124, 58, 237, 0.08) 100%);
}

.premium-feature-name {
  font-weight: 700;
  color: #6B21A8;
  font-size: 1.05rem;
}

.feature-description {
  font-size: 0.8rem;
  color: #8B5CF6;
  font-weight: 500;
  margin-top: 4px;
  font-style: italic;
}

.new-badge-inline {
  display: inline-block;
  background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
  color: white;
  padding: 2px 8px;
  border-radius: 10px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-left: 8px;
  vertical-align: middle;
  box-shadow: 0 2px 6px rgba(245, 158, 11, 0.3);
  animation: glow 2s ease-in-out infinite;
}

.premium-check-cell {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(124, 58, 237, 0.08) 100%);
}

.premium-check {
  font-size: 1.8rem;
  color: #8B5CF6;
  text-shadow: 0 2px 4px rgba(139, 92, 246, 0.3);
}

/* ==================== */
/* Installation Section */
/* ==================== */
.install {
  background: var(--bg-light);
}

.browser-tabs {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.browser-tab {
  padding: 15px 30px;
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 10px;
}

.browser-tab:hover {
  border-color: var(--primary-color);
}

.browser-tab.active {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

.browser-icon {
  font-size: 1.5rem;
}

.install-instructions {
  display: none;
  max-width: 800px;
  margin: 0 auto;
}

.install-instructions.active {
  display: block;
}

.instruction-step {
  display: flex;
  gap: 30px;
  margin-bottom: 35px;
  align-items: flex-start;
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}

.instruction-step .step-number {
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 700;
  flex-shrink: 0;
}

.step-text h3 {
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.step-text p {
  color: var(--text-medium);
  margin-bottom: 1rem;
}

.step-text code {
  background: var(--bg-light);
  padding: 4px 8px;
  border-radius: 4px;
  font-family: 'Courier New', monospace;
  color: var(--primary-color);
  font-weight: 600;
}

/* ==================== */
/* CTA Section */
/* ==================== */
.cta {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: white;
  text-align: center;
}

.cta h2 {
  color: white;
  margin-bottom: 1rem;
}

.cta p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

/* ==================== */
/* Footer */
/* ==================== */
.footer {
  background: var(--bg-dark);
  color: white;
  padding: 60px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

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

.footer-section h4 {
  margin-bottom: 1rem;
  color: var(--primary-light);
}

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

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

.footer-section a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.footer-section a:hover {
  color: var(--primary-light);
}

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

/* ==================== */
/* Responsive Design */
/* ==================== */
@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .hero .container {
    gap: 40px;
  }
}

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

  h2 {
    font-size: 2rem;
  }

  .nav-links {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .hero .container {
    grid-template-columns: 1fr;
  }

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

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

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

  .feature-matrix {
    margin-top: 60px;
    padding-top: 40px;
  }

  .matrix-title {
    font-size: 1.6rem;
  }

  .comparison-table {
    font-size: 0.85rem;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 10px 8px;
  }

  .comparison-table th.feature-col {
    min-width: 150px;
  }

  .check, .cross {
    font-size: 1.2rem;
  }

  .value-text {
    font-size: 0.9rem;
  }

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

  .browser-tabs {
    gap: 10px;
  }

  .browser-tab {
    padding: 12px 20px;
    font-size: 0.9rem;
  }

  .browser-icon {
    font-size: 1.2rem;
  }

  .instruction-step {
    flex-direction: column;
    gap: 15px;
  }

  .instruction-step .step-number {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  section {
    padding: 60px 0;
  }
}

/* ==================== */
/* Auth Pages */
/* ==================== */
.auth-section {
  background: var(--bg-light);
  min-height: calc(100vh - 80px - 250px); /* viewport - nav - footer */
  display: flex;
  align-items: center;
}

.auth-container {
  max-width: 500px;
  margin: 0 auto;
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.auth-header {
  text-align: center;
  margin-bottom: 2rem;
}

.auth-header h1 {
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.auth-header p {
  color: var(--text-medium);
}

.auth-form {
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
  font-weight: 600;
}

.form-group input {
  width: 100%;
  padding: 12px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input:focus {
  outline: none;
  border-color: var(--primary-color);
}

.form-group small {
  display: block;
  margin-top: 0.5rem;
  color: var(--text-light);
  font-size: 0.85rem;
}

.error-message {
  background: #fee;
  color: #c33;
  padding: 12px;
  border-radius: 8px;
  margin-bottom: 1rem;
  border-left: 4px solid #c33;
}

.success-message {
  background: #efe;
  color: #3c3;
  padding: 12px;
  border-radius: 8px;
  margin-bottom: 1rem;
  border-left: 4px solid #3c3;
}

.btn-block {
  width: 100%;
  justify-content: center;
}

.loader {
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255,255,255,0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin-left: 10px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.auth-footer {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid #e0e0e0;
}

.auth-footer a {
  color: var(--primary-color);
  font-weight: 600;
}

.auth-footer a:hover {
  text-decoration: underline;
}

.auth-benefits {
  margin-top: 2rem;
  padding: 20px;
  background: var(--bg-light);
  border-radius: 8px;
}

.auth-benefits h3 {
  color: var(--text-dark);
  margin-bottom: 1rem;
  font-size: 1rem;
}

.auth-benefits ul {
  list-style: none;
}

.auth-benefits li {
  color: var(--text-medium);
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

/* ==================== */
/* Account Page */
/* ==================== */
.account-section {
  background: var(--bg-light);
  min-height: calc(100vh - 80px - 250px);
  padding: 60px 0;
}

.account-section h1 {
  color: var(--text-dark);
  margin-bottom: 2rem;
}

.account-card {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}

.account-card h2 {
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.account-info .info-row {
  display: flex;
  justify-content: space-between;
  padding: 15px 0;
  border-bottom: 1px solid #e0e0e0;
}

.account-info .info-row:last-child {
  border-bottom: none;
}

.account-info .label {
  font-weight: 600;
  color: var(--text-medium);
}

.account-info .value {
  color: var(--text-dark);
}

.plan-badge {
  display: inline-block;
  padding: 8px 20px;
  background: var(--primary-gradient);
  color: white;
  border-radius: 20px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.plan-details p {
  color: var(--text-medium);
  margin-bottom: 0.5rem;
}

.usage-info {
  margin-top: 2rem;
}

.usage-info h3 {
  color: var(--text-dark);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.usage-bar-container {
  width: 100%;
  height: 24px;
  background: #e0e0e0;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 0.5rem;
}

.usage-bar {
  height: 100%;
  background: var(--primary-gradient);
  transition: width 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 10px;
  color: white;
  font-weight: 600;
  font-size: 0.85rem;
}

#usage-text {
  color: var(--text-medium);
  font-size: 0.95rem;
}

.upgrade-section {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 2px solid #e0e0e0;
}

.upgrade-section h3 {
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.upgrade-section > p {
  color: var(--text-medium);
  margin-bottom: 1.5rem;
}

.upgrade-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.upgrade-option {
  padding: 20px;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  transition: var(--transition);
}

.upgrade-option:hover {
  border-color: var(--primary-color);
  transform: translateY(-2px);
}

.upgrade-option h4 {
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.upgrade-option p {
  color: var(--text-medium);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.upgrade-btn {
  width: 100%;
}

/* ==================== */
/* Success Page */
/* ==================== */
.success-section {
  background: var(--bg-light);
  min-height: calc(100vh - 80px - 250px);
  display: flex;
  align-items: center;
}

.success-container {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  background: white;
  padding: 60px 40px;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

.success-container h1 {
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.success-container p {
  color: var(--text-medium);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

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

.next-steps h2 {
  color: var(--text-dark);
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  .auth-container {
    padding: 30px 20px;
  }

  .account-card {
    padding: 20px;
  }

  .upgrade-options {
    grid-template-columns: 1fr;
  }

  .success-container {
    padding: 40px 20px;
  }

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