/* ==========================================================================
   RENT HOSTING - Para Propietarios & Quiénes Somos
   Standalone Stylesheet
   ========================================================================== */

/* --- CSS Variables & Design System (Luxury Light Editorial) --- */
:root {
  /* Colors - Luxury Light Editorial & Real Estate */
  --primary-dark: #0d1e36;
  --primary: #15325b;
  --primary-light: #204c87;
  --primary-lighter: #2f6cb8;
  --accent: #c5a059;
  --accent-bright: #b8860b;
  --accent-dark: #8c6d23;
  --accent-glow: rgba(197, 160, 89, 0.3);
  --surface: #ffffff;
  --surface-light: #f8fafc;
  --surface-warm: #faf8f5;
  --surface-card: #ffffff;
  --surface-hover: #fdfefe;
  --glass: rgba(255, 255, 255, 0.92);
  --glass-border: rgba(197, 160, 89, 0.25);
  --border-subtle: rgba(226, 232, 240, 0.85);
  --text: #0d1e36;
  --text-secondary: #475569;
  --text-muted: #64748b;
  /* Contraste accesible >4.5:1 WCAG AA sobre fondo claro */
  --success: #059669;
  --success-bg: rgba(16, 185, 129, 0.1);
  --warning: #d97706;
  --warning-bg: rgba(245, 158, 11, 0.1);
  --error: #e11d48;
  --error-bg: rgba(244, 63, 94, 0.1);
  --info: #0284c7;

  /* Typography */
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Playfair Display', Georgia, serif;

  /* Font sizes */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;

  /* Border radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Shadows for Luxury Light Theme */
  --shadow-sm: 0 2px 8px rgba(13, 30, 54, 0.04);
  --shadow-md: 0 8px 24px -4px rgba(13, 30, 54, 0.07), 0 2px 6px -1px rgba(13, 30, 54, 0.03);
  --shadow-lg: 0 16px 36px -6px rgba(13, 30, 54, 0.09), 0 4px 12px -2px rgba(13, 30, 54, 0.04);
  --shadow-xl: 0 24px 50px -10px rgba(13, 30, 54, 0.12), 0 6px 18px -3px rgba(13, 30, 54, 0.05);
  --shadow-glow: 0 0 20px rgba(197, 160, 89, 0.25);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;

  /* Layout */
  --max-width: 1200px;
  --navbar-height: 72px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--navbar-height, 72px) + 14px);
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--text);
  background-color: var(--surface);
  overflow-x: hidden;
  min-height: 100vh;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font-family: inherit;
}

/* --- Utilities --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.accent-text {
  background: linear-gradient(135deg, #996515 0%, #c5a059 50%, #785210 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(197, 160, 89, 0.35) 50%, transparent 100%);
  margin: 0 auto;
  width: 100%;
  max-width: 1100px;
}

.accent-line {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), transparent);
  margin: var(--space-4) auto var(--space-8);
  border-radius: var(--radius-full);
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 0;
  background: transparent;
  border: none;
  color: #996515;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: var(--space-4);
  box-shadow: none;
}

.hero-tag svg {
  width: 14px;
  height: 14px;
  color: #b8860b;
}

.section {
  padding: var(--space-16) 0;
  position: relative;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  text-align: center;
  color: var(--text);
  margin-bottom: var(--space-2);
}

.section-subtitle {
  text-align: center;
  color: var(--text-secondary);
  max-width: 650px;
  margin: 0 auto var(--space-10);
  font-size: var(--text-base);
}

.accent-line {
  width: 54px;
  height: 3px;
  background: linear-gradient(90deg, #e8ce8e, #c5a059);
  margin: var(--space-2) auto var(--space-4);
  border-radius: 2px;
}

/* --- Scroll Reveal Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* --- Accesibilidad: Screen Readers Only (WCAG 2.1) --- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* --- Grids --- */
.grid {
  display: grid;
  gap: var(--space-6);
}

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

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

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

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 0.65rem 1.4rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: var(--text-sm);
  cursor: pointer;
  transition: all var(--transition-base);
  border: 1px solid transparent;
  white-space: nowrap;
}

.btn svg {
  width: 18px;
  height: 18px;
}

.btn-primary {
  background: linear-gradient(135deg, #e8ce8e 0%, #c5a059 100%);
  color: #0b1a2e;
  font-weight: 700;
  box-shadow: 0 4px 18px rgba(197, 160, 89, 0.35);
  border: 1px solid rgba(197, 160, 89, 0.5);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #fae498 0%, #d8b251 100%);
  box-shadow: 0 6px 26px rgba(197, 160, 89, 0.5);
  transform: translateY(-2px);
}

.btn-secondary {
  background: #ffffff;
  color: #0d1e36;
  border: 1.5px solid rgba(197, 160, 89, 0.45);
  box-shadow: 0 2px 8px rgba(13, 30, 54, 0.04);
}

.btn-secondary:hover {
  background: #faf8f5;
  border-color: #c5a059;
  color: #0d1e36;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(197, 160, 89, 0.2);
}

.btn-lg {
  padding: 0.9rem 2rem;
  font-size: var(--text-base);
}

/* --- Glass Card --- */
.glass-card {
  background: #ffffff;
  border: 1px solid rgba(197, 160, 89, 0.22);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  box-shadow: 0 8px 24px -4px rgba(13, 30, 54, 0.06), 0 2px 6px -1px rgba(13, 30, 54, 0.03);
  transition: transform var(--transition-base), border-color var(--transition-base), box-shadow var(--transition-base);
}

.glass-card:hover {
  transform: translateY(-4px);
  border-color: rgba(197, 160, 89, 0.45);
  box-shadow: 0 16px 36px -6px rgba(13, 30, 54, 0.12), 0 0 18px rgba(197, 160, 89, 0.12);
}

/* --- NAVBAR --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--navbar-height);
  z-index: 1000;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(197, 160, 89, 0.22);
  transition: all var(--transition-base);
  box-shadow: 0 2px 14px rgba(13, 30, 54, 0.04);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 20px rgba(13, 30, 54, 0.08);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 700;
  color: #0d1e36;
}

.navbar-logo .logo-img {
  height: 38px;
  width: auto;
  filter: invert(36%) sepia(58%) saturate(710%) hue-rotate(12deg) brightness(95%) contrast(92%);
  transition: transform var(--transition-fast);
}

.navbar-logo:hover .logo-img {
  transform: scale(1.05);
}

.navbar-logo span {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.2;
  color: #64748b;
  font-weight: 500;
}

.navbar-logo span strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.18rem;
  background: linear-gradient(135deg, #996515 0%, #c5a059 60%, #785210 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: #c5a059;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: var(--space-6);
}

.nav-link {
  font-size: var(--text-sm);
  font-weight: 500;
  color: #475569;
  transition: color var(--transition-fast);
  padding: var(--space-2) 0;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: #0d1e36;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent);
  border-radius: var(--radius-full);
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.mobile-menu-btn {
  display: none;
  background: transparent;
  border: none;
  color: #0d1e36;
  cursor: pointer;
  padding: var(--space-2);
}

.mobile-menu-btn svg {
  width: 26px;
  height: 26px;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: var(--navbar-height);
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(197, 160, 89, 0.25);
  padding: var(--space-6);
  flex-direction: column;
  gap: var(--space-4);
  z-index: 999;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu .nav-link {
  font-size: var(--text-lg);
  padding: var(--space-2) 0;
}

/* --- HERO: PARA PROPIETARIOS --- */
.owner-hero {
  background: linear-gradient(180deg, rgba(13, 30, 54, 0.58) 0%, rgba(10, 22, 40, 0.75) 100%),
    url('../images/propiedades/salon2_Apartamento_DELUXE_Centrico_Miengo.jpg') center/cover no-repeat;
  padding: calc(var(--navbar-height) + 75px) var(--space-4) 95px;
  text-align: center;
  min-height: 82vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}

.owner-hero .hero-tag {
  background: transparent;
  border: none;
  color: #fae498;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  letter-spacing: 0.15em;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 4px 0;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.owner-hero .hero-tag svg {
  color: #fae498;
}

.owner-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.3rem, 4.8vw, 3.85rem);
  margin-bottom: var(--space-6);
  max-width: 940px;
  color: #ffffff;
  text-shadow: 0 3px 20px rgba(0, 0, 0, 0.7);
  line-height: 1.15;
}

.owner-hero .accent-text {
  background: linear-gradient(135deg, #fae498 0%, #e5c46e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.owner-hero-subtitle {
  color: #f8fafc;
  max-width: 800px;
  margin: 0 auto var(--space-8);
  text-align: center;
  line-height: 1.65;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.65);
  padding: 0 var(--space-6);
}

.owner-hero-subtitle p {
  color: #f8fafc;
}

.owner-hero .btn-secondary {
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.owner-hero .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: #ffffff;
  color: #ffffff;
}

/* --- HERO: QUIÉNES SOMOS --- */
.about-hero {
  position: relative;
  min-height: clamp(680px, 84vh, 780px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.about-hero img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(175deg,
      rgba(8, 16, 28, 0.76) 0%,
      rgba(12, 28, 50, 0.60) 45%,
      rgba(8, 18, 34, 0.36) 78%,
      rgba(8, 18, 34, 0.48) 100%);
}

.about-hero-inner {
  position: relative;
  z-index: 5;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: calc(var(--navbar-height) + 20px);
  padding-bottom: 50px;
  min-height: clamp(680px, 84vh, 780px);
  box-sizing: border-box;
}

.about-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 860px;
  padding: 0 var(--space-6);
  margin-top: auto;
  margin-bottom: auto;
}

.about-hero-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.6rem, 5.2vw, 4rem);
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: var(--space-4);
  text-shadow: 0 3px 20px rgba(0, 0, 0, 0.7);
}

.about-hero .hero-tag {
  background: transparent;
  border: none;
  color: #fae498;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  letter-spacing: 0.15em;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 4px 0;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.about-hero .hero-tag svg {
  color: #fae498;
}

.about-hero-subtitle {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: #e2e8f0;
  max-width: 680px;
  line-height: 1.6;
  margin: var(--space-4) auto 0;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.65);
  font-weight: 300;
  text-align: center;
}

/* --- SECTIONS: QUIÉNES SOMOS (Ritmo Luxury Light) --- */

.about-section-story {
  background: #ffffff;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: var(--space-12) 0;
  box-sizing: border-box;
}

