/* ─── CASADRY DESIGN SYSTEM ─── */
:root {
  --navy: #0A1F44;
  --navy-deep: #060F22;
  --navy-soft: #142B5A;
  --warm-white: #F7F5F2;
  --sand: #D6C3A3;
  --sand-light: #EDE5D8;
  --sand-dark: #B8A07A;
  --sand-glow: #E8D4A8;
  --gold: #C9A96A;
  --green: #2E7D5C;
  --display: 'Cormorant Garamond', Georgia, serif;
  --body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--body);
  background: var(--warm-white);
  color: var(--navy);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

/* ─── NAV ─── */
nav.main-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 0 4vw;
  background: rgba(247,245,242,0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(214,195,163,0.2);
}
nav.main-nav.scrolled {
  background: rgba(247,245,242,0.98);
  box-shadow: 0 1px 0 rgba(10,31,68,0.06);
}
.nav-inner {
  max-width: 1480px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 76px; gap: 16px;
}
.logo-img { height: 48px; width: auto; display: block; }
.nav-links { display: flex; gap: 28px; align-items: center; flex: 1; justify-content: center; }
.nav-link {
  font-size: 12px; letter-spacing: 0.16em; font-weight: 500;
  color: var(--navy); text-decoration: none;
  position: relative; padding: 6px 0;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-link.active::after, .nav-link:hover::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
  height: 2px; background: var(--sand-dark);
}
.nav-right { display: flex; align-items: center; gap: 14px; }

.lang-dropdown { position: relative; }
.lang-current {
  background: transparent; border: none;
  padding: 6px 10px; font-size: 12px; letter-spacing: 0.1em;
  cursor: pointer; color: var(--navy); font-weight: 600;
  display: flex; align-items: center; gap: 6px;
}
.lang-menu {
  position: absolute; top: 100%; right: 0;
  background: #fff;
  border: 1px solid rgba(214,195,163,0.4);
  box-shadow: 0 12px 40px rgba(10,31,68,0.12);
  min-width: 140px;
  opacity: 0; visibility: hidden;
  transform: translateY(-4px);
  transition: all 0.2s; z-index: 110;
}
.lang-dropdown.open .lang-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.lang-item {
  display: block; width: 100%;
  padding: 10px 16px; background: none; border: none;
  font-size: 13px; color: var(--navy); cursor: pointer;
  text-align: left; font-weight: 500;
}
.lang-item:hover { background: var(--sand-light); }
.lang-item.active { background: var(--navy); color: #fff; }

.btn { 
  display: inline-flex; align-items: center; gap: 12px;
  padding: 14px 26px; font-size: 11px; letter-spacing: 0.16em;
  font-weight: 700; text-transform: uppercase; cursor: pointer;
  border: none; transition: all 0.3s; text-decoration: none;
  border-radius: 0;
}
.btn-primary { background: var(--navy); color: #fff; }
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 8px 22px rgba(10,31,68,0.25); }
.btn-outline { background: transparent; border: 1.5px solid var(--navy); color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: #fff; }
.btn-gold {
  background: linear-gradient(135deg, var(--sand-glow), var(--sand-dark));
  color: var(--navy); border: none;
  padding: 18px 40px; font-size: 12px; letter-spacing: 0.18em;
  font-weight: 800; text-transform: uppercase;
  box-shadow: 0 10px 30px rgba(232,212,168,0.3);
  cursor: pointer; transition: all 0.3s;
  display: inline-flex; align-items: center; gap: 12px;
}
.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 50px rgba(232,212,168,0.5);
}

/* MOBILE MENU */
.mobile-menu-btn {
  display: none; background: transparent; border: none;
  cursor: pointer; padding: 8px; color: var(--navy);
}
.mobile-menu {
  display: none;
  position: fixed; top: 76px; left: 0; right: 0; bottom: 0;
  background: var(--warm-white);
  z-index: 99; padding: 32px 6vw;
  flex-direction: column; gap: 4px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(.2,.8,.2,1);
  overflow-y: auto;
}
.mobile-menu.open { display: flex; transform: translateX(0); }
.mobile-menu a {
  font-family: var(--display);
  font-size: 28px; font-weight: 500;
  color: var(--navy); text-decoration: none;
  padding: 16px 0;
  border-bottom: 1px solid rgba(214,195,163,0.3);
}
.mobile-menu .btn { margin-top: 24px; text-align: center; padding: 18px; font-size: 13px; justify-content: center; }
.mobile-menu-langs {
  display: flex; gap: 12px;
  margin-top: 32px; padding-top: 24px;
  border-top: 1px solid rgba(214,195,163,0.3);
}
.mobile-menu-langs button {
  flex: 1; padding: 12px;
  background: transparent; border: 1px solid rgba(214,195,163,0.5);
  color: var(--navy); font-weight: 600; font-size: 12px;
  letter-spacing: 0.12em; cursor: pointer;
}
.mobile-menu-langs button.active { background: var(--navy); color: #fff; border-color: var(--navy); }

/* ─── SECTION HEADER ─── */
.section-header {
  text-align: center; margin-bottom: 56px;
  max-width: 720px; margin-left: auto; margin-right: auto;
}
.section-tag {
  font-size: 11px; letter-spacing: 0.32em;
  color: var(--sand-dark); font-weight: 600;
  margin-bottom: 16px; text-transform: uppercase;
}
.section-title {
  font-family: var(--display);
  font-size: clamp(32px, 4.4vw, 60px);
  font-weight: 500; line-height: 1.04;
  color: var(--navy); margin-bottom: 18px;
  letter-spacing: -0.01em;
}
.section-sub {
  font-size: 16px; line-height: 1.7; color: #6B7280;
}

/* ─── FOOTER ─── */
footer.main-footer {
  background: var(--navy-deep);
  padding: 64px 4vw 28px;
  color: rgba(255,255,255,0.7);
}
.footer-inner { max-width: 1480px; margin: 0 auto; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 40px; margin-bottom: 56px;
}
.footer-logo-img {
  height: 56px; width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 20px; opacity: 0.95;
}
.footer-brand-text {
  font-size: 13px; line-height: 1.7;
  color: rgba(255,255,255,0.55); max-width: 260px;
}
.footer-col-title {
  font-size: 11px; letter-spacing: 0.22em;
  color: var(--sand-dark);
  margin-bottom: 20px;
  font-weight: 700; text-transform: uppercase;
}
.footer-link {
  display: block; font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 10px;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-link:hover { color: var(--sand); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 22px;
  display: flex; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
  font-size: 12px; color: rgba(255,255,255,0.4);
}

/* ─── WHATSAPP FAB ─── */
.wa-fab {
  position: fixed;
  bottom: 22px; right: 22px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 22px rgba(37,211,102,0.45);
  cursor: pointer; z-index: 90;
  text-decoration: none;
  transition: transform 0.3s;
}
.wa-fab:hover { transform: scale(1.08); }
.wa-fab::before {
  content: '';
  position: absolute; inset: -6px;
  border-radius: 50%;
  border: 2px solid #25D366;
  opacity: 0;
  animation: waPulse 2.5s ease-out infinite;
}
@keyframes waPulse {
  0% { opacity: 0.7; transform: scale(0.95); }
  100% { opacity: 0; transform: scale(1.4); }
}

/* ─── CHAT FAB & WIDGET ─── */
.chat-fab {
  position: fixed;
  bottom: 22px; right: 88px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 22px rgba(10,31,68,0.45);
  cursor: pointer; z-index: 90;
  border: none; color: var(--sand);
  transition: transform 0.3s;
}
.chat-fab:hover { transform: scale(1.08); }
.chat-fab .badge {
  position: absolute;
  top: -4px; right: -4px;
  background: var(--sand-glow);
  color: var(--navy);
  font-size: 11px;
  font-weight: 700;
  width: 22px; height: 22px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--warm-white);
  animation: chatPulse 2s ease-in-out infinite;
}
@keyframes chatPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}

.chat-window {
  position: fixed;
  bottom: 92px; right: 22px;
  width: 380px; max-width: calc(100vw - 32px);
  height: 580px; max-height: calc(100vh - 120px);
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(10,31,68,0.25);
  z-index: 91;
  display: none;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s, transform 0.3s;
}
.chat-window.open {
  display: flex; opacity: 1; transform: translateY(0);
}
.chat-header {
  background: var(--navy);
  color: #fff;
  padding: 16px 20px;
  display: flex; align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.chat-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sand-glow), var(--sand-dark));
  color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display);
  font-size: 22px; font-weight: 600;
  position: relative;
}
.chat-avatar::after {
  content: ''; position: absolute;
  bottom: 0; right: 0;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: #4ADE80;
  border: 2px solid var(--navy);
}
.chat-header-info { flex: 1; }
.chat-header-name {
  font-weight: 600; font-size: 15px;
  margin-bottom: 1px;
}
.chat-header-status {
  font-size: 11px;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.04em;
}
.chat-close {
  background: rgba(255,255,255,0.1);
  border: none; color: #fff;
  width: 32px; height: 32px;
  border-radius: 50%;
  font-size: 18px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.chat-close:hover { background: rgba(255,255,255,0.2); transform: rotate(90deg); }

.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 20px 18px;
  background: #FAFAF8;
  display: flex; flex-direction: column;
  gap: 12px;
}
.chat-msg {
  display: flex;
  gap: 8px;
  max-width: 85%;
  align-items: flex-end;
  animation: msgIn 0.3s ease-out;
}
@keyframes msgIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.chat-msg.user {
  align-self: flex-end;
  flex-direction: row-reverse;
}
.chat-msg-avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--sand);
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700;
  font-family: var(--display);
}
.chat-msg.user .chat-msg-avatar {
  background: var(--sand-dark);
  color: #fff;
}
.chat-bubble {
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 14px;
  line-height: 1.5;
  background: #fff;
  color: var(--navy);
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}
.chat-bubble strong { font-weight: 600; }
.chat-bubble em { font-style: italic; color: var(--navy-soft); }
.chat-msg.user .chat-bubble {
  background: var(--navy);
  color: #fff;
}
.chat-bubble a {
  color: var(--sand-dark);
  font-weight: 600;
  text-decoration: underline;
}

