/* ============================================
   SHUBH VEDA v8 - Production Stylesheet
   Apple-inspired Luxury · Brand #812B2C
   Optimized for performance + responsiveness
   ============================================ */

:root {
  --ink: #0a0a0a;
  --graphite: #1d1d1f;
  --slate: #5e5e63;
  --slate-light: #86868b;
  --mist: #f5f5f7;
  --bone: #fbfbfd;
  --line: rgba(0, 0, 0, 0.08);

  /* Brand */
  --brand: #812B2C;
  --brand-dark: #5e1f20;
  --brand-light: #a8444a;
  --brand-soft: rgba(129, 43, 44, 0.08);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
}

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bone);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "kern", "liga", "calt";
  padding-bottom: 80px;
  overflow-x: hidden;
  font-weight: 400;
}

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

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

button { font-family: inherit; cursor: pointer; }

/* ---------- Typography Classes ---------- */
.font-display {
  font-family: 'Source Serif 4', Georgia, serif;
  font-variation-settings: "opsz" 60;
  letter-spacing: -0.025em;
  font-weight: 500;
}
.font-display-light {
  font-family: 'Source Serif 4', Georgia, serif;
  font-variation-settings: "opsz" 60;
  letter-spacing: -0.035em;
  font-weight: 400;
}

.h-hero {
  font-family: 'Source Serif 4', Georgia, serif;
  font-variation-settings: "opsz" 60;
  letter-spacing: -0.035em;
  font-weight: 500;
  line-height: 0.98;
  font-size: clamp(44px, 8vw, 104px);
}

.h-section {
  font-family: 'Source Serif 4', Georgia, serif;
  font-variation-settings: "opsz" 60;
  letter-spacing: -0.03em;
  font-weight: 500;
  line-height: 1.04;
  font-size: clamp(36px, 5.5vw, 68px);
  color: var(--ink);
}

.h-card {
  font-family: 'Source Serif 4', Georgia, serif;
  font-variation-settings: "opsz" 60;
  letter-spacing: -0.02em;
  font-weight: 600;
  line-height: 1.18;
}

.lead {
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.62;
  color: rgba(29, 29, 31, 0.82);
  font-weight: 400;
}

.eyebrow {
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brand);
  font-weight: 600;
  margin-bottom: 1.1rem;
  display: block;
}

/* Dual eyebrow pills (Ram Mandir · Aangan) */
.dual-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.5rem;
}
.dual-eyebrow .de-pill {
  display: inline-block;
  padding: 0.35rem 0.95rem;
  background: rgba(168, 68, 74, 0.18);
  border: 1px solid rgba(168, 68, 74, 0.35);
  border-radius: 9999px;
  font-size: 11.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brand-light);
  font-weight: 600;
}
.dual-eyebrow .de-sep {
  color: rgba(168, 68, 74, 0.55);
  font-weight: 400;
}

/* ---------- Reveal Animations (optimized for FPS) ---------- */
.reveal {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  transition:
    opacity 0.7s var(--ease-out),
    transform 0.7s var(--ease-out);
  will-change: opacity, transform;
}
.reveal.in {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  will-change: auto;
}
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Buttons (refined, tactile, segmented) ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.75rem;
  border-radius: 9999px;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: -0.005em;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), box-shadow 0.25s var(--ease), color 0.25s var(--ease);
  white-space: nowrap;
  border: 1px solid transparent;
  text-decoration: none;
}

.btn-brand {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
  box-shadow: 0 4px 14px -4px rgba(129, 43, 44, 0.35);
}
.btn-brand:hover {
  background: var(--brand-dark);
  transform: translateY(-1px);
  box-shadow: 0 12px 28px -8px rgba(129, 43, 44, 0.5);
}

.btn-ink {
  background: var(--ink);
  color: var(--bone);
  border-color: var(--ink);
}
.btn-ink:hover {
  background: var(--graphite);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: rgba(10, 10, 10, 0.18);
}
.btn-ghost:hover {
  border-color: var(--ink);
  background: rgba(10, 10, 10, 0.03);
}

.btn-outline-light {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border-color: rgba(255,255,255,0.25);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.16);
  border-color: rgba(255,255,255,0.5);
}

.btn-sm { padding: 0.7rem 1.3rem; font-size: 13.5px; }
.btn-block { width: 100%; }

/* ============================================
   HEADER: Logo bar + Segmented sticky action bar
   ============================================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 60;
  background: rgba(251, 251, 253, 0.85);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--line);
}

.header-row {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.25rem;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  font-family: 'Source Serif 4', Georgia, serif;
  font-variation-settings: "opsz" 60;
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -0.025em;
  color: var(--ink);
  flex-shrink: 0;
}
.logo .dot { color: var(--brand); }

.header-cta {
  flex-shrink: 0;
  padding: 0.65rem 1.2rem;
  background: var(--brand);
  color: #fff;
  border-radius: 9999px;
  font-size: 13.5px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  transition: background 0.25s var(--ease), transform 0.25s var(--ease);
  white-space: nowrap;
}
.header-cta:hover {
  background: var(--brand-dark);
  transform: translateY(-1px);
}
.header-cta svg {
  flex-shrink: 0;
}

@media (max-width: 520px) {
  .header-cta {
    padding: 0.55rem 0.9rem;
    gap: 0.35rem;
    font-size: 12px;
  }
  .header-cta svg { width: 13px; height: 13px; }
}

/* Segmented sticky action bar - Premium glassmorphism with brand tint */
.action-bar-wrap {
  position: fixed;
  top: 68px;
  left: 0; right: 0;
  z-index: 55;
  background: linear-gradient(180deg, rgba(251, 251, 253, 0.88) 0%, rgba(251, 251, 253, 0.78) 100%);
  backdrop-filter: saturate(180%) blur(22px);
  -webkit-backdrop-filter: saturate(180%) blur(22px);
  border-bottom: 1px solid rgba(129, 43, 44, 0.08);
  box-shadow: 0 1px 0 rgba(129, 43, 44, 0.04);
}

.action-bar {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0.55rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0;
  overflow-x: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.action-bar::-webkit-scrollbar { display: none; }

.action-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 1rem;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--graphite);
  white-space: nowrap;
  position: relative;
  transition: color 0.25s ease, background 0.3s ease;
  border-radius: 10px;
  overflow: hidden;
}
.action-chip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg,
    transparent 30%,
    rgba(129, 43, 44, 0.08) 50%,
    transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.6s var(--ease);
  pointer-events: none;
}
.action-chip:hover {
  color: var(--brand);
  background: rgba(129, 43, 44, 0.06);
}
.action-chip:hover::before {
  transform: translateX(100%);
}
.action-chip + .action-chip::after {
  content: '';
  position: absolute;
  left: -1px;
  top: 28%;
  bottom: 28%;
  width: 1px;
  background: rgba(129, 43, 44, 0.12);
}

@media (max-width: 768px) {
  .header-row { height: 60px; padding: 0 1rem; }
  .logo { font-size: 22px; }
  .header-cta { padding: 0.55rem 1.1rem; font-size: 13px; }
  .action-bar-wrap { top: 60px; }
  .action-bar { padding: 0.4rem 0.5rem; }
  .action-chip { padding: 0.45rem 0.75rem; font-size: 12.5px; }
}

/* Page offset for fixed header + action bar */
.page-offset {
  padding-top: 116px; /* 68 + ~48 */
}
@media (max-width: 768px) {
  .page-offset { padding-top: 104px; }
}

/* ============================================
   FLOATING WHATSAPP - Premium icon button
   ============================================ */
.wa-float {
  position: fixed;
  bottom: 96px;
  right: 18px;
  z-index: 50;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 28px -8px rgba(37, 211, 102, 0.55), 0 2px 8px rgba(0,0,0,0.12);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.wa-float:hover {
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 16px 36px -8px rgba(37, 211, 102, 0.65), 0 2px 8px rgba(0,0,0,0.15);
}
.wa-float svg {
  display: block;
  width: 32px;
  height: 32px;
}

@media (min-width: 768px) {
  .wa-float { bottom: 108px; right: 28px; width: 64px; height: 64px; }
  .wa-float svg { width: 34px; height: 34px; }
}

/* ============================================
   STICKY FOOTER (Call / Enquire / WhatsApp)
   ============================================ */
.sticky-footer {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 55;
  background: rgba(251, 251, 253, 0.92);
  backdrop-filter: saturate(180%) blur(22px);
  -webkit-backdrop-filter: saturate(180%) blur(22px);
  border-top: 1px solid var(--line);
  padding: 0.55rem 0.75rem max(0.55rem, env(safe-area-inset-bottom));
  box-shadow: 0 -8px 24px -12px rgba(0, 0, 0, 0.08);
}

.sf-grid {
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.4rem;
}

.sf-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.75rem 0.5rem;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 500;
  transition: background 0.2s ease, transform 0.2s ease, color 0.2s ease;
  text-align: center;
  line-height: 1;
  border: 1px solid transparent;
  text-decoration: none;
}
.sf-btn .ic { width: 18px; height: 18px; flex-shrink: 0; display: block; }
.sf-btn.sf-wa .ic { width: 20px; height: 20px; }

.sf-call {
  color: var(--ink);
  background: rgba(0,0,0,0.04);
  border-color: rgba(0,0,0,0.06);
}
.sf-call:hover { background: rgba(0,0,0,0.08); }