.about-section-values {
  background: linear-gradient(180deg, #091729 0%, #06101d 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: var(--space-12) 0;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  border-top: 1px solid rgba(197, 160, 89, 0.25);
  border-bottom: 1px solid rgba(197, 160, 89, 0.25);
}

.about-section-story>.container,
.about-section-values>.container {
  width: 100%;
}

.about-section-values .values-ambient-glow {
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 450px;
  background: radial-gradient(circle, rgba(197, 160, 89, 0.08) 0%, rgba(14, 34, 60, 0.04) 60%, transparent 80%);
  filter: blur(80px);
  pointer-events: none;
  z-index: 1;
}

.about-section-values .section-title {
  color: #ffffff;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.5);
}

.about-section-values .section-subtitle {
  color: #94a3b8;
  max-width: 680px;
  margin: 0 auto var(--space-12);
  font-size: 1.05rem;
}

.about-section-offer {
  background: #ffffff;
  padding: var(--space-16) 0;
}

/* --- SECTIONS PROPIETARIOS (Ritmo: Blanco Puro & Champagne Cálido) --- */
.owner-section {
  padding: var(--space-16) 0;
  position: relative;
  background: #ffffff;
}

.owner-section-alt {
  background: #faf8f5;
  padding: var(--space-16) 0;
  position: relative;
  border-top: 1px solid rgba(197, 160, 89, 0.18);
  border-bottom: 1px solid rgba(197, 160, 89, 0.18);
}

/* --- OWNER SECTION: REALIDAD ACTUAL (Editorial Stream 2026) --- */
.owner-section-reality {
  background: #ffffff;
  padding: var(--space-20) 0;
  position: relative;
  overflow: hidden;
}

.reality-ambient-glow {
  position: absolute;
  top: -8%;
  left: -5%;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(225, 29, 72, 0.045) 0%, rgba(197, 160, 89, 0.03) 60%, transparent 80%);
  filter: blur(80px);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.reality-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 3.8vw, 3.2rem);
  line-height: 1.15;
  margin-bottom: var(--space-4);
  color: #0d1e36;
}

.reality-title-accent {
  background: linear-gradient(135deg, #e11d48 0%, #be123c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

.reality-lead {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: var(--space-6);
}

/* --- REALITY AUTO CAROUSEL --- */
.reality-visual-wrapper {
  position: relative;
  margin-top: var(--space-6);
  width: 100%;
}

.reality-carousel {
  position: relative;
  width: 100%;
  height: 340px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 18px 42px rgba(13, 30, 54, 0.14);
  border: none;
  background: #090f1a;
}

.reality-carousel-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.reality-carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  z-index: 1;
  pointer-events: none;
  transition: opacity 1.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.reality-carousel-slide.active {
  opacity: 1;
  z-index: 2;
  pointer-events: auto;
}

.reality-carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reality-carousel:hover .reality-carousel-slide.active img {
  transform: scale(1.03);
}

/* Dots indicator */
.reality-carousel-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
  padding: 6px 12px;
  border-radius: 20px;
  background: rgba(9, 15, 26, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: none;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: all 0.35s ease;
}

.carousel-dot.active {
  width: 24px;
  border-radius: 10px;
  background: linear-gradient(90deg, #fae498 0%, #c5a059 100%);
  box-shadow: 0 0 8px rgba(229, 196, 110, 0.7);
}

/* --- FULL-WIDTH BANNER: GESTIONAR UNA PROPIEDAD REQUIERE TIEMPO --- */
.owner-concerns-full {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: var(--space-20) 0;
  background: #090f1a;
  padding-top: 100px;
  padding-bottom: 100px;
}

.concerns-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.concerns-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  filter: brightness(0.65) contrast(1.05);
  transform: scale(1.02);
  transition: transform 12s ease;
}

.owner-concerns-full:hover .concerns-bg img {
  transform: scale(1.06);
}

.concerns-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(8, 14, 26, 0.65) 0%,
      rgba(8, 14, 26, 0.42) 35%,
      rgba(8, 14, 26, 0.78) 100%);
  z-index: 1;
}

.concerns-content-wrap {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

.concerns-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 3.8vw, 3.2rem);
  color: #ffffff;
  line-height: 1.18;
  margin-bottom: var(--space-16);
  font-weight: 700;
  letter-spacing: -0.01em;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.95), 0 1px 4px rgba(0, 0, 0, 0.9);
}

.concerns-intro {
  color: #f8fafc;
  font-size: 1.12rem;
  line-height: 1.7;
  max-width: 780px;
  margin: 0 auto var(--space-16);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.95);
}

/* 4 Items - NO CUADROS: Shared subtle glass shelf with luminous top indicators */
.concerns-stream-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
  text-align: left;
  position: relative;
  margin-bottom: var(--space-12);
  padding: var(--space-6) var(--space-6);
  background: rgba(6, 12, 22, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.concern-flow-item {
  position: relative;
  padding: 0 var(--space-2);
  transition: transform 0.4s ease;
}

.concern-top-line {
  height: 2px;
  width: 100%;
  background: linear-gradient(90deg, rgba(229, 196, 110, 0.75) 0%, rgba(229, 196, 110, 0.15) 100%);
  margin-bottom: var(--space-5);
  transition: background 0.4s ease, height 0.3s ease, box-shadow 0.4s ease;
}

.concern-flow-item:hover .concern-top-line {
  background: linear-gradient(90deg, #fae498 0%, #c5a059 100%);
  height: 3px;
  box-shadow: 0 0 14px rgba(229, 196, 110, 0.75);
}

.concern-item-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: var(--space-3);
}

.concern-minimal-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(197, 160, 89, 0.22);
  border: 1px solid rgba(229, 196, 110, 0.6);
  color: #fae498;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.concern-flow-item:hover .concern-minimal-icon {
  background: #c5a059;
  color: #0c1a2e;
  transform: scale(1.1);
  box-shadow: 0 0 16px rgba(229, 196, 110, 0.65);
}

.concern-minimal-icon svg {
  width: 20px;
  height: 20px;
}

.concern-flow-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
  line-height: 1.3;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.concern-flow-desc {
  color: #e2e8f0;
  font-size: 0.94rem;
  line-height: 1.65;
  margin: 0;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.8);
}

.concern-flow-item:hover {
  transform: translateY(-4px);
}

.concerns-cta-wrap {
  display: flex;
  justify-content: center;
}

/* Floating status badge */
.reality-floating-badge {
  position: absolute;
  top: -16px;
  right: 10px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(225, 29, 72, 0.25);
  border-radius: var(--radius-full);
  padding: 7px 16px;
  display: flex;
  align-items: center;
  gap: 9px;
  box-shadow: 0 8px 24px rgba(225, 29, 72, 0.12);
  z-index: 3;
  animation: floatBadge 3.8s ease-in-out infinite;
}

@keyframes floatBadge {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e11d48;
  position: relative;
  display: inline-block;
}

.pulse-dot::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: rgba(225, 29, 72, 0.45);
  animation: pulseDotAnim 2s infinite;
}

@keyframes pulseDotAnim {
  0% {
    transform: scale(0.9);
    opacity: 0.8;
  }

  70% {
    transform: scale(2.2);
    opacity: 0;
  }

  100% {
    transform: scale(2.4);
    opacity: 0;
  }
}

.reality-floating-badge span {
  font-size: 0.76rem;
  font-weight: 700;
  color: #be123c;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

/* Timeline Stream 2026 (No hard borders, organic interactive flow) */
.reality-stream {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  padding-left: 10px;
}

.reality-timeline-track {
  position: absolute;
  left: 31px;
  top: 24px;
  bottom: 28px;
  width: 2px;
  background: linear-gradient(180deg, #c5a059 0%, #e8ce8e 50%, rgba(197, 160, 89, 0.1) 100%);
  z-index: 0;
  border-radius: 1px;
}

.reality-stream-item {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  padding: var(--space-2) 0;
  cursor: pointer;
}

.reality-marker {
  position: relative;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #fff1f2;
  color: #e11d48;
  border: 2px solid #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(225, 29, 72, 0.15), 0 0 0 1.5px rgba(225, 29, 72, 0.2);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.reality-marker svg {
  width: 20px;
  height: 20px;
  transition: transform 0.35s ease;
}

.reality-stream-content {
  flex: 1;
  border: none;
  background: transparent;
  padding: var(--space-4) var(--space-5);
  border-radius: 16px;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.reality-stream-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: var(--space-2);
}

.reality-stream-header h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: #0d1e36;
  margin: 0;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.reality-stream-toggle {
  display: none;
  margin-left: auto;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #f1f5f9;
  color: #64748b;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s ease, color 0.3s ease;
}

.reality-stream-toggle svg {
  width: 15px;
  height: 15px;
}

.reality-stream-content p {
  color: #475569;
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* 2026 Micro-Interactions: No hard borders, smooth ambient illumination */
.reality-stream-item:hover .reality-stream-content {
  background: linear-gradient(90deg, rgba(254, 242, 242, 0.75) 0%, rgba(250, 248, 245, 0.5) 100%);
  transform: translateX(8px);
  box-shadow: 0 10px 30px rgba(13, 30, 54, 0.04);
}

.reality-stream-item:hover .reality-marker,
.reality-stream-item.is-open .reality-marker {
  background: #e11d48;
  color: #ffffff;
  border-color: #ffffff;
  transform: scale(1.12) rotate(-6deg);
  box-shadow: 0 8px 24px rgba(225, 29, 72, 0.4);
}

.reality-stream-item:hover .reality-marker svg,
.reality-stream-item.is-open .reality-marker svg {
  transform: scale(1.06);
}

.reality-stream-item:hover .reality-stream-header h3 {
  color: #be123c;
}

/* --- OWNER SECTION PILLARS (Translucent Hover Image Cards) --- */
.owner-section-pillars {
  scroll-margin-top: calc(var(--navbar-height) + 10px);
  padding: var(--space-12) 0;
  background: linear-gradient(180deg, #ffffff 0%, #faf8f5 100%);
  position: relative;
  border-bottom: 1px solid rgba(197, 160, 89, 0.15);
  box-sizing: border-box;
}

@media (min-width: 1025px) {
  .owner-section-pillars {
    height: 100vh;
    min-height: 650px;
    max-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: calc(var(--navbar-height) + 12px);
    padding-bottom: var(--space-5);
    overflow: hidden;
  }
}

.owner-section-pillars .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pillars-header {
  text-align: center;
  max-width: 840px;
  margin: 0 auto var(--space-5);
}

.pillars-title-main {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 2.4vw, 2.25rem);
  line-height: 1.2;
  margin-bottom: var(--space-2);
  color: #0d1e36;
}

.pillars-subtitle-main {
  font-size: 0.98rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0 auto;
  max-width: 720px;
}

/* --- PILLARS LUXURY LEAD BRIDGE --- */
.pillars-lead-bridge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: var(--space-2);
  position: relative;
}

.pillars-lead-bridge .bridge-line {
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(197, 160, 89, 0.7));
}

.pillars-lead-bridge .bridge-line.right {
  background: linear-gradient(90deg, rgba(197, 160, 89, 0.7), transparent);
}

.pillars-lead-bridge .bridge-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 20px;
  background: linear-gradient(135deg, rgba(254, 250, 243, 0.96) 0%, rgba(255, 255, 255, 0.98) 100%);
  border: 1px solid rgba(197, 160, 89, 0.38);
  border-radius: var(--radius-full);
  box-shadow: 0 4px 18px rgba(197, 160, 89, 0.12), 0 1px 3px rgba(13, 30, 54, 0.04);
  transition: all 0.35s ease;
}

