/* ============================================
   ABPT — Design System & Global Styles
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
  --primary: #1B2A4A;
  --primary-light: #2C3E6B;
  --primary-dark: #101D36;
  --accent: #C9A96E;
  --accent-light: #DFC398;
  --accent-dark: #A8884D;
  --bg-warm: #FAF8F5;
  --bg-white: #FFFFFF;
  --bg-section: #F3F0EB;
  --text-dark: #1A1A1A;
  --text-body: #4A4A4A;
  --text-muted: #7A7A7A;
  --text-light: #FFFFFF;
  --border-light: #E8E4DF;
  --shadow-sm: 0 2px 8px rgba(27, 42, 74, 0.06);
  --shadow-md: 0 4px 20px rgba(27, 42, 74, 0.08);
  --shadow-lg: 0 8px 40px rgba(27, 42, 74, 0.12);
  --shadow-card: 0 2px 16px rgba(27, 42, 74, 0.07);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-heading: 'Inter', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --container-max: 1200px;
  --header-height: 80px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-body);
  background-color: var(--bg-warm);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

a:hover {
  color: var(--accent);
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--primary);
  line-height: 1.25;
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }

p {
  margin-bottom: 1rem;
  color: var(--text-body);
}

/* --- Utility --- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

.section-sm {
  padding: 50px 0;
}

.text-center { text-align: center; }
.text-accent { color: var(--accent); }
.text-primary { color: var(--primary); }

.section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-title {
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 40px auto;
}


/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  line-height: 1;
}

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

.btn-primary:hover {
  background: var(--primary-light);
  color: var(--text-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

.btn-accent:hover {
  background: var(--accent-light);
  color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--text-light);
  transform: translateY(-2px);
}

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

.btn-white:hover {
  background: var(--bg-warm);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-sm {
  padding: 10px 22px;
  font-size: 0.85rem;
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  display: flex;
  align-items: center;
  transition: all 0.4s ease;
  background: rgba(27, 42, 74, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.site-header.scrolled {
  background: rgba(27, 42, 74, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.header-logo img {
  height: 44px;
  width: auto;
  filter: brightness(0) invert(1);
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-nav a {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  white-space: nowrap;
}

.header-nav a:hover,
.header-nav a.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.header-cta .btn {
  font-size: 0.85rem;
  padding: 10px 24px;
}

/* Mobile toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  z-index: 1100;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all var(--transition);
}

.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile menu drawer */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: var(--primary);
  z-index: 1050;
  padding: 100px 32px 32px;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -4px 0 30px rgba(0, 0, 0, 0.3);
}

.mobile-menu.open {
  right: 0;
}

.mobile-menu a {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: all var(--transition);
}

.mobile-menu a:hover {
  color: var(--accent);
  padding-left: 8px;
}

.mobile-menu .btn {
  margin-top: 24px;
  width: 100%;
}

.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1040;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-overlay.show {
  opacity: 1;
  pointer-events: auto;
}

/* ============================================
   HERO BANNER (gradient only — no images)
   ============================================ */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #0F1B33 0%, #1B2A4A 30%, #2C3E6B 70%, #3B5288 100%);
}

/* Decorative floating circles */
.hero::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 169, 110, 0.12) 0%, transparent 70%);
  top: -120px;
  right: -80px;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 169, 110, 0.08) 0%, transparent 70%);
  bottom: -60px;
  left: -100px;
  pointer-events: none;
}

.hero-decoration {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-decoration .circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-decoration .circle:nth-child(1) {
  width: 300px; height: 300px; top: 10%; right: 5%;
}

.hero-decoration .circle:nth-child(2) {
  width: 180px; height: 180px; bottom: 15%; right: 20%;
  border-color: rgba(201, 169, 110, 0.1);
}

.hero-decoration .circle:nth-child(3) {
  width: 120px; height: 120px; top: 30%; right: 30%;
  background: rgba(201, 169, 110, 0.04);
}

/* Accent line at bottom */
.hero-accent-line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent 0%, var(--accent) 50%, transparent 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 650px;
  padding: 120px 0 80px;
}

.hero-content h1 {
  color: #fff;
  margin-bottom: 20px;
  font-weight: 800;
}

.hero-content p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.15rem;
  margin-bottom: 32px;
  line-height: 1.8;
}