.sf-enquire {
  color: #fff;
  background: var(--brand);
  border-color: var(--brand);
}
.sf-enquire:hover { background: var(--brand-dark); }

.sf-wa {
  color: #fff;
  background: #25D366;
  border-color: #25D366;
}
.sf-wa:hover { background: #1ebe5a; transform: translateY(-1px); }

@media (min-width: 768px) {
  .sf-grid { gap: 0.55rem; max-width: 800px; }
  .sf-btn { padding: 0.9rem 1rem; font-size: 14px; }
  .sf-btn .ic { width: 20px; height: 20px; }
}

/* ============================================
   HERO (Full background image)
   ============================================ */
.hero {
  position: relative;
  min-height: calc(100svh - 116px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.35) 40%, rgba(0,0,0,0.7) 100%),
    radial-gradient(ellipse at center, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.4) 100%);
}
.hero-inner {
  position: relative;
  max-width: 1100px;
  width: 100%;
  padding: 4rem 1.5rem;
  text-align: center;
  color: #fff;
}

.hero h1 {
  font-family: 'Source Serif 4', Georgia, serif;
  font-variation-settings: "opsz" 60;
  font-weight: 500;
  font-size: clamp(48px, 8.5vw, 112px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  margin: 0;
  color: #ffffff;
  text-shadow: 0 2px 24px rgba(0,0,0,0.55), 0 1px 3px rgba(0,0,0,0.4);
}
.hero h1 em {
  font-style: italic;
  font-weight: 500;
  color: #f3d8da;
}

.hero-lead {
  margin: 1.5rem auto 0;
  max-width: 620px;
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.6;
  color: rgba(255,255,255,0.95);
  font-weight: 500;
  text-shadow: 0 1px 8px rgba(0,0,0,0.4);
}

.hero-eyebrow {
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #f3d8da;
  font-weight: 600;
  margin-bottom: 1.5rem;
  display: inline-block;
  text-shadow: 0 1px 8px rgba(0,0,0,0.4);
}

/* Hero pricing pill - premium reveal */
.hero-price-pill {
  display: inline-flex;
  align-items: baseline;
  gap: 0.65rem;
  margin: 1.85rem auto 0;
  padding: 0.55rem 1.25rem 0.55rem 1.1rem;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(14px) saturate(180%);
  -webkit-backdrop-filter: blur(14px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 9999px;
  box-shadow: 0 8px 28px -10px rgba(0,0,0,0.4);
}
.hpp-label {
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
  font-weight: 600;
}
.hpp-amount {
  font-family: 'Source Serif 4', Georgia, serif;
  font-variation-settings: "opsz" 60;
  font-size: 19px;
  font-weight: 500;
  color: #ffffff;
  letter-spacing: -0.015em;
}
.hpp-asterisk {
  color: rgba(255,255,255,0.55);
  font-size: 13px;
  margin-left: 1px;
}

.hero-ctas {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.hero-stats {
  margin-top: 3.5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem 2rem;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.hero-stat .n {
  font-family: 'Source Serif 4', Georgia, serif;
  font-variation-settings: "opsz" 60;
  font-weight: 500;
  font-size: clamp(28px, 4.5vw, 44px);
  line-height: 1;
  color: #fff;
  letter-spacing: -0.03em;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
.hero-stat .n .plus { color: #f3d8da; }
.hero-stat .l {
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
  margin-top: 0.4rem;
  font-weight: 600;
}

@media (min-width: 768px) {
  .hero-stats { grid-template-columns: repeat(4, 1fr); gap: 2rem; }
}

/* Mobile-specific hero adjustments to prevent cropping */
@media (max-width: 768px) {
  .hero {
    min-height: calc(100svh - 104px);
  }
  .hero-bg img {
    object-position: 65% center;
  }
  .hero h1 {
    font-size: clamp(40px, 12vw, 64px);
    letter-spacing: -0.03em;
  }
  .hero-inner {
    padding: 2.5rem 1.25rem;
  }
  .hero-lead {
    font-size: 15px;
    margin-top: 1.25rem;
  }
  .hero-stats {
    margin-top: 2.5rem;
    gap: 1.25rem 1.5rem;
  }
}

/* ============================================
   SECTIONS
   ============================================ */
.section { padding: 5rem 1.25rem; }
.section-lg { padding: 7rem 1.25rem; }
.section-tight { padding: 3.5rem 1.25rem; }
.bg-mist { background: var(--mist); }
.bg-bone { background: var(--bone); }
.bg-ink { background: var(--ink); color: var(--bone); }

@media (min-width: 768px) {
  .section { padding: 7rem 2rem; }
  .section-lg { padding: 9rem 2rem; }
  .section-tight { padding: 5rem 2rem; }
}

.container {
  max-width: 1240px;
  margin: 0 auto;
}
.container-narrow {
  max-width: 860px;
  margin: 0 auto;
}
.container-wide {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 1rem;
}

.section-head {
  text-align: center;
  margin-bottom: 3.5rem;
}
@media (min-width: 768px) {
  .section-head { margin-bottom: 4.5rem; }
}

/* ============================================
   STATS RIBBON (inline)
   ============================================ */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem 1rem;
}
@media (min-width: 768px) {
  .stat-grid { grid-template-columns: repeat(5, 1fr); gap: 1rem; }
}
.stat-item { text-align: center; }
.stat-item .n {
  font-family: 'Source Serif 4', Georgia, serif;
  font-variation-settings: "opsz" 60;
  font-weight: 400;
  font-size: clamp(40px, 5.5vw, 64px);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.stat-item .n .plus { color: var(--brand); }
.stat-item .n .pct { font-size: 0.65em; color: var(--slate-light); }
.stat-item .l {
  margin-top: 0.6rem;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--slate-light);
  font-weight: 500;
}

/* ============================================
   PRICING CARDS
   ============================================ */
.price-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 600px) { .price-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .price-grid { grid-template-columns: repeat(4, 1fr); } }

.price-card {
  background: var(--bone);
  border-radius: 22px;
  padding: 1.75rem;
  border: 1px solid var(--line);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}
.price-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.price-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px -16px rgba(0, 0, 0, 0.12);
  border-color: rgba(129, 43, 44, 0.15);
}
.price-card:hover::before { transform: scaleX(1); }

.pc-type { font-size: 11.5px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--slate-light); font-weight: 600; }
.pc-type.signature { color: var(--brand); }
.pc-size {
  font-family: 'Source Serif 4', Georgia, serif;
  font-variation-settings: "opsz" 60;
  font-weight: 400;
  font-size: 48px;
  line-height: 1;
  margin-top: 0.6rem;
  letter-spacing: -0.025em;
}
.pc-size .u { font-size: 17px; color: var(--slate-light); margin-left: 4px; font-weight: 400; }
.pc-sub { font-size: 12.5px; color: var(--slate-light); margin-top: 0.3rem; }
.pc-divider { height: 1px; background: var(--line); margin: 1.3rem 0; }
.pc-starts { font-size: 11.5px; color: var(--slate-light); letter-spacing: 0.15em; text-transform: uppercase; font-weight: 600; }
.pc-price {
  font-family: 'Source Serif 4', Georgia, serif;
  font-variation-settings: "opsz" 60;
  font-weight: 400;
  font-size: 30px;
  margin-top: 0.25rem;
  letter-spacing: -0.02em;
}
.pc-price .u { color: var(--slate-light); font-weight: 400; }
.pc-por {
  font-family: 'Source Serif 4', Georgia, serif;
  font-variation-settings: "opsz" 60;
  font-weight: 400;
  font-size: 22px;
  margin-top: 0.25rem;
  color: var(--graphite);
}

.signature-card {
  background: var(--ink);
  color: var(--bone);
  border-radius: 22px;
  padding: 2.5rem;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: center;
}
@media (min-width: 768px) {
  .signature-card { grid-template-columns: 1.4fr 1fr; gap: 2rem; padding: 3rem; }
}
.signature-card .label { font-size: 11.5px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--brand-light); font-weight: 600; }
.signature-card h3 {
  font-family: 'Source Serif 4', Georgia, serif;
  font-variation-settings: "opsz" 60;
  font-weight: 400;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.04;
  margin: 0.5rem 0 0;
  letter-spacing: -0.025em;
}
.signature-card .area {
  font-family: 'Source Serif 4', Georgia, serif;
  font-variation-settings: "opsz" 60;
  font-weight: 400;
  font-size: clamp(20px, 2.5vw, 28px);
  color: var(--brand-light);
  margin-top: 0.5rem;
}
.signature-card .desc {
  font-size: 15px;
  margin-top: 1.25rem;
  line-height: 1.6;
  color: rgba(251,251,253,0.7);
  max-width: 440px;
}
.signature-card .price-side { display: flex; flex-direction: column; gap: 1rem; }
@media (min-width: 768px) {
  .signature-card .price-side { align-items: flex-end; text-align: right; }
}
.signature-card .price-side .l { font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(251,251,253,0.5); font-weight: 600; }
.signature-card .price-side .p {
  font-family: 'Source Serif 4', Georgia, serif;
  font-variation-settings: "opsz" 60;
  font-weight: 400;
  font-size: clamp(26px, 3.5vw, 38px);
  letter-spacing: -0.025em;
}

/* ============================================
   GATED PREVIEW (Floor plans, cost sheet)
   Blur reduced to ~5px for legibility
   ============================================ */
.gated {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border-radius: 18px;
  background: var(--mist);
}
.gated > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(5px) saturate(1.02);
  transform: scale(1.04);
}
.gated::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(251,251,253,0) 0%, rgba(251,251,253,0.15) 55%, rgba(251,251,253,0.75) 100%);
}
.gated-cta {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 1.25rem;
  z-index: 2;
}