.pillars-lead-bridge:hover .bridge-badge {
  transform: translateY(-1px);
  border-color: rgba(197, 160, 89, 0.7);
  box-shadow: 0 8px 24px rgba(197, 160, 89, 0.22);
}

.pillars-lead-bridge .bridge-badge svg {
  width: 15px;
  height: 15px;
  color: #b8860b;
  flex-shrink: 0;
  filter: drop-shadow(0 1px 2px rgba(184, 134, 11, 0.25));
}

.pillars-lead-bridge .bridge-text {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #556980;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  line-height: 1.2;
}

.pillars-lead-bridge .bridge-brand {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  text-transform: none;
  font-weight: 700;
  font-style: italic;
  color: #996515;
  background: linear-gradient(135deg, #996515 0%, #c5a059 50%, #805010 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media (max-width: 640px) {
  .pillars-lead-bridge {
    gap: 8px;
  }

  .pillars-lead-bridge .bridge-line {
    display: none;
  }

  .pillars-lead-bridge .bridge-badge {
    padding: 7px 16px;
  }

  .pillars-lead-bridge .bridge-text {
    flex-wrap: wrap;
    justify-content: center;
    font-size: 0.74rem;
  }
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
}

.pillar-card {
  position: relative;
  height: clamp(260px, 34vh, 305px);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(13, 30, 54, 0.12);
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: #090f1a;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.pillar-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(13, 30, 54, 0.22);
}

/* Background image filling the entire card - borderless */
.pillar-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  border: none;
}

.pillar-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: none;
  outline: none;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), filter 0.6s ease;
  filter: brightness(0.92) contrast(1.04);
}

.pillar-card:hover .pillar-bg img {
  transform: scale(1.09);
  filter: brightness(0.82) contrast(1.08);
}

/* Base gradient + translucent hover sheet - borderless */
.pillar-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--space-5);
  background: linear-gradient(180deg,
      rgba(8, 14, 26, 0.04) 0%,
      rgba(8, 14, 26, 0.35) 42%,
      rgba(8, 14, 26, 0.92) 100%);
  transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  border: none;
  outline: none;
}

.pillar-card:hover .pillar-overlay,
.pillar-card.is-active .pillar-overlay {
  background: rgba(8, 14, 26, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.pillar-header {
  position: relative;
  z-index: 2;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.pillar-title {
  font-family: var(--font-heading);
  font-size: 1.18rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
  line-height: 1.28;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.95);
  transition: color 0.3s ease;
}

.pillar-divider {
  height: 2px;
  width: 34px;
  background: linear-gradient(90deg, #c5a059, transparent);
  margin: var(--space-2) 0;
  transition: width 0.4s ease, background 0.4s ease;
}

.pillar-card:hover .pillar-divider,
.pillar-card.is-active .pillar-divider {
  width: 100%;
  background: linear-gradient(90deg, #fae498 0%, #c5a059 100%);
  box-shadow: 0 0 10px rgba(229, 196, 110, 0.6);
}

/* Hover Content: hidden by default, smoothly reveals on hover */
.pillar-hover-content {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(14px);
  transition: max-height 0.45s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.4s ease,
    transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.pillar-card:hover .pillar-hover-content,
.pillar-card.is-active .pillar-hover-content {
  max-height: 120px;

  opacity: 1;
  transform: translateY(0);
}

.pillar-desc {
  font-size: 0.88rem;
  color: #f1f5f9;
  line-height: 1.5;
  margin: 0;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
}

/* --- OWNER SECTION PROCESS: ASÍ EMPEZAMOS A GESTIONAR TU PROPIEDAD --- */
.owner-section-solution {
  position: relative;
  background-color: #faf7f2;
  background-image:
    linear-gradient(180deg, rgba(250, 247, 242, 0.78) 0%, rgba(255, 255, 255, 0.45) 26%, rgba(250, 247, 242, 0.35) 60%, rgba(250, 248, 245, 0.78) 100%),
    url('../images/propiedades/propiedades_image.jpg');
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: var(--space-20) 0;
  border-top: 1px solid rgba(197, 160, 89, 0.28);
  border-bottom: 1px solid rgba(197, 160, 89, 0.28);
  overflow: hidden;
}

@media (min-width: 1025px) {
  .owner-section-solution {
    background-attachment: fixed;
  }
}

.owner-section-solution::before {
  content: '';
  position: absolute;
  top: 0;
  left: -5%;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(197, 160, 89, 0.12) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.owner-section-solution::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(13, 30, 54, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.process-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto var(--space-10);
  position: relative;
  z-index: 2;
}

.process-prebadge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  background: rgba(197, 160, 89, 0.12);
  border: 1px solid rgba(197, 160, 89, 0.35);
  border-radius: var(--radius-full);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #996515;
  margin-bottom: var(--space-3);
}

.process-prebadge .prebadge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #c5a059;
  box-shadow: 0 0 8px #c5a059;
}

.process-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.2vw, 2.65rem);
  line-height: 1.25;
  margin-bottom: var(--space-3);
  color: #0d1e36;
}

.process-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0 auto;
  max-width: 700px;
}

/* --- TIMELINE TRACK WRAPPER --- */
.timeline-flow-container {
  position: relative;
  margin-bottom: var(--space-12);
  z-index: 2;
}

/* Desktop Connecting Line */
.timeline-track-line {
  position: absolute;
  top: 23px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg,
      rgba(197, 160, 89, 0.25) 0%,
      rgba(197, 160, 89, 0.8) 25%,
      rgba(197, 160, 89, 0.8) 75%,
      rgba(197, 160, 89, 0.25) 100%);
  z-index: 1;
}

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-4);
  position: relative;
  z-index: 2;
}

/* Timeline Step Item */
.timeline-step-item {
  display: flex;
  flex-direction: column;
  position: relative;
}

/* Illuminated Top Node + Physical Vertical Connector */
.timeline-node-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 22px;
  position: relative;
}

/* Vertical Golden Connector Linking Node to Card */
.timeline-node-wrapper::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 22px;
  background: linear-gradient(180deg, rgba(197, 160, 89, 0.75) 0%, rgba(197, 160, 89, 0.3) 100%);
  z-index: 1;
  transition: all 0.35s ease;
}

.timeline-step-item:hover .timeline-node-wrapper::after,
.timeline-step-item.is-active .timeline-node-wrapper::after {
  background: linear-gradient(180deg, #fae498 0%, #c5a059 100%);
  box-shadow: 0 0 10px rgba(250, 228, 152, 0.8);
  width: 2.5px;
}

.timeline-node {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid rgba(197, 160, 89, 0.55);
  box-shadow: 0 6px 16px rgba(13, 30, 54, 0.08), 0 0 0 5px rgba(250, 247, 242, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: #996515;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 3;
}

.timeline-step-item:hover .timeline-node,
.timeline-step-item.is-active .timeline-node {
  background: linear-gradient(135deg, #fae498 0%, #c5a059 100%);
  color: #0d1e36;
  border-color: #fae498;
  transform: scale(1.15);
  box-shadow: 0 8px 24px rgba(197, 160, 89, 0.5), 0 0 0 6px rgba(255, 255, 255, 0.95);
}

/* Glassmorphism Timeline Card: Warm Liquid Glass */
.timeline-card {
  background: linear-gradient(175deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.82) 50%, rgba(253, 249, 242, 0.88) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(197, 160, 89, 0.32);
  border-radius: 22px;
  padding: 24px 20px 20px;
  box-shadow:
    inset 0 1.5px 1px rgba(255, 255, 255, 1),
    inset 0 -1px 1px rgba(197, 160, 89, 0.1),
    0 12px 32px rgba(13, 30, 54, 0.07);
  display: flex;
  flex-direction: column;
  height: 100%;
  box-sizing: border-box;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    background 0.4s ease;
  position: relative;
  overflow: hidden;
}

.timeline-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, rgba(197, 160, 89, 0.85) 50%, transparent 100%);
  opacity: 0.6;
  transition: opacity 0.4s ease, height 0.4s ease;
}

.timeline-step-item:hover .timeline-card,
.timeline-step-item.is-active .timeline-card {
  transform: translateY(-8px);
  background: linear-gradient(175deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 253, 248, 0.94) 100%);
  border-color: rgba(197, 160, 89, 0.75);
  box-shadow:
    inset 0 1.5px 1px rgba(255, 255, 255, 1),
    0 22px 48px rgba(13, 30, 54, 0.13),
    0 0 26px rgba(197, 160, 89, 0.22);
}

.timeline-step-item:hover .timeline-card::before,
.timeline-step-item.is-active .timeline-card::before {
  opacity: 1;
  height: 3.5px;
  background: linear-gradient(90deg, transparent 0%, #fae498 30%, #c5a059 70%, transparent 100%);
}

/* Card Header: Icon & Tag */
.timeline-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-3);
}

.timeline-tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8c5e18;
  background: linear-gradient(135deg, rgba(197, 160, 89, 0.14) 0%, rgba(197, 160, 89, 0.05) 100%);
  padding: 4px 11px;
  border-radius: 20px;
  border: 1px solid rgba(197, 160, 89, 0.28);
  box-shadow: 0 1px 3px rgba(197, 160, 89, 0.08);
}

