/* ================================================================
   CHINTAMANIS PHASE 2 — Reference Design Replication
   Light-themed, editorial design matching reference site
   Fonts: Trajan Pro (headings), Crimson Pro (body)
   ================================================================ */

/* ---- CSS Variables ---- */
:root {
  --bg-primary: #FBFBFA;
  --bg-card: #ffffff;
  --bg-alt: #F4F3EF;
  --bg-dark: #1A1A1A;
  --bg-brand: #2C1810;
  --bg-brand-deep: #1E110B;
  --text-primary: #1A1A1A;
  --text-secondary: #555555;
  --text-muted: #999999;
  --accent: #C58C34;
  --accent-light: #D4A65A;
  --accent-dark: #A06E2C;
  --brand-maroon: #5F273C;
  --border-color: rgba(0, 0, 0, 0.08);
  --border-light: rgba(0, 0, 0, 0.05);
  --radius: 16px;
  --radius-sm: 8px;
  --radius-lg: 24px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.06);
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --section-pad: 120px 0;
  --section-pad-sm: 80px 0;
}


/* ---- Font Faces ---- */
@font-face {
  font-family: "Crimson Pro";
  font-style: normal;
  font-weight: 400;
  src: url("../font/CrimsonPro-Regular.ttf") format("truetype");
}

@font-face {
  font-family: "Crimson Pro";
  font-style: normal;
  font-weight: 600;
  src: url("../font/CrimsonPro-SemiBold.ttf") format("truetype");
}

@font-face {
  font-family: "Crimson Pro";
  font-style: normal;
  font-weight: 700;
  src: url("../font/CrimsonPro-Bold.ttf") format("truetype");
}

@font-face {
  font-family: "Trajan Pro Regular";
  font-style: normal;
  font-weight: 400;
  src: local("Trajan Pro Regular"),
    url("../font/TrajanPro-Regular.woff") format("woff"),
    url("../font/Trajan-Regular.ttf") format("truetype");
}

@font-face {
  font-family: "Trajan Pro Bold";
  font-style: normal;
  font-weight: 700;
  src: local("Trajan Pro Bold"),
    url("../font/TrajanPro-Bold.woff") format("woff");
}


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

html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}

html,
body {
  overflow-x: clip;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Crimson Pro", Georgia, serif;
  color: var(--text-primary);
  line-height: 1.7;
  background: var(--bg-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

section {
  border-bottom: 1px solid #e5e5e5;
}

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

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

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-alt);
}

::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent-dark);
}

/* ---- "Phase 2" Accent Highlight ---- */
.p2-accent-text {
  color: var(--accent);
}


/* ════════════════════════════════════════════════════════════════
   NAVBAR — Black default → Floating pill on scroll
   ════════════════════════════════════════════════════════════════ */
.p2-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

/* The inner container does the actual visual transition */
.p2-navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 100%;
  height: 84px;
  padding: 0 40px;
  background-color: rgb(0, 0, 0);
  border-radius: 0;
  pointer-events: auto;
  box-shadow: none;
  transform: none;
  will-change: transform, background-color, box-shadow, border-radius, height, max-width, width;
  transition:
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    background-color 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    border-radius 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    height 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    max-width 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    width 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Desktop scrolled state */
.p2-navbar.scrolled .p2-navbar-inner {
  max-width: 1400px;
  width: 92%;
  height: 64px;
  border-radius: 20px;
  transform: translateY(16px) scale(0.96);
  background-color: rgba(251, 251, 250, 0.98);
  box-shadow: 0 15px 40px rgba(26, 26, 26, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

/* Tablet + Mobile scrolled state — no scale, no width reduction */
@media (max-width: 991px) {
  .p2-navbar-inner {
    height: 64px;
  }

  .p2-navbar.scrolled .p2-navbar-inner {
    max-width: 100%;
    width: 100%;
    height: 64px;
    border-radius: 0;
    transform: none;
    background-color: rgba(251, 251, 250, 0.98);
    box-shadow: 0 2px 20px rgba(26, 26, 26, 0.08);
  }
}

/* Default: white logo, white text links, gold badge */
.p2-brand {
  display: flex;
  align-items: center;
}

.p2-logo {
  height: 36px;
  width: auto;
  /* filter: brightness(0) invert(1); */
  transition: filter 0.4s ease;
}

/* On scroll → dark logo + smaller */
.p2-navbar.scrolled .p2-logo {
  filter: none;
  height: 60px;
}

.p2-nav-links {
  display: flex;
  gap: 8px;
}

.p2-nav-link {
  font-family: "Trajan Pro Regular", serif;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  padding: 10px 16px;
  border-radius: 9999px;
  transition: all 0.3s ease;
  position: relative;
  border: 1px solid transparent;
}

.p2-nav-link:hover {
  color: #ffffff;
}

.p2-nav-link.active {
  color: #ffffff;
}

/* On scroll → dark text links + smaller font */
.p2-navbar.scrolled .p2-nav-link {
  color: rgba(26, 26, 26);
  font-size: 12px;
  letter-spacing: 0.15em;
  padding: 8px 12px;
}

.p2-navbar.scrolled .p2-nav-link:hover {
  color: var(--text-primary);
}

.p2-navbar.scrolled .p2-nav-link.active {
  color: var(--text-primary);
}

.p2-navbar.scrolled .p2-prelaunch-badge {
  font-size: 9px;
  padding: 6px 12px;
  letter-spacing: 0.1em;
}

.p2-navbar.scrolled .p2-nav-cta {
  font-size: 9px;
  padding: 10px 24px;
}

.p2-prelaunch-badge {
  font-family: "Trajan Pro Regular", serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 8px 16px;
  background: rgba(26, 26, 26, 0.03);
  border: 1px solid rgba(229, 229, 229, 0.5);
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.p2-pulse-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.4;
  }
}

.p2-nav-cta {
  font-family: "Trajan Pro Regular", serif;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 12px 32px;
  background: var(--bg-dark);
  color: #fff;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  -webkit-user-select: none;
  user-select: none;
}

.p2-nav-cta:hover {
  background: var(--accent);
  color: #fff;
}

.p2-nav-cta:active {
  transform: scale(0.95);
}




/* Hamburger */
.p2-hamburger {
  background: none;
  border: none;
  cursor: pointer;
  width: 44px;
  height: 44px;
  position: relative;
  z-index: 1010;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 10px 7px;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.p2-hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background: #ffffff;
  margin-bottom: 0;
  transition: var(--transition);
  pointer-events: none;
}

.p2-navbar.scrolled .p2-hamburger span {
  background: var(--text-primary);
}

/* Mobile Drawer */
.p2-mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 340px;
  max-width: 90vw;
  height: 100vh;
  background: var(--bg-dark);
  z-index: 1050;
  padding: 32px;
  transition: right 0.4s ease;
}

.p2-mobile-nav.open {
  right: 0;
}

.p2-mobile-header {
  margin-bottom: 40px;
}

.p2-mobile-link {
  display: block;
  font-family: "Trajan Pro Regular", serif;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: var(--transition);
}

.p2-mobile-link:hover {
  color: var(--accent);
}

.p2-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1040;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.p2-nav-overlay.visible {
  opacity: 1;
  pointer-events: auto;
}


/* ════════════════════════════════════════════════════════════════
   HERO — Full-Screen Dark Design
   ════════════════════════════════════════════════════════════════ */
.p2-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--bg-dark);
  padding-top: 80px;
  padding-bottom: 0;
  overflow: hidden;
}

/* Image-only hero: no padding, no content overlays, image fills viewport */
.p2-hero.p2-hero-imageonly {
  padding-top: 0;
  min-height: auto;
  justify-content: flex-start;
  background-color: #000000;
}

.p2-hero.p2-hero-imageonly .p2-hero-media {
  position: relative;
}

.p2-hero-media {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.p2-hero-swiper,
.p2-hero-swiper .swiper-wrapper,
.p2-hero-swiper .swiper-slide {
  height: 100%;
}

.p2-hero-swiper .swiper-slide picture {
  display: block;
  width: 100%;
  height: 100%;
}

.p2-hero-slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

/* For image-only hero, images should auto-height */
.p2-hero.p2-hero-imageonly .p2-hero-slide-img {
  height: auto;
  max-height: 100vh;
}

.p2-hero-media-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
      rgba(10, 10, 10, 0.92) 0%,
      rgba(10, 10, 10, 0.75) 40%,
      rgba(10, 10, 10, 0.2) 70%,
      transparent 100%);
  z-index: 2;
}

.p2-hero .container {
  position: relative;
  z-index: 3;
}

.p2-hero-inner {
  max-width: 620px;
}

.p2-hero-content {
  position: relative;
}

