/* ============================================
   Lic. Paula García — Psicóloga | Premium CSS
   Paleta: Navy + Blanco + Lima
   ============================================ */

:root {
  --navy:       #1B3A6B;
  --navy-light: #2C5282;
  --navy-dark:  #122847;
  --aqua:       #C5F135;
  --aqua-light: #D8F76A;
  --aqua-dark:  #9ECC1A;
  --white:      #FFFFFF;
  --off-white:  #F7F8FC;
  --light-bg:   #EEF1F8;
  --text-dark:  #1A202C;
  --text-mid:   #4A5568;
  --text-light: #718096;
  --border:     #E2E8F0;
  --shadow-sm:  0 2px 8px rgba(27,58,107,.08);
  --shadow-md:  0 8px 32px rgba(27,58,107,.12);
  --shadow-lg:  0 24px 64px rgba(27,58,107,.16);
  --radius:     12px;
  --radius-sm:  8px;
  --ease:       cubic-bezier(.4,0,.2,1);
  --transition: all .3s var(--ease);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; }

/* ── Typography — todo Inter ── */
h1 { font-size: clamp(2.4rem, 5vw, 3.75rem); font-weight: 800; line-height: 1.1; letter-spacing: -.02em; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); font-weight: 700; line-height: 1.2; }
h3 { font-size: 1.15rem; font-weight: 700; line-height: 1.3; }
h4 { font-size: .95rem; font-weight: 600; line-height: 1.3; }

/* ── Container ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: .875rem 2rem; border-radius: 10px;
  font-size: .93rem; font-weight: 600; font-family: 'Inter', sans-serif;
  letter-spacing: .01em; cursor: pointer; border: 2px solid transparent;
  transition: var(--transition); white-space: nowrap;
}
.btn-primary { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn-primary:hover { background: var(--navy-dark); border-color: var(--navy-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(27,58,107,.28); }

.btn-aqua { background: var(--aqua); color: var(--navy-dark); border-color: var(--aqua); font-weight: 700; }
.btn-aqua:hover { background: var(--aqua-light); border-color: var(--aqua-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(197,241,53,.35); }

.btn-secondary { background: transparent; color: var(--white); border-color: rgba(255,255,255,.55); }
.btn-secondary:hover { background: rgba(255,255,255,.1); border-color: var(--white); }

.btn-white { background: var(--white); color: var(--navy); border-color: var(--white); }
.btn-white:hover { background: var(--off-white); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.12); }

.btn-ghost { background: transparent; color: var(--text-mid); border-color: var(--border); padding: .75rem 1.5rem; font-size: .88rem; border-radius: 10px; }
.btn-ghost:hover { background: var(--off-white); border-color: #CBD5E0; }

/* ── Section shared ── */
.section-tag {
  display: inline-block; background: var(--light-bg); color: var(--navy);
  font-size: .75rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  padding: .35rem 1rem; border-radius: 6px; margin-bottom: 1rem;
  border: 1px solid rgba(27,58,107,.12);
}
.section-header { text-align: center; max-width: 680px; margin: 0 auto 4rem; }
.section-title { color: var(--navy-dark); margin-bottom: .875rem; }
.section-description { color: var(--text-mid); font-size: 1.05rem; }

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1.25rem 0; transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(255,255,255,.97); backdrop-filter: blur(14px);
  padding: .75rem 0; box-shadow: var(--shadow-sm);
}
.nav-container {
  max-width: 1200px; margin: 0 auto; padding: 0 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; flex-direction: column; line-height: 1.1; gap: .3rem; }
.logo-name {
  font-family: 'Inter', sans-serif; font-size: 1.1rem; font-weight: 800;
  color: var(--white); transition: var(--transition); letter-spacing: -.01em;
}
.logo-subtitle {
  font-size: .68rem; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.65); transition: var(--transition);
}
.navbar.scrolled .logo-name  { color: var(--navy); }
.navbar.scrolled .logo-subtitle { color: var(--text-light); }

.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-link {
  font-size: .875rem; font-weight: 500; color: rgba(255,255,255,.9);
  position: relative; transition: var(--transition);
}
.nav-link::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; background: var(--aqua); transform: scaleX(0); transition: var(--transition);
}
.nav-link:hover::after { transform: scaleX(1); }
.navbar.scrolled .nav-link { color: var(--text-dark); }
.navbar.scrolled .nav-link:hover { color: var(--navy); }