.chat-quick {
  display: flex; flex-wrap: wrap;
  gap: 6px; padding: 12px 18px 8px;
  background: #FAFAF8;
  border-top: 1px solid rgba(214,195,163,0.2);
}
.chat-quick-btn {
  background: #fff;
  border: 1px solid rgba(214,195,163,0.5);
  padding: 8px 14px;
  font-size: 12px;
  color: var(--navy);
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.2s;
  font-family: var(--body);
}
.chat-quick-btn:hover {
  background: var(--sand-light);
  border-color: var(--sand-dark);
}

.chat-input-row {
  display: flex; gap: 8px;
  padding: 12px 14px;
  border-top: 1px solid rgba(214,195,163,0.3);
  background: #fff;
  flex-shrink: 0;
}
.chat-input {
  flex: 1;
  border: 1px solid rgba(214,195,163,0.5);
  padding: 10px 14px;
  font-size: 14px;
  border-radius: 20px;
  font-family: var(--body);
  color: var(--navy);
  -webkit-appearance: none;
  outline: none;
}
.chat-input:focus { border-color: var(--navy); }
.chat-send {
  background: var(--navy);
  color: var(--sand);
  border: none;
  width: 40px; height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.2s;
}
.chat-send:hover { transform: scale(1.05); }

.typing-dots {
  display: inline-flex;
  gap: 3px;
  padding: 4px 0;
}
.typing-dots span {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--sand-dark);
  animation: typing 1.4s ease-in-out infinite;
}
.typing-dots span:nth-child(2) { animation-delay: 0.15s; }
.typing-dots span:nth-child(3) { animation-delay: 0.3s; }
@keyframes typing {
  0%, 60%, 100% { opacity: 0.3; transform: translateY(0); }
  30% { opacity: 1; transform: translateY(-4px); }
}