.p2-hero-rera {
  font-family: "Crimson Pro", serif;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 40px;
  line-height: 1.5;
}

.p2-hero-logo-mark {
  margin-bottom: 30px;
}

.p2-hero-logo-img {
  height: 80px;
  width: auto;
  filter: brightness(0) invert(1);
}

.p2-hero-title {
  font-family: "Trajan Pro Regular", serif;
  font-size: clamp(22px, 3vw, 36px);
  letter-spacing: 12px;
  color: #ffffff;
  font-weight: 400;
  margin-bottom: 40px;
  line-height: 1.3;
}

/* Overlay text on the right side */
.p2-hero-overlay-text {
  position: absolute;
  right: -500px;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
}

.p2-hero-overlay-intro {
  display: block;
  font-family: "Trajan Pro Regular", serif;
  font-size: 18px;
  letter-spacing: 10px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 10px;
}

.p2-hero-overlay-phase {
  display: block;
  font-family: "Trajan Pro Regular", serif;
  font-size: clamp(48px, 8vw, 100px);
  letter-spacing: 15px;
  color: rgba(255, 255, 255, 0.15);
  font-weight: 400;
  line-height: 1;
}


/* Hero Highlights Strip */
.p2-hero-highlights {
  position: relative;
  z-index: 3;
  margin-top: auto;
}

.p2-highlights-row {
  display: flex;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.p2-highlight {
  flex: 1;
  padding: 24px 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  gap: 12px;
  align-items: baseline;
}

.p2-highlight:last-child {
  border-right: none;
}

.p2-highlight-val {
  font-family: "Trajan Pro Regular", serif;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ffffff;
  font-weight: 700;
}

.p2-highlight-label {
  font-family: "Trajan Pro Regular", serif;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
}


/* Hero Banner */
.p2-hero-banner {
  position: relative;
  z-index: 3;
  background: #ffffff;
  padding: 0;
}

.p2-banner-strip {
  text-align: center;
  padding: 18px 24px;
  font-family: "Trajan Pro Regular", serif;
  font-size: 16px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--text-primary);
}


/* Location Pin Bar */
.p2-location-pin-bar {
  background: var(--bg-dark);
  padding: 20px 0;
  border-bottom: 1px solid var(--border-color);
}

.p2-location-pin-bar span {
  font-family: "Crimson Pro", serif;
  font-size: clamp(18px, 2.5vw, 28px);
  font-weight: 400;
  color: #ffffff;
  letter-spacing: 2px;
}

.p2-location-pin-bar i {
  color: var(--accent);
  margin-right: 8px;
  font-size: 20px;
}


/* ════════════════════════════════════════════════════════════════
   COMMON SECTION STYLES
   ════════════════════════════════════════════════════════════════ */
.p2-section {
  padding: var(--section-pad);
  position: relative;
}

.p2-section-header {
  margin-bottom: 50px;
}

.p2-section-tag-line {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
  margin-bottom: 16px;
}

.p2-section-tag-line.p2-tag-left {
  justify-content: flex-start;
}

.p2-tag-dash {
  display: inline-block;
  width: 48px;
  height: 1px;
  background: var(--accent);
}

.p2-section-tag {
  font-family: "Trajan Pro Regular", serif;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--accent);
}

.p2-section-title {
  font-family: "Crimson Pro", serif;
  font-size: 2.25rem;
  font-weight: 400;
  color: var(--text-primary);
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin: 0 0 24px;
}

.p2-section-title em {
  font-style: italic;
  color: var(--accent);
  font-weight: 300;
}

.p2-body-text {
  font-family: "Crimson Pro", serif;
  font-size: 1rem;
  font-weight: 500;
  color: #000000;
  line-height: 1.625;
  margin-bottom: 18px;
}

.p2-body-italic {
  font-style: italic;
  font-size: 1.125rem;
  border-left: 2px solid var(--accent);
  padding-left: 20px;
  margin-bottom: 30px;
  line-height: 1.625;
}

.p2-divider-gold-center {
  width: 40px;
  height: 2px;
  background: var(--accent);
  margin: 20px auto;
}


/* ════════════════════════════════════════════════════════════════
   BUTTONS
   ════════════════════════════════════════════════════════════════ */
.p2-btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: "Trajan Pro Regular", serif;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 16px 32px;
  background: var(--accent);
  color: #ffffff;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.3s ease;
  -webkit-user-select: none;
  user-select: none;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.p2-btn-gold:hover {
  background: var(--bg-dark);
  color: #ffffff;
}

.p2-btn-gold:active {
  transform: scale(0.95);
}

.p2-btn-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: "Trajan Pro Regular", serif;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 16px 48px;
  background: var(--bg-dark);
  color: #ffffff;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  -webkit-user-select: none;
  user-select: none;
}

.p2-btn-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--accent);
  transform: translateY(100%);
  transition: transform 0.3s ease-in-out;
}

.p2-btn-dark:hover::before {
  transform: translateY(0);
}

.p2-btn-dark span,
.p2-btn-dark svg {
  position: relative;
  z-index: 1;
}

.p2-btn-dark:active {
  transform: scale(0.95);
}

.p2-btn-dark-sm {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: "Trajan Pro Regular", serif;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 10px 20px;
  background: var(--bg-dark);
  color: #ffffff;
  border: 1px solid var(--bg-dark);
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
}

.p2-btn-dark-sm:hover {
  background: transparent;
  color: var(--bg-dark);
}

.p2-btn-callback {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Trajan Pro Regular", serif;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 32px;
  background: var(--bg-dark);
  color: #fff;
  border: 2px solid var(--bg-dark);
  border-radius: 32px;
  cursor: pointer;
  transition: var(--transition);
}

.p2-btn-callback:hover {
  background: transparent;
  color: var(--bg-dark);
}


/* ════════════════════════════════════════════════════════════════
   OVERVIEW SECTION
   ════════════════════════════════════════════════════════════════ */
.p2-overview-section {
  background: var(--bg-primary);
  border-top: 1px solid rgba(229, 229, 229, 1);
}

.p2-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Trajan Pro Regular", serif;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--bg-alt);
  padding: 10px 20px;
  border-radius: 9999px;
  border: 1px solid rgba(229, 229, 229, 1);
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.p2-overview-pricing {
  margin: 30px 0;
}

.p2-overview-label {
  font-family: "Trajan Pro Regular", serif;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-primary);
  display: block;
  margin-bottom: 14px;
}

.p2-overview-price-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}

.p2-overview-price {
  font-family: "Crimson Pro", serif;
  font-size: 1.875rem;
  font-weight: 800;
  color: #ffffff;
  background: var(--bg-dark);
  padding: 12px 24px;
  border-radius: 0.75rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  letter-spacing: -0.025em;
}

.p2-overview-old-price {
  font-family: "Crimson Pro", serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: rgba(115, 115, 115, 1);
  text-decoration: line-through;
}

.p2-overview-urgency {
  font-family: "Trajan Pro Regular", serif;
  font-size: 0.875rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 10px;
}

.p2-overview-note {
  font-family: "Crimson Pro", serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(64, 64, 64, 1);
  letter-spacing: 0.025em;
}

/* Overview Image */
.p2-overview-image-wrap {
  position: relative;
  padding: 1px;
  border-radius: 2rem;
  overflow: hidden;
  background: linear-gradient(to bottom right, rgba(26, 26, 26, 0.05), #fff, rgba(229, 229, 229, 0.2));
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(229, 229, 229, 0.6);
}

.p2-overview-image-wrap img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: calc(2rem - 1px);
  background: var(--bg-alt);
}

.p2-overview-image-number {
  position: absolute;
  bottom: -20px;
  right: 40px;
  font-family: "Crimson Pro", serif;
  font-size: 220px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.3);
  line-height: 1;
  pointer-events: none;
}

/* Feature Pills */
.p2-overview-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 60px;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.p2-feature-pill {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px 24px;
  border-right: 1px solid var(--border-color);
  font-family: "Trajan Pro Regular", serif;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-secondary);
  min-width: 200px;
}

.p2-feature-pill:last-child {
  border-right: none;
}

.p2-feature-pill i {
  font-size: 18px;
  color: var(--accent);
}

.p2-feature-pill-accent {
  color: var(--accent);
}

/* Inclusive Banner */
.p2-inclusive-banner {
  margin-top: 48px;
  padding: 16px 24px;
  background: var(--bg-alt);
  border-radius: 9999px;
  border: 1px solid rgba(229, 229, 229, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.01);
  text-align: center;
  font-family: "Trajan Pro Regular", serif;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #000000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  line-height: 1.4;
}

.p2-inclusive-dot {
  color: var(--accent);
  font-size: 8px;
}


/* ---- Overview Centered Top Layout ---- */
.p2-overview-centered {
  text-align: center;
  margin-bottom: 20px;
}

