

:root {
  
  --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;
  
  --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;

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

  --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;

  --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;

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

  --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);

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

  --max-width: 1200px;
  --navbar-height: 72px;
}

*,
*::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;
  overflow-x: hidden;
  width: 100%;
}

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;
}

.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;
}

.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);
}

.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;
}

.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);
}

.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 {
  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 {
  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;
}

.owner-hero {
  position: relative;
  background-color: #FAF7F2;
  overflow: hidden;
  padding-top: calc(var(--navbar-height, 72px) + 12px);
  padding-bottom: 12px;
  height: calc(100vh - var(--navbar-height, 72px));
  min-height: 560px;
  max-height: calc(100vh - var(--navbar-height, 72px));
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.owner-hero-bg-media {
  position: absolute;
  top: var(--navbar-height, 72px);
  right: 0;
  bottom: 0;
  width: 58%;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.owner-hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% 0%;
  filter: contrast(1.03) saturate(1.02);
}

.owner-hero-gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
      #FAF7F2 0%,
      #FAF7F2 18%,
      rgba(250, 247, 242, 0.94) 36%,
      rgba(250, 247, 242, 0.52) 58%,
      rgba(250, 247, 242, 0.12) 80%,
      transparent 100%);
}

.owner-hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 var(--space-6);
  box-sizing: border-box;
}

.owner-hero-main {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.7fr);
  gap: var(--space-6);
  align-items: center;
  flex: 1;
  padding: 4px 0 8px;
}

.owner-hero-text {
  max-width: 680px;
  text-align: left;
}

.hero-kicker {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 500;
  color: #556270;
  margin-bottom: 30px;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.hero-headline {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 2.65vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
  color: #12171D;
  margin-bottom: 30px;
  letter-spacing: -0.015em;
}

.hero-headline .hero-br {
  display: block;
}

.hero-gold-highlight {
  display: block;
  background: linear-gradient(135deg, #996515 0%, #c5a059 45%, #b8860b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: #c5a059;
  font-style: normal;
  font-weight: 700;
  margin-top: 3px;
}

.hero-description {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: #4A5568;
  line-height: 1.58;
  max-width: 750px;
  margin-bottom: 30px;
  font-weight: 400;
  text-align: justify;
}

.hero-cta-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

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

.btn-hero-capsule {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #e8ce8e 0%, #c5a059 100%);
  color: #0b1a2e !important;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 13px 28px;
  border-radius: 9999px;
  text-decoration: none;
  border: 1px solid rgba(197, 160, 89, 0.6);
  cursor: pointer;
  transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 18px rgba(197, 160, 89, 0.32), 0 2px 4px rgba(0, 0, 0, 0.04);
}

.btn-hero-capsule:hover {
  background: linear-gradient(135deg, #fae498 0%, #d8b251 100%);
  box-shadow: 0 8px 24px rgba(197, 160, 89, 0.48), 0 3px 6px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

.btn-hero-capsule:active {
  transform: translateY(0);
}

.btn-hero-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  background: #25D366;
  color: #FFFFFF !important;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 13px 22px;
  border-radius: 9999px;
  text-decoration: none;
  border: 1px solid rgba(37, 211, 102, 0.8);
  cursor: pointer;
  transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.28);
  white-space: nowrap;
}

.btn-hero-whatsapp svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
  flex-shrink: 0;
}

.btn-hero-whatsapp:hover {
  background: #20bd5a;
  box-shadow: 0 7px 20px rgba(37, 211, 102, 0.4);
  transform: translateY(-2px);
}

.btn-hero-whatsapp:active {
  transform: translateY(0);
}

.hero-guarantee-note {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #64748B;
  font-size: 0.88rem;
  font-weight: 500;
  padding-left: 4px;
}

.hero-calendar-icon {
  width: 17px;
  height: 17px;
  color: #b8860b;
  flex-shrink: 0;
}

.owner-hero-visual-col {
  display: block;
  min-height: 80px;
}

.hero-bottom-bar {
  border-top: 1px solid rgba(197, 160, 89, 0.28);
  padding-top: 18px;
  padding-bottom: 18px;
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-bottom-brand {
  font-size: 0.84rem;
  color: #64748B;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.hero-bottom-brand .brand-title {
  font-weight: 800;
  color: #1E293B;
  letter-spacing: 0.05em;
  font-size: 0.86rem;
}

.hero-bottom-brand .brand-sep {
  color: #c5a059;
  font-weight: 700;
}

.hero-bottom-brand .brand-tagline {
  font-weight: 500;
  color: #64748B;
}

.hero-bottom-pillars {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.5vw, 36px);
  flex-wrap: wrap;
}

.hero-pillar-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-pillar-item .pillar-icon-box {
  color: #b8860b;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-pillar-item .pillar-icon-box svg {
  width: 20px;
  height: 20px;
  stroke-width: 1.8;
}

.hero-pillar-item .pillar-content {
  display: flex;
  flex-direction: column;
  font-size: 0.70rem;
  line-height: 1.25;
  letter-spacing: 0.04em;
}

.hero-pillar-item .pillar-content strong {
  color: #1E293B;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-pillar-item .pillar-content span {
  color: #64748B;
  font-weight: 500;
  text-transform: uppercase;
}

@media (max-width: 1080px) {
  .owner-hero-bg-media {
    width: 68%;
    opacity: 0.55;
  }

  .owner-hero-gradient-overlay {
    background: linear-gradient(90deg,
        #FAF7F2 0%,
        #FAF7F2 30%,
        rgba(250, 247, 242, 0.92) 55%,
        rgba(250, 247, 242, 0.6) 80%,
        rgba(250, 247, 242, 0.3) 100%);
  }

  .owner-hero-main {
    grid-template-columns: 1fr;
  }

  .owner-hero-visual-col {
    display: none;
  }
}

@media (max-width: 860px) {
  .hero-bottom-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .hero-bottom-pillars {
    width: 100%;
    justify-content: flex-start;
    gap: 20px;
  }
}

@media (max-width: 640px) {
  .owner-hero {
    padding-top: calc(var(--navbar-height) + 24px);
    padding-bottom: 20px;
    min-height: auto;
  }

  .owner-hero-bg-media {
    width: 100%;
    opacity: 0.28;
  }

  .owner-hero-gradient-overlay {
    background: linear-gradient(180deg,
        rgba(250, 247, 242, 0.95) 0%,
        rgba(250, 247, 242, 0.85) 100%);
  }

  .hero-headline {
    font-size: 1.95rem;
    line-height: 1.22;
  }

  .hero-kicker {
    font-size: 1rem;
    margin-bottom: 12px;
  }

  .hero-description {
    font-size: 1rem;
    margin-bottom: 24px;
  }

  .btn-hero-capsule {
    width: 100%;
    padding: 15px 24px;
    font-size: 0.88rem;
  }

  .hero-bottom-pillars {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

.owner-pain-contrast {
  position: relative;
  background-color: #071322;
  color: #f8fafc;
  padding: clamp(65px, 8vw, 95px) 0 45px;
  overflow: hidden;
}

.owner-pain-contrast::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(145deg, rgba(6, 17, 30, 0.88) 0%, rgba(10, 24, 45, 0.85) 55%, rgba(14, 32, 58, 0.92) 100%),
    url('../images/propiedades/salon2_Apartamento_DELUXE_Centrico_Miengo.jpg');
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 0;
}

.pain-ambient-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background:
    radial-gradient(circle at 85% 25%, rgba(197, 160, 89, 0.12) 0%, transparent 45%),
    radial-gradient(circle at 15% 75%, rgba(21, 50, 91, 0.35) 0%, transparent 55%);
}

.pain-container {
  position: relative;
  z-index: 2;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.pain-main-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.95fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
  margin-bottom: clamp(45px, 5vw, 65px);
}

.pain-story-col {
  text-align: left;
}

.pain-kicker-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(197, 160, 89, 0.12);
  color: #fae498;
  border: 1px solid rgba(197, 160, 89, 0.3);
  padding: 6px 14px;
  border-radius: 9999px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.pain-pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #c5a059;
  box-shadow: 0 0 10px #c5a059;
  animation: pulseGold 2s infinite;
}

