:root {
  --primary-color: #4f46e5;
  --primary-color-dark: #4338ca;
  --text-color: #1f2937;
  --background-color: #f9fafb;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.5;
  color: var(--text-color);
}

.announcement-bar {
  background: var(--primary-color);
  color: white;
  text-align: center;
  padding: 0.5rem;
  font-size: 0.875rem;
}

.announcement-bar a {
  color: white;
  text-decoration: none;
  display: inline;
}

.announcement-bar a:hover {
  text-decoration: none;
}

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

.nav-links a {
  color: var(--text-color);
  text-decoration: none;
  margin: 0 1rem;
}

.cta-button {
  text-decoration: none;
  display: inline-block;
  padding: 8px 16px;
  background-color: var(--primary-color);
  color: white;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.9375rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: var(--primary-color-dark);
  text-decoration: none;
}

.hero {
  display: flex;
  align-items: center;
  max-width: 1200px;
  margin: 4rem auto;
  padding: 0 2rem;
  gap: 4rem;
}

.hero-content {
  flex: 1.5;
}

.hero-content p {
  margin-bottom: 2rem;
}

.badge {
  background: #eef2ff;
  color: var(--primary-color);
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  display: inline-block;
  margin-bottom: 1rem;
}

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

.hero-video {
  flex: 1;
}

.video-container {
  background: #f3f4f6;
  border-radius: 1rem;
  aspect-ratio: 16/9;
}

/* Replace video-container styles with demo showcase styles */
.demo-showcase {
  flex: 1;
  min-width: 300px;
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 1rem;
  padding: 2rem;
}

.demo-scroll {
  position: relative;
  overflow: hidden;
  height: 200px;
}

.demo-businesses {
  animation: scrollUpSlowly 35s linear infinite;
  transform: translateY(0);
}

.demo-business {
  padding: 1rem;
  margin-bottom: 1rem;
  background: var(--background-color);
  border-radius: 0.75rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  will-change: transform;
  backface-visibility: hidden;
}

.demo-business span {
  display: block;
}

.business-name {
  font-weight: 500;
  color: var(--text-color);
  margin-bottom: 0.25rem;
  font-size: 1rem;
}

.business-phone {
  color: var(--primary-color);
  text-decoration: none;
}

.business-phone:hover {
  text-decoration: underline;
}

@keyframes scrollUpSlowly {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(calc(-50% - 0.5rem));
  }
}

/* Pause animation on hover */
.demo-scroll:hover .demo-businesses {
  animation-play-state: paused;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }

  h1 {
    font-size: 2.5rem;
  }

  .nav-links {
    display: none;
  }
}

/* Features Section */
.features {
  max-width: 1200px;
  margin: 6rem auto;
  padding: 0 2rem;
  text-align: center;
}

.features h2 {
  font-size: 2.5rem;
  margin-bottom: 3rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: left;
  margin-bottom: 3rem;
}

.feature-card {
  padding: 1.7rem;
  border-radius: 1rem;
  background: var(--background-color);
  position: relative;
}

.feature-card h3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.feature-icon {
  font-size: 1.5rem;
  margin-bottom: 0;
}

/* FAQ Section */
.faq-section {
  max-width: 1200px;
  margin: 6rem auto;
  padding: 0 2rem;
  text-align: center;
}

.faq-section h2 {
  font-size: 2.5rem;
  margin-bottom: 3rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  text-align: left;
  margin-bottom: 3rem;
  align-items: start;
}

.faq-item {
  padding: 1.5rem;
  border-radius: 0.5rem;
  border: 1px solid #e5e7eb;
  cursor: pointer;
  height: fit-content;
}