.plan-card {
  background: var(--bone);
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(129, 43, 44, 0.10);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
  position: relative;
}
.plan-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 22px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(129, 43, 44, 0.18) 0%, transparent 50%, rgba(129, 43, 44, 0.06) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
  opacity: 0.6;
  transition: opacity 0.4s var(--ease);
}
.plan-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 48px -20px rgba(129, 43, 44, 0.22);
  border-color: rgba(129, 43, 44, 0.22);
}
.plan-card:hover::before {
  opacity: 1;
}
.plan-card .meta { padding: 1.1rem 1.25rem 1.4rem; position: relative; }
.plan-card .meta .t { font-size: 11.5px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--slate-light); font-weight: 600; }
.plan-card .meta .t.brand { color: var(--brand); }
.plan-card .meta .name {
  font-family: 'Source Serif 4', Georgia, serif;
  font-variation-settings: "opsz" 60;
  font-weight: 500;
  font-size: 21px;
  margin-top: 0.3rem;
  letter-spacing: -0.015em;
}

.plan-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 600px) { .plan-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .plan-grid { grid-template-columns: repeat(3, 1fr); } }

.plan-card-dark {
  background: var(--graphite);
  color: var(--bone);
  border-radius: 22px;
  border: 1px solid var(--line);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  aspect-ratio: auto;
  min-height: 280px;
}
.plan-card-dark .label { font-size: 11.5px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--brand-light); font-weight: 600; }
.plan-card-dark h4 {
  font-family: 'Source Serif 4', Georgia, serif;
  font-variation-settings: "opsz" 60;
  font-weight: 400;
  font-size: 26px;
  line-height: 1.15;
  margin: 0.6rem 0 0.85rem;
  letter-spacing: -0.02em;
}
.plan-card-dark p { font-size: 14px; line-height: 1.6; color: rgba(251,251,253,0.65); margin: 0; }

/* ============================================
   HORIZONTAL CINEMATIC SCROLLER (Gallery + Mandir)
   Next card peeks so users know it's scrollable
   ============================================ */
.h-scroller-wrap {
  position: relative;
}
.h-scroller {
  display: flex;
  gap: 1.1rem;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-padding-left: 1.25rem;
  /* Right padding deliberately small so next card peeks */
  padding: 0 8rem 1.5rem 1.25rem;
  -ms-overflow-style: none;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
}
.h-scroller::-webkit-scrollbar { display: none; }

.h-card {
  /* 78vw mobile so next card peeks ~22vw */
  flex: 0 0 78vw;
  max-width: 440px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
}

@media (min-width: 640px) {
  .h-scroller {
    gap: 1.5rem;
    padding: 0 14rem 2rem 2rem;
    scroll-padding-left: 2rem;
  }
  .h-card {
    flex: 0 0 480px;
    max-width: 480px;
  }
}

@media (min-width: 1024px) {
  .h-scroller {
    padding: 0 22rem 2rem 2rem;
  }
  .h-card {
    flex: 0 0 540px;
    max-width: 540px;
  }
}

.h-card .img-wrap {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--mist);
  box-shadow: 0 10px 32px -14px rgba(0, 0, 0, 0.18);
}
.h-card .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.h-card .caption {
  padding: 1.4rem 0.4rem 0;
}
.h-card .caption .eb {
  font-size: 11.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brand);
  font-weight: 600;
  margin-bottom: 0.55rem;
}
.h-card .caption .tt {
  font-family: 'Source Serif 4', Georgia, serif;
  font-variation-settings: "opsz" 60;
  font-weight: 500;
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.18;
  letter-spacing: -0.018em;
  color: var(--ink);
  margin: 0;
}
.h-card .caption .tt em { font-style: italic; color: var(--brand); }
.h-card .caption .cta-row { margin-top: 1.1rem; }

/* Dark variant for mandir scroller captions */
.h-scroller-dark .h-card .caption .tt { color: var(--bone); }
.h-scroller-dark .h-card .caption .eb { color: var(--brand-light); }

/* Horizontal scroll hint - now with animated arrow, larger and more visible */
.h-scroll-hint {
  text-align: center;
  margin-top: 1.75rem;
  padding: 0 1.5rem;
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--graphite);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  width: 100%;
  justify-content: center;
}
.h-scroll-hint .arrow {
  display: inline-block;
  animation: arrowSlide 1.6s ease-in-out infinite;
  color: var(--brand);
  font-size: 18px;
  font-weight: 400;
}
@keyframes arrowSlide {
  0%, 100% { transform: translateX(0); opacity: 0.65; }
  50%      { transform: translateX(10px); opacity: 1; }
}

/* Dark variant for mandir scroller swipe hint */
.h-scroller-dark + .h-scroll-hint,
.h-scroller-dark ~ .h-scroll-hint {
  color: rgba(251, 251, 253, 0.85);
}

/* ============================================
   CONNECTIVITY GRID
   ============================================ */
.conn-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}
@media (min-width: 768px) {
  .conn-grid { grid-template-columns: repeat(4, 1fr); gap: 1.1rem; }
}
.conn-item {
  background: var(--mist);
  border-radius: 18px;
  padding: 1.4rem 1.5rem;
}
.conn-item .n {
  font-family: 'Source Serif 4', Georgia, serif;
  font-variation-settings: "opsz" 60;
  font-weight: 400;
  font-size: 40px;
  line-height: 1;
  letter-spacing: -0.025em;
}
.conn-item .n .u { font-size: 17px; color: var(--slate-light); font-weight: 400; }
.conn-item .l { font-size: 14px; color: var(--slate); margin-top: 0.7rem; }

/* ============================================
   GOOGLE MAPS
   ============================================ */
.map-frame {
  width: 100%;
  height: 440px;
  border: 0;
  border-radius: 22px;
  display: block;
  filter: contrast(1.04) saturate(0.92);
}
@media (min-width: 768px) { .map-frame { height: 520px; } }

/* ============================================
   VIDEO CONFERENCE CTA
   ============================================ */
.vc-card {
  background: linear-gradient(135deg, #1d1d1f 0%, #2a1a1a 100%);
  color: var(--bone);
  border-radius: 28px;
  padding: 2.5rem 1.75rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) { .vc-card { padding: 4rem 3rem; } }
.vc-card::before {
  content: '';
  position: absolute;
  top: -40%; right: -20%;
  width: 60%; height: 180%;
  background: radial-gradient(closest-side, rgba(129, 43, 44, 0.35), transparent);
  pointer-events: none;
}
.vc-card h3 {
  font-family: 'Source Serif 4', Georgia, serif;
  font-variation-settings: "opsz" 60;
  font-weight: 400;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin: 0.75rem 0;
  position: relative;
}
.vc-card h3 em { font-style: italic; color: var(--brand-light); }
.vc-card .lead-light {
  color: rgba(251,251,253,0.7);
  max-width: 540px;
  margin: 1rem auto 0;
  font-size: 16px;
  line-height: 1.6;
  position: relative;
}
.vc-card .icon-circle {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(129,43,44,0.2);
  border: 1px solid rgba(168,68,74,0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
  position: relative;
}

/* ============================================
   FAQ
   ============================================ */
.faq-item {
  background: var(--bone);
  border-radius: 16px;
  padding: 1.25rem 1.5rem;
  border: 1px solid var(--line);
  transition: border-color 0.3s ease;
}
.faq-item:hover { border-color: rgba(129, 43, 44, 0.15); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .q {
  font-family: 'Source Serif 4', Georgia, serif;
  font-variation-settings: "opsz" 60;
  font-weight: 500;
  font-size: 19px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--slate);
  flex-shrink: 0;
  transition: transform 0.3s var(--ease), color 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}
.faq-item[open] .faq-icon {
  transform: rotate(45deg);
  color: #fff;
  background: var(--brand);
  border-color: var(--brand);
}
.faq-item p {
  margin: 1rem 0 0;
  color: var(--slate);
  font-size: 15.5px;
  line-height: 1.65;
}

@media (min-width: 768px) {
  .faq-item { padding: 1.5rem 1.85rem; }
  .faq-item summary .q { font-size: 21px; }
}

/* ============================================
   RERA + PRE-REGISTER + FOOTER
   ============================================ */
.rera-card {
  background: var(--mist);
  border-radius: 22px;
  padding: 2rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: center;
}
@media (min-width: 768px) {
  .rera-card { grid-template-columns: 2fr 1fr; padding: 2.5rem; }
}
.rera-qr {
  background: var(--bone);
  padding: 1rem;
  border-radius: 16px;
  border: 1px solid var(--line);
  width: fit-content;
  margin: 0 auto;
}
.rera-qr img { width: 140px; height: 140px; object-fit: contain; }
.rera-qr .l { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--slate-light); text-align: center; margin-top: 0.5rem; font-weight: 600; }

.prereg-section {
  background: var(--ink);
  color: var(--bone);
  position: relative;
  overflow: hidden;
}
.prereg-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top, rgba(129,43,44,0.25), transparent 60%);
  pointer-events: none;
}
.prereg-inner {
  position: relative;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.prereg-section h2 { color: var(--bone); }
.prereg-section h2 em { color: var(--brand-light); font-style: italic; }

.form-field { margin-bottom: 1.4rem; text-align: left; }
.form-label {
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(251,251,253,0.55);
  font-weight: 600;
  margin-bottom: 0.4rem;
  display: block;
}
.lux-input {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.22);
  padding: 0.85rem 0;
  font-size: 17px;
  width: 100%;
  color: var(--bone);
  font-family: inherit;
  transition: border-color 0.3s ease;
}
.lux-input:focus { outline: none; border-bottom-color: var(--brand-light); }
.lux-input::placeholder { color: rgba(255,255,255,0.4); }

