/* ============================================================
   DFWOMS — Sistema CSS Global
   /wp-content/themes/astra-child/dfwoms.css

   Fuente Outfit: cargada desde Astra Customizer.
   NO se importa aquí ninguna Google Font.

   ÍNDICE
   1. Base / Reset
   2. Tokens de color
   3. Tipografía
   4. Layout  (secciones, hero dark, hero media)
   5. Componentes
      5a. Eyebrows
      5b. Títulos y subtítulos de sección
      5c. Botón primario (píldora + flecha)
      5d. Botón outline / ghost
      5e. Bloque CTA (dark centered)
      5f. Stat cards (glassmorphism)
      5g. Badges / cert pills
      5h. Trust pills
      5i. Card line (animated)
      5j. Divider
      5k. Hero promise blockquote
      5l. Meta pills row
   6. Utilidades
   7. Responsive

   PAGE SECTIONS — CSS específico por página
   P1. contact        (#dfw-contact  · ct-)
   P2. instructions   (#dfw-inst     · inst-)
   P3. implants       (#dfw-proc     · proc-)
   P4. registration   (#dfw-reg      · reg-)
   P5. team           (#dfw-team     · tm-  +  #tm-hero-v2  · tmh-)
   P6. referrals      (#dfw-ref      · ref-)
   P7. home           (#dfw-hh       · hh-)
   P8. meet-our-doctors (#dr-page   · dr-)
   ============================================================ */


/* ============================================================
   1. BASE / RESET
   ============================================================ */
#dr-page *,
#dfw-contact *,
#dfw-hh *,
#dfw-inst *,
#dfw-proc *,
#dfw-ref *,
#dfw-reg *,
#dfw-team *,
#tm-hero-v2 * {
  box-sizing: border-box;
}

#dr-page a,
#dfw-contact a,
#dfw-hh a,
#dfw-inst a,
#dfw-proc a,
#dfw-ref a,
#dfw-reg a,
#dfw-team a,
#tm-hero-v2 a {
  text-decoration: none;
}

#dr-page,
#dfw-contact,
#dfw-inst,
#dfw-proc,
#dfw-ref,
#dfw-reg,
#dfw-team {
  background: #f9f9f9;
  width: 100%;
  font-family: inherit;
}


/* ============================================================
   2. TOKENS DE COLOR
   ============================================================ */
:root {
  --navy:           #0f1d5e;
  --cyan:           #1096d4;
  --cyan-hover:     #0d7fb3;
  --violet:         #6b4fbb;
  --violet-light:   #8b6fd4;
  --dark:           #080f26;
  --navy-mid:       #383e72;

  /* Superficies */
  --bg-page:        #f9f9f9;
  --bg-mid:         #f0f4f8;
  --bg-white:       #ffffff;

  /* Texto */
  --text-body:      #4a5568;
  --text-dark:      #2d3748;
  --text-muted:     #888;
}


/* ============================================================
   3. TIPOGRAFÍA
   Outfit cargada por Astra — solo escalas de referencia.
   ============================================================ */
/* H1 grandes → clamp(36px, 5vw, 62px) — aplicado inline en páginas que lo necesiten */
/* H2 secciones → clamp(22px, 3vw, 34px) — idem */


/* ============================================================
   4. LAYOUT
   ============================================================ */

/* ---- Secciones ---- */
.dfw-section {
  padding: 72px 56px;
}
.dfw-section--white     { background: #fff; }
.dfw-section--mid       { background: var(--bg-mid); }
.dfw-section--dark      { background: var(--dark); }
.dfw-section--navy      { background: var(--navy); }
.dfw-section--navy-mid  { background: var(--navy-mid); }

.dfw-section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.dfw-section-header {
  margin-bottom: 52px;
}
.dfw-section-header--tight    { margin-bottom: 32px; }
.dfw-section-header--centered { text-align: center; }

/* ---- Hero dark (dot-grid + glows reutilizables) ---- */
.dfw-hero-dark {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

/* Dot-grid */
.dfw-hero-dark::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(16,150,212,0.12) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
  opacity: 0.6;
}

/* Glow superior derecho */
.dfw-hero-dark::after {
  content: '';
  position: absolute;
  top: -160px; right: -160px;
  width: 520px; height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(16,150,212,0.09) 0%, transparent 65%);
  pointer-events: none;
}

/* Glow inferior izquierdo — elemento hijo */
.dfw-hero-glow2 {
  position: absolute;
  bottom: -120px; left: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(107,79,187,0.07) 0%, transparent 65%);
  pointer-events: none;
}

/* Inner hero 2 columnas */
.dfw-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.dfw-hero-inner--2col {
  grid-template-columns: 1fr 1fr;
}

/* Hero actions row */
.dfw-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.dfw-hero-actions--spaced {
  margin-top: 28px;
}


/* ============================================================
   5. COMPONENTES
   ============================================================ */

/* ---- 5a. Eyebrows ---- */
.dfw-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.dfw-eyebrow::before {
  content: '';
  display: block;
  width: 16px;
  height: 1.5px;
  background: var(--cyan);
  flex-shrink: 0;
}

/* Hero eyebrow: letra más espaciada, línea más delgada */
.dfw-eyebrow--hero {
  letter-spacing: 0.26em;
  margin-bottom: 16px;
  gap: 10px;
}
.dfw-eyebrow--hero::before {
  width: 18px;
  height: 1px;
}

/* Variante violeta */
.dfw-eyebrow--violet         { color: var(--violet); }
.dfw-eyebrow--violet::before { background: var(--violet); }

/* Sobre fondos oscuros */
.dfw-eyebrow--light         { color: rgba(255,255,255,0.5); }
.dfw-eyebrow--light::before { background: rgba(255,255,255,0.3); }

/* Navy atenuado (para secciones claras con poco contraste) */
.dfw-eyebrow--muted         { color: rgba(15,29,94,0.4); }
.dfw-eyebrow--muted::before { background: rgba(15,29,94,0.2); }

/* Violeta-light (#8b6fd4) — sobre fondos oscuros */
.dfw-eyebrow--violet-light         { color: var(--violet-light); }
.dfw-eyebrow--violet-light::before { background: var(--violet-light); }

/* Centrado — para eyebrows dentro de headers centrados */
.dfw-eyebrow--centered { justify-content: center; }

/* CTA eyebrow — centrado, líneas en ambos lados */
.dfw-cta-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.dfw-cta-eyebrow::before,
.dfw-cta-eyebrow::after {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: rgba(255,255,255,0.2);
}
/* Variante cyan (ej: team CTA) */
.dfw-cta-eyebrow--cyan         { color: var(--cyan); }
.dfw-cta-eyebrow--cyan::before,
.dfw-cta-eyebrow--cyan::after  { background: var(--cyan); }
/* Variante blanco puro (ej: instructions CTA) */
.dfw-cta-eyebrow--white         { color: #fff; }
.dfw-cta-eyebrow--white::before,
.dfw-cta-eyebrow--white::after  { background: #fff; }
/* Variante violet-light (ej: referrals CTA) */
.dfw-cta-eyebrow--violet         { color: var(--violet-light); }
.dfw-cta-eyebrow--violet::before,
.dfw-cta-eyebrow--violet::after  { background: rgba(107,79,187,0.4); }


/* ---- 5b. Títulos y subtítulos de sección ---- */
.dfw-section-title {
  color: var(--navy);
  letter-spacing: -0.02em;
  margin: 0 0 10px;
}
.dfw-section-title--light { color: #fff; }

.dfw-section-sub {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}
.dfw-section-sub--light  { color: rgba(255,255,255,0.45); }
.dfw-section-sub--spaced { margin-top: 10px; }
.dfw-section-sub--narrow { max-width: 520px; }
.dfw-section-sub--auto   { margin-left: auto; margin-right: auto; }


/* ---- 5c. Botón primario (píldora + flecha) ---- */
/* Estructura: <a class="dfw-btn-primary">
                 <span class="dfw-btn-primary-text">…</span>
                 <span class="dfw-btn-primary-arr">→</span>
               </a> */
.dfw-btn-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  background: var(--cyan);
  border-radius: 100px;
  padding: 0;
  border: none;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 4px 24px rgba(16,150,212,0.4);
  transition: box-shadow 0.3s;
}
.dfw-btn-primary:hover {
  box-shadow: 0 8px 40px rgba(16,150,212,0.55);
}
.dfw-btn-primary-text {
  padding: 14px 22px 14px 26px;
  position: relative;
  z-index: 2;
  white-space: nowrap;
  transition: letter-spacing 0.3s cubic-bezier(.23,1,.32,1);
}
.dfw-btn-primary:hover .dfw-btn-primary-text {
  letter-spacing: 0.16em;
}
.dfw-btn-primary-arr {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(0,0,0,.2);
  font-size: 16px;
  position: relative;
  z-index: 2;
  transition: background 0.3s, transform 0.3s cubic-bezier(.23,1,.32,1);
  flex-shrink: 0;
}
.dfw-btn-primary:hover .dfw-btn-primary-arr {
  background: rgba(0,0,0,.3);
  transform: translateX(4px);
}
/* Shine sweep */
.dfw-btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: -100%; bottom: 0;
  width: 60%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.12), transparent);
  transition: left .5s cubic-bezier(.23,1,.32,1);
  z-index: 1;
}
.dfw-btn-primary:hover::before { left: 160%; }

/* Variante violeta (ej: team hero) */
.dfw-btn-primary--violet {
  background: var(--violet-light);
  box-shadow: 0 4px 24px rgba(139,111,212,0.4);
}
.dfw-btn-primary--violet:hover {
  box-shadow: 0 8px 40px rgba(139,111,212,0.55);
}


/* ---- 5d. Botón outline / ghost ---- */
.dfw-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  border: 1.5px solid rgba(255,255,255,0.18);
  border-radius: 100px;
  padding: 12px 26px;
  transition: border-color 0.2s, color 0.2s;
}
.dfw-btn-outline:hover {
  border-color: var(--cyan);
  color: var(--cyan);
}
/* Variante cyan (sobre fondos claros) */
.dfw-btn-outline--cyan {
  color: var(--cyan);
  border-color: rgba(16,150,212,0.3);
}
.dfw-btn-outline--cyan:hover {
  background: var(--cyan);
  color: #fff;
  border-color: var(--cyan);
}


