/*
  Family Fit Club - Styles
  Design System: Natural, Minimalist, CRO-Optimized
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
  --color-primary: #2F3E30;
  --color-primary-light: #607261;
  --color-primary-hover: #1F2A20;
  --color-sand: #F6F4F0;
  --color-white: #FFFFFF;
  --color-dark: #1C221D;
  --color-text-muted: #555E56;
  --color-border: #E5E2DC;
  --color-attention: #B05B3B; /* Soft terracotta for urgency */
  --font-title: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 4px 8px rgba(47, 62, 48, 0.03);
  --shadow-md: 0 12px 24px rgba(47, 62, 48, 0.06);
  --shadow-lg: 0 24px 48px rgba(47, 62, 48, 0.1);
}

/* Base resets & global styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-family: var(--font-body);
  color: var(--color-dark);
  background-color: var(--color-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body {
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-title);
  color: var(--color-dark);
  line-height: 1.25;
}

p {
  color: var(--color-text-muted);
  font-size: 1.05rem;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-smooth);
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.875rem 2rem;
  border-radius: 9999px;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: 2px solid transparent;
  text-align: center;
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.btn-primary:hover {
  background-color: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(47, 62, 48, 0.15);
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn-secondary:hover {
  background-color: var(--color-sand);
  color: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
  transform: translateY(-2px);
}

.btn-large {
  padding: 1.125rem 2.5rem;
  font-size: 1.125rem;
  letter-spacing: 0.02em;
}

/* Header & Nav */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  height: 80px;
  display: flex;
  align-items: center;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logo {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-dot {
  width: 8px;
  height: 8px;
  background-color: var(--color-primary-light);
  border-radius: 50%;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.25rem;
  list-style: none;
}

.nav-link {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

.nav-link:hover {
  color: var(--color-primary);
}

/* Hamburger menu for mobile */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  background: none;
  border: none;
  z-index: 150;
}

.hamburger span {
  width: 25px;
  height: 2px;
  background-color: var(--color-primary);
  transition: var(--transition-smooth);
}

/* Section general styles */
.section {
  padding: 6.5rem 0;
}

.section-alt {
  background-color: var(--color-sand);
}

.section-title-wrapper {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.ceja {
  display: inline-block;
  font-family: var(--font-title);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-primary-light);
  margin-bottom: 1rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.section-subtitle {
  font-size: 1.15rem;
  color: var(--color-text-muted);
}

/* BLOQUE 1: HERO SECTION */
.hero {
  padding: 4.5rem 0 6.5rem 0;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.hero-h1 {
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.hero-h1 span.highlight {
  color: var(--color-primary-light);
}

.hero-h2 {
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-text-muted);
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
  flex-wrap: wrap;
}

.hero-benefits-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 1.5rem;
  border-top: 1px solid var(--color-border);
  padding-top: 2rem;
}

.hero-benefit-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-benefit-icon {
  width: 24px;
  height: 24px;
  color: var(--color-primary-light);
  flex-shrink: 0;
}

.hero-benefit-text {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-dark);
}

.hero-image-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 1 / 1;
}

.hero-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.hero-image-wrapper:hover img {
  transform: scale(1.03);
}

/* BLOQUE 2: EL DOLOR / AGITACIÓN */
.pain-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
}

.pain-image-wrapper {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 1 / 1;
}

.pain-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pain-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.pain-title {
  font-size: 2.75rem;
  font-weight: 700;
}

.pain-text {
  font-size: 1.1rem;
  line-height: 1.8;
}

/* BLOQUE 3: LA SOLUCIÓN */
.solution-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

.card-solution {
  background-color: var(--color-white);
  border-radius: 20px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.card-solution:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-primary-light);
}

.card-image-box {
  height: 280px;
  overflow: hidden;
}

.card-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.card-solution:hover .card-image-box img {
  transform: scale(1.05);
}

.card-body {
  padding: 2.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.card-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-primary);
}

.card-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.card-bullets li {
  display: flex;
  gap: 0.85rem;
  font-size: 1.05rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.card-bullets svg {
  width: 20px;
  height: 20px;
  color: var(--color-primary-light);
  flex-shrink: 0;
  margin-top: 2px;
}

/* BLOQUE 4: PARA QUIÉN ES & BENEFICIOS RECOBRADOS */
.profiles-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  margin-bottom: 4.5rem;
}

