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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  background-color: #ffffff;
}

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

/* Header Styles */
.header {
  background: #001e2b;
  color: white;
  padding: 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.logo {
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 1.25rem;
}

.logo a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: white;
  text-decoration: none;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin: 0;
}

.nav-list a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-list a:hover {
  color: #00ED64;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.search-btn {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 0.5rem;
  transition: all 0.2s ease;
}

.search-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  gap: 0.25rem;
}

.mobile-menu-btn span {
  width: 20px;
  height: 2px;
  background: white;
  transition: all 0.3s ease;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #001e2b 0%, #003d5c 100%);
  color: white;
  padding: 8rem 0 6rem;
  margin-top: 80px;
}

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

.hero-badge {
  display: inline-block;
  background: #00ED64;
  color: #001e2b;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: white;
}

.hero-description {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  max-width: 500px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
}

/* Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary {
  background: #00ED64;
  color: #001e2b;
}

.btn-primary:hover {
  background: #00d455;
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline {
  background: transparent;
  color: #001e2b;
  border: 1px solid #001e2b;
}

.btn-outline:hover {
  background: #001e2b;
  color: white;
}

/* Code Window */
.code-window {
  background: #1a2332;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.code-header {
  background: #2a3441;
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.code-dots {
  display: flex;
  gap: 0.5rem;
}

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

.code-dots span:nth-child(2) {
  background: #ffbd2e;
}

.code-dots span:nth-child(3) {
  background: #28ca42;
}

.code-title {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
}

.code-content {
  padding: 1.5rem;
  font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
  font-size: 0.875rem;
  line-height: 1.6;
  color: #e6e6e6;
}

.code-key {
  color: #79c0ff;
}

.code-string {
  color: #a5d6ff;
}

.code-boolean {
  color: #ff7b72;
}

.code-number {
  color: #79c0ff;
}

/* Featured Reviews Section */
.featured-reviews {
  padding: 6rem 0;
  background: #f8fafc;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #001e2b;
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.125rem;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.review-card {
  background: white;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.review-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.review-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-rating {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  text-align: center;
}

.rating-score {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
}

.rating-stars {
  font-size: 0.875rem;
  color: #fbbf24;
}

.review-content {
  padding: 1.5rem;
}

.review-content h3 {
  margin-bottom: 0.75rem;
}

.review-content h3 a {
  color: #001e2b;
  text-decoration: none;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.3;
}

.review-content h3 a:hover {
  color: #00ED64;
}

.review-content p {
  color: #64748b;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.review-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
  color: #94a3b8;
}

.review-category {
  background: #e2e8f0;
  color: #475569;
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  font-weight: 500;
}

.section-footer {
  text-align: center;
}

/* Comparison Section */
.comparison-section {
  padding: 6rem 0;
  background: white;
}

.comparison-table-wrapper {
  overflow-x: auto;
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
}

.comparison-table th,
.comparison-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid #e2e8f0;
}

.comparison-table th {
  background: #f8fafc;
  font-weight: 600;
  color: #001e2b;
}

.provider-cell {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.provider-logo {
  width: 32px;
  height: 32px;
  border-radius: 0.5rem;
}

.rating-badge {
  background: #00ED64;
  color: #001e2b;
  padding: 0.25rem 0.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 0.875rem;
}

.check {
  color: #10b981;
  font-weight: 700;
  font-size: 1.25rem;
}

/* Footer */
.footer {
  background: #001e2b;
  color: white;
  padding: 4rem 0 2rem;
}

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.footer-section h4 {
  font-weight: 600;
  margin-bottom: 1rem;
  color: white;
}

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

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

.footer-section ul li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-section ul li a:hover {
  color: #00ED64;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

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

/* Responsive Design */
@media (max-width: 768px) {
  .nav {
    display: none;
  }

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

  .hero {
    padding: 6rem 0 4rem;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-actions {
    justify-content: center;
    flex-wrap: wrap;
  }

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

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

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

  .comparison-table th,
  .comparison-table td {
    padding: 0.75rem 0.5rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

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

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

  .btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.875rem;
  }
}

/* Features Showcase */
.features-showcase {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.feature-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: 1rem;
  text-align: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.15);
}

.feature-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.feature-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: white;
}

.feature-card p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.4;
}

/* Legal Pages */
.legal-page {
  padding: 8rem 0 4rem;
  margin-top: 80px;
}

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

.legal-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #001e2b;
  margin-bottom: 0.5rem;
}

.last-updated {
  color: #64748b;
  margin-bottom: 2rem;
  font-style: italic;
}

.legal-content section {
  margin-bottom: 2rem;
}

.legal-content h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #001e2b;
  margin-bottom: 1rem;
  margin-top: 2rem;
}