/* ---- 5e. Bloque CTA centrado (dark) ---- */
.dfw-cta {
  background: var(--dark);
  padding: 80px 56px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.dfw-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(107,79,187,0.1) 0%, transparent 60%);
  pointer-events: none;
}
.dfw-cta-inner {
  max-width: 620px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.dfw-cta-title {
  color: #fff;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
}
.dfw-cta-title span { color: var(--cyan); }
.dfw-cta-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  margin: 0 0 36px;
}
.dfw-cta-phone {
  font-size: 34px;
  font-weight: 900;
  color: var(--cyan);
  display: block;
  margin-bottom: 28px;
  letter-spacing: -0.02em;
  transition: color 0.2s;
}
.dfw-cta-phone:hover { color: #fff; }
.dfw-cta-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}


/* ---- 5f. Stat cards (glassmorphism dark) ---- */
.dfw-stat-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 18px;
  transition: border-color 0.25s;
}
.dfw-stat-card:hover {
  border-color: rgba(16,150,212,0.35);
}
.dfw-stat-num {
  font-size: 28px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1;
  white-space: nowrap;
}
.dfw-stat-num span { color: var(--cyan); }
.dfw-stat-label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  margin: 0 0 2px;
}
.dfw-stat-sub {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  font-weight: 400;
}


/* ---- 5g. Badges / cert pills ---- */
.dfw-badge {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan);
  background: rgba(16,150,212,0.08);
  border: 1px solid rgba(16,150,212,0.2);
  border-radius: 100px;
  padding: 3px 10px;
  display: inline-block;
}
.dfw-badge--muted {
  color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.1);
}


/* ---- 5h. Trust pills (hero right col) ---- */
.dfw-trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 100px;
  padding: 10px 18px;
  white-space: nowrap;
  transition: border-color 0.25s;
}
.dfw-trust-pill:hover {
  border-color: rgba(16,150,212,0.35);
}
.dfw-trust-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--cyan);
  flex-shrink: 0;
}


/* ---- 5i. Card line animada (bottom) ---- */
.dfw-card-line {
  position: absolute;
  bottom: 0; left: 0;
  width: 0;
  height: 2.5px;
  background: var(--cyan);
  transition: width 0.4s cubic-bezier(.23,1,.32,1);
}


/* ---- 5j. Divider horizontal ---- */
.dfw-divider {
  width: 100%;
  height: 1px;
  background: rgba(15,29,94,0.07);
}
.dfw-divider--spaced { margin: 40px 0 52px; }


/* ---- 5k. Hero promise (blockquote lateral) ---- */
.dfw-hero-promise {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  line-height: 1.85;
  margin: 0 0 32px;
  font-weight: 400;
  border-left: 3px solid var(--cyan);
  padding-left: 18px;
}
.dfw-hero-promise strong {
  color: rgba(255,255,255,0.82);
  font-weight: 600;
}


/* ---- 5l. Meta pills row ---- */
.dfw-meta-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}


/* ============================================================
   6. UTILIDADES
   ============================================================ */
.dfw-text-cyan  { color: var(--cyan); }
.dfw-text-navy  { color: var(--navy); }
.dfw-text-white { color: #fff; }
.dfw-text-muted { color: rgba(255,255,255,0.45); }
.dfw-nowrap     { white-space: nowrap; }
.dfw-sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}


/* ============================================================
   7. RESPONSIVE (global)
   ============================================================ */
@media (max-width: 1024px) {
  .dfw-section,
  .dfw-cta {
    padding-left: 32px;
    padding-right: 32px;
  }
}
@media (max-width: 768px) {
  .dfw-section,
  .dfw-cta {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 56px;
    padding-bottom: 56px;
  }
  .dfw-hero-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .dfw-cta-actions {
    flex-direction: column;
    align-items: center;
  }
}


/* ============================================================
   P1. PAGE: CONTACT   (#dfw-contact · ct-)
   ============================================================ */

/* Hero */
.ct-hero {
  background: #080f26;
  padding: 88px 56px 80px;
  position: relative;
  overflow: hidden;
}
.ct-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(16,150,212,0.1) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.5;
  pointer-events: none;
}
.ct-hero::after {
  content: '';
  position: absolute;
  bottom: -120px; right: -120px;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(16,150,212,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.ct-hero-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: end;
  position: relative;
  z-index: 1;
}
.ct-hero-h1 { color: #fff; letter-spacing: -0.02em; margin: 0 0 20px; }
.ct-hero-h1 span { color: var(--cyan); }
.ct-hero-intro {
  color: rgba(255,255,255,0.55);
  line-height: 1.85;
  max-width: 560px;
  margin: 0;
  font-size: 15px;
}

/* Quick contact (col derecha del hero) */
.ct-hero-quick {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 28px 24px;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.ct-hero-quick-label {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 4px;
}
.ct-quick-phone {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.01em;
  display: block;
  transition: color 0.2s;
}
.ct-quick-phone:hover { color: var(--cyan); }
.ct-quick-phone--sm   { font-size: 16px; }
.ct-quick-sub { font-size: 11px; color: rgba(255,255,255,0.3); margin-top: -8px; }
.ct-quick-sep { height: 1px; background: rgba(255,255,255,0.07); }
.ct-quick-link {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cyan);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}
.ct-quick-link:hover { color: #fff; }
.ct-quick-link svg {
  width: 12px; height: 12px;
  fill: none; stroke: currentColor;
  stroke-width: 2; stroke-linecap: round;
}

/* Contact — ancho del inner en sus secciones es 1080px */
.ct-section-inner { max-width: 1080px; margin: 0 auto; }

/* Location cards */
.ct-loc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
.ct-loc-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px;
  padding: 0;
  overflow: hidden;
  position: relative;
  transition: border-color 0.3s, transform 0.3s cubic-bezier(.23,1,.32,1);
}
.ct-loc-card:hover {
  border-color: rgba(16,150,212,0.4);
  transform: translateY(-4px);
}
.ct-loc-card:hover .dfw-card-line { width: 100%; }
.ct-loc-img {
  width: 100%; height: 180px;
  overflow: hidden; position: relative;
}
.ct-loc-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.55) saturate(0.7);
  transition: transform 0.5s cubic-bezier(.23,1,.32,1), filter 0.3s;
  display: block;
}
.ct-loc-card:hover .ct-loc-img img {
  transform: scale(1.05);
  filter: brightness(0.65) saturate(0.85);
}
.ct-loc-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(8,15,38,0.9) 100%);
}
.ct-loc-img-badge {
  position: absolute;
  bottom: 12px; left: 16px;
  z-index: 2;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: rgba(8,15,38,0.8);
  border: 1px solid rgba(16,150,212,0.3);
  color: var(--cyan);
  border-radius: 100px;
  padding: 4px 12px;
}
.ct-loc-body { padding: 22px 22px 20px; }
.ct-loc-city {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 2px;
  letter-spacing: -0.01em;
}
.ct-loc-sub {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 14px;
}
.ct-loc-addr {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
  margin: 0 0 12px;
}
.ct-loc-phone {
  font-size: 16px;
  font-weight: 700;
  color: var(--cyan);
  display: block;
  margin-bottom: 18px;
  letter-spacing: 0.01em;
  transition: color 0.2s;
}
.ct-loc-phone:hover { color: #fff; }
.ct-loc-hours {
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  margin-bottom: 18px;
  line-height: 1.6;
}
.ct-loc-actions { display: flex; flex-direction: column; gap: 8px; }
.ct-loc-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  border-radius: 100px;
  padding: 9px 18px;
  width: 100%;
  justify-content: center;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.ct-loc-btn-primary {
  color: #fff;
  background: var(--cyan);
  border: 1px solid var(--cyan);
}
.ct-loc-btn-primary:hover {
  background: var(--cyan-hover);
  border-color: var(--cyan-hover);
}
.ct-loc-btn-secondary {
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.12);
  background: transparent;
}
.ct-loc-btn-secondary:hover {
  border-color: var(--cyan);
  color: var(--cyan);
}
.ct-loc-btn svg {
  width: 12px; height: 12px;
  fill: none; stroke: currentColor;
  stroke-width: 2; stroke-linecap: round;
  flex-shrink: 0;
}

/* Mapa */
.ct-map-wrap {
  width: 100%; height: 380px;
  border-radius: 20px; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  background: #1a2a6e;
  position: relative;
}
.ct-map-wrap iframe { width: 100%; height: 100%; border: none; display: block; }
.ct-map-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
}
.ct-map-placeholder svg {
  width: 32px; height: 32px;
  fill: none;
  stroke: rgba(255,255,255,0.2);
  stroke-width: 1.5;
}
.ct-map-placeholder span {
  font-size: 12px;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}

/* Formulario */
.ct-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.ct-form { display: flex; flex-direction: column; gap: 16px; }
.ct-field-group { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.ct-field { display: flex; flex-direction: column; gap: 6px; }
.ct-field-full { grid-column: 1 / -1; }
.ct-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(15,29,94,0.5);
}
.ct-input,
.ct-select,
.ct-textarea {
  background: #f9f9f9;
  border: 1px solid rgba(15,29,94,0.12);
  border-radius: 10px;
  padding: 13px 16px;
  font-size: 14px;
  color: var(--navy);
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  width: 100%;
}
.ct-input:focus,
.ct-select:focus,
.ct-textarea:focus {
  border-color: var(--cyan);
  background: #fff;
}
.ct-input::placeholder,
.ct-textarea::placeholder { color: rgba(15,29,94,0.3); }
.ct-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%231096d4' stroke-width='2' stroke-linecap='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.ct-textarea { min-height: 120px; resize: vertical; }
.ct-privacy-note {
  font-size: 12px;
  color: #888;
  line-height: 1.7;
  padding: 12px 14px;
  background: rgba(15,29,94,0.04);
  border: 1px solid rgba(15,29,94,0.08);
  border-left: 3px solid rgba(15,29,94,0.2);
  border-radius: 0 8px 8px 0;
  margin-top: 4px;
}

