/* ═══════════════════════════════════════════════════
   SP HEARTLAND — MULUND, MUMBAI
   Design: Minimal Scandinavian Luxury · Light Theme
   Fonts : Tenor Sans (display) · Jost (body)
   ═══════════════════════════════════════════════════ */

/* ════════════════════════════
   1. TOKENS
   ════════════════════════════ */
:root {
  /* Brand */
  --navy: #1B3A8C;
  --navy-dk: #0f2260;
  --navy-lt: #eef2fb;
  --sky: #0099CC;
  --sky-lt: #e0f5fb;
  --gold: #8B7D3A;
  --gold-br: #a8974a;
  --gold-lt: #f8f4e8;

  /* Neutrals — Scandi palette */
  --white: #ffffff;
  --chalk: #FAFAF8;
  --linen: #F4F1EC;
  --sand: #EDE9E1;
  --warm-gray: #D6D0C8;
  --mid-gray: #9A9590;
  --text: #1C1C1A;
  --text-muted: #6B6660;

  /* Typography */
  --f-display: 'Tenor Sans', Georgia, serif;
  --f-body: 'Jost', 'Inter', sans-serif;

  /* Radii */
  --r-none: 0px;
  --r-xs: 3px;
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-xl: 32px;
  --r-full: 9999px;

  /* Shadows */
  --sh-xs: 0 1px 4px rgba(28, 28, 26, .06);
  --sh-sm: 0 2px 12px rgba(28, 28, 26, .08);
  --sh-md: 0 6px 28px rgba(28, 28, 26, .1);
  --sh-lg: 0 16px 56px rgba(28, 28, 26, .13);
  --sh-xl: 0 28px 80px rgba(28, 28, 26, .16);
  --sh-gold: 0 8px 28px rgba(139, 125, 58, .2);
  --sh-navy: 0 8px 28px rgba(27, 58, 140, .2);

  /* Motion */
  --ease: cubic-bezier(.25, .8, .25, 1);
  --ease-out: cubic-bezier(0, 0, .2, 1);
  --ease-spring: cubic-bezier(.34, 1.56, .64, 1);
  --t1: .15s;
  --t2: .3s;
  --t3: .55s;
}

/* ════════════════════════════
   2. RESET
   ════════════════════════════ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--f-body);
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

button {
  font-family: var(--f-body);
  cursor: pointer;
  border: none;
  background: none;
  outline: none;
}

ul {
  list-style: none;
}

h1,
h2,
h3,
h4 {
  font-family: var(--f-display);
  line-height: 1.12;
  font-weight: 400;
}

p {
  line-height: 1.85;
}

::-webkit-scrollbar {
  width: 3px;
}

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

::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: var(--r-full);
}

/* ════════════════════════════
   3. LAYOUT UTILS
   ════════════════════════════ */
.wrap {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 72px;
}

.section {
  padding: 100px 0;
}

.section--chalk {
  background: var(--chalk);
}

.section--linen {
  background: var(--linen);
}

.section--sand {
  background: var(--sand);
}

.section--navy {
  background: var(--navy);
}

.section--dark {
  background: var(--text);
}

/* Scandi label */
.s-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--f-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.s-label::after {
  content: '';
  flex: 1;
  max-width: 40px;
  height: 1px;
  background: var(--gold);
  border-radius: var(--r-full);
}

/* Heading */
.s-heading {
  font-size: clamp(32px, 3.8vw, 52px);
  /* font-size: clamp(32px, 3.8vw, 58px); */
  font-weight: 400;
  color: var(--text);
  letter-spacing: -.5px;
}

.s-heading em {
  color: var(--gold);
  font-style: italic;
}

.s-heading--white {
  color: var(--white);
}

.s-heading--white em {
  color: #f4d06a;
}

/* Sub */
.s-sub {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.9;
  max-width: 520px;
  margin-top: 18px;
}

.s-sub--white {
  color: rgba(255, 255, 255, .65);
}

/* Thin rule */
.s-rule {
  width: 1px;
  height: 56px;
  background: linear-gradient(180deg, var(--gold), transparent);
  margin: 24px 0 32px;
}

.s-rule--h {
  width: 56px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  /* margin: 24px 0 32px; */
  margin: 16px 0 16px;
}

/* ════════════════════════════
   4. BUTTONS
   ════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--f-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 15px 32px;
  border-radius: var(--r-none);
  transition: all var(--t2) var(--ease);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

/* Ripple */
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, .08);
  transform: translateX(-101%);
  transition: transform var(--t2) var(--ease-out);
}

.btn:hover::before {
  transform: translateX(0);
}

.btn--navy {
  background: var(--navy);
  color: var(--white);
}

.btn--navy:hover {
  background: var(--navy-dk);
  transform: translateY(-1px);
  box-shadow: var(--sh-navy);
}

.btn--gold {
  background: var(--gold);
  color: var(--white);
}

.btn--gold:hover {
  background: var(--gold-br);
  transform: translateY(-1px);
  box-shadow: var(--sh-gold);
}

.btn--outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--warm-gray);
}

.btn--outline:hover {
  border-color: var(--navy);
  color: var(--navy);
}

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, .4);
}

