/* =========================================
   SMARTLOVE THERAPY — Global Stylesheet
   Font: Cormorant Garamond (display) + DM Sans (body)
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300&display=swap');

/* ─── CSS VARIABLES ─── */
:root {
  --sage:       #7aab8a;
  --sage-light: #a8c9b4;
  --sage-pale:  #e8f2ec;
  --sky:        #a8c9e0;
  --sky-light:  #dceef7;
  --sky-pale:   #f0f8fd;
  --blush:      #f2ddd5;
  --warm-white: #fdfaf7;
  --cream:      #f7f2ed;
  --charcoal:   #2b2d2f;
  --mid-grey:   #5a5f63;
  --light-grey: #9aa0a6;
  --border:     #e2e8ed;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', sans-serif;

  --radius-sm:  6px;
  --radius-md:  14px;
  --radius-lg:  24px;
  --radius-xl:  40px;

  --shadow-sm:  0 2px 8px rgba(42,80,60,0.06);
  --shadow-md:  0 8px 32px rgba(42,80,60,0.10);
  --shadow-lg:  0 20px 60px rgba(42,80,60,0.13);

  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

  --max-w: 1180px;
  --nav-h: 72px;
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--warm-white);
  color: var(--charcoal);
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--sage-light); border-radius: 99px; }

/* ─── UTILITY ─── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }

.tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
  background: var(--sage-pale);
  border: 1px solid var(--sage-light);
  padding: 5px 14px;
  border-radius: 99px;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--charcoal);
  margin-bottom: 16px;
}
.section-title em { font-style: italic; color: var(--sage); }

.section-sub {
  font-size: 1.05rem;
  color: var(--mid-grey);
  max-width: 560px;
  line-height: 1.7;
}

.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 99px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--sage);
  color: #fff;
  box-shadow: 0 4px 20px rgba(122,171,138,0.35);
}
.btn-primary:hover {
  background: #6a9a7a;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(122,171,138,0.45);
}
.btn-outline {
  border: 1.5px solid var(--sage);
  color: var(--sage);
}
.btn-outline:hover {
  background: var(--sage-pale);
  transform: translateY(-2px);
}
.btn-white {
  background: #fff;
  color: var(--sage);
  box-shadow: var(--shadow-md);
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.btn-lg { padding: 16px 36px; font-size: 1rem; }
.btn-sm { padding: 9px 20px; font-size: 0.82rem; }

/* ─── NAVBAR ─── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  background: rgba(253,250,247,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}
.navbar.scrolled {
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo-mark {
  width: 44px; height: 44px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  background: transparent;
}
.nav-logo-mark img {
  width: 100%; height: 100%;
  object-fit: contain;
  display: block;
}
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.nav-logo-text strong {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--charcoal);
}
.nav-logo-text span {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--mid-grey);
  text-transform: uppercase;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-menu a {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--mid-grey);
  transition: var(--transition);
}
.nav-menu a:hover, .nav-menu a.active {
  color: var(--charcoal);
  background: var(--sage-pale);
}
.nav-actions { display: flex; align-items: center; gap: 10px; }

.nav-whatsapp {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--mid-grey);
  padding: 8px 14px;
  border-radius: 99px;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.nav-whatsapp:hover { border-color: #25d366; color: #1a9e4f; background: #f0fef4; }
.nav-whatsapp svg { flex-shrink: 0; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition);
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--charcoal);
  border-radius: 99px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── MOBILE NAV ─── */
.mobile-nav {
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--warm-white);
  border-bottom: 1px solid var(--border);
  padding: 20px 24px 28px;
  z-index: 999;
  box-shadow: var(--shadow-lg);
  transform: translateY(-12px);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}
.mobile-nav.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
  visibility: visible;
}
.mobile-nav a {
  display: block;
  padding: 12px 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--charcoal);
  border-bottom: 1px solid var(--border);
}
.mobile-nav a:last-of-type { border-bottom: none; }
.mobile-nav .btn { margin-top: 16px; width: 100%; justify-content: center; }