.footer {
  background: var(--mist);
  padding: 4rem 1.25rem 2.5rem;
  border-top: 1px solid var(--line);
}
.footer-grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; padding: 0 1rem; }
}
.footer .brand-line {
  font-family: 'Source Serif 4', Georgia, serif;
  font-variation-settings: "opsz" 60;
  font-size: 26px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.footer .brand-line .dot { color: var(--brand); }
.footer-disclaimer {
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--line);
  font-size: 12px;
  color: var(--slate-light);
  line-height: 1.7;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   UTILITIES
   ============================================ */
.text-center { text-align: center; }
.text-brand { color: var(--brand); }
.italic { font-style: italic; }
.mt-md { margin-top: 1.5rem; }
.mt-lg { margin-top: 2.5rem; }
.mt-xl { margin-top: 4rem; }
.mb-md { margin-bottom: 1.5rem; }

.flex-row { display: flex; flex-wrap: wrap; gap: 0.75rem; align-items: center; }
.flex-center { display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 0.75rem; }

/* Focus visible */
a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
  border-radius: 6px;
}

/* Avoid heavy effects on prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .hero-bg.parallax-on { transform: none !important; }
}

/* ============================================
   THE SIGNATURE BLOCK (post-gallery, dark editorial)
   ============================================ */
.signature-block {
  position: relative;
  background: linear-gradient(135deg, #0f0e0f 0%, #1a1112 50%, #0f0e0f 100%);
  color: var(--bone);
  border-radius: 26px;
  padding: 2.5rem 1.75rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  border: 1px solid rgba(168, 68, 74, 0.18);
  box-shadow: 0 30px 70px -30px rgba(129, 43, 44, 0.35), 0 1px 0 rgba(255,255,255,0.05) inset;
  overflow: hidden;
}
.signature-block::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -25%;
  width: 60%;
  height: 180%;
  background: radial-gradient(closest-side, rgba(129, 43, 44, 0.32), transparent);
  pointer-events: none;
}
.signature-block::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(168, 68, 74, 0.08), transparent 40%),
    radial-gradient(circle at 80% 20%, rgba(168, 68, 74, 0.05), transparent 50%);
  pointer-events: none;
}

.sig-meta, .sig-price { position: relative; z-index: 1; }

.sig-title {
  font-family: 'Source Serif 4', Georgia, serif;
  font-variation-settings: "opsz" 60;
  font-weight: 500;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin: 0.75rem 0 0;
  color: var(--bone);
}

.sig-spec {
  font-family: 'Source Serif 4', Georgia, serif;
  font-variation-settings: "opsz" 60;
  font-weight: 500;
  font-size: clamp(20px, 2.4vw, 26px);
  color: var(--brand-light);
  margin-top: 0.6rem;
  letter-spacing: -0.015em;
}

.sig-desc {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(251, 251, 253, 0.72);
  margin: 1.25rem 0 0;
  max-width: 460px;
  font-weight: 400;
}

.sig-cred {
  margin-top: 1.5rem;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(168, 68, 74, 0.85);
  font-weight: 600;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(168, 68, 74, 0.18);
  max-width: 280px;
}

.sig-price {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.sig-price-l {
  font-size: 11.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(251, 251, 253, 0.5);
  font-weight: 600;
}
.sig-price-v {
  font-family: 'Source Serif 4', Georgia, serif;
  font-variation-settings: "opsz" 60;
  font-weight: 500;
  font-size: clamp(26px, 3.6vw, 40px);
  letter-spacing: -0.025em;
  color: var(--bone);
}
.sig-ctas {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .signature-block {
    grid-template-columns: 1.5fr 1fr;
    padding: 3.5rem 3rem;
    gap: 3rem;
  }
  .sig-price {
    align-items: flex-end;
    text-align: right;
  }
  .sig-cred {
    margin-left: 0;
  }
}

/* ============================================
   HERO PARALLAX (cinematic scroll reveal)
   ============================================ */
.hero-bg {
  will-change: transform;
}
.hero-bg.parallax-on {
  transition: transform 0.05s linear;
}

/* ============================================
   V5 UPGRADES - Cinematic Luxury Layer
   ============================================ */

/* ----- HERO REFRESH ----- */

/* Large editorial location eyebrow */
.hero-eyebrow.hero-loc-xl {
  font-size: clamp(13px, 1.6vw, 17px);
  letter-spacing: 0.32em;
  font-weight: 700;
  color: #f3d8da;
  margin-bottom: 2rem;
  text-shadow: 0 1px 12px rgba(0,0,0,0.45);
}

/* Hero title block with stacked brand slide-in */
.hero-title {
  font-family: 'Source Serif 4', Georgia, serif;
  font-variation-settings: "opsz" 60;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}

.hero-line {
  font-weight: 500;
  font-size: clamp(40px, 7.2vw, 92px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  color: #ffffff;
  text-shadow: 0 2px 24px rgba(0,0,0,0.55);
}
.hero-line em {
  font-style: italic;
  font-weight: 500;
  color: #f3d8da;
}

/* Cinematic brand slide-in: blur-to-focus + slide up - V6: bolder, larger, brand red */
.hero-brand-slide {
  font-family: 'Source Serif 4', Georgia, serif;
  font-variation-settings: "opsz" 60;
  font-size: clamp(40px, 7vw, 84px);
  font-weight: 700;
  letter-spacing: 0.02em;
  background: linear-gradient(135deg, #d49ea1 0%, #f3d8da 50%, #ffffff 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  text-shadow: 0 4px 32px rgba(129, 43, 44, 0.4);
  display: inline-block;
  opacity: 0;
  filter: blur(14px);
  transform: translateY(18px);
  animation: brandReveal 1.8s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
  margin-top: 0.4rem;
  line-height: 1;
}
.hero-brand-slide .dot {
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
  display: inline-block;
  margin: 0 0.06em;
  font-weight: 400;
  opacity: 0.85;
}
@keyframes brandReveal {
  0%   { opacity: 0; filter: blur(14px); transform: translateY(18px) scale(0.98); }
  60%  { opacity: 1; filter: blur(2px);  transform: translateY(0)    scale(1.005); }
  100% { opacity: 1; filter: blur(0);    transform: translateY(0)    scale(1); }
}

/* Hero bullets - no paragraph */
.hero-bullets {
  list-style: none;
  padding: 0;
  margin: 2.5rem auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem 1.25rem;
  max-width: 720px;
}
.hero-bullets li {
  position: relative;
  padding-left: 1.1rem;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(14px, 1.4vw, 16px);
  font-weight: 500;
  letter-spacing: -0.005em;
  text-shadow: 0 1px 8px rgba(0,0,0,0.4);
}
.hero-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  background: #d49ea1;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(212, 158, 161, 0.6);
}

/* Pure text price (no pill, not clickable looking) */
.hero-price-text {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  margin: 2rem auto 0;
  cursor: default;
}
.hpt-label {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
  font-weight: 600;
}
.hpt-amount {
  font-family: 'Source Serif 4', Georgia, serif;
  font-variation-settings: "opsz" 60;
  font-weight: 500;
  font-size: clamp(28px, 3.5vw, 42px);
  letter-spacing: -0.025em;
  color: #ffffff;
  text-shadow: 0 2px 14px rgba(0,0,0,0.45);
  line-height: 1;
}
.hpt-asterisk {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.55em;
  margin-left: 1px;
  vertical-align: super;
}

.hero-ctas {
  margin-top: 2.5rem;
}

/* ----- LUXURY GLASS BUTTONS ----- */

.btn-glass-brand {
  background: linear-gradient(135deg, rgba(168, 68, 74, 0.95) 0%, rgba(129, 43, 44, 0.92) 100%);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  box-shadow:
    0 8px 24px -8px rgba(129, 43, 44, 0.5),
    0 1px 0 rgba(255, 255, 255, 0.18) inset,
    0 -1px 0 rgba(0, 0, 0, 0.12) inset;
  position: relative;
  overflow: hidden;
}
.btn-glass-brand::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.22) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.9s cubic-bezier(0.4, 0.0, 0.2, 1);
  pointer-events: none;
}
.btn-glass-brand:hover {
  transform: translateY(-1px);
  box-shadow:
    0 14px 36px -10px rgba(129, 43, 44, 0.62),
    0 1px 0 rgba(255, 255, 255, 0.22) inset;
}
.btn-glass-brand:hover::before {
  transform: translateX(120%);
}