@keyframes pulseGold {
  0% {
    transform: scale(0.95);
    opacity: 0.7;
  }

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

  100% {
    transform: scale(0.95);
    opacity: 0.7;
  }
}

.pain-headline {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.2vw, 2.9rem);
  font-weight: 600;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 22px;
  letter-spacing: -0.015em;
}

.pain-headline-gold {
  display: block;
  background: linear-gradient(135deg, #e8ce8e 0%, #c5a059 50%, #fae498 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: #c5a059;
  margin-top: 4px;
}

.pain-lead {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: #cbd5e1;
  line-height: 1.68;
  margin-bottom: 26px;
  font-weight: 400;
}

.pain-investment-flow {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}

.pain-step-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 6px 14px;
  border-radius: 9999px;
  font-size: 0.82rem;
  color: #f1f5f9;
  backdrop-filter: blur(8px);
  transition: all 0.25s ease;
}

.pain-step-chip:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(197, 160, 89, 0.35);
  transform: translateY(-1px);
}

.step-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent, #c5a059);
  flex-shrink: 0;
}

.step-icon svg {
  width: 15px;
  height: 15px;
  display: block;
}

.pain-step-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(197, 160, 89, 0.5);
  flex-shrink: 0;
}

.pain-step-arrow svg {
  width: 12px;
  height: 12px;
  display: block;
}

.pain-step-chip.pain-step-highlight {
  background: linear-gradient(135deg, rgba(197, 160, 89, 0.2) 0%, rgba(184, 134, 11, 0.12) 100%);
  border-color: rgba(197, 160, 89, 0.5);
  color: #fae498;
  font-weight: 600;
  box-shadow: 0 0 16px rgba(197, 160, 89, 0.15);
}

.pain-step-chip.pain-step-highlight .step-icon {
  color: #fce79f;
}

.pain-turning-point {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(225, 29, 72, 0.08);
  border: 1px solid rgba(225, 29, 72, 0.22);
  border-left: 3.5px solid #e11d48;
  border-radius: 0 10px 10px 0;
  padding: 14px 18px;
}

.turning-icon {
  color: #fb7185;
  flex-shrink: 0;
  margin-top: 2px;
}

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

.turning-content {
  font-size: 0.92rem;
  line-height: 1.5;
  color: #f1f5f9;
}

.turning-content strong {
  color: #ffffff;
  display: inline;
  margin-right: 4px;
}

.turning-content span {
  color: #cbd5e1;
}

.pain-floating-card {
  position: relative;
  background: rgba(13, 30, 54, 0.72);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1.5px solid rgba(197, 160, 89, 0.38);
  border-radius: 20px;
  padding: clamp(32px, 4vw, 44px);
  box-shadow: 0 24px 60px -12px rgba(0, 0, 0, 0.5), 0 0 35px rgba(197, 160, 89, 0.12);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
  overflow: hidden;
}

.pain-floating-card:hover {
  transform: translateY(-4px);
  border-color: rgba(197, 160, 89, 0.6);
  box-shadow: 0 30px 70px -10px rgba(0, 0, 0, 0.6), 0 0 45px rgba(197, 160, 89, 0.2);
}

.card-gold-shine {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, #fae498 50%, transparent 100%);
}

.card-header-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(197, 160, 89, 0.12);
  color: #e8ce8e;
  border: 1px solid rgba(197, 160, 89, 0.25);
  padding: 5px 12px;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 18px;
}

.card-header-badge svg {
  width: 15px;
  height: 15px;
  color: #c5a059;
}

.pain-card-title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 2.2vw, 2rem);
  color: #ffffff;
  margin-bottom: 16px;
  line-height: 1.25;
}

.pain-card-text {
  font-family: var(--font-body);
  font-size: 1.02rem;
  color: #94a3b8;
  line-height: 1.62;
  margin-bottom: 26px;
}

.pain-card-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.btn-pain-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #e8ce8e 0%, #c5a059 100%);
  color: #081526 !important;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 14px 26px;
  border-radius: 9999px;
  text-decoration: none;
  border: 1px solid rgba(197, 160, 89, 0.7);
  cursor: pointer;
  transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 6px 20px rgba(197, 160, 89, 0.35);
}

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

.btn-pain-primary svg {
  width: 18px;
  height: 18px;
  transition: transform 0.25s ease;
}

.btn-pain-primary:hover svg {
  transform: translateX(4px);
}

.btn-pain-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(37, 211, 102, 0.14);
  color: #25D366 !important;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 13px 20px;
  border-radius: 9999px;
  text-decoration: none;
  border: 1.5px solid rgba(37, 211, 102, 0.5);
  cursor: pointer;
  transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}

.btn-pain-whatsapp:hover {
  background: #25D366;
  color: #ffffff !important;
  border-color: #25D366;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
  transform: translateY(-2px);
}

.pain-card-guarantee {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #94a3b8;
  font-size: 0.86rem;
  font-weight: 500;
  padding-left: 2px;
}

.pain-card-guarantee svg {
  width: 16px;
  height: 16px;
  color: #c5a059;
  flex-shrink: 0;
}

.pain-bottom-bar {
  border-top: 1px solid rgba(197, 160, 89, 0.22);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.pain-bottom-brand {
  font-size: 0.88rem;
  color: #94a3b8;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.pain-bottom-brand .brand-title {
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.05em;
  font-size: 0.88rem;
}

.pain-bottom-brand .brand-sep {
  color: #c5a059;
  font-weight: 700;
}

.pain-bottom-brand .brand-tagline {
  color: #cbd5e1;
  font-weight: 500;
}

.pain-bottom-pillars {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 40px);
  flex-wrap: wrap;
}

.pain-pillar-item {
  display: flex;
  align-items: center;
  gap: 11px;
}

