/* ========================================
   MOBILE-FIRST CSS APPROACH
   Base styles are for mobile, then we enhance for larger screens
   ======================================== */

/* ========================================
   CSS Variables - Purple Color Scheme
   ======================================== */
:root {
  --primary-purple: #7c3aed;
  --secondary-purple: #a855f7;
  --dark-purple: #5b21b6;
  --light-purple: #c4b5fd;
  --extra-light-purple: #f3f0ff;
  --accent-purple: #9333ea;

  --text-dark: #1f2937;
  --text-light: #6b7280;
  --bg-white: #ffffff;
  --bg-light: #f9fafb;

  --shadow-sm: 0 1px 2px 0 rgba(124, 58, 237, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(124, 58, 237, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(124, 58, 237, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(124, 58, 237, 0.1);

  --transition: all 0.3s ease;
  --border-radius: 12px;

  --max-width: 1200px;
}

/* ========================================
   Reset & Base Styles (Mobile First)
   ======================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px; /* Base font size for mobile */
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--bg-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

ul {
  list-style: none;
}

/* ========================================
   Scroll Reveal Animation
   ======================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px); /* Smaller movement on mobile */
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger animation for multiple reveals */
.reveal:nth-child(1) {
  transition-delay: 0.1s;
}
.reveal:nth-child(2) {
  transition-delay: 0.2s;
}
.reveal:nth-child(3) {
  transition-delay: 0.3s;
}
.reveal:nth-child(4) {
  transition-delay: 0.4s;
}

/* ========================================
   Header & Navigation (Mobile First)
   ======================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  z-index: 1000;
  transition: var(--transition);
}

.nav {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0.5rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-size: 1.25rem;
  font-weight: 700;
  background: linear-gradient(
    135deg,
    var(--primary-purple),
    var(--secondary-purple)
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Mobile menu - hidden by default */
.nav-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: white;
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  padding: 1rem 0;
  box-shadow: var(--shadow-lg);
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.nav-menu.active {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}

.nav-menu li {
  padding: 0.5rem 1rem;
  display: flex;
  align-items: center;
}

.nav-menu a {
  font-weight: 500;
  color: var(--primary-purple);
  display: block;
}

.nav-menu a.btn {
  color: white;
}

.nav-menu a.btn::after {
  display: none;
}

.nav-menu a.btn {
  margin: 0;
  padding: 0.75rem 1.5rem;
}

.nav-menu a.btn:hover {
  transform: none;
}

.nav-menu a.btn:active {
  transform: scale(0.98);
}

/* Hamburger toggle - visible on mobile */
.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 10;
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  background: var(--primary-purple);
  border-radius: 3px;
  transition: var(--transition);
}

/* ========================================
   Buttons (Mobile First)
   ======================================== */
.btn {
  display: inline-block;
  padding: 0.875rem 1.75rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  font-size: 1rem;
  width: 100%; /* Full width on mobile */
  max-width: 300px;
}

.btn-primary {
  background: linear-gradient(
    135deg,
    var(--primary-purple),
    var(--secondary-purple)
  );
  color: white;
  box-shadow: var(--shadow-lg);
}

.btn-primary:active {
  transform: scale(0.98);
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-whatsapp svg {
  flex-shrink: 0;
}

/* ========================================
   Hero Section (Mobile First)
   ======================================== */
.hero {
  min-height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: linear-gradient(
    135deg,
    var(--extra-light-purple) 0%,
    var(--bg-white) 100%
  );
  padding: 0 2rem 3rem;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at top right,
    rgba(168, 85, 247, 0.15) 0%,
    transparent 60%
  );
  pointer-events: none;
}

.hero-content {
  max-width: 90%;
  width: 100%;
  z-index: 2;
  text-align: center;
}

.hero-title {
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 1rem;
  background: linear-gradient(
    135deg,
    var(--dark-purple),
    var(--primary-purple)
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  line-height: 1.6;
}

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

/* Hero image hidden on mobile */
.hero-image {
  display: none;
}

/* ========================================
   Container & Sections (Mobile First)
   ======================================== */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 2.5rem 0;
}

.section-title {
  font-size: 1.75rem;
  text-align: center;
  margin-bottom: 2rem;
  color: var(--dark-purple);
  line-height: 1.3;
}

/* ========================================
   TRG About Section (Mobile First)
   ======================================== */
.section-trg {
  background: var(--bg-white);
}

.trg-intro {
  max-width: 100%;
  margin: 0 auto 3rem;
  text-align: center;
  font-size: 1rem;
  color: var(--text-light);
}

.trg-intro p {
  margin-bottom: 1rem;
}

.trg-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.feature-card {
  background: var(--bg-white);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: var(--transition);
  border: 2px solid transparent;
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  color: var(--dark-purple);
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.feature-card p {
  color: var(--text-light);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* ========================================
   How It Works Section (Mobile First)
   ======================================== */
.section-how {
  background: linear-gradient(
    135deg,
    var(--extra-light-purple) 0%,
    var(--bg-white) 100%
  );
}

.how-content {
  display: grid;
  gap: 2.5rem;
  max-width: 100%;
}

.how-item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
}

.how-number {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: linear-gradient(
    135deg,
    var(--primary-purple),
    var(--secondary-purple)
  );
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
}

.how-item h3 {
  color: var(--dark-purple);
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}

.how-item p {
  color: var(--text-light);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* ========================================
   Benefits Section (Mobile First)
   ======================================== */
.section-benefits {
  background: var(--bg-white);
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.benefit-card {
  background: linear-gradient(
    135deg,
    var(--extra-light-purple) 0%,
    var(--bg-white) 100%
  );
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  text-align: center;
}

.benefit-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.benefit-card h3 {
  color: var(--dark-purple);
  margin-bottom: 1rem;
  font-size: 1.15rem;
}

.benefit-card p {
  color: var(--text-light);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* ========================================
   Therapist Section (Mobile First)
   ======================================== */
.section-therapist {
  background: linear-gradient(
    135deg,
    var(--extra-light-purple) 0%,
    var(--bg-white) 100%
  );
}

.therapist-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.therapist-image {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  max-width: 400px;
  margin: 0 auto;
  width: 100%;
}

.therapist-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.therapist-info h3 {
  font-size: 1.75rem;
  color: var(--dark-purple);
  margin-bottom: 0.5rem;
}

.therapist-title {
  font-size: 1.1rem;
  color: var(--primary-purple);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.therapist-bio p {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
}

.therapist-bio ul {
  list-style: disc;
  margin-left: 1.5rem;
  margin-bottom: 1.25rem;
}

.therapist-bio li {
  color: var(--text-light);
  line-height: 1.7;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.therapist-bio .therapist-title + ul,
.therapist-bio .therapist-title + p {
  margin-top: 0 !important;
}

.therapist-bio .therapist-title {
  margin-bottom: 0.3rem !important;
}

/* ========================================
   Testimonials Section (Mobile First)
   ======================================== */
.section-testimonials {
  background: linear-gradient(
    135deg,
    var(--extra-light-purple) 0%,
    var(--bg-white) 100%
  );
}

.testimonials-carousel {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
}

.carousel-container {
  overflow: hidden;
  border-radius: var(--border-radius);
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.testimonial-card {
  min-width: 100%;
  background: var(--bg-white);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  display: none;
  flex-direction: column;
  gap: 1.5rem;
}

.testimonial-card.active {
  display: flex;
}

.testimonial-content {
  flex: 1;
}

.testimonial-text {
  color: var(--text-light);
  line-height: 1.8;
  font-size: 1rem;
  font-style: italic;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.testimonial-text.expanded {
  -webkit-line-clamp: unset;
  display: block;
}

.read-more-btn {
  background: none;
  border: none;
  color: var(--primary-purple);
  font-weight: 600;
  cursor: pointer;
  padding: 0.5rem 0;
  font-size: 0.95rem;
  transition: var(--transition);
  font-family: inherit;
}

.read-more-btn:hover {
  color: var(--dark-purple);
  text-decoration: underline;
}

.testimonial-author {
  text-align: right;
  color: var(--dark-purple);
  font-size: 1rem;
  padding-top: 1rem;
  border-top: 2px solid var(--light-purple);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--bg-white);
  border: 2px solid var(--primary-purple);
  color: var(--primary-purple);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  box-shadow: var(--shadow-md);
}

.carousel-btn:hover {
  background: var(--primary-purple);
  color: var(--bg-white);
  transform: translateY(-50%) scale(1.1);
}

.carousel-btn-prev {
  left: 0;
}

.carousel-btn-next {
  right: 0;
}

.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--light-purple);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}

.indicator.active {
  background: var(--primary-purple);
  transform: scale(1.2);
}

.indicator:hover {
  background: var(--secondary-purple);
}

/* ========================================
   FAQ Section (Mobile First)
   ======================================== */
.section-faq {
  background: var(--bg-white);
}

.faq-intro {
  text-align: center;
  max-width: 100%;
  margin: 0 auto 0.5rem;
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}

.faq-container {
  max-width: 100%;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-white);
  border: 2px solid var(--light-purple);
  border-radius: var(--border-radius);
  margin-bottom: 1rem;
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
}

.faq-question {
  width: 100%;
  background: linear-gradient(
    135deg,
    var(--extra-light-purple) 0%,
    var(--bg-white) 100%
  );
  border: none;
  padding: 1.25rem;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark-purple);
  transition: var(--transition);
  font-family: inherit;
}

.faq-question:active {
  background: linear-gradient(
    135deg,
    var(--light-purple) 0%,
    var(--extra-light-purple) 100%
  );
}

.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--primary-purple);
  transition: var(--transition);
}

.faq-item.expanded .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 1.25rem;
}

.faq-item.expanded .faq-answer {
  max-height: 1000px;
  padding: 0 1.25rem 1.25rem;
}

.faq-answer p {
  color: var(--text-light);
  line-height: 1.7;
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

/* ========================================
   Schedule Section (Mobile First)
   ======================================== */
.section-schedule {
  background: var(--bg-white);
}

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

.schedule-intro {
  text-align: center;
  max-width: 100%;
  margin: 0 auto 2rem;
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.7;
}

.calendly-container {
  background: var(--bg-white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  padding: 1rem;
}

/* ========================================
   WhatsApp Floating Button (Mobile First)
   ======================================== */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-xl);
  z-index: 999;
  transition: var(--transition);
  color: white;
}

.whatsapp-float:active {
  transform: scale(0.95);
}

.whatsapp-float svg {
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

/* ========================================
   Footer (Mobile First)
   ======================================== */
.footer {
  background: linear-gradient(
    135deg,
    var(--dark-purple),
    var(--primary-purple)
  );
  color: white;
  padding: 3rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  font-size: 1.15rem;
  margin-bottom: 1rem;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  font-size: 0.95rem;
}

.footer-section ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.85);
  transition: var(--transition);
  font-size: 0.95rem;
}

.footer-section a:active {
  color: white;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
}

/* Footer WhatsApp Button Styling */
.footer-section .btn-primary.btn-whatsapp {
  background: white !important;
  background-image: none !important;
  background-color: white !important;
  color: var(--primary-purple) !important;
  border: 2px solid white !important;
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: none !important;
}

.footer-section .btn-primary.btn-whatsapp:hover,
.footer-section .btn-primary.btn-whatsapp:active,
.footer-section .btn-primary.btn-whatsapp:focus {
  background: white !important;
  background-image: none !important;
  background-color: white !important;
  color: var(--primary-purple) !important;
  border: 2px solid white !important;
  transform: none !important;
  box-shadow: none !important;
}

/* Blog CTA WhatsApp Button Styling */
.blog-cta-buttons .btn-primary.btn-whatsapp {
  background: white !important;
  background-image: none !important;
  background-color: white !important;
  color: var(--primary-purple) !important;
  border: 2px solid var(--primary-purple) !important;
  margin-top: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: none !important;
}

.blog-cta-buttons .btn-primary.btn-whatsapp:hover,
.blog-cta-buttons .btn-primary.btn-whatsapp:active,
.blog-cta-buttons .btn-primary.btn-whatsapp:focus {
  background: white !important;
  background-image: none !important;
  background-color: white !important;
  color: var(--primary-purple) !important;
  border: 2px solid var(--primary-purple) !important;
  transform: none !important;
  box-shadow: none !important;
}

/* ========================================
   TABLET BREAKPOINT (min-width: 481px)
   Enhance for tablets
   ======================================== */
@media (min-width: 481px) {
  html {
    font-size: 17px;
  }

  .nav {
    padding: 0.75rem 1.5rem;
  }

  .nav-logo {
    font-size: 1.35rem;
  }

  .hero {
    min-height: 70vh;
    padding: 0 2rem 3rem;
  }

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

  .hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 1.75rem;
  }

  .hero-buttons {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }

  .btn {
    width: auto;
    padding: 1rem 2rem;
  }

  .section {
    padding: 3rem 0;
  }

  .section-title {
    font-size: 2rem;
    margin-bottom: 2.5rem;
  }

  .container {
    padding: 0 2rem;
  }

  .trg-features {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
  }

  .benefits-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
  }

  .feature-card,
  .benefit-card {
    padding: 2.25rem;
  }

  .calendly-container {
    padding: 1.5rem;
  }

  .footer-content {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2.5rem;
  }
}