.p2-overview-centered .p2-pill-badge {
  margin-bottom: 28px;
}

.p2-pill-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  margin-right: 4px;
  vertical-align: middle;
}

.p2-overview-main-title {
  font-size: 2.25rem;
  letter-spacing: -0.025em;
}

.p2-overview-subtitle {
  font-family: "Trajan Pro Regular", serif;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.p2-overview-sub-brand {
  color: var(--text-primary);
  font-weight: 600;
}

.p2-overview-sub-dot {
  margin: 0 8px;
  color: var(--text-muted);
}

.p2-overview-sub-location {
  color: var(--accent);
}

.p2-overview-description {
  font-size: 1.125rem;
  font-style: italic;
  border-left: 2px solid var(--accent);
  padding-left: 20px;
  margin-bottom: 30px;
}


/* ════════════════════════════════════════════════════════════════
   EVOLUTION OF LUXURY — Comparison Table
   ════════════════════════════════════════════════════════════════ */
.p2-evolution-section {
  background: var(--bg-primary);
  border-top: 1px solid rgba(229, 229, 229, 1);
}

.p2-evolution-table-wrap {
  margin: 40px auto 0;
  background: #F4F3EF;
  border-radius: 2rem;
  overflow: hidden;
  border: 1px solid rgba(229, 229, 229, 1);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.p2-evolution-table {
  width: 100%;
  border-collapse: collapse;
}

.p2-evolution-table thead th {
  font-family: "Trajan Pro Regular", serif;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #000000;
  padding: 32px;
  border-bottom: 1px solid #D4D4D4;
  text-align: left;
  background: rgba(229, 229, 229, 0.6);
}

.p2-evolution-table thead th.p2-evo-highlight-col {
  color: var(--accent);
  background: rgba(255, 255, 255, 0.2);
  border-left: 1px solid #D4D4D4;
}

.p2-evolution-table thead th:nth-child(2) {
  border-left: 1px solid #D4D4D4;
}

.p2-evolution-table tbody td {
  font-family: "Crimson Pro", serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: rgba(26, 26, 26, 0.9);
  padding: 32px;
  border-bottom: 1px solid #D4D4D4;
  vertical-align: middle;
  height: 100%;
}

.p2-evolution-table tbody td:nth-child(2),
.p2-evolution-table tbody td:nth-child(3) {
  border-left: 1px solid #D4D4D4;
}

/* .p2-evolution-table tbody td:first-child {
  border-left: none;
  display: flex;
  align-items: center;
  gap: 16px;
} */

.p2-evolution-table tbody tr:last-child td {
  border-bottom: none;
}

.p2-evolution-table tbody td:last-child {
  background: rgba(255, 255, 255, 0.4);
  position: relative;
  transition: background 0.3s ease;
}

.p2-evolution-table tbody tr:hover td:last-child {
  background: rgba(255, 255, 255, 0.8);
}

.p2-evolution-table tbody tr:hover td:last-child::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 3px;
  background: var(--accent);
  transform: scaleY(1);
  transition: transform 0.3s ease;
  transform-origin: center;
}

.p2-evolution-table tbody td em {
  font-style: italic;
  font-weight: 700;
  color: #000000;
}

.p2-evo-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: rgba(197, 140, 52, 0.3);
  border-radius: 50%;
  flex-shrink: 0;
  transition: background 0.3s ease 0s;
}

.p2-evolution-table tbody tr:hover .p2-evo-dot {
  background: var(--accent);
}

.p2-evo-upgrade-text {
  display: block;
  color: var(--accent);
  font-size: 1.125rem;
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1.4;
  margin-bottom: 12px;
}

.p2-evo-priority {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Trajan Pro Regular", serif;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #000000;
}

.p2-evo-priority i {
  font-size: 14px;
  color: var(--accent);
}

/* ════════════════════════════════════════════════════════════════
   GRAND SCALE V2 — Flip Card Layout
   ════════════════════════════════════════════════════════════════ */
.p2-grand-scale-v2 {
  margin: 48px auto 0;
}

.p2-gs-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.p2-gs-card {
  text-align: center;
  perspective: 600px;
  cursor: pointer;
  flex: 0 0 calc(20% - 16px);
  max-width: calc(20% - 16px);
}

.p2-gs-card-inner {
  position: relative;
  width: 100%;
  height: 100px;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transform-style: preserve-3d;
}

.p2-gs-card:hover .p2-gs-card-inner {
  transform: rotateX(180deg);
}

.p2-gs-front,
.p2-gs-back {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: 16px;
  border: 1px solid rgba(229, 229, 229, 0.8);
}

.p2-gs-front {
  background: var(--bg-primary);
}

.p2-gs-back {
  background: var(--bg-dark);
  transform: rotateX(180deg);
}

.p2-gs-multiplier {
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.02em;
  line-height: 1;
}

.p2-gs-x {
  font-size: 0.45em;
  font-weight: 400;
  color: var(--accent-light);
  letter-spacing: 0.05em;
  vertical-align: baseline;
}

.p2-gs-percent {
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 700;
  background: linear-gradient(135deg, #C58C34, #D4A65A);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
  line-height: 1;
}

.p2-gs-label {
  font-family: "Trajan Pro Regular", serif;
  font-size: clamp(9px, 0.7vw, 12px);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 14px 0 0;
  padding: 0 4px;
}


/* ════════════════════════════════════════════════════════════════
   USP CARDS — THE FIRSTS (Slide-Up Hover Animation)
   ════════════════════════════════════════════════════════════════ */
.p2-usp-section {
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(229, 229, 229, 1);
}

.p2-usp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(229, 229, 229, 1);
  border-left: 1px solid rgba(229, 229, 229, 1);
  background: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

/* Animated Background Lines */
.p2-bg-lines {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: space-between;
  /* padding: 0 10%; */
  z-index: 1;
  pointer-events: none;
}

.p2-bg-line {
  width: 1px;
  height: 100%;
  background: rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
}

.p2-bg-line-glow {
  position: absolute;
  top: -200px;
  left: 0;
  width: 100%;
  height: 200px;
  background: linear-gradient(to bottom, transparent, var(--accent), transparent);
  animation: lineGlow 4s ease-in-out infinite;
  opacity: 0.5;
}

@keyframes lineGlow {
  0% {
    top: -200px;
    opacity: 0;
  }

  20% {
    opacity: 0.5;
  }

  80% {
    opacity: 0.5;
  }

  100% {
    top: calc(100% + 200px);
    opacity: 0;
  }
}

.p2-usp-card {
  position: relative;
  background: var(--bg-alt);
  border-bottom: 1px solid rgba(229, 229, 229, 1);
  border-right: 1px solid rgba(229, 229, 229, 1);
  overflow: hidden;
  height: 240px;
  cursor: pointer;
}

.p2-usp-card:hover {
  /* no hover border */
}

.p2-usp-front {
  position: absolute;
  inset: 0;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: transform 600ms cubic-bezier(0.25, 1, 0.5, 1);
  background: var(--bg-primary);
  z-index: 10;
}

.p2-usp-card:hover .p2-usp-front {
  transform: translateY(-100%);
}

.p2-usp-number {
  position: absolute;
  bottom: -16px;
  right: 32px;
  font-family: "Crimson Pro", serif;
  font-size: 10rem;
  font-weight: 900;
  font-style: italic;
  color: rgba(136, 136, 136, 0.09);
  line-height: 1;
  pointer-events: none;
  -webkit-user-select: none;
  user-select: none;
  z-index: 0;
}

/* .p2-usp-card:nth-child(n+2) .p2-usp-number {
  font-size: 7rem;
} */

.p2-usp-icon-wrap {
  width: auto;
  height: auto;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  color: var(--accent);
}

.p2-usp-icon-wrap>span,
.p2-usp-icon-wrap>div {
  padding: 8px;
  background: var(--bg-alt);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.p2-usp-icon-wrap i {
  font-size: 24px;
  color: var(--accent);
}

.p2-usp-overtitle {
  font-family: "Trajan Pro Regular", serif;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
  display: block;
}

.p2-usp-title {
  font-family: "Crimson Pro", serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--text-primary);
  margin: 0 0 8px;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.p2-usp-text {
  font-family: "Crimson Pro", serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(115, 115, 115, 1);
  margin: 0;
  line-height: 1.5;
}

.p2-usp-expand {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 12px;
  height: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(163, 163, 163, 1);
  transition: transform 0.3s ease;
}

.p2-usp-expand i {
  font-size: 12px;
}

.p2-usp-card:hover .p2-usp-expand {
  transform: rotate(90deg);
}

/* Back — Dark / Black background on hover */
.p2-usp-back {
  position: absolute;
  inset: 0;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transform: translateY(100%);
  transition: transform 600ms cubic-bezier(0.25, 1, 0.5, 1);
  background: var(--bg-dark);
  z-index: 20;
}

.p2-usp-back::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent);
}