.btn-glass-light {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(14px) saturate(180%);
  -webkit-backdrop-filter: blur(14px) saturate(180%);
  box-shadow:
    0 4px 18px -4px rgba(0, 0, 0, 0.2),
    0 1px 0 rgba(255, 255, 255, 0.18) inset;
  position: relative;
  overflow: hidden;
}
.btn-glass-light::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.18) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.9s cubic-bezier(0.4, 0.0, 0.2, 1);
  pointer-events: none;
}
.btn-glass-light:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-1px);
}
.btn-glass-light:hover::before {
  transform: translateX(120%);
}

/* Glass buttons on light backgrounds need different look */
.bg-mist .btn-glass-light,
.bg-bone .btn-glass-light {
  background: rgba(129, 43, 44, 0.04);
  color: var(--brand);
  border-color: rgba(129, 43, 44, 0.22);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 4px 14px -4px rgba(129, 43, 44, 0.12);
}
.bg-mist .btn-glass-light:hover,
.bg-bone .btn-glass-light:hover {
  background: rgba(129, 43, 44, 0.1);
  border-color: rgba(129, 43, 44, 0.45);
  color: var(--brand-dark);
}

/* ----- HERO 2 CINEMATIC SECTION ----- */

.hero2 {
  padding: 4rem 0 0;
  background: var(--bone);
}
.hero2-frame {
  position: relative;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 0;
}
@media (min-width: 1024px) {
  .hero2 { padding: 6rem 2rem 0; }
  .hero2-frame { border-radius: 28px; aspect-ratio: 21 / 9; }
}

.hero2-img-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero2-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.0);
  animation: hero2SlowZoom 18s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes hero2SlowZoom {
  0%   { transform: scale(1.0); }
  100% { transform: scale(1.08); }
}

.hero2-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.05) 40%, rgba(0,0,0,0.6) 100%);
}

.hero2-caption {
  position: absolute;
  left: 1.5rem;
  right: 1.5rem;
  bottom: 1.75rem;
  color: #fff;
  z-index: 2;
}
@media (min-width: 768px) {
  .hero2-caption {
    left: 3rem;
    right: 3rem;
    bottom: 3rem;
  }
}

.hero2-label {
  font-size: 11.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  font-weight: 600;
  margin-bottom: 0.85rem;
  text-shadow: 0 1px 8px rgba(0,0,0,0.45);
}

.hero2-title {
  font-family: 'Source Serif 4', Georgia, serif;
  font-variation-settings: "opsz" 60;
  font-weight: 500;
  font-size: clamp(28px, 4.5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 0;
  max-width: 640px;
  color: #fff;
  text-shadow: 0 2px 18px rgba(0,0,0,0.5);
}

@media (prefers-reduced-motion: reduce) {
  .hero2-img { animation: none; }
}

/* ----- AUTO GALLERIES (Mandir + Project) ----- */

.auto-gallery {
  margin-top: 2rem;
  position: relative;
}

.ag-label {
  max-width: 1240px;
  margin: 0 auto 1rem;
  padding: 0 1.25rem;
}

.ag-track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: none;
  scrollbar-width: none;
  padding: 0 6rem 1rem 1.25rem;
}
.ag-track::-webkit-scrollbar { display: none; }

@media (min-width: 768px) {
  .ag-track { padding: 0 14rem 1.5rem 2rem; gap: 1.25rem; }
}

.ag-slide {
  flex: 0 0 82vw;
  max-width: 440px;
  aspect-ratio: 3 / 2;
  border-radius: 18px;
  overflow: hidden;
  scroll-snap-align: start;
  box-shadow: 0 12px 28px -14px rgba(0,0,0,0.18);
  position: relative;
  background: var(--mist);
}
@media (min-width: 768px) {
  .ag-slide { flex: 0 0 520px; max-width: 520px; border-radius: 22px; }
}
.ag-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}
.ag-slide:hover img {
  transform: scale(1.04);
}

.ag-hint {
  text-align: center;
  margin-top: 1rem;
  padding: 0 1.5rem;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--graphite);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  width: 100%;
  justify-content: center;
}
.ag-arrow {
  display: inline-block;
  color: var(--brand);
  font-size: 18px;
  animation: arrowSlide 1.6s ease-in-out infinite;
}

/* 70% Open Space line */
.open-space-line {
  text-align: center;
  margin-top: 4rem;
  padding: 0 1.5rem;
}
.open-space-line h3 {
  font-family: 'Source Serif 4', Georgia, serif;
  font-variation-settings: "opsz" 60;
  font-weight: 500;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 0;
}
.open-space-line h3 em {
  font-style: italic;
  color: var(--brand);
}

/* ----- LOCATION ADVANTAGES (Premium cards) ----- */

.conn-grid-v2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .conn-grid-v2 { grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
}
@media (min-width: 1024px) {
  .conn-grid-v2 { grid-template-columns: repeat(6, 1fr); }
}

.conn-card {
  background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(245,245,247,0.85) 100%);
  border-radius: 20px;
  padding: 1.5rem 1.25rem;
  border: 1px solid rgba(129, 43, 44, 0.08);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.conn-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px -18px rgba(129, 43, 44, 0.22);
  border-color: rgba(129, 43, 44, 0.18);
}
.conn-ic {
  width: 36px;
  height: 36px;
  color: var(--brand);
  opacity: 0.85;
  margin-bottom: 0.25rem;
}
.conn-ic svg { width: 100%; height: 100%; display: block; }

.conn-min {
  font-family: 'Source Serif 4', Georgia, serif;
  font-variation-settings: "opsz" 60;
  font-weight: 500;
  font-size: clamp(28px, 3.5vw, 36px);
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--ink);
}
.conn-min .u {
  font-size: 13px;
  color: var(--slate-light);
  font-weight: 500;
  margin-left: 2px;
}
.conn-l {
  font-size: 13px;
  color: var(--slate);
  font-weight: 500;
  line-height: 1.35;
}

.conn-callout {
  margin-top: 1.5rem;
  background: linear-gradient(135deg, #0f0e0f 0%, #1a1112 100%);
  color: var(--bone);
  border-radius: 22px;
  padding: 2rem 1.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: center;
  border: 1px solid rgba(168, 68, 74, 0.22);
  position: relative;
  overflow: hidden;
}
.conn-callout::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 50%;
  height: 200%;
  background: radial-gradient(closest-side, rgba(129, 43, 44, 0.35), transparent);
  pointer-events: none;
}
@media (min-width: 768px) {
  .conn-callout {
    grid-template-columns: auto 1fr;
    padding: 2.5rem 3rem;
    gap: 3rem;
  }
}
.conn-callout-num {
  font-family: 'Source Serif 4', Georgia, serif;
  font-variation-settings: "opsz" 60;
  font-weight: 500;
  font-size: clamp(72px, 10vw, 120px);
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--bone);
  position: relative;
}
.conn-callout-num .plus { color: var(--brand-light); }
.conn-callout-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  position: relative;
}
.conn-callout-list li {
  position: relative;
  padding-left: 1.2rem;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(251, 251, 253, 0.82);
  font-weight: 400;
}
.conn-callout-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 5px;
  height: 5px;
  background: var(--brand-light);
  border-radius: 50%;
}

/* ----- PRICING CARDS: Titanium Luxury Upgrade ----- */

.price-card {
  background: linear-gradient(160deg, #fcfcfd 0%, #f4f4f6 100%);
  border-radius: 22px;
  padding: 1.85rem;
  border: 1px solid rgba(129, 43, 44, 0.10);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.5s var(--ease);
  position: relative;
  overflow: hidden;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 1) inset,
    0 8px 22px -14px rgba(0, 0, 0, 0.06);
}

/* Soft titanium shine sweep across card */
.price-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -50%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    100deg,
    transparent 25%,
    rgba(129, 43, 44, 0.04) 50%,
    transparent 75%
  );
  transform: translateX(0);
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

/* Brand line at top */
.price-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--brand) 50%, transparent 100%);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.6s var(--ease);
}

.price-card:hover {
  transform: translateY(-6px);
  border-color: rgba(129, 43, 44, 0.22);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 1) inset,
    0 28px 56px -20px rgba(129, 43, 44, 0.22);
}
.price-card:hover::before {
  transform: translateX(300%);
}
.price-card:hover::after {
  transform: scaleX(1);
}

/* Signature card titanium-black variant */
.signature-card {
  background: linear-gradient(135deg, #0f0e0f 0%, #1a1112 50%, #0f0e0f 100%);
  border: 1px solid rgba(168, 68, 74, 0.22);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.06) inset,
    0 30px 70px -28px rgba(0, 0, 0, 0.4);
}

/* ----- HEADER NAVIGATION: Premium Glass Pills ----- */

.action-bar {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0.55rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  overflow-x: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}
.action-bar::-webkit-scrollbar { display: none; }

.action-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 1.1rem;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--graphite);
  white-space: nowrap;
  position: relative;
  transition: color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
  border-radius: 9999px;
  background: rgba(129, 43, 44, 0.04);
  border: 1px solid rgba(129, 43, 44, 0.10);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  overflow: hidden;
  flex-shrink: 0;
}
.action-chip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg,
    transparent 30%,
    rgba(129, 43, 44, 0.10) 50%,
    transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}
.action-chip:hover {
  color: var(--brand);
  background: rgba(129, 43, 44, 0.09);
  border-color: rgba(129, 43, 44, 0.22);
  box-shadow: 0 4px 14px -6px rgba(129, 43, 44, 0.25);
  transform: translateY(-1px);
}
.action-chip:hover::before {
  transform: translateX(120%);
}

