body {
  font-family: 'Inter', Arial, sans-serif;
  background: #f8fafc;
  margin: 0;
  color: #222;
  line-height: 1.6;
}
/* Hamburger menu icon */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
  z-index: 10;
}
.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background: #2563eb;
  border-radius: 3px;
  transition: all 0.3s ease;
}
/* Hamburger animation for active state */
.hamburger.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}
.hero {
  background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 50%, #38bdf8 100%); /* Updated gradient */
  color: #fff;
  padding: 80px 24px 64px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTQ0MCIgaGVpZ2h0PSI0MDAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CiAgPHBhdGggZD0iTTAgMGgxNDQwdjQwMEgweiIgZmlsbD0ibm9uZSIvPgogIDxnIGZpbGwtb3BhY2l0eT0iLjA4IiBmaWxsPSIjRkZGIj4gPHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNncmlkLXBhdHRlcm4pIi8+PGNpcmNsZSBjeD0iMTUwIiBjeT0iNTAiIHI9IjUiLz48Y2lyY2xlIGN4PSIzNTAiIGN5PSIxNTAiIHI9IjUiLz48Y2lyY2xlIGN4PSI1NTAiIGN5PSI1MCIgcj0iNSIvPjxjaXJjbGUgY3g9Ijc1MCIgY3k9IjE1MCIgcj0iNSIvPjxjaXJjbGUgY3g9Ijk1MCIgY3k9IjUwIiByPSI1Ii8+PGNpcmNsZSBjeD0iMTE1MCIgY3k9IjE1MCIgcj0iNSIvPjxjaXJjbGUgY3g9IjEzNTAiIGN5PSI1MCIgcj0iNSIvPjxjaXJjbGUgY3g9IjUwIiBjeT0iMTUwIiByPSI1Ii8+PGNpcmNsZSBjeD0iMjUwIiBjeT0iNTAiIHI9IjUiLz48Y2lyY2xlIGN4PSI0NTAiIGN5PSIxNTAiIHI9IjUiLz48Y2lyY2xlIGN4PSI2NTAiIGN5PSI1MCIgcj0iNSIvPjxjaXJjbGUgY3g9Ijg1MCIgY3k9IjE1MCIgcj0iNSIvPjxjaXJjbGUgY3g9IjEwNTAiIGN5PSI1MCIgcj0iNSIvPjxjaXJjbGUgY3g9IjEyNTAiIGN5PSIxNTAiIHI9IjUiLz48L2c+PC9zdmc+'); /* Made pattern more subtle */
  opacity: 0.2; /* Reduced opacity further */
  z-index: 0;
}
.hero > * {
  position: relative;
  z-index: 1;
}
.hero h1 {
  font-size: 3.2rem;
  margin: 0 0 20px 0;
  font-weight: 800;
  line-height: 1.2;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.hero p {
  font-size: 1.25rem;
  margin: 0 0 32px 0;
  font-weight: 400;
}
.cta-btn {
  background: #fff;
  color: #2563eb;
  border: none;
  font-size: 1.15rem;
  font-weight: 600;
  padding: 16px 40px;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(37, 99, 235, 0.2);
  transition: all 0.2s ease;
  display: inline-block;
  text-decoration: none;
}
.cta-btn:hover {
  background: #f8fafc;
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.25);
}
.features {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin: 64px auto 0 auto;
  max-width: 1100px;
  padding: 0 16px;
}
.feature {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.07); /* Updated shadow */
  padding: 32px 24px;
  flex: 1 1 260px;
  min-width: 240px;
  max-width: 320px;
  text-align: left;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: 1px solid rgba(0,0,0,0.03);
}
.feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1); /* Updated hover shadow */
}
.feature h3 {
  margin-top: 0;
  color: #2563eb;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.feature h3::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
  border-radius: 50%;
  font-size: 0.9rem;
}
.feature p {
  margin-bottom: 0;
  font-size: 1rem;
  color: #444;
}
.integrations {
  text-align: center;
  margin: 72px 0 0 0;
  color: #444;
  padding: 24px;
  background: #fff;
  border-radius: 12px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}
