/* ═══════════════════════════════════════════
   VÍNCULO DORADO — SILVER DESIGN SYSTEM
   ═══════════════════════════════════════════ */

/* ─── FONTS ─── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400;1,500;1,600&family=Outfit:wght@300;400;500;600;700&display=swap');

/* ─── VARIABLES ─── */
:root {
  --silver-50: #fafafa;
  --silver-100: #f5f5f5;
  --silver-200: #e8e8e8;
  --silver-300: #d4d4d4;
  --silver-400: #a3a3a3;
  --silver-500: #737373;
  --silver-600: #525252;
  --silver-700: #404040;
  --silver-800: #262626;
  --silver-900: #171717;
  --white: #ffffff;
  --warm-white: #fdfcfb;
  --accent: #8b6f4e;
  --accent-light: #b8976a;
  --accent-muted: rgba(139,111,78,0.08);
  --surface: #f9f8f7;
  --green: #2e7d32;
  --green-bg: #e8f5e9;
  --whatsapp: #22c55e;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', 'Helvetica Neue', sans-serif;
  --max-width: 1180px;
  --radius: 14px;
  --radius-sm: 10px;
  --transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font-body); color: var(--silver-800); background: var(--warm-white); line-height: 1.6; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
::selection { background: rgba(139,111,78,0.2); color: var(--silver-900); }

/* ─── LAYOUT ─── */
.vd-container { max-width: var(--max-width); margin: 0 auto; padding: 0 32px; }
.vd-section { padding: 100px 0; }

/* ─── TYPOGRAPHY ─── */
.vd-display { font-family: var(--font-display); letter-spacing: -0.5px; }
.vd-display-xl { font-size: clamp(42px, 4.5vw, 60px); font-weight: 400; line-height: 1.1; }
.vd-display-lg { font-size: 42px; font-weight: 400; line-height: 1.2; }
.vd-display-md { font-size: 38px; font-weight: 400; line-height: 1.2; }
.vd-display-sm { font-size: 30px; font-weight: 500; line-height: 1.3; }
.vd-display em, .vd-display .vd-italic { font-style: italic; font-weight: 600; }
.vd-accent-text { background: linear-gradient(135deg, var(--accent), var(--accent-light)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; font-weight: 600; font-style: italic; }

.vd-section-label {
  display: inline-flex; align-items: center; gap: 12px; margin-bottom: 16px;
}
.vd-section-label::before {
  content: ''; width: 28px; height: 1px; background: var(--accent);
}
.vd-section-label span {
  font-family: var(--font-body); font-size: 11px; font-weight: 700;
  color: var(--accent); text-transform: uppercase; letter-spacing: 2.5px;
}

.vd-body-lg { font-size: 17px; color: var(--silver-500); line-height: 1.8; }
.vd-body { font-size: 15px; color: var(--silver-500); line-height: 1.7; }
.vd-body-sm { font-size: 13px; color: var(--silver-400); }
.vd-label { font-size: 11px; font-weight: 600; color: var(--silver-400); text-transform: uppercase; letter-spacing: 1.5px; }

/* ─── NAV ─── */
.vd-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 22px 0; transition: var(--transition);
  border-bottom: 1px solid transparent;
}
.vd-nav.scrolled {
  padding: 14px 0;
  background: rgba(253,252,251,0.95);
  backdrop-filter: blur(16px) saturate(1.5);
  border-bottom-color: var(--silver-200);
}
.vd-nav-inner { display: flex; justify-content: space-between; align-items: center; }
.vd-nav-logo { display: flex; align-items: center; gap: 12px; }
.vd-nav-logo-icon {
  width: 34px; height: 34px; border-radius: 8px;
  background: linear-gradient(145deg, var(--silver-700), var(--silver-900));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 18px; font-weight: 600; color: var(--silver-200);
}
.vd-nav-logo-text { font-family: var(--font-display); font-size: 19px; font-weight: 600; color: var(--silver-900); }
.vd-nav-links { display: flex; gap: 36px; align-items: center; }
.vd-nav-link {
  font-size: 13px; font-weight: 500; color: var(--silver-500);
  letter-spacing: 0.3px; transition: color 0.2s;
}
.vd-nav-link:hover { color: var(--silver-900); }
.vd-nav-cta {
  font-size: 13px; font-weight: 600; color: var(--white);
  background: var(--silver-900); padding: 10px 24px; border-radius: 8px;
  transition: var(--transition);
}
.vd-nav-cta:hover { background: var(--silver-700); }

