/* ===================================
   2. HERO SECTION
   =================================== */
.hero {
  padding: 140px 0 80px;
  background: #00CC91;
  overflow: visible;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 100px;
}

.hero-content {
  max-width: none;
  overflow: visible;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(0,0,0,0.35);
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  margin-bottom: 24px;
}

.hero-badge svg {
  width: 16px;
  height: 16px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: 3.25rem;
  font-weight: 700;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 16px;
}

.hero-title span {
  color: #fff;
}

.hero-value {
  font-size: 1.25rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  margin-bottom: 32px;
}

.hero-subtitle {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin-bottom: 64px;
  max-width: 480px;
}

.hero-cta {
  margin-bottom: 32px;
}

/* ---------- QR Codes (desktop only) ---------- */

/* Hidden by default in hero, revealed on CTA click */
.hero-cta > .store-download-group {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-10px);
  transition: max-height 0.4s ease, opacity 0.35s ease, transform 0.35s ease;
  pointer-events: none;
}
.hero-cta > .store-download-group.show {
  max-height: 400px;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.qr-code-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.qr-code-item img {
  border-radius: var(--radius-sm);
  border: 2px solid var(--color-gray-200);
  background: var(--color-white);
  padding: 4px;
  width: 130px;
  height: 130px;
  object-fit: contain;
  display: block;
}

.qr-code-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-gray-600);
}

@media (max-width: 768px) {
  .qr-code-item {
    display: none;
  }
  .store-download-group {
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
  }
  .store-download-col {
    flex-shrink: 1;
  }
}

.hero-stats {
  display: flex;
  gap: 32px;
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.hero-stat-value {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
}

.hero-stat-label {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.7);
  margin-top: 2px;
}

.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-phone-wrapper {
  position: relative;
  width: 300px;
}

.hero-phone {
  width: 100%;
  border-radius: 32px;
  box-shadow: var(--shadow-xl);
}

.hero-float-card {
  position: absolute;
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: float 3s ease-in-out infinite;
}

.hero-float-card.card-1 {
  top: 10%;
  right: -60px;
}

.hero-float-card.card-2 {
  bottom: 15%;
  left: -50px;
  animation-delay: 1.5s;
}

.hero-float-card-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.hero-float-card-icon.green {
  background: var(--color-primary-light);
  color: var(--color-primary);
}

.hero-float-card-icon.orange {
  background: #FFF0E6;
  color: var(--color-accent);
}

.hero-float-card-text {
  display: flex;
  flex-direction: column;
}

.hero-float-card-text strong {
  font-size: 0.875rem;
  color: var(--color-gray-800);
}

.hero-float-card-text span {
  font-size: 0.75rem;
  color: var(--color-gray-400);
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}


/* ===================================
   3. WHY CHOOSE US SECTION
   =================================== */
.why-choose {
  padding: var(--section-padding);
  background: linear-gradient(180deg, #F8FFFE 0%, var(--color-white) 100%);
}

.why-choose-header {
  text-align: center;
  margin-bottom: 48px;
}

.why-choose-header .section-subtitle {
  margin: 0 auto;
}

.why-choose-proof {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
  background: linear-gradient(135deg, var(--color-secondary) 0%, #16213E 100%);
  color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 40px 48px;
  margin-bottom: 56px;
}

.proof-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
}

.proof-value {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
}

.proof-label {
  font-size: 0.875rem;
  opacity: 0.7;
}

.proof-stars {
  display: flex;
  gap: 3px;
  color: #FFD700;
  margin-bottom: 4px;
}

.proof-stars svg {
  width: 18px;
  height: 18px;
}

.proof-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.15);
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.trust-point {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trust-point:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.trust-point-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.trust-point-icon.green { background: rgba(44, 182, 125, 0.1); color: var(--color-primary); }
.trust-point-icon.blue { background: rgba(59, 130, 246, 0.1); color: #3B82F6; }
.trust-point-icon.orange { background: rgba(255, 107, 53, 0.1); color: #FF6B35; }
.trust-point-icon.purple { background: rgba(139, 92, 246, 0.1); color: #8B5CF6; }

.trust-point h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-heading);
  margin-bottom: 8px;
}

.trust-point p {
  font-size: 0.9rem;
  color: var(--color-text);
  line-height: 1.6;
}


/* ===================================
   4. FEATURES SECTION
   =================================== */
.features {
  padding: 0;
}

.features-header {
  text-align: center;
  margin-bottom: 32px;
}

.features-header .section-subtitle {
  margin: 0 auto;
}

.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 56px;
  margin-bottom: 0;
}

.feature-block:last-child {
  margin-bottom: 0;
}

.feature-block.reverse {
  direction: rtl;
}

.feature-block.reverse > * {
  direction: ltr;
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.feature-icon.green { background: var(--color-primary-light); color: var(--color-primary); }
.feature-icon.blue { background: #EBF5FF; color: #3B82F6; }
.feature-icon.orange { background: #FFF0E6; color: var(--color-accent); }
.feature-icon.purple { background: #F3E8FF; color: #8B5CF6; }

.feature-content h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-gray-900);
  margin-bottom: 16px;
  line-height: 1.3;
}

.feature-content p {
  font-size: 1rem;
  color: var(--color-gray-500);
  line-height: 1.7;
  margin-bottom: 24px;
}

.feature-list {
  margin-bottom: 28px;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 8px 0;
  font-size: 0.9375rem;
  color: var(--color-gray-600);
}

.feature-list li svg {
  width: 20px;
  height: 20px;
  color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.btn-learn-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-primary);
  transition: all var(--transition-fast);
}

.btn-learn-more:hover {
  gap: 12px;
  color: var(--color-primary-dark);
}

.btn-learn-more svg {
  width: 18px;
  height: 18px;
  transition: transform var(--transition-fast);
}

.feature-image {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.feature-image > img {
  width: 100%;
  max-width: 384px;
  border-radius: 24px;
}

.feature-image-wrapper {
  position: relative;
  background: transparent;
  border-radius: var(--radius-xl);
  padding: 0;
  width: 100%;
  max-width: 480px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow: hidden;
}

.feature-image-wrapper img {
  width: 240px;
  border-radius: 24px;
  box-shadow: var(--shadow-xl);
}

.feature-image-wrapper.bg-green { background: linear-gradient(135deg, #E8F8F0, #D1FAE5); }
.feature-image-wrapper.bg-blue { background: linear-gradient(135deg, #EBF5FF, #DBEAFE); }
.feature-image-wrapper.bg-orange { background: linear-gradient(135deg, #FFF0E6, #FFEDD5); }
.feature-image-wrapper.bg-purple { background: linear-gradient(135deg, #F3E8FF, #EDE9FE); }


/* ===================================
   5. USER REVIEWS / TESTIMONIALS
   =================================== */
.testimonials {
  padding: var(--section-padding);
  background: var(--color-gray-50);
  overflow: hidden;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 60px;
}

.testimonials-header .section-subtitle {
  margin: 0 auto;
}

/* Carousel wrapper */
.testimonials-carousel {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.testimonials-track {
  display: flex;
  gap: 24px;
  will-change: transform;
}

.testimonial-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-gray-100);
  transition: box-shadow var(--transition-base), transform 0.2s;
  flex: 0 0 350px;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  color: #FFD700;
  margin-bottom: 16px;
}

.testimonial-stars svg {
  width: 18px;
  height: 18px;
}

.testimonial-text {
  font-size: 0.9375rem;
  color: var(--color-gray-600);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.testimonial-author-info .testimonial-author-name {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-gray-800);
}

.testimonial-author-info p {
  font-size: 0.8125rem;
  color: var(--color-gray-400);
}


/* ===================================
   7. BLOG PREVIEW SECTION
   =================================== */
.blog {
  padding: var(--section-padding);
}

.blog-header {
  text-align: center;
  margin-bottom: 40px;
}

.blog-header .section-subtitle {
  margin: 0 auto;
}

.blog-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.blog-preview-cta {
  text-align: center;
  margin-top: 8px;
}

.blog-card {
  display: block;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-gray-200);
  color: inherit;
  text-decoration: none;
  min-height: 392px;
  transition: all var(--transition-base);
  cursor: pointer;
}

.blog-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.blog-card-image {
  width: 100%;
  height: 180px;
  overflow: hidden;
  background: var(--color-gray-100);
}

.blog-card-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 780 / 608;
}

.blog-card-body {
  padding: 20px;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.blog-card-category {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--color-primary);
  background: var(--color-primary-light);
  padding: 3px 10px;
  border-radius: var(--radius-full);
}

.blog-card-read-time {
  font-size: 0.75rem;
  color: var(--color-gray-400);
}

.blog-card-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-gray-900);
  margin-bottom: 8px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-excerpt {
  font-size: 0.8125rem;
  color: var(--color-gray-500);
  line-height: 1.6;
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.blog-card-tag-item {
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--color-primary-dark);
  background: var(--color-primary-light);
  padding: 2px 8px;
  border-radius: var(--radius-full);
}


/* ===================================
   8. FAQ SECTION
   =================================== */
.faq {
  padding: var(--section-padding);
  background: var(--color-gray-50);
}

.faq-header {
  text-align: center;
  margin-bottom: 60px;
}

.faq-header .section-subtitle {
  margin: 0 auto;
}

.faq-list {
  max-width: 768px;
  margin: 0 auto;
}

.faq-item {
  background: var(--color-white);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  border: 1px solid var(--color-gray-200);
  overflow: hidden;
  transition: all var(--transition-fast);
}

.faq-item:hover {
  border-color: var(--color-gray-300);
}

.faq-item.active {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 1px var(--color-primary);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-gray-800);
  text-align: left;
  transition: color var(--transition-fast);
}

.faq-item.active .faq-question {
  color: var(--color-primary);
}

.faq-question svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--color-gray-400);
  transition: transform var(--transition-base);
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
  color: var(--color-primary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow);
}

.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 0.9375rem;
  color: var(--color-gray-500);
  line-height: 1.7;
}



/* ===================================
   RESPONSIVE - Home
   =================================== */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-subtitle {
    max-width: 100%;
  }

  .hero-cta .store-badges {
    justify-content: center;
  }

  .hero-cta .store-download-group {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-image {
    order: -1;
  }

  .hero-phone-wrapper {
    width: 240px;
  }

  .hero-float-card {
    display: none;
  }

  .feature-block {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .feature-block.reverse {
    direction: ltr;
  }

  .feature-image {
    order: -1;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 120px 0 60px;
  }

  .hero-title {
    font-size: 2.25rem;
  }

  .hero-value {
    font-size: 1.0625rem;
  }

  .why-choose-proof {
    flex-direction: column;
    gap: 24px;
    padding: 32px 24px;
  }

  .proof-divider {
    width: 60px;
    height: 1px;
  }

  .why-choose-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonial-card {
    flex: 0 0 300px;
  }

  .feature-content h3 {
    font-size: 1.375rem;
  }

  .blog-preview-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-stats {
    flex-direction: column;
    gap: 16px;
  }

  .why-choose-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- Hero Primary CTA Button ---------- */
.hero-cta .btn-lg {
  padding: 16px 36px;
  font-size: 1.0625rem;
  margin-bottom: 16px;
  background: #000;
  color: #fff;
}

.hero-cta .btn-lg:hover {
  background: rgba(0,0,0,0.85);
  color: #fff;
}

/* ---------- FAQ H3 inside button ---------- */
.faq-question h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-heading);
  margin: 0;
  text-align: left;
}

/* ===================================
   9. HOME 06.24 VISUAL OVERRIDES
   =================================== */
.hero {
  padding: 118px 0 0;
  background:
    radial-gradient(circle at 8% 18%, rgba(255,255,255,0.66), transparent 13%),
    radial-gradient(circle at 72% 18%, rgba(44, 182, 125, 0.22), transparent 34%),
    radial-gradient(circle at 16% 18%, rgba(255, 255, 255, 0.9), transparent 32%),
    linear-gradient(105deg, #F8FFFB 0%, #EEF9F4 50%, #DFF5EC 100%);
}

.hero .container {
  min-height: 570px;
  gap: 54px;
}

.hero-badge {
  background: rgba(44, 182, 125, 0.1);
  color: var(--color-primary-dark);
  border: 1px solid rgba(44, 182, 125, 0.18);
}

.hero-title {
  max-width: 560px;
  color: #0D1B2A;
  letter-spacing: 0;
  font-size: clamp(3.1rem, 5.4vw, 4.75rem);
}

.hero-title span {
  color: inherit;
}

.hero-value {
  max-width: 530px;
  color: #4E5F58;
  font-weight: 500;
  font-size: 1.2rem;
}

.hero-image {
  align-self: stretch;
  overflow: visible;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.hero-image img {
  width: 100% !important;
  max-width: 600px !important;
  height: auto !important;
  min-height: 0;
  object-fit: contain;
  object-position: center;
  border-radius: 0 !important;
  filter: drop-shadow(0 34px 70px rgba(7, 39, 28, 0.18));
}

.hero-store-badges {
  align-items: center;
  gap: 12px;
}

.hero-store-badges .store-badge {
  min-width: 184px;
  border-radius: 16px;
  background: #0D1117;
  box-shadow: 0 16px 34px rgba(13, 17, 23, 0.18);
}

.hero-store-badges .store-badge:hover {
  background: #111827;
  box-shadow: 0 22px 42px rgba(13, 17, 23, 0.24);
}

.social-proof {
  background: #EEF9F4;
  padding: 0 0 34px;
}

.social-proof .why-choose-proof {
  margin: 0 auto;
  max-width: 1020px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.86);
  color: #12362B;
  box-shadow: 0 18px 60px rgba(12, 42, 30, 0.08);
  border: 1px solid rgba(44, 182, 125, 0.12);
}

.proof-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 8px;
  border-radius: 14px;
  background: #E8F8F0;
  color: var(--color-primary);
}

.proof-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.proof-icon.yellow {
  background: #FFF7D6;
  color: #F5A400;
}

.proof-icon.yellow svg {
  fill: currentColor;
  stroke: none;
}

.proof-icon.orange {
  background: #FFF0E6;
  color: #FF7A2F;
}

.social-proof .proof-value {
  color: var(--color-primary);
}

.social-proof .proof-label {
  opacity: 0.78;
}

.social-proof .proof-divider {
  background: rgba(44, 182, 125, 0.18);
}

.why-choose {
  position: relative;
  background:
    radial-gradient(circle at 10% 18%, rgba(44, 182, 125, 0.08), transparent 24%),
    radial-gradient(circle at 88% 74%, rgba(255, 122, 47, 0.08), transparent 24%),
    #FFFFFF;
}

.value-grid,
.why-choose-grid.value-grid {
  grid-template-columns: repeat(3, 1fr);
  max-width: 980px;
  margin: 0 auto;
}

.trust-point {
  position: relative;
  overflow: hidden;
  border-color: rgba(44, 182, 125, 0.1);
  box-shadow: 0 18px 60px rgba(15, 43, 33, 0.06);
  border-radius: 28px;
  padding: 34px 26px 32px;
}

.trust-point::after {
  content: "";
  position: absolute;
  top: -34px;
  right: -34px;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: rgba(44, 182, 125, 0.07);
}

.trust-point-icon {
  position: relative;
  z-index: 1;
  border-radius: 18px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.74);
}

.trust-point-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.features {
  background:
    linear-gradient(180deg, #F9FFFC 0%, #FFFFFF 44%, #F7FBF9 100%);
}

.feature-block {
  gap: 72px;
  position: relative;
  padding: 44px;
  border: 1px solid rgba(44, 182, 125, 0.1);
  border-radius: 36px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 24px 80px rgba(12, 42, 30, 0.06);
}

.feature-block::before {
  content: "";
  position: absolute;
  inset: 22px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(44, 182, 125, 0.06), rgba(255,255,255,0));
  pointer-events: none;
}

.feature-block > * {
  position: relative;
  z-index: 1;
}

.feature-icon {
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(18, 54, 43, 0.08);
}

.feature-icon svg {
  width: 28px;
  height: 28px;
}

.feature-image > img {
  max-width: 460px;
  border-radius: 30px;
  filter: drop-shadow(0 28px 55px rgba(18, 54, 43, 0.12));
}

.feature-content h3 {
  letter-spacing: 0;
}

.features-more {
  text-align: center;
  margin-top: -42px;
}

.success-stories {
  padding: var(--section-padding);
  background:
    radial-gradient(circle at 50% 0%, rgba(44, 182, 125, 0.09), transparent 34%),
    #FFFFFF;
}

.stories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.story-card {
  position: relative;
  min-height: 250px;
  padding: 32px 0 0 0;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.9), rgba(255,255,255,0.98)),
    radial-gradient(circle at top right, rgba(44, 182, 125, 0.2), transparent 40%);
  border: 1px solid rgba(44, 182, 125, 0.13);
  box-shadow: 0 22px 70px rgba(12, 42, 30, 0.08);
  overflow: hidden;
}