.faq-item h3 {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* FAQ Contact Section Styles */
.faq-contact {
  text-align: center;
  margin-top: 3rem;
}

.faq-contact p {
  margin-bottom: 0.5rem;
}

.faq-contact p:first-child {
  font-size: 1.25rem;
  font-weight: 500;
}

.contact-methods {
  color: #6b7280;
}

.contact-methods a {
  color: var(--primary-color);
  text-decoration: none;
}

.contact-methods a:hover {
  text-decoration: underline;
}

/* Footer */
.footer {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 4rem;
}

.footer-brand p {
  color: #6b7280;
  margin-top: 1rem;
}

.footer h4 {
  font-size: 1rem;
  margin-bottom: 0.6rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: #6b7280;
  text-decoration: none;
}

.footer-links a[href^="tel:"] {
  color: var(--primary-color);
}

.footer-links a[href^="tel:"]:hover {
  text-decoration: underline;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

/* Extend Responsive Design */
@media (max-width: 768px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }

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

  .footer {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }
}

/* FAQ Page Specific */
.faq-page {
  max-width: 1200px;
  margin: 4rem auto;
  padding: 0 2rem;
}

.faq-page h1 {
  text-align: center;
  margin-bottom: 3rem;
}

/* FAQ Item Styles */
.faq-item .faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.faq-item.active .faq-content {
  max-height: 500px; /* Adjust based on content */
}

.faq-item .plus {
  transition: transform 0.3s ease;
}

.faq-item.active .plus {
  transform: rotate(45deg);
}

.faq-content p {
  padding: 1rem 0 0 0;
  color: #6b7280;
}

.faq-content a {
  margin: 1rem 0 0 0;
}

.faq-content .phone-link {
  color: var(--primary-color);
  text-decoration: none;
}

.faq-content .phone-link:hover {
  text-decoration: underline;
}

/* Updated Pricing Styles */
.pricing-section {
  max-width: 1200px;
  margin: 4rem auto 0rem;
  padding: 0 2rem;
}

.pricing-label {
  color: var(--primary-color);
  font-weight: 500;
  margin-bottom: 1rem;
}

.pricing-section h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.pricing-subtitle {
  color: #6b7280;
  margin-bottom: 2rem;
}

/* Billing Toggle */
.billing-toggle {
  display: inline-flex;
  background: #f3f4f6;
  padding: 0.25rem;
  border-radius: 2rem;
  margin: 2rem 0;
}

.toggle-btn {
  padding: 0.5rem 1.5rem;
  border: none;
  background: none;
  border-radius: 1.5rem;
  cursor: pointer;
  font-weight: 500;
}

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

/* Pricing Grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.pricing-card {
  padding: 2rem;
  border: 1px solid #e5e7eb;
  border-radius: 1rem;
  text-align: left;
  position: relative;
  background: white;
}

.pricing-card.popular {
  border-color: var(--primary-color);
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-color);
  color: white;
  padding: 0.25rem 1rem;
  border-radius: 1rem;
  font-size: 0.875rem;
}

.pricing-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.plan-description {
  color: #6b7280;
  margin-bottom: 2rem;
  min-height: 3em;
}

.price {
  margin-bottom: 2rem;
}

.price .amount {
  font-size: 2.5rem;
  font-weight: bold;
}

.price .period {
  color: #6b7280;
}

.pricing-features {
  list-style: none;
  margin: 2rem 0;
}

.pricing-features li {
  margin: 1rem 0;
  color: #374151;
}

.buy-plan-btn {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #e5e7eb;
  background: white;
  color: var(--text-color);
  border-radius: 0.5rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.buy-plan-btn.highlight {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

.buy-plan-btn:hover {
  background: #f3f4f6;
}

.buy-plan-btn.highlight:hover {
  background: #4338ca;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

/* Stripe Pricing Table Styles */
.stripe-pricing-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
}

/* Ensure Stripe pricing table matches your site's styling */
stripe-pricing-table {
  width: 100%;
}

/* Pricing header styles for Stripe integration */
.pricing-header {
  text-align: left;
  margin-bottom: 1rem;
}

.pricing-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary-color);
  letter-spacing: 0.05em;
}

@media (max-width: 768px) {
  .stripe-pricing-container {
    margin: 0 auto;
    padding: 0;
  }
}

/* About Page Styles */
.about-section {
  max-width: 800px;
  margin: 4rem auto;
  padding: 0 2rem;
}

.about-section h1 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: var(--text-color);
}

.about-content .intro {
  font-size: 1.25rem;
  line-height: 1.6;
  color: #4b5563;
  margin-bottom: 3rem;
}