/* ─── REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s, transform 0.8s;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .mobile-menu-btn { display: flex; align-items: center; }
  .nav-right .lang-dropdown { display: none; }
  .nav-right .btn-primary { display: none; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .nav-inner { height: 64px; }
  .logo-img { height: 38px; }
  footer.main-footer { padding: 56px 5vw 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; margin-bottom: 40px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
  .section-header { margin-bottom: 36px; }
  .section-title { font-size: 32px; }
  .section-sub { font-size: 15px; }
  .wa-fab { bottom: 18px; right: 18px; width: 50px; height: 50px; }
  .wa-fab svg { width: 26px; height: 26px; }
  .chat-fab { bottom: 18px; right: 80px; width: 50px; height: 50px; }
  .chat-fab svg { width: 24px; height: 24px; }
  .chat-window {
    bottom: 0; right: 0; left: 0;
    width: 100%; max-width: none;
    height: 100%; max-height: 100%;
    border-radius: 0;
  }
}
@media (max-width: 380px) {
  .section-title { font-size: 28px; }
}


/* ─── PAGE ROUTING ─── */
.page { display: none; }
.page.active { display: block; }

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(180deg, #f5f2ec 0%, #ece6d8 60%, #e2dac7 100%);
  overflow: hidden;
  padding-top: 76px;
}
.hero-inner {
  max-width: 1480px; margin: 0 auto;
  padding: 32px 4vw 40px;
  position: relative;
  min-height: calc(100vh - 76px);
  display: flex; align-items: center;
}
.hero-villa-bg {
  position: absolute;
  top: 50%; right: -2%;
  width: 65%; max-width: 900px;
  height: 80%;
  transform: translateY(-50%);
  background-image: url('/assets/hero-villa-shield.jpg');
  background-size: contain;
  background-position: right center;
  background-repeat: no-repeat;
  z-index: 1;
  animation: heroSlowZoom 22s ease-in-out infinite alternate;
}
@keyframes heroSlowZoom {
  from { transform: translateY(-50%) scale(1); }
  to { transform: translateY(-50%) scale(1.03); }
}
.mould-cloud {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 50%;
  pointer-events: none;
  z-index: 3;
  overflow: hidden;
}
.mould-particle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%,
    rgba(60, 42, 30, 0.85) 0%,
    rgba(40, 28, 20, 0.65) 45%,
    rgba(30, 22, 16, 0.3) 70%,
    transparent 85%);
  filter: blur(1.5px);
  opacity: 0;
  animation: mouldDrift 10s ease-in-out infinite;
}
@keyframes mouldDrift {
  0% { opacity: 0; transform: translate(30px, 0) scale(0.4); }
  20% { opacity: 0.9; }
  50% { opacity: 0.75; transform: translate(-40px, 30px) scale(1); }
  80% { opacity: 0.4; }
  100% { opacity: 0; transform: translate(-110px, 80px) scale(1.6); }
}
.shield-glow-overlay {
  position: absolute;
  top: 50%; right: 14%;
  transform: translateY(-50%);
  width: 28vw; max-width: 420px;
  aspect-ratio: 1/1.15;
  pointer-events: none; z-index: 2;
  background: radial-gradient(ellipse at center,
    rgba(232,212,168,0.45) 0%,
    rgba(232,212,168,0.2) 30%,
    transparent 65%);
  animation: shieldGlowPulse 3.5s ease-in-out infinite;
  mix-blend-mode: screen;
}
@keyframes shieldGlowPulse {
  0%, 100% { opacity: 0.5; transform: translateY(-50%) scale(0.92); }
  50% { opacity: 1; transform: translateY(-50%) scale(1.05); }
}
.hero-text { position: relative; z-index: 5; max-width: 540px; }
.hero-tag {
  font-size: 11px; letter-spacing: 0.32em;
  color: var(--sand-dark); font-weight: 600;
  margin-bottom: 22px; text-transform: uppercase;
  opacity: 0; animation: fadeUp 0.9s 0.15s forwards;
}
.hero-h1 {
  font-family: var(--display);
  font-size: clamp(48px, 7vw, 110px);
  font-weight: 500; line-height: 0.92;
  color: var(--navy); margin-bottom: 28px;
  letter-spacing: -0.02em;
}
.hero-h1 span {
  display: block;
  opacity: 0; animation: fadeUp 0.9s forwards;
}
.hero-h1 span:nth-child(1) { animation-delay: 0.3s; }
.hero-h1 span:nth-child(2) { animation-delay: 0.45s; }
.hero-sub {
  font-size: clamp(12px, 1vw, 14px);
  font-weight: 600;
  color: var(--sand-dark);
  margin-bottom: 22px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  line-height: 1.6;
  opacity: 0; animation: fadeUp 0.9s 0.6s forwards;
}
.hero-body {
  font-size: 15px; line-height: 1.7;
  color: #4A5568; max-width: 420px;
  margin-bottom: 32px;
  opacity: 0; animation: fadeUp 0.9s 0.75s forwards;
}
.hero-cta-row {
  display: flex; gap: 12px; flex-wrap: wrap;
  opacity: 0; animation: fadeUp 0.9s 0.9s forwards;
}

/* ─── PHILOSOPHY (NEW: positioning above the funnel) ─── */
.philosophy {
  background: var(--warm-white);
  padding: 96px 4vw;
  text-align: center;
  position: relative;
}
.philosophy-inner {
  max-width: 880px; margin: 0 auto;
  position: relative; z-index: 2;
}
.philosophy-mark {
  font-family: var(--display);
  font-size: 100px;
  color: var(--sand);
  line-height: 1;
  opacity: 0.8;
  margin-bottom: -10px;
}
.philosophy-quote {
  font-family: var(--display);
  font-size: clamp(28px, 3.6vw, 48px);
  line-height: 1.2;
  color: var(--navy);
  font-weight: 500;
  margin-bottom: 32px;
  font-style: italic;
}
.philosophy-quote em {
  background: linear-gradient(120deg, transparent 0%, transparent 40%, var(--sand-glow) 40%, var(--sand-glow) 95%, transparent 95%);
  background-repeat: no-repeat;
  font-style: italic;
  padding: 0 4px;
}
.philosophy-body {
  font-size: 16px; line-height: 1.85;
  color: #4A5568;
  max-width: 680px; margin: 0 auto;
}
.philosophy-body strong { color: var(--navy); font-weight: 600; }