.p2-usp-card:hover .p2-usp-back {
  transform: translateY(0);
}

.p2-usp-back-overtitle {
  font-family: "Trajan Pro Regular", serif;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
  display: block;
}

.p2-usp-back-title {
  font-family: "Crimson Pro", serif;
  font-size: 1.125rem;
  font-weight: 400;
  color: #ffffff;
  margin: 0 0 12px;
  letter-spacing: -0.025em;
}

.p2-usp-back-text {
  font-family: "Crimson Pro", serif;
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(212, 212, 212, 1);
  line-height: 1.625;
  margin: 0;
}


/* ════════════════════════════════════════════════════════════════
   SCALE SECTION — Grid Cards with Hover Animation
   ════════════════════════════════════════════════════════════════ */
.p2-scale-section {
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(229, 229, 229, 1);
}

.p2-scale-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(229, 229, 229, 1);
  border-left: 1px solid rgba(229, 229, 229, 1);
  background: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.p2-scale-card {
  position: relative;
  background: var(--bg-alt);
  border-right: 1px solid rgba(229, 229, 229, 1);
  border-bottom: 1px solid rgba(229, 229, 229, 1);
  overflow: hidden;
  height: 240px;
  cursor: pointer;
}

.p2-scale-card:hover {
  /* no bg change */
}

.p2-scale-front {
  position: absolute;
  inset: 0;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: transform 600ms cubic-bezier(0.25, 1, 0.5, 1);
  background: var(--bg-primary);
  z-index: 10;
}

.p2-scale-card:hover .p2-scale-front {
  transform: translateY(-100%);
}

.p2-scale-back {
  position: absolute;
  inset: 0;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transform: translateY(100%);
  transition: transform 600ms cubic-bezier(0.25, 1, 0.5, 1);
  background: var(--bg-dark);
  z-index: 20;
}

.p2-scale-back::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent);
}

.p2-scale-card:hover .p2-scale-back {
  transform: translateY(0);
}

.p2-scale-expand {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 12px;
  height: 12px;
  color: rgba(163, 163, 163, 1);
  font-size: 12px;
  transition: transform 0.3s ease;
}

.p2-scale-card:hover .p2-scale-expand {
  transform: rotate(90deg);
}

.p2-scale-icon-wrap {
  padding: 8px;
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-alt);
  border: 1px solid rgba(229, 229, 229, 0.6);
  border-radius: 8px;
  margin-bottom: 12px;
}

.p2-scale-icon-wrap i {
  font-size: 20px;
  color: var(--accent);
}

.p2-scale-category {
  font-family: "Trajan Pro Regular", serif;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
  display: block;
}

.p2-scale-title {
  font-family: "Crimson Pro", serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--text-primary);
  margin: 0 0 8px;
  letter-spacing: -0.025em;
}

.p2-scale-text {
  font-family: "Crimson Pro", serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(115, 115, 115, 1);
  margin: 0;
}

.p2-scale-number {
  position: absolute;
  bottom: -16px;
  right: 32px;
  font-family: "Crimson Pro", serif;
  font-size: 7rem;
  font-weight: 900;
  font-style: italic;
  color: rgba(136, 136, 136, 0.09);
  line-height: 1;
  pointer-events: none;
  -webkit-user-select: none;
  user-select: none;
  z-index: 0;
}

.p2-scale-back-category {
  font-family: "Trajan Pro Regular", serif;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
  display: block;
}

.p2-scale-back-title {
  font-family: "Crimson Pro", serif;
  font-size: 1.125rem;
  font-weight: 400;
  color: #ffffff;
  margin: 0 0 12px;
  letter-spacing: -0.025em;
}

.p2-scale-back-text {
  font-family: "Crimson Pro", serif;
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(212, 212, 212, 1);
  line-height: 1.625;
  margin: 0;
}

/* Scale CTA Card */
.p2-scale-cta-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px;
  background: rgba(255, 255, 255, 0.5);
  cursor: default;
}

.p2-scale-cta-label {
  font-family: "Trajan Pro Regular", serif;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.p2-scale-cta-title {
  font-family: "Crimson Pro", serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 20px;
  line-height: 1.3;
}


/* Clubhouse Tagline */
.p2-clubhouse-tagline {
  font-family: "Trajan Pro Regular", serif;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent);
  margin: 16px 0 8px;
}

/* ════════════════════════════════════════════════════════════════
   PRICING — Comparison Table
   ════════════════════════════════════════════════════════════════ */
.p2-pricing-section {
  background: var(--bg-primary);
}

.p2-pricing-table-wrap {
  /* max-width: 1100px; */
  margin: 0 auto;
  border-radius: 2rem;
  overflow: hidden;
  background: #F4F3EF;
  border: 1px solid #D4D4D4;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.p2-pricing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}

.p2-pricing-table thead th {
  font-family: "Trajan Pro Regular", serif;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 32px;
  border-bottom: 1px solid #D4D4D4;
  background: rgba(229, 229, 229, 0.6);
}

.p2-pricing-table thead th:first-child {
  color: #000000;
  text-align: left;
  width: 35%;
}

.p2-pricing-table thead th:nth-child(2) {
  color: var(--accent);
  text-align: center;
  width: 32.5%;
  background: rgba(255, 255, 255, 0.2);
  border-left: 1px solid #D4D4D4;

}

.p2-pricing-table thead th:nth-child(3) {
  color: #991b1b;
  text-align: center;
  width: 32.5%;
  border-left: 1px solid #D4D4D4;
}

.p2-pricing-table tbody td {
  font-family: "Crimson Pro", serif;
  font-size: 1rem;
  font-weight: 700;
  padding: 32px;
  border-bottom: 1px solid #D4D4D4;
  color: rgba(26, 26, 26, 0.8);
  letter-spacing: 0.05em;
}

.p2-pricing-table tbody td:nth-child(2) {
  color: var(--accent);
  text-align: center;
  width: 32.5%;
  background: rgba(255, 255, 255, 0.2);
  border-left: 1px solid #D4D4D4;
}

.p2-pricing-table tbody td:nth-child(3) {
  text-align: center;
  border-left: 1px solid #D4D4D4;
}

.p2-pricing-table tbody tr {
  transition: background 0.2s ease;
}

.p2-pricing-table tbody tr:hover {
  background: rgba(229, 229, 229, 0.2);
}

.p2-pricing-table tbody td:first-child {
  font-weight: 600;
  color: var(--text-primary);
  text-align: left;
}

.p2-pricing-table tbody tr:last-child td {
  border-bottom: none;
}

.p2-price-highlight {
  text-align: center;
  color: var(--accent) !important;
  font-weight: 900 !important;
  background: rgba(255, 255, 255, 0.4);
  letter-spacing: -0.025em;
}

.p2-price-strikethrough {
  text-align: center;
  color: #991b1b !important;
  font-weight: 600 !important;
  text-decoration: line-through;
  text-decoration-color: #991b1b;
  border-left: 1px solid #D4D4D4;
}

.p2-pricing-note {
  max-width: fit-content;
  margin: 20px auto 0;
  padding: 16px 24px;
  background: var(--bg-alt);
  border: 1px solid rgba(229, 229, 229, 1);
  border-radius: 9999px;
  text-align: center;
}

.p2-pricing-note span {
  font-family: "Trajan Pro Regular", serif;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #000000;
}

.p2-pricing-note i {
  margin-right: 6px;
  color: var(--accent);
  font-size: 16px;
}


/* ════════════════════════════════════════════════════════════════
   CLUBHOUSE — Tabbed Amenities
   ════════════════════════════════════════════════════════════════ */
.p2-clubhouse-section {
  background: var(--bg-primary);
}

/* Tab Buttons */
.p2-amenity-tabs {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 30px;
  max-width: 300px;
}

.p2-amenity-tab {
  font-family: "Trajan Pro Regular", serif;
  font-size: 13px;
  letter-spacing: 4px;
  text-transform: uppercase;
  text-align: left;
  padding: 16px 24px;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  background: transparent;
  color: var(--text-secondary);
  cursor: pointer;
  transition: var(--transition);
  margin-bottom: -1px;
}

.p2-amenity-tab.active {
  background: var(--bg-dark);
  color: #ffffff;
  border-color: var(--bg-dark);
}

.p2-amenity-tab:hover:not(.active) {
  border-color: var(--accent);
  color: var(--accent);
}

/* Tab Panels */
.p2-amenity-panel {
  display: none;
}

.p2-amenity-panel.active {
  display: block;
}

.p2-amenity-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border-color);
}