.hero-content .btn {
  margin-right: 12px;
}

/* Page banner — inner pages (gradient only) */
.page-banner {
  position: relative;
  height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, #0F1B33 0%, #1B2A4A 40%, #2C3E6B 100%);
}

.page-banner::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 169, 110, 0.08) 0%, transparent 70%);
  top: -150px;
  right: -50px;
  pointer-events: none;
}

.page-banner::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent 0%, var(--accent) 50%, transparent 100%);
}

.page-banner h1 {
  position: relative;
  z-index: 1;
  color: #fff;
  text-align: center;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}

.page-banner .page-banner-label {
  position: relative;
  z-index: 1;
  display: block;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent);
  margin-bottom: 8px;
}

/* ============================================
   ABOUT / VOCAÇÃO SECTION
   ============================================ */
.about-section {
  background: var(--bg-white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.about-text h2 {
  margin-bottom: 8px;
}

.about-text .subtitle {
  font-size: 1.15rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 20px;
}

.about-text p {
  line-height: 1.8;
}

.about-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* ============================================
   FEATURE CARDS
   ============================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.feature-card {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  transition: all var(--transition);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-light);
}

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

.feature-card img {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  object-fit: contain;
}

.feature-card h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: var(--primary);
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* ============================================
   TECHNIQUES SECTION
   ============================================ */
.technique-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 60px;
}

.technique-row:last-child {
  margin-bottom: 0;
}

.technique-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.technique-text h2 {
  margin-bottom: 16px;
  font-size: 1.6rem;
}

.technique-text p {
  line-height: 1.8;
  color: var(--text-body);
}

/* ============================================
   RECOGNITION SECTION
   ============================================ */
.recognition {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: #fff;
  text-align: center;
}

.recognition h2 {
  color: #fff;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 32px;
}

.recognition-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
}

.recognition-item {
  padding: 24px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.recognition-item p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.recognition-item p:first-child {
  color: var(--accent-light);
  font-weight: 700;
  font-family: var(--font-heading);
  font-size: 1rem;
  margin-bottom: 8px;
}

/* ============================================
   VIDEO SECTION
   ============================================ */
.video-section {
  background: var(--bg-white);
}

.video-wrapper {
  max-width: 800px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.video-wrapper video {
  width: 100%;
  display: block;
}

/* ============================================
   COURSE CTA / LEARN MORE
   ============================================ */
.course-cta-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.course-cta-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.course-cta-text h2 {
  margin-bottom: 16px;
}

.course-cta-text p {
  line-height: 1.8;
  margin-bottom: 24px;
}

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-section {
  background: var(--bg-section);
}

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

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

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

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  color: var(--primary);
  transition: all var(--transition);
  user-select: none;
}

.faq-question:hover {
  color: var(--accent-dark);
}

.faq-icon {
  font-size: 1.5rem;
  font-weight: 300;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  color: var(--accent);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

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

.faq-answer-inner {
  padding: 0 24px 20px;
  color: var(--text-body);
  line-height: 1.8;
  font-size: 0.95rem;
}

.faq-item.active .faq-answer {
  max-height: 600px;
}

/* ============================================
   COURSE PAGE — MODULES
   ============================================ */
.course-info {
  background: var(--bg-white);
}

.course-info .highlight {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--primary);
  margin-top: 16px;
}

.modules-section {
  background: var(--bg-section);
}

.module-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  margin-bottom: 32px;
  border: 1px solid var(--border-light);
}

.module-card-image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.module-card-text {
  padding: 32px;
}

.module-card-text h3 {
  font-size: 1.3rem;
  margin-bottom: 16px;
  color: var(--primary);
}

.module-card-text p {
  line-height: 1.8;
  color: var(--text-body);
}

/* Payment */
.payment-section {
  background: var(--bg-white);
  text-align: center;
}

.payment-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin: 32px 0;
  flex-wrap: wrap;
}

.payment-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.payment-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--bg-section);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary);
}

.payment-item p {
  font-weight: 600;
  font-family: var(--font-heading);
  color: var(--primary);
}

/* ============================================
   THERAPISTS / PSICANALISTAS PAGE
   ============================================ */
.search-bar {
  max-width: 500px;
  margin: 0 auto 40px;
  position: relative;
}