/* ─── HERO ─── */
.hero {
  padding-top: calc(var(--nav-h) + 80px);
  padding-bottom: 80px;
  background: linear-gradient(160deg, var(--sky-pale) 0%, var(--warm-white) 50%, var(--sage-pale) 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(168,201,224,0.3) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(122,171,138,0.2) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 99px;
  padding: 6px 14px 6px 6px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--mid-grey);
  box-shadow: var(--shadow-sm);
}
.hero-badge-dot {
  width: 8px; height: 8px;
  background: var(--sage);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(122,171,138,0.4); }
  50% { box-shadow: 0 0 0 6px rgba(122,171,138,0); }
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--charcoal);
  margin-bottom: 22px;
}
.hero h1 em {
  font-style: italic;
  color: var(--sage);
  display: block;
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--mid-grey);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 44px; }
.hero-stats { display: flex; gap: 32px; }
.stat-item { display: flex; flex-direction: column; }
.stat-num {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1;
}
.stat-label {
  font-size: 0.75rem;
  color: var(--light-grey);
  font-weight: 500;
  margin-top: 3px;
}
.hero-visual { position: relative; display: flex; justify-content: center; }
.hero-card-stack { position: relative; width: 380px; height: 440px; }
.hero-main-card {
  position: absolute;
  top: 30px; left: 20px;
  width: 320px;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.hero-card-avatar {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--sage-pale), var(--sky-light));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  margin-bottom: 16px;
}
.hero-card-avatar--photo {
  width: 80px; height: 80px;
  background: none;
  overflow: hidden;
  border: 3px solid var(--sage-pale);
  box-shadow: 0 4px 14px rgba(0,0,0,0.10);
}
.hero-card-avatar--photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.hero-card-creds {
  display: flex; flex-wrap: wrap; gap: 5px;
  margin: 8px 0 4px;
}
.hero-cred-badge {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  background: linear-gradient(135deg, var(--sage-pale), var(--sky-light));
  color: var(--sage);
  border-radius: 6px;
  padding: 3px 8px;
  text-transform: uppercase;
}
.hero-card-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
}
.hero-card-role { font-size: 0.78rem; color: var(--mid-grey); margin-bottom: 14px; }
.hero-card-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.hero-card-tags span {
  font-size: 0.72rem;
  font-weight: 500;
  background: var(--sage-pale);
  color: var(--sage);
  border-radius: 99px;
  padding: 4px 10px;
}
.hero-float-card {
  position: absolute;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 14px 18px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 600;
  animation: float 4s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.hero-float-1 { top: 0; right: 0; animation-delay: 0s; }
.hero-float-2 { bottom: 40px; right: 10px; animation-delay: 1.5s; }
.hero-float-icon { font-size: 20px; }

/* ─── FEATURES ─── */
.features { background: var(--warm-white); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.feature-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sage), var(--sky));
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}
.feature-card:hover::before { transform: scaleX(1); }
.feature-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: transparent;
}
.feature-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
}
.fi-sage   { background: var(--sage-pale); }
.fi-sky    { background: var(--sky-light); }
.fi-blush  { background: var(--blush); }
.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.feature-card p { font-size: 0.88rem; color: var(--mid-grey); line-height: 1.65; }

/* ─── SERVICES GRID ─── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 52px;
}
.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
}
.service-card:hover {
  background: var(--sage-pale);
  border-color: var(--sage-light);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.service-card .s-icon {
  font-size: 36px;
  margin-bottom: 12px;
  display: block;
}
.service-card h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 6px;
}
.service-card p { font-size: 0.78rem; color: var(--mid-grey); }

/* ─── PROGRAM DETAILS ─── */
.program-details { background: var(--cream); }
.program-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 56px;
}
.detail-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.detail-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 22px 20px;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.detail-card:hover { box-shadow: var(--shadow-sm); }
.detail-card-icon { font-size: 24px; margin-bottom: 10px; }
.detail-card-label { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--light-grey); margin-bottom: 4px; }
.detail-card-value { font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; }
.program-info h3 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 600;
  margin-bottom: 16px;
  line-height: 1.3;
}
.program-info p { color: var(--mid-grey); line-height: 1.75; margin-bottom: 24px; font-size: 0.95rem; }
.program-checklist { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.program-checklist li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.9rem; color: var(--mid-grey);
}
.check-icon {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--sage-pale); color: var(--sage);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; flex-shrink: 0; margin-top: 1px;
}