.p2-amenity-item:last-child {
  border-bottom: none;
}

.p2-amenity-item>i {
  font-size: 28px;
  color: var(--text-muted);
  flex-shrink: 0;
  margin-top: 2px;
}

.p2-amenity-item h4 {
  font-family: "Crimson Pro", serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 4px;
}

.p2-amenity-item p {
  font-family: "Crimson Pro", serif;
  font-size: 21px;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.5;
}

.p2-amenity-badge {
  display: inline-block;
  font-family: "Trajan Pro Regular", serif;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 4px 12px;
  background: var(--bg-alt);
  border: 1px solid var(--border-color);
  border-radius: 4px;
  color: var(--text-secondary);
  vertical-align: middle;
  margin-left: 8px;
}

.p2-badge-first {
  background: rgba(197, 140, 52, 0.1);
  color: var(--accent);
  border-color: rgba(197, 140, 52, 0.2);
}

/* Structural Note */
.p2-structural-note {
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid var(--border-color);
  text-align: center;
}

.p2-structural-note p {
  font-family: "Trajan Pro Regular", serif;
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0;
}


/* ════════════════════════════════════════════════════════════════
   TRACK RECORD / DEVELOPER CREDIBILITY
   ════════════════════════════════════════════════════════════════ */
.p2-trust-section {
  background: var(--bg-primary);
}

.p2-trust-card {
  background: var(--bg-alt);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.p2-trust-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow);
}

.p2-trust-card-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgb(255, 255, 255);
  border: 1px solid rgba(197, 140, 52, 0.2);
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
  flex-shrink: 0;
}

.p2-trust-card-icon i {
  font-size: 20px;
  color: var(--accent);
}

.p2-trust-card h4 {
  font-family: "Trajan Pro Regular", serif;
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-primary);
  margin: 0;
  line-height: 1.5;
  word-break: break-word;
}

.p2-trust-card p {
  font-family: "Crimson Pro", serif;
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* HARERA Card */
.p2-harera-card {
  background: var(--bg-alt);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 52px 48px;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    border-color 0.3s ease;
}

/* Background shield-check watermark — large faded seal */
.p2-harera-card::before {
  content: "";
  position: absolute;
  top: 10%;
  right: -30px;
  width: 300px;
  height: 300px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c5a047' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z'/%3E%3Cpath d='m9 12 2 2 4-4'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.08;
  pointer-events: none;
  z-index: 0;
  transition: opacity 0.4s ease;
}

.p2-harera-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.08);
  border-color: rgba(197, 140, 52, 0.2);
}

.p2-harera-card:hover::before {
  opacity: 0.14;
}

/* All card content above watermark */
.p2-harera-card>* {
  position: relative;
  z-index: 1;
}

.p2-harera-label {
  font-family: "Trajan Pro Regular", serif;
  font-size: 11px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 16px;
}

.p2-harera-title {
  font-family: "Crimson Pro", serif;
  font-size: 44px;
  font-weight: 400;
  color: var(--text-primary);
  margin: 0 0 24px;
  line-height: 1.15;
}

.p2-harera-title em {
  font-style: italic;
}

.p2-harera-text {
  font-family: "Crimson Pro", serif;
  font-size: 19px;
  font-style: italic;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 340px;
}

.p2-harera-number {
  background: rgba(255, 255, 255, 0.6);
  border: none;
  border-left: 3px solid var(--accent);
  border-radius: 12px;
  padding: 22px 28px;
  margin-bottom: 32px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
}

.p2-harera-num-label {
  font-family: "Trajan Pro Regular", serif;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-secondary);
  display: block;
  margin-bottom: 8px;
}

.p2-harera-num-value {
  font-family: "Crimson Pro", serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0.5px;
}

.p2-harera-checks {
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-top: 1px solid var(--border-color);
  padding-top: 28px;
}

.p2-harera-checks span {
  font-family: "Trajan Pro Regular", serif;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-primary);
  display: flex;
  align-items: center;
}

.p2-harera-checks i {
  margin-right: 10px;
  font-size: 20px;
  color: var(--accent);
}


/* ════════════════════════════════════════════════════════════════
   LOCATION — Categorized Connectivity + Map
   ════════════════════════════════════════════════════════════════ */
.p2-location-section {
  background: var(--bg-primary);
}

.p2-connectivity-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  overflow: hidden;
}

.p2-conn-card {
  padding: 24px;
  border-right: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  background: var(--bg-alt);
}

.p2-conn-card:nth-child(2n) {
  border-right: none;
}

.p2-conn-card:nth-child(n+3) {
  border-bottom: none;
}

.p2-conn-category {
  font-family: "Trajan Pro Regular", serif;
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 16px;
}

.p2-conn-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}

.p2-conn-item+.p2-conn-item {
  border-top: 1px solid var(--border-light);
}

.p2-conn-item span {
  font-family: "Crimson Pro", serif;
  font-size: 18px;
  color: var(--text-primary);
}

.p2-conn-highlight {
  font-weight: 600 !important;
  color: var(--accent) !important;
}

.p2-conn-time-val {
  text-align: right;
}

.p2-conn-mins {
  font-family: "Crimson Pro", serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
  display: block;
  line-height: 1;
}

.p2-conn-mins-label {
  font-family: "Trajan Pro Regular", serif;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.p2-distance-note {
  margin-top: 12px;
}

.p2-distance-note p {
  font-family: "Crimson Pro", serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--bg-alt);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  margin: 0;
}

/* Nearby Infrastructure — full-width card */
.p2-conn-card-wide {
  grid-column: unset;
}

.p2-conn-infra-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.p2-conn-infra-row .p2-conn-item {
  flex: 1;
  min-width: 120px;
  justify-content: center;
  border-top: none;
  padding: 10px 12px;
  margin-top: 0;
}

/* Map */
.p2-map-wrap {
  position: sticky;
  top: 100px;
  border-radius: var(--radius);
  overflow: hidden;
}

.p2-map-address {
  text-align: center;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--border-color);
  border-radius: 32px;
  font-family: "Trajan Pro Regular", serif;
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-top: 16px;
}

/* Key Destinations */
.p2-key-destinations {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.p2-dest-item {
  flex: 1;
  min-width: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 20px 16px;
  background: var(--bg-alt);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.p2-dest-item:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow);
}

.p2-dest-time {
  font-family: "Trajan Pro Regular", serif;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 2px;
  color: var(--accent);
}

.p2-dest-name {
  font-family: "Crimson Pro", serif;
  font-size: 15px;
  color: var(--text-secondary);
  text-align: center;
}


/* ════════════════════════════════════════════════════════════════
   CONTACT SECTION — Pre-Launch Window
   ════════════════════════════════════════════════════════════════ */
.p2-contact-section {
  background: var(--bg-primary);
}

.p2-contact-title {
  font-family: "Crimson Pro", serif;
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 400;
  color: var(--text-primary);
  line-height: 1.1;
  margin: 20px 0 0;
}

.p2-contact-title-em {
  font-family: "Crimson Pro", serif;
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 400;
  margin: 0;
  line-height: 1.2;
}

.p2-contact-title-em em {
  color: var(--accent);
}

.p2-direct-line {
  margin-top: 24px;
}

.p2-direct-label {
  font-family: "Trajan Pro Regular", serif;
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--text-secondary);
  display: block;
  margin-bottom: 6px;
}

.p2-direct-phone {
  font-family: "Crimson Pro", serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--accent);
  font-style: italic;
}

.p2-contact-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.p2-contact-ctas .p2-btn-gold {
  white-space: nowrap;
  padding: 12px 24px;
  font-size: 13px;
}

/* Form Card */
.p2-callback-form-card {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.p2-form-title {
  font-family: "Crimson Pro", serif;
  font-size: 28px;
  font-weight: 400;
  color: var(--text-primary);
  margin: 0 0 4px;
}

.p2-form-title em {
  font-style: italic;
}

.p2-form-subtitle {
  font-family: "Trajan Pro Regular", serif;
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 24px;
}

.p2-form-group {
  margin-bottom: 20px;
}

.p2-form-group label {
  display: block;
  font-family: "Trajan Pro Regular", serif;
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 6px;
}

.p2-form-group input,
.p2-form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-family: "Crimson Pro", serif;
  font-size: 16px;
  color: var(--text-primary);
  background: #ffffff;
  transition: var(--transition);
}

.p2-form-group input:focus,
.p2-form-group select:focus {
  outline: none;
  border-color: var(--accent);
}

.p2-form-group input::placeholder {
  color: var(--text-muted);
}

.p2-btn-submit {
  width: 100%;
  padding: 16px 24px;
  background: var(--bg-dark);
  color: #ffffff;
  border: none;
  border-radius: var(--radius-sm);
  font-family: "Trajan Pro Regular", serif;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
}