.btn--outline-white:hover {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .8);
}

.btn--outline-navy {
  background: transparent;
  color: var(--navy);
  border: 1px solid var(--navy);
}

.btn--outline-navy:hover {
  background: var(--navy);
  color: #fff;
}

.btn--text {
  background: none;
  color: var(--navy);
  padding: 0;
  letter-spacing: 1.5px;
  font-size: 11px;
  border-bottom: 1px solid transparent;
}

.btn--text:hover {
  border-color: var(--navy);
}

.btn--sm {
  padding: 11px 22px;
  font-size: 11px;
  letter-spacing: 1.8px;
}

.btn--lg {
  padding: 18px 44px;
  font-size: 12px;
}
.sp-hero-actions .btn--lg {
  padding: 12px 16px;
  font-size: 10px;
}
.btn--full {
  width: 100%;
}

.btn[disabled] {
  opacity: .5;
  cursor: not-allowed;
  transform: none !important;
}

/* Spinner */
.sp-spinner {
  width: 15px;
  height: 15px;
  border: 1.5px solid rgba(255, 255, 255, .3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin .7s linear infinite;
  display: none;
}

.btn.loading .sp-spinner {
  display: inline-block;
}

.btn.loading .btn-lbl {
  display: none;
}

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

/* ════════════════════════════
   5. NAV
   ════════════════════════════ */
.sp-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 72px;
  display: flex;
  align-items: center;
  background: rgba(250, 250, 248, .95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--sand);
  transition: box-shadow var(--t2) var(--ease);
}

.sp-nav.scrolled {
  box-shadow: 0 1px 20px rgba(28, 28, 26, .07);
}

.sp-nav-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 72px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

/* Logo */
.sp-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  flex-shrink: 0;
  cursor: pointer;
}

.sp-logo img {
  height: 40px;
}
@media (max-width: 576px) {
  .sp-logo img {
    height: 32px;
  }
}
.sp-logo-top {
  font-family: var(--f-body);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--mid-gray);
}

.sp-logo-main {
  font-family: var(--f-display);
  font-size: 21px;
  color: var(--text);
  letter-spacing: .3px;
  margin-top: 2px;
}

.sp-logo-main span {
  color: var(--gold);
}

.sp-logo-loc {
  font-family: var(--f-body);
  font-size: 8.5px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--warm-gray);
  margin-top: 2px;
}

/* Links */
.sp-nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: center;
}

.sp-nav-links a {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 8px 16px;
  position: relative;
  transition: color var(--t1);
}

.sp-nav-links a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  right: 50%;
  height: 1px;
  background: var(--gold);
  transition: left var(--t2) var(--ease), right var(--t2) var(--ease);
}

.sp-nav-links a:hover {
  color: var(--text);
}

.sp-nav-links a:hover::after {
  left: 16px;
  right: 16px;
}

/* Actions */
.sp-nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* Nav divider */
.sp-nav-divider {
  width: 1px;
  height: 20px;
  background: var(--sand);
}

/* Hamburger */
.sp-ham {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 10px 8px;
  cursor: pointer;
  border: 1px solid var(--sand);
  border-radius: var(--r-xs);
  transition: border-color var(--t1);
  flex-shrink: 0;
}

.sp-ham:hover {
  border-color: var(--navy);
}

.sp-ham span {
  display: block;
  height: 1px;
  background: var(--text);
  border-radius: var(--r-full);
  transition: all var(--t2) var(--ease);
}

.sp-ham span:nth-child(2) {
  width: 70%;
}

.sp-ham.open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.sp-ham.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.sp-ham.open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Mobile drawer */
.sp-drawer {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: var(--chalk);
  z-index: 999;
  border-bottom: 1px solid var(--sand);
  transform: translateY(-110%);
  transition: transform var(--t3) var(--ease-out);
  box-shadow: var(--sh-lg);
}

.sp-drawer.open {
  transform: translateY(0);
}

.sp-drawer-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 28px;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text);
  border-bottom: 1px solid var(--sand);
  transition: background var(--t1), color var(--t1);
}

.sp-drawer-link:hover {
  background: var(--linen);
  color: var(--navy);
}

.sp-drawer-link span {
  font-size: 10px;
  color: var(--warm-gray);
}

.sp-drawer-btns {
  padding: 20px 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

/* ════════════════════════════
   6. HERO — FULL-SCREEN SPLIT
   ════════════════════════════ */
.sp-hero {
  position: fixed;
  /* will be relative via JS trigger */
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: flex;
  overflow: hidden;
  margin-top: 72px;
}

/* LEFT: text panel */
.sp-hero-left {
  width: 44%;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 80px 80px 80px;
  background: var(--chalk);
  position: relative;
  z-index: 2;
}
/* @media (max-width: 992px) {
  .sp-hero-left{
  background: url(../assets/images/hero1.jpg);
  background-size: cover;
  background-position: center;
  
}
} */

/* Scandi wedge separator */
.sp-hero-left::after {
  content: '';
  position: absolute;
  top: 0;
  right: -64px;
  bottom: 0;
  width: 128px;
  background: var(--chalk);
  clip-path: polygon(0 0, 50% 0, 100% 50%, 50% 100%, 0 100%);
  z-index: 3;
  pointer-events: none;
}

/* Slide counter */
.sp-hero-counter {
  position: absolute;
  bottom: 48px;
  left: 80px;
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 10;
}

.sp-hero-count-num {
  font-family: var(--f-display);
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 2px;
}

.sp-hero-count-bar {
  width: 60px;
  height: 1px;
  background: var(--warm-gray);
  position: relative;
  overflow: hidden;
}

.sp-hero-count-bar::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  background: var(--gold);
  width: 33.3%;
  transition: width .5s var(--ease);
}