.story-block {
  margin-bottom: 3rem;
}

.story-block h2 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: var(--text-color);
}

.story-block p {
  color: #4b5563;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.join-community {
  background: #f9fafb;
  padding: 2rem;
  border-radius: 1rem;
  margin: 3rem 0;
}

.join-community h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-color);
}

.join-community p {
  color: #4b5563;
  line-height: 1.6;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .about-section {
    margin: 2rem auto;
  }

  .about-section h1 {
    font-size: 2rem;
  }

  .about-content .intro {
    font-size: 1.125rem;
  }

  .story-block h2 {
    font-size: 1.5rem;
  }
}

/* Footer Bottom Styles */
.footer-bottom {
  border-top: 1px solid #e5e7eb;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  font-size: 0.875rem;
  color: #6b7280;
}

.footer-bottom p {
  margin: 0;
}

.legal-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin: 0;
}

.legal-links a {
  color: #6b7280;
  text-decoration: none;
  line-height: 1;
  padding: 0.125rem 0;
}

.social-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin: 0;
}

.social-links a {
  color: #6b7280;
  text-decoration: none;
  line-height: 1;
  padding: 0.125rem 0;
}

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

@media (max-width: 640px) {
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
  }

  .legal-links {
    margin-top: 0.5rem;
  }

  .social-links {
    justify-content: center;
  }
}

.new-badge {
  background: #4f46e5;
  color: white;
  font-size: 0.75rem;
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  transform: rotate(12deg);
  letter-spacing: 0.5px;
  box-shadow: 0 2px 4px rgba(79, 70, 229, 0.2);
  position: absolute;
  top: 1.4rem;
  right: 1rem;
}

/* Blog Styles */
.blog-section {
  max-width: 1200px;
  margin: 4rem auto;
  padding: 0 2rem;
}

.blog-section h1 {
  text-align: left;
  margin-bottom: 3rem;
}

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

.blog-card {
  border: 1px solid #e5e7eb;
  border-radius: 1rem;
  overflow: hidden;
  transition: box-shadow 0.2s ease;
  background: white;
}

.blog-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.blog-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.blog-content {
  padding: 1.5rem;
}

.blog-date {
  color: #6b7280;
  font-size: 0.875rem;
}

.blog-card h2 {
  margin: 0.5rem 0;
  font-size: 1.5rem;
  color: var(--text-color);
}

.blog-card h2 a {
  color: var(--text-color);
  text-decoration: none;
}

.blog-card p {
  color: #4b5563;
  margin: 0.5rem 0;
}

.read-more {
  display: inline-block;
  margin-top: 1rem;
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
}

/* Blog Post Styles */
.blog-post {
  max-width: 800px;
  margin: 4rem auto;
  padding: 0 2rem;
}

.post-header {
  text-align: left;
  margin-bottom: 3rem;
}

.post-date {
  color: #6b7280;
  font-size: 0.9rem;
}

.post-content {
  line-height: 1.8;
}

.post-content p {
  margin: 1.5rem 0;
}

/* Blog post image and caption styling */
.blog-post .blog-image {
  max-width: 100%;
  width: 600px;
  height: auto;
  display: block;
  margin: 2rem auto 0.25rem;
}

.blog-post .image-caption {
  display: block;
  text-align: right;
  font-size: 0.8rem;
  margin: 0 0 2rem;
  line-height: 1.2;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Page Header Styles - Unified for Blog, Pricing, Listen */
.page-header {
  text-align: left;
  margin-bottom: 1rem;
}

.page-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary-color);
  letter-spacing: 0.05em;
}

.page-section {
  max-width: 1200px;
  margin: 4rem auto 0rem;
  padding: 0 2rem;
}

/* Unified structure for pages with header + title + description */
.page-title {
  font-size: 3.5rem;
  line-height: 1.2;
  margin: 1rem 0;
  text-align: left;
  max-width: 900px;
}

.page-description {
  font-size: 1.25rem;
  color: #6b7280;
  line-height: 1.6;
  margin-top: 1rem;
  margin-bottom: 4rem;
  max-width: 900px;
  text-align: left;
}