.p2-btn-submit:hover {
  background: var(--accent);
}

.p2-btn-submit.loading {
  pointer-events: none;
  opacity: 0.85;
  position: relative;
  color: transparent !important;
}

.p2-btn-submit.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: p2-spin 0.6s linear infinite;
}

@keyframes p2-spin {
  to {
    transform: rotate(360deg);
  }
}

.p2-form-disclaimer {
  font-family: "Trajan Pro Regular", serif;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
  margin-top: 16px;
  line-height: 1.6;
}


/* ════════════════════════════════════════════════════════════════
   AUTO-POPUP MODAL
   ════════════════════════════════════════════════════════════════ */
.p2-auto-popup {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.p2-auto-popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
}

.p2-auto-popup-content {
  position: relative;
  background: var(--bg-primary);
  border-radius: var(--radius-lg);
  max-width: 1000px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 60px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.p2-auto-popup-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: 1px solid var(--border-color);
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  color: var(--text-primary);
  transition: var(--transition);
}

.p2-auto-popup-close:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.p2-auto-popup-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.p2-auto-popup-title {
  font-family: "Crimson Pro", serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400;
  color: var(--text-primary);
  line-height: 1.1;
  margin: 16px 0 0;
}

.p2-auto-popup-title-em {
  font-family: "Crimson Pro", serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400;
  margin: 0;
}

.p2-auto-popup-title-em em {
  color: var(--accent);
}

.p2-popup-form-card {
  background: rgba(244, 243, 239, 0.5) !important;
  border-color: var(--border-color) !important;
}


/* ════════════════════════════════════════════════════════════════
   CALLBACK MODAL (Bootstrap overrides)
   ════════════════════════════════════════════════════════════════ */
.p2-modal-content {
  border: none;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.p2-modal-inner {
  padding: 40px;
  position: relative;
}

.p2-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: 1px solid var(--border-color);
  border-radius: 50%;
  cursor: pointer;
  font-size: 16px;
  transition: var(--transition);
}

.p2-modal-close:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.p2-modal-header-block {
  margin-bottom: 24px;
}

.p2-modal-tag {
  font-family: "Trajan Pro Regular", serif;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 8px;
}

.p2-modal-title {
  font-family: "Crimson Pro", serif;
  font-size: 28px;
  font-weight: 400;
  color: var(--text-primary);
  margin: 0 0 8px;
}

.p2-modal-sub {
  font-family: "Crimson Pro", serif;
  font-size: 15px;
  color: var(--text-secondary);
  margin: 0;
}

.p2-modal-price-strip {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border-color);
  font-family: "Crimson Pro", serif;
  font-size: 14px;
  color: var(--text-secondary);
}

.p2-modal-price-strip strong {
  font-size: 18px;
  color: var(--text-primary);
}

.p2-modal-price-badge {
  font-family: "Trajan Pro Regular", serif;
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  padding: 4px 12px;
  border: 1px solid rgba(197, 140, 52, 0.2);
  border-radius: 12px;
}


/* Two-Panel Modal Layout (callback + download modals) */
.modal-dialog:has(> .p2-modal-twopanel) {
  max-width: 1200px;
}

.p2-modal-twopanel {
  max-width: 1200px;
}

.p2-modal-twopanel .modal-body {
  position: relative;
}

.p2-modal-twopanel .p2-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 10;
}

.p2-modal-twopanel-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 480px;
}

.p2-modal-twopanel-left {
  padding: 50px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.p2-modal-twopanel-right {
  padding: 0;
  display: flex;
  align-items: stretch;
}

.p2-modal-twopanel-right .p2-callback-form-card {
  border-radius: 0;
  border: none;
  border-left: 1px solid var(--border-color);
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (max-width: 767px) {
  .p2-modal-twopanel-inner {
    grid-template-columns: 1fr;
  }

  .p2-modal-twopanel-left {
    padding: 32px 24px 16px;
  }

  .p2-modal-twopanel-right .p2-callback-form-card {
    border-left: none;
    border-top: 1px solid var(--border-color);
  }
}


/* ════════════════════════════════════════════════════════════════
   DOWNLOADS TABLE
   ════════════════════════════════════════════════════════════════ */
.p2-downloads-section {
  background: var(--bg-primary);
}

.p2-btn-download {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: transparent;
  border: 1px solid var(--accent);
  border-radius: var(--radius-sm);
  font-family: "Trajan Pro Regular", serif;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.p2-btn-download i {
  font-size: 16px;
}

.p2-btn-download:hover {
  background: var(--accent);
  color: #ffffff;
}

.p2-downloads-table tbody td {
  vertical-align: middle;
  text-align: center;
}

.p2-downloads-table tbody td:first-child {
  font-family: "Crimson Pro", serif;
  font-size: 1.25rem;
  text-align: left;
}

/* Override pricing-table column colors for downloads */
.p2-downloads-table thead th:nth-child(2) {
  color: var(--accent);
  background: rgba(255, 255, 255, 0.2);
  border-left: 1px solid #D4D4D4;
}

.p2-downloads-table thead th:nth-child(3) {
  color: var(--accent);
  background: rgba(255, 255, 255, 0.2);
  border-left: 1px solid #D4D4D4;
}

.p2-downloads-table tbody td:nth-child(2),
.p2-downloads-table tbody td:nth-child(3) {
  background: rgba(255, 255, 255, 0.2);
}

.p2-downloads-table tbody td:nth-child(3) {
  border-left: 1px solid #D4D4D4;
}

.p2-downloads-table tbody tr:hover {
  background: rgba(229, 229, 229, 0.25);
}

@media (max-width: 767px) {

  /* Keep downloads table as a real table on mobile — horizontal scroll if needed */
  .p2-downloads-section .p2-pricing-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .p2-downloads-table {
    min-width: 520px;
  }

  .p2-downloads-table thead th {
    font-size: 8px;
    letter-spacing: 1.5px;
    padding: 14px 10px;
    white-space: nowrap;
  }

  .p2-downloads-table tbody td {
    padding: 14px 10px;
    font-size: 13px;
  }

  .p2-btn-download {
    font-size: 8px;
    letter-spacing: 1px;
    padding: 8px 12px;
    gap: 5px;
  }

  .p2-btn-download i {
    font-size: 13px;
  }
}


/* ════════════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════════════ */
.p2-footer {
  background: var(--bg-alt);
  padding: 80px 0 40px;
}

.p2-footer-brand {
  margin-bottom: 8px;
}

.p2-footer-logo-img {
  height: 80px;
  width: auto;
}

.p2-footer-logo-text {
  font-family: "Crimson Pro", serif;
  font-size: 28px;
  font-weight: 400;
  color: var(--text-primary);
  margin: 0;
}

.p2-footer-logo-sub {
  font-family: "Trajan Pro Regular", serif;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
}

.p2-footer-social {
  display: flex;
  gap: 12px;
}

.p2-footer-social a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-color);
  border-radius: 50%;
  color: var(--text-secondary);
  font-size: 14px;
  transition: var(--transition);
}

.p2-footer-social a:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.p2-footer-label {
  font-family: "Trajan Pro Regular", serif;
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 14px;
}

.p2-footer-sub-label {
  font-family: "Trajan Pro Regular", serif;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.p2-footer-rera {
  font-family: "Crimson Pro", serif;
  font-size: 16px;
  color: var(--text-secondary);
}

.p2-footer-text {
  font-family: "Crimson Pro", serif;
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.p2-footer-phone {
  font-family: "Crimson Pro", serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.p2-footer-disclaimer {
  margin-top: 50px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
}

.p2-footer-disclaimer p {
  font-family: "Trajan Pro Regular", serif;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.8;
  margin: 0;
}

.p2-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  margin-top: 24px;
  border-top: 1px solid var(--border-color);
}

.p2-footer-copy {
  font-family: "Crimson Pro", serif;
  font-size: 13px;
  color: var(--text-muted);
}

.p2-footer-tagline {
  font-family: "Crimson Pro", serif;
  font-size: 13px;
  color: var(--text-muted);
}


/* ════════════════════════════════════════════════════════════════
   STICKY BOTTOM BAR
   ════════════════════════════════════════════════════════════════ */
.p2-sticky-bottom {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: var(--bg-primary);
  border-top: 2px solid var(--accent);
  padding: 10px 0;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.06);
}

.p2-sticky-bottom.visible {
  transform: translateY(0);
}

.p2-sticky-brand {
  font-family: "Trajan Pro Regular", serif;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  white-space: nowrap;
}

.p2-sticky-dot {
  color: var(--text-muted);
  flex-shrink: 0;
}

.p2-sticky-detail {
  font-family: "Crimson Pro", serif;
  font-size: 14px;
  color: var(--text-primary);
  white-space: nowrap;
}

.p2-sticky-detail strong {
  color: var(--accent);
}

.p2-sticky-urgency {
  font-family: "Trajan Pro Regular", serif;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  white-space: nowrap;
}

.p2-sticky-cta {
  font-family: "Trajan Pro Regular", serif;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 12px 28px;
  background: var(--bg-dark);
  color: #ffffff;
  border: 1px solid var(--bg-dark);
  border-radius: 32px;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
}

.p2-sticky-cta:hover {
  background: var(--accent);
  border-color: var(--accent);
}

/* Mobile sticky */
.p2-sticky-mobile-btn {
  font-family: "Trajan Pro Regular", serif;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 12px 16px;
  background: var(--bg-dark);
  color: #ffffff;
  border: none;
  border-radius: 32px;
  cursor: pointer;
  text-align: center;
}

.p2-sticky-mobile-call {
  font-family: "Trajan Pro Regular", serif;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 12px 16px;
  background: var(--accent);
  color: #ffffff;
  border-radius: 32px;
  text-align: center;
}


/* ════════════════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════════════════ */
@media (max-width: 991px) {
  .p2-section {
    padding: var(--section-pad-sm);
  }

  .p2-hero.p2-hero-imageonly {
    padding-top: 64px;
  }

  /* Downloads table: horizontal scroll on tablet + mobile */
  /* Downloads table: outer wrapper clips to rounded corners */
  .p2-downloads-section .p2-pricing-table-wrap {
    overflow: hidden;
  }

  /* Inner wrapper scrolls horizontally */
  .p2-downloads-table-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--accent) transparent;
  }

  .p2-downloads-table-scroll::-webkit-scrollbar {
    height: 4px;
  }

  .p2-downloads-table-scroll::-webkit-scrollbar-track {
    background: transparent;
  }

  .p2-downloads-table-scroll::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 4px;
  }

  /* Navbar: pill mode on tablet */
  .p2-navbar-inner {
    padding: 0 24px;
  }

  .p2-hero-overlay-text {
    display: none;
  }

  .p2-highlights-row {
    flex-wrap: wrap;
  }

  .p2-highlight {
    flex: 0 0 50%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }

  .p2-usp-grid {
    grid-template-columns: 1fr;
  }

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

  .p2-scale-card:nth-child(3n) {
    border-right: 1px solid var(--border-color);
  }

  .p2-scale-card:nth-child(2n) {
    border-right: none;
  }

  .p2-scale-card:nth-child(n+4) {
    border-bottom: 1px solid var(--border-color);
  }

  .p2-scale-card:nth-child(n+5) {
    border-bottom: none;
  }

  .p2-overview-features {
    flex-direction: column;
  }

  .p2-feature-pill {
    border-right: none;
    border-bottom: 1px solid var(--border-color);
  }

  .p2-feature-pill:last-child {
    border-bottom: none;
  }

  /* Trust cards now use Bootstrap row/col — no grid override needed */

  .p2-connectivity-grid {
    grid-template-columns: 1fr;
  }

  .p2-conn-card {
    border-right: none;
    border-bottom: 1px solid var(--border-color);
  }

  .p2-conn-card:last-child {
    border-bottom: none;
  }

  .p2-auto-popup-inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .p2-auto-popup-content {
    padding: 30px;
  }

  /* USP/Scale cards: touch-friendly */
  .p2-usp-card,
  .p2-scale-card {
    min-height: 260px;
  }

  .p2-overview-image-wrap img {
    height: 300px;
  }

  .p2-overview-price {
    font-size: 32px;
    padding: 6px 18px;
  }

  .p2-contact-title {
    font-size: 36px;
  }

  .p2-contact-title-em {
    font-size: 36px;
  }

  .p2-section-title {
    font-size: 36px;
  }

  .p2-harera-card {
    padding: 30px;
  }

  .p2-pricing-table-wrap {
    border-radius: 1.2rem;
  }
}

