/* ===== CSS VARIABLES ===== */
:root {
  /* Landing Page Colors */
  --primary-teal: #6B9080;
  --secondary-sage: #A4C3B2;
  --bg-cream: #FDF8F5;
  --cta-coral: #E07A5F;
  --text-charcoal: #2D3436;
  --navy-blue: #264653;
  --white: #FFFFFF;
}

/* ===== SITE HEADER ===== */
.site-header {
  background: var(--white);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding: 0 20px;
  position: relative;
  z-index: 100;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.header-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: opacity 0.2s;
}

.header-logo:hover {
  opacity: 0.8;
}

.header-logo img {
  height: 50px;
  width: auto;
}

/* Text fallback for logo */
.header-logo-text {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy-blue);
  text-decoration: none;
}

.header-nav {
  display: none;
  gap: 24px;
  align-items: center;
}

.header-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-charcoal);
  text-decoration: none;
  transition: color 0.2s;
}

.header-nav a:hover {
  color: var(--primary-teal);
}

.header-nav .nav-login {
  color: var(--primary-teal);
}

.header-nav .nav-divider {
  width: 1px;
  height: 20px;
  background: rgba(0, 0, 0, 0.1);
}

/* Mobile menu button */
.mobile-menu-btn {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-charcoal);
  transition: transform 0.2s, opacity 0.2s;
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 16px 20px;
}

.mobile-menu.active {
  display: block;
}

.mobile-menu a {
  display: block;
  padding: 12px 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-charcoal);
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.mobile-menu a:last-child {
  border-bottom: none;
}

.mobile-menu a:hover {
  color: var(--primary-teal);
}

.mobile-menu .nav-login {
  color: var(--primary-teal);
}

/* Desktop header */
@media (min-width: 768px) {
  .header-nav {
    display: flex;
  }

  .mobile-menu-btn {
    display: none;
  }

  .mobile-menu {
    display: none !important;
  }

  .header-logo img {
    height: 55px;
  }
}

/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html, body {
  height: 100%;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg-cream);
  min-height: 100vh;
  color: var(--text-charcoal);
  line-height: 1.5;
}

/* ===== LANDING PAGE ===== */
.landing-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--bg-cream);
}

/* Credential Bar */
.credential-bar {
  background: var(--navy-blue);
  color: var(--white);
  text-align: center;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
}

/* Hero Section */
.hero-section {
  background: var(--bg-cream);
  padding: 40px 20px 48px;
}

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

.hero-image-wrapper {
  margin-bottom: 32px;
}

.hero-image {
  width: 100%;
  border-radius: 16px;
  aspect-ratio: 4 / 3;
  max-height: 300px;
  object-fit: cover;
  display: block;
}

.hero-content h1 {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-charcoal);
  margin-bottom: 16px;
  max-width: 600px;
}

.hero-subheadline {
  font-size: 18px;
  color: rgba(45, 52, 54, 0.8);
  margin-bottom: 24px;
  max-width: 500px;
  line-height: 1.5;
}

/* CTA Buttons */
.cta-button {
  display: block;
  width: 100%;
  padding: 16px 32px;
  background: var(--cta-coral);
  color: var(--white);
  font-size: 18px;
  font-weight: 600;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 14px rgba(224, 122, 95, 0.4);
  font-family: inherit;
  min-height: 56px;
  text-decoration: none;
  text-align: center;
}

.cta-button:hover {
  background: #c9694f;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(224, 122, 95, 0.5);
}

.cta-button:active {
  transform: translateY(0);
}

.primary-cta {
  margin-bottom: 16px;
}

.trust-signal {
  color: var(--primary-teal);
  font-size: 14px;
  font-weight: 500;
  text-align: center;
}

/* Validation Section */
.validation-section {
  padding: 24px 20px 48px;
}

.validation-card {
  background: var(--white);
  border-left: 4px solid var(--secondary-sage);
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  max-width: 600px;
  margin: 0 auto;
}

.validation-now {
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.6;
}

.validation-now strong {
  color: var(--cta-coral);
}

.validation-future {
  font-size: 16px;
  line-height: 1.6;
}