/* ─── ANALYSIS PATHS (NEW: 2 cards) ─── */
.analysis-paths {
  background: linear-gradient(180deg, var(--warm-white) 0%, var(--sand-light) 100%);
  padding: 96px 4vw;
}
.analysis-inner { max-width: 1200px; margin: 0 auto; }
.path-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 48px;
}
.path-card {
  background: #fff;
  border-radius: 8px;
  padding: 44px 36px 36px;
  position: relative;
  border: 1.5px solid rgba(214,195,163,0.4);
  transition: all 0.4s;
  display: flex; flex-direction: column;
}
.path-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(10,31,68,0.12);
  border-color: var(--sand-dark);
}
.path-card.premium {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-soft) 100%);
  color: #fff;
  border-color: var(--navy);
}
.path-card.premium:hover {
  border-color: var(--sand);
}
.path-badge {
  display: inline-block;
  background: var(--sand-light);
  color: var(--navy);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  padding: 6px 12px;
  text-transform: uppercase;
  border-radius: 4px;
  margin-bottom: 16px;
  width: fit-content;
}
.path-card.premium .path-badge {
  background: var(--sand-glow);
  color: var(--navy);
}
.path-icon {
  font-size: 36px;
  margin-bottom: 18px;
  line-height: 1;
}
.path-title {
  font-family: var(--display);
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.1;
}
.path-card.premium .path-title { color: #fff; }
.path-subtitle {
  font-size: 13px;
  color: var(--sand-dark);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.path-card.premium .path-subtitle { color: var(--sand); }
.path-price {
  font-family: var(--display);
  font-size: 42px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 4px;
}
.path-card.premium .path-price { color: var(--sand-glow); }
.path-price-note {
  font-size: 12px;
  color: #6B7280;
  margin-bottom: 24px;
  font-style: italic;
}
.path-card.premium .path-price-note { color: rgba(255,255,255,0.6); }
.path-features {
  list-style: none;
  margin: 0; padding: 0;
  flex: 1;
}
.path-features li {
  font-size: 14px;
  line-height: 1.6;
  padding: 10px 0 10px 28px;
  position: relative;
  color: #2D3748;
  border-bottom: 1px solid rgba(214,195,163,0.2);
}
.path-features li:last-child { border-bottom: none; }
.path-card.premium .path-features li { color: rgba(255,255,255,0.85); border-bottom-color: rgba(255,255,255,0.08); }
.path-features li::before {
  content: '';
  position: absolute;
  left: 0; top: 14px;
  width: 18px; height: 18px;
  background: var(--sand-glow);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230A1F44' stroke-width='3' stroke-linecap='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 12px;
  background-position: center;
  background-repeat: no-repeat;
}
.path-card.premium .path-features li::before {
  background: var(--sand-glow);
}
.path-highlight {
  background: var(--sand-light);
  padding: 14px 16px;
  margin-top: 20px;
  border-radius: 4px;
  font-size: 13px;
  color: var(--navy);
  line-height: 1.5;
}
.path-highlight strong { font-weight: 700; }
.path-card.premium .path-highlight {
  background: rgba(232,212,168,0.12);
  color: var(--sand-glow);
  border-left: 3px solid var(--sand-glow);
}
.path-cta {
  margin-top: 24px;
  padding: 14px 22px;
  font-size: 11px;
  letter-spacing: 0.16em;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  background: var(--navy);
  color: #fff;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  width: 100%;
  text-decoration: none;
  display: block;
}
.path-card.premium .path-cta {
  background: linear-gradient(135deg, var(--sand-glow), var(--sand-dark));
  color: var(--navy);
  font-weight: 800;
}
.path-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(10,31,68,0.25); }

/* ─── COMPARISON TABLE ─── */
.comparison {
  background: var(--warm-white);
  padding: 80px 4vw;
}
.compare-table {
  max-width: 800px; margin: 40px auto 0;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(10,31,68,0.08);
}
.compare-table table {
  width: 100%;
  border-collapse: collapse;
}
.compare-table th, .compare-table td {
  padding: 18px 24px;
  text-align: left;
  font-size: 14px;
}
.compare-table thead {
  background: var(--navy);
  color: #fff;
}
.compare-table th {
  font-size: 12px;
  letter-spacing: 0.12em;
  font-weight: 700;
  text-transform: uppercase;
}
.compare-table th:nth-child(3) {
  background: linear-gradient(135deg, var(--sand-dark), var(--sand-glow));
  color: var(--navy);
}
.compare-table tbody tr:not(:last-child) td {
  border-bottom: 1px solid rgba(214,195,163,0.3);
}
.compare-table td:first-child {
  font-weight: 600;
  color: var(--navy);
}
.compare-table td:nth-child(3) {
  background: rgba(232,212,168,0.1);
  color: var(--navy);
  font-weight: 600;
}

/* ─── TRUST BAR ─── */
.trust-bar {
  background: var(--warm-white);
  padding: 0 4vw;
  position: relative; z-index: 4;
}
.trust-inner {
  max-width: 1480px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(5, 1fr);
}
.trust-item {
  padding: 32px 18px;
  border-right: 1px solid rgba(214,195,163,0.4);
  display: flex; align-items: flex-start; gap: 14px;
}
.trust-item:last-child { border-right: none; }
.trust-icon-wrap { flex-shrink: 0; color: var(--sand-dark); margin-top: 2px; }
.trust-title {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--navy); margin-bottom: 5px;
  text-transform: uppercase;
  line-height: 1.2;
}
.trust-text { font-size: 12px; line-height: 1.5; color: #6B7280; }

/* ─── SERVICES ─── */
.services {
  background: var(--warm-white);
  padding: 96px 4vw;
}
.services-inner { max-width: 1480px; margin: 0 auto; }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px;
}
.service-card {
  position: relative; aspect-ratio: 4/5;
  overflow: hidden; cursor: pointer;
  background: var(--navy);
}
.service-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 0.8s cubic-bezier(.2,.8,.2,1);
}
.service-card:hover .service-img { transform: scale(1.07); }
.service-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top,
    rgba(10,31,68,0.94) 0%,
    rgba(10,31,68,0.55) 38%,
    transparent 75%);
}
.service-content {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 28px; color: #fff; z-index: 2;
}
.service-num {
  font-size: 10px; letter-spacing: 0.32em;
  color: var(--sand); font-weight: 600;
  margin-bottom: 10px; text-transform: uppercase;
}
.service-title {
  font-family: var(--display);
  font-size: 26px; font-weight: 500;
  margin-bottom: 10px; line-height: 1.05;
}
.service-desc {
  font-size: 13px; line-height: 1.65;
  color: rgba(255,255,255,0.82);
  max-height: 0; overflow: hidden;
  transition: max-height 0.5s ease, margin 0.5s ease;
}
.service-card:hover .service-desc {
  max-height: 200px; margin-bottom: 12px;
}