@media (max-width: 767px) {
  .p2-hero-title {
    font-size: 16px;
    letter-spacing: 5px;
  }

  .p2-hero-logo-img {
    height: 50px;
  }

  .p2-hero-rera {
    font-size: 10px;
    margin-bottom: 24px;
  }

  .p2-highlight {
    flex: 0 0 100%;
  }

  .p2-scale-grid {
    grid-template-columns: 1fr;
  }

  .p2-scale-card {
    border-right: none !important;
    border-bottom: 1px solid var(--border-color) !important;
  }

  .p2-scale-card:last-child {
    border-bottom: none !important;
  }

  .p2-banner-strip {
    font-size: 10px;
    letter-spacing: 1.5px;
    padding: 14px 16px;
  }

  .p2-inclusive-banner {
    font-size: 9px;
    letter-spacing: 1.5px;
    padding: 12px 16px;
    flex-direction: column;
    gap: 4px;
  }

  .p2-footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .p2-pricing-table thead th,
  .p2-pricing-table tbody td {
    padding: 14px 12px;
    font-size: 14px;
  }

  .p2-pricing-table thead th {
    font-size: 9px;
    letter-spacing: 2px;
  }

  .p2-pricing-table-wrap {
    border-radius: 1rem;
  }

  .p2-auto-popup-left {
    display: none;
  }

  .p2-auto-popup-inner {
    grid-template-columns: 1fr;
  }

  .p2-section-title {
    font-size: 28px;
  }

  .p2-body-italic {
    font-size: 18px;
  }

  .p2-overview-price {
    font-size: 26px;
    padding: 6px 14px;
  }

  .p2-overview-old-price {
    font-size: 18px;
  }

  .p2-overview-image-wrap img {
    height: 250px;
  }

  .p2-overview-image-number {
    font-size: 140px;
  }

  .p2-amenity-tabs {
    max-width: 100%;
  }

  /* Trust cards: mobile sizing */
  .p2-trust-card {
    padding: 20px 16px;
  }

  .p2-trust-card-icon {
    width: 36px;
    height: 36px;
    margin-bottom: 12px;
  }

  .p2-trust-card-icon i {
    font-size: 16px;
  }

  .p2-trust-card h4 {
    font-size: 10px;
    letter-spacing: 1.5px;
    line-height: 1.6;
  }

  .p2-callback-form-card {
    padding: 24px;
  }

  .p2-contact-title {
    font-size: 28px;
  }

  .p2-contact-title-em {
    font-size: 28px;
  }

  .p2-hero-media-gradient {
    background: linear-gradient(to right,
        rgba(10, 10, 10, 0.95) 0%,
        rgba(10, 10, 10, 0.80) 50%,
        rgba(10, 10, 10, 0.3) 100%);
  }

  .p2-navbar-inner {
    padding: 0 16px;
  }

  .p2-logo {
    height: 28px;
  }

  .p2-harera-card {
    padding: 24px;
  }

  .p2-harera-title {
    font-size: 28px;
  }

  .p2-direct-phone {
    font-size: 20px;
  }

  .p2-map-wrap iframe {
    height: 280px;
  }

  .p2-conn-mins {
    font-size: 20px;
  }

  .p2-footer {
    padding: 50px 0 30px;
  }

  .p2-sticky-bottom {
    padding: 10px 12px;
  }

  .p2-auto-popup-content {
    padding: 20px;
  }

  /* Better touch targets for mobile cards */
  .p2-usp-card {
    height: auto;
    min-height: 280px;
  }

  .p2-scale-card {
    min-height: 240px;
  }

  .p2-btn-dark {
    font-size: 10px;
    letter-spacing: 2px;
    padding: 14px 28px;
  }

  .p2-btn-gold {
    font-size: 10px;
    letter-spacing: 2px;
    padding: 12px 24px;
  }

  .p2-amenity-tabs {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
  }

  .p2-amenity-tab {
    flex: 1;
    min-width: calc(50% - 8px);
    font-size: 9px;
    letter-spacing: 1.5px;
    text-align: center;
    padding: 12px 10px;
    margin-bottom: 0;
  }

  .p2-footer-disclaimer {
    padding: 16px;
  }

  .p2-footer-disclaimer p {
    font-size: 7px;
    letter-spacing: 0.5px;
  }

  /* Evolution table responsive */
  .p2-evolution-table-wrap {
    border-radius: 1rem;
    overflow-x: auto;
  }

  .p2-evolution-table thead th {
    font-size: 9px;
    letter-spacing: 2px;
    padding: 16px 16px;
    white-space: nowrap;
  }

  .p2-evolution-table tbody td {
    padding: 18px 16px;
    font-size: 14px;
  }

  .p2-evo-upgrade-text {
    font-size: 14px;
  }

  .p2-evo-priority {
    font-size: 8px;
    letter-spacing: 1.5px;
  }

  /* Grand Scale V2 responsive — tablet */
  .p2-gs-grid {
    gap: 14px;
  }

  .p2-gs-card {
    flex: 0 0 calc(33.333% - 10px);
    max-width: calc(33.333% - 10px);
  }

  .p2-gs-card-inner {
    height: 80px;
  }

  .p2-gs-multiplier {
    font-size: 24px;
  }

  .p2-gs-percent {
    font-size: 22px;
  }

  .p2-gs-label {
    font-size: 9px;
  }

  /* Overview centered responsive */
  .p2-overview-main-title {
    font-size: 28px;
  }

  .p2-overview-subtitle {
    font-size: 10px;
    letter-spacing: 2px;
  }

  .p2-overview-description {
    font-size: 18px;
  }
}