.story-card > img {
  width: 100%;
  aspect-ratio: 1.18 / 1;
  object-fit: cover;
  display: block;
}

.story-card-body {
  position: relative;
  padding: 24px 26px 28px;
}

.story-card-body::before {
  content: "“";
  position: absolute;
  top: 12px;
  right: 24px;
  color: rgba(44, 182, 125, 0.18);
  font-family: Georgia, serif;
  font-size: 4.5rem;
  line-height: 1;
}

.story-tag {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--color-primary-light);
  color: var(--color-primary-dark);
  font-size: 0.8125rem;
  font-weight: 700;
}

.testimonials {
  background:
    radial-gradient(circle at 12% 20%, rgba(44, 182, 125, 0.08), transparent 24%),
    #F7FBF9;
}

.testimonial-card {
  position: relative;
  border-color: rgba(44, 182, 125, 0.1);
  border-radius: 24px;
  box-shadow: 0 18px 55px rgba(12, 42, 30, 0.06);
}

.testimonial-card::after {
  content: "";
  position: absolute;
  top: 24px;
  right: 24px;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: var(--color-primary-light);
  opacity: 0.85;
}

.blog {
  background: #FFFFFF;
}

.blog-card {
  border-color: rgba(44, 182, 125, 0.12);
  border-radius: 24px;
  box-shadow: 0 18px 55px rgba(12, 42, 30, 0.06);
}

.blog-card-image {
  height: 196px;
  background: #E8F8F0;
}

.blog-card-category {
  background: #E8F8F0;
}

.faq {
  background:
    linear-gradient(180deg, #F7FBF9 0%, #FFFFFF 100%);
}

.story-card p {
  color: var(--color-gray-700);
  line-height: 1.75;
  margin-bottom: 20px;
}

.story-card strong {
  color: var(--color-gray-900);
}

.final-cta {
  padding: 60px 0;
  background: #FFFFFF;
}

.final-cta-card {
  position: relative;
  overflow: hidden;
  max-width: 960px;
  margin: 0 auto;
  padding: 64px 40px;
  text-align: center;
  border-radius: 32px;
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 255, 255, 0.36), transparent 32%),
    linear-gradient(135deg, #12D68F 0%, #0FC77B 54%, #04A96C 100%);
  color: #FFFFFF;
  box-shadow: 0 30px 90px rgba(4, 169, 108, 0.24);
}

.final-cta-card .section-label {
  color: rgba(255,255,255,0.86);
}

.final-cta-card h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1;
  letter-spacing: 0;
  margin-bottom: 14px;
}

.final-cta-card p {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.86);
  margin-bottom: 28px;
}

.final-store-badges {
  justify-content: center;
}

.footer {
  background: #FFFFFF;
  color: #5F6F68;
  border-top: 1px solid rgba(44, 182, 125, 0.12);
}

.footer-grid {
  border-bottom-color: rgba(18, 54, 43, 0.1);
}

.footer .nav-brand {
  color: #0D1B2A !important;
}

.footer-brand p,
.footer-links a {
  color: #5F6F68;
}

.footer h4, .footer-link-group-title {
  display: block;
  font-weight: 700;
  color: #0D1B2A;
}

.footer-disclaimer {
  border-top-color: rgba(18, 54, 43, 0.1);
}

.footer-disclaimer p,
.footer-bottom p {
  color: #6B7C75;
  opacity: 1;
}

@media (max-width: 1024px) {
  .hero .container {
    min-height: 0;
  }

  .hero-image img {
    min-height: 0;
    max-width: 520px !important;
  }

  .value-grid,
  .why-choose-grid.value-grid,
  .stories-grid {
    grid-template-columns: 1fr;
    max-width: 640px;
  }
}

@media (max-width: 768px) {
  .hero {
    padding-top: 108px;
  }

  .hero-image {
    order: initial;
  }

  .social-proof .why-choose-proof {
    border-radius: 24px;
  }

  .features-more {
    margin-top: 0;
  }

  .final-cta-card {
    padding: 48px 24px;
    border-radius: 24px;
  }

  .hero-store-badges {
    justify-content: center;
  }
}

/* ===================================
   10. HOME 06.25 FIGMA ALIGNMENT
   =================================== */
.hero-badge {
  padding: 8px 18px;
  background: #FFFFFF;
  color: #101820;
  border: 0;
  box-shadow: 0 12px 32px rgba(12, 42, 30, 0.08);
}

.hero-badge svg {
  fill: #00CC91;
  stroke: none;
}