/* ─── CURRICULUM ACCORDION ─── */
.curriculum { background: var(--warm-white); }
.curriculum-list { margin-top: 48px; display: flex; flex-direction: column; gap: 12px; }
.acc-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}
.acc-item.open { border-color: var(--sage-light); box-shadow: var(--shadow-sm); }
.acc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  user-select: none;
}
.acc-header:hover { background: var(--sage-pale); }
.acc-title-wrap { display: flex; align-items: center; gap: 14px; }
.acc-num {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--sage-pale); color: var(--sage);
  font-size: 0.8rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.acc-item.open .acc-num { background: var(--sage); color: #fff; }
.acc-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
}
.acc-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
  flex-shrink: 0;
  font-size: 16px; color: var(--mid-grey);
}
.acc-item.open .acc-icon { transform: rotate(45deg); background: var(--sage); color: #fff; }
.acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.acc-body-inner {
  padding: 0 24px 22px;
  border-top: 1px solid var(--border);
}
.acc-topics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 14px;
}
.acc-topic {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.86rem; color: var(--mid-grey);
  padding: 6px 0;
}
.acc-topic::before {
  content: '→';
  color: var(--sage);
  font-size: 12px;
  flex-shrink: 0;
}

/* ─── TESTIMONIALS ─── */
.testimonials { background: var(--cream); overflow: hidden; }
.testimonial-slider { position: relative; margin-top: 52px; }
.testimonial-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.testimonial-card {
  flex: 0 0 calc(33.33% - 16px);
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border);
  position: relative;
}
.t-quote {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--sage-light);
  line-height: 1;
  margin-bottom: 12px;
}
.t-text {
  font-size: 0.92rem;
  color: var(--mid-grey);
  line-height: 1.75;
  margin-bottom: 22px;
  font-style: italic;
}
.t-author { display: flex; align-items: center; gap: 12px; }
.t-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sage-pale), var(--sky-light));
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.t-name { font-weight: 600; font-size: 0.9rem; }
.t-role { font-size: 0.76rem; color: var(--light-grey); }
.t-stars { color: #f5a623; font-size: 0.8rem; margin-top: 2px; }
.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 36px;
}
.slider-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  color: var(--charcoal);
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.slider-btn:hover { background: var(--sage); color: #fff; border-color: var(--sage); }
.slider-dots { display: flex; gap: 8px; }
.slider-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: var(--transition);
}
.slider-dot.active { background: var(--sage); width: 24px; border-radius: 99px; }

/* ─── CTA BANNER ─── */
.cta-banner {
  background: linear-gradient(135deg, #2b5e40, #3d7a5a);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 300px; height: 300px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 400px; height: 400px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
}
.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 600;
  color: #fff;
  margin-bottom: 14px;
  position: relative; z-index: 1;
}
.cta-banner p {
  color: rgba(255,255,255,0.75);
  font-size: 1rem;
  margin-bottom: 36px;
  position: relative; z-index: 1;
}
.cta-banner-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  position: relative; z-index: 1;
}
.btn-outline-white {
  border: 1.5px solid rgba(255,255,255,0.5);
  color: #fff;
  border-radius: 99px;
  padding: 13px 28px;
  font-size: 0.9rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.12); }

/* ─── FAQ ─── */
.faq { background: var(--warm-white); }
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-top: 52px;
}
.faq-list { display: flex; flex-direction: column; gap: 10px; }