.sp-hero-count-bar[data-slide="1"]::after {
  width: 33.3%;
}

.sp-hero-count-bar[data-slide="2"]::after {
  width: 66.6%;
}

.sp-hero-count-bar[data-slide="3"]::after {
  width: 100%;
}

.sp-hero-nav-btns {
  display: flex;
  gap: 8px;
  position: absolute;
  bottom: 40px;
  right: 48px;
  z-index: 20;
}

.sp-hero-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--warm-gray);
  background: rgba(250, 250, 248, .9);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text);
  font-size: 16px;
  transition: all var(--t2) var(--ease);
}

.sp-hero-nav-btn:hover {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

/* Hero badge pill */
.sp-hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--sand);
  border-radius: var(--r-full);
  padding: 6px 16px 6px 8px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 28px;
  width: fit-content;
}

.sp-hero-pill-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--navy-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

/* Hero title */
.sp-hero-title {
  font-size: 50px;
  font-weight: 400;
  letter-spacing: -1px;
  color: var(--text);
  line-height: 1.08;
  margin-bottom: 20px;
}

.sp-hero-title em {
  color: var(--gold);
  font-style: italic;
}
@media (max-width: 768px) {
  .sp-hero-title {
    font-size: 40px;
  }
}
/* Hero desc */
.sp-hero-desc {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.9;
  max-width: 380px;
  margin-bottom: 32px;
}

/* Hero tags */
.sp-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 36px;
}

.sp-hero-tag {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  background: var(--linen);
  border: 1px solid var(--sand);
  border-radius: var(--r-none);
  padding: 6px 14px;
}

/* Hero actions */
.sp-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* RIGHT: image panel */
.sp-hero-right {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.sp-hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 7s linear;
}

.swiper-slide-active .sp-hero-right img {
  transform: scale(1.06);
}

/* Overlay price card */
.sp-price-card-hero {
  position: absolute;
  top: 48px;
  right: 48px;
  z-index: 10;
  background: rgba(250, 250, 248, .92);
  backdrop-filter: blur(16px);
  border: 1px solid var(--sand);
  padding: 28px 30px;
  min-width: 220px;
}

.sp-pch-label {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.sp-pch-price {
  font-family: var(--f-display);
  font-size: 34px;
  color: var(--text);
  line-height: 1;
  margin-bottom: 4px;
}

.sp-pch-price sub {
  font-size: 14px;
  color: var(--text-muted);
  font-family: var(--f-body);
}

.sp-pch-sub {
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.sp-pch-divider {
  height: 1px;
  background: var(--sand);
  margin-bottom: 16px;
}

.sp-pch-specs {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sp-pch-spec {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
}

.sp-pch-spec-k {
  color: var(--mid-gray);
}

.sp-pch-spec-v {
  font-weight: 600;
  color: var(--text);
  letter-spacing: .3px;
}

.sp-pch-btn {
  display: block;
  width: 100%;
  margin-top: 18px;
  background: var(--navy);
  color: var(--white);
  font-family: var(--f-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 13px;
  cursor: pointer;
  border: none;
  transition: background var(--t2);
}

.sp-pch-btn:hover {
  background: var(--navy-dk);
}

/* Swiper overrides in hero */
.sp-hero-swiper {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

/* ════════════════════════════
   7. TICKER
   ════════════════════════════ */
.sp-ticker {
  background: var(--text);
  padding: 14px 0;
  overflow: hidden;
}

.sp-ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 35s linear infinite;
}

.sp-ticker-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 36px;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .5);
  white-space: nowrap;
}

.sp-ticker-sep {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ════════════════════════════
   8. STATS ROW
   ════════════════════════════ */
.sp-stats {
  background: var(--white);
  border-bottom: 1px solid var(--sand);
}

.sp-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 72px;
}

.sp-stat {
  padding: 44px 32px;
  text-align: center;
  border-right: 1px solid var(--sand);
  position: relative;
  transition: background var(--t2);
}

.sp-stat:last-child {
  border-right: none;
}

.sp-stat:hover {
  background: var(--chalk);
}

.sp-stat-val {
  font-family: var(--f-display);
  font-size: 46px;
  font-weight: 400;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 6px;
}

.sp-stat-val sup {
  font-size: 22px;
  color: var(--gold);
}

.sp-stat-lbl {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--mid-gray);
}

/* ════════════════════════════
   9. ABOUT
   ════════════════════════════ */
.sp-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 580px;
}

.sp-about-visual {
  position: relative;
  overflow: hidden;
  background: var(--linen);
}