.legal-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #001e2b;
  margin-bottom: 0.75rem;
  margin-top: 1.5rem;
}

.legal-content p {
  line-height: 1.7;
  margin-bottom: 1rem;
  color: #374151;
}

.legal-content ul {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

.legal-content li {
  line-height: 1.6;
  margin-bottom: 0.5rem;
  color: #374151;
}

/* Review Page Styles */
.review-page {
  padding: 8rem 0 4rem;
  margin-top: 80px;
}

.review-header {
  text-align: center;
  margin-bottom: 3rem;
}

.review-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #001e2b;
  margin-bottom: 1rem;
}

.review-summary {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.overall-rating {
  text-align: center;
}

.rating-number {
  font-size: 3rem;
  font-weight: 700;
  color: #00ed64;
}

.rating-text {
  font-size: 1.125rem;
  color: #64748b;
}

.quick-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  text-align: center;
}

.stat-item {
  padding: 1rem;
  background: #f8fafc;
  border-radius: 0.5rem;
}

.stat-value {
  font-size: 1.25rem;
  font-weight: 600;
  color: #001e2b;
}

.stat-label {
  font-size: 0.875rem;
  color: #64748b;
}

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

.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 2rem 0;
}

.pros,
.cons {
  padding: 1.5rem;
  border-radius: 0.75rem;
}

.pros {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
}

.cons {
  background: #fef2f2;
  border: 1px solid #fecaca;
}

.pros h3 {
  color: #166534;
  margin-bottom: 1rem;
}

.cons h3 {
  color: #dc2626;
  margin-bottom: 1rem;
}

.pros ul li {
  color: #166534;
}

.cons ul li {
  color: #dc2626;
}

@media (max-width: 768px) {
  .features-showcase {
    grid-template-columns: 1fr;
  }

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

  .quick-stats {
    grid-template-columns: 1fr;
  }

  .pros-cons {
    grid-template-columns: 1fr;
  }
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #ffffff;
}

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

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: all 0.3s ease;
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.logo {
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 1.25rem;
  color: #001e2b;
  text-decoration: none;
}

.logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
}

.logo svg {
  margin-right: 0.75rem;
}

.logo span {
  font-weight: 700;
}

.nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin: 0;
}

.nav-list a {
  text-decoration: none;
  color: #64748b;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-list a:hover {
  color: #00ed64;
}

.nav-list a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #00ed64;
  transition: width 0.3s ease;
}

.nav-list a:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.search-btn {
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  color: #64748b;
  transition: color 0.3s ease;
}

.search-btn:hover {
  color: #00ed64;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-btn span {
  width: 20px;
  height: 2px;
  background: #64748b;
  margin: 2px 0;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #001e2b 0%, #003d5c 100%);
  color: white;
  padding: 8rem 0 6rem;
  margin-top: 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
  opacity: 0.5;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-bottom: 4rem;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-button {
  display: inline-block;
  background: #00ed64;
  color: #001e2b;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.125rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 237, 100, 0.3);
}

.cta-button:hover {
  background: #00c653;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 237, 100, 0.4);
}

.hero-visual {
  position: relative;
  z-index: 2;
}

/* Features Showcase */
.features-showcase {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

.feature-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: 1rem;
  text-align: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.feature-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  display: block;
}

.feature-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: white;
}

.feature-card p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.4;
  margin: 0;
}

/* Reviews Section */
.reviews {
  padding: 6rem 0;
  background: #f8fafc;
}