/* Override - kill the divider for pill design */
.action-chip + .action-chip::after { display: none; }

/* Subtle ambient shimmer on action bar to hint swipe */
.action-bar-wrap {
  position: fixed;
  top: 68px;
  left: 0; right: 0;
  z-index: 55;
  background: linear-gradient(180deg, rgba(251, 251, 253, 0.92) 0%, rgba(251, 251, 253, 0.84) 100%);
  backdrop-filter: saturate(180%) blur(22px);
  -webkit-backdrop-filter: saturate(180%) blur(22px);
  border-bottom: 1px solid rgba(129, 43, 44, 0.08);
  box-shadow: 0 1px 0 rgba(129, 43, 44, 0.04);
  /* Hint right edge fade */
  -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 88%, transparent 100%);
          mask-image: linear-gradient(90deg, #000 0%, #000 88%, transparent 100%);
}

@media (max-width: 768px) {
  .action-bar { padding: 0.5rem 0.75rem; gap: 0.4rem; }
  .action-chip { padding: 0.5rem 0.95rem; font-size: 12.5px; }
}


/* ============================================
   V6 - AMBIENT SHINE LAYER
   Every glass button and header pill gets a constant
   ultra-subtle shine sweep, even without hover.
   ============================================ */

@keyframes ambientShine {
  0%   { transform: translateX(-160%) skewX(-12deg); opacity: 0; }
  20%  { opacity: 0.7; }
  60%  { opacity: 1; }
  80%  { opacity: 0.4; }
  100% { transform: translateX(260%) skewX(-12deg); opacity: 0; }
}

/* Brand glass button - ambient shine layer */
.btn-glass-brand::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 35%;
  background: linear-gradient(
    100deg,
    transparent 0%,
    rgba(255, 255, 255, 0.18) 50%,
    transparent 100%
  );
  transform: translateX(-160%) skewX(-12deg);
  animation: ambientShine 5.5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  animation-delay: 1.2s;
  pointer-events: none;
  z-index: 1;
}

/* Light glass button - ambient shine layer */
.btn-glass-light::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 35%;
  background: linear-gradient(
    100deg,
    transparent 0%,
    rgba(255, 255, 255, 0.14) 50%,
    transparent 100%
  );
  transform: translateX(-160%) skewX(-12deg);
  animation: ambientShine 5.5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  animation-delay: 2.4s;
  pointer-events: none;
  z-index: 1;
}

/* Light glass button on light backgrounds - brand-tinted shine */
.bg-mist .btn-glass-light::after,
.bg-bone .btn-glass-light::after {
  background: linear-gradient(
    100deg,
    transparent 0%,
    rgba(129, 43, 44, 0.10) 50%,
    transparent 100%
  );
}

/* Header action chip - ambient shine */
.action-chip::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 40%;
  background: linear-gradient(
    100deg,
    transparent 0%,
    rgba(129, 43, 44, 0.16) 50%,
    transparent 100%
  );
  transform: translateX(-180%) skewX(-12deg);
  animation: ambientShine 6s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  pointer-events: none;
  z-index: 0;
}
/* Stagger the chip shines so they pulse one after another */
.action-chip:nth-child(1)::after { animation-delay: 0s; }
.action-chip:nth-child(2)::after { animation-delay: 0.6s; }
.action-chip:nth-child(3)::after { animation-delay: 1.2s; }
.action-chip:nth-child(4)::after { animation-delay: 1.8s; }
.action-chip:nth-child(5)::after { animation-delay: 2.4s; }
.action-chip:nth-child(6)::after { animation-delay: 3.0s; }
.action-chip:nth-child(7)::after { animation-delay: 3.6s; }
.action-chip:nth-child(8)::after { animation-delay: 4.2s; }

/* Ensure chip content stays above shine */
.action-chip > * {
  position: relative;
  z-index: 1;
}

/* Pause shine for reduced motion users */
@media (prefers-reduced-motion: reduce) {
  .btn-glass-brand::after,
  .btn-glass-light::after,
  .action-chip::after {
    animation: none;
    opacity: 0;
  }
}

/* ============================================
   V6 - FLOATING CALL BUTTON (replaces WhatsApp float)
   ============================================ */
.call-float {
  position: fixed;
  bottom: 96px;
  right: 18px;
  z-index: 50;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow:
    0 12px 30px -8px rgba(129, 43, 44, 0.6),
    0 1px 0 rgba(255, 255, 255, 0.18) inset,
    0 -1px 0 rgba(0, 0, 0, 0.15) inset;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
  animation: callPulse 3s ease-in-out infinite;
}

@keyframes callPulse {
  0%, 100% {
    box-shadow:
      0 12px 30px -8px rgba(129, 43, 44, 0.6),
      0 0 0 0 rgba(129, 43, 44, 0.4),
      0 1px 0 rgba(255, 255, 255, 0.18) inset;
  }
  50% {
    box-shadow:
      0 12px 30px -8px rgba(129, 43, 44, 0.6),
      0 0 0 14px rgba(129, 43, 44, 0),
      0 1px 0 rgba(255, 255, 255, 0.18) inset;
  }
}

.call-float:hover {
  transform: scale(1.08) translateY(-2px);
  box-shadow:
    0 18px 40px -8px rgba(129, 43, 44, 0.7),
    0 1px 0 rgba(255, 255, 255, 0.22) inset;
}

.call-float svg {
  display: block;
  width: 26px;
  height: 26px;
}

@media (min-width: 768px) {
  .call-float {
    bottom: 110px;
    right: 28px;
    width: 62px;
    height: 62px;
  }
  .call-float svg { width: 28px; height: 28px; }
}

@media (prefers-reduced-motion: reduce) {
  .call-float { animation: none; }
}

/* ============================================
   V6 - STICKY FOOTER: 2-button grid
   ============================================ */
.sf-grid-2 {
  grid-template-columns: 1fr 1fr;
  max-width: 560px;
}

/* ============================================
   V6 - SOUL OF SHUBH VEDA QUOTE BLOCK
   (under Ram Mandir gallery)
   ============================================ */
.soul-quote {
  text-align: center;
  padding: 4rem 1.5rem 0;
}
.soul-title {
  font-family: 'Source Serif 4', Georgia, serif;
  font-variation-settings: "opsz" 60;
  font-weight: 500;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 0.5rem 0 2rem;
}
.soul-title em {
  font-style: italic;
  color: var(--brand);
  font-weight: 500;
}
.soul-points {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 580px;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  text-align: left;
}
.soul-points li {
  position: relative;
  padding-left: 1.4rem;
  font-size: 16px;
  line-height: 1.55;
  color: var(--graphite);
  font-weight: 400;
}
.soul-points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  background: var(--brand);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(129, 43, 44, 0.35);
}

/* ============================================
   V7 - PERFORMANCE + SPACING + NEW SECTIONS
   ============================================ */

/* Tighten Hero 2 top padding - removes the big gap after Hero 1 */
.hero2 {
  padding: 1.5rem 0 0;
}
@media (min-width: 1024px) {
  .hero2 { padding: 2.5rem 1.5rem 0; }
}

/* Tighten Hero 1 bottom padding too */
.hero {
  padding-bottom: 1rem;
}

/* ============================================
   V7 - TRUST STATEMENT STRIP
   (sits between Hero 1 and Hero 2)
   ============================================ */
.trust-strip {
  background: var(--bone);
  padding: 3rem 1.25rem;
  position: relative;
  text-align: center;
  overflow: hidden;
}
@media (min-width: 768px) {
  .trust-strip { padding: 4rem 2rem; }
}

.trust-strip::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--brand) 50%, transparent 100%);
  opacity: 0.4;
}

.trust-strip-inner {
  max-width: 880px;
  margin: 0 auto;
}

.trust-eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--brand);
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.trust-title {
  font-family: 'Source Serif 4', Georgia, serif;
  font-variation-settings: "opsz" 60;
  font-weight: 500;
  font-size: clamp(26px, 4vw, 44px);
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 0 0 1.5rem;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.trust-title em {
  font-style: italic;
  color: var(--brand);
  font-weight: 500;
}
.trust-title .amp {
  font-style: italic;
  color: var(--brand);
  font-weight: 400;
}

.trust-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.5rem;
  max-width: 760px;
}
.trust-bullets li {
  position: relative;
  padding-left: 1rem;
  font-size: 13.5px;
  letter-spacing: 0.02em;
  color: var(--graphite);
  font-weight: 500;
}
.trust-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 4px;
  height: 4px;
  background: var(--brand);
  border-radius: 50%;
}

/* ============================================
   V7 - COMMERCIAL SPACES SECTION
   ============================================ */
.commercial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: stretch;
}
@media (min-width: 900px) {
  .commercial-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
  }
}

/* Left side - info */
.commercial-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.commercial-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(129, 43, 44, 0.10);
}
.commercial-bullets li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(129, 43, 44, 0.10);
}
.cb-label {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--slate-light);
  font-weight: 600;
  flex-shrink: 0;
}
.cb-value {
  font-family: 'Source Serif 4', Georgia, serif;
  font-variation-settings: "opsz" 60;
  font-weight: 500;
  font-size: clamp(15px, 1.6vw, 18px);
  color: var(--ink);
  letter-spacing: -0.01em;
  text-align: right;
}

