/* ==============================
   HERO SECTION
============================== */
.hero-section {
  text-align: center;
  padding: 4rem 1rem 3rem;
  max-width: 960px;
  margin: 0 auto;
}

.hero-section h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: #444;
  max-width: 760px;
  margin: 0 auto 2rem;
}

/* ==============================
   CTA BUTTONS
============================== */
.hero-cta-group {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.8rem;
}

.cta-primary {
  background: #ff6b35;
  color: #fff;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 6px 16px rgba(255,107,53,0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(255,107,53,0.45);
}

.cta-secondary {
  border: 2px solid #ff6b35;
  color: #ff6b35;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
}

.cta-secondary:hover {
  background: #ff6b35;
  color: #fff;
}

/* ==============================
   TRUST BAR
============================== */
.trust-bar {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  font-size: 0.9rem;
  color: #555;
  margin-top: 1.2rem;
}

.trust-bar span {
  background: #f7f7f7;
  padding: 0.35rem 0.7rem;
  border-radius: 6px;
}

/* ==============================
   CATEGORY SECTION
============================== */
.category-section {
  margin-top: 4rem;
}

.category-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.category-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 1.6rem 1.4rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(0,0,0,0.12);
}

.category-card h3 {
  margin-bottom: 0.8rem;
}

.category-card ul {
  padding-left: 1rem;
  margin-bottom: 1.2rem;
}

.category-card li {
  margin-bottom: 0.5rem;
}

.category-card a {
  text-decoration: none;
}

.category-card a:hover {
  text-decoration: underline;
}

/* Card CTA */
.card-cta {
  display: inline-block;
  margin-top: 0.6rem;
  font-weight: 600;
  color: #ff6b35;
}

/* ==============================
   COMPARISON / QUESTIONS
============================== */
.comparison-section {
  margin-top: 4.5rem;
  text-align: center;
}

.comparison-list {
  list-style: none;
  padding: 0;
  max-width: 720px;
  margin: 1.8rem auto 0;
}

.comparison-list li {
  margin-bottom: 0.9rem;
}

.comparison-list a {
  display: block;
  padding: 0.9rem 1.2rem;
  background: #f9f9f9;
  border-radius: 10px;
  font-weight: 500;
  transition: background 0.15s ease, transform 0.15s ease;
}

.comparison-list a:hover {
  background: #fff1ec;
  transform: translateX(4px);
}

/* ==============================
   VALUE SECTION
============================== */
.value-section {
  margin: 4.5rem auto 3rem;
  max-width: 760px;
  text-align: center;
}

.value-points {
  list-style: none;
  padding: 0;
  margin-top: 1.4rem;
}

.value-points li {
  margin-bottom: 0.6rem;
  font-weight: 500;
}

/* ==============================
   NAV CTA (header.html)
============================== */
.nav-cta-btn {
  background: #ff6b35;
  color: #fff !important;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  font-weight: 600;
}

.nav-cta-btn:hover {
  opacity: 0.9;
}