.reviews h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: #001e2b;
  margin-bottom: 3rem;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.review-card {
  background: white;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.review-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.review-image {
  position: relative;
  height: 200px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.review-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-rating {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  text-align: center;
}

.rating-score {
  font-size: 1.25rem;
  font-weight: 700;
  display: block;
  color: #00ed64;
}

.rating-stars {
  font-size: 0.875rem;
  color: #ffd700;
  margin-top: 0.25rem;
}

.review-content {
  padding: 1.5rem;
}

.review-content h3 {
  margin-bottom: 0.75rem;
}

.review-content h3 a {
  text-decoration: none;
  color: #001e2b;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.review-content h3 a:hover {
  color: #00ed64;
}

.review-content p {
  color: #64748b;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.review-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
  color: #94a3b8;
}

.review-date {
  color: #94a3b8;
}

.review-category {
  background: #00ed64;
  color: #001e2b;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  font-weight: 500;
  font-size: 0.75rem;
}

/* Comparison Section */
.comparison {
  padding: 6rem 0;
  background: white;
}

.comparison h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: #001e2b;
  margin-bottom: 3rem;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.comparison-table th {
  background: #001e2b;
  color: white;
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.comparison-table td {
  padding: 1rem;
  border-bottom: 1px solid #e2e8f0;
  vertical-align: middle;
}

.comparison-table tr:hover {
  background: #f8fafc;
}

.provider-cell {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.provider-logo {
  width: 32px;
  height: 32px;
  border-radius: 0.25rem;
}

.rating-badge {
  background: #00ed64;
  color: #001e2b;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  font-weight: 600;
  font-size: 0.875rem;
}

.check {
  color: #00ed64;
  font-weight: 700;
  font-size: 1.125rem;
}

/* Review Page Styles */
.review-page {
  padding: 8rem 0 4rem;
  margin-top: 80px;
}

.review-header {
  text-align: center;
  margin-bottom: 3rem;
}

.review-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #001e2b;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.review-summary {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.overall-rating {
  text-align: center;
}

.rating-number {
  font-size: 3rem;
  font-weight: 700;
  color: #00ed64;
  line-height: 1;
}

.rating-stars {
  font-size: 1.25rem;
  color: #ffd700;
  margin: 0.5rem 0;
}

.rating-text {
  font-size: 1.125rem;
  color: #64748b;
  font-weight: 500;
}

.quick-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  text-align: center;
}

.stat-item {
  padding: 1rem;
  background: #f8fafc;
  border-radius: 0.5rem;
  border: 1px solid #e2e8f0;
}

.stat-value {
  font-size: 1.25rem;
  font-weight: 600;
  color: #001e2b;
  display: block;
}

.stat-label {
  font-size: 0.875rem;
  color: #64748b;
  margin-top: 0.25rem;
}

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

.review-content section {
  margin-bottom: 2.5rem;
}

.review-content h2 {
  font-size: 1.75rem;
  font-weight: 600;
  color: #001e2b;
  margin-bottom: 1rem;
  margin-top: 2rem;
}

.review-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #001e2b;
  margin-bottom: 0.75rem;
  margin-top: 1.5rem;
}

.review-content p {
  line-height: 1.7;
  margin-bottom: 1rem;
  color: #374151;
}

.review-content ul {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

.review-content li {
  line-height: 1.6;
  margin-bottom: 0.5rem;
  color: #374151;
}

.review-content strong {
  color: #001e2b;
  font-weight: 600;
}

/* Pros and Cons */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 2rem 0;
}

.pros,
.cons {
  padding: 1.5rem;
  border-radius: 0.75rem;
}

.pros {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
}

.cons {
  background: #fef2f2;
  border: 1px solid #fecaca;
}

.pros h3 {
  color: #166534;
  margin-bottom: 1rem;
  font-size: 1.125rem;
}

.cons h3 {
  color: #dc2626;
  margin-bottom: 1rem;
  font-size: 1.125rem;
}

.pros ul {
  list-style: none;
  padding-left: 0;
}

.cons ul {
  list-style: none;
  padding-left: 0;
}

.pros ul li {
  color: #166534;
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
}

.cons ul li {
  color: #dc2626;
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
}

.pros ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #16a34a;
  font-weight: bold;
}

.cons ul li::before {
  content: '✗';
  position: absolute;
  left: 0;
  color: #dc2626;
  font-weight: bold;
}

/* Legal Pages */
.legal-page {
  padding: 8rem 0 4rem;
  margin-top: 80px;
}

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

.legal-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #001e2b;
  margin-bottom: 0.5rem;
}

.last-updated {
  color: #64748b;
  margin-bottom: 2rem;
  font-style: italic;
}

.legal-content section {
  margin-bottom: 2rem;
}

.legal-content h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #001e2b;
  margin-bottom: 1rem;
  margin-top: 2rem;
}

.legal-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #001e2b;
  margin-bottom: 0.75rem;
  margin-top: 1.5rem;
}

.legal-content p {
  line-height: 1.7;
  margin-bottom: 1rem;
  color: #374151;
}

.legal-content ul {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

.legal-content ol {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

.legal-content li {
  line-height: 1.6;
  margin-bottom: 0.5rem;
  color: #374151;
}

.legal-content code {
  background: #f1f5f9;
  padding: 0.125rem 0.25rem;
  border-radius: 0.25rem;
  font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
  font-size: 0.875em;
  color: #1e293b;
}

/* Footer */
.footer {
  background: #001e2b;
  color: white;
  padding: 3rem 0 1rem;
}

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

.footer-section h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: white;
}

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

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

.footer-section ul li a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #00ed64;
}

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

.footer-logo svg {
  margin-right: 0.75rem;
}

.footer-section p {
  color: #94a3b8;
  line-height: 1.6;
}