.timeline-icon-wrap {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(245, 241, 233, 0.8) 100%);
  border: 1px solid rgba(197, 160, 89, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #996515;
  box-shadow: 0 2px 8px rgba(13, 30, 54, 0.05), inset 0 1px 0 #ffffff;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.timeline-icon-wrap svg {
  width: 17px;
  height: 17px;
  transition: transform 0.35s ease;
}

.timeline-step-item:hover .timeline-icon-wrap,
.timeline-step-item.is-active .timeline-icon-wrap {
  background: linear-gradient(135deg, #0d1e36 0%, #162a45 100%);
  border-color: #0d1e36;
  color: #fae498;
  transform: scale(1.1) rotate(-3deg);
  box-shadow: 0 4px 14px rgba(13, 30, 54, 0.2);
}

/* Card Title */
.timeline-title {
  font-family: var(--font-heading);
  font-size: 1.28rem;
  font-weight: 700;
  color: #0d1e36;
  margin: 0 0 6px;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.timeline-card-accent {
  width: 22px;
  height: 2px;
  background: linear-gradient(90deg, #c5a059, transparent);
  border-radius: 2px;
  margin-bottom: var(--space-3);
  transition: width 0.35s ease, background 0.35s ease;
}

.timeline-step-item:hover .timeline-card-accent,
.timeline-step-item.is-active .timeline-card-accent {
  width: 38px;
  background: linear-gradient(90deg, #996515 0%, #c5a059 100%);
}

/* Card Desc */
.timeline-desc {
  font-size: 0.88rem;
  color: #475569;
  line-height: 1.6;
  margin: 0 0 var(--space-4);
  flex-grow: 1;
}

/* Card Footer Benefit: Luxury Champagne / Gold Pill */
.timeline-benefit {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.76rem;
  font-weight: 600;
  color: #785210;
  background: linear-gradient(135deg, rgba(197, 160, 89, 0.12) 0%, rgba(254, 250, 243, 0.9) 100%);
  border: 1px solid rgba(197, 160, 89, 0.35);
  padding: 5px 12px;
  border-radius: var(--radius-full);
  box-shadow: 0 2px 6px rgba(197, 160, 89, 0.08);
  margin-top: auto;
  transition: all 0.3s ease;
}

.timeline-benefit svg {
  width: 12px;
  height: 12px;
  color: #996515;
  flex-shrink: 0;
}

.timeline-step-item:hover .timeline-benefit,
.timeline-step-item.is-active .timeline-benefit {
  background: linear-gradient(135deg, rgba(197, 160, 89, 0.22) 0%, rgba(255, 255, 255, 0.95) 100%);
  border-color: rgba(197, 160, 89, 0.65);
  color: #5d3d05;
  box-shadow: 0 3px 10px rgba(197, 160, 89, 0.18);
  transform: translateY(-1px);
}

/* Conversion CTA footer */
.process-cta-wrap {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 2;
}

/* Responsive: Mobile Vertical Roadmap */
@media (max-width: 1024px) {
  .timeline-track-line {
    top: 0;
    bottom: 0;
    left: 23px;
    right: auto;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg,
        rgba(197, 160, 89, 0.3) 0%,
        rgba(197, 160, 89, 0.8) 50%,
        rgba(197, 160, 89, 0.3) 100%);
  }

  .timeline-grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
    padding-left: 54px;
    position: relative;
  }

  .timeline-step-item {
    position: relative;
  }

  .timeline-node-wrapper {
    position: absolute;
    left: -54px;
    top: 18px;
    margin-bottom: 0;
  }

  .timeline-node-wrapper::after {
    top: 50%;
    left: 100%;
    transform: translateY(-50%);
    width: 14px;
    height: 2px;
    background: linear-gradient(90deg, rgba(197, 160, 89, 0.75) 0%, rgba(197, 160, 89, 0.35) 100%);
  }
}

.owner-section-values {
  background: #ffffff;
  padding: var(--space-16) 0;
  position: relative;
}

.owner-section-contact {
  background: #f8fafc;
  padding: clamp(30px, 4.5vh, 50px) 0;
  position: relative;
  border-top: 1px solid rgba(197, 160, 89, 0.18);
  min-height: calc(100vh - var(--navbar-height));
  display: flex;
  align-items: center;
  box-sizing: border-box;
  scroll-margin-top: calc(var(--navbar-height) + 15px);
}

@media (max-width: 991px) {
  .owner-section-contact {
    min-height: auto;
    max-height: none;
    padding: var(--space-12) 0;
    overflow: visible;
  }
}

.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  align-items: center;
  width: 100%;
}

/* --- SMARTPHONE MOCKUP FOR OWNER FORM --- */
@keyframes phoneEntrance {
  0% {
    opacity: 0;
    transform: perspective(1200px) translateY(55px) scale(0.92) rotateX(10deg);
  }

  65% {
    opacity: 1;
    transform: perspective(1200px) translateY(-6px) scale(1.01) rotateX(-2deg);
  }

  100% {
    opacity: 1;
    transform: perspective(1200px) translateY(0) scale(1) rotateX(0deg);
  }
}

@keyframes phoneFloatAmbient {
  0% {
    transform: perspective(1200px) translateY(0) rotateX(0deg);
  }

  50% {
    transform: perspective(1200px) translateY(-6px) rotateX(1deg);
  }

  100% {
    transform: perspective(1200px) translateY(0) rotateX(0deg);
  }
}

@keyframes formScreenFade {
  0% {
    opacity: 0;
    transform: translateY(22px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.phone-mockup-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  perspective: 1200px;
}

.phone-device {
  position: relative;
  width: 100%;
  max-width: 350px;
  height: clamp(470px, calc(100vh - 145px), 565px);
  background: #08101a;
  border-radius: 42px;
  padding: 8px;
  box-shadow:
    0 0 0 2px rgba(197, 160, 89, 0.45),
    0 0 0 4.5px #152336,
    0 22px 55px -12px rgba(0, 0, 0, 0.65),
    0 8px 20px -4px rgba(197, 160, 89, 0.18);
  border: 2px solid #253954;
  box-sizing: border-box;
  margin: 0 auto;
  opacity: 0;
  transform: perspective(1200px) translateY(45px) scale(0.93);
}

.reveal.revealed .phone-device {
  animation: phoneEntrance 1.15s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards,
    phoneFloatAmbient 6.5s ease-in-out 1.35s infinite;
}

/* Side physical buttons (Volume & Power) */
.phone-device::before {
  content: '';
  position: absolute;
  left: -7px;
  top: 95px;
  width: 4px;
  height: 42px;
  background: #253954;
  border-radius: 3px 0 0 3px;
  box-shadow: 0 54px 0 0 #253954;
}

.phone-device::after {
  content: '';
  position: absolute;
  right: -7px;
  top: 115px;
  width: 4px;
  height: 58px;
  background: #253954;
  border-radius: 0 3px 3px 0;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(165deg, #0d1e36 0%, #07101c 100%);
  border-radius: 36px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
}

/* Glass specular reflection overlay */
.phone-screen::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 28%, transparent 42%);
  pointer-events: none;
  z-index: 20;
}

/* Status Bar with Dynamic Island */
.phone-status-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 18px 2px;
  color: #f1f5f9;
  font-size: 0.68rem;
  font-weight: 600;
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', Roboto, sans-serif;
  z-index: 25;
  flex-shrink: 0;
  user-select: none;
}

.phone-time {
  letter-spacing: -0.01em;
}

.phone-island {
  width: 76px;
  height: 19px;
  background: #000000;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 6px;
  box-shadow: inset 0 0 1px 1px rgba(255, 255, 255, 0.08);
}

.phone-camera {
  width: 7px;
  height: 7px;
  background: #0e1e36;
  border: 1.5px solid #1c3354;
  border-radius: 50%;
}

.phone-status-icons {
  display: flex;
  align-items: center;
  gap: 5px;
}

.phone-status-icons svg {
  width: 12px;
  height: 12px;
}

/* Inner App Scroll Body */
.phone-body {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 0 14px 6px;
  scrollbar-width: thin;
  scrollbar-color: rgba(197, 160, 89, 0.4) transparent;
  position: relative;
  z-index: 10;
  opacity: 0;
  display: flex;
  flex-direction: column;
}

.reveal.revealed .phone-body {
  animation: formScreenFade 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}

.phone-body::-webkit-scrollbar {
  width: 4px;
}

.phone-body::-webkit-scrollbar-thumb {
  background: rgba(197, 160, 89, 0.35);
  border-radius: 4px;
}

.phone-body::-webkit-scrollbar-track {
  background: transparent;
}

/* Adaptations for owner-form-wrapper inside phone (Clean & Compact) */
.phone-body .owner-form-wrapper {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.phone-body .owner-form-wrapper h3 {
  font-size: 1.08rem !important;
  margin-bottom: 2px !important;
  line-height: 1.2 !important;
  font-weight: 700;
}

.phone-body .owner-form-wrapper .owner-form-desc {
  font-size: 0.69rem !important;
  margin-bottom: 6px !important;
  line-height: 1.3 !important;
  color: #94a3b8;
}

.phone-body form#owner-consultation-form {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 5px;
}

.phone-body .form-group {
  margin-bottom: 0 !important;
}

.phone-body .form-input,
.phone-body .form-textarea {
  padding: 5px 9px !important;
  font-size: 0.76rem !important;
  border-radius: 6px !important;
}

.phone-body .form-input {
  height: 33px !important;
}

.phone-body select.form-input {
  height: 33px !important;
  font-size: 0.73rem !important;
  padding: 0 4px !important;
}

.phone-body .form-textarea {
  min-height: 42px !important;
  height: 42px !important;
  resize: none !important;
}

.phone-body .form-label {
  font-size: 0.70rem !important;
  margin-bottom: 2px !important;
  font-weight: 600;
}

.phone-body .radio-pill-group {
  padding: 3px 8px !important;
  gap: 7px !important;
}

.phone-body .radio-pill-group label {
  font-size: 0.72rem !important;
}

.phone-body .situation-grid {
  gap: 4px !important;
}

.phone-body .situation-grid label {
  padding: 4px 6px !important;
  font-size: 0.68rem !important;
}

.phone-body .consent-group {
  display: flex !important;
  flex-direction: column !important;
  gap: 3px !important;
}

.phone-body .consent-card {
  padding: 4px 7px !important;
  margin-bottom: 0 !important;
}

.phone-body .consent-card span {
  font-size: 0.63rem !important;
  line-height: 1.22 !important;
}

.phone-body .btn-primary {
  padding: 9px 14px !important;
  font-size: 0.84rem !important;
  margin-top: 2px !important;
}

/* Home indicator */
.phone-home-indicator {
  height: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: 25;
  background: transparent;
}

.phone-home-bar {
  width: 95px;
  height: 3px;
  background: rgba(255, 255, 255, 0.45);
  border-radius: 9999px;
}

/* Standalone / Original Form Styles */
.owner-form-wrapper {
  background: linear-gradient(165deg, #0e1e36 0%, #081220 100%);
  border: 1px solid rgba(197, 160, 89, 0.42);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  box-shadow: 0 25px 60px -12px rgba(11, 26, 46, 0.5), 0 0 1px 1px rgba(197, 160, 89, 0.25);
  color: #f1f5f9;
  position: relative;
}

.owner-form-wrapper h3 {
  font-family: var(--font-heading);
  color: #ffffff !important;
  font-size: 1.75rem;
  text-align: center;
  margin-bottom: var(--space-2);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.owner-form-wrapper .owner-form-desc {
  text-align: center;
  color: #94a3b8;
  margin-bottom: var(--space-6);
  font-size: var(--text-sm);
}

.owner-form-wrapper .form-label {
  color: #e2e8f0;
  margin-bottom: var(--space-2);
}

.owner-form-wrapper .form-input,
.owner-form-wrapper .form-textarea {
  background: rgba(255, 255, 255, 0.06);
  border: 1.5px solid rgba(255, 255, 255, 0.16);
  color: #ffffff;
}

.owner-form-wrapper .form-input::placeholder,
.owner-form-wrapper .form-textarea::placeholder {
  color: #8fa0b5;
}

.owner-form-wrapper .form-input:focus,
.owner-form-wrapper .form-textarea:focus {
  background: rgba(255, 255, 255, 0.11);
  border-color: #c5a059;
  box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.28);
  color: #ffffff;
}

.owner-form-wrapper select.form-input {
  background: #112239;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.18);
}

.owner-form-wrapper select.form-input option {
  background: #0d1e36;
  color: #ffffff;
}

.owner-form-wrapper input[type="radio"],
.owner-form-wrapper input[type="checkbox"] {
  accent-color: #c5a059;
  cursor: pointer;
}

.owner-form-wrapper .radio-pill-group {
  display: flex;
  gap: var(--space-4);
  background: rgba(255, 255, 255, 0.06);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.owner-form-wrapper .radio-pill-group label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: #e2e8f0;
  cursor: pointer;
  transition: color var(--transition-fast);
}

.owner-form-wrapper .radio-pill-group label:hover {
  color: #ffffff;
}

.owner-form-wrapper .situation-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.owner-form-wrapper .situation-grid label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: #cbd5e1;
  cursor: pointer;
  padding: 7px 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.owner-form-wrapper .situation-grid label:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(197, 160, 89, 0.35);
  color: #ffffff;
}

.owner-form-wrapper .consent-card {
  background: rgba(255, 255, 255, 0.04);
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.09);
}