.pain-pillar-icon {
  color: #fae498;
  background: rgba(197, 160, 89, 0.12);
  border: 1px solid rgba(197, 160, 89, 0.28);
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pain-pillar-icon svg {
  width: 20px;
  height: 20px;
}

.pain-pillar-info {
  display: flex;
  flex-direction: column;
  font-size: 0.72rem;
  line-height: 1.3;
  letter-spacing: 0.04em;
}

.pain-pillar-info strong {
  color: #ffffff;
  font-weight: 700;
  text-transform: uppercase;
}

.pain-pillar-info span {
  color: #94a3b8;
  font-weight: 500;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .pain-main-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

@media (max-width: 860px) {
  .pain-bottom-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .pain-bottom-pillars {
    width: 100%;
    justify-content: flex-start;
    gap: 18px;
  }
}

@media (max-width: 640px) {
  .owner-pain-contrast {
    padding: 50px 0 35px;
  }

  .pain-headline {
    font-size: 1.85rem;
  }

  .btn-pain-primary,
  .btn-pain-whatsapp {
    width: 100%;
    justify-content: center;
  }

  .pain-bottom-pillars {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

.owner-alternatives-section {
  position: relative;
  background: url('../images/supervision_inmueble.jpg') center center / cover no-repeat;
  color: #0F172A;
  padding: clamp(80px, 9vw, 115px) 0 45px;
  overflow: hidden;
  border-top: 1px solid rgba(197, 160, 89, 0.18);
  border-bottom: 1px solid rgba(197, 160, 89, 0.18);
}

.alt-ambient-shapes {
  display: none;
}

.alt-container {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 var(--space-6);
  position: relative;
  z-index: 2;
}

.alt-avontur-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(0, 1fr);
  gap: clamp(28px, 3.8vw, 48px);
  align-items: stretch;
  margin-bottom: clamp(40px, 5vw, 56px);
  position: relative;
  z-index: 2;
}

.alt-glassmorphism-hero-card {
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(2px) saturate(30%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  border: 1.5px solid rgba(255, 255, 255, 0.85);
  border-radius: 28px;
  padding: clamp(34px, 4.4vw, 52px);
  box-shadow:
    0 20px 50px rgba(15, 23, 42, 0.10),
    0 1px 3px rgba(15, 23, 42, 0.04),
    inset 0 1px 2px rgba(255, 255, 255, 0.95);
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.alt-glass-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8C6827;
  margin-bottom: 14px;
}

.alt-glass-headline {
  font-family: var(--font-heading);
  font-size: clamp(2.1rem, 3.2vw, 2.9rem);
  font-weight: 700;
  line-height: 1.18;
  color: #0F172A;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
}

.alt-glass-description {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.68;
  color: #1E293B;
  font-weight: 500;
  margin-bottom: 24px;
}

.alt-glass-callout {
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-left: 3.5px solid #C5A059;
  border-radius: 0 14px 14px 0;
  padding: 16px 20px;
  margin-bottom: 26px;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.05);
}

.alt-glass-callout p {
  font-family: var(--font-body);
  font-size: 0.96rem;
  line-height: 1.55;
  color: #0F172A;
  margin: 0;
}

.alt-callout-highlight {
  color: #8C6827;
  font-weight: 700;
}

.alt-actions-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.btn-alt-capsule {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #c5a059 0%, #b8860b 100%);
  color: #FFFFFF !important;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 9999px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 8px 24px rgba(197, 160, 89, 0.40);
}

.btn-alt-capsule:hover {
  background: linear-gradient(135deg, #d4af62 0%, #c5a059 100%);
  box-shadow: 0 12px 30px rgba(197, 160, 89, 0.55);
  transform: translateY(-2px);
}

.btn-alt-capsule svg {
  transition: transform 0.25s ease;
}

.btn-alt-capsule:hover svg {
  transform: translateX(4px);
}

.alt-actions-row .btn-hero-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  background: #25D366;
  color: #FFFFFF !important;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 14px 26px;
  border-radius: 9999px;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
  transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

.alt-actions-row .btn-hero-whatsapp:hover {
  background: #20BD5A;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  color: #FFFFFF !important;
}

.alt-guarantee-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #334155;
  font-size: 0.84rem;
  font-weight: 600;
}

.alt-guarantee-note svg {
  color: #8C6827;
  flex-shrink: 0;
}

.alt-cards-2x2-col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.alt-feature-card {
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(5px) saturate(30%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  border: 1.5px solid rgba(255, 255, 255, 0.88);
  border-radius: 22px;
  padding: clamp(30px, 3.4vw, 40px) clamp(20px, 2.4vw, 28px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 215px;
  transition: all 0.38s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  cursor: pointer;
  overflow: hidden;
  box-shadow:
    0 12px 32px rgba(15, 23, 42, 0.08),
    0 1px 3px rgba(15, 23, 42, 0.03),
    inset 0 1px 2px rgba(255, 255, 255, 0.9);
}

.alt-feature-card:hover {
  background: rgba(15, 23, 42, 0.82);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border-color: rgba(197, 160, 89, 0.85);
  transform: translateY(-6px);
  box-shadow:
    0 22px 48px rgba(15, 23, 42, 0.35),
    0 0 25px rgba(197, 160, 89, 0.22);
}

.alt-feature-icon-box {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.38s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
  color: #B8860B;
  background: rgba(197, 160, 89, 0.14);
  border: 1.5px solid rgba(197, 160, 89, 0.32);
  box-shadow: 0 4px 14px rgba(197, 160, 89, 0.14);
}

.alt-feature-icon-box svg {
  width: 30px;
  height: 30px;
}

.alt-feature-card:hover .alt-feature-icon-box {
  background: linear-gradient(135deg, #c5a059 0%, #b8860b 100%);
  color: #FFFFFF;
  border-color: #F7DF94;
  box-shadow: 0 8px 24px rgba(197, 160, 89, 0.45);
  transform: scale(1.10);
}

.alt-feature-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.34;
  margin: 0;
  letter-spacing: -0.01em;
  color: #0F172A;
  transition: color 0.25s ease, text-shadow 0.25s ease;
}

.alt-feature-card:hover .alt-feature-title {
  color: #FFFFFF !important;
  font-weight: 700;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

.owner-why-rh {
  position: relative;
  background-color: #FAF7F2;
  color: #12171D;
  overflow: hidden;
  padding: clamp(65px, 8vw, 95px) 0 35px;
}

.why-rh-bg-media {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 56%;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.why-rh-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center left;
  filter: contrast(1.02) saturate(1.02);
}

.why-rh-gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
      transparent 0%,
      rgba(250, 247, 242, 0.12) 30%,
      rgba(250, 247, 242, 0.65) 60%,
      rgba(250, 247, 242, 0.95) 85%,
      #FAF7F2 100%);
}

.why-rh-container {
  position: relative;
  z-index: 2;
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 var(--space-6);
  box-sizing: border-box;
}

.why-rh-main-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: var(--space-8);
  align-items: center;
  margin-bottom: clamp(45px, 5vw, 65px);
}

.why-rh-visual-col {
  display: block;
  min-height: 80px;
}

.why-rh-story-col {
  max-width: 680px;
  margin-left: 160px;
  text-align: left;
}

.why-rh-headline {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 3.4vw, 3.2rem);
  font-weight: 600;
  line-height: 1.15;
  color: #12171D;
  margin-bottom: 22px;
  letter-spacing: -0.015em;
}

.why-rh-accent {
  display: block;
  background: linear-gradient(135deg, #996515 0%, #c5a059 45%, #b8860b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: #c5a059;
  font-style: normal;
  font-weight: 700;
  margin-top: 4px;
}

.why-rh-description {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: #4A5568;
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 620px;
  text-align: justify;
}

.why-rh-stats-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.why-rh-stat-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(243, 239, 233, 0.75);
  border: 1px solid rgba(197, 160, 89, 0.28);
  border-radius: 14px;
  padding: 12px 20px;
  min-width: 190px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.why-rh-stat-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(197, 160, 89, 0.12);
}

.why-stat-icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b8860b;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.why-stat-icon-box svg {
  width: 24px;
  height: 24px;
}

.why-stat-info {
  display: flex;
  flex-direction: column;
}

.why-stat-number {
  font-family: var(--font-body);
  font-size: 1.35rem;
  font-weight: 800;
  color: #12171D;
  line-height: 1.15;
}

.why-stat-label {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  color: #64748B;
  line-height: 1.25;
}

.why-rh-quote-block {
  margin-bottom: 30px;
}

.why-rh-quote-title {
  font-family: var(--font-heading);
  font-size: clamp(1.85rem, 2.3vw, 2.25rem);
  font-weight: 700;
  background: linear-gradient(135deg, #996515 0%, #c5a059 45%, #b8860b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: #c5a059;
  margin: 0 0 10px 0;
  line-height: 1.2;
}

.why-rh-quote-text {
  font-family: var(--font-body);
  font-size: 1.02rem;
  color: #4A5568;
  line-height: 1.6;
  max-width: 620px;
  margin: 0;
  text-align: justify;
}

.why-rh-cta-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.btn-why-rh {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #e8ce8e 0%, #c5a059 100%);
  color: #0b1a2e !important;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 9999px;
  text-decoration: none;
  border: 1px solid rgba(197, 160, 89, 0.6);
  cursor: pointer;
  transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 18px rgba(197, 160, 89, 0.32), 0 2px 4px rgba(0, 0, 0, 0.04);
}

.btn-why-rh svg {
  transition: transform 0.25s ease;
}

.btn-why-rh:hover {
  background: linear-gradient(135deg, #fae498 0%, #d8b251 100%);
  box-shadow: 0 8px 24px rgba(197, 160, 89, 0.48), 0 3px 6px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

.btn-why-rh:hover svg {
  transform: translateX(4px);
}

.btn-why-rh:active {
  transform: translateY(0);
}

.why-rh-guarantee {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #64748B;
  font-size: 0.88rem;
  font-weight: 500;
  padding-left: 4px;
}

.why-rh-guarantee svg {
  color: #b8860b;
  flex-shrink: 0;
}

.why-rh-bottom-bar {
  border-top: 1px solid rgba(197, 160, 89, 0.28);
  padding-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.why-rh-bottom-brand {
  font-size: 0.84rem;
  color: #64748B;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.why-rh-bottom-brand .brand-title {
  font-weight: 800;
  color: #1E293B;
  letter-spacing: 0.05em;
  font-size: 0.86rem;
}

.why-rh-bottom-brand .brand-sep {
  color: #c5a059;
  font-weight: 700;
}

.why-rh-bottom-brand .brand-tagline {
  font-weight: 500;
  color: #64748B;
}

.why-rh-bottom-pillars {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.5vw, 36px);
  flex-wrap: wrap;
}

.why-rh-pillar-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.why-rh-pillar-item .pillar-icon-box {
  color: #b8860b;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-rh-pillar-item .pillar-icon-box svg {
  width: 20px;
  height: 20px;
  stroke-width: 1.8;
}

.why-rh-pillar-item .pillar-content {
  display: flex;
  flex-direction: column;
  font-size: 0.70rem;
  line-height: 1.25;
  letter-spacing: 0.04em;
}

.why-rh-pillar-item .pillar-content strong {
  color: #1E293B;
  font-weight: 700;
  text-transform: uppercase;
}

.why-rh-pillar-item .pillar-content span {
  color: #64748B;
  font-weight: 500;
  text-transform: uppercase;
}

@media (max-width: 1080px) {
  .why-rh-bg-media {
    width: 100%;
    opacity: 0.25;
  }

  .why-rh-gradient-overlay {
    background: linear-gradient(180deg,
        rgba(250, 247, 242, 0.88) 0%,
        rgba(250, 247, 242, 0.95) 100%);
  }

  .why-rh-main-grid {
    grid-template-columns: 1fr;
  }

  .why-rh-visual-col {
    display: none;
  }

  .why-rh-story-col {
    margin-left: 0;
  }
}

@media (max-width: 768px) {
  .why-rh-bottom-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .why-rh-bottom-pillars {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

@media (max-width: 640px) {
  .owner-why-rh {
    padding: 50px 0 25px;
  }

  .why-rh-headline {
    font-size: 1.95rem;
  }

  .why-rh-stats-row {
    flex-direction: column;
    width: 100%;
  }

  .why-rh-stat-card {
    width: 100%;
  }

  .btn-why-rh {
    width: 100%;
    font-size: 0.82rem;
    padding: 14px 20px;
  }
}

.owner-plan-process {
  position: relative;
  background-color: #071322;
  color: #f8fafc;
  overflow: hidden;
  padding: clamp(65px, 8vw, 95px) 0 45px;
  border-top: 1px solid rgba(197, 160, 89, 0.25);
  border-bottom: 1px solid rgba(197, 160, 89, 0.25);
}

.owner-plan-process::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 25%, rgba(197, 160, 89, 0.1) 0%, transparent 45%),
    radial-gradient(circle at 85% 70%, rgba(21, 50, 91, 0.35) 0%, transparent 55%);
  pointer-events: none;
  z-index: 1;
}

.plan-bg-media {
  position: absolute;
  top: 0;
  right: 0;
  width: 58%;
  height: 500px;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.plan-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  filter: brightness(0.82) contrast(1.08) saturate(1.02);
}

.plan-gradient-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg,
      #071322 0%,
      #071322 18%,
      rgba(7, 19, 34, 0.94) 38%,
      rgba(7, 19, 34, 0.6) 65%,
      rgba(7, 19, 34, 0.15) 85%,
      transparent 100%),
    linear-gradient(180deg,
      transparent 0%,
      transparent 55%,
      rgba(7, 19, 34, 0.85) 82%,
      #071322 100%);
}

.plan-container {
  position: relative;
  z-index: 2;
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 var(--space-6);
  box-sizing: border-box;
}

.plan-top-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr);
  gap: var(--space-6);
  align-items: center;
  margin-bottom: clamp(48px, 6vw, 70px);
}

.plan-headline-col {
  max-width: 680px;
}

.plan-headline {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 3.4vw, 3.2rem);
  font-weight: 600;
  line-height: 1.15;
  color: #ffffff;
  margin: 0;
  letter-spacing: -0.015em;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.4);
}

.plan-br {
  display: block;
}

.plan-gold-highlight {
  display: block;
  background: linear-gradient(135deg, #fae498 0%, #c5a059 50%, #e8ce8e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: #fae498;
  font-style: normal;
  font-weight: 700;
  margin-top: 4px;
}

.plan-visual-col {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  min-height: 120px;
  padding-left: var(--space-4);
}

.plan-floating-widget {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(13, 26, 44, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(197, 160, 89, 0.45);
  border-radius: 16px;
  padding: 10px 16px;
  box-shadow: 0 16px 40px -6px rgba(0, 0, 0, 0.5), 0 0 25px rgba(197, 160, 89, 0.15);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.plan-floating-widget:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 20px 45px -4px rgba(0, 0, 0, 0.6), 0 0 35px rgba(197, 160, 89, 0.28);
}

.widget-thumb {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  object-fit: cover;
  border: 1px solid rgba(197, 160, 89, 0.3);
}

.widget-info {
  display: flex;
  flex-direction: column;
}

.widget-title {
  font-family: var(--font-body);
  font-size: 0.84rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.25;
}

.widget-meta {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.74rem;
  font-weight: 500;
  color: #94a3b8;
  margin-top: 2px;
}

.widget-action {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fae498 0%, #c5a059 100%);
  color: #071322;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 12px rgba(197, 160, 89, 0.5);
  cursor: pointer;
  transition: transform 0.2s ease;
}

.widget-action:hover {
  transform: scale(1.1);
}

.plan-steps-track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(14px, 2.2vw, 32px);
  position: relative;
  margin-bottom: clamp(48px, 6vw, 65px);
}

.plan-steps-track::before {
  content: '';
  position: absolute;
  top: 24px;
  left: 5%;
  right: 5%;
  height: 1px;
  background: linear-gradient(90deg,
      rgba(197, 160, 89, 0.15) 0%,
      rgba(197, 160, 89, 0.55) 50%,
      rgba(197, 160, 89, 0.15) 100%);
  z-index: 1;
}

.plan-step-item {
  position: relative;
  z-index: 2;
  text-align: left;
}

.step-badge-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.step-num {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 700;
  color: #fae498;
  line-height: 1;
  letter-spacing: -0.02em;
}

.step-icon-bubble {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(11, 23, 40, 0.9);
  border: 1px solid rgba(197, 160, 89, 0.4);
  color: #fae498;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s ease, box-shadow 0.3s ease;
}

.step-icon-bubble svg {
  width: 22px;
  height: 22px;
}

.plan-step-item:hover .step-icon-bubble {
  transform: translateY(-4px) scale(1.06);
  background: linear-gradient(135deg, #fae498 0%, #c5a059 100%);
  color: #071322;
  border-color: #fae498;
  box-shadow: 0 0 20px rgba(197, 160, 89, 0.5);
}

.step-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 10px 0;
  line-height: 1.28;
}

.step-desc {
  font-family: var(--font-body);
  font-size: 0.86rem;
  color: #cbd5e1;
  line-height: 1.55;
  margin: 0;
}

.plan-cta-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: clamp(24px, 4vw, 35px);
  text-align: center;
}

.btn-plan-capsule {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #fae498 0%, #c5a059 100%);
  color: #071322 !important;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 15px 32px;
  border-radius: 9999px;
  text-decoration: none;
  border: 1px solid rgba(250, 228, 152, 0.7);
  cursor: pointer;
  transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 22px rgba(197, 160, 89, 0.38), 0 2px 4px rgba(0, 0, 0, 0.2);
}

.btn-plan-capsule svg {
  transition: transform 0.25s ease;
}

.btn-plan-capsule:hover {
  background: linear-gradient(135deg, #ffffff 0%, #fae498 50%, #c5a059 100%);
  box-shadow: 0 8px 30px rgba(197, 160, 89, 0.6);
  transform: translateY(-2px);
}

.btn-plan-capsule:hover svg {
  transform: translateX(4px);
}

.btn-plan-capsule:active {
  transform: translateY(0);
}

.plan-guarantee-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #94a3b8;
  font-size: 0.88rem;
  font-weight: 500;
}

.plan-guarantee-note svg {
  color: #fae498;
  flex-shrink: 0;
}

.plan-bottom-bar {
  border-top: 1px solid rgba(197, 160, 89, 0.28);
  padding-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.plan-bottom-brand {
  font-size: 0.84rem;
  color: #94a3b8;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.plan-bottom-brand .brand-title {
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.05em;
  font-size: 0.86rem;
}

.plan-bottom-brand .brand-sep {
  color: #c5a059;
  font-weight: 700;
}

.plan-bottom-brand .brand-tagline {
  font-weight: 500;
  color: #94a3b8;
}

.plan-bottom-pillars {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.5vw, 36px);
  flex-wrap: wrap;
}

.plan-pillar-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.plan-pillar-item .pillar-icon-box {
  color: #fae498;
  display: flex;
  align-items: center;
  justify-content: center;
}

.plan-pillar-item .pillar-icon-box svg {
  width: 20px;
  height: 20px;
  stroke-width: 1.8;
}

.plan-pillar-item .pillar-content {
  display: flex;
  flex-direction: column;
  font-size: 0.70rem;
  line-height: 1.25;
  letter-spacing: 0.04em;
}

.plan-pillar-item .pillar-content strong {
  color: #ffffff;
  font-weight: 700;
  text-transform: uppercase;
}

.plan-pillar-item .pillar-content span {
  color: #94a3b8;
  font-weight: 500;
  text-transform: uppercase;
}

@media (max-width: 1080px) {
  .plan-bg-media {
    width: 68%;
    opacity: 0.25;
  }

  .plan-steps-track {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }

  .plan-steps-track::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .plan-top-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .plan-bg-media {
    width: 100%;
    opacity: 0.18;
    height: 350px;
  }

  .plan-steps-track {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .step-badge-row {
    margin-bottom: 8px;
  }

  .plan-bottom-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .plan-bottom-pillars {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .btn-plan-capsule {
    width: 100%;
    font-size: 0.82rem;
    padding: 14px 20px;
  }
}

.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-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-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);
}

.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);
}