/* Info lateral del formulario */
.ct-form-info { display: flex; flex-direction: column; gap: 28px; }
.ct-form-info-icon {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: rgba(16,150,212,0.08);
  border: 1px solid rgba(16,150,212,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.ct-form-info-icon svg {
  width: 18px; height: 18px;
  fill: none;
  stroke: var(--cyan);
  stroke-width: 1.5;
  stroke-linecap: round;
}
.ct-form-info-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 4px;
}
.ct-form-info-text {
  font-size: 13px;
  color: #888;
  line-height: 1.7;
  margin: 0;
}
.ct-form-info-text a {
  color: var(--cyan);
  border-bottom: 1px solid rgba(16,150,212,0.3);
  transition: border-color 0.2s;
}
.ct-form-info-text a:hover { border-color: var(--cyan); }
.ct-form-sep { width: 100%; height: 1px; background: rgba(15,29,94,0.07); }

/* Areas we serve */
.ct-areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.ct-area-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 18px;
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s;
}
.ct-area-card:hover { border-color: rgba(16,150,212,0.3); }
.ct-area-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--cyan), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.ct-area-card:hover::before { opacity: 1; }
.ct-area-office {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.ct-area-office::before {
  content: '';
  display: block;
  width: 10px; height: 1px;
  background: var(--cyan);
}
.ct-area-city {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 16px;
  letter-spacing: -0.01em;
}
.ct-area-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.ct-area-tag {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 100px;
  padding: 4px 12px;
}

/* Hours */
.ct-hours-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.ct-hours-card {
  background: #fff;
  border: 1px solid rgba(15,29,94,0.07);
  border-radius: 18px;
  padding: 28px 24px;
  position: relative;
}
.ct-hours-city  { font-size: 17px; font-weight: 700; color: var(--navy); margin: 0 0 4px; }
.ct-hours-addr  { font-size: 12px; color: #aaa; margin: 0 0 20px; }
.ct-hours-sep   { width: 100%; height: 1px; background: rgba(15,29,94,0.07); margin-bottom: 18px; }
.ct-hours-row   {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  border-bottom: 1px solid rgba(15,29,94,0.04);
}
.ct-hours-row:last-child { border-bottom: none; }
.ct-hours-day    { font-size: 13px; color: #888; font-weight: 400; }
.ct-hours-time   { font-size: 13px; color: var(--navy); font-weight: 600; }
.ct-hours-closed { font-size: 13px; color: #bbb; font-weight: 400; font-style: italic; }
.ct-hours-verify {
  margin-top: 16px;
  padding: 10px 14px;
  background: rgba(16,150,212,0.05);
  border: 1px solid rgba(16,150,212,0.15);
  border-radius: 8px;
  font-size: 11px;
  color: var(--cyan);
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.04em;
}

/* Contact CTA (tiene su propio fondo navy, diferente del dfw-cta dark) */
.ct-cta {
  background: var(--navy);
  padding: 72px 56px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.ct-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(16,150,212,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.ct-cta-inner {
  max-width: 640px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.ct-cta-phone {
  font-size: 36px;
  font-weight: 900;
  color: var(--cyan);
  display: block;
  margin-bottom: 28px;
  letter-spacing: -0.02em;
  transition: color 0.2s;
}
.ct-cta-phone:hover { color: #fff; }
.ct-cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* Contact responsive */
@media (max-width: 1024px) {
  .ct-hero { padding-left: 32px; padding-right: 32px; }
  .ct-cta  { padding-left: 32px; padding-right: 32px; }
  .ct-hero-inner { grid-template-columns: 1fr; }
  .ct-hero-quick { display: none; }
}
@media (max-width: 768px) {
  .ct-hero { padding-left: 20px; padding-right: 20px; padding-top: 52px; padding-bottom: 52px; }
  .ct-cta  { padding-left: 20px; padding-right: 20px; padding-top: 52px; padding-bottom: 52px; }
  .ct-loc-grid,
  .ct-areas-grid,
  .ct-hours-grid  { grid-template-columns: 1fr; }
  .ct-form-grid   { grid-template-columns: 1fr; }
  .ct-field-group { grid-template-columns: 1fr; }
  .ct-cta-actions { flex-direction: column; align-items: center; }
}


/* ============================================================
   P2. PAGE: INSTRUCTIONS   (#dfw-inst · inst-)
   ============================================================ */

/* Hero — fondo gris claro, dos columnas */
.inst-hero {
  background: #ececec;
  border-bottom: 1px solid rgba(15,29,94,0.07);
  padding: 64px 56px 78px;
}
.inst-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.inst-hero-content { min-width: 0; }
.inst-hero-media {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  border-radius: 20px;
  overflow: hidden;
}
.inst-hero-img {
  width: 100%;
  height: auto;
  max-height: 460px;
  object-fit: cover;
  display: block;
}
.inst-h1 { color: var(--navy); letter-spacing: -0.02em; margin: 0 0 24px; }
.inst-h1 span { color: var(--violet-light); }
.inst-intro {
  color: #4a5568;
  line-height: 1.9;
  max-width: 680px;
  margin: 0 0 28px;
}
.inst-intro strong { color: var(--navy); font-weight: 600; }

/* Meta pills instructions */
.inst-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(15,29,94,0.5);
  background: rgba(15,29,94,0.05);
  border: 1px solid rgba(15,29,94,0.1);
  border-radius: 100px;
  padding: 5px 14px;
}
.inst-pill-blue {
  color: var(--cyan);
  background: rgba(16,150,212,0.07);
  border-color: rgba(16,150,212,0.18);
}

/* Lang label */
.inst-lang-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 40px;
}
.inst-lang-en {
  color: var(--navy);
  background: rgba(15,29,94,0.06);
  border: 1px solid rgba(15,29,94,0.1);
}
.inst-lang-es {
  color: var(--cyan);
  background: rgba(16,150,212,0.07);
  border: 1px solid rgba(16,150,212,0.18);
}

/* Instruction items */
.inst-list { display: flex; flex-direction: column; }
.inst-item {
  border-top: 1px solid rgba(15,29,94,0.07);
  padding: 32px 0;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  align-items: start;
  position: relative;
}
.inst-item:last-child { border-bottom: 1px solid rgba(15,29,94,0.07); }
.inst-num {
  font-size: 12px;
  font-weight: 800;
  color: rgba(16,150,212,0.4);
  letter-spacing: 0.08em;
  line-height: 1.6;
  min-width: 28px;
  padding-top: 1px;
  transition: color 0.2s;
}
.inst-item:hover .inst-num { color: var(--cyan); }
.inst-item-title {
  color: var(--navy);
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.inst-item-desc { color: #4a5568; line-height: 1.85; margin: 0; }
.inst-item-desc strong { color: var(--navy); font-weight: 600; }

/* Accent crítico */
.inst-item.critical { padding-left: 20px; }
.inst-item.critical::before {
  content: '';
  position: absolute;
  left: 0; top: 32px; bottom: 32px;
  width: 3px;
  background: #dc2626;
  border-radius: 0 2px 2px 0;
}
.inst-item.critical .inst-item-title { color: #dc2626; }
.inst-item.critical .inst-num { color: rgba(220,38,38,0.5); }
.inst-item.critical:hover .inst-num { color: #dc2626; }

/* Accent importante */
.inst-item.important { padding-left: 20px; }
.inst-item.important::before {
  content: '';
  position: absolute;
  left: 0; top: 32px; bottom: 32px;
  width: 3px;
  background: var(--cyan);
  border-radius: 0 2px 2px 0;
}

/* Tags inline */
.inst-tag {
  display: inline-flex;
  align-items: center;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 4px;
  padding: 3px 8px;
  margin-left: 8px;
  vertical-align: middle;
}
.inst-tag-critical {
  background: #fef2f2;
  color: #dc2626;
  border: 1px solid rgba(220,38,38,0.2);
}
.inst-tag-info {
  background: rgba(16,150,212,0.08);
  color: var(--cyan);
  border: 1px solid rgba(16,150,212,0.2);
}

/* Instructions CTA (tiene imagen de fondo propia) */
.inst-cta {
  background: var(--navy);
  padding: 80px 56px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.inst-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  filter: contrast(1.1) brightness(1.05);
  background:
    linear-gradient(rgba(19,23,46,0.8), rgba(46,36,82,0.6)),
    url('https://lightgrey-rail-730166.hostingersite.com/wp-content/uploads/2026/04/dentista-recogiendo-utensilios-para-dientes-scaled.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  pointer-events: none;
}
.inst-cta-inner {
  max-width: 620px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.inst-cta-title {
  font-size: clamp(24px, 3.5vw, 42px);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 12px;
}
.inst-cta-sub {
  font-size: 13px;
  color: #fff;
  line-height: 1.7;
  font-weight: 400;
  margin: 0 0 36px;
}
.inst-cta-phone {
  font-size: 34px;
  font-weight: 900;
  color: #8cc6f2;
  letter-spacing: -0.02em;
  display: block;
  margin-bottom: 28px;
  transition: color 0.2s;
}
.inst-cta-phone:hover { color: #fff; }
.inst-cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* Instructions responsive */
@media (max-width: 1024px) {
  .inst-hero,
  .inst-cta { padding-left: 32px; padding-right: 32px; }
  .inst-hero-inner { gap: 40px; }
}
@media (max-width: 860px) {
  .inst-hero-inner { grid-template-columns: 1fr; gap: 36px; }
  .inst-hero-media  { justify-content: center; }
  .inst-hero-img    { max-height: 340px; }
}
@media (max-width: 768px) {
  .inst-hero,
  .inst-cta { padding-left: 20px; padding-right: 20px; padding-top: 56px; padding-bottom: 56px; }
  .inst-cta-actions { flex-direction: column; align-items: center; }
  .inst-item { gap: 16px; }
  .inst-hero-img { border-radius: 16px; }
}


/* ============================================================
   P3. PAGE: IMPLANTS   (#dfw-proc · proc-)
   ============================================================ */

/* Hero (bg image + overlay) */
.proc-hero {
  background: var(--dark);
  padding: 190px 56px 78px;
  position: relative;
  overflow: hidden;
}
.proc-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(16,150,212,0.12) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
  opacity: 0.6;
}
.proc-hero::after {
  content: '';
  position: absolute;
  top: -160px; right: -160px;
  width: 520px; height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(16,150,212,0.09) 0%, transparent 85%);
  pointer-events: none;
}
.proc-hero-glow2 {
  position: absolute;
  bottom: -120px; left: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(107,79,187,0.06) 0%, transparent 65%);
  pointer-events: none;
}
.proc-hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  opacity: 0.95;
  filter: saturate(0.5);
  z-index: 0;
}
.proc-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(108deg, rgba(8,15,38,.96) 0%, rgba(8,15,38,.7) 42%, rgba(8,15,38,.2) 100%);
  pointer-events: none;
  z-index: 1;
}
.proc-hero-inner {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 64px;
  align-items: center;
}
.proc-h1 { color: #fff; letter-spacing: -0.02em; margin: 0 0 10px; line-height: 1.05; }
.proc-h1 span { color: var(--cyan); }
.proc-intro-short {
  font-size: 16px;
  color: rgba(255,255,255,0.62);
  line-height: 1.8;
  margin: 0 0 32px;
  max-width: 560px;
  font-weight: 400;
}
.proc-hero-right { display: flex; flex-direction: column; gap: 10px; }
.proc-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* Body layout */
.proc-body { padding: 72px 56px; }
.proc-body-inner { max-width: 1200px; margin: 0 auto; }
.proc-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 56px;
  align-items: start;
}

/* Contenido */
.proc-text-block { margin-bottom: 44px; }
.proc-text-block--tight { margin-bottom: 20px; }
.proc-p { color: #4a5568; line-height: 1.85; margin: 0 0 14px; }
.proc-p:last-child { margin: 0; }
.proc-p strong { color: var(--navy); font-weight: 600; }

/* Highlight card (borde violeta) */
.proc-highlight {
  background: #fff;
  border: 1px solid rgba(107,79,187,0.10);
  border-left: 4px solid var(--violet);
  border-radius: 0 18px 18px 0;
  padding: 24px 24px 24px 28px;
  margin: 24px 0;
  box-shadow: 0 2px 12px rgba(107,79,187,0.06);
}
.proc-highlight-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 8px;
}
.proc-highlight-text {
  font-size: 13.5px;
  color: #4a5568;
  line-height: 1.75;
  margin: 0;
}

/* Why grid */
.proc-why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 24px;
}
.proc-why-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #fff;
  border: 1px solid rgba(15,29,94,0.07);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 2px 8px rgba(15,29,94,0.04);
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.proc-why-item:hover {
  border-color: rgba(16,150,212,0.25);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(15,29,94,0.08);
}
.proc-why-check {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(16,150,212,0.1);
  border: 1px solid rgba(16,150,212,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.proc-why-check svg {
  width: 11px; height: 11px;
  fill: none;
  stroke: var(--cyan);
  stroke-width: 2.5;
  stroke-linecap: round;
  display: block;
}
.proc-why-item.is-violet .proc-why-check {
  background: rgba(107,79,187,0.10);
  border-color: rgba(107,79,187,0.28);
}
.proc-why-item.is-violet .proc-why-check svg { stroke: var(--violet); }
.proc-why-item.is-violet:hover { border-color: rgba(107,79,187,0.28); }
.proc-why-text {
  font-size: 13px;
  color: var(--text-dark);
  line-height: 1.55;
  font-weight: 500;
}

/* Process steps */
.proc-steps { display: flex; flex-direction: column; }
.proc-step {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 20px;
  align-items: start;
  padding: 24px 0;
  border-top: 1px solid rgba(15,29,94,0.07);
}
.proc-step:last-child { border-bottom: 1px solid rgba(15,29,94,0.07); }
.proc-step-num {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(16,150,212,0.1);
  border: 1px solid rgba(16,150,212,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  color: var(--cyan);
  flex-shrink: 0;
}
.proc-step.is-violet .proc-step-num {
  background: rgba(107,79,187,0.10);
  border-color: rgba(107,79,187,0.22);
  color: var(--violet);
}
.proc-step-title { font-size: 15px; font-weight: 700; color: var(--navy); margin: 0 0 6px; }
.proc-step-desc { font-size: 13.5px; color: #4a5568; line-height: 1.75; margin: 0; }

/* FAQ */
.proc-faqs { display: flex; flex-direction: column; }
.proc-faq-item {
  border-top: 1px solid rgba(15,29,94,0.07);
  position: relative;
}
.proc-faq-item:last-child { border-bottom: 1px solid rgba(15,29,94,0.07); }
.proc-faq-item::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2.5px;
  background: var(--cyan);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.35s cubic-bezier(.23,1,.32,1);
}
.proc-faq-item.open::before { transform: scaleY(1); }
.proc-faq-item:nth-child(odd)::before { background: var(--violet); }
.proc-faq-trigger {
  width: 100%;
  background: #afbad0;
  border: none;
  cursor: pointer;
  padding: 22px 16px;
  display: grid;
  grid-template-columns: 1fr 28px;
  gap: 12px;
  align-items: center;
  text-align: left;
  transition: background .2s;
}
.proc-faq-trigger:hover { background: #afbad0; }
.proc-faq-q {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.01em;
  transition: color 0.2s;
}
.proc-faq-item.open .proc-faq-q,
.proc-faq-trigger:hover .proc-faq-q { color: var(--cyan); }
.proc-faq-item:nth-child(odd).open .proc-faq-q,
.proc-faq-item:nth-child(odd) .proc-faq-trigger:hover .proc-faq-q { color: var(--violet); }
.proc-faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(16,150,212,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s, transform 0.4s cubic-bezier(.23,1,.32,1);
}
.proc-faq-icon svg {
  width: 12px; height: 12px;
  fill: none;
  stroke: var(--cyan);
  stroke-width: 2;
  stroke-linecap: round;
  display: block;
}
.proc-faq-item:nth-child(odd) .proc-faq-icon { border-color: rgba(107,79,187,0.28); }
.proc-faq-item:nth-child(odd) .proc-faq-icon svg { stroke: var(--violet); }
.proc-faq-item.open .proc-faq-icon { background: var(--cyan); transform: rotate(45deg); }
.proc-faq-item:nth-child(odd).open .proc-faq-icon { background: var(--violet); }
.proc-faq-item.open .proc-faq-icon svg { stroke: #fff; }
.proc-faq-body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.45s cubic-bezier(.23,1,.32,1);
}
.proc-faq-item.open .proc-faq-body { max-height: 240px; }
.proc-faq-a {
  padding: 12px 16px 22px;
  font-size: 13.5px;
  color: #4a5568;
  line-height: 1.85;
  margin: 0;
}

/* Sidebar */
.proc-sidebar {
  position: sticky;
  top: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.proc-sidebar-cta {
  background: var(--navy);
  border-radius: 18px;
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 8px 32px rgba(15,29,94,0.2);
}
.proc-sidebar-cta::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 70% 10%, rgba(16,150,212,0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 15% 95%, rgba(139,111,212,0.14) 0%, transparent 55%);
  pointer-events: none;
}
.proc-cta-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 10px;
}
.proc-cta-title {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
  margin: 0 0 8px;
  line-height: 1.2;
}
.proc-cta-sub {
  font-size: 12.5px;
  color: rgba(255,255,255,0.42);
  line-height: 1.65;
  margin: 0 0 20px;
}
.proc-cta-phone {
  font-size: 20px;
  font-weight: 800;
  color: var(--cyan);
  display: block;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
  transition: color 0.2s;
  position: relative;
  z-index: 1;
}
.proc-cta-phone:hover { color: #fff; }
.proc-cta-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  background: var(--cyan);
  border-radius: 100px;
  padding: 13px 20px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(16,150,212,0.35);
  transition: box-shadow 0.3s, letter-spacing 0.3s;
  width: 100%;
  z-index: 1;
}
.proc-cta-btn:hover {
  box-shadow: 0 8px 32px rgba(16,150,212,0.55);
  letter-spacing: 0.16em;
}
.proc-cta-btn::before {
  content: '';
  position: absolute;
  top: 0; left: -100%; bottom: 0;
  width: 60%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.12), transparent);
  transition: left .5s cubic-bezier(.23,1,.32,1);
  z-index: 0;
}
.proc-cta-btn:hover::before { left: 160%; }

/* Sidebar related */
.proc-sidebar-related {
  background: #fff;
  border: 1px solid rgba(15,29,94,0.07);
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 2px 12px rgba(15,29,94,0.05);
}
.proc-related-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(15,29,94,0.4);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.proc-related-title::before {
  content: '';
  display: block;
  width: 16px; height: 1.5px;
  background: var(--violet);
}
.proc-related-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 500;
  color: var(--navy);
  padding: 10px 0;
  border-bottom: 1px solid rgba(15,29,94,0.06);
  transition: color 0.2s;
}
.proc-related-link:last-child { border-bottom: none; }
.proc-related-link:hover { color: var(--violet); }
.proc-related-link svg {
  width: 12px; height: 12px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  opacity: 0.4;
  transition: opacity 0.2s, transform 0.2s;
}
.proc-related-link:hover svg { opacity: 1; transform: translateX(3px); }

/* Sidebar insurance */
.proc-sidebar-ins {
  background: var(--bg-mid);
  border-radius: 14px;
  padding: 20px;
}
.proc-ins-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(15,29,94,0.4);
  margin-bottom: 8px;
}
.proc-ins-text {
  font-size: 12.5px;
  color: #4a5568;
  line-height: 1.65;
  margin: 0 0 12px;
}
.proc-ins-link {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--violet);
  display: flex;
  align-items: center;
  gap: 5px;
  transition: gap 0.2s, color 0.2s;
}
.proc-ins-link:hover { gap: 8px; color: var(--violet-light); }

/* CTA final implants (dos columnas, bg image) */
.proc-cta-section {
  position: relative;
  overflow: hidden;
  padding: 80px 56px;
  background: url('https://antiquewhite-crocodile-493293.hostingersite.com/wp-content/uploads/2026/04/istockphoto-1199167365-2048x2048-1.jpg') center/cover no-repeat;
}
.proc-cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(8,15,38,0.75);
  z-index: 0;
}
.proc-cta-section::after {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(16,150,212,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(107,79,187,0.07) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
}
.proc-cta-section-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.proc-cta-section-title {
  color: #fff;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
}
.proc-cta-section-title span { color: var(--cyan); }
.proc-cta-section-sub {
  font-size: 14px;
  color: #fff;
  line-height: 1.7;
  margin: 0;
}
.proc-cta-big-phone {
  font-size: 28px;
  font-weight: 900;
  color: var(--cyan);
  display: block;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
  transition: color 0.2s;
}
.proc-cta-big-phone:hover { color: #fff; }

/* Implants responsive */
@media (max-width: 1024px) {
  .proc-hero,
  .proc-body,
  .proc-cta-section { padding-left: 32px; padding-right: 32px; }
  .proc-layout { grid-template-columns: 1fr 260px; gap: 40px; }
}
@media (max-width: 768px) {
  .proc-hero,
  .proc-body,
  .proc-cta-section { padding-left: 20px; padding-right: 20px; padding-top: 56px; padding-bottom: 56px; }
  .proc-hero-inner { grid-template-columns: 1fr; }
  .proc-hero-right { display: none; }
  .proc-layout { grid-template-columns: 1fr; }
  .proc-sidebar { position: static; }
  .proc-why-grid { grid-template-columns: 1fr; }
  .proc-cta-section-inner { grid-template-columns: 1fr; gap: 32px; }
}


/* ============================================================
   P4. PAGE: REGISTRATION   (#dfw-reg · reg-)
   Nota: referring-doctors.html comparte este CSS.
   ============================================================ */

/* Hero */
.reg-hero {
  background: var(--dark);
  padding: 190px 56px 78px;
  position: relative;
  overflow: hidden;
}
.reg-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(16,150,212,0.13) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
  opacity: 0.6;
}
.reg-hero::after {
  content: '';
  position: absolute;
  top: -160px; right: -160px;
  width: 520px; height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(16,150,212,0.1) 0%, transparent 65%);
  pointer-events: none;
}
.reg-hero-glow2 {
  position: absolute;
  bottom: -120px; left: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(107,79,187,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.reg-hero-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.reg-h1 {
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
  line-height: 1.05;
}
.reg-h1 span { color: var(--cyan); }
.reg-hero-stats { display: flex; flex-direction: column; gap: 14px; }

/* Location cards (sobre fondo navy-mid) */
.reg-locations {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.reg-loc-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  transition: transform 0.3s cubic-bezier(.23,1,.32,1), border-color 0.3s;
}
.reg-loc-card:hover {
  transform: translateY(-4px);
  border-color: rgba(16,150,212,0.4);
}
.reg-loc-card:hover .dfw-card-line { width: 100%; }
.reg-loc-header {
  padding: 20px 22px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.reg-loc-num {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
}
.reg-loc-card:hover .reg-loc-num { color: var(--cyan); }
.reg-loc-flag {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cyan);
  background: rgba(16,150,212,0.12);
  border: 1px solid rgba(16,150,212,0.25);
  border-radius: 100px;
  padding: 3px 10px;
}
.reg-loc-body { padding: 20px 22px 22px; }
.reg-loc-city {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 3px;
  letter-spacing: -0.01em;
}
.reg-loc-sub {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 12px;
}
.reg-loc-addr {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
  margin: 0 0 10px;
}
.reg-loc-phone {
  font-size: 16px;
  font-weight: 700;
  color: var(--cyan);
  display: block;
  margin-bottom: 18px;
  transition: color 0.2s;
}
.reg-loc-phone:hover { color: #fff; }
.reg-loc-btns { display: flex; flex-direction: column; gap: 9px; }
.reg-form-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  background: var(--cyan);
  border-radius: 100px;
  padding: 11px 20px;
  transition: background 0.2s;
}
.reg-form-btn:hover { background: var(--cyan-hover); }
.reg-form-btn svg {
  width: 13px; height: 13px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  flex-shrink: 0;
}
.reg-call-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  padding: 10px 20px;
  transition: border-color 0.2s, color 0.2s;
}
.reg-call-btn:hover { border-color: var(--cyan); color: var(--cyan); }
.reg-call-btn svg {
  width: 13px; height: 13px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  flex-shrink: 0;
}

/* What to bring */
.reg-bring-list { display: flex; flex-direction: column; }
.reg-bring-item {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 16px;
  align-items: start;
  padding: 20px 0;
  border-top: 1px solid rgba(15,29,94,0.07);
}
.reg-bring-item:last-child { border-bottom: 1px solid rgba(15,29,94,0.07); }
.reg-bring-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  margin-top: 9px;
  flex-shrink: 0;
}
.reg-bring-text {
  font-size: 15px;
  color: var(--text-dark);
  line-height: 1.7;
  font-weight: 400;
  margin: 0;
}
.reg-bring-text strong { color: var(--navy); font-weight: 600; }

/* Financial policy */
.reg-finance-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.reg-finance-block {
  background: #fff;
  border: 1px solid rgba(15,29,94,0.08);
  border-radius: 18px;
  padding: 28px;
  position: relative;
  box-shadow: 0 2px 12px rgba(15,29,94,0.05);
  transition: border-color 0.3s, transform 0.3s cubic-bezier(.23,1,.32,1);
}
.reg-finance-block:hover {
  border-color: rgba(16,150,212,0.25);
  transform: translateY(-2px);
}
.reg-finance-block.highlight {
  background: rgba(16,150,212,0.04);
  border-color: rgba(16,150,212,0.18);
}
.reg-finance-block.highlight:hover { border-color: rgba(16,150,212,0.4); }
.reg-finance-text {
  font-size: 14px;
  color: #4a5568;
  line-height: 1.8;
  font-weight: 400;
  margin: 0;
}
.reg-finance-text strong { color: var(--navy); font-weight: 600; }
.reg-finance-logos {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(15,29,94,0.07);
  flex-wrap: wrap;
}
.reg-finance-logo-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: rgba(15,29,94,0.5);
  background: var(--bg-mid);
  border: 1px solid rgba(15,29,94,0.1);
  border-radius: 8px;
  padding: 7px 14px;
}
.reg-finance-logo-pill svg {
  width: 14px; height: 14px;
  fill: none;
  stroke: var(--cyan);
  stroke-width: 1.5;
}

/* Privacy */
.reg-privacy {
  background: rgba(15,29,94,0.03);
  border: 1px solid rgba(15,29,94,0.08);
  border-radius: 18px;
  padding: 28px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  box-shadow: 0 2px 12px rgba(15,29,94,0.04);
}
.reg-privacy-text {
  font-size: 14px;
  color: #4a5568;
  line-height: 1.7;
  font-weight: 400;
  margin: 0;
}
.reg-privacy-links { display: flex; flex-direction: column; gap: 8px; }
.reg-download-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cyan);
  border: 1.5px solid rgba(16,150,212,0.3);
  border-radius: 100px;
  padding: 10px 18px;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.reg-download-btn:hover {
  background: var(--cyan);
  color: #fff;
  border-color: var(--cyan);
}
.reg-download-btn svg {
  width: 13px; height: 13px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}

/* Registration responsive */
@media (max-width: 1024px) {
  .reg-hero { padding-left: 32px; padding-right: 32px; }
  .reg-locations { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .reg-hero { padding-left: 20px; padding-right: 20px; padding-top: 56px; padding-bottom: 56px; }
  .reg-hero-inner { grid-template-columns: 1fr; }
  .reg-hero-stats { display: none; }
  .reg-locations { grid-template-columns: 1fr; }
  .reg-finance-grid { grid-template-columns: 1fr; }
  .reg-privacy { grid-template-columns: 1fr; }
  .reg-privacy-links { flex-direction: row; flex-wrap: wrap; }
}
@media (max-width: 480px) {
  .dfw-meta-pills { flex-direction: column; align-items: flex-start; }
}


/* ============================================================
   P5. PAGE: TEAM   (#dfw-team · tm-  +  #tm-hero-v2 · tmh-)
   ============================================================ */

/* ---- Hero (tm-hero-v2) ---- */
#tm-hero-v2 {
  padding: 150px 150px 78px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(8,15,38,0.85), rgba(8,15,38,0.75)),
    url('https://lightgrey-rail-730166.hostingersite.com/wp-content/uploads/2026/04/PX0A2495.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
#tm-hero-v2::after {
  content: '';
  position: absolute;
  top: -160px; right: -160px;
  width: 520px; height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(16,150,212,0.1) 0%, transparent 65%);
  pointer-events: none;
}
.tmh-glow2 {
  position: absolute;
  bottom: -120px; left: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(16,150,212,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.tmh-topline {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--cyan) 40%, rgba(16,150,212,0.3) 70%, transparent 100%);
}
.tmh-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Columna izquierda */
.tmh-title { color: #fff; margin: 0 0 10px; }
.tmh-title span { color: var(--cyan); display: block; }
.tmh-subtitle {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  margin: 16px 0 32px;
}
/* Decorative gradient divider (distinto del dfw-divider) */
.tmh-divider {
  width: 48px; height: 2px;
  background: linear-gradient(90deg, var(--violet-light), rgba(16,150,212,0.2));
  margin-bottom: 28px;
}
.tmh-desc {
  font-size: 14.5px;
  color: #fff;
  line-height: 1.85;
  font-weight: 400;
  margin: 0 0 36px;
  max-width: 420px;
}
.tmh-desc strong { color: #fff; font-weight: 600; }

/* Columna derecha */
.tmh-right { display: flex; flex-direction: column; gap: 14px; }

/* Intro pill */
.tmh-intro-pill {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 18px 22px;
  transition: border-color 0.25s;
}
.tmh-intro-pill:hover { border-color: rgba(16,150,212,0.35); }
.tmh-intro-pill p {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  margin: 0;
}
.tmh-intro-pill strong { color: rgba(255,255,255,0.82); font-weight: 600; }

/* Stats 2×2 (glassmorphism enhanced) */
.tmh-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.tmh-stat {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 16px;
  padding: 18px 22px;
  position: relative;
  overflow: hidden;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.25),
    0 10px 40px rgba(0,0,0,0.25);
  transition:
    border-color 0.25s,
    transform 0.3s cubic-bezier(.23,1,.32,1),
    background 0.3s,
    box-shadow 0.3s;
}
.tmh-stat:hover {
  border-color: rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.14);
  transform: translateY(-6px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.35),
    0 20px 60px rgba(0,0,0,0.35);
}
/* Bottom line en hover */
.tmh-stat::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--violet);
  transition: width 0.4s cubic-bezier(.23,1,.32,1);
}
.tmh-stat:hover::after { width: 100%; }
.tmh-stat-num {
  font-size: 28px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
  white-space: nowrap;
}
.tmh-stat-num span { color: var(--cyan); }
.tmh-stat-label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  line-height: 1.3;
  margin: 0 0 2px;
}
.tmh-stat-sub {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  font-weight: 400;
}