.owner-form-wrapper .consent-card span {
  font-size: 0.75rem;
  line-height: 1.35;
  color: #94a3b8;
}

.owner-form-wrapper .consent-card a {
  color: #fae498;
  text-decoration: underline;
  transition: color var(--transition-fast);
}

.owner-form-wrapper .consent-card a:hover {
  color: #ffffff;
}

.owner-form-wrapper .btn-primary {
  box-shadow: 0 8px 24px rgba(197, 160, 89, 0.35);
}

.form-group {
  margin-bottom: var(--space-4);
}

.form-label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
  color: #334155;
  margin-bottom: var(--space-2);
}

.form-input,
.form-textarea {
  width: 100%;
  background: #ffffff;
  border: 1.5px solid #cbd5e1;
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  color: #0d1e36;
  font-size: 0.95rem;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  background: #ffffff;
  border-color: #c5a059;
  box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.22);
}

.form-textarea {
  resize: vertical;
  min-height: 100px;
}

/* --- STATS DOCK INTEGRADO EN QUIÉNES SOMOS --- */
.about-hero-stats {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
  padding: 0 var(--space-4);
  box-sizing: border-box;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
  margin-top: 0;
}

.stat-item {
  position: relative;
  text-align: center;
  padding: 18px 14px 16px;
  background: linear-gradient(165deg, rgba(14, 30, 54, 0.85) 0%, rgba(8, 18, 34, 0.90) 100%);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(197, 160, 89, 0.32);
  border-radius: 14px;
  box-shadow:
    0 14px 32px -6px rgba(0, 0, 0, 0.45),
    0 3px 10px rgba(197, 160, 89, 0.08),
    inset 0 1px 1px rgba(255, 255, 255, 0.16);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 20%;
  right: 20%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #c5a059, transparent);
  opacity: 0.85;
  transition: all 0.35s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
  border-color: rgba(197, 160, 89, 0.75);
  box-shadow:
    0 18px 40px -8px rgba(8, 18, 34, 0.6),
    0 0 25px rgba(197, 160, 89, 0.20),
    inset 0 1px 2px rgba(255, 255, 255, 0.25);
}

.stat-item:hover::before {
  left: 10%;
  right: 10%;
  opacity: 1;
}

/* Numbers & Counters */
.stat-number-wrap {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin-bottom: 5px;
}

.stat-counter {
  font-family: var(--font-heading);
  font-size: clamp(1.85rem, 2.7vw, 2.3rem);
  font-weight: 700;
  color: #c5a059;
  line-height: 1;
  letter-spacing: -0.01em;
}

.stat-suffix {
  font-family: var(--font-heading);
  font-size: clamp(1.45rem, 2vw, 1.8rem);
  font-weight: 700;
  color: #c5a059;
  margin-left: 2px;
  line-height: 1;
}

.stat-label {
  color: #94a3b8;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.3;
  margin: 0;
}

.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
}

.about-story-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(13, 30, 54, 0.08);
  border: 1px solid rgba(197, 160, 89, 0.3);
  width: 80%;
  margin: 0 auto;
}

.about-story-image img {
  width: 100%;
  height: auto;
  display: block;
}

.about-story-text h2,
.about-story-text h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: #0d1e36;
  margin-bottom: var(--space-4);
  line-height: 1.25;
}

.about-story-text p {
  color: #475569;
  margin-bottom: var(--space-4);
  line-height: 1.75;
  font-size: 1.02rem;
}

/* Values Luxury Dark Cards — 3D Flip */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

/* Wrapper: defines the 3D perspective context */
.value-card {
  height: 220px;
  perspective: 1100px;
  cursor: pointer;
}

/* Rotating inner — both faces hang from this */
.value-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}

.value-card:hover .value-card-inner {
  transform: rotateY(180deg);
}

/* Shared face styles */
.value-card-front,
.value-card-back {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px 24px;
  border-radius: 18px;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  overflow: hidden;
  /* same dark premium look on both sides */
  background: linear-gradient(165deg, rgba(14, 30, 54, 0.90) 0%, rgba(8, 18, 34, 0.96) 100%);
  border: 1px solid rgba(197, 160, 89, 0.26);
  box-shadow:
    0 16px 36px -8px rgba(0, 0, 0, 0.55),
    0 2px 10px rgba(197, 160, 89, 0.06),
    inset 0 1px 1px rgba(255, 255, 255, 0.12);
}

/* Gold line accent top */
.value-card-front::before,
.value-card-back::before {
  content: '';
  position: absolute;
  top: 0;
  left: 25%;
  right: 25%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #c5a059, transparent);
  opacity: 0.75;
  transition: all 0.38s ease;
}

.value-card:hover .value-card-front::before,
.value-card:hover .value-card-back::before {
  left: 10%;
  right: 10%;
  opacity: 1;
}

/* Back face starts pre-rotated — translucent glassmorphism */
.value-card-back {
  transform: rotateY(180deg);
  background: rgba(8, 20, 38, 0.45);
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  border-color: rgba(197, 160, 89, 0.5);
  box-shadow:
    0 16px 40px -8px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(197, 160, 89, 0.15),
    inset 0 1px 1px rgba(255, 255, 255, 0.18);
}

/* Icon shared */
.value-icon {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  background: rgba(20, 42, 70, 0.85);
  border: 1px solid rgba(197, 160, 89, 0.35);
  color: #c5a059;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35), inset 0 1px 1px rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

.value-icon svg {
  width: 28px;
  height: 28px;
  color: #c5a059;
}

/* Smaller icon on back face */
.value-icon--back {
  width: 42px;
  height: 42px;
  margin-bottom: var(--space-3);
  border-color: rgba(197, 160, 89, 0.5);
  background: rgba(197, 160, 89, 0.12);
}

.value-icon--back svg {
  width: 20px;
  height: 20px;
  color: #fae498;
}

.value-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
  letter-spacing: -0.01em;
  line-height: 1.3;
  text-align: center;
}

.value-desc {
  color: #cbd5e1;
  font-size: 0.92rem;
  line-height: 1.65;
  margin: 0;
  font-weight: 400;
  text-align: center;
}

/* Amenity items */
.amenity-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: 0.75rem 1rem;
  background: #fdfbf7;
  border-radius: var(--radius-md);
  border: 1px solid rgba(197, 160, 89, 0.28);
  font-size: var(--text-sm);
  color: #0d1e36;
  font-weight: 500;
  box-shadow: 0 2px 8px rgba(13, 30, 54, 0.03);
  transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.amenity-item:hover {
  border-color: rgba(197, 160, 89, 0.6);
  transform: translateX(4px);
}

.amenity-item svg {
  width: 18px;
  height: 18px;
  color: #996515;
  flex-shrink: 0;
}

/* Destinations Carousel */
.destinations-carousel-wrapper {
  position: relative;
  padding: 0 50px;
  max-width: 1100px;
  margin: 0 auto;
}

.carousel-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid rgba(197, 160, 89, 0.35);
  color: #0d1e36;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(13, 30, 54, 0.08);
  transition: all var(--transition-fast);
}

.carousel-nav-btn:hover:not(:disabled) {
  background: linear-gradient(135deg, #e8ce8e 0%, #c5a059 100%);
  color: #0c1a2e;
  border-color: #c5a059;
  box-shadow: 0 6px 18px rgba(197, 160, 89, 0.35);
  transform: translateY(-50%) scale(1.05);
}

.carousel-nav-btn svg {
  width: 20px;
  height: 20px;
}

.carousel-nav-btn#dest-prev {
  left: 0;
}

.carousel-nav-btn#dest-next {
  right: 0;
}