.validation-future strong {
  color: var(--primary-teal);
}

/* Testimonials Section */
.testimonials-section {
  background: var(--bg-cream);
  padding: 48px 0;
}

.section-header {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-charcoal);
  text-align: center;
  margin-bottom: 32px;
  padding: 0 20px;
}

.testimonials-container {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 0 20px 20px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.testimonials-container::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  flex: 0 0 280px;
  background: var(--white);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  scroll-snap-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.testimonial-photo {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 3px solid var(--primary-teal);
  object-fit: cover;
  margin-bottom: 16px;
}

.testimonial-quote-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  font-weight: 700;
  color: var(--primary-teal);
  margin-bottom: 16px;
  font-family: Georgia, serif;
}

.testimonial-quote {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-charcoal);
  font-style: italic;
  margin-bottom: 16px;
  flex-grow: 1;
}

.testimonial-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-charcoal);
  margin-bottom: 8px;
}

.testimonial-stars {
  color: #F4A261;
  font-size: 14px;
  letter-spacing: 2px;
}

.testimonial-disclaimer {
  text-align: center;
  font-size: 12px;
  color: rgba(45, 52, 54, 0.6);
  padding: 0 20px;
  margin-top: 8px;
}

/* Credibility Section */
.credibility-section {
  background: var(--white);
  padding: 48px 24px;
}

.credibility-container {
  max-width: 600px;
  margin: 0 auto;
}

.credibility-intro {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-charcoal);
  margin-bottom: 16px;
}

.credibility-text {
  font-size: 17px;
  color: rgba(45, 52, 54, 0.85);
  line-height: 1.5;
  margin-bottom: 32px;
  max-width: 600px;
}

.credibility-list {
  list-style: none;
  margin-bottom: 32px;
}

.credibility-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  margin-bottom: 12px;
  color: var(--text-charcoal);
}

.credibility-list .check-icon {
  color: var(--primary-teal);
  font-weight: 600;
  flex-shrink: 0;
}

.secondary-cta {
  max-width: 320px;
  margin: 0 auto;
}

/* Footer Container */
.site-footer {
  padding: 40px 0;
  background-color: #264653;  /* Dark teal/navy */
  color: #FFFFFF;
  margin-top: auto;
}

.site-footer .container {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Disclaimer Text */
.site-footer .footer-disclaimer {
  margin-bottom: 1.5rem;
  padding: 0 20px;
}

.site-footer .footer-disclaimer p {
  font-size: 12px;
  line-height: 1.6;
  opacity: 0.7;
  margin: 0;
}

/* Policy Links */
.footer-links {
  text-align: center;
  margin-bottom: 1rem;
}

.footer-links a {
  color: #FFFFFF;
  opacity: 0.8;
  font-size: 14px;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.footer-links a:hover {
  opacity: 1;
}

.footer-links .divider {
  margin: 0 0.75rem;
  opacity: 0.5;
}

/* Copyright */
.footer-copyright {
  text-align: center;
  font-size: 12px;
  opacity: 0.6;
  margin: 0;
}

/* Sticky CTA (Mobile) */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  padding: 12px 16px;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.2s, transform 0.2s;
}

.sticky-cta.visible {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.sticky-cta-button {
  height: 56px;
}

/* Add bottom padding on mobile for sticky CTA */
@media (max-width: 1023px) {
  .site-footer {
    padding-bottom: 100px;
  }
}

/* ===== RESPONSIVE - TABLET ===== */
@media (min-width: 768px) {
  .credential-bar {
    font-size: 14px;
    padding: 12px 24px;
  }

  .hero-section {
    padding: 48px 24px 64px;
  }

  .hero-content h1 {
    font-size: 36px;
  }

  .section-header {
    font-size: 26px;
  }

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

/* ===== RESPONSIVE - DESKTOP ===== */
@media (min-width: 1024px) {
  .hero-section {
    padding: 64px 24px 80px;
  }

  .hero-container {
    display: flex;
    align-items: center;
    gap: 48px;
  }

  .hero-image-wrapper {
    flex: 1;
    order: 2;
    margin-bottom: 0;
  }

  .hero-image {
    max-height: none;
    height: 400px;
  }

  .hero-content {
    flex: 1;
    order: 1;
  }

  .hero-content h1 {
    font-size: 44px;
  }

  .hero-subheadline {
    font-size: 18px;
  }

  .cta-button {
    width: auto;
    max-width: 320px;
  }

  .primary-cta {
    display: inline-block;
  }

  .trust-signal {
    text-align: left;
  }

  .validation-section {
    padding: 48px 24px 64px;
  }

  .testimonials-section {
    padding: 64px 24px;
  }

  .section-header {
    font-size: 28px;
    margin-bottom: 40px;
  }

  .testimonials-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    overflow-x: visible;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0;
  }

  .testimonial-card {
    flex: none;
  }

  .credibility-section {
    padding: 64px 24px 80px;
  }

  .site-footer {
    padding: 50px 0;
  }

  .site-footer .container {
    padding: 0 24px;
  }

  /* Hide sticky CTA on desktop */
  .sticky-cta {
    display: none !important;
  }
}

/* ===== HIDE ELEMENTS ===== */
.hidden {
  display: none !important;
}

/* ===== ABOUT PAGE ===== */
.about-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--bg-cream);
  animation: fadeIn 0.5s ease-out;
}