/* Blog-specific overrides for content structure */
.blog-section .page-header {
  margin-bottom: 1rem;
}

.blog-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary-color);
  letter-spacing: 0.05em;
}

.listen-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary-color);
  letter-spacing: 0.05em;
}

.logo-link {
  text-decoration: none;
  color: inherit;
}

.logo-link:hover {
  color: var(--primary-color);
}

/* Blog post styling */
.blog-post {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.blog-post h1 {
  font-size: 3rem;
  line-height: 1.2;
  margin: 1rem 0;
  color: var(--text-primary);
}

.blog-post .post-meta {
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.blog-post h2 {
  font-size: 1.8rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.blog-post p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: var(--text-secondary);
}

.blog-post ul,
.blog-post ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.blog-post li {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 0.5rem;
  color: var(--text-secondary);
}

.post-cta {
  text-align: center;
  padding: 4rem 2rem;
  margin: 4rem auto 1rem;
  background: linear-gradient(to bottom, #f9fafb, #ffffff);
  border-radius: 1rem;
}

.post-cta h2 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--text-color);
}

.post-cta p {
  color: #6b7280;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

/* Page Content Styles */
.page-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 1rem;
}

.page-content h1 {
  font-size: 3rem;
  font-weight: 400;
  margin-bottom: 5rem;
  color: var(--text-primary);
}

.page-content h2 {
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 1.2rem;
  color: var(--text-primary);
}

.page-content h3 {
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.page-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: var(--text-secondary);
}

.page-content strong {
  font-weight: 650;
}

.page-content ul,
ol {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  padding-left: 1.5rem;
  color: var(--text-secondary);
}

.page-content ol ol {
  list-style-type: lower-alpha;
  line-height: 1.6;
  margin-top: 0.5rem;
}

.page-content li {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 0.5rem;
  color: var(--text-secondary);
}

/* Listen Page Styles */
.audio-samples {
  display: grid;
  gap: 2rem;
  margin-bottom: 3rem;
}

.audio-card {
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border: 1px solid #e1e8ed;
}

.audio-card h3 {
  color: #2c3e50;
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
}

.audio-card p {
  color: #666;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.audio-player {
  margin-bottom: 1rem;
}

.audio-player audio {
  width: 100%;
  height: 40px;
}

.audio-description {
  font-size: 0.9rem;
  color: #888;
  font-style: italic;
}

@media (max-width: 768px) {
  .audio-card {
    margin-bottom: 2rem;
  }
}

/* Setup Page Styles */
.setup-toc {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  padding: 2rem;
  margin-bottom: 3rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.setup-toc h2 {
  color: var(--text-color);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid #e5e7eb;
  padding-bottom: 0.75rem;
}

.toc-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.toc-list > li {
  margin-bottom: 0.75rem;
}

.toc-list a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  display: block;
  padding: 0.375rem 0;
  transition: color 0.2s ease;
}

.toc-list a:hover {
  color: var(--primary-color-dark);
  text-decoration: none;
}

.toc-sublist {
  list-style: none;
  margin: 0.5rem 0 0 1.5rem;
  padding: 0;
}

.toc-sublist li {
  margin-bottom: 0.375rem;
}

.toc-sublist a {
  font-weight: 400;
  color: #6b7280;
  font-size: 0.9rem;
}

.toc-sublist a:hover {
  color: var(--primary-color);
}

.setup-content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.setup-card {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 1rem;
  padding: 2.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.setup-card h2 {
  color: var(--text-color);
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 1rem;
  border-bottom: 2px solid var(--primary-color);
  padding-bottom: 0.75rem;
}

.setup-description {
  color: #6b7280;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.setup-section {
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #f3f4f6;
}

.setup-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.setup-section h3 {
  color: var(--text-color);
  font-size: 1.375rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.setup-section h4 {
  color: var(--text-color);
  font-size: 1.125rem;
  font-weight: 600;
  margin: 1.5rem 0 0.75rem 0;
}

.setup-section p {
  color: #4b5563;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.setup-subsection {
  margin: 2rem 0;
  padding-left: 1rem;
  border-left: 3px solid #e5e7eb;
}

.setup-subsection h4 {
  margin-top: 0;
}

/* Improved List Styles */
.setup-steps {
  counter-reset: step-counter;
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.setup-steps > li {
  counter-increment: step-counter;
  position: relative;
  padding: 1rem 0 1rem 3rem;
  margin-bottom: 1rem;
  border-left: 2px solid #f3f4f6;
}

.setup-steps > li::before {
  content: counter(step-counter);
  position: absolute;
  left: -0.625rem;
  top: 1rem;
  background: var(--primary-color);
  color: white;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
}

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

.setup-benefits li {
  position: relative;
  padding: 0.75rem 0 0.75rem 2.5rem;
  margin-bottom: 0.75rem;
  background: #f9fafb;
  border-radius: 0.5rem;
  border-left: 4px solid #10b981;
}

.setup-benefits li::before {
  content: "✓";
  position: absolute;
  left: 0.75rem;
  top: 0.75rem;
  background: #10b981;
  color: white;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
}

.setup-sublist {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0 0 1rem;
}

.setup-sublist li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.5rem;
  color: #4b5563;
  line-height: 1.5;
}

.setup-sublist li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

/* Info Boxes */
.setup-tip {
  background: linear-gradient(135deg, #eef2ff 0%, #e0e7ff 100%);
  border: 1px solid #c7d2fe;
  border-radius: 0.75rem;
  padding: 1.5rem;
  margin: 1.5rem 0;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.tip-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.tip-content h4 {
  color: var(--primary-color-dark);
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 0.5rem 0;
}

.tip-content p {
  color: #3730a3;
  margin: 0;
  line-height: 1.5;
}

.setup-warning {
  background: linear-gradient(135deg, #fef3cd 0%, #fde68a 100%);
  border: 1px solid #f59e0b;
  border-radius: 0.75rem;
  padding: 1.5rem;
  margin: 1.5rem 0;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.warning-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.warning-content h4 {
  color: #92400e;
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 0.5rem 0;
}

.warning-content p {
  color: #92400e;
  margin: 0;
  line-height: 1.5;
}

.code-block {
  background: #1f2937;
  color: #f9fafb;
  padding: 1.5rem;
  border-radius: 0.5rem;
  margin: 1rem 0;
  font-family: "Monaco", "Menlo", "Ubuntu Mono", monospace;
  overflow-x: auto;
}

.code-block p {
  margin: 0.5rem 0;
  color: #f9fafb;
}

/* Process Timeline */
.process-timeline {
  margin: 2rem 0;
}

.process-step {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2rem;
  position: relative;
}

.process-step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 0.875rem;
  top: 3rem;
  width: 2px;
  height: 2rem;
  background: #e5e7eb;
}

.step-number {
  background: var(--primary-color);
  color: white;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.step-content {
  flex: 1;
}

.step-content h4 {
  color: var(--text-color);
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0 0 0.75rem 0;
}

/* Requirements Grid */
.requirements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.requirement-card {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  padding: 1.5rem;
}

.requirement-card h4 {
  color: var(--text-color);
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 1rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Support Section */
.support-section {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  padding: 2.5rem;
  margin-top: 3rem;
  text-align: center;
}

.support-section h2 {
  color: var(--text-color);
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.support-section > p {
  color: #64748b;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.support-card {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  padding: 2rem;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.support-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.support-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}

.support-card h3 {
  color: var(--text-color);
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 1rem 0;
}

.support-card p {
  color: #6b7280;
  margin: 0.5rem 0;
  line-height: 1.5;
}

.phone-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
}

.phone-link:hover {
  color: var(--primary-color-dark);
  text-decoration: underline;
}

/* Responsive Design for Setup Page */
@media (max-width: 768px) {
  .setup-card {
    padding: 1.5rem;
  }

  .setup-toc {
    padding: 1.5rem;
  }

  .setup-steps > li {
    padding-left: 2.5rem;
  }

  .setup-benefits li {
    padding-left: 2rem;
  }

  .process-step {
    gap: 1rem;
  }

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

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

  .support-section {
    padding: 2rem 1.5rem;
  }

  .setup-tip,
  .setup-warning {
    padding: 1.25rem;
  }
}