.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;
}

.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;
}

.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);
}

.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);
}

.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);
}

.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);
}

}

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

@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%;
}

@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;
}

.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;
}

.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;
}

.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;
}

.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;
}

.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;
}

.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;
}

.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;
}

.privacy-hero {
  position: relative;
  min-height: 380px;
  padding: calc(var(--navbar-height) + 55px) 24px 55px;
  background-image: url('../images/hero_propietario_alternativa.jpg');
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.privacy-hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(7, 13, 23, 0.84) 0%, rgba(13, 30, 54, 0.92) 100%);
  z-index: 1;
}

.privacy-hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
}

.privacy-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin: 0 0 16px;
  text-align: center;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.privacy-hero-desc {
  color: #cbd5e1;
  max-width: 660px;
  margin: 0 auto;
  font-size: clamp(1rem, 2vw, 1.12rem);
  line-height: 1.65;
  text-align: center;
  font-weight: 400;
}

.privacy-content-section {
  background: radial-gradient(circle at 50% 0%, rgba(197, 160, 89, 0.08) 0%, transparent 60%), #faf8f5;
  padding: clamp(48px, 6vw, 84px) 0 clamp(64px, 8vw, 100px);
  position: relative;
  border-top: 1px solid rgba(197, 160, 89, 0.22);
}