/* ─── CONTACT FORM ─── */
.contact-section { background: var(--cream); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: start;
  margin-top: 52px;
}
.contact-info h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 12px;
}
.contact-info p { color: var(--mid-grey); font-size: 0.92rem; line-height: 1.7; margin-bottom: 28px; }
.contact-items { display: flex; flex-direction: column; gap: 16px; }
.contact-item {
  display: flex; align-items: flex-start; gap: 14px;
}
.ci-icon {
  width: 40px; height: 40px; border-radius: var(--radius-sm);
  background: var(--sage-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.ci-label { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--light-grey); }
.ci-value { font-size: 0.9rem; font-weight: 500; color: var(--charcoal); margin-top: 2px; }

.contact-form {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 7px;
  letter-spacing: 0.02em;
}
.form-group label span { color: #e55; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--warm-white);
  color: var(--charcoal);
  font-size: 0.9rem;
  outline: none;
  transition: var(--transition);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--sage);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(122,171,138,0.15);
}
.form-group input.error,
.form-group textarea.error { border-color: #e55; box-shadow: 0 0 0 3px rgba(220,50,50,0.12); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-error { font-size: 0.76rem; color: #e55; margin-top: 5px; display: none; }
.form-error.show { display: block; }
.form-success {
  display: none;
  background: var(--sage-pale);
  border: 1px solid var(--sage-light);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  font-size: 0.9rem;
  color: #2b5e40;
  margin-top: 14px;
}
.form-success.show { display: flex; align-items: center; gap: 10px; }

/* ─── TEAM / ABOUT CARDS ─── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 52px;
}
.team-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.team-avatar {
  width: 80px; height: 80px; border-radius: 50%;
  background: linear-gradient(135deg, var(--sage-pale), var(--sky-light));
  margin: 0 auto 16px;
  font-size: 36px;
  display: flex; align-items: center; justify-content: center;
}
.team-name { font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; margin-bottom: 4px; }
.team-role { font-size: 0.78rem; color: var(--sage); font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 12px; }
.team-bio { font-size: 0.84rem; color: var(--mid-grey); line-height: 1.65; }
.team-avatar--photo {
  overflow: hidden;
  background: none;
  border: 3px solid var(--sage-pale);
  box-shadow: 0 4px 14px rgba(0,0,0,0.10);
  width: 110px; height: 110px;
}
.team-avatar--photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.team-card--founder {
  border: 2px solid var(--sage-pale);
  background: linear-gradient(160deg, #fff 70%, var(--sage-pale) 200%);
  grid-column: span 1;
}
.team-founder-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--sage), var(--sky));
  color: #fff;
  border-radius: 99px;
  padding: 4px 12px;
  margin-bottom: 10px;
}
.team-creds {
  display: flex; flex-wrap: wrap; gap: 5px;
  justify-content: center;
  margin: 6px 0 12px;
}
.team-creds span {
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  background: var(--sage-pale);
  color: var(--sage);
  border-radius: 6px;
  padding: 3px 8px;
  text-transform: uppercase;
}

/* ─── VALUES ─── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.value-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 20px;
  background: #fff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}
.v-icon {
  width: 44px; height: 44px; border-radius: var(--radius-sm);
  background: var(--sage-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
}
.value-item h4 { font-family: var(--font-display); font-size: 1rem; font-weight: 600; margin-bottom: 4px; }
.value-item p { font-size: 0.82rem; color: var(--mid-grey); }

/* ─── COURSE CARDS ─── */
.courses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 52px;
}
.course-card {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: var(--transition);
}
.course-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.course-header {
  padding: 28px 24px 22px;
  background: linear-gradient(135deg, var(--sage-pale), var(--sky-light));
  position: relative;
}
.course-badge {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--sage);
  color: #fff;
  font-size: 0.72rem; font-weight: 700;
  padding: 4px 10px; border-radius: 99px;
  letter-spacing: 0.05em;
}
.course-icon { font-size: 36px; margin-bottom: 12px; }
.course-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.3;
}
.course-body { padding: 22px 24px; }
.course-desc { font-size: 0.85rem; color: var(--mid-grey); line-height: 1.65; margin-bottom: 18px; }
.course-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.course-meta-tag {
  font-size: 0.73rem; font-weight: 600;
  background: var(--cream);
  border: 1px solid var(--border);
  color: var(--mid-grey);
  border-radius: 99px;
  padding: 4px 10px;
}
.course-footer {
  padding: 16px 24px;
  border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
}
.course-price {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--charcoal);
}
.course-price span { font-size: 0.75rem; color: var(--light-grey); font-weight: 400; font-family: var(--font-body); }