/* Extra small devices */
@media (max-width: 480px) {
  .p2-hero-title {
    font-size: 14px;
    letter-spacing: 4px;
  }

  .p2-hero.p2-hero-imageonly {
    padding-top: 64px;
  }

  .p2-hero-logo-img {
    height: 40px;
  }

  .p2-pricing-table thead th {
    font-size: 8px;
    letter-spacing: 1.5px;
    padding: 12px 8px;
  }

  .p2-pricing-table tbody td {
    font-size: 12px;
    padding: 14px 8px;
  }

  .p2-section-title {
    font-size: 24px;
  }

  .p2-usp-card {
    height: auto;
    min-height: 250px;
  }

  .p2-usp-title {
    font-size: 20px;
  }

  .p2-scale-title {
    font-size: 18px;
  }

  /* Grand Scale V2 responsive — mobile */
  .p2-gs-grid {
    gap: 10px;
  }

  .p2-gs-card {
    flex: 0 0 calc(50% - 5px);
    max-width: calc(50% - 5px);
  }

  .p2-gs-card-inner {
    height: 70px;
  }

  .p2-gs-multiplier {
    font-size: 20px;
  }

  .p2-gs-percent {
    font-size: 18px;
  }

  .p2-gs-label {
    font-size: 8px;
    letter-spacing: 0.04em;
  }
}


/* ════════════════════════════════════════════════════════════════
   BREAKPOINT: md (768px+) — Scale up to medium desktop
   ════════════════════════════════════════════════════════════════ */
@media (min-width: 768px) {
  .p2-section-tag {
    font-size: 0.875rem;
  }

  .p2-section-title {
    font-size: 3.75rem;
  }

  .p2-body-text {
    font-size: 1.125rem;
  }

  .p2-body-italic {
    font-size: 1.5rem;
  }

  .p2-overview-main-title {
    font-size: 3.75rem;
  }

  .p2-overview-price {
    font-size: 3rem;
  }

  .p2-overview-old-price {
    font-size: 1.25rem;
  }

  .p2-btn-gold {
    font-size: 0.875rem;
    padding: 16px 32px;
  }

  .p2-contact-title,
  .p2-contact-title-em {
    font-size: 3.75rem;
  }

  .p2-usp-title {
    font-size: 1.5rem;
  }

  .p2-usp-back-title {
    font-size: 1.875rem;
  }

  .p2-scale-title {
    font-size: 1.5rem;
  }

  .p2-scale-back-title {
    font-size: 1.25rem;
  }

  .p2-evolution-table tbody td {
    font-size: 1.125rem;
  }

  .p2-evo-upgrade-text {
    font-size: 1.125rem;
  }
}


/* ════════════════════════════════════════════════════════════════
   BREAKPOINT: lg compact (992px–1279px) — Tight desktop nav
   ════════════════════════════════════════════════════════════════ */
@media (min-width: 992px) and (max-width: 1279px) {
  .p2-nav-links {
    gap: 2px;
  }

  .p2-nav-link {
    font-size: 10px;
    letter-spacing: 0.1em;
    padding: 8px 10px;
  }

  .p2-navbar.scrolled .p2-nav-link {
    font-size: 9px;
    letter-spacing: 0.08em;
    padding: 6px 8px;
  }

  .p2-prelaunch-badge {
    font-size: 9px;
    padding: 6px 10px;
    letter-spacing: 0.08em;
    gap: 5px;
  }

  .p2-nav-cta {
    font-size: 9px;
    letter-spacing: 0.12em;
    padding: 10px 20px;
  }

  .p2-navbar.scrolled .p2-prelaunch-badge {
    font-size: 8px;
    padding: 5px 8px;
  }

  .p2-navbar.scrolled .p2-nav-cta {
    font-size: 8px;
    padding: 8px 16px;
  }

  .p2-logo {
    height: 30px;
  }

  .p2-navbar.scrolled .p2-logo {
    height: 50px;
  }
}


/* ════════════════════════════════════════════════════════════════
   BREAKPOINT: lg (1024px+) — Full desktop
   ════════════════════════════════════════════════════════════════ */
@media (min-width: 1024px) {
  .p2-usp-title {
    font-size: 1.5rem;
  }

  .p2-scale-title {
    font-size: 1.5rem;
  }
}


/* ════════════════════════════════════════════════════════════════
   BREAKPOINT: 1600px+ — Extra-large screens (reference min-[1600px])
   ════════════════════════════════════════════════════════════════ */
@media (min-width: 1600px) {

  /* Nav */
  .p2-nav-link {
    font-size: 1rem;
  }

  .p2-nav-cta {
    font-size: 0.75rem;
  }

  .p2-prelaunch-badge {
    font-size: 0.875rem;
    padding: 12px 20px;
  }

  .p2-pulse-dot {
    width: 8px;
    height: 8px;
  }

  /* Section tags & titles */
  .p2-section-tag {
    font-size: 0.75rem;
  }

  .p2-section-title {
    font-size: 4.5rem;
    line-height: 1.12;
  }

  /* Body text */
  .p2-body-text {
    font-size: 1.4rem;
  }

  .p2-body-italic {
    font-size: 1.875rem;
  }

  /* Overview */
  .p2-overview-main-title {
    font-size: 4.5rem;
  }

  .p2-overview-subtitle {
    font-size: 1rem;
  }

  .p2-overview-price {
    font-size: 3.75rem;
    padding: 16px 32px;
  }

  .p2-overview-old-price {
    font-size: 1.5rem;
  }

  .p2-overview-urgency {
    font-size: 1.125rem;
  }

  .p2-overview-note {
    font-size: 1rem;
  }

  /* USP Cards */
  .p2-usp-card {
    height: 320px;
  }

  .p2-usp-overtitle {
    font-size: 0.75rem;
  }

  .p2-usp-title {
    font-size: 1.875rem;
  }

  .p2-usp-text {
    font-size: 0.875rem;
  }

  .p2-usp-icon-wrap {
    padding: 12px;
  }

  .p2-usp-icon-wrap i,
  .p2-usp-icon-wrap svg {
    width: 32px;
    height: 32px;
    font-size: 32px;
  }

  .p2-usp-back-title {
    font-size: 1.875rem;
  }

  .p2-usp-back-text {
    font-size: 1.25rem;
  }

  /* Scale Cards */
  .p2-scale-card {
    height: 320px;
  }

  .p2-scale-overtitle {
    font-size: 0.75rem;
  }

  .p2-scale-title {
    font-size: 1.875rem;
  }

  .p2-scale-text {
    font-size: 0.875rem;
  }

  .p2-scale-back-title {
    font-size: 1.875rem;
  }

  .p2-scale-back-text {
    font-size: 1.25rem;
  }

  /* Evolution table */
  .p2-evolution-table thead th {
    font-size: 1rem;
    padding: 24px 40px;
  }

  .p2-evolution-table tbody td {
    font-size: 1.25rem;
    padding: 24px 40px;
  }

  .p2-evo-upgrade-text {
    font-size: 1.25rem;
  }

  .p2-evo-priority {
    font-size: 0.875rem;
  }

  /* Grand Scale V2 — large screens */
  .p2-gs-card-inner {
    height: 120px;
  }

  .p2-gs-multiplier {
    font-size: 56px;
  }

  .p2-gs-percent {
    font-size: 48px;
  }

  .p2-gs-label {
    font-size: 13px;
  }

  /* Buttons */
  .p2-btn-gold {
    font-size: 1rem;
    padding: 20px 40px;
  }

  .p2-btn-dark {
    font-size: 0.75rem;
    padding: 20px 56px;
  }

  /* Contact */
  .p2-contact-title,
  .p2-contact-title-em {
    font-size: 4.5rem;
  }

  .p2-form-title {
    font-size: 2rem;
  }

  /* Pricing table */
  .p2-pricing-table thead th {
    font-size: 1rem;
  }

  .p2-pricing-table tbody td {
    font-size: 1.375rem;
  }
}