.nav-link.nav-cta {
  background: var(--white); color: var(--navy) !important;
  padding: .6rem 1.4rem; border-radius: 10px; font-weight: 600;
}
.nav-link.nav-cta::after { display: none; }
.nav-link.nav-cta:hover { background: var(--off-white); transform: translateY(-1px); box-shadow: var(--shadow-sm); }
.navbar.scrolled .nav-link.nav-cta { background: var(--navy); color: var(--white) !important; }
.navbar.scrolled .nav-link.nav-cta:hover { background: var(--navy-dark); }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px; transition: var(--transition);
}
.navbar.scrolled .nav-toggle span { background: var(--navy); }

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 55%, #2d5fa3 100%);
  position: relative; display: flex; flex-direction: column;
  justify-content: center; padding: 8rem 1.5rem 5rem; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 36px 36px;
  transform: translateY(var(--parallax-dots, 0px));
  will-change: transform;
}
.hero-text   { will-change: transform; }
.photo-frame { will-change: transform; }
.hero::after {
  content: ''; position: absolute; bottom: -1px; left: 0; right: 0;
  height: 90px; background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.hero-content {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
  align-items: center; position: relative; z-index: 1;
}

.hero-title  { color: var(--white); margin-bottom: .2rem; }
.hero-subtitle {
  font-size: 1rem; font-weight: 300; letter-spacing: .22em; text-transform: uppercase;
  color: rgba(255,255,255,.6); margin-bottom: 1.75rem;
}
.hero-description {
  color: rgba(255,255,255,.82); font-size: 1.08rem; max-width: 460px;
  margin-bottom: 2rem; line-height: 1.75;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem; }
.hero-trust { display: flex; flex-direction: column; gap: .55rem; }
.trust-item { display: flex; align-items: center; gap: .6rem; color: rgba(255,255,255,.72); font-size: .88rem; }
.trust-icon {
  color: var(--aqua); font-weight: 700; font-size: .78rem;
  width: 20px; height: 20px; border-radius: 4px;
  border: 1.5px solid var(--aqua);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}

/* Photo area */
.hero-image { position: relative; display: flex; justify-content: center; }
.photo-frame {
  width: 360px; height: 460px;
  border-radius: 180px 180px 120px 120px;
  background: rgba(255,255,255,.07);
  border: 2px dashed rgba(255,255,255,.22);
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(6px); overflow: hidden;
}
.photo-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
.photo-placeholder .photo-inner,
.about-photo-placeholder .photo-inner { text-align: center; color: rgba(255,255,255,.45); }
.photo-placeholder .photo-inner svg { width: 60px; height: 60px; margin: 0 auto .75rem; stroke: rgba(255,255,255,.35); }
.photo-placeholder .photo-inner p { font-size: .82rem; line-height: 1.5; }

.hero-badge {
  position: absolute; bottom: 44px; right: -16px;
  background: var(--white); border-radius: var(--radius);
  padding: .9rem 1.15rem; display: flex; align-items: center; gap: .75rem;
  box-shadow: var(--shadow-lg); z-index: 2;
}
.badge-icon { font-size: 1.4rem; color: var(--aqua); }
.hero-badge strong { display: block; color: var(--navy); font-weight: 700; font-size: .95rem; }
.hero-badge span   { font-size: .72rem; color: var(--text-light); }

.hero-badge-2 {
  position: absolute; top: 28px; left: -16px;
  background: var(--white); border-radius: 8px;
  padding: .55rem 1rem; display: flex; align-items: center; gap: .5rem;
  font-size: .8rem; font-weight: 600; color: var(--navy);
  box-shadow: var(--shadow-md); z-index: 2;
}
.badge2-icon { font-size: .95rem; }

.hero-scroll {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .4rem;
  color: rgba(255,255,255,.45); font-size: .7rem; letter-spacing: .1em;
  text-transform: uppercase; z-index: 2;
}
.scroll-arrow {
  width: 20px; height: 20px;
  border-right: 2px solid rgba(255,255,255,.35);
  border-bottom: 2px solid rgba(255,255,255,.35);
  transform: rotate(45deg); animation: bounce 2s infinite;
}
@keyframes bounce {
  0%,100% { transform: rotate(45deg) translateY(0); }
  50%      { transform: rotate(45deg) translateY(5px); }
}

/* ============================================
   ABOUT
   ============================================ */
.about { padding: 8rem 0; background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 5rem; align-items: start; }

.about-photo-placeholder {
  width: 100%; aspect-ratio: 4/5; border-radius: var(--radius);
  background: var(--light-bg); border: 2px dashed var(--border);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem; overflow: hidden;
}
.about-photo-placeholder .photo-inner { color: var(--text-light); }
.about-photo-placeholder .photo-inner svg { width: 52px; height: 52px; margin: 0 auto .75rem; stroke: #CBD5E0; }
.about-photo-placeholder .photo-inner p { font-size: .82rem; }

.credentials-card {
  background: var(--off-white); border-radius: var(--radius);
  padding: 1.5rem; border: 1px solid var(--border);
}
.credentials-card h4 {
  font-size: .75rem; text-transform: uppercase; letter-spacing: .1em;
  color: var(--text-light); margin-bottom: 1rem;
}
.credentials-card li {
  display: flex; gap: .75rem; padding: .6rem 0;
  border-bottom: 1px solid var(--border); font-size: .855rem; color: var(--text-mid);
}
.credentials-card li:last-child { border-bottom: none; }
.cred-year { color: var(--navy); font-weight: 600; white-space: nowrap; min-width: 52px; }

.about-text { color: var(--text-mid); margin-bottom: 1rem; line-height: 1.8; }
.about-values { margin-top: 2rem; display: flex; flex-direction: column; gap: 1.25rem; }
.value-item { display: flex; gap: 1rem; align-items: flex-start; }
.value-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--light-bg); display: flex; align-items: center;
  justify-content: center; flex-shrink: 0;
}
.value-icon svg { width: 20px; height: 20px; stroke: var(--navy); }
.value-item h4 { color: var(--navy-dark); margin-bottom: .2rem; }
.value-item p  { font-size: .83rem; color: var(--text-light); }