/* ─── PROBLEMS ─── */
.problems {
  background: linear-gradient(180deg, var(--warm-white) 0%, var(--sand-light) 100%);
  padding: 96px 4vw;
}
.problems-inner { max-width: 1480px; margin: 0 auto; }
.problems-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
}
.problem-card {
  background: #fff;
  padding: 40px 28px;
  transition: all 0.4s;
  border: 1px solid rgba(214,195,163,0.3);
  margin-left: -1px; margin-top: -1px;
  position: relative;
}
.problem-card:hover {
  background: var(--navy);
  color: #fff;
  transform: translateY(-4px);
  z-index: 2;
  box-shadow: 0 20px 40px rgba(10,31,68,0.18);
}
.problem-icon {
  width: 48px; height: 48px;
  color: var(--sand-dark);
  margin-bottom: 20px;
  transition: color 0.3s, transform 0.3s;
}
.problem-card:hover .problem-icon {
  color: var(--sand);
  transform: scale(1.08);
}
.problem-title {
  font-family: var(--display);
  font-size: 24px; font-weight: 600;
  margin-bottom: 12px;
  color: var(--navy);
  transition: color 0.3s; line-height: 1.1;
}
.problem-card:hover .problem-title { color: #fff; }
.problem-text {
  font-size: 13px; line-height: 1.7;
  color: #6B7280; transition: color 0.3s;
}
.problem-card:hover .problem-text { color: rgba(255,255,255,0.78); }

/* ─── BEFORE/AFTER ─── */
.ba-section { background: #fff; padding: 96px 4vw; }
.ba-wrap {
  max-width: 1100px; margin: 0 auto;
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 24px 60px rgba(10,31,68,0.16);
  cursor: ew-resize; user-select: none;
}
.ba-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  background-image: url('/assets/before-after.jpg');
}
.ba-img-after {
  background-position: 100% center;
  background-size: 200% 100%;
}
.ba-img-before {
  background-position: 0% center;
  background-size: 200% 100%;
  clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
}
.ba-handle {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%; width: 3px;
  background: #fff;
  transform: translateX(-50%);
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
  z-index: 5;
  pointer-events: none;
}
.ba-handle-circle {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 56px; height: 56px;
  background: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(0,0,0,0.3);
  color: var(--navy);
}
.ba-label {
  position: absolute;
  bottom: 20px;
  padding: 9px 18px;
  font-size: 11px;
  letter-spacing: 0.2em;
  font-weight: 700;
  text-transform: uppercase;
  z-index: 4;
  pointer-events: none;
}
.ba-label-before { left: 20px; background: rgba(10,31,68,0.85); color: #fff; }
.ba-label-after { right: 20px; background: rgba(214,195,163,0.95); color: var(--navy); }

/* ─── TEAM ─── */
.team-section {
  background: var(--navy);
  padding: 96px 4vw;
  color: #fff;
}
.team-grid {
  max-width: 1480px; margin: 0 auto;
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: 60px; align-items: center;
}
.team-img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}
.team-img {
  position: absolute; inset: 0;
  background-image: url('/assets/team.jpg');
  background-size: cover; background-position: center;
  transition: transform 1s ease;
}
.team-img-wrap:hover .team-img { transform: scale(1.04); }
.team-section .section-tag { color: var(--sand); }
.team-section .section-title { color: #fff; text-align: left; }
.team-section .section-header {
  text-align: left; max-width: 100%;
  margin-bottom: 32px;
}
.team-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.stat-num {
  font-family: var(--display);
  font-size: 44px; font-weight: 600;
  color: var(--sand);
  line-height: 1; margin-bottom: 6px;
}
.stat-label {
  font-size: 10px; letter-spacing: 0.18em;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
}

/* ─── VAN ─── */
.van-banner { background: var(--warm-white); padding: 96px 4vw; }
.van-grid {
  max-width: 1480px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.van-img-wrap {
  position: relative; aspect-ratio: 4/3;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(10,31,68,0.16);
}
.van-img {
  position: absolute; inset: 0;
  background-image: url('/assets/van.jpg');
  background-size: cover; background-position: center;
  transition: transform 1s ease;
}
.van-img-wrap:hover .van-img { transform: scale(1.04); }
.van-content .section-header {
  text-align: left; margin-left: 0;
  max-width: 100%; margin-bottom: 28px;
}
.van-points { display: flex; flex-direction: column; gap: 18px; }
.van-point { display: flex; gap: 16px; align-items: flex-start; }
.van-point-num {
  flex-shrink: 0;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--sand);
  display: flex;
  align-items: center; justify-content: center;
  font-family: var(--display);
  font-weight: 600; font-size: 15px;
}
.van-point-text { font-size: 14px; line-height: 1.65; color: #4A5568; }
.van-point-text strong { color: var(--navy); font-weight: 600; }

/* ─── TESTIMONIALS ─── */
.testimonials { background: var(--sand-light); padding: 96px 4vw; }
.testimonials-inner { max-width: 1480px; margin: 0 auto; }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.testimonial-card {
  background: #fff;
  padding: 40px 32px 36px;
  box-shadow: 0 6px 28px rgba(10,31,68,0.06);
  transition: all 0.4s;
  position: relative;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(10,31,68,0.12);
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -8px; left: 24px;
  font-family: var(--display);
  font-size: 100px;
  color: var(--sand);
  line-height: 1;
  font-weight: 700;
}
.stars {
  display: flex; gap: 2px;
  margin-bottom: 20px;
  color: var(--sand-dark);
  font-size: 16px; margin-top: 32px;
}
.testimonial-text {
  font-family: var(--display);
  font-size: 18px; line-height: 1.55;
  color: #2D3748;
  margin-bottom: 24px;
  font-weight: 500; font-style: italic;
}
.testimonial-author {
  border-top: 1px solid rgba(214,195,163,0.5);
  padding-top: 16px;
}
.author-name { font-weight: 700; color: var(--navy); font-size: 14px; margin-bottom: 3px; }
.author-loc { font-size: 12px; color: var(--sand-dark); }

/* ─── BIG CTA / CLOSING ─── */
.big-cta {
  position: relative;
  padding: 110px 4vw;
  overflow: hidden;
  background: var(--navy);
  color: #fff;
  text-align: center;
}
.big-cta::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url('/assets/hero-villa-shield.jpg');
  background-size: cover;
  background-position: right center;
  opacity: 0.12;
  filter: blur(3px);
}
.big-cta::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,31,68,0.92), rgba(10,31,68,0.97));
}
.big-cta-inner {
  position: relative; z-index: 2;
  max-width: 760px; margin: 0 auto;
}
.big-cta-tag {
  font-size: 11px; letter-spacing: 0.32em;
  color: var(--sand);
  margin-bottom: 16px;
  text-transform: uppercase;
  font-weight: 600;
}
.big-cta-title {
  font-family: var(--display);
  font-size: clamp(36px, 5.2vw, 68px);
  font-weight: 500; line-height: 1.05;
  margin-bottom: 18px;
}
.big-cta-tagline {
  font-family: var(--display);
  font-size: clamp(20px, 2.5vw, 30px);
  font-style: italic;
  color: var(--sand-glow);
  margin: 24px 0;
  font-weight: 500;
}
.big-cta-sub {
  font-size: 17px; line-height: 1.7;
  color: rgba(255,255,255,0.78);
  margin-bottom: 40px;
}

/* ─── EXPERT PAGE ─── */
.page-hero {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-soft) 100%);
  color: #fff;
  padding: 140px 4vw 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url('/assets/hero-villa-shield.jpg');
  background-size: cover;
  background-position: right center;
  opacity: 0.1;
}
.page-hero-inner {
  max-width: 1080px; margin: 0 auto;
  position: relative; z-index: 2;
}
.page-hero-tag {
  display: inline-block;
  background: rgba(232,212,168,0.18);
  color: var(--sand-glow);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  padding: 8px 16px;
  text-transform: uppercase;
  border-radius: 4px;
  margin-bottom: 24px;
}
.page-hero-title {
  font-family: var(--display);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 500;
  line-height: 1.05;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}
.page-hero-sub {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
  max-width: 640px;
}

/* Expert page sections */
.expert-section {
  background: var(--warm-white);
  padding: 80px 4vw;
}
.expert-inner { max-width: 1080px; margin: 0 auto; }
.expert-block {
  margin-bottom: 56px;
}
.expert-block:last-child { margin-bottom: 0; }
.expert-block h2 {
  font-family: var(--display);
  font-size: clamp(28px, 3.6vw, 44px);
  color: var(--navy);
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
.expert-block p, .expert-block li {
  font-size: 16px;
  line-height: 1.85;
  color: #2D3748;
}
.expert-block p { margin-bottom: 16px; }
.expert-block ul {
  list-style: none;
  padding: 0;
  margin: 24px 0;
}
.expert-block ul li {
  padding: 12px 0 12px 36px;
  position: relative;
  border-bottom: 1px solid rgba(214,195,163,0.3);
}
.expert-block ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 14px;
  width: 22px; height: 22px;
  background: var(--sand-glow);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230A1F44' stroke-width='3' stroke-linecap='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 14px;
  background-position: center;
  background-repeat: no-repeat;
}
.expert-block strong { color: var(--navy); font-weight: 600; }