.privacy-card {
  background: #ffffff;
  border: 1px solid rgba(197, 160, 89, 0.3);
  border-radius: 22px;
  padding: clamp(28px, 5vw, 56px);
  box-shadow: 0 18px 45px -10px rgba(13, 30, 54, 0.09), 0 2px 10px rgba(197, 160, 89, 0.05);
  position: relative;
  overflow: hidden;
}

.privacy-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #c5a059 0%, #fae498 50%, #c5a059 100%);
}

.privacy-block {
  margin-bottom: clamp(28px, 4vw, 42px);
}

.privacy-block:last-child {
  margin-bottom: 0;
}

.privacy-block-title {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 2.6vw, 1.65rem);
  color: #0d1e36;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.privacy-num-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: rgba(197, 160, 89, 0.14);
  border: 1px solid rgba(197, 160, 89, 0.38);
  color: #8c6d23;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  flex-shrink: 0;
}

.privacy-block p {
  color: #475569;
  line-height: 1.8;
  font-size: 0.98rem;
  margin-bottom: 12px;
}

.privacy-block ul {
  color: #475569;
  padding-left: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  line-height: 1.7;
  font-size: 0.96rem;
  margin-bottom: 14px;
}

.privacy-block ul li strong {
  color: #0f172a;
}

.privacy-contact-box {
  background: #f8fafc;
  border: 1px solid rgba(203, 213, 225, 0.85);
  border-radius: 12px;
  padding: 18px 22px;
  margin-top: 14px;
}