/* Certs strip */
.tmh-certs-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  transition: border-color 0.25s;
}
.tmh-certs-card:hover { border-color: rgba(16,150,212,0.35); }
.tmh-certs-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  white-space: nowrap;
}
.tmh-certs-pills { display: flex; flex-wrap: wrap; gap: 6px; }

/* ---- Team body sections (tm-) ---- */
.tm-section { padding: 72px 56px; }
.tm-section-inner { max-width: 1200px; margin: 0 auto; }

.tm-section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 52px;
  gap: 24px;
  flex-wrap: wrap;
}
.tm-section-title {
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0;
}
.tm-office-meta { display: flex; flex-direction: column; gap: 6px; align-items: flex-end; }
.tm-office-addr { font-size: 12px; font-weight: 400; color: #888; text-align: right; line-height: 1.5; }
.tm-office-phone { font-size: 14px; font-weight: 700; color: var(--cyan); letter-spacing: 0.02em; }

/* Separador con margen (distinto del dfw-divider genérico) */
.tm-divider {
  width: 100%; height: 1px;
  background: rgba(15,29,94,0.07);
  margin-bottom: 52px;
}

/* Grids */
.tm-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.tm-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

/* Team cards */
.tm-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(15,29,94,0.08);
  transition: transform 0.3s cubic-bezier(.23,1,.32,1), border-color 0.3s, box-shadow 0.3s;
  position: relative;
}
.tm-card:hover {
  transform: translateY(-5px);
  border-color: rgba(16,150,212,0.25);
  box-shadow: 0 20px 48px rgba(15,29,94,0.1);
}
.tm-card:hover .dfw-card-line { width: 100%; }