.investment-card {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%);
  color: #fff;
  padding: 48px 40px;
  border-radius: 8px;
  margin: 40px 0;
  position: relative;
  overflow: hidden;
}
.investment-card::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(214,195,163,0.22), transparent 70%);
  border-radius: 50%;
}
.investment-tag {
  font-size: 11px;
  letter-spacing: 0.24em;
  color: var(--sand);
  margin-bottom: 12px;
  text-transform: uppercase;
  font-weight: 600;
}
.investment-amount {
  font-family: var(--display);
  font-size: clamp(48px, 7vw, 84px);
  color: var(--sand-glow);
  font-weight: 600;
  line-height: 1;
  margin-bottom: 16px;
}
.investment-note {
  font-size: 16px;
  color: rgba(255,255,255,0.78);
  line-height: 1.6;
  margin-bottom: 20px;
}
.investment-highlight {
  background: rgba(232,212,168,0.15);
  border-left: 4px solid var(--sand-glow);
  padding: 18px 24px;
  margin-top: 24px;
  font-size: 15px;
  color: var(--sand-glow);
  font-weight: 500;
  line-height: 1.6;
}

.expert-cta-row {
  display: flex; gap: 16px; flex-wrap: wrap;
  margin-top: 32px;
}

/* ─── BLOG ─── */
.blog-list {
  background: var(--warm-white);
  padding: 96px 4vw;
}
.blog-list-inner { max-width: 1200px; margin: 0 auto; }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.blog-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(10,31,68,0.06);
  transition: all 0.4s;
  cursor: pointer;
  text-decoration: none;
  display: flex; flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(10,31,68,0.14);
}
.blog-card-img {
  aspect-ratio: 16/10;
  background-size: cover;
  background-position: center;
}
.blog-card-content {
  padding: 28px;
  flex: 1;
  display: flex; flex-direction: column;
}
.blog-card-tag {
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--sand-dark);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.blog-card-title {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 12px;
}
.blog-card-excerpt {
  font-size: 14px;
  line-height: 1.65;
  color: #6B7280;
  margin-bottom: 18px;
  flex: 1;
}
.blog-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: var(--sand-dark);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  padding-top: 16px;
  border-top: 1px solid rgba(214,195,163,0.3);
}

/* Blog post */
.blog-post {
  background: var(--warm-white);
  padding: 60px 4vw 96px;
}
.blog-post-inner {
  max-width: 760px; margin: 0 auto;
}
.blog-post-back {
  display: inline-flex; align-items: center; gap: 8px;
  margin-bottom: 32px;
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--sand-dark);
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
}
.blog-post-back:hover { color: var(--navy); }
.blog-post-tag {
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--sand-dark);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.blog-post-title {
  font-family: var(--display);
  font-size: clamp(32px, 5vw, 56px);
  color: var(--navy);
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}
.blog-post-meta {
  font-size: 13px;
  color: var(--sand-dark);
  margin-bottom: 32px;
  display: flex;
  gap: 16px;
  align-items: center;
}
.blog-post-hero {
  aspect-ratio: 16/9;
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  margin-bottom: 40px;
}
.blog-post-content {
  font-size: 17px;
  line-height: 1.8;
  color: #2D3748;
}
.blog-post-content h2 {
  font-family: var(--display);
  font-size: clamp(26px, 3.4vw, 36px);
  color: var(--navy);
  font-weight: 500;
  margin: 40px 0 16px;
  line-height: 1.15;
}
.blog-post-content h3 {
  font-family: var(--body);
  font-size: 18px;
  color: var(--navy);
  font-weight: 700;
  margin: 28px 0 12px;
  letter-spacing: 0.02em;
}
.blog-post-content p { margin-bottom: 18px; }
.blog-post-content strong { color: var(--navy); font-weight: 600; }
.blog-post-content em { color: var(--navy-soft); font-style: italic; }
.blog-post-content ul, .blog-post-content ol {
  margin: 18px 0 24px 24px;
}
.blog-post-content li {
  margin-bottom: 10px;
  line-height: 1.7;
}
.blog-post-content blockquote {
  border-left: 4px solid var(--sand-dark);
  padding: 16px 24px;
  margin: 28px 0;
  background: var(--sand-light);
  font-family: var(--display);
  font-size: 19px;
  font-style: italic;
  color: var(--navy);
  border-radius: 0 4px 4px 0;
}
.blog-post-cta {
  background: linear-gradient(135deg, var(--navy), var(--navy-soft));
  color: #fff;
  padding: 36px 32px;
  border-radius: 8px;
  margin: 40px 0;
  text-align: center;
}
.blog-post-cta h3 {
  font-family: var(--display);
  font-size: 26px;
  color: #fff;
  font-weight: 500;
  margin-bottom: 10px;
}
.blog-post-cta p {
  color: rgba(255,255,255,0.85);
  font-size: 15px;
  margin-bottom: 24px;
}

/* ─── HOW (steps row) ─── */
.how {
  background: var(--navy);
  color: #fff;
  padding: 64px 4vw;
  position: relative; overflow: hidden;
}
.how-inner {
  max-width: 1480px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2.4fr auto;
  gap: 36px; align-items: center;
}
.how-title-block { max-width: 280px; }
.how-tag {
  font-size: 11px; letter-spacing: 0.28em;
  color: var(--sand); margin-bottom: 14px;
  text-transform: uppercase; font-weight: 600;
}
.how-title {
  font-family: var(--display);
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 500; line-height: 1.05;
}
.steps-row {
  display: grid; grid-template-columns: repeat(7, 1fr);
  gap: 6px; align-items: start;
  position: relative;
}
.steps-row::before {
  content: '';
  position: absolute;
  top: 30px; left: 7%; right: 7%;
  height: 1px;
  border-top: 1.5px dotted rgba(214,195,163,0.5);
  z-index: 0;
}
.step { text-align: center; position: relative; z-index: 2; }
.step-circle {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--sand);
  color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 12px;
  box-shadow: 0 6px 18px rgba(214,195,163,0.25);
  transition: transform 0.3s; cursor: pointer;
}
.step-circle:hover { transform: translateY(-4px); background: var(--sand-glow); }
.step-num-below { color: var(--sand); font-size: 12px; font-weight: 600; margin-bottom: 4px; }
.step-label { font-size: 11px; color: rgba(255,255,255,0.78); line-height: 1.4; font-weight: 500; max-width: 100px; margin: 0 auto; }
.how-cta-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(214,195,163,0.25);
  padding: 22px 26px;
  min-width: 220px;
}
.how-cta-card-title { font-family: var(--display); font-size: 20px; margin-bottom: 8px; line-height: 1.2; }
.how-cta-card-link {
  color: var(--sand);
  font-size: 11px; letter-spacing: 0.18em; font-weight: 700;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  text-transform: uppercase;
  cursor: pointer;
}

/* ─── QUICK BAR ─── */
.quick-bar {
  background: var(--sand-light);
  padding: 22px 4vw;
}
.quick-bar-inner {
  max-width: 1480px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 20px; align-items: center;
}
.quick-item { display: flex; align-items: center; gap: 12px; }
.quick-icon { color: var(--navy); flex-shrink: 0; }
.quick-label {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--navy); text-transform: uppercase;
  margin-bottom: 2px;
}
.quick-text { font-size: 13px; color: var(--navy-soft); }
.quick-stars {
  display: flex; gap: 1px;
  color: var(--sand-dark);
  font-size: 14px; margin-top: 2px;
}
.quick-badge {
  background: var(--navy);
  color: #fff;
  padding: 12px 18px;
  text-align: center;
  font-size: 10px;
  letter-spacing: 0.14em;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.4;
}