.privacy-contact-box p {
  margin-bottom: 8px !important;
}

.privacy-contact-box p:last-child {
  margin-bottom: 0 !important;
}

.privacy-contact-box a {
  color: #b8860b;
  font-weight: 600;
  text-decoration: underline;
  transition: color var(--transition-fast);
}

.privacy-contact-box a:hover {
  color: #0d1e36;
}

.privacy-back-btn-box {
  text-align: center;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(197, 160, 89, 0.2);
}

.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;
}

.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-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.value-card {
  height: 220px;
  perspective: 1100px;
  cursor: pointer;
}

.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);
}

.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;
  
  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);
}

.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;
}

.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);
}

.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;
}

.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-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-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 {
  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 {
  background: radial-gradient(circle at 50% 0%, rgba(197, 160, 89, 0.08) 0%, transparent 65%), #070d17;
  border-top: 1px solid rgba(197, 160, 89, 0.22);
  padding: clamp(48px, 6vw, 76px) 0 28px;
  color: #e2e8f0;
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.4fr;
  gap: clamp(28px, 4vw, 56px);
  margin-bottom: var(--space-12);
  align-items: start;
}

.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,
.footer-brand-desc {
  font-size: var(--text-sm);
  color: #94a3b8;
  line-height: 1.7;
  margin-top: var(--space-4);
  max-width: 380px;
}

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

.footer-title::after {
  content: '';
  display: block;
  width: 24px;
  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: 12px;
  padding: 0;
  margin: 0;
}

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

.footer-links a {
  color: #94a3b8;
  font-size: var(--text-sm);
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
}

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

.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0;
  margin: 0;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #cbd5e1;
  font-size: var(--text-sm);
  line-height: 1.5;
}

.footer-contact-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  border-radius: 8px;
  background: rgba(197, 160, 89, 0.1);
  border: 1px solid rgba(197, 160, 89, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fae498;
  margin-top: 2px;
  transition: all var(--transition-fast);
}

.footer-contact-item:hover .footer-contact-icon {
  background: rgba(197, 160, 89, 0.2);
  border-color: rgba(197, 160, 89, 0.5);
  color: #ffffff;
  transform: translateY(-2px);
}

.footer-contact-icon svg {
  width: 15px;
  height: 15px;
}

.footer-contact-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.footer-contact-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #94a3b8;
  font-weight: 600;
}

.footer-contact-val {
  color: #f1f5f9;
  font-weight: 500;
}

.footer-contact-sub {
  font-size: 0.8rem;
  color: #94a3b8;
  line-height: 1.4;
  margin-top: 2px;
}

.footer-contact-link {
  color: #f1f5f9;
  font-size: var(--text-sm);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-contact-link:hover {
  color: #fae498;
  text-decoration: underline;
}

.footer-tel-link {
  font-weight: 600;
  color: #fae498;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: var(--space-3);
  margin-top: var(--space-5);
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(197, 160, 89, 0.3);
  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: 17px;
  height: 17px;
}

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

.footer-bottom-copy {
  color: #94a3b8;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-dot-divider {
  color: rgba(148, 163, 184, 0.4);
  font-size: 0.75rem;
}

.footer-bottom-links a,
.footer-bottom a {
  color: #cbd5e1;
  transition: color var(--transition-fast);
  text-decoration: none;
}

.footer-bottom-links a:hover,
.footer-bottom a:hover {
  color: #fae498;
  text-decoration: underline;
}

.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-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;
}

@keyframes luxFadeUp {
  0% {
    opacity: 0;
    transform: translateY(24px);
    filter: blur(4px);
  }

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

@keyframes luxScaleIn {
  0% {
    opacity: 0;
    transform: translateY(18px) scale(0.96);
  }

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

@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);
  }
}

@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);
  }
}

@keyframes luxFloat {

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

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

@keyframes luxSheenSweep {
  0% {
    left: -75%;
  }

  100% {
    left: 135%;
  }
}

@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));
  }
}

@keyframes timelineFlowTrack {
  0% {
    background-position: 100% 0;
  }

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

@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);
  }
}

@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);
  }
}

.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;
}

.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;
}

.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;
}

.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;
}

.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;
}

.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;
}

.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;
}

.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;
  }
}

@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;
    gap: 36px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@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);
  }

  .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);
  }

  .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);
  }

  .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;
  }

  .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;
  }
}

@media (max-width: 1024px) {

  .container,
  .why-rh-container,
  .plan-container,
  .alt-container,
  .pain-container,
  .owner-hero-container {
    padding-left: 24px !important;
    padding-right: 24px !important;
    box-sizing: border-box !important;
  }

  .owner-hero-main {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }

  .owner-hero-visual-col {
    display: none !important;
  }

  .owner-hero-text {
    max-width: 100% !important;
  }

  .hero-headline {
    font-size: clamp(2.1rem, 4.2vw, 2.8rem) !important;
  }

  .owner-hero-bg-media {
    width: 100% !important;
    opacity: 0.22 !important;
  }

  .hero-bottom-bar {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 16px !important;
  }

  .hero-bottom-pillars {
    width: 100% !important;
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 16px !important;
  }

  .pain-main-grid {
    grid-template-columns: 1fr !important;
    gap: 36px !important;
  }

  .pain-story-col {
    max-width: 100% !important;
  }

  .pain-card-col {
    max-width: 580px !important;
    margin: 0 auto !important;
    width: 100% !important;
  }

  .pain-bottom-bar {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 16px !important;
  }

  .pain-bottom-pillars {
    width: 100% !important;
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 16px !important;
  }

  .alt-avontur-grid {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }

  .alt-glassmorphism-hero-card {
    padding: clamp(28px, 4vw, 42px) !important;
  }

  .alt-cards-2x2-col {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 18px !important;
  }

  .alt-feature-card {
    min-height: 185px !important;
    padding: 24px 20px !important;
  }

  .why-rh-main-grid {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }

  .why-rh-visual-col {
    display: none !important;
  }

  .why-rh-story-col {
    margin-left: 0 !important;
    max-width: 100% !important;
  }

  .why-rh-bg-media {
    width: 100% !important;
    opacity: 0.20 !important;
  }

  .why-rh-bottom-bar {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 16px !important;
  }

  .why-rh-bottom-pillars {
    width: 100% !important;
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 16px !important;
  }

  .plan-top-grid {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
    margin-bottom: 36px !important;
  }

  .plan-visual-col {
    padding-left: 0 !important;
    justify-content: flex-start !important;
  }

  .plan-bg-media {
    width: 70% !important;
    opacity: 0.20 !important;
  }

  .plan-steps-track {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 24px !important;
  }

  .plan-steps-track::before {
    display: none !important;
  }

  .plan-bottom-bar {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 16px !important;
  }

  .plan-bottom-pillars {
    width: 100% !important;
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 16px !important;
  }

  .owner-section-contact .split-layout {
    grid-template-columns: 1fr !important;
    gap: 36px !important;
  }

  .phone-mockup-wrapper {
    margin-top: 10px !important;
  }
}