/* Foto */
.tm-photo-wrap {
  width: 100%;
  background: #e8eef5;
  position: relative;
  overflow: hidden;
}
.tm-card-lg .tm-photo-wrap { aspect-ratio: 1 / 1.1; }
.tm-card-sm .tm-photo-wrap { aspect-ratio: 1 / 1.05; }
.tm-photo-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: grayscale(15%) contrast(1.04);
  transition: transform 0.5s cubic-bezier(.23,1,.32,1), filter 0.3s;
}
.tm-card:hover .tm-photo-wrap img {
  transform: scale(1.04);
  filter: grayscale(0%) contrast(1.05);
}

/* Placeholder foto */
.tm-photo-placeholder {
  width: 100%;
  aspect-ratio: 1 / 1.05;
  background: #e8eef5;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
}
.tm-ph-circle {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(16,150,212,0.1);
  border: 1.5px solid rgba(16,150,212,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.tm-ph-circle svg {
  width: 24px; height: 24px;
  fill: none;
  stroke: var(--cyan);
  stroke-width: 1.5;
  opacity: 0.5;
}

/* Card body */
.tm-card-body { padding: 20px 20px 22px; }
.tm-card-lg .tm-card-body { padding: 24px 24px 26px; }
.tm-card-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 4px;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.tm-card-lg .tm-card-name { font-size: 17px; }
.tm-card-role {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--violet);
  margin-bottom: 10px;
}
.tm-certs { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 12px; }
.tm-card-bio {
  font-size: 12.5px;
  color: #4a5568;
  line-height: 1.7;
  font-weight: 400;
  margin: 0;
}
.tm-bio-soon {
  font-size: 11px;
  font-weight: 600;
  color: rgba(15,29,94,0.3);
  letter-spacing: 0.06em;
  font-style: italic;
}

/* Team CTA (bg image) */
.tm-cta {
  background:
    linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)),
    url('https://lightgrey-rail-730166.hostingersite.com/wp-content/uploads/2026/04/PX0A2374.jpg') center/cover no-repeat;
  padding: 80px 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.tm-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(107,79,187,0.1) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.tm-cta-inner {
  max-width: 620px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.tm-cta-title {
  font-size: clamp(24px, 3.5vw, 42px);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
}
.tm-cta-title span { color: var(--cyan); }
.tm-cta-sub {
  font-size: 14px;
  color: #fff;
  margin-bottom: 36px;
  line-height: 1.7;
}
.tm-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.tm-cta-link {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.tm-cta-link:hover { color: var(--cyan); border-color: var(--cyan); }

/* Team responsive */
@media (max-width: 1024px) {
  #tm-hero-v2     { padding-left: 32px; padding-right: 32px; }
  .tmh-inner      { gap: 40px; }
  .tm-section,
  .tm-cta         { padding-left: 32px; padding-right: 32px; }
  .tm-grid-4      { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  #tm-hero-v2 {
    padding-left: 20px; padding-right: 20px;
    padding-top: 56px; padding-bottom: 56px;
  }
  .tmh-inner { grid-template-columns: 1fr; gap: 48px; }
  .tmh-right  { display: none; }
  .tmh-desc   { max-width: 100%; }
  .tm-section,
  .tm-cta {
    padding-left: 20px; padding-right: 20px;
    padding-top: 56px; padding-bottom: 56px;
  }
  .tm-grid-3,
  .tm-grid-4       { grid-template-columns: 1fr 1fr; }
  .tm-section-header { flex-direction: column; align-items: flex-start; }
  .tm-office-meta  { align-items: flex-start; }
  .tm-cta-actions  { flex-direction: column; align-items: center; }
}
@media (max-width: 480px) {
  .tmh-title     { font-size: clamp(30px, 8vw, 42px); }
  .tm-grid-3,
  .tm-grid-4     { grid-template-columns: 1fr; }
}


/* ============================================================
   P6. PAGE: REFERRALS   (#dfw-ref · ref-)
   ============================================================ */

/* ---- Hero ---- */
.ref-hero {
  background: var(--dark);
  padding: 190px 56px 78px;
  position: relative;
  overflow: hidden;
}
/* Dot grid — violet dots */
.ref-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(107,79,187,0.15) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
  opacity: 0.6;
}
/* Glow superior derecho */
.ref-hero::after {
  content: '';
  position: absolute;
  top: -160px; right: -160px;
  width: 520px; height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(107,79,187,0.1) 0%, transparent 65%);
  pointer-events: none;
}
/* Glow inferior izquierdo (child element) */
.ref-hero-glow2 {
  position: absolute;
  bottom: -120px; left: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(16,150,212,0.07) 0%, transparent 65%);
  pointer-events: none;
}

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