.commercial-price {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.cp-label {
  font-size: 11.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--slate-light);
  font-weight: 600;
}
.cp-amount {
  font-family: 'Source Serif 4', Georgia, serif;
  font-variation-settings: "opsz" 60;
  font-weight: 500;
  font-size: clamp(36px, 5vw, 54px);
  letter-spacing: -0.025em;
  color: var(--ink);
  line-height: 1;
}
.cp-asterisk {
  color: var(--slate-light);
  font-size: 0.45em;
  margin-left: 2px;
  vertical-align: super;
}

.commercial-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

/* Right side - blurred plan preview */
.commercial-plan {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.commercial-plan .gated {
  aspect-ratio: 4 / 3;
  border-radius: 22px;
  border: 1px solid rgba(129, 43, 44, 0.10);
  box-shadow: 0 22px 48px -22px rgba(129, 43, 44, 0.18);
}
.commercial-plan-meta {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0 0.25rem;
}
.cpm-eyebrow {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brand);
  font-weight: 700;
}
.cpm-title {
  font-family: 'Source Serif 4', Georgia, serif;
  font-variation-settings: "opsz" 60;
  font-weight: 500;
  font-size: 21px;
  letter-spacing: -0.015em;
  color: var(--ink);
}

/* ============================================
   V7 - FASTER + MORE NOTICEABLE BUTTON SHINE
   (overrides v6 ambientShine)
   ============================================ */
@keyframes ambientShine {
  0%   { transform: translateX(-160%) skewX(-12deg); opacity: 0; }
  10%  { opacity: 0.85; }
  50%  { opacity: 1; }
  85%  { opacity: 0.5; }
  100% { transform: translateX(280%) skewX(-12deg); opacity: 0; }
}

.btn-glass-brand::after {
  animation-duration: 3.2s !important;
  animation-delay: 0.4s !important;
  background: linear-gradient(
    100deg,
    transparent 0%,
    rgba(255, 255, 255, 0.26) 50%,
    transparent 100%
  ) !important;
}

.btn-glass-light::after {
  animation-duration: 3.2s !important;
  animation-delay: 1.2s !important;
  background: linear-gradient(
    100deg,
    transparent 0%,
    rgba(255, 255, 255, 0.22) 50%,
    transparent 100%
  ) !important;
}

.bg-mist .btn-glass-light::after,
.bg-bone .btn-glass-light::after {
  background: linear-gradient(
    100deg,
    transparent 0%,
    rgba(129, 43, 44, 0.14) 50%,
    transparent 100%
  ) !important;
}

.action-chip::after {
  animation-duration: 4s !important;
  background: linear-gradient(
    100deg,
    transparent 0%,
    rgba(129, 43, 44, 0.22) 50%,
    transparent 100%
  ) !important;
}
.action-chip:nth-child(1)::after { animation-delay: 0s !important; }
.action-chip:nth-child(2)::after { animation-delay: 0.4s !important; }
.action-chip:nth-child(3)::after { animation-delay: 0.8s !important; }
.action-chip:nth-child(4)::after { animation-delay: 1.2s !important; }
.action-chip:nth-child(5)::after { animation-delay: 1.6s !important; }
.action-chip:nth-child(6)::after { animation-delay: 2.0s !important; }
.action-chip:nth-child(7)::after { animation-delay: 2.4s !important; }
.action-chip:nth-child(8)::after { animation-delay: 2.8s !important; }
.action-chip:nth-child(9)::after { animation-delay: 3.2s !important; }

/* ============================================
   V7 - PERFORMANCE: image fade-in to prevent pop
   ============================================ */
img {
  background-color: #f5f5f7;
}

/* Smooth fade for lazy-loaded images */
img[loading="lazy"] {
  opacity: 0;
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
img[loading="lazy"].img-loaded {
  opacity: 1;
}

/* Remove will-change after animation completes (managed by JS) */
.reveal { will-change: opacity, transform; }
.reveal.in { will-change: auto; }

/* Reduce paint cost on heavy sections */
.hero-bg, .hero2-img-wrap {
  contain: layout paint;
}
.auto-gallery, .h-scroller-wrap {
  contain: layout paint style;
}

/* GPU hint for ambient shines */
.btn-glass-brand,
.btn-glass-light,
.action-chip {
  will-change: auto;
  transform: translateZ(0);
}

/* Reduced motion: kill shine entirely */
@media (prefers-reduced-motion: reduce) {
  .btn-glass-brand::after,
  .btn-glass-light::after,
  .action-chip::after {
    animation: none !important;
    opacity: 0 !important;
  }
}

/* ============================================
   V8 - FIVE VEDAS HERO TYPOGRAPHY
   ============================================ */

/* Hide old hero composition classes (kept for safety, but new structure overrides) */
.hero-title .hero-line { display: none !important; }

/* PRIMARY hero title: SHUBH VEDA - massive editorial dominance */
.hero-vedas-title {
  font-family: 'Source Serif 4', Georgia, serif;
  font-variation-settings: "opsz" 60;
  margin: 0;
  font-weight: 700;
  font-size: clamp(56px, 11vw, 168px);
  line-height: 0.92;
  letter-spacing: 0.005em;
  color: #ffffff;
  text-align: center;
  text-shadow: 0 4px 32px rgba(0, 0, 0, 0.55);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.05em;
}
.hv-word {
  display: inline-block;
  background: linear-gradient(180deg, #ffffff 0%, #f3d8da 60%, #d49ea1 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  opacity: 0;
  filter: blur(18px);
  transform: translateY(14px);
  animation: vedaWordReveal 1.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hv-word:nth-child(1) { animation-delay: 0.25s; }
.hv-word:nth-child(2) { animation-delay: 0.55s; }

@keyframes vedaWordReveal {
  0%   { opacity: 0; filter: blur(18px); transform: translateY(14px); }
  60%  { opacity: 1; filter: blur(2px); transform: translateY(0); }
  100% { opacity: 1; filter: blur(0); transform: translateY(0); }
}

/* Subtle halo glow behind hero title */
.hero-vedas-title::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 140%;
  background: radial-gradient(ellipse at center, rgba(212, 158, 161, 0.18) 0%, transparent 60%);
  pointer-events: none;
  z-index: -1;
}

/* Philosophy line under title */
.hero-philosophy {
  font-family: 'Source Serif 4', Georgia, serif;
  font-variation-settings: "opsz" 60;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(15px, 1.8vw, 20px);
  line-height: 1.5;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.88);
  text-align: center;
  margin: 1.5rem auto 0;
  max-width: 540px;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.4);
}
.hero-philosophy em {
  font-style: italic;
  color: #f3d8da;
  font-weight: 500;
}

/* Five Vedas list - minimal editorial */
.hero-vedas-list {
  list-style: none;
  padding: 0;
  margin: 1.75rem auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.75rem 0;
  max-width: 720px;
}
.hero-vedas-list li {
  font-size: clamp(11.5px, 1.3vw, 14px);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 500;
  padding: 0 1.1rem;
  position: relative;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.45);
}
.hero-vedas-list li + li::before {
  content: '';
  position: absolute;
  left: -2px;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 3px;
  background: #d49ea1;
  border-radius: 50%;
  opacity: 0.7;
}

/* Bullets and price moved further down - tighten spacing on mobile */
.hero-bullets { margin-top: 2rem; }
.hero-price-text { margin-top: 1.5rem; }
.hero-ctas { margin-top: 1.75rem; }

/* Primary CTA - dominant size variant */
.btn-primary-xl {
  padding: 0.95rem 1.85rem;
  font-size: 15.5px;
  font-weight: 600;
  letter-spacing: 0.005em;
  box-shadow:
    0 14px 36px -10px rgba(129, 43, 44, 0.55),
    0 1px 0 rgba(255, 255, 255, 0.18) inset !important;
}

@media (prefers-reduced-motion: reduce) {
  .hv-word { animation: none; opacity: 1; filter: none; transform: none; }
}


/* ============================================
   V8 - USP SECTION (dark luxury card grid)
   ============================================ */
.section-usps {
  background: linear-gradient(180deg, #0f0e0f 0%, #1a1112 50%, #0f0e0f 100%);
  color: var(--bone);
  padding: 4.5rem 1.25rem;
  position: relative;
  overflow: hidden;
}
.section-usps::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -20%;
  width: 60%;
  height: 160%;
  background: radial-gradient(closest-side, rgba(129, 43, 44, 0.18), transparent);
  pointer-events: none;
}
.section-usps::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -20%;
  width: 60%;
  height: 160%;
  background: radial-gradient(closest-side, rgba(129, 43, 44, 0.10), transparent);
  pointer-events: none;
}
@media (min-width: 1024px) {
  .section-usps { padding: 6rem 2rem; }
}

.section-usps .section-head { margin-bottom: 3rem; position: relative; z-index: 1; }

.usp-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
  position: relative;
  z-index: 1;
}
@media (min-width: 600px) {
  .usp-grid { grid-template-columns: 1fr 1fr; gap: 1.1rem; }
}
@media (min-width: 1024px) {
  .usp-grid { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
}

.usp-card {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
  border: 1px solid rgba(168, 68, 74, 0.18);
  border-radius: 20px;
  padding: 1.75rem 1.5rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.5s var(--ease), border-color 0.5s var(--ease), background 0.5s var(--ease);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  min-height: 200px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.usp-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(212, 158, 161, 0.4) 50%, transparent 100%);
  opacity: 0.6;
  transition: opacity 0.5s ease;
}
.usp-card:hover {
  transform: translateY(-4px);
  border-color: rgba(168, 68, 74, 0.32);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.06) 0%, rgba(168, 68, 74, 0.04) 100%);
}
.usp-card:hover::before { opacity: 1; }