.profile-card {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  padding: 2.25rem 1.5rem;
  border-radius: 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  transition: var(--transition-smooth);
}

.profile-card:hover {
  background-color: var(--color-sand);
  transform: translateY(-4px);
  border-color: var(--color-primary-light);
}

.profile-icon {
  width: 48px;
  height: 48px;
  background-color: var(--color-sand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  transition: var(--transition-smooth);
}

.profile-card:hover .profile-icon {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.profile-text {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-dark);
  line-height: 1.5;
}

/* Banner de Beneficios Físicos */
.benefits-banner {
  background-color: var(--color-primary);
  color: var(--color-white);
  border-radius: 24px;
  padding: 4.5rem 3rem;
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.banner-title {
  color: var(--color-white);
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 3.5rem;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
}

.benefit-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.benefit-check-circle {
  width: 32px;
  height: 32px;
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
}

.benefit-desc {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.4;
}

/* BLOQUE 5: CÓMO FUNCIONA */
.process-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 5rem;
  align-items: center;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.step-item {
  display: flex;
  gap: 1.5rem;
}

.step-number {
  font-family: var(--font-title);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-primary-light);
  line-height: 1;
  opacity: 0.4;
}

.step-details {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.step-title-box {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.step-icon {
  width: 20px;
  height: 20px;
  color: var(--color-primary);
}

.step-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-dark);
}

.step-text {
  font-size: 1rem;
  color: var(--color-text-muted);
}

.process-image-wrapper {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 1 / 1;
}

.process-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* BLOQUE 6: LA OFERTA IRRESISTIBLE */
.offer-box {
  max-width: 800px;
  margin: 0 auto;
  background-color: var(--color-white);
  border-radius: 28px;
  border: 2px solid var(--color-primary-light);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  position: relative;
  transition: var(--transition-smooth);
}

.offer-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background-color: var(--color-attention);
}

.scarcity-tag {
  background-color: rgba(176, 91, 59, 0.1);
  color: var(--color-attention);
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-align: center;
  padding: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-bottom: 1px solid rgba(176, 91, 59, 0.15);
}

.offer-body {
  padding: 3.5rem 3rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.offer-title {
  font-size: 2.5rem;
  font-weight: 800;
}

.offer-tier-title {
  font-family: var(--font-title);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--color-primary-light);
  text-transform: uppercase;
}

.price-container {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 1.25rem;
  margin: 0.5rem 0;
}

.price-main {
  font-family: var(--font-title);
  font-size: 4.5rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
}

.price-strike {
  font-family: var(--font-title);
  font-size: 1.75rem;
  color: var(--color-text-muted);
  text-decoration: line-through;
  opacity: 0.65;
}

.offer-bullets {
  list-style: none;
  width: 100%;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: left;
  margin: 1rem 0;
}

.offer-bullets li {
  display: flex;
  gap: 0.85rem;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--color-dark);
}

.offer-bullets svg {
  width: 22px;
  height: 22px;
  color: var(--color-primary-light);
  flex-shrink: 0;
}

.offer-bullets li.strong-highlight {
  font-weight: 700;
}

.offer-bullets li.strong-highlight svg {
  color: var(--color-attention);
}

.offer-cta {
  width: 100%;
  max-width: 500px;
}

/* BLOQUE 7: PRUEBA SOCIAL / TESTIMONIAL */
.carousel-wrapper {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-slide {
  min-width: 100%;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2rem;
}

.test-text {
  font-family: var(--font-title);
  font-size: 1.45rem;
  font-weight: 500;
  line-height: 1.7;
  color: var(--color-primary);
  font-style: italic;
}

.test-author-box {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-align: left;
}

.test-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--color-primary-light);
  background-color: var(--color-sand);
}

.test-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.test-author-name {
  font-family: var(--font-title);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-dark);
}

.test-author-desc {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

/* Carousel dots */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--color-border);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.dot.active {
  background-color: var(--color-primary);
  transform: scale(1.2);
}