/* Mobile nav */
.vd-nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.vd-nav-toggle span { display: block; width: 20px; height: 2px; background: var(--silver-700); margin: 4px 0; transition: var(--transition); }

@media (max-width: 768px) {
  .vd-nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); padding: 24px 32px; border-bottom: 1px solid var(--silver-200); gap: 20px; }
  .vd-nav-links.active { display: flex; }
  .vd-nav-toggle { display: block; }
}

/* ─── HERO ─── */
.vd-hero {
  min-height: 100vh; display: flex; align-items: center; position: relative; overflow: hidden;
  background: linear-gradient(170deg, var(--warm-white) 0%, var(--silver-100) 50%, var(--silver-50) 100%);
}
.vd-hero-circle-1 {
  position: absolute; top: 10%; right: -5%; width: 500px; height: 500px;
  border-radius: 50%; border: 1px solid var(--silver-200); opacity: 0.5;
}
.vd-hero-circle-2 {
  position: absolute; top: 20%; right: 2%; width: 300px; height: 300px;
  border-radius: 50%; border: 1px solid var(--silver-200); opacity: 0.3;
}
.vd-hero-glow {
  position: absolute; bottom: -10%; left: -8%; width: 400px; height: 400px;
  border-radius: 50%; background: rgba(139,111,78,0.06);
}
.vd-hero-grid {
  position: absolute; inset: 0; opacity: 0.2;
  background-image: linear-gradient(var(--silver-200) 1px, transparent 1px), linear-gradient(90deg, var(--silver-200) 1px, transparent 1px);
  background-size: 60px 60px;
}
.vd-hero-inner {
  position: relative; z-index: 2; width: 100%; padding: 160px 0 100px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
@media (max-width: 968px) { .vd-hero-inner { grid-template-columns: 1fr; padding: 140px 0 80px; } }

.vd-hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent-muted); border: 1px solid rgba(139,111,78,0.15);
  border-radius: 100px; padding: 8px 20px; margin-bottom: 24px;
}
.vd-hero-badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
.vd-hero-badge-text { font-size: 11px; font-weight: 700; color: var(--accent); text-transform: uppercase; letter-spacing: 2px; }

.vd-hero-social {
  display: flex; gap: 8px; margin-top: 36px; align-items: center;
}
.vd-hero-social-text { font-size: 13px; color: var(--silver-500); }

/* ─── BUTTONS ─── */
.vd-btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body); font-weight: 600; border-radius: var(--radius-sm);
  transition: var(--transition); cursor: pointer; border: none;
}
.vd-btn-primary {
  font-size: 14px; color: var(--white); background: var(--silver-900);
  padding: 16px 32px; box-shadow: 0 4px 20px rgba(23,23,23,0.15);
}
.vd-btn-primary:hover { background: var(--silver-700); transform: translateY(-1px); }
.vd-btn-secondary {
  font-size: 14px; color: var(--silver-700);
  border: 1.5px solid var(--silver-300); padding: 16px 32px; background: transparent;
}
.vd-btn-secondary:hover { border-color: var(--silver-500); }
.vd-btn-whatsapp {
  font-size: 15px; color: var(--white); background: var(--whatsapp);
  padding: 16px 36px; box-shadow: 0 4px 20px rgba(34,197,94,0.25);
}
.vd-btn-whatsapp:hover { transform: translateY(-1px); box-shadow: 0 6px 24px rgba(34,197,94,0.35); }
.vd-btn-outline {
  font-size: 14px; color: var(--silver-700); padding: 14px 36px;
  border: 1.5px solid var(--silver-300); background: transparent;
}
.vd-btn-outline:hover { border-color: var(--silver-500); }
.vd-btn-group { display: flex; gap: 14px; flex-wrap: wrap; }