/* ─── PAGE HERO (sub-pages) ─── */
.page-hero {
  padding-top: calc(var(--nav-h) + 64px);
  padding-bottom: 64px;
  background: linear-gradient(160deg, var(--sky-pale), var(--warm-white));
  text-align: center;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 16px;
}
.page-hero h1 em { font-style: italic; color: var(--sage); }
.page-hero p { font-size: 1rem; color: var(--mid-grey); max-width: 540px; margin: 0 auto 28px; }
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--light-grey);
  margin-bottom: 20px;
}
.breadcrumb a { color: var(--sage); font-weight: 500; }
.breadcrumb span { color: var(--border); }

/* ─── FOOTER ─── */
.footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .nav-logo-text strong { color: #fff; }
.footer-brand .nav-logo-text span { color: rgba(255,255,255,0.4); }
.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.7;
  margin-top: 16px;
  margin-bottom: 24px;
  max-width: 280px;
}
.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 36px; height: 36px;
  border-radius: 9px;
  background: rgba(255,255,255,0.07);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.1);
}
.social-btn:hover { background: var(--sage); border-color: var(--sage); }
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--sage-light); }
.footer-bottom {
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
}
.footer-bottom a { color: var(--sage-light); }

/* ─── ANIMATIONS ─── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }

/* ─── MAP EMBED ─── */
.map-section { background: var(--cream); padding-bottom: 0; }
.map-wrapper {
  margin-top: 40px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow: hidden;
  border: 1px solid var(--border);
  border-bottom: none;
  height: 360px;
  background: var(--border);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.map-placeholder {
  text-align: center;
  color: var(--mid-grey);
}
.map-placeholder .map-icon { font-size: 48px; margin-bottom: 12px; }
.map-placeholder p { font-size: 0.9rem; }
.map-placeholder a {
  color: var(--sage);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .courses-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .nav-menu, .nav-actions { display: none; }
  .hamburger { display: flex; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero-sub { margin: 0 auto 36px; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .program-grid { grid-template-columns: 1fr; gap: 32px; }
  .faq-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .courses-grid { grid-template-columns: 1fr; }
  .testimonial-card { flex: 0 0 calc(100% - 0px); }
  .acc-topics { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .values-grid { grid-template-columns: 1fr; }
  .detail-cards { grid-template-columns: 1fr 1fr; }
  .cta-banner-actions { flex-direction: column; }
  .section { padding: 64px 0; }
  .contact-form { padding: 28px 20px; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .detail-cards { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
}

/* ══ HERO AWARD BADGE ══ */
.hero-award-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #fff8e1, #fff3cd);
  border: 1.5px solid #f5c842;
  color: #7a5c00;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 5px 14px;
  border-radius: 20px;
  margin-top: 8px;
  box-shadow: 0 2px 8px rgba(245,200,66,0.25);
}

/* ══ COURSES LINE LIST ══ */
.courses-list-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.course-line-group {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.course-line-group:hover {
  border-color: var(--sage-light);
  box-shadow: var(--shadow-md);
}

.clg-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  background: linear-gradient(135deg, var(--sage-pale), #f0faf5);
  border-bottom: 1px solid var(--border);
}

.clg-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
}

.clg-title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--charcoal);
  flex: 1;
}

.clg-badge {
  font-size: 0.68rem;
  font-weight: 700;
  background: var(--sage);
  color: #fff;
  padding: 3px 10px;
  border-radius: 20px;
  white-space: nowrap;
}

.clg-items {
  padding: 8px 0;
}

.course-line-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 20px;
  text-decoration: none;
  transition: background 0.15s;
  border-bottom: 1px solid rgba(0,0,0,0.04);
}

.course-line-item:last-child {
  border-bottom: none;
}

.course-line-item:hover {
  background: var(--sage-pale);
}

.cli-dot {
  width: 6px;
  height: 6px;
  background: var(--sage);
  border-radius: 50%;
  flex-shrink: 0;
}

.cli-name {
  flex: 1;
  font-size: 0.83rem;
  color: var(--charcoal);
  font-weight: 500;
  line-height: 1.4;
}

.cli-price {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--sage);
  white-space: nowrap;
}

.cli-mode {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--mid-grey);
  background: #f4f4f4;
  padding: 2px 8px;
  border-radius: 10px;
  white-space: nowrap;
}