.footer-bottom {
  border-top: 1px solid #334155;
  padding-top: 1rem;
  text-align: center;
  color: #94a3b8;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .container {
    padding: 0 15px;
  }

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

  .reviews-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }

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

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

@media (max-width: 768px) {
  .nav-list {
    display: none;
  }

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

  .hero {
    padding: 6rem 0 4rem;
    text-align: center;
  }

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

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

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

  .review-summary {
    flex-direction: column;
    gap: 1.5rem;
  }

  .quick-stats {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .pros-cons {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .comparison-table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 0.75rem 0.5rem;
    font-size: 0.75rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
  }

  .review-header h1 {
    font-size: 1.75rem;
  }

  .legal-content h1 {
    font-size: 1.75rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 10px;
  }

  .hero {
    padding: 5rem 0 3rem;
  }

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

  .reviews {
    padding: 4rem 0;
  }

  .reviews h2 {
    font-size: 1.75rem;
  }

  .comparison {
    padding: 4rem 0;
  }

  .comparison h2 {
    font-size: 1.75rem;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .review-card {
    margin: 0 auto;
    max-width: 350px;
  }

  .feature-card {
    padding: 1rem;
  }

  .review-content {
    padding: 1rem;
  }

  .legal-page,
  .review-page {
    padding: 6rem 0 3rem;
  }
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.mb-1 {
  margin-bottom: 0.25rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-3 {
  margin-bottom: 0.75rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mt-1 {
  margin-top: 0.25rem;
}

.mt-2 {
  margin-top: 0.5rem;
}

.mt-3 {
  margin-top: 0.75rem;
}

.mt-4 {
  margin-top: 1rem;
}

.hidden {
  display: none;
}

.visible {
  display: block;
}

/* Animation Classes */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 0.6s ease-out;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.slide-in {
  animation: slideIn 0.6s ease-out;
}

/* Focus States for Accessibility */
button:focus,
a:focus,
input:focus,
textarea:focus {
  outline: 2px solid #00ed64;
  outline-offset: 2px;
}

/* Print Styles */
@media print {

  .header,
  .footer,
  .nav-actions,
  .cta-button {
    display: none;
  }

  .hero {
    background: none;
    color: black;
    padding: 2rem 0;
  }

  .review-page,
  .legal-page {
    margin-top: 0;
    padding-top: 0;
  }

  .pros-cons {
    break-inside: avoid;
  }

  .review-card {
    break-inside: avoid;
    box-shadow: none;
    border: 1px solid #ccc;
  }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
  .hero {
    background: #000;
    color: #fff;
  }

  .feature-card {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.5);
  }

  .review-card {
    border: 2px solid #333;
  }

  .cta-button {
    border: 2px solid #00ed64;
  }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .hero::before {
    animation: none;
  }

  .feature-card:hover,
  .review-card:hover,
  .cta-button:hover {
    transform: none;
  }
}

/* Dark Mode Support (if needed in future) */
@media (prefers-color-scheme: dark) {
  /* Dark mode styles can be added here if needed */
}

body{
  max-width: 1300px;
  margin: 0 auto;
  background-image: url("data:image/svg+xml,<svg id='patternId' width='100%' height='100%' xmlns='http://www.w3.org/2000/svg'><defs><pattern id='a' patternUnits='userSpaceOnUse' width='34' height='51.115' patternTransform='scale(4) rotate(90)'><rect x='0' y='0' width='100%' height='100%' fill='hsla(174,43.9%,58%,1)'/><path d='M14.499 11.82L4.36 5.968l.002-11.706 10.14-5.855L24.638-5.74l-.001 11.707zm0 50.06L4.36 56.029l.002-11.706 10.14-5.855 10.137 5.852-.001 11.707zm14.498-25.117L18.858 30.91l.002-11.707L29 13.349l10.137 5.853-.001 11.706zm-29 0l-10.139-5.852.002-11.707L0 13.349l10.138 5.853-.002 11.706zm14.501-19.905L0 8.488.002-8.257l14.5-8.374L29-8.26l-.002 16.745zm0 50.06L0 58.548l.002-16.745 14.5-8.373L29 41.8l-.002 16.744zM28.996 41.8l-14.498-8.37.002-16.744L29 8.312l14.498 8.37-.002 16.745zm-29 0l-14.498-8.37.002-16.744L0 8.312l14.498 8.37-.002 16.745z' transform='translate(2.5,0)' stroke-linecap='square' stroke-width='4' stroke='hsla(174,37.9%,51.4%,1)' fill='none'/></pattern></defs><rect width='800%' height='800%' transform='translate(-72,-8)' fill='url(%23a)'/></svg>")
}

section{
  padding: 25px !important;
}

main{
  background: white !important;
}