/* About Hero Section */
.about-hero-section {
  position: relative;
  padding: 80px 20px;
  text-align: center;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.about-hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}

.about-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(107, 144, 128, 0.85) 0%,
    rgba(107, 144, 128, 0.9) 100%
  );
  z-index: 2;
}

.about-hero-container {
  position: relative;
  z-index: 3;
  max-width: 800px;
  margin: 0 auto;
}

.about-hero-section h1 {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 20px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.about-hero-subheadline {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Our Story Section */
.our-story-section {
  background: var(--white);
  padding: 48px 20px;
}

.our-story-container {
  max-width: 720px;
  margin: 0 auto;
}

.our-story-section h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-charcoal);
  margin-bottom: 32px;
  text-align: center;
}

.story-content p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-charcoal);
  margin-bottom: 20px;
}

.story-content strong {
  color: var(--primary-teal);
}

.story-quote {
  font-size: 20px;
  font-style: italic;
  color: var(--primary-teal);
  border-left: 4px solid var(--secondary-sage);
  padding: 16px 24px;
  margin: 32px 0;
  background: var(--bg-cream);
  border-radius: 0 8px 8px 0;
}

.founder-signature {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.founder-photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 4px solid var(--primary-teal);
  object-fit: cover;
}

.story-signature {
  font-size: 18px;
  color: var(--text-charcoal);
  margin: 0;
}

/* Practitioners Section */
.practitioners-section {
  background: var(--bg-cream);
  padding: 48px 20px;
}

.practitioners-container {
  max-width: 1000px;
  margin: 0 auto;
}

.practitioners-section h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-charcoal);
  margin-bottom: 16px;
  text-align: center;
}

.practitioners-intro {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(45, 52, 54, 0.85);
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
}

.practitioners-grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.practitioner-card {
  background: var(--white);
  border-radius: 16px;
  padding: 32px 24px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.practitioner-photo-wrapper {
  text-align: center;
  margin-bottom: 24px;
}

.practitioner-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 4px solid var(--primary-teal);
  object-fit: cover;
}

.practitioner-info {
  text-align: center;
}

.practitioner-name {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-charcoal);
  margin-bottom: 8px;
}

.practitioner-title {
  font-size: 14px;
  font-weight: 500;
  color: var(--primary-teal);
  margin-bottom: 20px;
}

.practitioner-bio {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-charcoal);
  margin-bottom: 16px;
  text-align: left;
}

.practitioner-quote {
  font-size: 15px;
  font-style: italic;
  color: var(--primary-teal);
  border-left: 3px solid var(--secondary-sage);
  padding: 12px 16px;
  margin-top: 20px;
  background: var(--bg-cream);
  border-radius: 0 8px 8px 0;
  text-align: left;
}

/* Approach Section */
.approach-section {
  background: var(--white);
  padding: 48px 20px;
}