.ref-hero-h1 {
  color: #fff;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
  line-height: 1.05;
}
.ref-hero-h1 span { color: var(--violet-light); }

/* Hero promise override — italic, violet border, bigger */
#dfw-ref .dfw-hero-promise {
  font-size: 17px;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  margin: 0 0 36px;
  font-style: italic;
  border-left-color: var(--violet);
}

.ref-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

/* Stat cards — violet hover + violet-light spans */
#dfw-ref .dfw-stat-card:hover { border-color: rgba(107,79,187,0.35); }
#dfw-ref .dfw-stat-num span   { color: var(--violet-light); }

/* Primary button — darker violet background + violet shadow */
#dfw-ref .dfw-btn-primary--violet {
  background: var(--violet);
  box-shadow: 0 4px 24px rgba(107,79,187,0.4);
}
#dfw-ref .dfw-btn-primary--violet:hover {
  box-shadow: 0 8px 40px rgba(255,255,255,0.25);
}

/* Outline button — violet hover */
#dfw-ref .dfw-btn-outline:hover {
  border-color: var(--violet-light);
  color: var(--violet-light);
}

/* CTA overrides — violet accents */
#dfw-ref .dfw-cta-title span { color: var(--violet-light); }
#dfw-ref .dfw-cta-phone      { color: var(--violet-light); }
#dfw-ref .dfw-cta-phone:hover { color: #fff; }


/* ---- Trust grid ---- */
.ref-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.ref-trust-card {
  border-radius: 18px;
  padding: 28px 22px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(15,29,94,0.08);
  background: #fff;
  transition: transform 0.3s cubic-bezier(.23,1,.32,1), border-color 0.3s;
}
.ref-trust-card:hover { transform: translateY(-5px); }
.ref-trust-card:hover .dfw-card-line { width: 100%; }

/* Violet tinted card */
.ref-trust-card-violet {
  background: linear-gradient(135deg, rgba(107,79,187,0.06) 0%, rgba(107,79,187,0.02) 100%);
  border-color: rgba(107,79,187,0.2);
}
.ref-trust-card-violet:hover { border-color: rgba(107,79,187,0.45); }

/* Violet card line */
.ref-trust-line-violet {
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2.5px;
  background: var(--violet);
  transition: width 0.4s cubic-bezier(.23,1,.32,1);
}
.ref-trust-card-violet:hover .ref-trust-line-violet { width: 100%; }

/* Trust icon */
.ref-trust-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.ref-trust-icon-cyan   { background: rgba(16,150,212,0.1); border: 1px solid rgba(16,150,212,0.2); }
.ref-trust-icon-violet { background: rgba(107,79,187,0.1); border: 1px solid rgba(107,79,187,0.2); }
.ref-trust-icon svg { width: 22px; height: 22px; fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.ref-trust-icon-cyan svg   { stroke: var(--cyan); }
.ref-trust-icon-violet svg { stroke: var(--violet-light); }

.ref-trust-title { font-size: 15px; font-weight: 700; color: var(--navy); margin: 0 0 6px; }
.ref-trust-desc  { font-size: 12.5px; color: #4a5568; line-height: 1.7; margin: 0; }

/* Badge inside trust card gets top margin */
.ref-trust-card .dfw-badge { display: inline-flex; margin-top: 12px; }

/* Violet trust badge */
.ref-trust-badge-violet {
  display: inline-flex;
  margin-top: 12px;
  font-size: 9px; font-weight: 800;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--violet-light);
  background: rgba(107,79,187,0.08);
  border: 1px solid rgba(107,79,187,0.2);
  border-radius: 100px;
  padding: 3px 10px;
}


/* ---- Referral Action Center ---- */
.ref-action-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.ref-action-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  transition: border-color 0.3s, transform 0.3s cubic-bezier(.23,1,.32,1);
}
.ref-action-card:hover { border-color: rgba(107,79,187,0.4); transform: translateY(-4px); }

.ref-action-header {
  padding: 22px 22px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: space-between;
}
.ref-action-num {
  font-size: 10px; font-weight: 800;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.25);
}
.ref-action-flag {
  font-size: 9px; font-weight: 800;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--violet-light);
  background: rgba(107,79,187,0.15);
  border: 1px solid rgba(107,79,187,0.25);
  border-radius: 100px;
  padding: 3px 10px;
}

.ref-action-body { padding: 22px; }
.ref-action-city {
  font-size: 22px; font-weight: 700;
  color: #fff; margin: 0 0 3px;
  letter-spacing: -0.01em;
}
.ref-action-sub {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 14px;
}
.ref-action-addr {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
  margin: 0 0 10px;
}
.ref-action-phone {
  font-size: 16px; font-weight: 700;
  color: var(--cyan);
  display: block; margin-bottom: 20px;
  transition: color 0.2s;
}
.ref-action-phone:hover { color: #fff; }

.ref-action-btns { display: flex; flex-direction: column; gap: 9px; }

.ref-action-btn-primary {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: #fff; background: var(--violet);
  border-radius: 100px; padding: 11px 20px;
  transition: background 0.2s;
}
.ref-action-btn-primary:hover { background: var(--violet-light); }

.ref-action-btn-secondary {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.09em; text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px; padding: 10px 20px;
  transition: border-color 0.2s, color 0.2s;
}
.ref-action-btn-secondary:hover { border-color: var(--cyan); color: var(--cyan); }

.ref-action-btn-primary svg,
.ref-action-btn-secondary svg {
  width: 13px; height: 13px;
  fill: none; stroke: currentColor;
  stroke-width: 2; stroke-linecap: round;
  flex-shrink: 0;
}

.ref-action-fax {
  font-size: 11px;
  color: rgba(255,255,255,0.2);
  text-align: center;
  margin-top: 10px;
}
.ref-action-fax strong { color: rgba(255,255,255,0.35); }


/* ---- Workflow Timeline ---- */
.ref-timeline-wrap {
  background: var(--dark);
  border-radius: 24px;
  padding: 52px 40px;
}
.ref-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  gap: 0;
}
/* Línea horizontal conectora */
.ref-timeline::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 14px);
  right: calc(12.5% + 14px);
  height: 1px;
  background: rgba(16,150,212,0.25);
  z-index: 0;
}

.ref-timeline-step {
  display: flex; flex-direction: column;
  align-items: center; text-align: center;
  padding: 0 16px;
  position: relative; z-index: 1;
}