.dest-track-container {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.dest-track {
  display: flex;
  gap: var(--space-4);
  transition: transform 0.4s ease-in-out;
}

.category-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 240px;
  flex: 0 0 calc(33.333% - (var(--space-4) * 2 / 3));
  border: 1px solid rgba(197, 160, 89, 0.3);
  box-shadow: 0 6px 20px rgba(13, 30, 54, 0.08);
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.category-card:hover img {
  transform: scale(1.06);
}

.category-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 30, 54, 0.92) 12%, rgba(13, 30, 54, 0.25) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--space-5);
}

.category-card-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 2px;
}

.category-card-count {
  font-size: var(--text-xs);
  color: #fae498;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 500;
}

/* CTA Banner */
.cta-banner {
  position: relative;
  padding: var(--space-20) 0;
  text-align: center;
  overflow: hidden;
}

.cta-banner-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cta-banner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.22);
}

.cta-banner-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}

.cta-banner-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  color: #ffffff;
  margin-bottom: var(--space-4);
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.7);
}

.cta-banner-content p {
  color: #e2e8f0;
  font-size: var(--text-lg);
  line-height: 1.6;
  margin-bottom: var(--space-8);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.6);
}

/* --- FOOTER --- */
.footer {
  background: #080e18;
  border-top: 1px solid rgba(197, 160, 89, 0.25);
  padding: var(--space-16) 0 var(--space-8);
  color: #e2e8f0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--space-10);
  margin-bottom: var(--space-12);
}

.footer-brand .navbar-logo span {
  color: #94a3b8;
}