/* ============================================
   SERVICES
   ============================================ */
.services { padding: 8rem 0; background: var(--off-white); }
.services-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 1.5rem; margin-bottom: 2.5rem;
}
.service-card {
  background: var(--white); border-radius: var(--radius);
  padding: 2rem; border: 1px solid var(--border);
  position: relative; transition: var(--transition);
  display: flex; flex-direction: column;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(27,58,107,.18); }
.service-card.featured { background: var(--navy); border-color: var(--navy); color: var(--white); }
.service-badge {
  display: inline-block; align-self: flex-start;
  background: var(--aqua); color: var(--navy-dark); font-size: .68rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase; padding: .28rem .75rem;
  border-radius: 5px; white-space: nowrap; margin-bottom: 1rem;
}
.service-icon {
  width: 50px; height: 50px; border-radius: 10px; background: var(--light-bg);
  display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem;
}
.service-card.featured .service-icon { background: rgba(255,255,255,.1); }
.service-icon svg { width: 22px; height: 22px; stroke: var(--navy); }
.service-card.featured .service-icon svg { stroke: var(--white); }
.service-card h3 { color: var(--navy-dark); margin-bottom: .7rem; }
.service-card.featured h3 { color: var(--white); }
.service-card p { font-size: .855rem; color: var(--text-mid); line-height: 1.7; flex: 1; margin-bottom: 1.4rem; }
.service-card.featured p { color: rgba(255,255,255,.72); }
.service-link { font-size: .83rem; font-weight: 600; color: var(--navy); transition: var(--transition); margin-top: auto; }
.service-link:hover { color: var(--aqua-dark); }
.service-card.featured .service-link { color: var(--aqua-light); }
.service-card.featured .service-link:hover { color: var(--aqua); }

.modality-strip {
  display: flex; align-items: center; justify-content: center;
  gap: 2rem; flex-wrap: wrap;
  background: var(--white); border-radius: var(--radius);
  padding: 1.75rem 2rem; border: 1px solid var(--border);
}
.modality-item { display: flex; align-items: center; gap: .65rem; font-size: .88rem; color: var(--text-mid); font-weight: 500; }
.modality-item svg { width: 20px; height: 20px; stroke: var(--navy); }
.modality-divider { width: 1px; height: 32px; background: var(--border); }