.sp-about-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t3) var(--ease);
}

.sp-about-visual:hover img {
  transform: scale(1.03);
}

/* Floating tag on image */
.sp-about-tag {
  position: absolute;
  bottom: 36px;
  left: 36px;
  background: rgba(250, 250, 248, .92);
  backdrop-filter: blur(12px);
  border-left: 3px solid var(--gold);
  padding: 16px 22px;
}

.sp-about-tag-label {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.sp-about-tag-val {
  font-family: var(--f-display);
  font-size: 20px;
  color: var(--text);
}

/* Text side */
.sp-about-text {
  padding: 60px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--chalk);
}

.sp-about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--sand);
  margin-top: 36px;
  border: 1px solid var(--sand);
}

.sp-feat {
  padding: 24px 22px;
  background: var(--chalk);
  transition: background var(--t2);
}

.sp-feat:hover {
  background: var(--white);
}

.sp-feat-icon {
  font-size: 22px;
  margin-bottom: 10px;
}

.sp-feat-title {
  font-family: var(--f-display);
  font-size: 15px;
  color: var(--text);
  margin-bottom: 5px;
}

.sp-feat-desc {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ════════════════════════════
   10. PRICING
   ════════════════════════════ */
.sp-pricing-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 56px;
  gap: 24px;
}

.sp-price-swiper-wrap {
  position: relative;
  padding: 0 0 40px;
}

.sp-price-nav {
  position: absolute;
  top: 38%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text);
  font-size: 16px;
  box-shadow: var(--sh-sm);
  transition: all var(--t2) var(--ease);
}

.sp-price-nav:hover {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

.sp-pp {
  left: -22px;
}

.sp-pn {
  right: -22px;
}

/* Price card */
.sp-pc {
  background: var(--white);
  border: 1px solid var(--sand);
  overflow: hidden;
  transition: all var(--t2) var(--ease);
  cursor: pointer;
}

.sp-pc:hover {
  border-color: var(--navy);
  box-shadow: var(--sh-lg);
  transform: translateY(-4px);
}

.sp-pc-img {
  height: 230px;
  overflow: hidden;
  position: relative;
}

.sp-pc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.75) brightness(.97);
  transition: all var(--t2) var(--ease);
  filter: blur(4px);
}

.sp-pc:hover .sp-pc-img img {
  filter: saturate(1);
  transform: scale(1.04);
   filter: blur(4px);
}

.sp-pc-type {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px 16px;
  background: linear-gradient(transparent, rgba(28, 28, 26, .6));
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .85);
}

.sp-pc-body {
  padding: 26px 24px;
}

.sp-pc-config {
  font-family: var(--f-display);
  font-size: 26px;
  color: var(--text);
  margin-bottom: 4px;
}

.sp-pc-area {
  font-size: 12px;
  color: var(--mid-gray);
  letter-spacing: .5px;
  margin-bottom: 18px;
}

.sp-pc-line {
  height: 1px;
  background: var(--sand);
  margin-bottom: 18px;
  position: relative;
}

.sp-pc-line::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.sp-pc-price {
  font-family: var(--f-display);
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 18px;
}

.sp-pc-price span {
  font-family: var(--f-body);
  font-size: 12px;
  color: var(--mid-gray);
}

.sp-price-pg {
  text-align: center;
  margin-top: 36px;
}

.sp-price-pg .swiper-pagination-bullet {
  background: var(--sand);
  opacity: 1;
}

.sp-price-pg .swiper-pagination-bullet-active {
  background: var(--navy);
  width: 22px;
  border-radius: var(--r-full);
}

/* ════════════════════════════
   11. AMENITIES
   ════════════════════════════ */
.sp-amen-head {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 64px;
}

.sp-amen-head .s-label {
  justify-content: center;
}

.sp-amen-head .s-label::after {
  display: none;
}

.sp-amen-head .s-label::before {
  content: '';
  flex: 0 0 40px;
  height: 1px;
  background: var(--gold);
}

/* Bento-style grid — varied mosaic layout */
.sp-amen-bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: 300px 280px 240px 240px;
  gap: 12px;
}

.sp-amen-item {
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

/* Row 1–2: Grand Clubhouse — tall hero (left) */
.sp-amen-item:nth-child(1) {
  grid-column: span 3;
  grid-row: span 2;
}

/* Row 1: Swimming Pool — wide */
.sp-amen-item:nth-child(2) {
  grid-column: span 2;
}

/* Row 1: Gymnasium — narrow */
.sp-amen-item:nth-child(3) {
  grid-column: span 1;
}

/* Row 2: Jogging Track — narrow */
.sp-amen-item:nth-child(4) {
  grid-column: span 1;
}

/* Row 2: Kids Play Area — wide */
.sp-amen-item:nth-child(5) {
  grid-column: span 2;
}

/* Row 3: Indoor Games — medium */
.sp-amen-item:nth-child(6) {
  grid-column: span 2;
}

/* Row 3: Multipurpose Hall — medium */
.sp-amen-item:nth-child(7) {
  grid-column: span 2;
}

/* Row 3: Yoga & Meditation — medium */
.sp-amen-item:nth-child(8) {
  grid-column: span 2;
}

/* Row 4: Landscaped Gardens — wide */
.sp-amen-item:nth-child(9) {
  grid-column: span 3;
}

/* Row 4: Senior Citizen Zone — wide */
.sp-amen-item:nth-child(10) {
  grid-column: span 3;
}

.sp-amen-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.8);
  transition: transform .6s var(--ease), filter .4s;
}