.footer-brand .navbar-logo span strong {
  background: linear-gradient(135deg, #fae498 0%, #e5c46e 60%, #c5a059 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: #fae498;
  font-size: 1.18rem;
}

.footer-brand .navbar-logo .logo-img {
  filter: brightness(0) saturate(100%) invert(84%) sepia(28%) saturate(938%) hue-rotate(346deg) brightness(98%) contrast(92%);
}

.footer-brand p {
  font-size: var(--text-sm);
  color: #cbd5e1;
  line-height: 1.8;
  margin-top: var(--space-4);
}

.footer-title {
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #ffffff;
  margin-bottom: var(--space-4);
  position: relative;
  display: inline-block;
}

.footer-title::after {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, #e8ce8e, #c5a059);
  margin-top: 6px;
  border-radius: 1px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  padding: 0;
  margin: 0;
}

.footer-links li {
  color: #cbd5e1;
  font-size: var(--text-sm);
}

.footer-links a {
  color: #cbd5e1;
  font-size: var(--text-sm);
  transition: all var(--transition-fast);
  display: inline-block;
}

.footer-links a:hover {
  color: #fae498;
  transform: translateX(3px);
}

.footer-social {
  display: flex;
  gap: var(--space-3);
  margin-top: var(--space-6);
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(197, 160, 89, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fae498;
  transition: all var(--transition-fast);
}

.footer-social a:hover {
  background: linear-gradient(135deg, #e8ce8e 0%, #c5a059 100%);
  color: #0c1a2e;
  border-color: #c5a059;
  transform: translateY(-3px);
  box-shadow: 0 4px 14px rgba(197, 160, 89, 0.35);
}

.footer-social a svg {
  width: 18px;
  height: 18px;
}

.footer-bottom {
  padding-top: var(--space-6);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--text-xs);
  color: #94a3b8;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.footer-bottom a {
  color: #fae498;
  transition: color var(--transition-fast);
}

.footer-bottom a:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* --- Floating Actions & Tooltips --- */
.floating-actions {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 999;
  display: flex;
  align-items: center;
}

.whatsapp-float {
  width: 54px;
  height: 54px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 22px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
}

/* Scroll-to-top Button: fijado a la derecha de la pantalla */
.scroll-top-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 48px;
  height: 48px;
  background: #ffffff;
  border: 1.5px solid rgba(197, 160, 89, 0.45);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0d1e36;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(13, 30, 54, 0.16);
  transition: all var(--transition-fast);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
}

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

.scroll-top-btn:hover {
  background: linear-gradient(135deg, #e8ce8e 0%, #c5a059 100%);
  color: #0c1a2e;
  border-color: #c5a059;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(197, 160, 89, 0.38);
}

.scroll-top-btn svg {
  width: 22px;
  height: 22px;
}

/* ==========================================================================
   ELEGANT LUXURY KEYFRAMES & ORCHESTRATED SECTION ANIMATIONS
   ========================================================================== */

/* --- Core Keyframe Definitions --- */

/* 1. Ultra-smooth fade & lift with optical depth */
@keyframes luxFadeUp {
  0% {
    opacity: 0;
    transform: translateY(24px);
    filter: blur(4px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

/* 2. Soft scale & elevation for cards */
@keyframes luxScaleIn {
  0% {
    opacity: 0;
    transform: translateY(18px) scale(0.96);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* 3. Lateral slide reveals */
@keyframes luxSlideLeft {
  0% {
    opacity: 0;
    transform: translateX(22px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes luxSlideRight {
  0% {
    opacity: 0;
    transform: translateX(-22px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* 4. Ambient breathing glow for badges and highlights */
@keyframes luxGlowPulse {
  0%,
  100% {
    box-shadow: 0 4px 16px rgba(197, 160, 89, 0.15), 0 0 0 1px rgba(197, 160, 89, 0.25);
  }

  50% {
    box-shadow: 0 6px 24px rgba(197, 160, 89, 0.38), 0 0 14px rgba(250, 228, 152, 0.35);
  }
}

/* 5. Subtle continuous floating for hero tags & badges */
@keyframes luxFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-4px);
  }
}

/* 6. Luxury light sheen sweep across buttons */
@keyframes luxSheenSweep {
  0% {
    left: -75%;
  }

  100% {
    left: 135%;
  }
}

/* 7. Spain map contour breathing aura */
@keyframes spainAuraPulse {
  0%,
  100% {
    stroke: #38bdf8;
    stroke-width: 2.2px;
    filter: drop-shadow(0 0 5px rgba(56, 189, 248, 0.55));
  }

  50% {
    stroke: #7dd3fc;
    stroke-width: 2.6px;
    filter: drop-shadow(0 0 11px rgba(56, 189, 248, 0.85)) drop-shadow(0 0 22px rgba(14, 165, 233, 0.4));
  }
}

/* 8. Timeline continuous luxury shimmer */
@keyframes timelineFlowTrack {
  0% {
    background-position: 100% 0;
  }

  100% {
    background-position: -100% 0;
  }
}

/* 9. Timeline node ambient glow */
@keyframes timelineNodeGlow {
  0%,
  100% {
    box-shadow: 0 6px 16px rgba(13, 30, 54, 0.08), 0 0 0 5px rgba(250, 247, 242, 0.95);
  }

  50% {
    box-shadow: 0 8px 24px rgba(197, 160, 89, 0.3), 0 0 0 6px rgba(250, 247, 242, 1);
  }
}

/* 10. WhatsApp floating button breath */
@keyframes waFloatBreath {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.38);
  }

  50% {
    transform: scale(1.05);
    box-shadow: 0 10px 28px rgba(37, 211, 102, 0.58), 0 0 16px rgba(37, 211, 102, 0.32);
  }
}

/* --- Base Reveal State & Fallbacks --- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.animate-fadeInUp {
  animation: luxFadeUp 0.85s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* --- SECTION 1: HERO SECTION ORCHESTRATION --- */
.owner-hero .hero-tag {
  opacity: 0;
  animation: heroTagEntrance 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.05s forwards,
             luxFloat 4.5s ease-in-out 1s infinite;
}

@keyframes heroTagEntrance {
  0% {
    opacity: 0;
    transform: translateY(-14px) scale(0.96);
    letter-spacing: 0.22em;
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    letter-spacing: 0.15em;
  }
}

.owner-hero h1 {
  opacity: 0;
  animation: heroTitleEntrance 1.05s cubic-bezier(0.16, 1, 0.3, 1) 0.18s forwards;
}

@keyframes heroTitleEntrance {
  0% {
    opacity: 0;
    transform: translateY(26px);
    filter: blur(5px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

.owner-hero-subtitle {
  opacity: 0;
  animation: luxFadeUp 0.95s cubic-bezier(0.16, 1, 0.3, 1) 0.35s forwards;
}

.owner-hero .btn {
  opacity: 0;
  animation: luxScaleIn 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
}

/* Luxury sheen on primary buttons */
.btn-primary {
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -75%;
  width: 50%;
  height: 200%;
  background: linear-gradient(
    60deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.36) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: rotate(25deg);
  pointer-events: none;
}

.btn-primary:hover::after {
  animation: luxSheenSweep 0.85s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* --- SECTION 2: REALITY SECTION ORCHESTRATION --- */
.owner-section-reality.revealed .reality-ambient-glow {
  animation: realityGlowPulse 6s ease-in-out infinite;
}

@keyframes realityGlowPulse {
  0%,
  100% {
    opacity: 0.6;
    transform: scale(1);
  }

  50% {
    opacity: 0.95;
    transform: scale(1.12);
  }
}

.owner-section-reality.revealed .reality-title {
  animation: luxFadeUp 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
}

.owner-section-reality.revealed .reality-lead {
  animation: luxFadeUp 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.22s both;
}

.owner-section-reality.revealed .reality-visual-wrapper {
  animation: luxScaleIn 0.95s cubic-bezier(0.16, 1, 0.3, 1) 0.32s both;
}

.reality-stream-item {
  opacity: 0;
  will-change: opacity, transform;
}

.owner-section-reality.revealed .reality-stream-item {
  animation: luxSlideLeft 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.18s forwards;
}

.owner-section-reality.revealed .reality-stream-item:nth-child(2) {
  animation-delay: 0.18s;
}

.owner-section-reality.revealed .reality-stream-item:nth-child(3) {
  animation-delay: 0.32s;
}

.owner-section-reality.revealed .reality-stream-item:nth-child(4) {
  animation-delay: 0.46s;
}

/* --- SECTION 3: CONCERNS BANNER ORCHESTRATION --- */
.owner-concerns-full.revealed .concerns-title {
  animation: luxFadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
}

.owner-concerns-full.revealed .concerns-intro {
  animation: luxFadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.22s both;
}

.concern-flow-item {
  opacity: 0;
  will-change: opacity, transform;
}

.owner-concerns-full.revealed .concern-flow-item:nth-child(1) {
  animation: luxScaleIn 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.14s forwards;
}

.owner-concerns-full.revealed .concern-flow-item:nth-child(2) {
  animation: luxScaleIn 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.26s forwards;
}

.owner-concerns-full.revealed .concern-flow-item:nth-child(3) {
  animation: luxScaleIn 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.38s forwards;
}

.owner-concerns-full.revealed .concern-flow-item:nth-child(4) {
  animation: luxScaleIn 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.50s forwards;
}

/* --- SECTION 4: PILLARS SECTION ORCHESTRATION --- */
.owner-section-pillars.revealed .bridge-badge {
  animation: luxScaleIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both,
             luxGlowPulse 4.5s ease-in-out 1s infinite;
}

.owner-section-pillars.revealed .pillars-title-main {
  animation: luxFadeUp 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.18s both;
}

.owner-section-pillars.revealed .pillars-subtitle-main {
  animation: luxFadeUp 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.28s both;
}

.pillar-card {
  opacity: 0;
  will-change: opacity, transform;
}

.owner-section-pillars.revealed .pillar-card:nth-child(1) {
  animation: luxScaleIn 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.14s forwards;
}

.owner-section-pillars.revealed .pillar-card:nth-child(2) {
  animation: luxScaleIn 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.26s forwards;
}

.owner-section-pillars.revealed .pillar-card:nth-child(3) {
  animation: luxScaleIn 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.38s forwards;
}

.owner-section-pillars.revealed .pillar-card:nth-child(4) {
  animation: luxScaleIn 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.50s forwards;
}

.owner-section-pillars.revealed .pillar-divider {
  animation: pillarDividerGrow 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.45s both;
}

@keyframes pillarDividerGrow {
  0% {
    width: 0;
    opacity: 0;
  }

  100% {
    width: 36px;
    opacity: 1;
  }
}

/* --- SECTION 5: CITIES & MAP SECTION ORCHESTRATION --- */
.owner-section-cities.revealed .cities-title {
  animation: luxFadeUp 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
}

.owner-section-cities.revealed .cities-subtitle {
  animation: luxFadeUp 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.22s both;
}

.owner-section-cities.revealed .coverage-map-col {
  animation: luxFadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.25s both;
}

.spain-remarcada-path {
  animation: spainAuraPulse 3.8s ease-in-out infinite;
}

.faq-item {
  opacity: 0;
  will-change: opacity, transform;
}

.owner-section-cities.revealed .faq-item:nth-child(1) {
  animation: luxSlideLeft 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.12s forwards;
}

.owner-section-cities.revealed .faq-item:nth-child(2) {
  animation: luxSlideLeft 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.22s forwards;
}

.owner-section-cities.revealed .faq-item:nth-child(3) {
  animation: luxSlideLeft 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.32s forwards;
}

.owner-section-cities.revealed .faq-item:nth-child(4) {
  animation: luxSlideLeft 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.42s forwards;
}

.owner-section-cities.revealed .faq-item:nth-child(5) {
  animation: luxSlideLeft 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.52s forwards;
}

/* --- SECTION 6: SOLUTION / PROCESS SECTION ORCHESTRATION --- */
.owner-section-solution.revealed .process-title {
  animation: luxFadeUp 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
}

.owner-section-solution.revealed .process-subtitle {
  animation: luxFadeUp 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.22s both;
}

.timeline-track-line {
  background-size: 200% 100%;
  animation: timelineFlowTrack 6s linear infinite;
}

.timeline-step-item {
  opacity: 0;
  will-change: opacity, transform;
}

.owner-section-solution.revealed .timeline-step-item:nth-child(1) {
  animation: luxScaleIn 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.12s forwards;
}

.owner-section-solution.revealed .timeline-step-item:nth-child(2) {
  animation: luxScaleIn 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.24s forwards;
}

.owner-section-solution.revealed .timeline-step-item:nth-child(3) {
  animation: luxScaleIn 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.36s forwards;
}

.owner-section-solution.revealed .timeline-step-item:nth-child(4) {
  animation: luxScaleIn 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.48s forwards;
}

.owner-section-solution.revealed .timeline-step-item:nth-child(5) {
  animation: luxScaleIn 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.60s forwards;
}

.timeline-node {
  animation: timelineNodeGlow 4.5s ease-in-out infinite;
}

/* --- SECTION 7: CONTACT CONSULTATION SECTION ORCHESTRATION --- */
.owner-section-contact.revealed .split-content:first-child {
  animation: luxSlideRight 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
}

.owner-section-contact.revealed .split-content:last-child {
  animation: luxSlideLeft 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.22s both;
}

/* --- SECTION 8: ABOUT US (QUIÉNES SOMOS) ORCHESTRATION --- */
.about-hero.revealed .about-hero-content h1 {
  animation: luxFadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.15s both;
}

.about-hero.revealed .about-hero-subtitle {
  animation: luxFadeUp 0.95s cubic-bezier(0.16, 1, 0.3, 1) 0.32s both;
}

.about-section-story.revealed .split-content:first-child {
  animation: luxSlideRight 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
}

.about-section-story.revealed .split-content:last-child {
  animation: luxSlideLeft 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.22s both;
}

.about-section-values.revealed .value-card {
  animation: luxScaleIn 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.18s both;
}

/* --- SECTION 9: FOOTER & FLOATING ACTIONS --- */
.footer.revealed .footer-brand {
  animation: luxFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
}

.footer.revealed .footer-links {
  animation: luxFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.22s both;
}

.whatsapp-float {
  animation: waFloatBreath 3.5s ease-in-out infinite;
}

.scroll-top-btn.visible {
  animation: luxScaleIn 0.45s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* --- ACCESSIBILITY & NO-JS FALLBACKS --- */
.no-js .reveal,
.no-js .owner-hero .hero-tag,
.no-js .owner-hero h1,
.no-js .owner-hero-subtitle,
.no-js .owner-hero .btn,
.no-js .reality-stream-item,
.no-js .concern-flow-item,
.no-js .pillar-card,
.no-js .faq-item,
.no-js .timeline-step-item,
.no-js .phone-device,
@media (scripting: none) {
  .reveal,
  .owner-hero .hero-tag,
  .owner-hero h1,
  .owner-hero-subtitle,
  .owner-hero .btn,
  .reality-stream-item,
  .concern-flow-item,
  .pillar-card,
  .faq-item,
  .timeline-step-item,
  .phone-device {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001s !important;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}

/* --- Responsive Media Queries --- */
@media (max-width: 992px) {

  .split-layout,
  .about-story {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .about-section-story,
  .about-section-values {
    min-height: auto;
    padding: var(--space-14) 0;
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .concerns-stream-row {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-8) var(--space-6);
  }

  .category-card {
    flex: 0 0 calc(50% - (var(--space-4) / 2));
  }

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

@media (max-width: 768px) {

  .navbar-links,
  .navbar-actions .btn {
    display: none;
  }

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

  .grid-2,
  .grid-3,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .value-card {
    height: 200px;
  }

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

  .category-card {
    flex: 0 0 100%;
  }

  .concerns-stream-row {
    grid-template-columns: 1fr;
    gap: var(--space-4);
    padding: var(--space-5) var(--space-4);
  }

  .concern-flow-item {
    cursor: pointer;
    padding: var(--space-3) var(--space-3);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    transition: background 0.3s ease;
  }

  .concern-flow-item:hover,
  .concern-flow-item:active,
  .concern-flow-item.is-active {
    background: rgba(255, 255, 255, 0.08);
  }

  /* Ocultar descripción en móvil por defecto y mostrar al pasar el mouse / tocar */
  .concern-flow-item .concern-flow-desc {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    margin: 0;
    transform: translateY(-6px);
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1),
      opacity 0.35s ease,
      margin 0.35s ease,
      transform 0.35s ease;
  }

  .concern-flow-item:hover .concern-flow-desc,
  .concern-flow-item:active .concern-flow-desc,
  .concern-flow-item:focus .concern-flow-desc,
  .concern-flow-item:focus-within .concern-flow-desc,
  .concern-flow-item.is-active .concern-flow-desc {
    max-height: 140px;
    opacity: 1;
    margin-top: 10px;
    transform: translateY(0);
  }

  /* Desplegable para reality-stream en móvil */
  .reality-stream-toggle {
    display: flex;
  }

  .reality-stream-item {
    cursor: pointer;
    user-select: none;
    padding: var(--space-3) var(--space-2);
    border-radius: 12px;
    transition: background 0.3s ease;
  }

  .reality-stream-item.is-open .reality-stream-content,
  .reality-stream-item:hover .reality-stream-content {
    background: linear-gradient(90deg, rgba(254, 242, 242, 0.75) 0%, rgba(250, 248, 245, 0.5) 100%);
    transform: translateX(8px);
    box-shadow: 0 10px 30px rgba(13, 30, 54, 0.04);
  }

  /* Deslizamiento hacia la derecha (slide right) */
  .reality-stream-content p {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    margin: 0;
    transform: translateX(-40px);
    clip-path: inset(0 100% 0 0);
    transition: max-height 0.45s cubic-bezier(0.16, 1, 0.3, 1),
      opacity 0.4s ease,
      transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
      clip-path 0.45s cubic-bezier(0.16, 1, 0.3, 1),
      margin 0.35s ease;
  }

  .reality-stream-item:hover .reality-stream-content p,
  .reality-stream-item:active .reality-stream-content p,
  .reality-stream-item.is-open .reality-stream-content p,
  .reality-stream-item.is-active .reality-stream-content p {
    max-height: 180px;
    opacity: 1;
    margin-top: 8px;
    transform: translateX(0);
    clip-path: inset(0 0 0 0);
  }

  .reality-stream-item.is-open .reality-stream-toggle,
  .reality-stream-item:hover .reality-stream-toggle {
    transform: translateX(3px) rotate(90deg);
    background: #fff1f2;
    color: #e11d48;
  }

  .reality-visual-wrapper {
    grid-template-columns: 1fr;
  }

  .reality-carousel {
    height: 240px;
  }

  .owner-concerns-full {
    padding: var(--space-12) 0;
  }

  .destinations-carousel-wrapper {
    padding: 0 40px;
  }

  .owner-hero {
    padding-top: calc(var(--navbar-height) + 40px);
    padding-bottom: 50px;
    min-height: 60vh;
  }

  .owner-hero h1 {
    font-size: 1.85rem !important;
  }

  .owner-hero-subtitle p {
    font-size: 0.95rem !important;
  }

  .pillars-grid {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }

  .pillar-card {
    height: 350px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
}

@media (min-width: 641px) and (max-width: 1024px) {
  .pillars-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {

  .about-hero,
  .about-hero-inner {
    min-height: auto;
  }

  .about-hero-inner {
    padding-top: calc(var(--navbar-height) + 30px);
    padding-bottom: 40px;
  }

  .about-hero-content {
    margin-top: var(--space-4);
    margin-bottom: var(--space-6);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
  }
}

@media (max-width: 540px) {
  .stats-grid {
    grid-template-columns: 1fr;
    gap: var(--space-3);
  }

  .stat-item {
    padding: 24px 16px 20px;
  }
}

/* ==============================================================================
   GEO & SEO: COBERTURA CON MAPA INTERACTIVO Y FAQs (LAYOUT SPLIT)
   ============================================================================== */
.owner-section-cities {
  padding: var(--space-20) 0;
  background: radial-gradient(ellipse at 50% 15%, #15325b 0%, #0d1e36 55%, #071224 100%);
  position: relative;
  overflow: hidden;
}

.owner-section-cities .container {
  position: relative;
  z-index: 5;
}

.cities-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto var(--space-12);
  position: relative;
  z-index: 5;
}

.cities-title {
  font-family: var(--font-heading);
  font-size: clamp(2.1rem, 3.4vw, 2.9rem);
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: var(--space-3);
}

.cities-title .accent-text {
  color: #fae498;
  background: linear-gradient(135deg, #fae498 0%, #c5a059 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cities-subtitle {
  font-size: 1.08rem;
  color: #94a3b8;
  line-height: 1.65;
  margin: 0 auto;
}

.coverage-split-layout {
  display: grid;
  grid-template-columns: 0.98fr 1.02fr;
  gap: var(--space-10);
  align-items: start;
}

.coverage-map-col {
  position: static;
}

/* Columna Derecha: FAQ Accordion (Tema Oscuro con z-index superior) */
.coverage-faq-col {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 10;
}

.faq-accordion {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.faq-item {
  background: #0b1a30;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
}

.faq-item.is-active,
.faq-item:hover {
  border-color: rgba(197, 160, 89, 0.6);
  background: #112848;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.55), 0 0 20px rgba(197, 160, 89, 0.15);
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-4) var(--space-5);
  background: #0b1a30;
  border: none;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: #f8fafc;
  transition: background 0.25s ease, color 0.2s ease;
}

.faq-trigger:hover,
.faq-item.is-active .faq-trigger {
  background: #112848;
  color: #fae498;
}

.faq-chevron {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(197, 160, 89, 0.16);
  color: #fae498;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease, background 0.2s ease, color 0.2s ease;
}

.faq-item.is-active .faq-chevron {
  transform: rotate(180deg);
  background: #c5a059;
  color: #0d1e36;
}

.faq-content {
  display: none;
  padding: 0 var(--space-5) var(--space-5);
  background: #0b1a30;
}

.faq-item.is-active .faq-content {
  display: block;
  background: #112848;
}

.faq-content p {
  font-size: 0.94rem;
  color: #cbd5e1;
  line-height: 1.65;
  margin: 0;
}

/* Fondo de Sección: Mapa de Europa de Fondo Completo (Clean Luxury, Tono Blanco, Nodos Blancos) */
.europe-bg-map-wrap {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.europe-bg-map-wrap svg {
  width: 100%;
  height: 100%;
  min-width: 950px;
  object-fit: cover;
  opacity: 0.95;
}

.europe-country-path {
  fill: rgba(255, 255, 255, 0.015);
  stroke: rgba(255, 255, 255, 0.3);
  stroke-width: 0.85;
  stroke-linejoin: round;
  transition: stroke 0.3s ease, fill 0.3s ease;
}

/* España Remarcada en Primer Plano con Brillo */
.spain-remarcada-path {
  fill: rgba(56, 189, 248, 0.12);
  stroke: #ffffff;
  stroke-width: 2.2;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 10px rgba(56, 189, 248, 0.75)) drop-shadow(0 0 3px #ffffff);
}

/* Líneas de Constelación de Europa (Blancas) */
.europe-line {
  stroke: rgba(255, 255, 255, 0.3);
  stroke-width: 0.8;
  stroke-linecap: round;
  filter: drop-shadow(0 0 1.5px rgba(255, 255, 255, 0.35));
}

.spain-internal-line {
  stroke: #38bdf8;
  stroke-width: 0.95;
  stroke-opacity: 0.75;
  stroke-linecap: round;
  filter: drop-shadow(0 0 2px rgba(56, 189, 248, 0.5));
}

/* Nodos Blancos Titilantes de Europa */
.europe-node {
  fill: #ffffff;
  opacity: 0.85;
  filter: drop-shadow(0 0 2px rgba(255, 255, 255, 0.9));
}

.europe-node-glow {
  fill: #ffffff;
  animation: europeNodeBlink 2.6s ease-in-out infinite alternate;
  transform-box: fill-box;
  transform-origin: center;
}

.europe-node-glow:nth-child(2n) {
  animation-delay: 0.7s;
}

.europe-node-glow:nth-child(3n) {
  animation-delay: 1.4s;
}

.europe-node-glow:nth-child(5n) {
  animation-delay: 2.1s;
}

@keyframes europeNodeBlink {
  0% {
    opacity: 0.35;
    transform: scale(0.85);
    filter: drop-shadow(0 0 1px rgba(255, 255, 255, 0.4));
  }

  100% {
    opacity: 1;
    transform: scale(1.35);
    filter: drop-shadow(0 0 5px #ffffff);
  }
}

.spain-node {
  fill: #38bdf8;
  opacity: 0.85;
}

.spain-node-glow {
  fill: #67e8f9;
  animation: plexusBlink 2.5s ease-in-out infinite alternate;
  transform-box: fill-box;
  transform-origin: center;
}

.europe-bg-map-wrap .map-pin {
  pointer-events: auto;
  cursor: pointer;
}

.coverage-map-spacer {
  min-height: 480px;
  width: 100%;
}



.spain-node-glow:nth-child(2n) {
  animation-delay: 0.6s;
}

.spain-node-glow:nth-child(3n) {
  animation-delay: 1.2s;
}

.spain-node-glow:nth-child(5n) {
  animation-delay: 1.8s;
}

@keyframes plexusBlink {
  0% {
    opacity: 0.4;
    transform: scale(0.85);
  }

  100% {
    opacity: 1;
    transform: scale(1.35);
    filter: drop-shadow(0 0 4px #38bdf8);
  }
}

/* Puntos Titilando y Balizas Pulsantes */
.map-pin {
  cursor: pointer;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.map-pin:hover {
  transform: scale(1.15);
}

.beacon-pulse {
  animation: beaconRipple 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
  transform-box: fill-box;
  transform-origin: center;
}

.beacon-pulse-delayed {
  animation: beaconRipple 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
  animation-delay: 0.8s;
  transform-box: fill-box;
  transform-origin: center;
}

.beacon-pulse-hq {
  animation: beaconRippleHq 1.8s cubic-bezier(0, 0.2, 0.8, 1) infinite;
  transform-box: fill-box;
  transform-origin: center;
}

.beacon-pulse-hq-delayed {
  animation: beaconRippleHq 1.8s cubic-bezier(0, 0.2, 0.8, 1) infinite;
  animation-delay: 0.7s;
  transform-box: fill-box;
  transform-origin: center;
}

@keyframes beaconRipple {
  0% {
    r: 4;
    opacity: 0.95;
    stroke-width: 2;
  }

  100% {
    r: 22;
    opacity: 0;
    stroke-width: 0.5;
  }
}

@keyframes beaconRippleHq {
  0% {
    r: 6;
    opacity: 1;
    stroke-width: 2.5;
  }

  100% {
    r: 30;
    opacity: 0;
    stroke-width: 0.5;
  }
}

.beacon-core-blink {
  animation: beaconBlink 1.4s ease-in-out infinite;
  transform-box: fill-box;
  transform-origin: center;
}

@keyframes beaconBlink {

  0%,
  100% {
    opacity: 0.4;
    transform: scale(0.85);
  }

  50% {
    opacity: 1;
    transform: scale(1.28);
  }
}

.map-pin-label {
  font-family: var(--font-sans);
  font-size: 7.2px;
  font-weight: 600;
  fill: #ffffff;
  pointer-events: none;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.95));
}

/* ==============================================================================
   RESPONSIVE: MÓVILES Y TABLETS (MAPA CENTRADO Y FAQs)
   ============================================================================== */
@media (max-width: 991px) {
  .owner-section-cities {
    padding: 70px 0 50px;
    scroll-margin-top: 80px;
    position: relative;
  }

  .cities-header {
    margin-bottom: var(--space-4);
  }

  .cities-title {
    font-size: clamp(1.8rem, 5vw, 2.3rem);
  }

  .cities-subtitle {
    font-size: 0.98rem;
    line-height: 1.55;
    padding: 0 var(--space-2);
  }

  .coverage-split-layout {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }

  .coverage-map-col {
    position: relative;
    width: 100%;
    min-height: 350px;
    height: 350px;
  }

  .coverage-map-spacer {
    display: block;
    height: 350px;
    min-height: 350px;
    width: 100%;
  }

  /* En móviles y tablets, situar el mapa exactamente en la zona entre el encabezado y las FAQs */
  .europe-bg-map-wrap {
    position: absolute;
    top: 180px;
    bottom: auto;
    left: 0;
    right: 0;
    width: 100%;
    height: 350px;
    pointer-events: none;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .europe-bg-map-wrap svg {
    position: relative;
    top: 0;
    left: 0;
    width: 680px;
    max-width: none;
    min-width: unset;
    height: 330px;
    object-fit: contain;
    transform: translateX(22.3%);
  }

  .faq-accordion {
    gap: var(--space-3);
  }
}

@media (max-width: 480px) {
  .owner-section-cities {
    padding: 60px 0 40px;
  }

  .cities-header {
    margin-bottom: var(--space-3);
  }

  .coverage-map-col,
  .coverage-map-spacer {
    min-height: 310px;
    height: 310px;
  }

  .europe-bg-map-wrap {
    top: 170px;
    height: 310px;
  }

  .europe-bg-map-wrap svg {
    width: 600px;
    height: 290px;
    transform: translateX(22.3%);
  }

  .faq-trigger {
    padding: var(--space-3) var(--space-4);
    font-size: 0.95rem;
  }
}