body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #fff;
  color: #1f2f38;
  line-height: 1.6;
}

.hero {
  text-align: center;
  background: linear-gradient(to bottom right, #b9e3f9, #f3f4da);
  padding: 3rem 1rem 2rem;
}

.hero-logo {
  width: 180px;
  max-width: 80%;
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: 2rem;
  margin: 0.5rem 0;
}

.subheadline {
  font-size: 1rem;
  color: #444;
  margin-bottom: 1.5rem;
}

.hero-promo {
  font-size: 1.1rem;
  color: #e74c3c;
  margin-bottom: 1.5rem;
  font-weight: bold;
}

.btn-primary {
  background-color: #ff8753;
  color: #fff;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  font-weight: bold;
  border-radius: 8px;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.btn-primary:hover {
  background-color: #e86d3d;
}

.how-it-works {
  padding: 4rem 1rem;
  text-align: center;
}

.steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.step {
  max-width: 300px;
  flex: 1 1 250px;
}

.step-img {
  width: 100%;
  max-width: 250px;
  height: auto;
  margin-bottom: 1rem;
  border-radius: 12px;
}

.waitlist {
  background-color: #f4f4f4;
  padding: 3rem 1rem;
  text-align: center;
}

.waitlist form {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.waitlist input {
  padding: 0.75rem;
  width: 100%;
  max-width: 400px;
  border-radius: 5px;
  border: 1px solid #ccc;
  font-size: 1rem;
}

.btn-secondary {
  background-color: #00497a;
  color: #fff;
  padding: 0.75rem 1.5rem;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-secondary:hover {
  background-color: #003354;
}

footer {
  text-align: center;
  padding: 2rem 1rem;
  font-size: 0.9rem;
  color: #666;
}

.what-fits {
  background-color: #f9f9f9;
  padding: 60px 20px;
  text-align: center;
}

.what-fits h2 {
  font-size: 2em;
  margin-bottom: 10px;
}

.fit-description {
  max-width: 700px;
  margin: 0 auto 30px;
  font-size: 1.1em;
  color: #333;
}

.fit-image-container {
  display: flex;
  justify-content: center;
}

.fit-img {
  max-width: 80%;
  height: auto;
  border-radius: 8px;
}

.pricing {
  background-color: #fff;
  padding: 60px 20px;
  text-align: center;
}

.pricing h2 {
  font-size: 2em;
  margin-bottom: 10px;
}

.pricing-subtext {
  font-size: 1.1em;
  color: #444;
  margin-bottom: 30px;
}

.pricing-box {
  background-color: #f1f6ff;
  border: 2px solid #0074cc;
  border-radius: 10px;
  padding: 30px;
  max-width: 400px;
  margin: 0 auto 40px;
}

.pricing-box h3 {
  font-size: 2em;
  color: #0074cc;
}

.pricing-box .setup-fee {
  margin-top: 10px;
  font-style: italic;
  color: #666;
}

.comparison {
  max-width: 1000px;
  margin: 0 auto 40px;
}

.comparison-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.option {
  background-color: #f9f9f9;
  border-radius: 8px;
  padding: 20px;
  width: 280px;
  text-align: left;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.option h5 {
  font-size: 1.2em;
  margin-bottom: 10px;
}

.option ul {
  list-style: none;
  padding: 0;
}

.option ul li {
  margin: 6px 0;
}

.pricing-cta {
  margin-top: 20px;
}

.pricing-cta .btn-primary {
  padding: 12px 30px;
  font-size: 1.1em;
}

.cta-note {
  margin-top: 10px;
  color: #555;
  font-size: 0.95em;
}

.bin-selector-container {
  text-align: center;
  margin: 40px auto;
  max-width: 800px;
}

.bin-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.bin-tab {
  padding: 10px 20px;
  border: 2px solid #004466;
  background-color: #ffffff;
  color: #004466;
  cursor: pointer;
  border-radius: 6px;
  font-weight: bold;
  transition: all 0.2s ease-in-out;
}

.bin-tab.active,
.bin-tab:hover {
  background-color: #004466;
  color: #ffffff;
}

.bin-image-display img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.bin-comparison {
  margin-top: 2rem;
  text-align: center;
}

.bin-comparison h3 {
  margin-bottom: 0.5rem;
}

.bin-table {
  margin: 0 auto;
  border-collapse: collapse;
  font-size: 1rem;
  min-width: 320px;
}

.bin-table th,
.bin-table td {
  padding: 0.75rem 1.5rem;
  border: 1px solid #ccc;
}

.bin-table thead {
  background-color: #003366;
  color: white;
}

.bin-table tbody tr:nth-child(even) {
  background-color: #f9f9f9;
}
.faq-section {
  padding: 60px 20px;
  max-width: 800px;
  margin: 0 auto;
}

.faq-section h2 {
  text-align: center;
  font-size: 2em;
  margin-bottom: 30px;
}

.faq-container {
  border-top: 1px solid #ccc;
}

.faq-item {
  border-bottom: 1px solid #ccc;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  font-size: 1.1em;
  padding: 15px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s;
}

.faq-question:hover {
  background: #f7f7f7;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 15px;
}

.faq-answer.open {
  padding: 15px;
  max-height: 300px; /* adjust if needed */
}

.faq-cta {
  color: #0056b3;
  font-weight: bold;
  text-decoration: underline;
}
/* Responsive visibility */
.desktop-only {
  display: none;
}
.mobile-only {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

@media (min-width: 768px) {
  .desktop-only {
    display: block;
  }
  .mobile-only {
    display: none;
  }
}

/* Mobile footer button container */
.mobile-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #ffffff;
  padding: 10px 12px 14px;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  z-index: 999;
}

/* Full width buttons */
.full-width {
  width: 100%;
  text-align: center;
  padding: 14px;
  font-size: 16px;
  border-radius: 6px;
  font-weight: bold;
  display: block;
  box-sizing: border-box;
}

/* Button color consistency */
.btn-primary.full-width {
  background-color: #F7941D; /* Orange */
  color: #ffffff;
  border: none;
}

.btn-secondary.full-width {
  background-color: #f1f1f1;
  color: #333;
  border: none;
}

/* Floating email button for desktop */
.floating-email {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #004aad;
  color: white;
  padding: 10px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  z-index: 1000;
}