.approach-container {
  max-width: 900px;
  margin: 0 auto;
}

.approach-section h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-charcoal);
  margin-bottom: 32px;
  text-align: center;
}

.comparison-table {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.comparison-header {
  display: none;
}

.comparison-row {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.comparison-row:last-child {
  border-bottom: none;
}

.comparison-col {
  padding: 16px 20px;
  font-size: 15px;
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.comparison-col.traditional-col {
  background: #FFF5F5;
  color: var(--text-charcoal);
}

.comparison-col.gha-col {
  background: #F0FAF5;
  color: var(--text-charcoal);
}

.comparison-icon {
  flex-shrink: 0;
  font-weight: 700;
  font-size: 16px;
}

.comparison-icon.negative {
  color: #E07A5F;
}

.comparison-icon.positive {
  color: var(--primary-teal);
}

/* About CTA Section */
.about-cta-section {
  background: var(--primary-teal);
  padding: 48px 20px;
  text-align: center;
}

.about-cta-container {
  max-width: 600px;
  margin: 0 auto;
}

.about-cta-section h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.about-cta-text {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 32px;
}

.about-cta-button {
  max-width: 320px;
  margin: 0 auto 20px;
}

.secondary-link {
  display: block;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  text-decoration: none;
  transition: color 0.2s;
}

.secondary-link:hover {
  color: var(--white);
}

/* ===== ABOUT PAGE RESPONSIVE - TABLET ===== */
@media (min-width: 768px) {
  .about-hero-section {
    padding: 100px 24px;
    min-height: 450px;
  }

  .about-hero-section h1 {
    font-size: 36px;
  }

  .founder-signature {
    flex-direction: row;
    justify-content: center;
    gap: 20px;
  }

  .founder-photo {
    width: 80px;
    height: 80px;
  }

  .our-story-section,
  .practitioners-section,
  .approach-section,
  .about-cta-section {
    padding: 64px 24px;
  }

  .our-story-section h2,
  .practitioners-section h2,
  .approach-section h2,
  .about-cta-section h2 {
    font-size: 28px;
  }

  .practitioner-card {
    display: flex;
    gap: 32px;
    text-align: left;
    padding: 32px;
  }

  .practitioner-photo-wrapper {
    flex-shrink: 0;
    margin-bottom: 0;
  }

  .practitioner-info {
    text-align: left;
  }

  .comparison-header {
    display: flex;
  }

  .comparison-header .comparison-col {
    flex: 1;
    font-weight: 700;
    font-size: 16px;
    text-align: center;
    justify-content: center;
  }

  .comparison-header .traditional-col {
    background: #FFE8E8;
  }

  .comparison-header .gha-col {
    background: #D5F0E5;
  }

  .comparison-row {
    flex-direction: row;
  }

  .comparison-col {
    flex: 1;
  }
}

/* ===== ABOUT PAGE RESPONSIVE - DESKTOP ===== */
@media (min-width: 1024px) {
  .about-hero-section {
    padding: 120px 24px;
    min-height: 500px;
  }

  .about-hero-section h1 {
    font-size: 44px;
  }

  .about-hero-subheadline {
    font-size: 20px;
  }

  .founder-photo {
    width: 90px;
    height: 90px;
  }

  .our-story-section,
  .practitioners-section,
  .approach-section,
  .about-cta-section {
    padding: 80px 24px;
  }

  .our-story-section h2,
  .practitioners-section h2,
  .approach-section h2,
  .about-cta-section h2 {
    font-size: 32px;
  }

  .story-content p {
    font-size: 17px;
  }

  .practitioners-grid {
    flex-direction: row;
    gap: 32px;
  }

  .practitioner-card {
    flex: 1;
    flex-direction: column;
    text-align: center;
  }

  .practitioner-photo-wrapper {
    margin-bottom: 24px;
  }

  .practitioner-info {
    text-align: center;
  }

  .practitioner-bio,
  .practitioner-quote {
    text-align: left;
  }

  .comparison-col {
    padding: 20px 24px;
    font-size: 16px;
  }
}

/* ===== ANIMATIONS ===== */
.landing-page {
  animation: fadeIn 0.5s ease-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