.search-bar input {
  width: 100%;
  padding: 16px 24px 16px 52px;
  border-radius: 50px;
  border: 2px solid var(--border-light);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-dark);
  background: var(--bg-white);
  transition: all var(--transition);
  outline: none;
}

.search-bar input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(201, 169, 110, 0.15);
}

.search-bar input::placeholder {
  color: var(--text-muted);
}

.search-bar-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 1.2rem;
  pointer-events: none;
}

.therapists-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.therapist-card {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-light);
  transition: all var(--transition);
}

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

.therapist-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.therapist-info {
  padding: 20px;
}

.therapist-info .name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 6px;
}

.therapist-info .prontuario {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.therapist-info .status {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent-dark);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.therapist-info .status::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4CAF50;
}

.no-results {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-muted);
  font-size: 1.1rem;
}

/* ============================================
   ONLINE THERAPY PAGE
   ============================================ */
.therapy-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-bottom: 60px;
}

.therapy-feature-card {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 40px 24px;
  text-align: center;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-light);
  transition: all var(--transition);
}

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

.therapy-feature-card img {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  object-fit: contain;
}

.therapy-feature-card p {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0;
}

.therapy-content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.therapy-text h2 {
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.therapy-text p {
  line-height: 1.8;
  margin-bottom: 24px;
}

.therapy-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

/* ============================================
   CONTACTS PAGE
   ============================================ */
.contacts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-bottom: 60px;
}

.contact-card {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-light);
  transition: all var(--transition);
}

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

.contact-card img {
  width: 40px;
  height: 40px;
  margin: 0 auto 12px;
  object-fit: contain;
}

.contact-card .contact-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--bg-section);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.4rem;
  color: var(--primary);
}

.contact-card h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.contact-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.contact-card a {
  color: var(--text-body);
  text-decoration: none;
}

.polos-section {
  background: var(--bg-white);
}

.polos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.polos-grid img {
  width: 100%;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  aspect-ratio: 16/10;
  object-fit: cover;
}

.polos-grid img:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-lg);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--primary-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand img {
  height: 50px;
  filter: brightness(0) invert(1);
  margin-bottom: 16px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 300px;
}

.footer-links h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 16px;
}

.footer-links a {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  padding: 6px 0;
  transition: all var(--transition);
}

.footer-links a:hover {
  color: var(--accent);
  padding-left: 4px;
}

.footer-social {
  display: flex;
  gap: 14px;
  margin-top: 20px;
}

.footer-social a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.footer-social a:hover {
  background: var(--accent);
  transform: translateY(-3px);
}

.footer-social img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.footer-bottom {
  text-align: center;
  padding: 24px 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom a {
  color: var(--accent);
}

/* ============================================
   SCROLL TO TOP
   ============================================ */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition);
  z-index: 900;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--accent);
  transform: translateY(-4px);
}

/* ============================================
   ANIMATIONS (GSAP targets)
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* Tablet and up (768px) */
@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }

  .technique-row {
    grid-template-columns: 1fr 1fr;
  }

  .technique-row.reverse .technique-image {
    order: 2;
  }

  .technique-row.reverse .technique-text {
    order: 1;
  }

  .course-cta-grid {
    grid-template-columns: 1fr 1fr;
  }

  .therapy-content-grid {
    grid-template-columns: 1fr 1fr;
  }

  .module-card {
    grid-template-columns: 1fr 1fr;
  }

  .module-card.reverse .module-card-image {
    order: 2;
  }

  .module-card.reverse .module-card-text {
    order: 1;
  }

  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

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

  .mobile-toggle {
    display: none;
  }

  .features-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

/* Mobile only */
@media (max-width: 1023px) {
  .header-nav {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .hero {
    min-height: 70vh;
  }

  .hero-content {
    padding: 100px 0 60px;
  }

  .page-banner {
    height: 250px;
  }

  .section {
    padding: 50px 0;
  }
}

@media (max-width: 480px) {
  .therapists-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 12px;
  }

  .therapist-info {
    padding: 12px;
  }

  .therapist-info .name {
    font-size: 0.9rem;
  }

  .hero {
    min-height: 60vh;
  }

  .features-grid {
    grid-template-columns: 1fr 1fr;
  }
}