/* ─── STATS GRID ─── */
.vd-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 768px) { .vd-stats-grid { grid-template-columns: repeat(2, 1fr); } }
.vd-stat-card {
  border-radius: var(--radius); padding: 28px 24px;
  border: 1px solid var(--silver-200); background: var(--white); transition: var(--transition);
}
.vd-stat-card:first-child { background: var(--silver-900); border: none; }
.vd-stat-card:first-child .vd-stat-number { color: var(--white); }
.vd-stat-card:first-child .vd-stat-label { color: var(--silver-400); }
.vd-stat-icon { font-size: 11px; color: var(--silver-400); letter-spacing: 1px; margin-bottom: 12px; }
.vd-stat-number { font-family: var(--font-display); font-size: 38px; font-weight: 600; color: var(--silver-900); letter-spacing: -1px; margin-bottom: 6px; }
.vd-stat-label { font-size: 12px; font-weight: 500; color: var(--silver-500); line-height: 1.5; }

/* ─── TRUST BAR ─── */
.vd-trust-bar {
  background: var(--white); border-top: 1px solid var(--silver-200);
  border-bottom: 1px solid var(--silver-200); padding: 20px 0;
}
.vd-trust-bar-inner { display: flex; justify-content: center; align-items: center; gap: 48px; flex-wrap: wrap; }
.vd-trust-item { display: flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 500; color: var(--silver-500); }
.vd-trust-check { color: var(--accent); font-size: 14px; }
@media (max-width: 768px) { .vd-trust-bar-inner { gap: 20px; flex-direction: column; } }

/* ─── SEARCH BOX ─── */
.vd-search-box {
  background: var(--white); border-radius: 16px; padding: 32px 36px;
  border: 1px solid var(--silver-200); box-shadow: 0 2px 20px rgba(0,0,0,0.03);
  margin-top: -50px; position: relative; z-index: 10;
}
.vd-search-header { display: flex; justify-content: space-between; align-items: end; margin-bottom: 24px; }
.vd-search-count { font-size: 13px; color: var(--silver-400); }
.vd-search-filters { display: grid; grid-template-columns: 1fr 1fr 1fr auto; gap: 14px; align-items: end; }
@media (max-width: 768px) { .vd-search-filters { grid-template-columns: 1fr; } }

.vd-select-wrapper label { display: block; margin-bottom: 8px; }
.vd-select {
  width: 100%; padding: 16px 42px 16px 18px; border-radius: var(--radius-sm);
  border: 1.5px solid var(--silver-200); font-family: var(--font-body);
  font-size: 14px; font-weight: 500; color: var(--silver-700);
  background: var(--white) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23737373' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E") no-repeat right 16px center;
  appearance: none; outline: none; transition: border-color 0.2s; cursor: pointer;
}
.vd-select:focus { border-color: var(--accent); }
.vd-search-btn {
  padding: 16px 28px; border-radius: var(--radius-sm); border: none;
  background: var(--silver-900); color: var(--white);
  font-family: var(--font-body); font-size: 14px; font-weight: 600;
  cursor: pointer; transition: var(--transition); white-space: nowrap;
}
.vd-search-btn:hover { background: var(--silver-700); }

/* ─── HOGARES GRID ─── */
.vd-hogares-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px;
}
@media (max-width: 968px) { .vd-hogares-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .vd-hogares-grid { grid-template-columns: 1fr; } }

.vd-hogar-card {
  background: var(--white); border-radius: var(--radius);
  border: 1px solid var(--silver-200); overflow: hidden; cursor: pointer;
  transition: var(--transition);
}
.vd-hogar-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.06); border-color: var(--silver-300); }

