:root {
  --primary: #00C8B3;
  --background: #fff;
  --light-gray: #f7f8fa;
  --text: #1C1C1E;
  --feature-blue: #4F46E5;
  --feature-pink: #EC4899;
  --feature-green: #00C8B3;
  --feature-indigo: #6366F1;
  --border-radius: 20px;
  --card-shadow: 0 8px 32px 0 rgba(60, 120, 100, 0.08);
  --font-family: "SF Pro Display", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;
}

html, body {
  margin: 0;
  padding: 0;
  background: var(--background);
  color: var(--text);
  font-family: var(--font-family);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.6;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color .2s;
}
a:hover {
  color: #009c8f;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.hero {
  background: var(--background);
  padding: 72px 0 40px 0;
  border-bottom: 1px solid #f0f2f5;
}
.hero-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 48px;
}
.hero-text {
  flex: 1 1 360px;
  min-width: 300px;
}
.bracie-logo {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  background: #eafdfa;
  margin-bottom: 26px;
  box-shadow: 0 4px 18px rgba(0,200,179,0.06);
}
.hero-text h1 {
  font-size: 3rem;
  font-weight: 700;
  margin: 0 0 16px 0;
  color: var(--primary);
  letter-spacing: -0.04em;
}

.hero-text h2 {
  font-size: 2rem;      /* visually smaller than the main title */
  font-weight: 600;
  margin: 0 0 16px 0;
  color: var(--text);
  letter-spacing: -0.02em;
}
.subheadline {
  font-size: 1.3rem;
  color: #2c2c2e;
  margin-bottom: 32px;
  max-width: 430px;
}
.appstore-btn img {
  height: 54px;
  margin-top: 10px;
  transition: transform .19s;
}
.appstore-btn img:hover {
  transform: scale(1.04);
}
.hero-image {
  flex: 1 1 260px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.main-screenshot {
  width: 320px;
  max-width: 90vw;
  border-radius: var(--border-radius);
  box-shadow: 0 8px 40px 0 rgba(0,200,179,0.08), 0 2px 10px 0 rgba(0,0,0,0.02);
  border: 1px solid #e5e7eb;
}

/* Features */
.features {
  background: var(--light-gray);
  padding: 64px 0 56px 0;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}
.feature-card {
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--card-shadow);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 260px;
  transition: box-shadow .18s;
  border: 1px solid #f1f3f5;
}
.feature-card:hover {
  box-shadow: 0 16px 40px rgba(0,200,179,0.10);
}
.icon-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-card h3 {
  margin: 0 0 10px 0;
  font-size: 1.28rem;
  font-weight: 600;
  color: var(--text);
}
.feature-card p {
  margin: 0;
  color: #444;
  font-size: 1.02rem;
}

/* Screenshot Showcase */
.screenshots {
  background: var(--background);
  padding: 56px 0;
}
.screenshots-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.screenshot-card {
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--card-shadow);
  padding: 18px 18px 12px 18px;
  text-align: center;
  width: 230px;
  border: 1px solid #f1f3f5;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.screenshot-card img {
  width: 100%;
  border-radius: 18px;
  margin-bottom: 12px;
}
.caption {
  color: #6c6c70;
  font-size: 1rem;
  margin-bottom: 0;
}

/* Testimonials */
.testimonials {
  background: var(--light-gray);
  padding: 64px 0;
}
.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 32px;
  text-align: center;
  letter-spacing: -0.02em;
}
.testimonials-grid {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}
.testimonial-card {
  background: #fff;
  border-radius: var(--border-radius);
  padding: 28px 22px 22px 22px;
  box-shadow: var(--card-shadow);
  max-width: 330px;
  font-size: 1.1rem;
  border: 1px solid #f1f3f5;
  color: #2c2c2e;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.testimonial-author {
  margin-top: 18px;
  font-size: 0.98rem;
  color: #00C8B3;
  font-weight: 600;
}

/* Trust Section */
.trust {
  background: var(--background);
  padding: 56px 0 32px 0;
}
.trust-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.trust-badges {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}
.badge {
  background: #f0fdfa;
  color: #00C8B3;
  border-radius: 16px;
  padding: 14px 22px 13px 16px;
  font-size: 1.03rem;
  display: flex;
  align-items: center;
  gap: 13px;
  box-shadow: 0 2px 10px rgba(0,200,179,0.06);
  font-weight: 500;
  border: 1px solid #e3f3f0;
}
.badge svg {
  flex-shrink: 0;
}
.assoc-logos {
  margin-top: 18px;
  display: flex;
  gap: 20px;
  align-items: center;
}
.assoc-logos img {
  height: 38px;
  width: auto;
  opacity: 0.85;
  background: #fff;
  border-radius: 8px;
  border: 1px solid #f1f3f5;
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}

/* Footer CTA */
.footer-cta {
  background: var(--light-gray);
  border-top: 1px solid #e9edf0;
  padding: 56px 0 0 0;
}
.footer-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.footer-left {
  flex: 1 1 340px;
  min-width: 260px;
}
.footer-title {
  font-size: 2rem;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 13px;
  letter-spacing: -0.02em;
}
.footer-left p {
  color: #333;
  margin-bottom: 22px;
}
.footer-right {
  flex: 0 0 180px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.qr-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #fff;
  padding: 18px 20px;
  border-radius: 16px;
  box-shadow: var(--card-shadow);
  border: 1px solid #f1f3f5;
}
.qr-code {
  width: 128px;
  height: 128px;
  margin-bottom: 10px;
}
.qr-caption {
  font-size: 1rem;
  color: #909099;
  font-weight: 500;
}

/* Footer Bottom */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 32px 22px 32px;
  margin-top: 32px;
  border-top: 1px solid #e2e8f0;
  font-size: 1rem;
  color: #8c8c96;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-links {
  display: flex;
  gap: 12px;
  align-items: center;
}
.footer-links a {
  color: #7c7c89;
  font-size: 1rem;
  font-weight: 400;
}
.footer-links a:hover {
  color: var(--primary);
}

/* Responsive Design */
@media (max-width: 900px) {
  .hero-content, .footer-content {
    flex-direction: column;
    gap: 32px;
    align-items: flex-start;
  }
  .screenshots-grid {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }
  .testimonials-grid {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }
}
@media (max-width: 600px) {
  .hero {
    padding: 38px 0 20px 0;
  }
  .features {
    padding: 38px 0 34px 0;
  }
  .testimonials {
    padding: 38px 0;
  }
  .screenshots {
    padding: 28px 0;
  }
  .footer-cta {
    padding: 38px 0 0 0;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    padding: 18px 0 14px 0;
    font-size: 0.98rem;
  }
}