.sp-amen-item:hover img {
  transform: scale(1.06);
  filter: saturate(1);
}

.sp-amen-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 20px;
  background: linear-gradient(transparent, rgba(28, 28, 26, .7));
  color: #fff;
}

.sp-amen-name {
  font-family: var(--f-display);
  font-size: 16px;
  margin-bottom: 2px;
}

.sp-amen-tag {
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .55);
}

/* Amenity swiper (mobile) */
.sp-amen-swiper-wrap {
  display: none;
  position: relative;
}

.sp-am-pg {
  text-align: center;
  margin-top: 20px;
}

.sp-am-pg .swiper-pagination-bullet {
  background: var(--sand);
  opacity: 1;
}

.sp-am-pg .swiper-pagination-bullet-active {
  background: var(--gold);
  width: 22px;
  border-radius: var(--r-full);
}

.sp-am-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text);
  font-size: 16px;
  box-shadow: var(--sh-sm);
  transition: all var(--t2);
}

.sp-am-nav:hover {
  background: var(--navy);
  color: #fff;
}

.sp-am-prev {
  left: -20px;
}

.sp-am-next {
  right: -20px;
}

/* ════════════════════════════
   12. GALLERY
   ════════════════════════════ */
.sp-gallery-layout {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 260px 200px;
  gap: 10px;
}

.sp-gal-item {
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.sp-gal-item:nth-child(1) {
  grid-column: span 6;
  grid-row: span 2;
}

.sp-gal-item:nth-child(2) {
  grid-column: span 3;
}

.sp-gal-item:nth-child(3) {
  grid-column: span 3;
}

.sp-gal-item:nth-child(4) {
  grid-column: span 3;
}

.sp-gal-item:nth-child(5) {
  grid-column: span 3;
}

.sp-gal-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.85);
  transition: transform .5s var(--ease), filter .4s;
}

.sp-gal-item:hover img {
  transform: scale(1.05);
  filter: saturate(1);
}

.sp-gal-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(28, 28, 26, 0);
  transition: background var(--t2);
}

.sp-gal-item:hover::after {
  background: rgba(28, 28, 26, .08);
}

/* mobile gallery swiper */
.sp-gal-swiper-wrap {
  display: none;
  position: relative;
}

.sp-gal-pg {
  text-align: center;
  margin-top: 20px;
}

.sp-gal-pg .swiper-pagination-bullet {
  background: var(--sand);
  opacity: 1;
}

.sp-gal-pg .swiper-pagination-bullet-active {
  background: var(--gold);
  width: 22px;
  border-radius: var(--r-full);
}

.sp-gnav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(250, 250, 248, .9);
  border: 1px solid var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text);
  font-size: 16px;
  box-shadow: var(--sh-sm);
  transition: all var(--t2);
}

.sp-gnav:hover {
  background: var(--navy);
  color: #fff;
}

.sp-gprev {
  left: -18px;
}

.sp-gnext {
  right: -18px;
}

/* ════════════════════════════
   13. LOCATION
   ════════════════════════════ */
.sp-loc-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 32px;
  align-items: start;
}

.sp-map-wrap {
  overflow: hidden;
  border: 1px solid var(--sand);
}

.sp-map-wrap iframe {
  display: block;
  border: 0;
}

.sp-map-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background: var(--text);
  gap: 16px;
}

.sp-map-bar-txt {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .5);
}

/* Connectivity */
.sp-conn-panel {}

.sp-conn-head {
  padding: 20px 24px;
  background: var(--text);
  border-bottom: 2px solid var(--gold);
}

.sp-conn-head h3 {
  font-family: var(--f-display);
  font-size: 20px;
  color: #fff;
  margin-bottom: 4px;
}

.sp-conn-head p {
  font-size: 11px;
  color: rgba(255, 255, 255, .4);
  letter-spacing: 1px;
}

.sp-conn-list {
  background: var(--white);
  border: 1px solid var(--sand);
  border-top: none;
}

.sp-conn-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 15px 22px;
  border-bottom: 1px solid var(--sand);
  transition: background var(--t1);
}

.sp-conn-row:last-child {
  border-bottom: none;
}

.sp-conn-row:hover {
  background: var(--chalk);
}

.sp-conn-icon {
  width: 36px;
  height: 36px;
  background: var(--gold-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}

.sp-conn-info {
  flex: 1;
}

.sp-conn-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
}

.sp-conn-sub {
  font-size: 11px;
  color: var(--mid-gray);
  margin-top: 2px;
  letter-spacing: .3px;
}

.sp-conn-time {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--navy-lt);
  padding: 4px 12px;
  white-space: nowrap;
}

/* ════════════════════════════
   14. DEVELOPER
   ════════════════════════════ */