@media (max-width: 768px) {

  html,
  body {
    overflow-x: hidden !important;
    max-width: 100vw !important;
    width: 100% !important;
  }

  .container,
  .why-rh-container,
  .plan-container,
  .alt-container,
  .pain-container,
  .owner-hero-container {
    padding-left: 18px !important;
    padding-right: 18px !important;
    box-sizing: border-box !important;
  }

  .owner-hero {
    padding-top: calc(var(--navbar-height) + 18px) !important;
    padding-bottom: 28px !important;
    min-height: auto !important;
  }

  .owner-hero-bg-media {
    width: 100% !important;
    opacity: 0.18 !important;
  }

  .owner-hero-gradient-overlay {
    background: linear-gradient(180deg,
        rgba(250, 247, 242, 0.94) 0%,
        rgba(250, 247, 242, 0.98) 100%) !important;
  }

  .hero-kicker {
    font-size: 0.80rem !important;
    padding: 6px 14px !important;
    margin-bottom: 14px !important;
  }

  .hero-headline {
    font-size: clamp(1.85rem, 6.6vw, 2.35rem) !important;
    line-height: 1.18 !important;
    margin-bottom: 16px !important;
  }

  .hero-br {
    display: inline !important;
  }

  .hero-gold-highlight {
    margin-top: 3px !important;
  }

  .hero-description {
    font-size: 0.96rem !important;
    line-height: 1.55 !important;
    margin-bottom: 24px !important;
    text-align: left !important;
  }

  .hero-buttons-row {
    flex-direction: column !important;
    width: 100% !important;
    gap: 12px !important;
  }

  .btn-hero-capsule,
  .btn-hero-whatsapp {
    width: 100% !important;
    padding: 14px 20px !important;
    font-size: 0.84rem !important;
    justify-content: center !important;
    text-align: center !important;
    box-sizing: border-box !important;
  }

  .hero-guarantee-note {
    justify-content: center !important;
    font-size: 0.82rem !important;
  }

  .hero-bottom-bar {
    margin-top: 32px !important;
    padding-top: 18px !important;
    gap: 14px !important;
  }

  .hero-bottom-pillars {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .owner-pain-contrast {
    padding: clamp(48px, 8vw, 68px) 0 35px !important;
  }

  .pain-headline {
    font-size: clamp(1.85rem, 6.6vw, 2.35rem) !important;
    line-height: 1.18 !important;
    margin-bottom: 18px !important;
  }

  .pain-lead {
    font-size: 0.96rem !important;
    line-height: 1.55 !important;
    margin-bottom: 22px !important;
  }

  .pain-investment-flow {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
    margin-bottom: 24px !important;
    width: 100% !important;
  }

  .pain-step-arrow {
    display: none !important;
  }

  .pain-step-chip {
    width: 100% !important;
    justify-content: center !important;
    padding: 10px 12px !important;
    border-radius: 12px !important;
    font-size: 0.82rem !important;
    box-sizing: border-box !important;
  }

  .pain-step-chip .step-text {
    white-space: normal !important;
    text-align: center !important;
  }

  .pain-turning-point {
    padding: 14px 16px !important;
    border-radius: 14px !important;
    gap: 12px !important;
    font-size: 0.88rem !important;
  }

  .pain-floating-card {
    padding: 24px 18px !important;
    border-radius: 20px !important;
  }

  .pain-card-title {
    font-size: 1.45rem !important;
    margin-bottom: 12px !important;
  }

  .pain-card-text {
    font-size: 0.92rem !important;
    line-height: 1.5 !important;
    margin-bottom: 20px !important;
  }

  .pain-card-actions {
    flex-direction: column !important;
    width: 100% !important;
    gap: 12px !important;
  }

  .btn-pain-primary,
  .btn-pain-whatsapp {
    width: 100% !important;
    justify-content: center !important;
    text-align: center !important;
    padding: 14px 18px !important;
    font-size: 0.82rem !important;
    box-sizing: border-box !important;
  }

  .pain-card-guarantee {
    justify-content: center !important;
    font-size: 0.80rem !important;
  }

  .pain-bottom-pillars {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .owner-alternatives-section {
    padding: clamp(48px, 8vw, 68px) 0 35px !important;
  }

  .alt-avontur-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  .alt-glassmorphism-hero-card {
    padding: 24px 18px !important;
    border-radius: 20px !important;
    background: rgba(255, 255, 255, 0.88) !important;
    backdrop-filter: blur(14px) !important;
    -webkit-backdrop-filter: blur(14px) !important;
  }

  .alt-glass-eyebrow {
    font-size: 0.74rem !important;
    margin-bottom: 10px !important;
  }

  .alt-glass-headline {
    font-size: clamp(1.8rem, 6.5vw, 2.3rem) !important;
    line-height: 1.18 !important;
    margin-bottom: 14px !important;
  }

  .alt-desktop-br {
    display: inline !important;
  }

  .alt-glass-description {
    font-size: 0.95rem !important;
    line-height: 1.55 !important;
  }

  .alt-glass-callout {
    padding: 14px 16px !important;
    margin: 18px 0 !important;
    font-size: 0.88rem !important;
    border-radius: 12px !important;
  }

  .alt-actions-row {
    flex-direction: column !important;
    width: 100% !important;
    gap: 12px !important;
  }

  .btn-alt-capsule,
  .alt-actions-row .btn-hero-whatsapp {
    width: 100% !important;
    justify-content: center !important;
    text-align: center !important;
    padding: 14px 18px !important;
    font-size: 0.84rem !important;
    box-sizing: border-box !important;
  }

  .alt-guarantee-note {
    justify-content: center !important;
    font-size: 0.82rem !important;
  }

  .alt-cards-2x2-col {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .alt-feature-card {
    min-height: auto !important;
    padding: 16px 18px !important;
    border-radius: 16px !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-start !important;
    text-align: left !important;
    gap: 16px !important;
    background: rgba(255, 255, 255, 0.88) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border: 1.5px solid rgba(197, 160, 89, 0.35) !important;
  }

  .alt-feature-icon-box {
    margin-bottom: 0 !important;
    width: 48px !important;
    height: 48px !important;
    border-radius: 14px !important;
    flex-shrink: 0 !important;
  }

  .alt-feature-icon-box svg {
    width: 24px !important;
    height: 24px !important;
  }

  .alt-feature-title {
    font-size: 1.02rem !important;
  }

  .owner-why-rh {
    padding: clamp(48px, 8vw, 68px) 0 30px !important;
  }

  .why-rh-headline {
    font-size: clamp(1.85rem, 6.6vw, 2.35rem) !important;
    line-height: 1.18 !important;
    margin-bottom: 18px !important;
  }

  .why-rh-description {
    font-size: 0.96rem !important;
    line-height: 1.55 !important;
    margin-bottom: 22px !important;
    text-align: left !important;
  }

  .why-rh-stats-row {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 10px !important;
    width: 100% !important;
    margin-bottom: 24px !important;
  }

  .why-rh-stat-card {
    width: 100% !important;
    min-width: 0 !important;
    padding: 14px 18px !important;
    box-sizing: border-box !important;
  }

  .why-rh-quote-title {
    font-size: 1.8rem !important;
    margin-bottom: 8px !important;
  }

  .why-rh-quote-text {
    font-size: 0.95rem !important;
    line-height: 1.55 !important;
    text-align: left !important;
  }

  .why-rh-cta-group {
    width: 100% !important;
  }

  .btn-why-rh {
    width: 100% !important;
    justify-content: center !important;
    text-align: center !important;
    padding: 14px 18px !important;
    font-size: 0.82rem !important;
    box-sizing: border-box !important;
  }

  .why-rh-guarantee {
    justify-content: center !important;
    font-size: 0.82rem !important;
    width: 100% !important;
  }

  .why-rh-bottom-pillars {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .owner-plan-process {
    padding: clamp(48px, 8vw, 68px) 0 35px !important;
  }

  .plan-headline {
    font-size: clamp(1.85rem, 6.6vw, 2.35rem) !important;
    line-height: 1.18 !important;
  }

  .plan-br {
    display: inline !important;
  }

  .plan-visual-col {
    padding-left: 0 !important;
    width: 100% !important;
    justify-content: flex-start !important;
  }

  .plan-floating-widget {
    width: 100% !important;
    max-width: 380px !important;
    padding: 10px 14px !important;
    box-sizing: border-box !important;
  }

  .plan-steps-track {
    display: flex !important;
    flex-direction: column !important;
    gap: 14px !important;
    margin-bottom: 32px !important;
  }

  .plan-steps-track::before {
    display: none !important;
  }

  .plan-step-item {
    background: rgba(13, 26, 44, 0.78) !important;
    border: 1px solid rgba(197, 160, 89, 0.32) !important;
    border-radius: 18px !important;
    padding: 16px 18px !important;
    display: grid !important;
    grid-template-columns: auto 1fr !important;
    column-gap: 16px !important;
    row-gap: 4px !important;
    align-items: flex-start !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35) !important;
  }

  .plan-step-item .step-badge-row {
    margin-bottom: 0 !important;
    grid-row: 1 / 3 !important;
    align-self: flex-start !important;
    gap: 8px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }

  .plan-step-item .step-num {
    font-size: 1.15rem !important;
    line-height: 1 !important;
  }

  .plan-step-item .step-icon-bubble {
    width: 42px !important;
    height: 42px !important;
  }

  .plan-step-item .step-icon-bubble svg {
    width: 20px !important;
    height: 20px !important;
  }

  .plan-step-item .step-title {
    font-size: 1.05rem !important;
    margin: 0 !important;
    line-height: 1.3 !important;
    color: #ffffff !important;
  }

  .plan-step-item .step-title br {
    display: inline !important;
  }

  .plan-step-item .step-desc {
    font-size: 0.85rem !important;
    line-height: 1.45 !important;
    color: #cbd5e1 !important;
    margin: 0 !important;
  }

  .plan-cta-center {
    width: 100% !important;
  }

  .btn-plan-capsule {
    width: 100% !important;
    justify-content: center !important;
    text-align: center !important;
    padding: 15px 20px !important;
    font-size: 0.82rem !important;
    box-sizing: border-box !important;
  }

  .plan-guarantee-note {
    justify-content: center !important;
    font-size: 0.82rem !important;
  }

  .plan-bottom-pillars {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .owner-section-contact {
    padding: clamp(48px, 8vw, 68px) 0 !important;
  }

  .owner-section-contact .split-layout {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }

  .phone-mockup-wrapper {
    width: 100% !important;
    max-width: 360px !important;
    margin: 0 auto !important;
  }

  .phone-device {
    width: 100% !important;
    max-width: 350px !important;
    height: 575px !important;
    border-radius: 36px !important;
    padding: 6px !important;
    box-sizing: border-box !important;
  }

  .phone-screen {
    border-radius: 30px !important;
  }

  .phone-body .form-input,
  .phone-body select.form-input,
  .phone-body .form-textarea {
    font-size: 16px !important;
  }

  .privacy-hero {
    min-height: 300px !important;
    padding: calc(var(--navbar-height) + 36px) 18px 40px !important;
  }

  .privacy-hero-title {
    font-size: 1.85rem !important;
  }

  .privacy-card {
    padding: 26px 18px !important;
    border-radius: 16px !important;
  }

  .privacy-block-title {
    font-size: 1.2rem !important;
  }

  .footer {
    padding: 45px 0 25px !important;
  }

  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }

  .footer-bottom {
    flex-direction: column !important;
    gap: 10px !important;
    text-align: center !important;
  }

  .whatsapp-float {
    bottom: calc(16px + env(safe-area-inset-bottom, 0)) !important;
    right: 16px !important;
    width: 50px !important;
    height: 50px !important;
  }

  .scroll-top-btn {
    bottom: calc(74px + env(safe-area-inset-bottom, 0)) !important;
    right: 18px !important;
    width: 42px !important;
    height: 42px !important;
  }
}

@media (max-width: 480px) {

  .container,
  .why-rh-container,
  .plan-container,
  .alt-container,
  .pain-container,
  .owner-hero-container {
    padding-left: 14px !important;
    padding-right: 14px !important;
  }

  .hero-headline,
  .pain-headline,
  .alt-glass-headline,
  .why-rh-headline,
  .plan-headline {
    font-size: 1.75rem !important;
    line-height: 1.2 !important;
  }

  .pain-investment-flow {
    gap: 8px !important;
  }

  .pain-step-chip {
    padding: 8px 10px !important;
    font-size: 0.78rem !important;
  }

  .pain-step-chip .step-icon svg {
    width: 16px !important;
    height: 16px !important;
  }

  .alt-feature-card {
    padding: 14px !important;
    gap: 12px !important;
  }

  .alt-feature-icon-box {
    width: 42px !important;
    height: 42px !important;
  }

  .alt-feature-title {
    font-size: 0.95rem !important;
  }

  .plan-step-item {
    padding: 14px 12px !important;
    column-gap: 12px !important;
  }

  .plan-step-item .step-icon-bubble {
    width: 38px !important;
    height: 38px !important;
  }

  .plan-step-item .step-num {
    font-size: 1rem !important;
  }

  .plan-step-item .step-title {
    font-size: 0.98rem !important;
  }

  .plan-step-item .step-desc {
    font-size: 0.80rem !important;
  }

  .phone-device::before,
  .phone-device::after {
    display: none !important;
  }

  .phone-device {
    max-width: 100% !important;
    border-radius: 28px !important;
    padding: 4px !important;
    height: 565px !important;
  }

  .phone-screen {
    border-radius: 24px !important;
  }

  .phone-body {
    padding: 0 10px 6px !important;
  }
}