/* ─── FUNNEL MODAL ─── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,31,68,0.85);
  backdrop-filter: blur(10px);
  z-index: 200;
  display: none;
  align-items: center; justify-content: center;
  padding: 16px;
  opacity: 0;
  transition: opacity 0.4s;
}
.modal-overlay.open { display: flex; opacity: 1; }
.modal {
  background: var(--warm-white);
  width: 100%; max-width: 720px;
  max-height: 92vh;
  overflow: hidden;
  display: flex; flex-direction: column;
  transform: translateY(20px);
  transition: transform 0.4s;
  box-shadow: 0 60px 120px rgba(0,0,0,0.4);
  border-radius: 8px;
}
.modal-overlay.open .modal { transform: translateY(0); }
.modal-header {
  background: var(--navy);
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.modal-logo { height: 40px; filter: brightness(0) invert(1); }
.modal-close {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  width: 36px; height: 36px;
  border-radius: 50%;
  font-size: 20px; cursor: pointer;
  display: flex;
  align-items: center; justify-content: center;
  transition: all 0.2s;
}
.modal-close:hover { background: rgba(255,255,255,0.15); transform: rotate(90deg); }
.progress-track {
  background: #fff;
  padding: 18px 24px 14px;
  border-bottom: 1px solid rgba(214,195,163,0.4);
}
.progress-bars { display: grid; grid-template-columns: repeat(7, 1fr); gap: 5px; margin-bottom: 10px; }
.progress-bar { height: 4px; background: var(--sand-light); border-radius: 2px; transition: background 0.3s; }
.progress-bar.done { background: var(--navy); }
.progress-step { font-size: 11px; color: var(--sand-dark); letter-spacing: 0.14em; font-weight: 600; text-transform: uppercase; }
.modal-body { padding: 32px 24px; overflow-y: auto; flex: 1; }
.question-title { font-family: var(--display); font-size: 28px; color: var(--navy); margin-bottom: 8px; font-weight: 600; line-height: 1.15; }
.question-sub { font-size: 13px; color: #6B7280; margin-bottom: 28px; }
.opts-grid { display: grid; gap: 10px; }
.opts-grid.cols-2 { grid-template-columns: 1fr 1fr; }
.opts-grid.cols-1 { grid-template-columns: 1fr; }
.property-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.property-card {
  background: #fff;
  border: 1.5px solid rgba(214,195,163,0.5);
  padding: 24px 16px;
  cursor: pointer;
  text-align: center;
  transition: all 0.2s;
  font-family: var(--body);
  font-size: 13px; font-weight: 600;
  color: var(--navy);
}
.property-card:hover { border-color: var(--sand-dark); background: var(--sand-light); }
.property-card.selected { background: var(--navy); border-color: var(--navy); color: #fff; }
.property-card-icon { margin-bottom: 10px; color: var(--sand-dark); display: flex; justify-content: center; }
.property-card.selected .property-card-icon { color: var(--sand); }
.property-card-label { font-size: 13px; letter-spacing: 0.04em; text-transform: uppercase; font-weight: 700; }
.opt-card {
  background: #fff;
  border: 1.5px solid rgba(214,195,163,0.5);
  padding: 16px 18px;
  cursor: pointer;
  text-align: left;
  transition: all 0.2s;
  display: flex;
  align-items: center; gap: 12px;
  font-family: var(--body);
  font-size: 14px; font-weight: 500;
  color: var(--navy); width: 100%;
}
.opt-card:hover { border-color: var(--sand-dark); background: var(--sand-light); }
.opt-card.selected { background: var(--navy); border-color: var(--navy); color: #fff; }
.opt-checkbox {
  width: 22px; height: 22px;
  border: 2px solid var(--sand-dark);
  border-radius: 4px;
  display: flex;
  align-items: center; justify-content: center;
  flex-shrink: 0;
}
.opt-card.selected .opt-checkbox { background: var(--sand); border-color: var(--sand); color: var(--navy); }
.opt-radio {
  width: 22px; height: 22px;
  border: 2px solid var(--sand-dark);
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
}
.opt-card.selected .opt-radio { border-color: var(--sand); }
.opt-card.selected .opt-radio::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 10px; height: 10px;
  background: var(--sand);
  border-radius: 50%;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-field { display: flex; flex-direction: column; }
.form-field.full { grid-column: 1 / -1; }
.form-label {
  font-size: 11px; letter-spacing: 0.14em;
  color: #6B7280; margin-bottom: 6px;
  font-weight: 600; text-transform: uppercase;
}
.form-input {
  background: #fff;
  border: 1.5px solid rgba(214,195,163,0.5);
  padding: 13px 14px;
  font-size: 16px;
  color: var(--navy);
  font-family: var(--body);
  transition: all 0.2s;
  border-radius: 0;
  -webkit-appearance: none;
}
.form-input:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(10,31,68,0.08);
}
.form-input.textarea { min-height: 100px; resize: vertical; font-family: var(--body); }
.upload-zone {
  border: 2px dashed rgba(214,195,163,0.6);
  background: #fff;
  padding: 40px 24px;
  text-align: center;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s;
  display: block;
}
.upload-zone:hover { border-color: var(--navy); background: var(--sand-light); }
.upload-icon { width: 48px; height: 48px; margin: 0 auto 14px; color: var(--sand-dark); }
.upload-text { font-size: 15px; color: var(--navy); margin-bottom: 5px; font-weight: 500; }
.upload-sub { font-size: 12px; color: var(--sand-dark); }
.modal-footer {
  background: #fff;
  padding: 16px 24px;
  border-top: 1px solid rgba(214,195,163,0.4);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.btn-back {
  background: transparent;
  border: 1.5px solid rgba(214,195,163,0.6);
  color: var(--navy);
  padding: 11px 20px;
  font-size: 11px; letter-spacing: 0.14em;
  font-weight: 700; cursor: pointer;
  text-transform: uppercase;
  transition: all 0.2s;
  display: inline-flex; align-items: center; gap: 6px;
}
.btn-back:hover { background: var(--sand-light); }
.btn-next {
  background: var(--navy);
  color: #fff;
  border: none;
  padding: 13px 28px;
  font-size: 11px; letter-spacing: 0.14em;
  font-weight: 700; cursor: pointer;
  text-transform: uppercase;
  transition: all 0.2s;
  display: inline-flex; align-items: center; gap: 10px;
  margin-left: auto;
}
.btn-next:hover:not(:disabled) { background: var(--navy-soft); }
.btn-next:disabled { background: var(--sand); cursor: not-allowed; color: rgba(10,31,68,0.5); }
.result-wrap { text-align: center; padding: 12px 0; }
.result-check {
  width: 76px; height: 76px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sand-glow), var(--sand-dark));
  margin: 0 auto 20px;
  display: flex;
  align-items: center; justify-content: center;
  color: var(--navy);
  box-shadow: 0 8px 24px rgba(214,195,163,0.4);
  animation: scaleIn 0.5s cubic-bezier(.2,.8,.2,1);
}
@keyframes scaleIn {
  from { transform: scale(0); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.result-title { font-family: var(--display); font-size: 30px; color: var(--navy); margin-bottom: 10px; font-weight: 600; }
.result-price-card {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%);
  color: #fff;
  padding: 32px 28px;
  margin: 28px 0;
  text-align: center;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}
.result-price-card::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(214,195,163,0.22), transparent 70%);
  border-radius: 50%;
}
.result-price-label { font-size: 11px; letter-spacing: 0.24em; color: var(--sand); margin-bottom: 12px; text-transform: uppercase; position: relative; z-index: 2; }
.result-price { font-family: var(--display); font-size: clamp(34px, 5vw, 52px); color: var(--sand-glow); font-weight: 600; line-height: 1; position: relative; z-index: 2; }
.result-disclaimer { font-size: 12px; color: rgba(255,255,255,0.65); margin-top: 16px; position: relative; z-index: 2; line-height: 1.5; }
.result-contact { font-size: 14px; color: #6B7280; margin-bottom: 20px; line-height: 1.6; }

/* ─── RESPONSIVE ADD-ONS ─── */
@media (max-width: 1024px) {
  .trust-inner { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2n) { border-right: none; }
  .trust-item:last-child { grid-column: 1 / -1; }
  .how-inner { grid-template-columns: 1fr; gap: 32px; }
  .steps-row { grid-template-columns: repeat(4, 1fr); gap: 24px; }
  .steps-row::before { display: none; }
  .quick-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .quick-badge { grid-column: 1 / -1; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .problems-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .team-grid, .van-grid { grid-template-columns: 1fr; gap: 36px; }
  .path-cards { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  body { font-size: 15px; }
  .hero { padding-top: 64px; min-height: auto; }
  .hero-inner { flex-direction: column; padding: 20px 5vw 40px; min-height: auto; align-items: stretch; }
  .hero-villa-bg {
    position: relative;
    width: 100%; max-width: none;
    height: 280px;
    right: auto; top: auto;
    transform: none;
    margin-bottom: 24px;
    background-position: center;
  }
  @keyframes heroSlowZoom {
    from { transform: scale(1); }
    to { transform: scale(1.03); }
  }
  .mould-cloud { position: absolute; top: 64px; right: 0; width: 60%; height: 280px; }
  .shield-glow-overlay { top: 64px; right: 0; width: 60%; max-width: none; height: 280px; transform: none; }
  @keyframes shieldGlowPulse {
    0%, 100% { opacity: 0.5; transform: scale(0.92); }
    50% { opacity: 1; transform: scale(1.05); }
  }
  .hero-text { max-width: 100%; }
  .hero-h1 { font-size: 48px; line-height: 0.95; }
  .hero-tag { font-size: 10px; margin-bottom: 14px; }
  .hero-sub { font-size: 11px; margin-bottom: 18px; }
  .hero-body { font-size: 14px; margin-bottom: 24px; }
  .hero-cta-row { flex-direction: column; }
  .hero-cta-row .btn { width: 100%; justify-content: center; padding: 14px; }

  .trust-bar { padding: 0 5vw; }
  .trust-inner { grid-template-columns: 1fr; }
  .trust-item { border-right: none !important; border-bottom: 1px solid rgba(214,195,163,0.4); padding: 22px 0; }
  .trust-item:last-child { border-bottom: none; }

  .how { padding: 56px 5vw; }
  .how-title { font-size: 32px; }
  .steps-row { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .step-circle { width: 54px; height: 54px; }
  .how-cta-card { width: 100%; }

  .quick-bar { padding: 22px 5vw; }
  .quick-bar-inner { grid-template-columns: 1fr; gap: 16px; }
  .quick-badge { width: 100%; }

  .philosophy { padding: 64px 5vw; }
  .analysis-paths { padding: 64px 5vw; }
  .services { padding: 64px 5vw; }
  .problems { padding: 64px 5vw; }
  .ba-section { padding: 64px 5vw; }
  .team-section { padding: 64px 5vw; }
  .van-banner { padding: 64px 5vw; }
  .testimonials { padding: 64px 5vw; }
  .big-cta { padding: 80px 5vw; }
  .expert-section { padding: 56px 5vw; }
  .blog-list { padding: 64px 5vw; }
  .blog-post { padding: 40px 5vw 80px; }

  .path-card { padding: 32px 24px; }
  .services-grid { grid-template-columns: 1fr; gap: 12px; }
  .service-card { aspect-ratio: 16/12; }
  .service-content { padding: 24px; }
  .service-title { font-size: 22px; }
  .service-desc { max-height: none !important; margin-bottom: 10px !important; }
  .problems-grid { grid-template-columns: 1fr; }
  .problem-card { padding: 32px 24px; }
  .ba-wrap { aspect-ratio: 4/3; }
  .ba-handle-circle { width: 44px; height: 44px; }
  .ba-label { font-size: 9px; padding: 6px 12px; }
  .stat-num { font-size: 32px; }
  .stat-label { font-size: 9px; }
  .testimonials-grid { grid-template-columns: 1fr; gap: 18px; }
  .testimonial-card { padding: 32px 24px 28px; }
  .big-cta-title { font-size: 36px; }
  .big-cta-sub { font-size: 15px; }
  .big-cta .btn-gold { padding: 16px 28px; font-size: 11px; width: 100%; justify-content: center; }
  .blog-grid { grid-template-columns: 1fr; }
  .compare-table th, .compare-table td { padding: 12px 14px; font-size: 13px; }
  .investment-amount { font-size: 48px; }
  .investment-card { padding: 32px 24px; }
  .modal { max-height: 100vh; height: 100%; border-radius: 0; max-width: none; }
  .modal-overlay { padding: 0; }
  .modal-body { padding: 24px 20px; }
  .modal-header { padding: 14px 20px; }
  .modal-footer { padding: 14px 20px; }
  .question-title { font-size: 24px; }
  .property-cards { grid-template-columns: 1fr 1fr; }
  .opts-grid.cols-2 { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .page-hero { padding: 100px 5vw 60px; }
  .page-hero-title { font-size: 36px; }
}
@media (max-width: 380px) {
  .hero-h1 { font-size: 40px; }
  .big-cta-title { font-size: 32px; }
  .property-cards { grid-template-columns: 1fr; }
}

/* FOOTER LOGO FIX */
footer.main-footer .footer-logo-img {
  filter: brightness(0) invert(1) !important;
  height: 56px !important;
  width: auto !important;
  margin-bottom: 20px !important;
  opacity: 0.92 !important;
  display: block !important;
}