.sp-dev-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.sp-dev-img {
  position: relative;
  overflow: hidden;
}
.sp-dev-all{
  width: 100%;
  position: relative;
}
.sp-dev-img img {
  width: 100%;
  height: 390px;
  /* height: 480px; */
  object-fit: cover;
  display: block;
  transition: transform var(--t3) var(--ease);
}

.sp-dev-img:hover img {
  transform: scale(1.03);
}

/* Gold corner accent */
.sp-dev-all::before {
  content: '';
  position: absolute;
  top: 16px;
  right: 16px;
  width: 80px;
  height: 80px;
  border-top: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
  z-index: 2;
  pointer-events: none;
}

.sp-dev-all::after {
  content: '';
  position: absolute;
  bottom: 16px;
  left: 16px;
  width: 80px;
  height: 80px;
  border-bottom: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
  z-index: 2;
  pointer-events: none;
}

.sp-dev-badge {
  position: absolute;
  bottom: 32px;
  right: 32px;
  background: rgba(250, 250, 248, .95);
  backdrop-filter: blur(12px);
  border: 1px solid var(--sand);
  padding: 20px 24px;
  text-align: center;
  z-index: 3;
}

.sp-dev-badge-num {
  font-family: var(--f-display);
  font-size: 40px;
  color: var(--navy);
  line-height: 1;
}

.sp-dev-badge-lbl {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--mid-gray);
  margin-top: 4px;
}

.sp-dev-content p {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 14px;
}

.sp-rera-box {
  background: var(--chalk);
  border: 1px solid var(--sand);
  border-left: 3px solid var(--navy);
  padding: 22px 24px;
  margin: 24px 0;
}

.sp-rera-box h4 {
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--navy);
  font-weight: 500;
  margin-bottom: 14px;
}

.sp-rera-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 0;
  border-bottom: 1px solid var(--sand);
  font-size: 13px;
}

.sp-rera-row:last-child {
  border-bottom: none;
}

.sp-rera-key {
  color: var(--mid-gray);
}

.sp-rera-val {
  font-weight: 600;
  color: var(--text);
}

.sp-comp-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--sand);
  border: 1px solid var(--sand);
  margin-top: 20px;
}

.sp-comp-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 16px;
  background: var(--chalk);
  font-size: 13px;
  color: var(--text-muted);
  transition: background var(--t1);
}

.sp-comp-item:hover {
  background: var(--white);
}

.sp-comp-chk {
  width: 20px;
  height: 20px;
  background: var(--gold-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  flex-shrink: 0;
}

.sp-dev-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

/* ════════════════════════════
   15. MODAL
   ════════════════════════════ */
.sp-modal {
  position: fixed;
  inset: 0;
  background: rgba(28, 28, 26, .5);
  backdrop-filter: blur(6px);
  display: none;
  z-index: 2000;
  justify-content: flex-end;
}

.sp-modal.open {
  display: flex;
}

.sp-modal-panel {
  width: 400px;
  max-width: 100%;
  height: 100%;
  background: var(--chalk);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  animation: slideIn .4s var(--ease-out) both;
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.sp-modal-head {
  background: var(--text);
  padding: 32px 32px 28px;
  flex-shrink: 0;
  position: relative;
}

.sp-modal-brand {
  font-family: var(--f-body);
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}

.sp-modal-title {
  font-family: var(--f-display);
  font-size: 28px;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 8px;
}

.sp-modal-sub {
  font-size: 12.5px;
  color: rgba(255, 255, 255, .5);
  line-height: 1.7;
}

.sp-modal-close {
  position: absolute;
  top: 18px;
  right: 20px;
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .7);
  font-size: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--t1);
}

.sp-modal-close:hover {
  background: rgba(255, 255, 255, .18);
  color: #fff;
}

.sp-modal-body {
  padding: 28px 32px;
  flex: 1;
}

/* Fields */
.sp-f {
  margin-bottom: 16px;
}

.sp-f label {
  display: block;
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--mid-gray);
  margin-bottom: 8px;
}

.sp-f input,
.sp-f select,
.sp-f textarea {
  width: 100%;
  background: var(--white);
  border: 1px solid var(--sand);
  padding: 13px 16px;
  font-family: var(--f-body);
  font-size: 13.5px;
  color: var(--text);
  outline: none;
  border-radius: var(--r-none);
  transition: border-color var(--t1);
  appearance: none;
}

.sp-f input::placeholder,
.sp-f textarea::placeholder {
  color: var(--warm-gray);
}

.sp-f input:focus,
.sp-f select:focus {
  border-color: var(--navy);
}

.sp-f.error input,
.sp-f.error select {
  border-color: #c0392b;
}

.sp-f-err {
  font-size: 10px;
  color: #c0392b;
  margin-top: 4px;
  display: none;
}

.sp-f.error .sp-f-err {
  display: block;
}

.sp-f-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

/* Consent */
.sp-consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--sand);
  padding: 13px 15px;
  margin-bottom: 16px;
  cursor: pointer;
  transition: border-color var(--t1);
}

.sp-consent.error {
  border-color: #c0392b;
  background: #fff8f7;
}