/* BLOQUE 8: FAQ ACCORDION */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.faq-item {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-item:hover {
  border-color: var(--color-primary-light);
}

.faq-trigger {
  width: 100%;
  padding: 1.75rem 2rem;
  background: none;
  border: none;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question {
  font-family: var(--font-title);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-dark);
}

.faq-chevron {
  width: 24px;
  height: 24px;
  color: var(--color-primary-light);
  transition: transform 0.3s ease;
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-inner {
  padding: 0 2rem 1.75rem 2rem;
  font-size: 1.05rem;
  color: var(--color-text-muted);
  border-top: 1px solid transparent;
}

/* Active FAQ states */
.faq-item.active {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
}

.faq-item.active .faq-content {
  max-height: 250px; /* Safe upper bound */
}

/* BLOQUE 9: FOOTER & FORMULARIO */
.footer {
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: 6.5rem 0 3rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.footer-info {
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
}

.footer-h2 {
  color: var(--color-white);
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1.25;
}

.footer-logo {
  color: var(--color-white);
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 1.5rem;
}

.footer-logo span {
  color: var(--color-sand);
}

.footer-copyright {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 2rem;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--color-white);
  text-decoration: underline;
}

/* Form Container */
.form-box {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 3rem;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(5px);
}

.form-group {
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  font-family: var(--font-title);
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.form-input, .form-select {
  width: 100%;
  padding: 1rem 1.25rem;
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--transition-smooth);
}

.form-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.form-input:focus, .form-select:focus {
  outline: none;
  border-color: var(--color-white);
  background-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.05);
}

.form-select option {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.form-submit {
  width: 100%;
  background-color: var(--color-white);
  color: var(--color-primary);
  border: none;
  font-size: 1.05rem;
  margin-top: 1rem;
}

.form-submit:hover {
  background-color: var(--color-sand);
  color: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.15);
}

/* Success Message styles (loaded dynamically) */
.form-success-box {
  text-align: center;
  padding: 2rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.success-icon {
  width: 64px;
  height: 64px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-sand);
}

.success-h3 {
  color: var(--color-white);
  font-size: 1.5rem;
  font-weight: 700;
}

.success-text {
  color: rgba(255, 255, 255, 0.8);
}

/* RESPONSIVE DESIGN (MOBILE-FIRST) */

@media (max-width: 1024px) {
  .section {
    padding: 5rem 0;
  }
  .hero-h1 {
    font-size: 2.75rem;
  }
  .hero-grid, .pain-grid, .process-grid, .footer-grid {
    gap: 3rem;
  }
  .profiles-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .header {
    height: 70px;
  }
  .nav-menu {
    display: none; /* JS toggled */
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: var(--color-white);
    flex-direction: column;
    padding: 2rem 1.5rem;
    gap: 1.5rem;
    box-shadow: var(--shadow-md);
    border-top: 1px solid var(--color-border);
  }
  .nav-menu.open {
    display: flex;
  }
  .nav-menu-btn {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  
  /* Mobile layouts: single column */
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .hero-image-wrapper {
    order: -1; /* Image first on mobile */
    max-width: 500px;
    margin: 0 auto;
  }
  .hero-content {
    text-align: center;
  }
  .hero-ctas {
    justify-content: center;
  }
  .hero-benefits-row {
    grid-template-columns: 1fr;
    text-align: left;
  }
  
  .pain-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .pain-image-wrapper {
    max-width: 500px;
    margin: 0 auto;
  }
  
  .solution-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .card-solution {
    max-width: 500px;
    margin: 0 auto;
  }
  
  .profiles-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .benefits-banner {
    padding: 3rem 1.5rem;
  }
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .process-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .process-image-wrapper {
    max-width: 500px;
    margin: 0 auto;
  }
  
  .offer-body {
    padding: 2.5rem 1.5rem;
  }
  .price-main {
    font-size: 3.5rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .form-box {
    padding: 2rem;
  }
}

@media (max-width: 480px) {
  .hero-h1 {
    font-size: 2.25rem;
  }
  .section-title {
    font-size: 2rem;
  }
  .pain-title {
    font-size: 2rem;
  }
  .profiles-grid {
    grid-template-columns: 1fr;
  }
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  .test-text {
    font-size: 1.25rem;
  }
}