/* ============================================
   TESTIMONIALS — static 3-column grid
   ============================================ */
.testimonials { padding: 8rem 0; background: var(--white); }
.testimonials-static {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--off-white); border-radius: var(--radius);
  padding: 2rem; border: 1px solid var(--border);
  transition: var(--transition);
  display: flex; flex-direction: column;
}
.testimonial-card:hover { box-shadow: var(--shadow-md); border-color: rgba(27,58,107,.15); transform: translateY(-4px); }
.testimonial-stars { color: var(--aqua); font-size: 1rem; letter-spacing: 2px; margin-bottom: 1rem; }
.testimonial-text {
  font-size: .92rem; color: var(--text-mid); line-height: 1.8;
  font-style: italic; margin-bottom: 1.5rem; flex: 1;
}
.testimonial-author { display: flex; align-items: center; gap: .75rem; }
.author-avatar {
  width: 42px; height: 42px; border-radius: 50%; background: var(--navy);
  color: var(--white); display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .95rem; flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: .88rem; color: var(--text-dark); }
.testimonial-author span  { font-size: .78rem; color: var(--text-light); }

/* ============================================
   APPOINTMENT / CALENDLY
   ============================================ */
.appointment { padding: 8rem 0; background: var(--off-white); }
.calendly-wrapper {
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border); background: var(--white);
  min-height: 700px; box-shadow: var(--shadow-sm);
}

/* ============================================
   CONTACT
   ============================================ */
.contact { padding: 8rem 0; background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 5rem; align-items: start; }
.contact-info > p { color: var(--text-mid); margin-bottom: 2rem; line-height: 1.7; }
.contact-items { display: flex; flex-direction: column; gap: 1.25rem; margin-top: 2rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-icon {
  width: 46px; height: 46px; border-radius: 10px; background: var(--light-bg);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-icon svg { width: 19px; height: 19px; stroke: var(--navy); }
.contact-item strong { display: block; font-size: .88rem; margin-bottom: .2rem; }
.contact-item span  { font-size: .83rem; color: var(--text-mid); }

.contact-form-card {
  background: var(--off-white); border-radius: var(--radius);
  padding: 2.5rem; border: 1px solid var(--border);
}
.contact-form-card h3 { margin-bottom: 1.75rem; color: var(--navy-dark); }
.contact-form { display: flex; flex-direction: column; gap: 1.15rem; }
.form-group { display: flex; flex-direction: column; gap: .35rem; }
.form-group label { font-size: .83rem; font-weight: 600; color: var(--text-dark); }
.form-group input,
.form-group textarea,
.form-group select {
  padding: .75rem 1rem; border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); font-family: 'Inter', sans-serif;
  font-size: .88rem; color: var(--text-dark); background: var(--white);
  transition: var(--transition); outline: none; width: 100%;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--navy); box-shadow: 0 0 0 3px rgba(27,58,107,.1); }
.form-group textarea { resize: vertical; min-height: 100px; }

/* ============================================
   FOOTER
   ============================================ */
.footer { background: var(--navy-dark); color: rgba(255,255,255,.65); padding: 4.5rem 0 2rem; }
.footer-content {
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem;
  padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,.1); margin-bottom: 2rem;
}
.footer-brand p { margin-top: .875rem; font-size: .855rem; line-height: 1.7; }
.footer-links h4, .footer-legal h4 {
  color: var(--white); font-size: .72rem; letter-spacing: .1em;
  text-transform: uppercase; margin-bottom: 1.25rem;
}
.footer-links li, .footer-legal li { margin-bottom: .55rem; }
.footer-links a, .footer-legal a { font-size: .855rem; color: rgba(255,255,255,.55); transition: var(--transition); }
.footer-links a:hover, .footer-legal a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; font-size: .78rem; color: rgba(255,255,255,.35); flex-wrap: wrap; gap: .4rem; }

/* ============================================
   QUESTIONNAIRE MODAL
   ============================================ */