.sp-consent input[type=checkbox] {
  width: 16px;
  height: 16px;
  min-width: 16px;
  margin-top: 2px;
  accent-color: var(--navy);
  cursor: pointer;
}

.sp-consent-lbl {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.65;
}

.sp-consent-err {
  font-size: 10px;
  color: #c0392b;
  margin-top: -12px;
  margin-bottom: 14px;
  display: none;
}

.sp-form-note {
  font-size: 10px;
  color: var(--mid-gray);
  text-align: center;
  margin-top: 10px;
  line-height: 1.7;
}

.sp-form-note a {
  color: var(--navy);
}

/* Success */
.sp-form-ok {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 56px 32px;
  gap: 16px;
}

.sp-form-ok.show {
  display: flex;
}

.sp-form-ok-icon {
  width: 72px;
  height: 72px;
  background: var(--gold-lt);
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--gold);
}

.sp-form-ok h3 {
  font-family: var(--f-display);
  font-size: 24px;
  color: var(--text);
}

.sp-form-ok p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ════════════════════════════
   16. FOOTER
   ════════════════════════════ */
.sp-footer {
  background: var(--text);
  /* padding: 60px 0 0; */
  padding: 0px 0 0;
}

.sp-footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 72px 56px;
}

.sp-footer-brand h3 {
  font-family: var(--f-display);
  font-size: 24px;
  color: var(--white);
  margin-bottom: 6px;
}

.sp-footer-brand h3 span {
  color: var(--gold);
}

.sp-footer-brand p {
  font-size: 13px;
  color: rgba(255, 255, 255, .35);
  line-height: 1.85;
  margin-top: 12px;
  max-width: 280px;
}

.sp-footer-col h4 {
  font-family: var(--f-body);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .3);
  margin-bottom: 18px;
}

.sp-footer-col a {
  display: block;
  font-size: 13px;
  color: rgba(255, 255, 255, .45);
  margin-bottom: 11px;
  transition: color var(--t1);
}

.sp-footer-col a:hover {
  color: var(--white);
}

.sp-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .07);
  max-width: 1320px;
  margin: 0 auto;
  padding: 18px 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.sp-footer-copy {
  font-size: 11px;
  color: rgba(255, 255, 255, 8);
  letter-spacing: .5px;
}

.sp-footer-links {
  display: flex;
  gap: 20px;
}

.sp-footer-links a {
  font-size: 11px;
  color: rgba(255, 255, 255, 8);
  transition: color var(--t1);
}

.sp-footer-links a:hover {
  color: var(--gold);
}

/* ════════════════════════════
   17. FLOATING / STICKY
   ════════════════════════════ */
/* WhatsApp */
.sp-wa-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  width: 50px;
  height: 50px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, .35);
  animation: bob 3s ease-in-out infinite;
  cursor: pointer;
  border: none;
}

.sp-wa-fab:hover {
  background: #1ebe5d;
  transform: scale(1.1);
}

.sp-wa-fab svg {
  width: 24px;
  height: 24px;
  fill: #fff;
}

@keyframes bob {

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

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

/* Mobile sticky bar */
.sp-sticky {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 56px;
  z-index: 9998;
  box-shadow: 0 -1px 16px rgba(28, 28, 26, .12);
}

.sp-sticky a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: .3px;
  transition: opacity var(--t1);
}

.sp-sticky-call {
  background: var(--white);
  color: var(--text);
  border-top: 1px solid var(--sand);
  border-right: 1px solid var(--sand);
}

.sp-sticky-wa {
  background: #25D366;
  color: #fff;
}

/* ════════════════════════════
   18. REVEAL
   ════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}

.reveal.in {
  opacity: 1;
  transform: none;
}

.reveal-d1 {
  transition-delay: .1s;
}

.reveal-d2 {
  transition-delay: .2s;
}

.reveal-d3 {
  transition-delay: .3s;
}

/* ════════════════════════════
   19. SWIPER OVERRIDES
   ════════════════════════════ */
.swiper-pagination-bullet {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--sand);
  opacity: 1;
  transition: all .3s;
  cursor: pointer;
}

.swiper-pagination-bullet-active {
  background: var(--navy);
  width: 22px;
  border-radius: var(--r-full);
}

/* ════════════════════════════
   20. RESPONSIVE
   ════════════════════════════ */
@media(max-width:1200px) {

  .wrap,
  .sp-nav-inner,
  .sp-stats-row,
  .sp-footer-grid,
  .sp-footer-bottom {
    padding-left: 40px;
    padding-right: 40px;
  }

  .sp-hero-left {
    padding: 60px 48px;
  }

  .sp-about-text {
    padding: 60px 48px;
  }

  .sp-dev-grid {
    gap: 48px;
  }
}

