:root {
  --text-main: #111827; /* Darker, stronger contrast */
  --text-muted: #4B5563;
  --bg-page: #FFFFFF;
  --bg-alt: #F9FAFB; /* Very light gray */
  --bg-purple-gradient: linear-gradient(135deg, #F3E8FF 0%, #E9D5FF 100%);
  --border-color: #E5E7EB;
  --primary: #7A33D4;
  --primary-hover: #6B21A8;
  --link-color: #2563EB;
  --link-hover: #1D4ED8;
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --transition: all 0.2s ease;
}

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

body {
  font-family: var(--font-family);
  color: var(--text-main);
  background-color: var(--bg-page);
  line-height: 1.75;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

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

/* Backgrounds */
.bg-white {
  background-color: var(--bg-page);
}

.bg-alt {
  background-color: var(--bg-alt);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

/* Spacing */
.section-spacing {
  padding: 5rem 0;
}

/* Navigation */
.navbar {
  background-color: var(--bg-page);
  border-bottom: 1px solid var(--border-color);
  padding: 1.25rem 0;
}

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

.brand-image {
  height: 52px;
  mix-blend-mode: multiply;
  display: block;
}

/* Typography Hierarchy */
h1, h2, h3 {
  color: var(--text-main);
  font-weight: 700;
  line-height: 1.3;
}

h1 {
  font-size: 2.75rem;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}

h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

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

p {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  max-width: 55ch; /* Reduced width for better readability */
}

.text-center p {
  margin-left: auto;
  margin-right: auto;
}

/* Header Section */
.page-header {
  padding-top: 7rem;
  padding-bottom: 3rem;
}

.hero-content {
  max-width: 750px;
}

.subtitle {
  font-size: 1.35rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.supporting-line {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text-main);
}

/* 1. Highlighted Feature Card */
.highlight-card-section {
  padding-bottom: 6rem;
}

.highlight-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.pill-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--bg-purple-gradient);
  border: 1px solid rgba(122, 51, 212, 0.15);
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--primary);
  box-shadow: 0 1px 3px rgba(122, 51, 212, 0.08);
}

.pill-icon {
  width: 16px;
  height: 16px;
}

/* 2. Plugin Overview (Dark Theme) */
.dark-section {
  background: linear-gradient(180deg, #48008f 0%, #36006B 100%);
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
  border-top: none;
  border-bottom: none;
}

.overview-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
  z-index: 0;
  pointer-events: none;
}

.dark-container {
  max-width: 1200px;
  position: relative;
  z-index: 1;
}

.dark-label {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #D8B4FE;
  margin-bottom: 1rem;
}

.dark-heading {
  color: #FFFFFF;
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

.dark-subtext {
  color: #E9D5FF;
  font-size: 1.15rem;
  max-width: 65ch;
  margin: 0 auto 4rem auto;
}

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

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

.dark-feature-card {
  background-color: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.dark-feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.dark-feature-icon-wrap {
  background: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.05);
}

.dark-feature-card:hover .dark-feature-icon-wrap {
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
}

.dark-feature-icon-wrap svg {
  width: 28px;
  height: 28px;
}

.dark-feature-card h3 {
  color: #FFFFFF;
  margin-bottom: 0.75rem;
  font-size: 1.35rem;
}

.dark-feature-card p {
  color: #E9D5FF;
  margin-bottom: 0;
  font-size: 1.05rem;
  max-width: 100%;
}

/* 3. Why BookWellNow */
.two-column {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: stretch;
}

@media (max-width: 800px) {
  .two-column {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.why-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.check-list {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.check-svg-wrap {
  background-color: #D1FAE5;
  color: #059669;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.check-svg {
  width: 16px;
  height: 16px;
}

.check-list span {
  font-size: 1.1rem;
  color: var(--text-muted);
}

.check-list strong {
  color: var(--text-main);
}

/* Trust Section */
.trust-container {
  display: flex;
}

.trust-section {
  background-color: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-left: 6px solid var(--primary);
  border-radius: 12px;
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
}

.trust-label {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.quote-icon {
  color: var(--primary);
  opacity: 0.2;
  margin-bottom: 1rem;
}

.quote-icon svg {
  width: 40px;
  height: 40px;
}

.trust-line {
  margin: 0 0 1rem 0;
  font-size: 1.6rem; /* Enhanced size */
  font-style: italic;
  color: var(--text-main);
  font-weight: 600;
  line-height: 1.4;
}

.trust-sub {
  margin: 0;
  font-size: 1.05rem;
}

/* 4. Final CTA */
.final-cta {
  background: linear-gradient(135deg, #4c0099 0%, #2f005c 100%);
  color: white;
  padding: 7rem 0;
}

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

.final-cta .cta-subtitle {
  color: #D8B4FE;
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
}

.btn-primary-inverse {
  background-color: white;
  color: #4c0099;
  font-size: 1.25rem;
  padding: 1.25rem 3rem;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  transition: var(--transition);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  margin-bottom: 1.5rem;
}

.btn-primary-inverse:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.3);
  background-color: #F3F4F6;
}

.trust-indicators {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  margin-bottom: 3.5rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.trust-indicators span {
  margin: 0 0.5rem;
}

.links-section {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.text-link-inverse {
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  padding-bottom: 2px;
  transition: var(--transition);
}

.text-link-inverse:hover {
  border-bottom-color: white;
  color: #D8B4FE;
}

/* Footer */
.site-footer {
  text-align: center;
  padding: 3rem 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  border-top: 1px solid var(--border-color);
}

.footer-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
  justify-content: space-between;
}

.footer-logo {
  height: 40px;
  mix-blend-mode: multiply;
  opacity: 0.8;
}

.site-footer p {
  margin: 0;
}