.cli-tag {
  display: inline-block;
  background: var(--blush);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 700;
  padding: 1px 7px;
  border-radius: 8px;
  margin-left: 6px;
  vertical-align: middle;
}

.cli-popular .cli-name {
  color: #a8336b;
}

@media (max-width: 768px) {
  .courses-list-wrap {
    grid-template-columns: 1fr;
  }
}

/* ══ HERO DOCTOR PHOTO ══ */
.hero-photo-wrap {
  position: relative;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

.hero-doctor-photo {
  width: 100%;
  height: 580px;
  object-fit: cover;
  object-position: center top;
  border-radius: 28px;
  display: block;
  box-shadow: 0 32px 80px rgba(100,140,100,0.22), 0 8px 24px rgba(0,0,0,0.12);
}

.hero-photo-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(40,60,40,0.92) 0%, rgba(40,60,40,0.6) 60%, transparent 100%);
  border-radius: 0 0 28px 28px;
  padding: 32px 24px 24px;
  color: #fff;
}

.hero-photo-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.3px;
  margin-bottom: 3px;
}

.hero-photo-role {
  font-size: 0.8rem;
  opacity: 0.82;
  margin-bottom: 10px;
}

.hero-photo-creds {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.hero-photo-creds span {
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.32);
  border-radius: 6px;
  padding: 2px 10px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* Float badge positions for photo layout */
.hero-photo-wrap .hero-float-1 {
  top: 28px;
  right: -18px;
}

.hero-photo-wrap .hero-float-2 {
  top: 110px;
  right: -18px;
}

@media (max-width: 768px) {
  .hero-doctor-photo {
    height: 380px;
    object-position: center 20%;
  }
  .hero-photo-wrap .hero-float-1,
  .hero-photo-wrap .hero-float-2 {
    right: 12px;
  }
}

/* ══ NAVBAR DOCTOR STRIP ══ */
.nav-doctor-strip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 5px 14px 5px 10px;
  background: linear-gradient(135deg, #f9fdf9, #eef8f2);
  border: 1.5px solid var(--sage-light);
  border-radius: 40px;
  margin-left: 8px;
  text-decoration: none;
  transition: box-shadow 0.2s;
}

.nav-doctor-strip:hover {
  box-shadow: 0 4px 16px rgba(100,160,100,0.18);
}

.nav-doc-photo {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--sage);
  flex-shrink: 0;
}

.nav-doc-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
}

.nav-doc-info {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.nav-doc-name {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.2;
  font-family: var(--font-display);
}

.nav-doc-title {
  font-size: 0.68rem;
  color: var(--sage);
  font-weight: 600;
}

@media (max-width: 900px) {
  .nav-doctor-strip { display: none; }
}

/* ══ WHATSAPP FLOATING POPUP ══ */
.wa-fab-wrap {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.wa-fab-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}

.wa-fab-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 32px rgba(37,211,102,0.55);
}