.ref-tl-dot {
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 1.5px solid rgba(16,150,212,0.3);
  background: var(--dark);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; flex-shrink: 0;
  transition: border-color 0.3s, background 0.3s;
}
.ref-timeline-step:hover .ref-tl-dot {
  border-color: var(--cyan);
  background: rgba(16,150,212,0.08);
}
.ref-tl-dot svg { width: 22px; height: 22px; fill: none; stroke: var(--cyan); stroke-width: 1.5; stroke-linecap: round; }

.ref-tl-time {
  font-size: 9px; font-weight: 800;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--violet-light);
  background: rgba(107,79,187,0.1);
  border: 1px solid rgba(107,79,187,0.2);
  border-radius: 100px;
  padding: 3px 10px;
  margin-bottom: 8px;
}
.ref-tl-title { font-size: 14px; font-weight: 700; color: #fff; margin: 0 0 6px; }
.ref-tl-desc  { font-size: 12px; color: rgba(255,255,255,0.4); line-height: 1.65; margin: 0; }


/* ---- CE Events ---- */
.ref-events-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.ref-event-card {
  background: #fff;
  border: 1px solid rgba(15,29,94,0.07);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  transition: transform 0.3s cubic-bezier(.23,1,.32,1), border-color 0.3s;
}
.ref-event-card:hover { transform: translateY(-5px); border-color: rgba(107,79,187,0.3); }
.ref-event-card:hover .ref-event-line { width: 100%; }

.ref-event-accent { height: 4px; background: linear-gradient(to right, var(--violet), var(--cyan)); }

.ref-event-body { padding: 28px 24px; }
.ref-event-meta {
  display: flex; gap: 8px; align-items: center;
  margin-bottom: 14px; flex-wrap: wrap;
}
.ref-event-tag {
  font-size: 9px; font-weight: 800;
  letter-spacing: 0.12em; text-transform: uppercase;
  border-radius: 100px; padding: 3px 10px;
}
.ref-event-tag-violet {
  color: var(--violet);
  background: rgba(107,79,187,0.08);
  border: 1px solid rgba(107,79,187,0.2);
}
.ref-event-tag-cyan {
  color: var(--cyan);
  background: rgba(16,150,212,0.07);
  border: 1px solid rgba(16,150,212,0.18);
}
.ref-event-date { font-size: 11px; color: #aaa; font-weight: 500; }

.ref-event-title { font-size: 18px; font-weight: 700; color: var(--navy); margin: 0 0 8px; letter-spacing: -0.01em; }
.ref-event-desc  { font-size: 13px; color: #4a5568; line-height: 1.75; margin: 0 0 20px; }
.ref-event-location {
  font-size: 12px; color: #aaa;
  display: flex; align-items: center; gap: 6px;
}
.ref-event-location svg { width: 12px; height: 12px; fill: none; stroke: var(--cyan); stroke-width: 1.5; flex-shrink: 0; }

.ref-event-line {
  position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--violet);
  transition: width 0.4s cubic-bezier(.23,1,.32,1);
}

.ref-events-cta {
  background: rgba(107,79,187,0.06);
  border: 1px solid rgba(107,79,187,0.18);
  border-radius: 20px;
  padding: 32px 28px;
  display: flex; align-items: center; gap: 24px;
  margin-top: 24px;
  justify-content: space-between;
  flex-wrap: wrap;
}
.ref-events-cta-title { font-size: 18px; font-weight: 700; color: var(--navy); margin: 0 0 4px; }
.ref-events-cta-sub   { font-size: 13px; color: #888; margin: 0; }

/* Small solid violet button (no pill+arrow) */
.ref-btn-violet-sm {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: #fff; background: var(--violet);
  border-radius: 100px; padding: 12px 24px;
  transition: background 0.2s;
  white-space: nowrap;
}
.ref-btn-violet-sm:hover { background: var(--violet-light); }


/* ---- Referrals responsive ---- */
@media (max-width: 1024px) {
  .ref-hero { padding-left: 32px; padding-right: 32px; }
  .ref-trust-grid { grid-template-columns: repeat(2, 1fr); }
  .ref-timeline   { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .ref-timeline::before { display: none; }
}
@media (max-width: 768px) {
  .ref-hero { padding-left: 20px; padding-right: 20px; padding-top: 56px; padding-bottom: 56px; }
  .ref-hero-inner       { grid-template-columns: 1fr; }
  .ref-hero-stats       { display: none; }
  .ref-trust-grid       { grid-template-columns: 1fr 1fr; }
  .ref-action-grid,
  .ref-events-grid      { grid-template-columns: 1fr; }
  .ref-timeline         { grid-template-columns: 1fr 1fr; }
  .ref-timeline-wrap    { padding: 36px 20px; }
}
@media (max-width: 480px) {
  .ref-trust-grid { grid-template-columns: 1fr; }
  .ref-timeline   { grid-template-columns: 1fr; }
}


/* ============================================================
   P7. PAGE: HOME   (#dfw-hh · hh-)
   Home accent color: #29b6d0 (teal-cyan, distinct from --cyan)
   Nota: los !important conservan precedencia sobre Elementor.
         Eliminar cuando la tipografía de la página esté
         correctamente configurada en Astra/Elementor.
   ============================================================ */

/* Wrapper — negro sólido, hereda font-family de Astra */
#dfw-hh {
  width: 100%;
  background: #000;
}

/* ---- Hero ---- */
.hh-hero {
  position: relative;
  width: 100%;
  height: 130vh;
  min-height: 640px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Foto de fondo */
.hh-hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 22%;
  display: block;
  filter: brightness(0.8) saturate(0.8);
}

/* Overlay gradiente izquierda → transparente */
.hh-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    108deg,
    rgba(8,16,60,.92) 0%,
    rgba(8,16,60,.62) 42%,
    rgba(8,16,60,.12) 100%
  );
  pointer-events: none;
}

/* ---- Contenido central ---- */
.hh-content {
  position: relative;
  z-index: 2;
  padding: 80px 50px 0;
  max-width: 880px;
}

/* Eyebrow — teal home (#29b6d0) */
.hh-eyebrow {
  font-size: 10px !important;
  font-weight: 700 !important;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: #29b6d0;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hh-eyebrow::before {
  content: '';
  display: block;
  width: 22px; height: 1.5px;
  background: #29b6d0;
  flex-shrink: 0;
}

/* Headline — gradient text blanco → teal */
.hh-title {
  font-size: clamp(28px, 5.5vw, 68px) !important;
  font-weight: 700 !important;
  line-height: 1.05 !important;
  letter-spacing: -.01em !important;
  margin: 0 0 24px !important;
  background: linear-gradient(180deg, #ffffff 30%, #29b6d0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Subtítulo */
.hh-sub {
  font-size: 17px !important;
  font-weight: 400 !important;
  color: #babdc7 !important;
  line-height: 1.5 !important;
  margin-bottom: 40px !important;
  max-width: 420px;
}

/* Fila de botones */
.hh-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 44px;
}

/* Botón primario — píldora teal */
.hh-btn-p {
  position: relative;
  display: inline-flex !important;
  align-items: center !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #fff !important;
  background: #29b6d0;
  border-radius: 100px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(41,182,208,.4);
}
.hh-btn-p-text {
  padding: 14px 22px 14px 26px;
}
.hh-btn-p-arr {
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,.2);
}

/* Botón secundario — outline blanco */
.hh-btn-s {
  display: inline-flex !important;
  align-items: center !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7) !important;
  border: 1.5px solid rgba(255,255,255,.25);
  border-radius: 100px;
  padding: 13px 26px;
  transition: border-color 0.2s, color 0.2s;
}
.hh-btn-s:hover {
  border-color: #29b6d0;
  color: #29b6d0 !important;
}

/* Trust pills */
.hh-trust {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.hh-pill {
  font-size: 10px !important;
  font-weight: 600 !important;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: rgba(255,255,255,.58);
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 100px;
  padding: 5px 14px;
}

/* Stat cards — glassmorphism, bottom-right absolutos */
.hh-stats {
  position: absolute;
  right: 56px; bottom: 60px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-end;
}
.hh-stat {
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  padding: 16px 22px;
  text-align: center;
}
.hh-stat-n {
  font-size: 28px !important;
  font-weight: 900 !important;
  color: #fff !important;
  line-height: 1;
}
.hh-stat-l {
  font-size: 10px !important;
  color: rgba(255,255,255,.45) !important;
  margin-top: 2px;
}

/* ---- Home responsive ---- */
@media (max-width: 768px) {
  .hh-hero    { height: auto; min-height: 600px; padding-bottom: 48px; }
  .hh-title   { font-size: 36px !important; }
  .hh-stats   { display: none; }
  .hh-content { padding-left: 24px; padding-right: 24px; }
}


/* ============================================================
   P8. PAGE: MEET OUR DOCTORS   (#dr-page · dr-)
   ============================================================ */

/* ---- Hero ---- */
#dr-hero {
  padding: 150px 56px 78px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(8,15,38,0.88), rgba(8,15,38,0.78)),
    url('https://lightgrey-rail-730166.hostingersite.com/wp-content/uploads/2026/04/PX0A2495.jpg')
    center / cover no-repeat;
}
#dr-hero::before {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  background-image: radial-gradient(rgba(16,150,212,0.08) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}
#dr-hero::after {
  content: '';
  position: absolute; top: -160px; right: -160px;
  width: 520px; height: 520px; border-radius: 50%;
  background: radial-gradient(circle, rgba(16,150,212,0.1) 0%, transparent 65%);
  pointer-events: none;
}
.dr-hero-glow2 {
  position: absolute; bottom: -120px; left: -80px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(107,79,187,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.dr-hero-topline {
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--cyan) 40%, rgba(16,150,212,0.3) 70%, transparent 100%);
}