@media(max-width:1024px) {
  .sp-nav-links {
    display: none;
  }

  .sp-nav-actions .btn {
    display: none;
  }

  .sp-ham {
    display: flex;
  }

  .sp-nav-inner {
    padding: 0 24px;
  }

  .sp-hero {
    flex-direction: column;
    height: auto;
    min-height: auto;
  }

  .sp-hero-left {
    width: 100%;
    padding: 48px 24px 60px;
  }

  .sp-hero-left::after {
    display: none;
  }

  .sp-hero-right {
    min-height: 380px;
  }

  .sp-price-card-hero {
    display: none;
  }

  .sp-hero-nav-btns {
    right: 24px;
    bottom: 28px;
  }

  .sp-hero-counter {
    left: 24px;
    bottom: 28px;
  }

  .sp-about-grid {
    grid-template-columns: 1fr;
  }

  .sp-about-visual {
    height: 380px;
  }

  .sp-about-visual img {
    height: 380px;
  }

  .sp-about-text {
    padding: 56px 40px;
  }

  .sp-dev-grid {
    grid-template-columns: 1fr;
  }

  .sp-dev-img img {
    height: 360px;
  }

  .sp-loc-grid {
    grid-template-columns: 1fr;
  }

  .sp-stats-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .sp-stats-row .sp-stat:nth-child(2) {
    border-right: none;
  }

  .sp-amen-bento {
    display: none;
  }

  .sp-amen-swiper-wrap {
    display: block;
  }

  .sp-gallery-layout {
    display: none;
  }

  .sp-gal-swiper-wrap {
    display: block;
  }

  .sp-footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media(max-width:900px) {
  .sp-wa-fab {
    display: none;
  }

  .sp-sticky {
    display: flex;
  }

  /* body {
    padding-bottom: 56px;
  } */

  .section {
    padding: 64px 0;
  }
}

@media(max-width:768px) {

  .wrap,
  .sp-nav-inner,
  .sp-stats-row,
  .sp-footer-grid,
  .sp-footer-bottom {
    padding-left: 20px;
    padding-right: 20px;
  }

  .sp-pricing-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .sp-footer-grid {
    grid-template-columns: 1fr;
  }

  .sp-stats-row {
    grid-template-columns: 1fr 1fr;
  }

  .sp-about-features {
    grid-template-columns: 1fr;
  }
}

@media(max-width:480px) {
  .sp-hero-actions {
    flex-direction: column;
  }

  .sp-hero-actions .btn {
    width: 100%;
  }

  .sp-f-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .sp-drawer-btns {
    grid-template-columns: 1fr;
  }

  .sp-dev-actions {
    flex-direction: column;
  }
}



/* ── Why Invest ── */
.sp-invest-intro {
  margin-bottom: 56px;
}

.sp-invest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--sand);
}

.sp-invest-card {
  background: var(--white);
  padding: 48px 36px;
  border-right: 1px solid var(--sand);
}

.sp-invest-card:last-child {
  border-right: none;
}

.sp-invest-card--featured {
  background: var(--navy);
}

.sp-invest-card--featured .sp-invest-num,
.sp-invest-card--featured .sp-invest-title,
.sp-invest-card--featured .sp-invest-desc {
  color: rgba(255, 255, 255, 0.9);
}

.sp-invest-card--featured .sp-invest-num {
  color: var(--gold);
}

.sp-invest-num {
  font-family: var(--f-display);
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 24px;
}

.sp-invest-title {
  font-family: var(--f-display);
  font-size: 20px;
  color: var(--text);
  margin-bottom: 14px;
  line-height: 1.3;
}

.sp-invest-desc {
  font-size: 14.5px;
  color: var(--text-lt);
  line-height: 1.85;
}

/* ── CTA Section ── */
.sp-cta-section {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
}

.sp-cta-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1613977257363-707ba9348227?w=1600&q=80');
  background-size: cover;
  background-position: center;
}

.sp-cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 14, 28, 0.88);
}

.sp-cta-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.sp-cta-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}

.sp-cta-line {
  flex: 0 0 40px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}

.sp-cta-heading {
  font-family: var(--f-display);
  font-size: clamp(36px, 5vw, 52px);
  color: #fff;
  line-height: 1.2;
  margin-bottom: 24px;
}

.sp-cta-heading em {
  font-style: italic;
  color: var(--gold);
}

.sp-cta-sub {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.9;
  margin-bottom: 48px;
}

.sp-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.sp-cta-btn-primary {
  background: var(--gold);
  color:#fff;
  border: none;
  padding: 15px 40px;
  font-size: 14px;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all var(--t2);
}

.sp-cta-btn-primary:hover {
  background: #fff;
  color: var(--navy);
}

.sp-cta-btn-ghost {
  background: transparent;
  color: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 15px 40px;
  font-size: 14px;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all var(--t2);
}

.sp-cta-btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* Responsive */
@media (max-width: 768px) {
  .sp-invest-grid {
    grid-template-columns: 1fr;
  }

  .sp-invest-card {
    border-right: none;
    border-bottom: 1px solid var(--sand);
  }

  .sp-invest-card:last-child {
    border-bottom: none;
  }

  .sp-cta-section {
    padding: 80px 0;
  }

  .sp-cta-actions {
    flex-direction: column;
  }
}
.sp-about-features {grid-template-columns:1fr 1fr;margin-top:32px;}


    .sp-back-btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--text-muted);
      border: 1px solid var(--sand);
      padding: 9px 20px;
      transition: all .2s;
      text-decoration: none;
    }

    .sp-back-btn:hover {
      border-color: var(--navy);
      color: var(--navy);
      text-decoration: none;
    }