.modal-overlay {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(18,40,71,.75); backdrop-filter: blur(10px);
  display: flex; align-items: center; justify-content: center; padding: 1rem;
  opacity: 0; pointer-events: none; transition: opacity .3s ease;
}
.modal-overlay.active { opacity: 1; pointer-events: all; }

.modal-container {
  background: var(--white); border-radius: 16px;
  width: 100%; max-width: 540px; max-height: 92vh; overflow-y: auto;
  position: relative; padding: 2.5rem;
  transform: translateY(24px); transition: transform .3s var(--ease);
  box-shadow: 0 40px 100px rgba(0,0,0,.28);
}
.modal-overlay.active .modal-container { transform: translateY(0); }

.modal-close {
  position: absolute; top: 1.1rem; right: 1.1rem;
  width: 34px; height: 34px; border-radius: 8px;
  border: 1.5px solid var(--border); background: var(--white);
  color: var(--text-mid); font-size: 1.2rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition); line-height: 1;
}
.modal-close:hover { background: var(--off-white); color: var(--text-dark); }

.progress-bar { height: 4px; background: var(--border); border-radius: 2px; margin-bottom: .6rem; }
.progress-fill {
  height: 100%; background: linear-gradient(to right, var(--navy), var(--aqua));
  border-radius: 2px; width: 0%; transition: width .4s var(--ease);
}
.step-indicator { font-size: .78rem; color: var(--text-light); margin-bottom: 1.75rem; min-height: 1.2em; }

.step { display: none; }
.step.active { display: block; }
.step h2 { font-size: 1.35rem; color: var(--navy-dark); margin-bottom: .4rem; }
.step-subtitle { color: var(--text-mid); font-size: .88rem; margin-bottom: 1.6rem; }

.q-input {
  width: 100%; padding: .75rem 1rem; border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); font-family: 'Inter', sans-serif;
  font-size: .88rem; color: var(--text-dark); background: var(--white);
  transition: var(--transition); outline: none;
}
.q-input:focus { border-color: var(--navy); box-shadow: 0 0 0 3px rgba(27,58,107,.1); }

.checkbox-group,
.radio-group { display: flex; flex-direction: column; gap: .6rem; }

.checkbox-label,
.radio-label {
  display: flex; align-items: center; gap: .75rem;
  padding: .8rem 1rem; border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); cursor: pointer;
  transition: var(--transition); font-size: .88rem; color: var(--text-mid);
}
.checkbox-label:hover,
.radio-label:hover { border-color: var(--navy); background: var(--light-bg); color: var(--navy); }
.checkbox-label input,
.radio-label input { accent-color: var(--navy); width: 16px; height: 16px; flex-shrink: 0; }

.step-actions { display: flex; gap: .75rem; margin-top: 2rem; flex-wrap: wrap; }
.step-actions.center { justify-content: center; flex-direction: column; align-items: center; }

.step-welcome { text-align: center; padding: .5rem 0; }
.welcome-icon {
  width: 76px; height: 76px; border-radius: 50%; background: var(--light-bg);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem;
}
.welcome-icon svg { stroke: var(--navy); }
.step-welcome h2 { margin-bottom: .875rem; }
.step-welcome > p { color: var(--text-mid); font-size: .92rem; margin-bottom: .875rem; }
.welcome-note {
  font-size: .8rem; color: var(--text-light);
  background: var(--off-white); border-radius: var(--radius-sm);
  padding: .7rem 1rem; margin-bottom: .5rem;
}

.summary-screen { text-align: center; padding: .5rem 0; }
.summary-icon {
  width: 60px; height: 60px; border-radius: 50%; background: #E8F5E9; color: #2E7D32;
  font-size: 1.6rem; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
}
.summary-screen h2 { margin-bottom: .4rem; color: var(--navy-dark); }
.summary-screen > p { color: var(--text-mid); font-size: .88rem; margin-bottom: 1.25rem; }
.summary-card {
  background: var(--off-white); border-radius: var(--radius-sm);
  padding: 1.25rem; text-align: left; border: 1px solid var(--border);
}
.summary-item {
  display: flex; justify-content: space-between; align-items: flex-start;
  padding: .45rem 0; border-bottom: 1px solid var(--border);
  font-size: .83rem; gap: 1rem;
}
.summary-item:last-child { border-bottom: none; }
.summary-item .label { color: var(--text-light); white-space: nowrap; }
.summary-item .value { color: var(--text-dark); font-weight: 500; text-align: right; }