.integrations img {
  height: 48px;
  margin: 16px;
  vertical-align: middle;
  opacity: 0.8;
  transition: opacity 0.2s;
}
.integrations img:hover {
  opacity: 1;
}
.footer {
  text-align: center;
  color: #888;
  font-size: 0.95rem;
  margin: 64px 0 24px 0;
}
nav {
  background: #fff; 
  box-shadow: 0 2px 12px rgba(30,64,175,0.06); 
  padding: 0 32px; 
  display: flex; 
  align-items: center; 
  justify-content: space-between; 
  height: 72px; /* Adjusted from 70px for consistency */
  position: sticky; /* Added for sticky nav */
  top: 0; /* Added for sticky nav */
  z-index: 100; /* Added for sticky nav */
}
nav .logo {
  font-weight: 700; 
  font-size: 1.4rem; 
  color: #2563eb; 
  letter-spacing: 1px; /* From original index.hbs */
  display: flex; /* Added for logo alignment */
  align-items: center; /* Added for logo alignment */
}
nav .logo img { /* Style for logo image from index.hbs */
  height: 32px; 
  margin-right: 8px;
}
nav .logo span span { /* Style for "Boss" part of logo from index.hbs */
 color: #38bdf8;
}
nav .menu { /* Combined from index.hbs and quickbooks styles */
  display: flex;
  gap: 24px; /* From quickbooks */
  align-items: center; /* Added for better alignment */
}
nav .menu a {
  text-decoration: none; 
  color: #334155; /* From quickbooks */
  font-weight: 600;
  font-size: 1rem; /* From quickbooks */
  transition: color 0.2s;
  padding: 8px 0; /* From index.hbs for hover effect */
  position: relative; /* From index.hbs for hover effect */
}
nav .menu a:hover {
  color: #1e40af; /* From index.hbs */
}
nav .menu a::after { /* From index.hbs for hover effect */
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: #2563eb;
  transition: width 0.2s ease;
}
nav .menu a:hover::after { /* From index.hbs for hover effect */
  width: 100%;
}
.nav-cta { /* From quickbooks, but also present in index.hbs script section */
  background: #2563eb;
  color: #fff !important; 
  padding: 10px 20px; /* From quickbooks */
  border-radius: 6px; /* From quickbooks */
  transition: background 0.2s;
  margin-left: 16px; /* From index.hbs inline style */
  font-size: 0.95rem; /* From index.hbs inline style */
}
.nav-cta:hover {
  background: #1d4ed8; /* From quickbooks */
  color: #fff !important;
}
.section {
  max-width: 1100px;
  margin: 64px auto 0 auto;
  padding: 0 16px;
}
.section-title {
  text-align: center;
  color: #2563eb;
  font-size: 2.2rem;
  margin-bottom: 40px;
  font-weight: 700;
}
.pricing-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}
.pricing-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.07); /* Updated shadow */
  padding: 32px;
  flex: 1 1 300px;
  max-width: 360px;
  text-align: center;
  border: 1px solid #e5e7eb;
}
.pricing-card.pro {
  border-color: #2563eb;
  box-shadow: 0 8px 24px rgba(37,99,235,0.15); /* Updated shadow */
}
.pricing-card h3 {
  font-size: 1.6rem;
  color: #111827;
  margin: 0 0 8px 0;
}
.pricing-card .price {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2563eb;
  margin: 0 0 8px 0;
}
.pricing-card .price span {
  font-size: 1rem;
  font-weight: 400;
  color: #6b7280;
}
.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 24px 0;
  text-align: left;
}
.pricing-card ul li {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #374151;
}
.pricing-card ul li::before {
  content: '✓';
  color: #10b981;
  font-size: 1.1rem;
  font-weight: bold;
}
.faq-item {
  background: #fff;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.faq-item h3 {
  margin: 0 0 8px 0;
  font-size: 1.2rem;
  color: #1f2937;
}
/* Styles for QuickBooks/Xero specific landing pages */
.pain-points {
  background: #f1f5f9;
  padding: 48px 24px;
  margin: 64px 0;
}
.pain-points h2 {
  text-align: center;
  color: #0f172a;
  font-size: 2rem;
  margin-bottom: 32px;
}
.pain-point {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
  padding: 24px;
  margin-bottom: 24px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.pain-point h3 {
  color: #be123c; /* Emphasizing pain */
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 0;
}
.pain-point h3::before {
  content: '✕'; /* Cross mark for pain points */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: rgba(190, 18, 60, 0.1);
  color: #be123c;
  border-radius: 50%;
  font-size: 0.9rem;
  font-weight: bold;
}
/* Responsive styles */
/* Testimonials Section */
.testimonials {
  max-width: 900px;
  margin: 64px auto 0 auto;
  padding: 0 16px;
}

.testimonial {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
  padding: 28px 24px;
  margin-bottom: 24px;
  position: relative; /* For the ::before pseudo-element positioning */
  text-align: left; /* Ensure text aligns left within the box */
}

.testimonial::before {
  content: "\201C"; /* Large opening quote mark */
  position: absolute;
  top: 12px;
  left: 16px;
  font-size: 4rem; /* Large size for the quote mark */
  color: rgba(37, 99, 235, 0.1); /* Theme blue, very transparent */
  font-family: serif; /* A common font for quote marks */
  line-height: 1;
  z-index: 0; /* Behind the text */
}

.testimonial p {
  margin-top: 0;
  font-style: italic;
  color: #333; /* Dark gray for the quote text */
  position: relative; /* To ensure it's above the ::before pseudo-element */
  z-index: 1;
  margin-bottom: 16px; /* Space between quote and author */
}

.testimonial p:last-of-type {
  margin-bottom: 0; /* No bottom margin for the last paragraph (role) */
}

.testimonial .author {
  font-weight: 600;
  color: #2563eb; /* Theme blue for author name */
  margin-bottom: 4px; /* Small space between author and role */
  font-style: normal; /* Override italic from general p if author is a p tag */
  display: block; /* Ensure it takes its own line */
}

.testimonial .role {
  font-size: 0.9rem;
  color: #666; /* Medium gray for role */
  margin-top: 0;
  font-style: normal; /* Override italic from general p if role is a p tag */
  display: block; /* Ensure it takes its own line */
}

@media (max-width: 768px) {
  .hero h1 { font-size: 2.5rem; } /* Adjusted from 2.4rem for consistency */
  .hero p { font-size: 1.1rem; }
  nav { padding: 0 16px; } /* From index.hbs */
  nav .menu { /* From index.hbs mobile styles */
    position: fixed;
    flex-direction: column;
    background: white;
    top: 0; /* Adjusted from 72px to align with nav height */
    right: -300px; /* Start off-screen */
    width: 250px;
    height: 100vh;
    padding: 80px 20px 30px 20px; /* Top padding to clear nav */
    z-index: 5; /* Lower than hamburger */
    transition: right 0.3s ease;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    gap: 20px; /* Spacing for mobile menu items */
    align-items: flex-start; /* Align items left */
  }
  nav .menu.active { 
    right: 0; /* Slide in */
    display: flex; /* Ensure it's visible */
  }
  nav .menu a { /* Ensure mobile links take full width for easier tapping */
    width: 100%;
  }
  nav .menu .nav-cta { /* Adjust CTA for mobile menu */
    margin-left: 0;
    margin-top: 20px;
    width: 100%;
    text-align: center;
  }
  .hamburger { display: flex; z-index: 1000; /* Ensure hamburger is on top */} 
  .features, .pricing-cards { flex-direction: column; align-items: center; }
  .feature, .pricing-card { max-width: 90%; }
}