/* H1 */
.dr-hero-title { color: #fff; margin: 0 0 10px; }
.dr-hero-title span { color: var(--cyan); display: block; }

/* Subtitle */
.dr-hero-subtitle {
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin: 16px 0 32px;
}

/* Gradient divider */
.dr-hero-divider {
  width: 48px; height: 2px;
  background: linear-gradient(90deg, var(--violet-light), rgba(16,150,212,0.2));
  margin-bottom: 28px;
}

/* Body copy */
.dr-hero-desc {
  font-size: 14.5px; color: rgba(255,255,255,0.72);
  line-height: 1.85; font-weight: 400;
  margin: 0 0 36px; max-width: 420px;
}
.dr-hero-desc strong { color: #fff; font-weight: 600; }

/* Button row */
.dr-hero-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }

/* Right column */
.dr-hero-right { display: flex; flex-direction: column; gap: 14px; }

/* Intro glass pill */
.dr-hero-pill {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px; padding: 18px 22px;
  transition: border-color 0.25s;
}
.dr-hero-pill:hover { border-color: rgba(16,150,212,0.35); }
.dr-hero-pill p { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.75; margin: 0; }
.dr-hero-pill strong { color: rgba(255,255,255,0.82); font-weight: 600; }

/* Stat cards 2×2 — glassmorphism with backdrop-filter */
.dr-hero-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.dr-hero-stat {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 16px; padding: 18px 22px;
  position: relative; overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.25), 0 10px 40px rgba(0,0,0,0.25);
  transition: border-color 0.25s, transform 0.3s cubic-bezier(.23,1,.32,1), background 0.3s;
}
.dr-hero-stat:hover {
  border-color: rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.14);
  transform: translateY(-4px);
}
.dr-hero-stat::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--violet);
  transition: width 0.4s cubic-bezier(.23,1,.32,1);
}
.dr-hero-stat:hover::after { width: 100%; }
.dr-hero-stat-num   { font-size: 28px; font-weight: 900; color: #fff; line-height: 1; letter-spacing: -0.02em; margin-bottom: 4px; white-space: nowrap; }
.dr-hero-stat-num span { color: var(--cyan); }
.dr-hero-stat-label { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.75); line-height: 1.3; margin: 0 0 2px; }
.dr-hero-stat-sub   { font-size: 11px; color: rgba(255,255,255,0.35); font-weight: 400; }

/* Certs strip */
.dr-hero-certs {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px; padding: 18px 22px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; flex-wrap: wrap;
  transition: border-color 0.25s;
}
.dr-hero-certs:hover { border-color: rgba(16,150,212,0.35); }
.dr-hero-certs-label {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255,255,255,0.35); white-space: nowrap;
}
.dr-hero-certs-pills { display: flex; flex-wrap: wrap; gap: 6px; }


/* ---- Doctor cards (horizontal layout) ---- */
.dr-card {
  background: #fff;
  border-radius: 18px;
  border: 1px solid rgba(15,29,94,0.08);
  overflow: hidden;
  position: relative;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 0;
  box-shadow: 0 4px 24px rgba(15,29,94,0.06);
  transition: box-shadow 0.3s, border-color 0.3s;
}
.dr-card:hover { box-shadow: 0 20px 56px rgba(15,29,94,0.12); border-color: rgba(16,150,212,0.18); }
.dr-card:hover .dfw-card-line { width: 100%; }
.dr-card + .dr-card { margin-top: 32px; }

/* Gradient accent bar across top */
.dr-card-topline {
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--violet), var(--cyan));
}

/* Photo column */
.dr-photo-col {
  position: relative;
  background: #e8eef5;
  overflow: hidden;
  min-height: 360px;
}
.dr-photo-col img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  display: block;
  filter: grayscale(10%) contrast(1.03);
  transition: transform 0.5s cubic-bezier(.23,1,.32,1), filter 0.3s;
}
.dr-card:hover .dr-photo-col img { transform: scale(1.03); filter: grayscale(0%) contrast(1.05); }

/* Photo placeholder */
.dr-photo-ph {
  width: 100%; height: 100%; min-height: 360px;
  background: #e8eef5;
  display: flex; align-items: center; justify-content: center;
}
.dr-ph-circle {
  width: 80px; height: 80px; border-radius: 50%;
  background: rgba(16,150,212,0.08); border: 1.5px solid rgba(16,150,212,0.18);
  display: flex; align-items: center; justify-content: center;
}
.dr-ph-circle svg { width: 32px; height: 32px; fill: none; stroke: var(--cyan); stroke-width: 1.5; opacity: 0.5; }

/* Card body */
.dr-card-body { padding: 36px 36px 32px; display: flex; flex-direction: column; }
.dr-card-header { margin-bottom: 20px; }
.dr-card-name {
  font-size: 24px; font-weight: 900; color: var(--navy);
  margin: 0 0 4px; letter-spacing: -0.02em; line-height: 1.1;
}
.dr-card-credential { font-size: 13px; font-weight: 600; color: rgba(15,29,94,0.5); letter-spacing: 0.04em; margin-bottom: 12px; }
.dr-card-role { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--violet); margin-bottom: 12px; }

/* Location tags */
.dr-card-locations { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 20px; }
.dr-location-tag {
  font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--navy); background: rgba(15,29,94,0.06); border: 1px solid rgba(15,29,94,0.12);
  border-radius: 100px; padding: 4px 12px;
}

/* Achievement badges — larger than dfw-badge */
.dr-badges { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 24px; }
.dr-badge {
  font-size: 10px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase;
  border-radius: 100px; padding: 5px 13px;
}
.dr-badge-cyan   { color: var(--cyan);         background: rgba(16,150,212,0.08);  border: 1px solid rgba(16,150,212,0.22); }
.dr-badge-violet { color: var(--violet-light);  background: rgba(107,79,187,0.08);  border: 1px solid rgba(107,79,187,0.22); }
.dr-badge-navy   { color: var(--navy);          background: rgba(15,29,94,0.06);    border: 1px solid rgba(15,29,94,0.15); }

/* Bio text */
.dr-card-bio { font-size: 13.5px; color: #4a5568; line-height: 1.78; margin: 0 0 24px; }
.dr-card-bio strong { color: var(--navy); font-weight: 600; }

/* Internal separator */
.dr-card-sep { width: 100%; height: 1px; background: rgba(15,29,94,0.07); margin: 20px 0; }

/* List headings */
.dr-list-title {
  font-size: 10px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(15,29,94,0.4); margin: 0 0 10px;
  display: flex; align-items: center; gap: 7px;
}
.dr-list-title::before { content: ''; display: block; width: 12px; height: 1.5px; background: var(--violet); }

/* Dot-list */
.dr-list { list-style: none; padding: 0; margin: 0 0 20px; display: flex; flex-direction: column; gap: 5px; }
.dr-list li { font-size: 13px; color: #4a5568; line-height: 1.5; padding-left: 16px; position: relative; }
.dr-list li::before {
  content: '';
  position: absolute; left: 0; top: 7px;
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--cyan);
}
.dr-list-2col { columns: 2; gap: 24px; }
.dr-list-2col li { break-inside: avoid; }

/* Press mention link */
.dr-press-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 700; color: var(--cyan);
  border-bottom: 1px solid rgba(16,150,212,0.3);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.dr-press-link:hover { color: var(--navy); border-color: var(--navy); }
.dr-press-link svg { width: 11px; height: 11px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; }

/* Bio coming soon placeholder */
.dr-card-soon { display: flex; flex-direction: column; justify-content: center; align-items: flex-start; gap: 16px; flex: 1; }
.dr-card-soon-text { font-size: 13px; font-weight: 600; font-style: italic; color: rgba(15,29,94,0.35); letter-spacing: 0.04em; }
.dr-card-soon-bar { width: 60px; height: 3px; background: linear-gradient(90deg, rgba(15,29,94,0.15), transparent); border-radius: 2px; }


/* ---- Accreditations strip ---- */
.dr-accred-section {
  padding: 60px 56px;
  background: #fff;
  border-top: 1px solid rgba(15,29,94,0.07);
}
.dr-accred-inner { max-width: 1200px; margin: 0 auto; }
.dr-accred-label {
  font-size: 10px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(15,29,94,0.35); text-align: center; margin-bottom: 32px;
  display: flex; align-items: center; justify-content: center; gap: 14px;
}
.dr-accred-label::before,
.dr-accred-label::after { content: ''; display: block; width: 40px; height: 1px; background: rgba(15,29,94,0.15); }

.dr-accred-logos { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; }
.dr-accred-logo {
  display: flex; align-items: center; justify-content: center;
  padding: 16px 28px;
  border-right: 1px solid rgba(15,29,94,0.07);
  transition: opacity 0.2s;
}
.dr-accred-logo:last-child { border-right: none; }
.dr-accred-logo:hover { opacity: 0.7; }
.dr-accred-logo-box { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.dr-accred-logo-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(15,29,94,0.05); border: 1px solid rgba(15,29,94,0.1);
  display: flex; align-items: center; justify-content: center;
}
.dr-accred-logo-icon svg { width: 20px; height: 20px; fill: none; stroke: rgba(15,29,94,0.4); stroke-width: 1.5; }
.dr-accred-logo-name { font-size: 9px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(15,29,94,0.4); }


/* ---- CTA — photo background ---- */
.dr-cta {
  background:
    linear-gradient(rgba(0,0,0,0.72), rgba(0,0,0,0.72)),
    url('https://lightgrey-rail-730166.hostingersite.com/wp-content/uploads/2026/04/PX0A2374.jpg')
    center / cover no-repeat;
  padding: 80px 56px;
  text-align: center;
  position: relative; overflow: hidden;
}
.dr-cta::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(107,79,187,0.1) 0%, transparent 60%);
  pointer-events: none; z-index: 0;
}

/* CTA typography overrides (photo bg version) */
.dr-cta-title {
  font-size: clamp(24px, 3.5vw, 42px);
  font-weight: 900; color: #fff;
  line-height: 1.1; letter-spacing: -0.02em;
  margin: 0 0 12px;
}
.dr-cta-title span { color: var(--cyan); }
.dr-cta-sub   { font-size: 14px; color: rgba(255,255,255,0.75); margin-bottom: 36px; line-height: 1.7; }
.dr-cta-phone {
  font-size: 14px; font-weight: 700;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.05em;
  transition: color 0.2s;
}
.dr-cta-phone:hover { color: #fff; }


/* ---- Meet our doctors responsive ---- */
@media (max-width: 1024px) {
  #dr-hero { padding-left: 32px; padding-right: 32px; }
  .dr-hero-inner.dfw-hero-inner { gap: 40px; }
  .dr-accred-section,
  .dr-cta   { padding-left: 32px; padding-right: 32px; }
  .dr-card  { grid-template-columns: 220px 1fr; }
  .dr-list-2col { columns: 1; }
}
@media (max-width: 768px) {
  #dr-hero { padding: 120px 20px 60px; }
  .dr-hero-right { display: none; }
  .dr-hero-desc  { max-width: 100%; }
  .dr-accred-section,
  .dr-cta   { padding: 56px 20px; }
  .dr-card  { grid-template-columns: 1fr; }
  .dr-photo-col { min-height: 260px; }
  .dr-card-body { padding: 24px 24px 22px; }
  .dr-card-name { font-size: 20px; }
  .dr-accred-logo { padding: 12px 16px; }
}
@media (max-width: 480px) {
  .dr-hero-title { font-size: clamp(28px, 8vw, 40px); }
  .dr-card-name  { font-size: 18px; }
}