@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
  --accent-color: #14b8a6;
  --accent-light: #f0fdfa;
  --accent-border: #ccfbf1;
  --accent-hover: #0d9488;
  --text-dark: #111827;
  --text-light: #4b5563;
  --bg-light: #f9fafb;
  --bg-white: #ffffff;
  --border-color: #e5e7eb;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

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

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

.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  background-color: var(--accent-color);
  width: 0%;
  z-index: 1000;
  transition: width 0.1s ease;
}

header {
  position: sticky;
  top: 0;
  background-color: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid var(--border-color);
  z-index: 999;
  backdrop-filter: blur(5px);
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
}

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

.logo-dot {
  width: 12px;
  height: 12px;
  background-color: var(--accent-color);
  border-radius: 50%;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-light);
  font-weight: 500;
  transition: color 0.2s;
}

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

.header-cta {
  background-color: var(--accent-color);
  color: white;
  padding: 0.5rem 1.25rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.2s;
}

.header-cta:hover {
  background-color: var(--accent-hover);
}

.hero-intro {
  max-width: 900px;
  margin: 4rem auto 2rem;
  text-align: center;
  padding: 0 2rem;
}

.hero-tag {
  background-color: var(--accent-light);
  color: var(--accent-color);
  border: 1px solid var(--accent-border);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 1rem;
}

.hero-intro h1 {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.hero-intro h1 .highlight {
  color: var(--accent-color);
}

.subtitle {
  font-size: 1.125rem;
  color: var(--text-light);
  margin-bottom: 2.5rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.hero-stats div {
  background-color: var(--bg-white);
  padding: 1.5rem 1rem;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  font-weight: 700;
  color: var(--text-dark);
  border-top: 4px solid var(--accent-color);
  font-size: 0.95rem;
}

.content-block {
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem;
}

.section {
  background-color: var(--bg-white);
  border-radius: 12px;
  padding: 2.5rem;
  margin-bottom: 3rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
}

.section-number {
  color: var(--accent-color);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
}

.section h2 {
  font-size: 1.8rem;
  color: var(--text-dark);
  margin-top: 0;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.section img {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  border: 1px solid var(--border-color);
}

.section p {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.section p a {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px dashed var(--accent-color);
  transition: all 0.2s;
}

.section p a:hover {
  color: var(--accent-hover);
  border-bottom-style: solid;
}

/* Custom Components styled using Teal Accent */
.winner-box {
  background-color: var(--accent-light);
  border-left: 4px solid var(--accent-color);
  padding: 1.5rem;
  border-radius: 4px;
  margin: 1.5rem 0;
}

.winner-box h4 {
  margin: 0 0 0.5rem 0;
  color: var(--accent-color);
  font-size: 1.1rem;
  font-weight: 700;
}

.winner-box p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.95rem;
}

.compare-table th, .compare-table td {
  border: 1px solid var(--border-color);
  padding: 0.75rem 1rem;
  text-align: left;
}

.compare-table th {
  background-color: #f3f4f6;
  font-weight: 600;
  color: var(--text-dark);
}

.compare-table tr:nth-child(even) {
  background-color: #f9fafb;
}

.compare-table td strong {
  color: var(--accent-color);
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.feature-list li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.75rem;
  color: var(--text-light);
}

.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-weight: bold;
}

.tip-box {
  background-color: #f9fafb;
  border: 1px dashed var(--accent-color);
  padding: 1.25rem;
  border-radius: 6px;
  margin: 1.5rem 0;
}

.tip-box h5 {
  margin: 0 0 0.5rem 0;
  color: var(--text-dark);
  font-size: 1rem;
}

.tip-box p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.rating-container {
  margin: 1.5rem 0;
}

.rating-label {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

.rating-bar-bg {
  background-color: #e5e7eb;
  height: 8px;
  border-radius: 999px;
  overflow: hidden;
}

.rating-bar {
  background-color: var(--accent-color);
  height: 100%;
}

.section-cta {
  margin-top: 2rem;
  text-align: right;
}

.cta-primary {
  display: inline-block;
  background-color: var(--accent-color);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.2s;
}

.cta-primary:hover {
  background-color: var(--accent-hover);
}

/* FAQ Styles */
.faq-container {
  margin-top: 2rem;
}

.faq-item {
  border-bottom: 1px solid var(--border-color);
  padding: 1.25rem 0;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  font-weight: 700;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.05rem;
  user-select: none;
}

.faq-question span {
  font-size: 1.25rem;
  color: var(--accent-color);
  font-weight: bold;
}

.faq-answer {
  margin-top: 0.75rem;
  color: var(--text-light);
  display: none;
  font-size: 0.95rem;
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  display: block;
}

footer {
  background-color: #111827;
  color: #9ca3af;
  padding: 4rem 2rem 2rem;
  margin-top: 4rem;
  border-top: 1px solid #1f2937;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-col h3 {
  color: white;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.footer-col p {
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 0.75rem;
}

.footer-col ul li a {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.2s;
  font-size: 0.9rem;
}

.footer-col ul li a:hover {
  color: white;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid #1f2937;
  text-align: center;
  font-size: 0.875rem;
}

@media (max-width: 768px) {
  .hero-stats {
    grid-template-columns: 1fr 1fr;
  }
  .footer-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .header-container {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  .nav-links {
    margin: 1rem 0;
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* ==========================================
   MIGRATED INLINE STYLES
   ========================================== */
/* Inline variables overriding default variables if needed, specifically targeting #14b8a6 */
    :root {
      --accent-color: #14b8a6;
      --accent-light: #f0fdfa;
      --accent-border: #ccfbf1;
      --accent-hover: #0d9488;
    }

