* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: -apple-system, system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: #30313d;
  background: #fff;
}

.top-nav {
  position: sticky;
  top: 0;
  background: #ffffffcc;
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid #eee;
  z-index: 10;
}

.top-nav nav {
  max-width: 1350px;
  margin: 0 auto;
  padding: 12px 6.3vw;
}

.nav-list {
  list-style: none;
  display: flex;
  gap: 20px;
  padding: 0;
  margin: 0;
  justify-content: center;
}

.nav-list a {
  color: #30313d;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
}


.hero {
  display: flex;
  justify-content: center;
  gap: 64px;
  /* Padding: 64px top/bottom, 6.3vw left/right for responsive horizontal spacing */
  padding: 64px 6.3vw;
  max-width: 1350px;
  margin: 0 auto;
  margin-top: 63px;
}

.copy {
  max-width: 585px;
}

.copy h1 {
  font-size: 48px;
  line-height: 1.1;
  font-weight: 800;
  margin: 0 0 16px;
}

.copy p {
  line-height: 1.5;
  max-width: 500px;
  margin: 0 0 32px;
  font-size: 22px;
}

.actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn {
  display: inline-block;
  background: #06AB78;
  color: #fff;
  padding: 16px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.25em;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease, filter 0.15s ease;
}

/* Unify button look (e.g., Start/Continue/Upload) */
.continue-btn {
  border: 2px solid #000;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-1px) scale(1.02);
  box-shadow: 0 6px 18px rgba(6, 171, 120, 0.24);
  filter: brightness(1.03);
}

.btn:active {
  transform: translateY(0);
  box-shadow: 0 3px 10px rgba(6, 171, 120, 0.18);
  transition-duration: 0.05s;
}

.btn:focus-visible {
  outline: 2px solid #06AB78;
  outline-offset: 2px;
}

.meta {
  font-size: 16.2px;
}

.hero-img {
  max-width: 472.5px;
  width: 45%;
  height: auto;
}

@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    text-align: left;
  }
  .hero-img {
    width: 76.5%;
    max-width: 585px;
  }
}

.features {
  max-width: 1350px;
  margin: 12px auto 76px;
  padding: 64px 6.3vw;
  display: grid;
  grid-template-columns: repeat(3, minmax(260px, 358px));
  justify-content: center;
  gap: 24px;
  align-items: start;
}

.feature {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.feature:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

.step-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  height: 32px;
  padding: 0 10px;
  /*background: #06AB78;*/
  background: #30313d;
  color: #fff; 
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.2px;
}

.feature-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 6px;
}

.feature h3 {
  margin: 0;
  color: #30313d;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 600;
}

.feature p {
  margin: 6px 0 0;
  font-size: 16.5px;
  line-height: 1.6;
  color: #30313d;
}

@media (max-width: 900px) {
  .features {
    grid-template-columns: minmax(260px, 358px);
    gap: 32px;
    margin-top: 12px;
  }
}

@media (max-width: 1200px) {
  .features {
    grid-template-columns: repeat(2, minmax(260px, 358px));
  }
}

/* Benefits section */
.benefits {
  max-width: 1350px;
  margin: 0 auto 71px;
  padding: 0 6.3vw;
}

.benefit-row {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 64px;
  padding: 70px 0 69px;
}

.benefit-text {
  max-width: 640px;
}

.benefit-heading {
  margin: 0 0 12px;
  font-size: 32px;
  line-height: 1.25;
  font-weight: 800;
  color: #30313d;
}

.benefit-subtext {
  margin: 0 0 16px;
  font-size: 18px;
  line-height: 1.6;
  color: #30313d;
  opacity: 0.95;
}

.benefit-list {
  margin: 0;
  padding-left: 20px;
  font-size: 16.5px;
  line-height: 1.8;
  color: #30313d;
}

.benefit-list li {
  margin: 6px 0;
}

.benefit-img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  background: #f8f9fb;
  border: 1px solid #eee;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

@media (max-width: 1200px) {
  .benefit-row {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }
}

@media (max-width: 900px) {
  .benefit-row {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 70px 0 69px;
  }
  .benefit-img {
    order: 2;
  }
  .benefit-text {
    order: 1;
  }
}

/* FAQ section */
.faq {
  max-width: 1350px;
  margin: 0 auto 44px;
  padding: 0 6.3vw;
}

.faq-intro {
  margin-bottom: 24px;
}

.faq-heading {
  margin: 0 0 8px;
  font-size: 32px;
  line-height: 1.25;
  font-weight: 800;
  color: #30313d;
}

.faq-subtext {
  margin: 0;
  font-size: 18px;
  line-height: 1.6;
  color: #30313d;
  opacity: 0.95;
}

.faq-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  border: 1px solid #eee;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.faq-item {
  border-top: 1px solid #eee;
}

.faq-item:first-child {
  border-top: none;
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 20px;
  cursor: pointer;
  list-style: none;
  color: #30313d;
  font-weight: 600;
  font-size: 16.5px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '\203A'; /* › */
  font-size: 22px;
  transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
  transform: rotate(90deg);
}

.faq-answer {
  padding: 0 20px 18px 20px;
  font-size: 16.5px;
  line-height: 1.6;
  color: #30313d;
  opacity: 0.95;
}

@media (max-width: 900px) {
  .faq {
    margin-bottom: 68px;
  }
  .faq-item summary {
    padding: 16px 18px;
  }
}

/* Final CTA section */
.final-cta {
  max-width: 1350px;
  margin: 0 auto 120px;
  padding: 96px 6.3vw;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.final-cta-inner {
  max-width: 900px;
}

.final-cta .cta-tagline {
  margin: 0 0 12px;
  color: #30313d;
  opacity: 0.9;
  font-weight: 600;
}

.final-cta .cta-heading {
  margin: 0 0 24px;
  font-size: 48px;
  line-height: 1.1;
  font-weight: 800;
  color: #30313d;
}

.final-cta .actions {
  justify-content: center;
}

@media (max-width: 900px) {
  .final-cta {
    margin-bottom: 96px;
    padding: 72px 6.3vw;
  }
  .final-cta .cta-heading {
    font-size: 40px;
  }
}