.wa-fab-pulse {
  position: absolute;
  top: 0; right: 0;
  width: 14px; height: 14px;
  background: #ff3b3b;
  border-radius: 50%;
  border: 2px solid #fff;
  animation: waPulse 1.8s infinite;
}

@keyframes waPulse {
  0%   { transform: scale(1); opacity: 1; }
  60%  { transform: scale(1.5); opacity: 0; }
  100% { transform: scale(1); opacity: 0; }
}

.wa-popup {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 12px 48px rgba(0,0,0,0.18);
  width: 300px;
  overflow: hidden;
  transform: scale(0.85) translateY(20px);
  transform-origin: bottom right;
  opacity: 0;
  pointer-events: none;
  transition: all 0.28s cubic-bezier(0.34,1.56,0.64,1);
}

.wa-popup--open {
  transform: scale(1) translateY(0);
  opacity: 1;
  pointer-events: all;
}

.wa-popup-header {
  background: #075E54;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
}

.wa-popup-avatar {
  position: relative;
  flex-shrink: 0;
}

.wa-popup-avatar img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 15%;
  border: 2px solid rgba(255,255,255,0.3);
}

.wa-online-dot {
  position: absolute;
  bottom: 2px;
  right: 2px;
  width: 10px;
  height: 10px;
  background: #25D366;
  border-radius: 50%;
  border: 2px solid #075E54;
}

.wa-popup-info { flex: 1; }

.wa-popup-name {
  color: #fff;
  font-weight: 700;
  font-size: 0.88rem;
  line-height: 1.3;
}

.wa-popup-status {
  color: rgba(255,255,255,0.72);
  font-size: 0.72rem;
  margin-top: 2px;
}

.wa-popup-close {
  background: rgba(255,255,255,0.15);
  border: none;
  color: #fff;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
  flex-shrink: 0;
}

.wa-popup-close:hover { background: rgba(255,255,255,0.28); }

.wa-popup-body {
  padding: 16px;
  background: #e5ddd5;
  min-height: 80px;
}

.wa-bubble {
  background: #fff;
  border-radius: 0 12px 12px 12px;
  padding: 10px 14px;
  font-size: 0.82rem;
  line-height: 1.55;
  color: #333;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  position: relative;
}

.wa-bubble::before {
  content: '';
  position: absolute;
  top: 0; left: -8px;
  border-width: 0 8px 8px 0;
  border-style: solid;
  border-color: transparent #fff transparent transparent;
}

.wa-popup-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #25D366;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 14px;
  transition: background 0.15s;
}

.wa-popup-btn:hover { background: #1ebe5d; }

@media (max-width: 480px) {
  .wa-fab-wrap { bottom: 18px; right: 16px; }
  .wa-popup { width: 272px; }
}

/* ══ MOBILE HERO PHOTO STRIP ══ */
.hero-mobile-photo {
  display: none; /* hidden on desktop */
  position: relative;
  width: 100%;
  height: 320px;
  overflow: hidden;
}

.hero-mobile-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  display: block;
}

.hero-mobile-photo-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(30,50,30,0.90) 0%, transparent 70%);
  padding: 28px 18px 16px;
  color: #fff;
}

.hmp-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.hmp-role {
  font-size: 0.75rem;
  opacity: 0.82;
  margin-bottom: 8px;
}

.hmp-creds {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.hmp-creds span {
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.32);
  border-radius: 6px;
  padding: 2px 9px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

@media (max-width: 768px) {
  .hero-mobile-photo {
    display: block;
    height: 280px;
  }
  /* Hide the desktop right-side photo on mobile — content only */
  .hero-visual {
    display: none !important;
  }
}

@media (max-width: 480px) {
  .hero-mobile-photo {
    height: 260px;
  }
}