.vd-hogar-img {
  height: 200px; position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--silver-100), rgba(232,232,232,0.3));
}
.vd-hogar-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.vd-hogar-card:hover .vd-hogar-img img { transform: scale(1.05); }
.vd-hogar-img-placeholder {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 32px; font-weight: 600; color: var(--silver-400);
  background: linear-gradient(135deg, var(--silver-100), var(--silver-50));
}

.vd-hogar-badges { position: absolute; top: 14px; left: 14px; display: flex; gap: 6px; }
.vd-badge {
  font-size: 11px; font-weight: 600; padding: 4px 12px; border-radius: 100px;
  letter-spacing: 0.5px; text-transform: uppercase;
}
.vd-badge-verified { background: var(--green-bg); color: var(--green); border: 1px solid #c8e6c9; }
.vd-badge-type { background: var(--accent-muted); color: var(--accent); border: 1px solid rgba(139,111,78,0.2); }
.vd-badge-default { background: var(--silver-100); color: var(--silver-600); border: 1px solid var(--silver-200); }

.vd-hogar-content { padding: 22px 22px 24px; }
.vd-hogar-header { display: flex; justify-content: space-between; align-items: start; margin-bottom: 6px; }
.vd-hogar-name { font-family: var(--font-display); font-size: 22px; font-weight: 600; color: var(--silver-900); letter-spacing: -0.3px; }
.vd-hogar-rating { font-size: 13px; font-weight: 600; color: var(--accent); display: flex; align-items: center; gap: 3px; }
.vd-hogar-zone { font-size: 13px; color: var(--silver-400); margin-bottom: 4px; }
.vd-hogar-specialty { font-size: 13px; color: var(--silver-500); margin-bottom: 18px; line-height: 1.5; }

.vd-hogar-footer { display: flex; justify-content: space-between; align-items: center; padding-top: 16px; border-top: 1px solid var(--silver-100); }
.vd-hogar-price-label { font-size: 10px; color: var(--silver-400); text-transform: uppercase; letter-spacing: 1px; }
.vd-hogar-price { font-family: var(--font-display); font-size: 22px; font-weight: 600; color: var(--silver-900); letter-spacing: -0.5px; }
.vd-hogar-price-period { font-family: var(--font-body); font-size: 12px; font-weight: 400; color: var(--silver-400); }
.vd-hogar-beds { font-size: 12px; color: var(--silver-400); }

.vd-hogares-more { text-align: center; margin-top: 44px; }

/* ─── DARK SECTION (PROCESO) ─── */
.vd-section-dark {
  background: var(--silver-900); padding: 120px 0; position: relative; overflow: hidden;
}
.vd-section-dark .vd-section-label span { color: var(--accent-light); }
.vd-section-dark .vd-section-label::before { background: var(--accent-light); }
.vd-section-dark .vd-display { color: var(--white); }
.vd-dark-circle-1 {
  position: absolute; top: -50%; right: -20%; width: 800px; height: 800px;
  border-radius: 50%; border: 1px solid rgba(255,255,255,0.04);
}
.vd-dark-circle-2 {
  position: absolute; bottom: -30%; left: -10%; width: 500px; height: 500px;
  border-radius: 50%; border: 1px solid rgba(255,255,255,0.03);
}

.vd-process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 968px) { .vd-process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .vd-process-grid { grid-template-columns: 1fr; } }

.vd-process-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius); padding: 32px 26px; transition: var(--transition);
}
.vd-process-card:hover { background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.1); }
.vd-process-step { font-family: var(--font-display); font-size: 13px; font-weight: 600; color: var(--accent-light); letter-spacing: 2px; margin-bottom: 20px; }
.vd-process-title { font-family: var(--font-display); font-size: 26px; font-weight: 500; color: var(--white); margin-bottom: 12px; letter-spacing: -0.3px; }
.vd-process-desc { font-size: 14px; color: rgba(255,255,255,0.45); line-height: 1.8; }