/* ============================================
   SCROLL REVEAL
   ============================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: .1s; }
.reveal-d2 { transition-delay: .2s; }
.reveal-d3 { transition-delay: .3s; }

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

/* Prevent horizontal overflow globally */
html { overflow-x: hidden; }

@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .testimonials-static { grid-template-columns: repeat(3,1fr); }
  .about-grid { gap: 3rem; }
  .contact-grid { gap: 3rem; }
}

@media (max-width: 768px) {
  /* ─ Navbar ─ */
  .nav-links {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--white); flex-direction: column; padding: .5rem 1.5rem 1.5rem;
    gap: 0; box-shadow: var(--shadow-md); z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-link { color: var(--text-dark) !important; padding: .75rem 0; border-bottom: 1px solid var(--border); width: 100%; }
  .nav-link::after { display: none; }
  .nav-link.nav-cta { background: var(--navy); color: var(--white) !important; text-align: center; border-bottom: none; margin-top: .5rem; padding: .75rem; border-radius: 8px; }
  .nav-toggle { display: flex; }

  /* ─ Hero ─ */
  .hero { padding: 5.5rem 1.25rem 5rem; min-height: auto; overflow-x: hidden; overflow-y: visible; }
  .hero::after { display: none; }
  .hero-content { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
  .hero-image { order: -1; justify-content: center; padding: 1.5rem 0 0; }
  /* Hide floating badges — too cramped on mobile */
  .hero-badge, .hero-badge-2 { display: none; }
  .photo-frame { width: 180px; height: 220px; }
  .hero-title { font-size: clamp(2rem, 8vw, 2.8rem); }
  .hero-subtitle { font-size: .85rem; margin-bottom: 1.25rem; }
  .hero-description { font-size: .98rem; margin: 0 auto 1.5rem; max-width: 320px; }
  .hero-trust { align-items: center; gap: .4rem; }
  .trust-item { font-size: .82rem; }
  .hero-actions { justify-content: center; flex-direction: column; align-items: center; gap: .75rem; margin-bottom: 1.5rem; }
  .hero-actions .btn { width: 100%; max-width: 300px; min-height: 3.25rem; }
  .hero-scroll { display: none; }

  /* ─ Sections: vertical padding ─ */
  .about, .services, .testimonials, .appointment, .contact { padding: 5.5rem 0; }
  .section-header { margin-bottom: 2rem; }

  /* ─ About ─ */
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-photo-placeholder { aspect-ratio: 3/2; max-height: 260px; }
  .credentials-card { padding: 1.25rem; }
  .credentials-card li { font-size: .82rem; }

  /* ─ Services ─ */
  .services-grid { grid-template-columns: 1fr; gap: 1rem; margin-bottom: 0; }
  .service-card { padding: 1.5rem; }

  /* ─ Testimonials — 1 column on mobile, no interaction ─ */
  .testimonials-static { grid-template-columns: 1fr; gap: 1rem; }
  .testimonial-card { padding: 1.5rem; }

  /* ─ Contact ─ */
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .contact-form-card { padding: 1.5rem; }

  /* ─ Footer ─ */
  .footer { padding: 3rem 0 1.5rem; }
  .footer-content { grid-template-columns: 1fr; gap: 1.75rem; padding-bottom: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; gap: .25rem; }

  /* ─ Modal ─ */
  .modal-container { padding: 1.75rem 1.25rem; border-radius: 12px; }
  .step h2 { font-size: 1.2rem; }
  .checkbox-label, .radio-label { padding: .7rem .875rem; font-size: .84rem; }
}

@media (max-width: 480px) {
  .step-actions:not(.center) { flex-direction: column; }
  .step-actions .btn { width: 100%; }
  /* Testimonials stay 1 column */
  .testimonials-static { grid-template-columns: 1fr; }
  /* Services 1 column */
  .services-grid { grid-template-columns: 1fr; }
  /* Footer brand text */
  .footer-brand p { font-size: .8rem; }
}