/* ========================================
   DESKTOP BREAKPOINT (min-width: 769px)
   Enhance for desktops
   ======================================== */
@media (min-width: 769px) {
  html {
    font-size: 18px;
  }

  .nav {
    padding: 0.75rem 2rem;
  }

  .nav-logo {
    font-size: 1.5rem;
  }

  /* Desktop navigation - horizontal */
  .nav-menu {
    position: static;
    flex-direction: row;
    gap: 2rem;
    background: transparent;
    box-shadow: none;
    transform: none;
    opacity: 1;
    pointer-events: all;
    padding: 0;
    width: auto;
  }

  .nav-menu li {
    padding: 0;
    display: flex;
    align-items: center;
  }

  .nav-menu a.btn {
    margin: 0;
  }

  .nav-menu a {
    position: relative;
  }

  .nav-menu a::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-purple);
    transition: width 0.3s ease;
  }

  .nav-menu a:hover::after {
    width: 100%;
  }

  /* Hide hamburger on desktop */
  .nav-toggle {
    display: none;
  }

  .hero {
    min-height: 75vh;
    padding: 0 2rem 3rem;
  }

  .hero-content {
    max-width: 900px;
    text-align: center;
  }

  .hero-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.75;
  }

  /* Show hero image on desktop */
  .hero-image {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    z-index: 1;
  }

  .hero-gradient {
    width: 100%;
    height: 100%;
    background: linear-gradient(
      135deg,
      transparent 0%,
      rgba(124, 58, 237, 0.05) 100%
    );
  }

  .hero::before {
    width: 50%;
  }

  .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
  }

  .nav-menu .btn-primary:hover {
    transform: none;
  }

  .section {
    padding: 4rem 0;
  }

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

  .trg-intro {
    max-width: 800px;
    font-size: 1.1rem;
    margin-bottom: 4rem;
  }

  .trg-features {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
  }

  .feature-card {
    padding: 2.5rem;
  }

  .feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--light-purple);
  }

  .feature-card h3 {
    font-size: 1.5rem;
  }

  .feature-card p,
  .benefit-card p,
  .how-item p,
  .therapist-bio p {
    font-size: 1rem;
    line-height: 1.8;
  }

  .how-content {
    max-width: 900px;
    margin: 0 auto;
    gap: 3rem;
  }

  .how-item {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 2rem;
    align-items: flex-start;
    text-align: left;
  }

  .how-number {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .how-item-content {
    display: flex;
    flex-direction: column;
  }

  .how-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }

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

  .benefit-card {
    padding: 2.5rem;
  }

  .benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
  }

  .benefit-card h3 {
    font-size: 1.25rem;
  }

  .therapist-content {
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
  }

  .therapist-image {
    position: sticky;
    top: 100px;
    margin: 0;
  }

  .therapist-info h3 {
    font-size: 2rem;
  }

  .therapist-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
  }

  .testimonials-carousel {
    max-width: 900px;
    padding: 0 3rem;
  }

  .testimonial-card {
    padding: 2.5rem;
  }

  .testimonial-text {
    font-size: 1.1rem;
  }

  .carousel-btn {
    width: 50px;
    height: 50px;
    font-size: 1.75rem;
  }

  .carousel-btn-prev {
    left: -25px;
  }

  .carousel-btn-next {
    right: -25px;
  }

  .faq-intro {
    max-width: 700px;
    font-size: 1rem;
    margin-bottom: 1rem;
  }

  .faq-container {
    max-width: 900px;
  }

  .faq-question {
    padding: 1.5rem 2rem;
    font-size: 1.1rem;
  }

  .faq-question:hover {
    background: linear-gradient(
      135deg,
      var(--light-purple) 0%,
      var(--extra-light-purple) 100%
    );
  }

  .faq-answer {
    padding: 0 2rem;
  }

  .faq-item.expanded .faq-answer {
    padding: 0 2rem 1.5rem;
  }

  .faq-answer p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
  }

  .schedule-content {
    max-width: 1000px;
  }

  .schedule-intro {
    max-width: 700px;
    font-size: 1.1rem;
    margin-bottom: 3rem;
  }

  .calendly-container {
    padding: 2rem;
  }

  .whatsapp-float {
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
  }

  .whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 25px 30px -5px rgba(37, 211, 102, 0.4);
  }

  .footer {
    padding: 4rem 0 2rem;
  }

  .footer-content {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
  }

  .footer-section p,
  .footer-section a {
    font-size: 1rem;
  }

  .footer-section a:hover {
    color: white;
    padding-left: 5px;
  }
}

/* ========================================
   LARGE DESKTOP (min-width: 1200px)
   Fine-tuning for very large screens
   ======================================== */
@media (min-width: 1200px) {
  .reveal {
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }

  .benefits-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ========================================
   ACCESSIBILITY & PERFORMANCE
   ======================================== */

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  :root {
    --primary-purple: #6d28d9;
    --text-light: #4b5563;
  }
}

/* ========================================
   SEO & Performance Optimizations
   ======================================== */
/* Mobile-first approach improves:
   - Initial load performance on mobile devices
   - Progressive enhancement
   - Better Core Web Vitals scores
   - Improved mobile SEO rankings
*/

/* Prepared for Next.js migration with styled-components */
/* Class naming follows BEM-like structure for easy conversion */
/* All styles are modular and can be easily split into components */