/* ─── DIFERENCIADORES ─── */
.vd-diff-layout { display: grid; grid-template-columns: 1fr 2fr; gap: 80px; }
@media (max-width: 968px) { .vd-diff-layout { grid-template-columns: 1fr; gap: 40px; } }
.vd-diff-sticky { position: sticky; top: 120px; align-self: start; }
.vd-diff-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) { .vd-diff-grid { grid-template-columns: 1fr; } }

.vd-diff-card {
  background: var(--white); border-radius: var(--radius); padding: 28px 26px;
  border: 1px solid var(--silver-200); transition: var(--transition);
}
.vd-diff-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.05); }
.vd-diff-num { font-family: var(--font-display); font-size: 28px; font-weight: 300; color: var(--accent); margin-bottom: 14px; letter-spacing: -0.5px; }
.vd-diff-title { font-size: 16px; font-weight: 600; color: var(--silver-800); margin-bottom: 8px; }
.vd-diff-desc { font-size: 14px; color: var(--silver-400); line-height: 1.7; }

/* ─── TESTIMONIOS ─── */
.vd-testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 768px) { .vd-testimonials-grid { grid-template-columns: 1fr; } }

.vd-testimonial-card {
  background: var(--white); border-radius: var(--radius); padding: 36px 30px;
  border: 1px solid var(--silver-200); display: flex; flex-direction: column; justify-content: space-between;
}
.vd-testimonial-stars { display: flex; gap: 2px; margin-bottom: 20px; color: var(--accent); font-size: 14px; }
.vd-testimonial-text { font-size: 15px; color: var(--silver-600); line-height: 1.8; margin-bottom: 28px; font-style: italic; }
.vd-testimonial-author { display: flex; align-items: center; gap: 14px; padding-top: 20px; border-top: 1px solid var(--silver-100); }
.vd-testimonial-avatar {
  width: 40px; height: 40px; border-radius: var(--radius-sm); background: var(--silver-100);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 17px; font-weight: 600; color: var(--silver-600);
}
.vd-testimonial-name { font-size: 14px; font-weight: 600; color: var(--silver-800); }
.vd-testimonial-relation { font-size: 12px; color: var(--silver-400); }

/* ─── FAQ ─── */
.vd-faq-wrapper { max-width: 680px; margin: 0 auto; }
.vd-faq-item { padding: 24px 0; border-bottom: 1px solid var(--silver-200); cursor: pointer; }
.vd-faq-question { display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.vd-faq-question-text { font-size: 16px; font-weight: 500; color: var(--silver-800); line-height: 1.5; }
.vd-faq-toggle {
  width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0;
  border: 1.5px solid var(--silver-300); display: flex; align-items: center; justify-content: center;
  transition: var(--transition); font-size: 16px; font-weight: 300; color: var(--silver-400);
}
.vd-faq-item.active .vd-faq-toggle { border-color: var(--accent); color: var(--accent); transform: rotate(45deg); }
.vd-faq-answer {
  max-height: 0; overflow: hidden; transition: max-height 0.4s ease, opacity 0.3s; opacity: 0;
}
.vd-faq-item.active .vd-faq-answer { max-height: 300px; opacity: 1; }
.vd-faq-answer p { font-size: 15px; color: var(--silver-500); line-height: 1.8; margin-top: 14px; padding-right: 50px; }

/* ─── CTA SECTION ─── */
.vd-cta-section { background: var(--silver-100); border-top: 1px solid var(--silver-200); padding: 100px 0; }
.vd-cta-inner { max-width: 700px; margin: 0 auto; text-align: center; }

/* ─── FOOTER ─── */
.vd-footer { background: var(--silver-900); padding: 60px 0 30px; }
.vd-footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 50px; }
@media (max-width: 768px) { .vd-footer-grid { grid-template-columns: 1fr 1fr; } }
.vd-footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.vd-footer-logo-icon {
  width: 30px; height: 30px; border-radius: 7px; background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 15px; font-weight: 600; color: var(--silver-300);
}
.vd-footer-logo-text { font-family: var(--font-display); font-size: 17px; font-weight: 600; color: var(--silver-200); }
.vd-footer-desc { font-size: 14px; color: rgba(255,255,255,0.35); line-height: 1.8; max-width: 280px; }
.vd-footer-heading { font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 18px; }
.vd-footer-link { font-size: 14px; color: rgba(255,255,255,0.35); display: block; margin-bottom: 10px; transition: color 0.2s; }
.vd-footer-link:hover { color: rgba(255,255,255,0.7); }
.vd-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
}
.vd-footer-copy { font-size: 12px; color: rgba(255,255,255,0.2); }
.vd-footer-legal { display: flex; gap: 20px; }
.vd-footer-legal a { font-size: 12px; color: rgba(255,255,255,0.2); }