.usp-icon {
  width: 38px;
  height: 38px;
  color: #d49ea1;
}
.usp-icon svg { width: 100%; height: 100%; display: block; }

.usp-title {
  font-family: 'Source Serif 4', Georgia, serif;
  font-variation-settings: "opsz" 60;
  font-weight: 500;
  font-size: clamp(18px, 1.8vw, 21px);
  line-height: 1.18;
  letter-spacing: -0.015em;
  color: var(--bone);
  margin: 0;
}

.usp-sub {
  font-size: 13.5px;
  line-height: 1.5;
  color: rgba(251, 251, 253, 0.65);
  font-weight: 400;
  margin: 0;
}


/* ============================================
   V8 - SCARCITY STRIP (exclusivity language)
   ============================================ */
.scarcity-strip {
  margin-top: 3rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem 0.65rem;
  position: relative;
  z-index: 1;
  padding-top: 2rem;
  border-top: 1px solid rgba(168, 68, 74, 0.15);
}
.ss-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 1rem;
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #d49ea1;
  font-weight: 700;
  background: rgba(168, 68, 74, 0.08);
  border: 1px solid rgba(168, 68, 74, 0.22);
  border-radius: 9999px;
}


/* ============================================
   V8 - STICKY FOOTER 4-BUTTON (mobile only)
   ============================================ */
.sf-mobile-only { display: block; }

.sf-grid-4 {
  grid-template-columns: repeat(4, 1fr);
  max-width: 100%;
  gap: 0.35rem;
  padding: 0 0.35rem;
}

.sf-grid-4 .sf-btn {
  flex-direction: column;
  gap: 0.18rem;
  padding: 0.55rem 0.25rem;
  min-height: 56px;
  font-size: 10.5px;
  letter-spacing: 0.08em;
  font-weight: 600;
  text-transform: uppercase;
}
.sf-grid-4 .sf-btn .ic {
  width: 18px;
  height: 18px;
}
.sf-grid-4 .sf-lbl {
  display: block;
  font-size: 10px;
  letter-spacing: 0.08em;
}

/* Button color variants for the 4-bar */
.sf-grid-4 .sf-price {
  background: linear-gradient(135deg, #0f0e0f 0%, #1a1112 100%);
  color: #ffffff;
}
.sf-grid-4 .sf-visit {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  color: #ffffff;
}

/* Hide sticky bar on desktop */
@media (min-width: 900px) {
  .sf-mobile-only { display: none !important; }
  .page-offset { padding-bottom: 0 !important; }
}

/* On mobile: ensure bottom padding for sticky bar */
@media (max-width: 899px) {
  body { padding-bottom: 60px; }
  .call-float { bottom: 76px; }
}

/* ============================================
   V9 — HERO PERFORMANCE REDESIGN
   Conversion-focused above-the-fold rebuild
   Preserves luxury aesthetic; adds inline form,
   sharper headline hierarchy, USP strip.
   ============================================ */

/* Tighten hero vertical rhythm for new content */
.hero-inner-v2 {
  max-width: 720px;
  padding: 3rem 1.5rem 3.5rem;
}

/* New performance headline — replaces .hero-philosophy */
.hero-headline-v2 {
  font-family: 'Source Serif 4', Georgia, serif;
  font-variation-settings: "opsz" 32;
  font-weight: 500;
  font-size: clamp(20px, 2.4vw, 28px);
  line-height: 1.28;
  letter-spacing: -0.012em;
  color: #ffffff;
  margin: 1.5rem auto 0;
  max-width: 600px;
  text-shadow: 0 2px 18px rgba(0,0,0,0.55), 0 1px 3px rgba(0,0,0,0.4);
}
.hero-headline-v2 em {
  font-style: italic;
  font-weight: 500;
  color: #f3d8da;
}

/* Sub-headline — USP one-liner */
.hero-sub-v2 {
  margin: 1rem auto 0;
  max-width: 600px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: clamp(13px, 1.2vw, 14.5px);
  line-height: 1.55;
  color: rgba(255,255,255,0.88);
  font-weight: 400;
  letter-spacing: 0.005em;
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}

/* Quick USP pills strip */
.hero-usp-strip {
  list-style: none;
  padding: 0;
  margin: 1.75rem auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 0.65rem;
  max-width: 560px;
}
.hero-usp-strip li {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(255,255,255,0.92);
  padding: 0.5rem 0.95rem;
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* ============================================
   HERO LEAD FORM (above the fold)
   ============================================ */
.hero-form {
  margin: 2.25rem auto 0;
  max-width: 460px;
  padding: 1.5rem 1.5rem 1.35rem;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 14px;
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  box-shadow:
    0 20px 60px -20px rgba(0,0,0,0.55),
    0 1px 0 0 rgba(255,255,255,0.08) inset;
}

.hf-fields {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.hf-input {
  width: 100%;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #ffffff;
  background: rgba(0,0,0,0.22);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 10px;
  padding: 0.95rem 1.1rem;
  outline: none;
  transition: border-color 220ms var(--ease), background 220ms var(--ease), box-shadow 220ms var(--ease);
  -webkit-appearance: none;
  appearance: none;
}
.hf-input::placeholder {
  color: rgba(255,255,255,0.55);
  font-weight: 400;
}
.hf-input:focus {
  border-color: rgba(243,216,218,0.7);
  background: rgba(0,0,0,0.32);
  box-shadow: 0 0 0 3px rgba(243,216,218,0.12);
}
.hf-input.hf-error {
  border-color: #f3d8da;
  background: rgba(168,68,74,0.18);
}

.hf-submit {
  width: 100%;
  margin-top: 0.85rem;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #ffffff;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 1.05rem 1.4rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease), filter 220ms var(--ease);
  box-shadow: 0 8px 24px -8px rgba(129,43,44,0.6);
}
.hf-submit:hover {
  transform: translateY(-1px);
  filter: brightness(1.08);
  box-shadow: 0 12px 32px -8px rgba(129,43,44,0.75);
}
.hf-submit:active { transform: translateY(0); }
.hf-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}
.hf-submit span {
  display: inline-block;
  transition: transform 220ms var(--ease);
}
.hf-submit:hover span { transform: translateX(3px); }

.hf-trust {
  margin: 0.95rem 0 0;
  font-size: 11.5px;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.72);
  text-align: center;
  font-weight: 500;
  line-height: 1.5;
}

/* Secondary CTAs below form */
.hero-secondary-ctas {
  margin: 1.5rem auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.5rem 0.65rem;
  max-width: 460px;
}
.hsc-link {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.28);
  padding-bottom: 1px;
  transition: color 200ms var(--ease), border-color 200ms var(--ease);
}
.hsc-link:hover {
  color: #ffffff;
  border-color: rgba(255,255,255,0.7);
}
.hsc-divider {
  font-size: 12.5px;
  color: rgba(255,255,255,0.4);
  user-select: none;
}

/* Hide old hero-philosophy / vedas-list / hero-bullets / hero-price-text / hero-ctas */
.hero-philosophy,
.hero-vedas-list,
.hero-bullets,
.hero-price-text,
.hero-ctas {
  display: none !important;
}

/* Hero vertical tightening on mobile */
@media (max-width: 768px) {
  .hero-inner-v2 {
    padding: 2.25rem 1.25rem 2.75rem;
  }
  .hero-vedas-title {
    font-size: clamp(42px, 14vw, 64px) !important;
  }
  .hero-headline-v2 {
    font-size: 19px;
    margin-top: 1.1rem;
  }
  .hero-sub-v2 {
    font-size: 13px;
    margin-top: 0.8rem;
  }
  .hero-usp-strip {
    margin-top: 1.25rem;
    gap: 0.4rem 0.45rem;
  }
  .hero-usp-strip li {
    font-size: 10.5px;
    padding: 0.4rem 0.75rem;
    letter-spacing: 0.13em;
  }
  .hero-form {
    margin-top: 1.75rem;
    padding: 1.25rem 1.15rem 1.15rem;
    max-width: 100%;
  }
  .hf-input {
    font-size: 16px; /* prevent iOS zoom */
    padding: 0.9rem 1rem;
  }
  .hf-submit {
    padding: 1rem 1.3rem;
    font-size: 14px;
  }
  .hf-trust {
    font-size: 11px;
  }
  .hero-secondary-ctas {
    margin-top: 1.25rem;
  }
  .hsc-link {
    font-size: 12px;
  }
}

/* Tighten hero min-height to ensure form is visible above fold on mobile */
@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: 1rem 0 2rem;
  }
}
.hero-config-pill {
  display: inline-block;
  background: rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: none;
  border-radius: 10px;
  padding: 0.75rem 1.4rem;
}
/* Hero config pill - glass box override */
p.hero-headline-v2.hero-config-pill {
  display: inline-block !important;
  background: rgba(0, 0, 0, 0.42) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  border: none !important;
  border-radius: 10px !important;
  padding: 0.8rem 1.5rem !important;
  text-align: center;
  width: auto !important;
  max-width: 100%;
}

/* Center the pill inside hero */
.hero-inner-v2 {
  display: flex;
  flex-direction: column;
  align-items: center;
}
