
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #0b1220;
  color: white;
}

a {
  color: inherit;
  text-decoration: none;
}

/* NAV */
.nav {
  display: flex;
  justify-content: space-between;
  padding: 20px 40px;
  background: #0f1a2e;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  font-weight: 700;
  font-size: 20px;
}

/* HERO */
.hero {
  text-align: center;
  padding: 90px 20px;
  background: radial-gradient(circle at top, #1a2a4a, #0b1220);
}

.hero h1 {
  font-size: 52px;
  margin-bottom: 10px;
}

.hero p {
  max-width: 650px;
  margin: auto;
  color: #b8c2d9;
}

.hero-subtext {
  margin-top: 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-line {
  margin: 0;
  font-size: 15px;
  color: #b8c2d9;
}

.hero-tags {
  margin: 0;
  font-size: 12px;
  color: #777;
  letter-spacing: 0.3px;
}

/* BUTTON ROW */
.hero-buttons {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;

  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
}

/* BASE BUTTON */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 100%;
  max-width: 320px;

  min-height: 52px;

  padding: 14px 18px;
  border-radius: 10px;

  font-weight: 600;
  font-size: 14px;
  line-height: 1.2;

  box-sizing: border-box;
}

/* PRIMARY CTA */
.btn.primary {
  background: #3b82f6;
  color: #ffffff;
  border: none;
}

.btn.primary:hover {
  background: #2f6fe0;
}

/* SECONDARY CTA */
.btn.secondary {
  background: transparent;
  color: #3b82f6;
  border: 2px solid #3b82f6;
}

.btn.secondary:hover {
  background: #3b82f6;
  color: #ffffff;
}

.cta-secondary {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.btn-subtext {
  margin-top: 3px; 
  font-size: 13px;
  opacity: 0.75;
  line-height: 1.2;
  text-align: center;
}

/* CANADA SPECIAL CTA */
.btn.canada {
  background: transparent;
  color: #2f6fed;
  border: 2px solid #2f6fed;
}

.btn.canada:hover {
  background: #2f6fed;
  color: #ffffff;
}

/* SMALL BUTTON (nav) */
.btn.small {
  width: auto;
  min-height: 38px;
  padding: 8px 14px;
  font-size: 12px;
}

/* HOW IT WORKS */
.section {
  padding: 80px 20px;
  text-align: center;
}

.section.light {
  background: #0f1a2e;
}

.how-it-works h2 {
  margin-bottom: 10px;
}

.steps {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.step {
  background: #111c33;
  padding: 20px;
  border-radius: 10px;
  width: 180px;
}

.step p {
  font-size: 13px;
  color: #b8c2d9;
}

.num {
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 10px;
}

/* PRICING */
.dark {
  background: #0f1a2e;
}

.pricing {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 15px;
  margin-top: 40px;
}

@media (max-width: 900px) {
  .pricing {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .pricing {
    grid-template-columns: 1fr;
  }
}

.card {
  background: #111c33;
  padding: 20px;
  border-radius: 10px;
}

.featured {
  border: 2px solid #3b82f6;
}

.highlight {
  border: 2px solid #22c55e;
}

.price {
  font-size: 22px;
  margin-top: 10px;
}

.sub {
  font-size: 11px;
  color: #b8c2d9;
}

.pricing-cta {
  margin-top: 34px;
  display: flex;
  justify-content: center;
  gap: 15px;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 40px;
  color: #7f8aa3;
}

.small-text {
  font-size: 11px;
}

/* FAQ */
.faq {
  max-width: 800px;
  margin: 0 auto;
}

.faq h2 {
  text-align: center;
  margin-bottom: 25px;
}

.faq-item {
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
  background: rgba(255,255,255,0.03);
}

/* question button */
.faq-question {
  width: 100%;
  text-align: left;
  padding: 16px;
  background: none;
  border: none;
  color: inherit;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
}

.faq-question {
  box-sizing: border-box;
}

/* hidden answer by default */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
  padding: 0 16px;
}

.faq-answer p {
  opacity: 0.85;
  line-height: 1.55;
  padding-bottom: 14px;
  text-align: left;
}

/* active state */
.faq-item.active .faq-answer {
  max-height: 200px;
}

/* REVIEWS */
#reviews {
  margin-top: 70px;
  margin-bottom: 70px;
}

.reviews {
  max-width: 900px;
  margin: 60px auto 0;
  text-align: center;
  padding: 40px 20px;
  border-radius: 16px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
}

.reviews-sub {
  opacity: 0.75;
  margin-bottom: 25px;
  font-size: 0.95rem;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.review-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 14px;
  padding: 18px;
  text-align: left;
  position: relative;
}

.review-card::before {
  content: "“";
  position: absolute;
  top: 8px;
  left: 12px;
  font-size: 28px;
  opacity: 0.2;
}

.review-card p {
  font-size: 0.95rem;
  line-height: 1.5;
  opacity: 0.85;
}

.review-card span {
  display: block;
  margin-top: 10px;
  font-size: 0.8rem;
  opacity: 0.6;
}

.reviews-source {
  margin-top: 18px;
  font-size: 0.85rem;
  opacity: 0.7;
}

.reviews-source a {
  color: inherit;
  text-decoration: underline;
}

/* SEO HUB GRID (separate from pricing cards) */
.seo-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 15px;
  margin-top: 40px;
}

@media (max-width: 1000px) {
  .seo-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 700px) {
  .seo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .seo-grid {
    grid-template-columns: 1fr;
  }
}

/* make SEO cards slightly quieter than pricing */
.seo-grid .card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
}