/* ─── FLOATING WHATSAPP ─── */
.vd-whatsapp-float {
  position: fixed; bottom: 28px; right: 28px; width: 56px; height: 56px;
  border-radius: var(--radius); background: var(--whatsapp);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; z-index: 999; box-shadow: 0 6px 24px rgba(34,197,94,0.3);
  transition: var(--transition);
}
.vd-whatsapp-float:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(34,197,94,0.4); }

/* ─── SINGLE HOGAR PAGE ─── */
.vd-single-hero { padding: 140px 0 60px; background: var(--silver-50); border-bottom: 1px solid var(--silver-200); }
.vd-single-gallery { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 8px; border-radius: var(--radius); overflow: hidden; margin-top: 32px; max-height: 420px; }
.vd-single-gallery img { width: 100%; height: 100%; object-fit: cover; }
.vd-single-gallery-side { display: grid; grid-template-rows: 1fr 1fr; gap: 8px; }

.vd-single-content { padding: 60px 0; }
.vd-single-layout { display: grid; grid-template-columns: 2fr 1fr; gap: 48px; }
@media (max-width: 768px) { .vd-single-layout { grid-template-columns: 1fr; } }

.vd-single-sidebar {
  position: sticky; top: 100px; align-self: start;
  background: var(--white); border-radius: var(--radius); padding: 32px;
  border: 1px solid var(--silver-200); box-shadow: 0 2px 20px rgba(0,0,0,0.03);
}
.vd-single-price { font-family: var(--font-display); font-size: 32px; font-weight: 600; color: var(--silver-900); margin-bottom: 4px; }
.vd-single-services { list-style: none; padding: 0; margin: 20px 0; }
.vd-single-services li { padding: 10px 0; border-bottom: 1px solid var(--silver-100); font-size: 14px; color: var(--silver-600); display: flex; align-items: center; gap: 10px; }
.vd-single-services li::before { content: '✓'; color: var(--green); font-weight: 700; }

/* ─── ANIMATIONS ─── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.vd-fade-up { animation: fadeUp 0.8s ease forwards; }
.vd-fade-up-d1 { animation: fadeUp 0.8s ease 0.1s forwards; opacity: 0; }
.vd-fade-up-d2 { animation: fadeUp 0.8s ease 0.2s forwards; opacity: 0; }
.vd-fade-up-d3 { animation: fadeUp 0.8s ease 0.3s forwards; opacity: 0; }
.vd-fade-up-d4 { animation: fadeUp 0.8s ease 0.4s forwards; opacity: 0; }

/* ─── UTILITIES ─── */
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.mb-6 { margin-bottom: 48px; }
.mb-8 { margin-bottom: 64px; }
.mt-4 { margin-top: 32px; }
.mt-6 { margin-top: 48px; }
.mt-8 { margin-top: 64px; }
.bg-surface { background: var(--surface); }
.bg-silver-100 { background: var(--silver-100); }
.border-top { border-top: 1px solid var(--silver-200); }