.hero-title {
  max-width: 650px;
  font-size: clamp(2.75rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.08;
}

.hero-value {
  max-width: 570px;
  font-size: clamp(1.0625rem, 1.6vw, 1.25rem);
  line-height: 1.55;
}

.section-title {
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  line-height: 1.14;
  letter-spacing: 0;
}

.section-subtitle {
  font-size: clamp(1rem, 1.6vw, 1.125rem);
  line-height: 1.65;
}

.social-proof {
  background: #E8F4EF;
  padding: 32px 0;
}

.social-proof .container {
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}

.social-proof .why-choose-proof {
  width: 100%;
  max-width: none;
  border-radius: 0;
  background: #E8F4EF;
  border: 0;
  box-shadow: none;
}

.features {
  background: #FFFFFF;
}

.feature-block {
  padding: 32px 0 0 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.feature-block::before {
  display: none;
}

.feature-icon {
  display: none;
}

.features-more .btn-outline {
  border-color: #00CC91;
  background: #00CC91;
  color: #FFFFFF;
}

.features-more .btn-outline:hover {
  border-color: #00B982;
  background: #00B982;
  color: #FFFFFF;
}

.story-card:first-child .story-tag {
  background: #00CC91;
  color: #FFFFFF;
}

.story-card strong {
  display: block;
  padding-right: 10px;
  text-align: right;
}

.story-card strong::before {
  content: "— ";
}

.testimonials {
  background: #E8F4EF;
}

.testimonial-card::after {
  display: none;
}

.testimonial-stars {
  align-items: center;
  gap: 5px;
}

.testimonial-stars::before {
  content: "4.9";
  margin-right: 8px;
  color: #101820;
  font-size: 0.9375rem;
  font-weight: 800;
}

.faq-item.active {
  background: #F3FFF9;
  border-color: rgba(0, 204, 145, 0.34);
  box-shadow: 0 0 0 1px rgba(0, 204, 145, 0.34);
}

.faq-item.active .faq-question {
  color: #101820;
}

.final-cta {
  padding: 96px 0;
  background: #00CC91;
}

.final-cta .container {
  max-width: none;
}

.final-cta-card {
  max-width: none;
  padding: 0 24px;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.final-cta-card h2 {
  font-size: clamp(2.25rem, 4.6vw, 4rem);
}

.footer {
  background: #FFFFFF;
}

.footer-grid {
  grid-template-columns: minmax(280px, 1fr) minmax(360px, 1fr);
  gap: clamp(48px, 10vw, 140px);
}

@media (max-width: 768px) {
  .hero-title {
    font-size: clamp(2.35rem, 12vw, 3.2rem);
  }

  .section-title {
    font-size: clamp(2rem, 9vw, 2.625rem);
  }

  .social-proof .why-choose-proof {
    border-radius: 0;
  }

  .final-cta {
    padding: 72px 0;
  }

  .final-cta-card {
    padding: 0 24px;
    border-radius: 0;
  }
}

/* ===================================
   11. BODY.PNG VISUAL PASS
   =================================== */
.hero {
  padding: 56px 0 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 43%, rgba(232, 244, 239, 0.82) 100%),
    #F7FFFB;
}

.hero .container {
  max-width: 1120px;
  min-height: 612px;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 44px;
}

.hero-content {
  padding-top: 28px;
}

.hero-badge {
  gap: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  box-shadow: 0 9px 24px rgba(12, 42, 30, 0.06);
  font-size: 0.75rem;
}

.hero-badge img {
  width: 17px;
  height: 17px;
}

.hero-badge .hero-badge-star {
  width: 13px;
  height: 13px;
}

.hero-title {
  max-width: 520px;
  margin: 16px 0 18px;
  font-size: clamp(3rem, 4.45vw, 4rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.hero-value {
  max-width: 520px;
  margin-bottom: 24px;
  color: #344054;
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  line-height: 1.55;
}

.hero-store-badges {
  gap: 12px;
}

.hero-image {
  justify-content: flex-end;
}

.hero-image img {
  max-width: 600px !important;
  filter: none;
}

.social-proof {
  padding: 42px 0 40px;
  background: #E8F4EF;
}

.social-proof .why-choose-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 680px;
  margin: 0 auto;
  padding: 32px 0 0 0;
  background: transparent;
}

.proof-divider,
.proof-icon {
  display: none;
}

.proof-item {
  gap: 6px;
}

.proof-award {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  height: 54px;
}

.proof-award img {
  width: 26px;
  height: 54px;
  object-fit: contain;
}

.social-proof .proof-value {
  min-width: 72px;
  color: #00A978;
  font-size: 2.125rem;
  line-height: 1;
  text-align: center;
}

.social-proof .proof-label {
  color: #1D2939;
  font-size: 0.75rem;
  font-weight: 700;
  opacity: 1;
}

.why-choose,
.success-stories,
.blog,
.faq {
  padding: 56px 0;
  background: #F7FBF9;
}

.features {
  padding: 0;
  background: #F7FBF9;
}

.testimonials {
  padding: 56px 0;
  background: #F7FBF9;
}

.why-choose .container,
.features .container,
.success-stories .container,
.testimonials .container,
.blog .container,
.faq .container {
  max-width: 1120px;
}

.why-choose-header,
.features-header,
.testimonials-header,
.blog-header,
.faq-header {
  margin-bottom: 54px;
}

.section-title {
  margin-bottom: 10px;
  font-size: clamp(2.2rem, 3.2vw, 3rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.section-subtitle {
  color: #667085;
  font-size: 0.9375rem;
  line-height: 1.55;
}

.value-grid,
.why-choose-grid.value-grid {
  max-width: 880px;
  gap: 28px;
}

.trust-point {
  min-height: 188px;
  padding: 32px 26px 28px;
  border: 1px solid rgba(16, 24, 40, 0.04);
  border-radius: 4px;
  background: #FFFFFF;
  box-shadow: 0 18px 44px rgba(16, 24, 40, 0.07);
}

.trust-point::after {
  display: none;
}

.trust-point-icon {
  display: none;
}

.trust-point-icon-img {
  width: 50px;
  height: 50px;
  margin: 0 auto 14px;
  object-fit: contain;
}

.trust-point h3 {
  margin-bottom: 9px;
  font-size: 0.9375rem;
  line-height: 1.25;
}

.trust-point p {
  font-size: 0.75rem;
  line-height: 1.55;
}

.feature-block {
  max-width: 760px;
  margin: 0 auto 0;
  grid-template-columns: minmax(0, 1fr) 270px;
  gap: 40px;
  align-items: center;
}

.feature-block.reverse {
  grid-template-columns: 270px minmax(0, 1fr);
}

.feature-content h3 {
  margin-bottom: 12px;
  font-size: 1.25rem;
  letter-spacing: 0;
}

.feature-content p {
  max-width: 410px;
  margin-bottom: 16px;
  font-size: 0.8125rem;
  line-height: 1.6;
}

.feature-list {
  gap: 8px;
}

.feature-list li {
  gap: 8px;
  font-size: 0.75rem;
}

.feature-list svg {
  width: 14px;
  height: 14px;
  color: #00CC91;
}

.feature-image > img {
  max-width: 270px;
  border-radius: 0;
  filter: drop-shadow(0 22px 38px rgba(16, 24, 40, 0.08));
}

.features-more {
  margin-top: 4px;
}

.features-more .btn-outline,
.blog-preview-cta .btn-primary,
.faq .btn-primary {
  min-height: 42px;
  padding: 12px 34px;
  border-radius: 999px;
  background: #00CC91;
  border-color: #00CC91;
  color: #FFFFFF;
  font-size: 0.8125rem;
  box-shadow: 0 16px 34px rgba(0, 204, 145, 0.24);
}

.stories-grid {
  gap: 20px;
}

.story-card {
  border: 0;
  border-radius: 5px;
  box-shadow: 0 18px 44px rgba(16, 24, 40, 0.08);
}

.story-card > img {
  aspect-ratio: 1.27 / 1;
}

.story-card-body {
  padding: 18px 20px 22px;
}

.story-card-body::before {
  display: none;
}

.story-tag {
  margin-bottom: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #00CC91;
  color: #FFFFFF;
  font-size: 0.6875rem;
}

.story-card p {
  margin-bottom: 14px;
  font-size: 0.75rem;
  line-height: 1.55;
}

.story-card strong {
  color: #344054;
  font-size: 0.75rem;
  font-weight: 500;
}

.testimonials-track {
  display: flex;
  gap: 24px;
  will-change: transform;
}

.testimonial-card {
  min-height: 174px;
  padding: 18px 18px 16px;
  border: 0;
  border-radius: 8px;
  background: #FFFFFF;
  box-shadow: 0 14px 32px rgba(16, 24, 40, 0.06);
  flex: 0 0 260px;
}

.testimonial-card:nth-child(n+5) {
  display: flex;
}

.testimonial-stars {
  margin-bottom: 11px;
}

.testimonial-stars::before {
  margin-right: 4px;
  font-size: 0.75rem;
}

.testimonial-stars svg {
  width: 11px;
  height: 11px;
  color: #FFAE19;
}

.testimonial-text {
  margin-bottom: 14px;
  font-size: 0.75rem;
  line-height: 1.5;
}

.testimonial-avatar {
  width: 28px;
  height: 28px;
}

.testimonial-author-info .testimonial-author-name {
  font-size: 0.75rem;
}

.testimonial-author-info p {
  display: none;
}

.blog-preview-grid {
  max-width: 820px;
  margin: 0 auto 36px;
  gap: 24px;
}

.blog-card {
  min-height: 0;
  border: 0;
  border-radius: 6px;
  box-shadow: 0 18px 40px rgba(16, 24, 40, 0.08);
}

.blog-card-image {
  height: 145px;
}

.blog-card-body {
  padding: 16px;
}

.blog-card-category {
  padding: 32px 0 0 0;
  background: transparent;
  color: #00A978;
  font-size: 0.625rem;
}

.blog-card-read-time,
.blog-card-tags {
  display: none;
}

.blog-card-title {
  font-size: 0.875rem;
  line-height: 1.35;
}

.blog-card-excerpt {
  margin-bottom: 0;
  font-size: 0.75rem;
  line-height: 1.5;
}

.faq-list {
  max-width: 820px;
}

.faq-cta {
  margin-top: 28px;
  text-align: center;
}

.faq-item {
  margin-bottom: 14px;
  border: 0;
  border-radius: 18px;
  background: #FFFFFF;
  box-shadow: 0 9px 24px rgba(16, 24, 40, 0.04);
}

.faq-item.active {
  border: 1px solid rgba(0, 204, 145, 0.34);
  background: #F3FFF9;
  box-shadow: 0 10px 28px rgba(0, 204, 145, 0.08);
}

.faq-question {
  padding: 18px 22px;
}

.faq-question h3 {
  font-size: 0.875rem;
}

.faq-answer-inner {
  padding: 0 22px 18px;
  font-size: 0.75rem;
  line-height: 1.6;
}

.final-cta {
  margin-top: 0;
  padding: 78px 0;
  border-radius: 0;
  background: #F7FBF9;
}

.final-cta .container {
  max-width: 1120px;
}

.final-cta-card {
  padding: 78px 24px;
  border-radius: 20px;
  background: #00CC91;
  box-shadow: none;
}

.final-cta-card h2 {
  margin-bottom: 14px;
  font-size: clamp(2.5rem, 4vw, 4rem);
  letter-spacing: 0;
}

.final-cta-card p {
  margin-bottom: 24px;
  font-size: 1rem;
}

.final-store-badges .store-badge {
  min-width: 156px;
  min-height: 46px;
}

@media (max-width: 1024px) {
  .hero .container,
  .feature-block,
  .feature-block.reverse {
    grid-template-columns: 1fr;
  }

  .hero-content,
  .hero-image {
    text-align: center;
    justify-content: center;
  }

  .hero-title,
  .hero-value,
  .feature-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .testimonials-track {
    display: flex;
  }
}

@media (max-width: 768px) {
  .hero {
    padding-top: 76px;
  }

  .hero .container {
    min-height: 0;
    gap: 28px;
  }

  .social-proof .why-choose-proof,
  .value-grid,
  .why-choose-grid.value-grid,
  .stories-grid,
  .blog-preview-grid {
    grid-template-columns: 1fr;
  }

  .proof-award img {
    width: 22px;
  }

  .feature-block {
    gap: 24px;
    margin-bottom: 56px;
  }
}

/* Final homepage alignment overrides */
.final-cta {
  background: #F7FBF9;
  border-radius: 0;
}

.final-cta .container {
  max-width: 1120px;
  padding-left: 24px;
  padding-right: 24px;
}

.final-cta-card {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  border-radius: 20px;
  background: #00CC91;
}

.footer-bottom {
  justify-content: center;
  text-align: center;
}

.footer-bottom p {
  width: 100%;
  text-align: center;
}

.hero-title {
  font-weight: 600;
}

.section-title {
  font-weight: 500;
}

/* 06.25 detail polish */
.social-proof {
  background: #F5FBF8;
}

.proof-award {
  height: auto;
  min-height: 56px;
  align-items: center;
  gap: 6px;
}

.proof-award-content {
  display: inline-flex;
  min-width: 82px;
  height: 54px;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 3px;
}

.proof-award > img:not(.proof-platform-icon):not(.proof-star-icon) {
  width: 26px;
  height: 54px;
  object-fit: contain;
  transform: translateY(11px);
}

.proof-platform-icons,
.proof-rating-stars {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.proof-platform-icons {
  gap: 5px;
}

.proof-platform-icon {
  width: 17px !important;
  height: 17px !important;
}

.proof-rating-stars {
  gap: 2px;
}

.proof-star-icon {
  width: 11px !important;
  height: 10px !important;
}

.proof-item {
  gap: 5px;
}

.social-proof .proof-label {
  font-size: 0.6875rem;
  line-height: 1.18;
}

.social-proof .proof-item:last-child .proof-label {
  margin-top: -13px;
}

.testimonials {
  background: transparent;
}

.testimonials-carousel,
.testimonials-track {
  background: transparent;
}

.trust-point,
.story-card,
.testimonial-card,
.blog-card,
.faq-item {
  border-radius: 18px;
}

.story-card,
.blog-card {
  overflow: hidden;
}

.final-cta {
  padding: 64px 0;
  background: #00CC91;
}

.final-cta .container {
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}

.final-cta-card {
  max-width: none;
  padding: 0 24px;
  border-radius: 0;
  background: transparent;
}

/* 06.25 responsive pass: keep the Figma desktop rhythm while preventing narrow viewport overflow. */
@media (min-width: 769px) and (max-width: 1120px) {
  .hero .container {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 28px;
    min-height: 520px;
    text-align: left;
  }

  .hero-content {
    padding-top: 18px;
    text-align: left;
  }

  .hero-image {
    order: initial;
    justify-content: flex-end;
    text-align: right;
  }

  .hero-image img {
    max-width: min(52vw, 500px) !important;
  }

  .hero-title {
    max-width: 440px;
    margin-left: 0;
    margin-right: 0;
    font-size: clamp(2.65rem, 5vw, 3.35rem);
  }

  .hero-value {
    max-width: 420px;
    margin-left: 0;
    margin-right: 0;
  }

  .hero-store-badges {
    justify-content: flex-start;
  }

  .value-grid,
  .why-choose-grid.value-grid,
  .stories-grid,
  .blog-preview-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .value-grid,
  .why-choose-grid.value-grid {
    max-width: 880px;
  }
}

@media (max-width: 768px) {
  html,
  body {
    overflow-x: hidden;
  }

  .hero .container {
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
    max-width: 100%;
    gap: 28px;
    text-align: center;
  }

  .hero-content,
  .hero-image,
  .feature-content,
  .feature-image {
    min-width: 0;
    width: 100%;
  }

  .hero-content {
    order: 1;
    padding-top: 0;
  }

  .hero-image {
    order: 2;
    justify-content: center;
    overflow: hidden;
  }

  .hero-image img {
    width: min(100%, 520px) !important;
    max-width: 100% !important;
  }

  .hero-title {
    max-width: 100%;
    font-size: clamp(2.25rem, 8vw, 3rem);
    line-height: 1.08;
  }

  .hero-value {
    max-width: 36rem;
  }

  .section-title {
    max-width: 100%;
    font-size: clamp(1.85rem, 6vw, 2.35rem);
    line-height: 1.14;
  }

  .feature-block,
  .feature-block.reverse {
    grid-template-columns: minmax(0, 1fr);
  }

  .feature-content p {
    max-width: 34rem;
  }

  .feature-image {
    order: -1;
  }

  .feature-image > img {
    max-width: min(270px, 82vw);
  }
}

@media (max-width: 480px) {
  .hero {
    padding-top: 70px;
  }

  .hero .container,
  .why-choose .container,
  .features .container,
  .success-stories .container,
  .testimonials .container,
  .blog .container,
  .faq .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-badge {
    max-width: 100%;
    font-size: 0.6875rem;
    white-space: nowrap;
  }

  .hero-title {
    font-size: clamp(2rem, 10vw, 2.45rem);
    line-height: 1.08;
  }

  .hero-value {
    font-size: 0.9375rem;
    line-height: 1.55;
  }

  .hero-store-badges {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    max-width: 352px;
    margin-left: auto;
    margin-right: auto;
    gap: 10px;
  }

  .hero-store-badges .store-badge {
    min-width: 0;
    width: 100%;
    padding: 6px 8px;
    gap: 6px;
  }

  .hero-store-badges .store-badge img.store-badge-icon {
    width: 24px;
    height: 24px;
  }

  .hero-store-badges .store-badge-text small {
    font-size: 0.5rem;
  }

  .hero-store-badges .store-badge-text strong {
    font-size: 0.75rem;
  }

  .social-proof {
    padding: 34px 0 36px;
  }

  .why-choose,
  .features,
  .success-stories,
  .blog,
  .faq,
  .testimonials {
    padding: 64px 0;
  }

  .trust-point {
    padding: 28px 18px 24px;
  }

  .feature-block {
    gap: 22px;
    margin-bottom: 52px;
  }

  .feature-content {
    text-align: left;
  }

  .feature-content h3 {
    font-size: 1.125rem;
  }

  .feature-content p,
  .feature-list li {
    font-size: 0.75rem;
  }
}

@media (max-width: 360px) {
  .hero .container,
  .why-choose .container,
  .features .container,
  .success-stories .container,
  .testimonials .container,
  .blog .container,
  .faq .container {
    padding-left: 12px;
    padding-right: 12px;
  }

  .hero-title {
    font-size: 1.9rem;
  }

  .hero-store-badges {
    gap: 8px;
  }

  .hero-store-badges .store-badge {
    min-height: 44px;
    padding: 6px;
  }
}

/* 06.25 hero right-aligned image pass */
.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 43%, rgba(232, 244, 239, 0.82) 100%),
    #F7FFFB;
}

.hero > .container {
  position: relative;
  z-index: 1;
}

.hero-image {
  display: flex;
  align-self: stretch;
  align-items: flex-end;
  justify-content: flex-end;
  min-width: 0;
  overflow: visible;
}

.hero-image img {
  width: min(54vw, 640px) !important;
  max-width: none !important;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: right bottom;
}

@media (min-width: 769px) {
  .hero .container {
    grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  }
}

@media (min-width: 1121px) {
  .hero-image {
    margin-right: calc((1120px - 100vw) / 2);
  }
}

@media (max-width: 768px) {
  .hero-image {
    justify-content: center;
    overflow: hidden;
  }

  .hero-image img {
    width: min(100%, 520px) !important;
    max-width: 100% !important;
  }
}

@media (max-width: 480px) {
  .hero .container {
    min-height: 0;
  }
}

/* 06.25 narrow-width feature stacking pass */
@media (max-width: 1120px) {
  .feature-block,
  .feature-block.reverse {
    grid-template-columns: minmax(0, 1fr);
    direction: ltr;
    gap: 28px;
  }

  .feature-image {
    order: 1;
  }

  .feature-content {
    order: 2;
  }

  .feature-image > img {
    max-width: min(270px, 82vw);
  }
}

@media (max-width: 768px) {
  .feature-block,
  .feature-block.reverse {
    gap: 16px;
  }

  .feature-image {
    order: 1;
  }

  .feature-content {
    order: 2;
  }

  .feature-content h3 {
    margin-top: 0;
  }
}

@media (max-width: 900px) {
  .hero {
    padding-top: 76px;
  }

  .hero .container {
    grid-template-columns: minmax(0, 1fr);
    min-height: 0;
    gap: 28px;
    text-align: center;
  }

  .hero-content,
  .hero-image,
  .feature-content,
  .feature-image {
    min-width: 0;
    width: 100%;
  }

  .hero-content {
    order: 1;
    padding-top: 0;
  }

  .hero-image {
    order: 2;
    justify-content: center;
    overflow: hidden;
  }

  .hero-image img {
    width: min(100%, 520px) !important;
    max-width: 100% !important;
  }

  .hero-title,
  .hero-value,
  .feature-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-store-badges {
    justify-content: center;
  }

  .feature-block,
  .feature-block.reverse {
    gap: 16px;
  }

  .feature-image {
    order: 1;
  }

  .feature-content {
    order: 2;
  }

  .social-proof .why-choose-proof,
  .value-grid,
  .why-choose-grid.value-grid,
  .stories-grid,
  .blog-preview-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 34px;
  }

  .footer-brand {
    display: block;
    text-align: center;
  }

  .footer-brand-mark,
  .footer-market-icons,
  .footer-social {
    justify-content: center;
  }

  .footer-link-groups {
    grid-template-columns: minmax(0, 1fr);
    justify-self: stretch;
    max-width: none;
    gap: 28px;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 34px;
  }

  .footer-brand {
    display: block;
    text-align: center;
  }

  .footer-brand-mark,
  .footer-market-icons,
  .footer-social {
    justify-content: center;
  }

  .footer-link-groups {
    grid-template-columns: minmax(0, 1fr);
    justify-self: stretch;
    max-width: none;
    gap: 28px;
    text-align: center;
  }
}

.hero-badge {
  border: 1px solid rgba(16, 24, 40, 0.1);
}

.hero-store-badges .store-badge {
  border-radius: 8px;
}

.features .feature-content,
.features .feature-content h3,
.features .feature-content p,
.features .feature-list,
.features .feature-list li {
  text-align: left;
}

.features .feature-content p {
  margin-left: 0;
  margin-right: 0;
}

@media (max-width: 1120px) {
  .features .feature-content,
  .features .feature-content h3,
  .features .feature-content p {
    text-align: center;
  }

  .features .feature-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .features .feature-list {
    width: fit-content;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

/* 06.25 final responsive refinements */
.social-proof .proof-item:last-child .proof-award-content {
  justify-content: flex-start;
  padding-top: 0;
}

.social-proof .proof-item:last-child .proof-value {
  line-height: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .success-stories .stories-grid {
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
    justify-items: center;
  }

  .success-stories .story-card {
    width: 100%;
    max-width: 420px;
  }
}

/* 06.25 testimonials background refinement */
.testimonials {
  background: #F8FAF9;
}

.testimonials-carousel,
.testimonials-track {
  background: #F8FAF9;
}

.proof-rating-stars {
  margin-top: 6px;
}

.testimonial-stars {
  gap: 1px;
}

/* 06.25 normalize healthy habits feature artwork scale */
.features .feature-image > img[src$="healthy-habits-builder-guidance.png"] {
  max-width: 258px;
}

@media (max-width: 1120px) {
  .features .feature-image > img[src$="healthy-habits-builder-guidance.png"] {
    max-width: min(258px, 78vw);
  }
}

/* 06.25 mobile homepage polish: hero CTA, stories pager, FAQ and carousel cleanup. */
.stories-page-control {
  display: none;
}

@media (max-width: 600px) {
  .hero-title {
    max-width: 11.4em;
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(1.82rem, 8.6vw, 2.15rem);
    line-height: 1.06;
    letter-spacing: -0.035em;
  }

  .hero-store-badges {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 190px;
    gap: 10px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-store-badges .store-badge {
    width: 100%;
    justify-content: center;
    min-height: 44px;
    padding: 7px 10px;
  }

  .social-proof .why-choose-proof {
    justify-items: center;
    text-align: center;
  }

  .social-proof .proof-item {
    width: 100%;
    justify-self: center;
    align-items: center;
    text-align: center;
  }

  .success-stories .stories-grid {
    display: flex;
    grid-template-columns: none;
    width: auto;
    max-width: none;
    margin-left: -16px;
    margin-right: -16px;
    padding: 0 16px 8px;
    gap: 16px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-padding: 16px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .success-stories .stories-grid::-webkit-scrollbar {
    display: none;
  }

  .success-stories .story-card {
    flex: 0 0 min(78vw, 320px);
    width: auto;
    max-width: none;
    scroll-snap-align: center;
  }

  .success-stories .story-card > img {
    width: 100%;
    height: auto;
    aspect-ratio: 760 / 959;
    object-fit: contain;
    background: #F8FAF9;
  }

  .stories-page-control {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
  }

  .stories-page-dot {
    width: 7px;
    height: 7px;
    padding: 32px 0 0 0;
    border: 0;
    border-radius: 999px;
    background: rgba(0, 204, 145, 0.28);
    transition: width 0.2s ease, background-color 0.2s ease;
  }

  .stories-page-dot.active {
    width: 18px;
    background: #00CC91;
  }

  .testimonials-track {
    gap: 0;
  }

  .testimonial-card {
    border-radius: 0;
    border-left: 0;
    border-right: 0;
    box-shadow: none;
  }
}

/* 06.25 keep Real People images in their original portrait proportion. */
.success-stories .story-card > img {
  aspect-ratio: 602 / 760;
  height: auto;
  object-fit: cover;
}

/* 06.25 align testimonial gaps with the section background and keep mobile proof stats horizontal. */
.testimonials,
.testimonials-carousel,
.testimonials-track {
  background: #F8FAF9;
}

@media (max-width: 600px) {
  .social-proof .why-choose-proof {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: start;
    justify-items: center;
    column-gap: 4px;
  }

  .social-proof .proof-item {
    min-width: 0;
    gap: 4px;
  }

  .social-proof .proof-award {
    gap: 2px;
    height: 40px;
  }

  .social-proof .proof-award > img:not(.proof-platform-icon):not(.proof-star-icon) {
    width: 18px;
    height: 40px;
  }

  .social-proof .proof-award-content {
    min-width: 46px;
    height: 40px;
    gap: 2px;
  }

  .social-proof .proof-value {
    min-width: 46px;
    font-size: 1.35rem;
  }

  .social-proof .proof-platform-icons {
    gap: 3px;
  }

  .social-proof .proof-platform-icon {
    width: 15px;
    height: 15px;
  }

  .proof-rating-stars {
    gap: 0;
    margin-top: 3px;
  }

  .proof-rating-stars .proof-star-icon {
    width: 10px;
    height: 10px;
  }

  .social-proof .proof-label {
    max-width: 88px;
    margin-top: 0;
    font-size: 0.62rem;
    line-height: 1.15;
  }

  .social-proof .proof-item:last-child .proof-label {
    margin-top: -1px;
  }
}

/* 06.25 final mobile proof alignment, testimonial separation, and blog image ratio. */
.blog-card-image {
  height: auto;
  aspect-ratio: 1774 / 887;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 600px) {
  .social-proof .proof-item {
    display: grid;
    grid-template-rows: 40px 30px;
    justify-items: center;
    row-gap: 4px;
  }

  .social-proof .proof-award {
    grid-row: 1;
    align-self: start;
  }

  .social-proof .proof-label,
  .social-proof .proof-item:last-child .proof-label {
    grid-row: 2;
    display: flex;
    min-height: 30px;
    align-items: flex-end;
    justify-content: center;
    margin-top: 0;
  }

  .testimonials,
  .testimonials-carousel,
  .testimonials-track {
    background: #F8FAF9;
  }

  .testimonials-track {
    gap: 16px;
  }

  .testimonial-card {
    border: 1px solid rgba(16, 24, 40, 0.06);
    border-radius: 8px;
    background: #FFFFFF;
    box-shadow: 0 10px 24px rgba(16, 24, 40, 0.05);
  }
}

/* 06.25 compact mobile proof stats so all three fit and the #1 label keeps two ordered lines. */
@media (max-width: 600px) {
  .social-proof .why-choose-proof {
    column-gap: 0;
  }

  .social-proof .proof-item {
    grid-template-rows: 34px 28px;
    row-gap: 2px;
  }

  .social-proof .proof-award {
    height: 34px;
    gap: 1px;
  }

  .social-proof .proof-award > img:not(.proof-platform-icon):not(.proof-star-icon) {
    width: 15px;
    height: 34px;
  }

  .social-proof .proof-award-content {
    min-width: 40px;
    height: 34px;
    gap: 1px;
  }

  .social-proof .proof-value {
    min-width: 40px;
    font-size: 1.16rem;
    letter-spacing: -0.04em;
  }

  .social-proof .proof-platform-icons {
    gap: 2px;
  }

  .social-proof .proof-platform-icon {
    width: 13px;
    height: 13px;
  }

  .proof-rating-stars {
    margin-top: 2px;
  }

  .proof-rating-stars .proof-star-icon {
    width: 8px;
    height: 8px;
  }

  .social-proof .proof-label {
    max-width: 72px;
    min-height: 28px;
    font-size: 0.54rem;
    line-height: 1.12;
    letter-spacing: -0.02em;
  }

  .social-proof .proof-item:last-child .proof-label {
    display: grid;
    grid-template-rows: repeat(2, auto);
    align-content: end;
    justify-items: center;
    row-gap: 1px;
    white-space: nowrap;
  }

  .social-proof .proof-item:last-child .proof-label br {
    display: none;
  }
}

/* 06.25 proof item width follows content + fixed padding, with laurels outside. */
@media (max-width: 600px) {
  .social-proof .why-choose-proof {
    grid-template-columns: repeat(3, max-content);
    justify-content: center;
    justify-items: center;
    column-gap: clamp(2px, 1.4vw, 7px);
  }

  .social-proof .proof-item {
    width: max-content;
    justify-self: center;
  }

  .social-proof .proof-award {
    display: grid;
    grid-template-columns: auto minmax(34px, max-content) auto;
    align-items: center;
    justify-content: center;
    column-gap: 1px;
    width: max-content;
  }

  .social-proof .proof-award-content {
    min-width: 0;
    width: max-content;
    padding-left: 4px;
    padding-right: 4px;
    box-sizing: content-box;
  }

  .social-proof .proof-value {
    min-width: 0;
    width: max-content;
  }

  .social-proof .proof-item:last-child .proof-award-content {
    padding-left: 6px;
    padding-right: 6px;
  }
}

/* 06.25 distribute space between compact proof items by viewport width. */
@media (max-width: 600px) {
  .social-proof .why-choose-proof {
    width: min(100%, 380px);
    grid-template-columns: repeat(3, max-content);
    justify-content: space-between;
    column-gap: clamp(8px, 4vw, 28px);
  }
}

@media (max-width: 340px) {
  .social-proof .why-choose-proof {
    column-gap: clamp(4px, 2vw, 10px);
  }
}

/* 06.25 rescue mobile proof spacing: wider inner padding and laurels visually wrapping content. */
@media (max-width: 600px) {
  .social-proof .proof-item {
    grid-template-rows: 42px 30px;
    row-gap: 5px;
  }

  .social-proof .proof-award {
    height: 42px;
    grid-template-columns: auto max-content auto;
    column-gap: 2px;
  }

  .social-proof .proof-award > img:not(.proof-platform-icon):not(.proof-star-icon) {
    width: 18px;
    height: 42px;
  }

  .social-proof .proof-award-content {
    height: 42px;
    padding-left: 9px;
    padding-right: 9px;
    justify-content: center;
    transform: translateY(2px);
  }

  .social-proof .proof-item:last-child .proof-award-content {
    padding-left: 13px;
    padding-right: 13px;
  }

  .social-proof .proof-label {
    max-width: 86px;
    min-height: 30px;
  }
}

/* 06.25 mobile proof rescue v2: keep each stat's content visibly wrapped by laurels. */
@media (max-width: 600px) {
  .social-proof .why-choose-proof {
    width: min(100%, 390px);
    padding-left: 10px;
    padding-right: 10px;
    grid-template-columns: repeat(3, max-content);
    justify-content: space-between;
    column-gap: clamp(10px, 5vw, 30px);
    box-sizing: border-box;
  }

  .social-proof .proof-item {
    grid-template-rows: 46px 32px;
    row-gap: 7px;
  }

  .social-proof .proof-award {
    height: 46px;
    column-gap: 1px;
  }

  .social-proof .proof-award > img:not(.proof-platform-icon):not(.proof-star-icon) {
    width: 16px;
    height: 46px;
    transform: translateY(0);
  }

  .social-proof .proof-award-content {
    height: 46px;
    padding-left: 12px;
    padding-right: 12px;
    justify-content: center;
    transform: translateY(4px);
  }

  .social-proof .proof-item:last-child .proof-award-content {
    padding-left: 16px;
    padding-right: 16px;
  }

  .social-proof .proof-label,
  .social-proof .proof-item:last-child .proof-label {
    min-height: 32px;
    align-items: flex-start;
  }
}

@media (max-width: 340px) {
  .social-proof .why-choose-proof {
    padding-left: 8px;
    padding-right: 8px;
    column-gap: clamp(6px, 2.5vw, 12px);
  }

  .social-proof .proof-award-content {
    padding-left: 10px;
    padding-right: 10px;
  }

  .social-proof .proof-item:last-child .proof-award-content {
    padding-left: 14px;
    padding-right: 14px;
  }
}

/* 06.25 mobile proof layout match: laurels wrap the full stat block. */
@media (max-width: 600px) {
  .social-proof {
    padding: 32px 0 0 0;
    background: #F2FAF6;
  }

  .social-proof .why-choose-proof {
    width: min(100%, 430px);
    max-width: 430px;
    padding: 24px clamp(14px, 4vw, 24px) 28px;
    background: #F2FAF6;
    grid-template-columns: repeat(3, max-content);
    justify-content: space-between;
    align-items: center;
    column-gap: clamp(8px, 4vw, 28px);
    box-sizing: border-box;
  }

  .social-proof .proof-item {
    position: relative;
    display: flex;
    width: max-content;
    min-width: 0;
    height: 78px;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
  }

  .social-proof .proof-award {
    display: grid;
    width: max-content;
    height: 78px;
    min-height: 78px;
    grid-template-columns: auto max-content auto;
    align-items: center;
    justify-content: center;
    column-gap: 2px;
  }

  .social-proof .proof-award > img:not(.proof-platform-icon):not(.proof-star-icon) {
    width: 18px;
    height: 68px;
    object-fit: contain;
    transform: translateY(1px);
  }

  .social-proof .proof-award-content {
    display: inline-flex;
    width: max-content;
    min-width: 0;
    height: 78px;
    padding: 5px 10px 0;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 2px;
    box-sizing: border-box;
    transform: none;
  }

  .social-proof .proof-item:last-child .proof-award-content {
    padding-left: 16px;
    padding-right: 16px;
  }

  .social-proof .proof-value {
    width: max-content;
    min-width: 0;
    color: #2E8B68;
    font-size: clamp(1.72rem, 8vw, 2.15rem);
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: -0.03em;
  }

  .social-proof .proof-platform-icons {
    margin-top: 0;
    gap: 4px;
  }

  .social-proof .proof-platform-icon {
    width: 13px !important;
    height: 13px !important;
  }

  .social-proof .proof-rating-stars {
    margin-top: 2px;
    gap: 1px;
  }

  .social-proof .proof-rating-stars .proof-star-icon {
    width: 6px !important;
    height: 6px !important;
  }

  .social-proof .proof-label,
  .social-proof .proof-item:last-child .proof-label {
    position: absolute;
    top: 55px;
    left: 50%;
    display: block;
    width: max-content;
    max-width: 92px;
    min-height: 0;
    margin: 0;
    color: #101828;
    font-size: 0.625rem;
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.02em;
    opacity: 1;
    text-align: center;
    transform: translateX(-50%);
  }

  .social-proof .proof-item:last-child .proof-label {
    top: 45px;
    display: grid;
    grid-template-rows: repeat(2, auto);
    align-content: start;
    justify-items: center;
    row-gap: 1px;
    white-space: nowrap;
  }

  .social-proof .proof-item:last-child .proof-label span:first-child {
    font-size: 0.5625rem;
    font-weight: 800;
    line-height: 1;
  }

  .social-proof .proof-item:last-child .proof-label span:last-child {
    font-size: 0.6875rem;
    font-weight: 900;
    line-height: 1.05;
  }
}

@media (max-width: 340px) {
  .social-proof .why-choose-proof {
    padding-left: 8px;
    padding-right: 8px;
    column-gap: clamp(4px, 2vw, 10px);
  }

  .social-proof .proof-award {
    column-gap: 1px;
  }

  .social-proof .proof-award > img:not(.proof-platform-icon):not(.proof-star-icon) {
    width: 14px;
    height: 62px;
  }

  .social-proof .proof-award-content {
    padding-left: 6px;
    padding-right: 6px;
  }

  .social-proof .proof-item:last-child .proof-award-content {
    padding-left: 12px;
    padding-right: 12px;
  }
}

/* 06.25 mobile proof safe-area: fixed side padding, three equal columns inside. */
@media (max-width: 600px) {
  .social-proof .why-choose-proof {
    width: 100%;
    max-width: 430px;
    padding-left: 16px;
    padding-right: 16px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    justify-content: stretch;
    justify-items: stretch;
    column-gap: 0;
    overflow: hidden;
  }

  .social-proof .proof-item {
    width: 100%;
    min-width: 0;
    justify-self: stretch;
  }

  .social-proof .proof-award {
    width: 100%;
    min-width: 0;
    grid-template-columns: 16px minmax(0, 1fr) 16px;
    column-gap: 0;
  }

  .social-proof .proof-award > img:not(.proof-platform-icon):not(.proof-star-icon) {
    width: 16px;
    height: 66px;
  }

  .social-proof .proof-award-content {
    width: 100%;
    min-width: 0;
    padding-left: 4px;
    padding-right: 4px;
  }

  .social-proof .proof-item:last-child .proof-award-content {
    padding-left: 6px;
    padding-right: 6px;
  }

  .social-proof .proof-label,
  .social-proof .proof-item:last-child .proof-label {
    max-width: calc(100% - 8px);
  }
}

@media (max-width: 340px) {
  .social-proof .why-choose-proof {
    padding-left: 12px;
    padding-right: 12px;
  }

  .social-proof .proof-award {
    grid-template-columns: 14px minmax(0, 1fr) 14px;
  }

  .social-proof .proof-award > img:not(.proof-platform-icon):not(.proof-star-icon) {
    width: 14px;
    height: 62px;
  }
}

/* 06.25 mobile proof breathing room: slightly smaller type creates real item gaps. */
@media (max-width: 600px) {
  .social-proof .why-choose-proof {
    column-gap: clamp(6px, 2.5vw, 12px);
  }

  .social-proof .proof-value {
    font-size: clamp(1.48rem, 6.7vw, 1.92rem);
    letter-spacing: -0.025em;
  }

  .social-proof .proof-label,
  .social-proof .proof-item:last-child .proof-label {
    font-size: 0.5625rem;
    line-height: 1.08;
  }

  .social-proof .proof-item:last-child .proof-label span:first-child {
    font-size: 0.5rem;
  }

  .social-proof .proof-item:last-child .proof-label span:last-child {
    font-size: 0.625rem;
  }

  .social-proof .proof-platform-icons {
    gap: 3px;
  }

  .social-proof .proof-platform-icon {
    width: 12px !important;
    height: 12px !important;
  }
}

@media (max-width: 340px) {
  .social-proof .why-choose-proof {
    column-gap: 4px;
  }

  .social-proof .proof-value {
    font-size: clamp(1.34rem, 6.2vw, 1.52rem);
  }

  .social-proof .proof-label,
  .social-proof .proof-item:last-child .proof-label {
    font-size: 0.5rem;
  }

  .social-proof .proof-item:last-child .proof-label span:first-child {
    font-size: 0.46875rem;
  }

  .social-proof .proof-item:last-child .proof-label span:last-child {
    font-size: 0.5625rem;
  }
}

/* 06.25 mobile proof vertical rhythm: lower the top value and center the middle row. */
@media (max-width: 600px) {
  .social-proof .proof-award-content {
    position: relative;
    padding-top: 10px;
  }

  .social-proof .proof-value {
    line-height: 0.94;
  }

  .social-proof .proof-platform-icons,
  .social-proof .proof-rating-stars {
    position: absolute;
    top: 39px;
    left: 50%;
    transform: translateX(-50%);
  }

  .social-proof .proof-rating-stars {
    margin-top: 0;
  }

  .social-proof .proof-label,
  .social-proof .proof-item:last-child .proof-label {
    top: 59px;
  }

  .social-proof .proof-item:last-child .proof-label {
    top: 48px;
  }
}

@media (max-width: 340px) {
  .social-proof .proof-award-content {
    padding-top: 11px;
  }

  .social-proof .proof-platform-icons,
  .social-proof .proof-rating-stars {
    top: 37px;
  }

  .social-proof .proof-label,
  .social-proof .proof-item:last-child .proof-label {
    top: 56px;
  }

  .social-proof .proof-item:last-child .proof-label {
    top: 46px;
  }
}

/* 06.25 mobile proof final vertical alignment: #1 shares the same top rhythm, labels sit higher. */
@media (max-width: 600px) {
  .social-proof .proof-item:last-child .proof-value {
    transform: translateY(5px);
  }

  .social-proof .proof-label,
  .social-proof .proof-item:last-child .proof-label {
    top: 56px;
  }

  .social-proof .proof-item:last-child .proof-label {
    top: 50px;
  }
}

@media (max-width: 340px) {
  .social-proof .proof-item:last-child .proof-value {
    transform: translateY(4px);
  }

  .social-proof .proof-label,
  .social-proof .proof-item:last-child .proof-label {
    top: 54px;
  }

  .social-proof .proof-item:last-child .proof-label {
    top: 48px;
  }
}

/* 06.25 mobile proof third-item correction: align #1 and bottom text with the other stats. */
@media (max-width: 600px) {
  .social-proof .proof-label,
  .social-proof .proof-item:last-child .proof-label {
    top: auto;
    bottom: 12px;
  }

  .social-proof .proof-item:last-child .proof-award-content {
    padding-top: 17px;
  }

  .social-proof .proof-item:last-child .proof-value {
    transform: none;
  }

  .social-proof .proof-item:last-child .proof-label {
    row-gap: 0;
  }
}

@media (max-width: 340px) {
  .social-proof .proof-label,
  .social-proof .proof-item:last-child .proof-label {
    top: auto;
    bottom: 13px;
  }

  .social-proof .proof-item:last-child .proof-award-content {
    padding-top: 16px;
  }
}

/* 06.25 mobile proof #1 top alignment: keep #1 level with 4.9. */
@media (max-width: 600px) {
  .social-proof .proof-item:last-child .proof-award-content {
    padding-top: 10px;
  }
}

@media (max-width: 340px) {
  .social-proof .proof-item:last-child .proof-award-content {
    padding-top: 11px;
  }
}

/* 06.26 mobile proof label spacing: lift "Fasting App" away from Health Category. */
@media (max-width: 600px) {
  .social-proof .proof-item:last-child .proof-label {
    row-gap: 2px;
  }
}

@media (max-width: 340px) {
  .social-proof .proof-item:last-child .proof-label {
    row-gap: 1px;
  }
}

/* 06.29 docx fixes: homepage proportions, alignment, FAQ, cards. */
.hero {
  padding: 152px 0 88px;
}

.hero .container {
  grid-template-columns: minmax(0, 45fr) minmax(0, 55fr);
  gap: clamp(36px, 6vw, 78px);
}

.hero-badge {
  margin-bottom: 14px;
}

.hero-title {
  font-size: 3.75rem;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.045em;
}

.hero-value {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.92);
}

.hero-image {
  align-self: start;
  padding-top: 18px;
}

.hero-image img {
  max-width: 620px !important;
}

.section-title {
  font-size: 2.375rem;
  line-height: 1.2;
  font-weight: 700;
}

.why-choose-grid.value-grid {
  align-items: stretch;
}

.trust-point h3,
.blog-card-title {
  font-size: 1.0625rem;
  line-height: 1.3;
  font-weight: 700;
}

.proof-item {
  min-width: 150px;
}

.proof-label {
  min-height: 2.4em;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.feature-content,
.features .feature-content,
.features .feature-content h3,
.features .feature-content p,
.features .feature-list,
.features .feature-list li {
  text-align: left;
}

.feature-content h3,
.features .feature-content h3 {
  font-size: 1.75rem;
  line-height: 1.25;
  font-weight: 700;
}

.success-stories .story-card {
  transition: transform 250ms ease, box-shadow 250ms ease;
}

.success-stories .story-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(16, 24, 40, 0.12);
}

.testimonial-stars::before {
  content: attr(data-rating);
}

.testimonial-author-info p {
  display: inline-flex;
  width: fit-content;
  margin-top: 3px;
  padding: 3px 8px;
  border-radius: 999px;
  background: #E9FFF7;
  color: #078760;
  font-size: 0.6875rem;
  font-weight: 800;
  line-height: 1.2;
}

.blog-preview-grid {
  align-items: stretch;
}

.blog-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
}

.blog-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.blog-card-meta,
.blog-card-title,
.blog-card-excerpt,
.blog-card-tags {
  width: 100%;
  text-align: left;
}

.blog-card-category {
  text-transform: none;
}

.blog-card-excerpt {
  flex: 1;
}

.faq-question h3 {
  font-size: 0.9375rem;
  line-height: 1.4;
  font-weight: 600;
}

.faq-item.active {
  border: 1px solid rgba(0, 204, 145, 0.32);
  background: #F6FFFB;
  box-shadow: none;
}

.final-cta-card p {
  color: rgba(255, 255, 255, 0.88);
}

@media (max-width: 768px) {
  .hero {
    padding: 96px 0 42px;
  }

  .hero .container {
    grid-template-columns: 1fr;
    gap: 18px;
    text-align: center;
  }

  .hero-badge {
    margin-bottom: 10px;
  }

  .hero-title,
  .hero-title span {
    max-width: 10.8em;
    font-size: 2.1875rem;
    line-height: 1.12;
  }

  .hero-value {
    margin-left: auto;
    margin-right: auto;
    font-size: 1rem;
    line-height: 1.55;
  }

  .hero-store-badges {
    max-width: 230px;
  }

  .hero-store-badges .store-badge {
    width: 100%;
    min-width: 230px;
  }

  .hero-image {
    padding-top: 2px;
  }

  .hero-image img {
    width: min(100%, 380px) !important;
  }

  .section-title {
    font-size: 1.6875rem;
  }

  .feature-content h3,
  .features .feature-content h3 {
    font-size: 1.3125rem;
    line-height: 1.28;
  }

  .features .feature-content,
  .features .feature-content h3,
  .features .feature-content p {
    text-align: left;
  }

  .success-stories .stories-grid {
    padding-left: 18px;
    padding-right: 18px;
    scroll-padding: 18px;
  }

  .success-stories .story-card {
    flex-basis: min(86vw, 350px);
  }

  .testimonial-author-info p {
    display: inline-flex;
  }

  .faq-item.active .faq-question,
  .faq-item.active .faq-question svg {
    color: #101820;
  }

  .faq-item.active .faq-question svg {
    color: #00CC91;
  }
}

/* 06.29 correction pass from visual audit. */
.hero-value {
  color: #123D35;
}

.social-proof .proof-app-rank {
  margin-top: 6px;
  color: #2E8B68;
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.social-proof .proof-item:last-child .proof-label {
  font-size: 0.82rem;
  font-weight: 900;
}

.testimonial-tag {
  display: block;
  margin: -3px 0 12px;
  color: #078760;
  font-size: 0.6875rem;
  font-weight: 800;
  line-height: 1.25;
}

.testimonial-author-info p {
  display: none;
}

.blog-card-read-time {
  display: inline-flex;
  align-items: center;
  color: #64748B;
  font-size: 0.6875rem;
  font-weight: 700;
  white-space: nowrap;
}

.blog-card-meta {
  gap: 10px;
}

@media (max-width: 600px) {
  .hero-value {
    color: #123D35;
  }

  .social-proof .proof-app-rank {
    position: absolute;
    top: 39px;
    left: 50%;
    margin-top: 0;
    font-size: 0.5rem;
    transform: translateX(-50%);
  }

  .social-proof .proof-item:last-child .proof-label {
    top: auto;
    bottom: 12px;
    display: block;
    font-size: 0.625rem;
    white-space: nowrap;
  }

  .testimonial-tag {
    margin-bottom: 10px;
  }

  .blog-card-read-time {
    display: inline-flex;
  }
}

/* 06.29 correction: keep proof captions aligned and separate from the #1 sublabel. */
.social-proof .proof-item {
  display: grid;
  grid-template-rows: 86px 2.4em;
  justify-items: center;
  align-items: start;
  gap: 0;
}

.social-proof .proof-award {
  grid-row: 1;
  height: 86px;
}

.social-proof .proof-app-rank {
  color: #101820;
}

.social-proof .proof-label,
.social-proof .proof-item:last-child .proof-label {
  grid-row: 2;
  align-self: start;
  min-height: 0;
  color: #101820;
  font-size: 0.75rem;
  font-weight: 800;
  line-height: 1.15;
  opacity: 0.78;
}

@media (max-width: 600px) {
  .social-proof .proof-item {
    display: flex;
  }

  .social-proof .proof-app-rank {
    color: #101820;
  }

  .social-proof .proof-label,
  .social-proof .proof-item:last-child .proof-label {
    color: #101820;
    font-size: 0.5625rem;
    font-weight: 800;
    opacity: 1;
  }
}

/* 06.29 correction: mobile proof labels sit just under the laurels. */
@media (max-width: 600px) {
  .social-proof .proof-label,
  .social-proof .proof-item:last-child .proof-label {
    bottom: 20px;
  }
}

@media (max-width: 340px) {
  .social-proof .proof-label,
  .social-proof .proof-item:last-child .proof-label {
    bottom: 18px;
  }
}

/* 06.29 correction: desktop proof bottom labels share one baseline. */
@media (min-width: 601px) {
  .social-proof .proof-item:last-child .proof-app-rank {
    margin-top: 5px;
  }

  .social-proof .proof-label,
  .social-proof .proof-item:last-child .proof-label {
    margin-top: 0;
    transform: translateY(-13px);
  }
}

.blog-card-category {
  background: rgba(0, 169, 120, 0.1);
  background: color-mix(in srgb, currentColor 10%, transparent);
  padding: 6px 16px;
  border-radius: 50px;
}

/* 06.29 correction: larger feature artwork on desktop. */
@media (min-width: 1121px) {
  .feature-block {
    max-width: 940px;
    grid-template-columns: minmax(0, 1fr) 380px;
  }

  .feature-block.reverse {
    grid-template-columns: 380px minmax(0, 1fr);
  }

  .feature-image > img {
    max-width: 380px;
  }

  .features .feature-image > img[src$="healthy-habits-builder-guidance.png"] {
    max-width: 360px;
  }
}

/* 06.30 hero composition pass: tighten copy/art grouping and connect proof block. */
@media (min-width: 901px) {
  .hero {
    padding: clamp(104px, 8vw, 120px) 0 0;
  }

  .hero .container {
    max-width: 1240px;
    min-height: 560px;
    grid-template-columns: minmax(0, 0.49fr) minmax(0, 0.51fr);
    gap: clamp(20px, 2.5vw, 36px);
    align-items: center;
  }

  .hero-content {
    padding-top: 0;
    position: relative;
    z-index: 2;
  }

  .hero-badge {
    margin-bottom: 12px;
  }

  .hero-title {
    max-width: 610px;
    margin: 12px 0 16px;
    font-size: clamp(3.15rem, 3.7vw, 3.5rem);
    line-height: 1.08;
    text-wrap: balance;
  }

  .hero-value {
    max-width: 560px;
    margin-bottom: 22px;
  }

  .hero-image {
    padding-top: 0;
    align-self: stretch;
    position: relative;
    z-index: 1;
  }

  .hero-image img {
    width: min(56vw, 740px) !important;
    transform: none;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 7%, #000 93%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0%, #000 7%, #000 93%, transparent 100%);
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
  }

  .social-proof {
    padding: 12px 0 38px;
  }

  .hero-title--fixed-lines .hero-title-line {
    display: block;
  }

  .hero-title--fixed-lines .hero-title-line--final {
    white-space: nowrap;
  }
}

@media (min-width: 1241px) {
  .hero-image {
    margin-right: 0;
  }
}

@media (min-width: 901px) and (max-width: 1240px) {
  .hero-image {
    margin-right: 0;
  }
}

@media (min-width: 901px) and (max-width: 1120px) {
  .hero .container {
    grid-template-columns: minmax(0, 0.47fr) minmax(0, 0.53fr);
    gap: 24px;
  }

  .hero-title {
    max-width: 520px;
    font-size: clamp(2.8rem, 4.6vw, 3.25rem);
  }

  .hero-image img {
    width: min(57vw, 600px) !important;
    transform: none;
  }
}

@media (max-width: 900px) {
  .hero {
    padding-bottom: 0;
  }

  .social-proof {
    padding-top: 18px;
  }

  .hero-image img {
    transform: none;
  }
}

/* 06.30 honor band sizing: keep the proof section compact and centered. */
.social-proof {

  padding: 32px 0 0 0;
  box-sizing: border-box;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.social-proof .container {
  width: 100%;
}

.social-proof .why-choose-proof {
  align-items: center;
}

/* 06.30 feature module: match artwork by visible content, not just PNG canvas width. */
.features .feature-image > img[src$="fasting-timer-tracker.png"] {
  width: min(322px, 92vw);
  max-width: none;
}

.features .feature-image > img[src$="customized-fasting-plans.png"] {
  width: min(325px, 92vw);
  max-width: none;
}

.features .feature-image > img[src$="ai-powered-calorie-tracker.png"] {
  width: min(331px, 92vw);
  max-width: none;
}

.features .feature-image > img[src$="healthy-habits-builder-guidance.png"] {
  width: min(307px, 92vw);
  max-width: none;
}

@media (min-width: 901px) and (max-width: 1120px) {
  .feature-block {
    grid-template-columns: minmax(0, 1fr) 380px;
  }

  .feature-block.reverse {
    grid-template-columns: 380px minmax(0, 1fr);
  }

  .features .feature-image > img[src$="fasting-timer-tracker.png"] {
    width: 353px;
  }

  .features .feature-image > img[src$="customized-fasting-plans.png"] {
    width: 357px;
  }

  .features .feature-image > img[src$="ai-powered-calorie-tracker.png"] {
    width: 363px;
  }

  .features .feature-image > img[src$="healthy-habits-builder-guidance.png"] {
    width: 337px;
  }
}

@media (min-width: 1121px) {
  .feature-block {
    max-width: 1120px;
    grid-template-columns: minmax(0, 1fr) 490px;
  }

  .feature-block.reverse {
    grid-template-columns: 490px minmax(0, 1fr);
  }

  .features .feature-image > img[src$="fasting-timer-tracker.png"] {
    width: 453px;
  }

  .features .feature-image > img[src$="customized-fasting-plans.png"] {
    width: 457px;
  }

  .features .feature-image > img[src$="ai-powered-calorie-tracker.png"] {
    width: 466px;
  }

  .features .feature-image > img[src$="healthy-habits-builder-guidance.png"] {
    width: 432px;
  }
}

@media (max-width: 600px) {
  .features-header .section-title {
    text-align: left;
  }

  .features .feature-list {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .features .feature-list li {
    justify-content: flex-start;
    text-align: left;
  }

  .features .feature-image {
    overflow: visible;
  }

  .features .feature-image > img[src$="fasting-timer-tracker.png"] {
    width: min(372px, 108vw);
  }

  .features .feature-image > img[src$="customized-fasting-plans.png"] {
    width: min(375px, 109vw);
  }

  .features .feature-image > img[src$="ai-powered-calorie-tracker.png"] {
    width: min(382px, 111vw);
  }

  .features .feature-image > img[src$="healthy-habits-builder-guidance.png"] {
    width: min(354px, 103vw);
  }
}

/* 06.30 mobile spacing-only refinements. */
@media (max-width: 768px) {
  .social-proof {
    padding: 32px 0 0 0;
  }

  .social-proof .why-choose-proof {

  }

  .social-proof .proof-item {
    height: 96px;
  }

  .social-proof .proof-label,
  .social-proof .proof-item:last-child .proof-label {
    bottom: 4px;
  }

  .social-proof,
  .why-choose,
  .features,
  .success-stories,
  .testimonials,
  .blog,
  .faq,
  .final-cta {
    border-top: 1px solid rgba(16, 24, 40, 0.08);
  }

  .social-proof .container,
  .why-choose .container,
  .features .container,
  .success-stories .container,
  .testimonials .container,
  .blog .container,
  .faq .container,
  .final-cta .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .features-header,
  .features-header .section-title,
  .features-header .section-subtitle {
    text-align: center;
  }

  .features-header .section-subtitle {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }

  .features .feature-content,
  .features .feature-content h3,
  .features .feature-content p,
  .features .feature-list,
  .features .feature-list li {
    text-align: center;
  }

  .features .feature-content p,
  .features .feature-list {
    margin-left: auto;
    margin-right: auto;
  }

  .features .feature-list {
    width: fit-content;
    max-width: 100%;
  }

  .features .feature-list li {
    justify-content: center;
  }

  .faq-item.active .faq-answer-inner,
  .faq-answer-inner {
    padding-bottom: 28px;
  }
}

@media (max-width: 340px) {
  .social-proof .proof-label,
  .social-proof .proof-item:last-child .proof-label {
    bottom: 4px;
  }
}

/* 06.30 honor labels: align caption tops and keep them close to the laurels. */
@media (max-width: 768px) {
  .social-proof .proof-item {
    height: 92px;
  }

  .social-proof .proof-label,
  .social-proof .proof-item:last-child .proof-label {
    top: 54px;
    bottom: auto;
  }
}

@media (max-width: 340px) {
  .social-proof .proof-label,
  .social-proof .proof-item:last-child .proof-label {
    top: 54px;
    bottom: auto;
  }
}

/* 06.30 desktop restore: show review names and bring home blog cards back to the larger three-card treatment. */
.testimonial-author-info .testimonial-author-name {
  display: block;
  width: auto;
  margin: 0;
  padding: 32px 0 0 0;
  border-radius: 0;
  background: transparent;
  color: #344054;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.2;
}

@media (min-width: 769px) {
  .blog-preview-grid {
    max-width: 1060px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    margin: 0 auto 40px;
  }

  .blog-card {
    min-height: 350px;
    border-radius: 12px;
    box-shadow: 0 18px 44px rgba(16, 24, 40, 0.08);
  }

  .blog-card-image {
    height: auto;
    aspect-ratio: 1774 / 887;
  }

  .blog-card-body {
    padding: 18px;
  }

  .blog-card-title {
    font-size: 1rem;
    line-height: 1.35;
    min-height: 2.7em;
  }

  .blog-card-excerpt {
    font-size: 0.8125rem;
    line-height: 1.55;
  }

  .blog-card-tags {
    display: flex;
  }
}

/* 06.30 mobile feature items: keep checklist copy left-aligned under Fast Smarter. */
@media (max-width: 768px) {
  .features .feature-list {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .features .feature-list li {
    justify-content: flex-start;
    text-align: left;
  }

  .features .feature-list li span {
    flex: 1;
    text-align: left;
  }
}

/* 06.30 mobile feature item copy: align each card title and description with its checklist. */
@media (max-width: 768px) {
  .features .feature-content,
  .features .feature-content h3,
  .features .feature-content p {
    text-align: left;
  }

  .features .feature-content p {
    margin-left: 0;
    margin-right: 0;
  }
}

/* 06.30 multilingual layout fixes: keep proof labels, cards, and CTAs aligned. */
.social-proof .proof-label {
  max-width: none;
  overflow-wrap: normal;
  text-align: center;
  white-space: nowrap;
}

.why-choose-grid.value-grid .trust-point {
  display: grid;
  grid-template-rows: 62px 3.2em 1fr;
  align-items: center;
}

.why-choose-grid.value-grid .trust-point h3 {
  display: flex;
  align-self: start;
  align-items: flex-start;
  justify-content: center;
  margin: 0 0 10px;
}

.why-choose-grid.value-grid .trust-point p {
  align-self: start;
  margin: 0;
}

.success-stories .story-card {
  display: flex;
  flex-direction: column;
}

.success-stories .story-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.success-stories .story-tag {
  align-self: flex-start;
  max-width: 100%;
}

.success-stories .story-card-body > p {
  min-height: 6.8em;
}

.success-stories .story-card strong {
  margin-top: 16px;
}

.blog-preview-grid .blog-card-tags {
  display: none !important;
}

.final-store-badges .store-badge {
  min-width: 196px;
  min-height: 56px;
  padding: 8px 20px 8px 14px;
}

.final-store-badges .store-badge img.store-badge-icon {
  width: 34px;
  height: 34px;
}

.final-store-badges .store-badge-text small {
  font-size: 0.5625rem;
}

.final-store-badges .store-badge-text strong {
  font-size: 0.9375rem;
}

@media (max-width: 600px) {
  .social-proof .proof-label {
    max-width: none;
  }

  .why-choose-grid.value-grid .trust-point {
    grid-template-rows: auto;
  }

  .why-choose-grid.value-grid .trust-point h3 {
    min-height: 0;
  }

  .success-stories .story-card-body > p {
    min-height: 0;
  }

  .final-store-badges {
    align-items: center;
    flex-direction: column;
  }

  .final-store-badges .store-badge {
    width: 100%;
    max-width: 220px;
  }
}

/* 07.01 section rhythm: keep vertical spacing consistent between homepage sections. */
:root {
  --home-section-space: clamp(28px, 2.5vw, 36px);
}

.hero {
  padding-bottom: var(--home-section-space);
}

.social-proof,
.why-choose,
.features,
.success-stories,
.testimonials,
.blog,
.faq,
.final-cta {
  padding-top: var(--home-section-space);
  padding-bottom: var(--home-section-space);
}

@media (min-width: 901px) {
  .hero {
    padding-bottom: var(--home-section-space);
  }
}

@media (max-width: 768px) {
  :root {
    --home-section-space: 24px;
  }
}

/* 07.01 honor band: keep the section rhythm, but remove the card's extra inner gutters. */
.social-proof {
  padding-top: var(--home-section-space);
  padding-bottom: var(--home-section-space);
}

.social-proof .container {
  max-width: 1120px;
  padding-left: clamp(16px, 4vw, 24px);
  padding-right: clamp(16px, 4vw, 24px);
}

.social-proof .why-choose-proof {
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
  padding: 0;
}

.social-proof .proof-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: auto;
  min-height: 0;
  gap: 6px;
  grid-template-rows: none;
}

.social-proof .proof-award {
  height: auto;
  min-height: 0;
}

.social-proof .proof-award-content {
  height: auto;
  min-height: 0;
}

.social-proof .proof-label,
.social-proof .proof-item:last-child .proof-label {
  display: block;
  width: 100%;
  align-self: stretch;
  position: static;
  top: auto;
  left: auto;
  bottom: auto;
  max-width: none;
  padding-right: 0;
  margin-top: 0;
  text-align: center;
  transform: none;
}

/* 07.01 honor band: center each stat block inside its laurel pair. */
.social-proof .proof-award {
  align-items: center;
}

.social-proof .proof-award-content,
.social-proof .proof-item:last-child .proof-award-content {
  justify-content: center;
  min-height: 68px;
  padding-top: 0;
}

@media (max-width: 600px) {
  .social-proof .proof-award-content,
  .social-proof .proof-item:last-child .proof-award-content {
    height: 66px;
    min-height: 66px;
    gap: 1px;
    padding-top: 0;
  }

  .social-proof .proof-platform-icons,
  .social-proof .proof-rating-stars,
  .social-proof .proof-app-rank {
    position: static;
    margin-top: 0;
    transform: none;
  }

  .social-proof .proof-item:last-child .proof-value {
    transform: none;
  }
}

@media (max-width: 340px) {
  .social-proof .proof-award-content,
  .social-proof .proof-item:last-child .proof-award-content {
    height: 62px;
    min-height: 62px;
  }
}

/* 07.01 hero/proof blend: soften the color cut between hero artwork and honor band. */
:root {
  --home-proof-bg: #F5FBF8;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  z-index: 2;
  height: clamp(96px, 12vw, 160px);
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(245, 251, 248, 0) 0%,
    rgba(245, 251, 248, 0.64) 64%,
    var(--home-proof-bg) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 3;
}

.social-proof {
  background: var(--home-proof-bg);
}

/* 07.01 feature items: remove row padding, keep content centered, and preserve tighter item rhythm. */
.features .feature-block,
.features .feature-block.reverse {
  padding-top: 0;
}

@media (min-width: 1121px) {
  .features .feature-block,
  .features .feature-block.reverse {
    align-items: center;
    margin-bottom: 40px;
    column-gap: clamp(64px, 5vw, 80px);
    row-gap: 24px;
  }

  .features .feature-block.reverse .feature-image {
    justify-content: flex-start;
  }

  .features .feature-block:last-child {
    margin-bottom: 0;
  }
}

/* 07.01 hero image edge: fade the photo into the proof-section background. */
@media (min-width: 901px) {
  .hero-image {
    position: relative;
  }

  .hero-image img {
    position: relative;
    z-index: 1;
    -webkit-mask-image:
      linear-gradient(90deg, transparent 0%, #000 7%, #000 93%, transparent 100%),
      linear-gradient(180deg, #000 0%, #000 70%, rgba(0, 0, 0, 0.76) 84%, transparent 100%);
    mask-image:
      linear-gradient(90deg, transparent 0%, #000 7%, #000 93%, transparent 100%),
      linear-gradient(180deg, #000 0%, #000 70%, rgba(0, 0, 0, 0.76) 84%, transparent 100%);
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .hero-image::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    height: clamp(120px, 16vw, 220px);
    pointer-events: none;
    background: linear-gradient(
      180deg,
      rgba(245, 251, 248, 0) 0%,
      rgba(245, 251, 248, 0.58) 62%,
      var(--home-proof-bg) 100%
    );
  }
}

/* 07.01 story cards: let photos start at the card edge without top gutter. */
.success-stories .story-card {
  padding-top: 0;
}

/* 07.01 final CTA: use a focused card so the page no longer feels split by a full-width banner. */
.final-cta {
  border-top: 0;
  background: #FFFFFF;
}

.final-cta .container {
  max-width: 1120px;
  padding-left: clamp(16px, 4vw, 24px);
  padding-right: clamp(16px, 4vw, 24px);
}

.final-cta-card {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(56px, 7vw, 84px) clamp(24px, 6vw, 72px);
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: clamp(28px, 4vw, 40px);
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.28), transparent 28%),
    radial-gradient(circle at 18% 85%, rgba(8, 115, 86, 0.2), transparent 30%),
    linear-gradient(135deg, #11CFA0 0%, #00C28C 46%, #009E73 100%);
  box-shadow: 0 28px 90px rgba(8, 115, 86, 0.18);
}

.final-cta-card::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.final-cta-card h2,
.final-cta-card p,
.final-cta-card .final-store-badges {
  position: relative;
  z-index: 1;
}

.final-cta-card h2 {
  color: #FFFFFF;
}

.final-cta-card p {
  color: rgba(255, 255, 255, 0.88);
}

/* 07.01 tail background: keep CTA surroundings and footer on the same surface as FAQ. */
:root {
  --home-tail-bg: #F7FBF9;
}

.final-cta,
.footer {
  background: var(--home-tail-bg);
}

.footer {
  border-top: 0;
}

@media (max-width: 600px) {
  .final-cta-card {
    padding: 48px 20px;
    border-radius: 28px;
  }
}

/* 07.01 honor band: slightly tighten the hero-to-proof transition while keeping the section bottom rhythm. */
.social-proof {
  padding-top: var(--home-section-space);
}

@media (max-width: 768px) {
  .social-proof {
    padding-top: var(--home-section-space);
  }
}

/* 07.01 mobile section cleanup: remove divider lines and tighten section rhythm. */
@media (max-width: 768px) {
  :root {
    --home-section-space: 24px;
  }

  .social-proof,
  .why-choose,
  .features,
  .success-stories,
  .testimonials,
  .blog,
  .faq,
  .final-cta {
    border-top: 0;
    border-bottom: 0;
  }

  .hero {
    padding-bottom: var(--home-section-space);
  }

  .social-proof {
    padding-top: var(--home-section-space);
    padding-bottom: var(--home-section-space);
  }
}

/* 07.01 mobile visual polish: tighter feature items, smaller story dots, softer hero image edge. */
@media (max-width: 768px) {
  .hero-image {
    position: relative;
    overflow: visible;
  }

  .hero-image::after {
    content: "";
    position: absolute;
    right: -16px;
    bottom: -1px;
    left: -16px;
    z-index: 2;
    height: 38%;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(245, 251, 248, 0) 0%, var(--home-proof-bg) 92%);
  }

  .hero-image img {
    position: relative;
    z-index: 1;
    -webkit-mask-image:
      linear-gradient(90deg, transparent 0%, #000 5%, #000 95%, transparent 100%),
      linear-gradient(180deg, transparent 0%, #000 5%, #000 84%, transparent 100%);
    mask-image:
      linear-gradient(90deg, transparent 0%, #000 5%, #000 95%, transparent 100%),
      linear-gradient(180deg, transparent 0%, #000 5%, #000 84%, transparent 100%);
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }

  .features .feature-block,
  .features .feature-block.reverse {
    gap: 12px;
    padding-top: 0;
    margin-bottom: 12px;
  }

  .features .feature-block:last-child {
    margin-bottom: 0;
  }
}

@media (max-width: 600px) {
  .stories-page-control {
    gap: 10px;
    margin-top: 16px;
  }

  .stories-page-dot,
  .stories-page-dot.active {
    width: 8px;
    height: 8px;
    min-width: 8px;
    min-height: 8px;
    padding: 0;
    border: 0;
    border-radius: 50%;
  }

  .stories-page-dot.active {
    width: 10px;
    height: 10px;
    min-width: 10px;
    min-height: 10px;
  }
}
