:root {
  --ink: #111820;
  --muted: #61707a;
  --line: #dfe6df;
  --surface: #ffffff;
  --paper: #f7f4ec;
  --soft: #efe8d9;
  --accent: #155247;
  --accent-dark: #0b312b;
  --gold: #c58a2f;
  --coral: #c7674b;
  --sage: #dce8dc;
  --sky: #e4eef0;
  --charcoal: #0d1217;
  --radius: 8px;
  --shadow: 0 22px 58px rgba(17, 24, 32, 0.13);
  --shadow-soft: 0 12px 34px rgba(17, 24, 32, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(247, 244, 236, 0) 280px),
    var(--paper);
  font-family:
    Arial, "Helvetica Neue", ui-sans-serif, system-ui, -apple-system,
    BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

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

img,
svg {
  max-width: 100%;
}

section,
#top,
#areas,
#features,
#enquiry {
  scroll-margin-top: 86px;
}

/* ─── Navbar ──────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(247, 244, 236, 0.88);
  border-bottom: 1px solid transparent;
  transition: background 300ms ease, box-shadow 300ms ease;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.96);
  border-bottom-color: rgba(17, 24, 32, 0.07);
  box-shadow: 0 10px 30px rgba(17, 24, 32, 0.07);
}

.nav-inner {
  display: flex;
  align-items: center;
  height: 72px;
  padding: 0 clamp(20px, 5vw, 78px);
  gap: 8px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
  width: clamp(160px, 15vw, 196px);
  height: 46px;
  overflow: hidden;
  filter: drop-shadow(0 6px 12px rgba(17, 24, 32, 0.05));
}

.brand-logo {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
}

.top-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: center;
}

.nav-link,
.nav-dropdown-trigger {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 9px 12px;
  font-family: inherit;
  font-size: 0.865rem;
  font-weight: 600;
  color: var(--ink);
  background: none;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: -0.01em;
  transition: color 150ms ease, background 150ms ease;
}

.nav-link:hover,
.nav-dropdown-trigger:hover,
.nav-item.has-dropdown:hover > .nav-dropdown-trigger,
.nav-item.has-dropdown.is-open > .nav-dropdown-trigger {
  color: var(--accent);
  background: rgba(21, 82, 71, 0.08);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 3px;
  left: 11px;
  right: 11px;
  height: 1.5px;
  background: var(--accent);
  border-radius: 2px;
}

.nav-dropdown-trigger.active {
  color: var(--accent);
}

.nav-chevron {
  display: block;
  flex-shrink: 0;
  color: var(--muted);
  transition: transform 220ms ease;
}

.nav-item.has-dropdown:hover .nav-chevron,
.nav-item.has-dropdown.is-open .nav-chevron {
  transform: rotate(180deg);
  color: var(--accent);
}

.nav-badge {
  font-size: 0.59rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gold);
  background: rgba(185, 130, 43, 0.12);
  padding: 2px 6px;
  border-radius: 999px;
  flex-shrink: 0;
}

.nav-item.has-dropdown {
  position: relative;
}

.dropdown {
  position: absolute;
  top: calc(100% + 10px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 200ms ease, transform 200ms ease;
  z-index: 200;
}

@media (hover: hover) {
  .nav-item.has-dropdown:hover .dropdown {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
  }
}

.nav-item.has-dropdown.is-open .dropdown {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.dropdown-panel {
  background: #fff;
  border: 1px solid rgba(18, 20, 23, 0.09);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px;
  overflow: hidden;
}

.dropdown-label {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin: 0 0 10px;
}

.areas-dropdown {
  left: 0;
  width: min(400px, calc(100vw - 40px));
}

.areas-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-bottom: 14px;
}

.area-item {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  padding: 9px 10px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 140ms ease;
}

.area-item:hover {
  background: rgba(24, 75, 67, 0.05);
}

.area-pin {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--accent);
}

.area-item strong {
  display: block;
  font-size: 0.845rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
}

.area-item span {
  display: block;
  font-size: 0.73rem;
  color: var(--muted);
  margin-top: 1px;
  line-height: 1.4;
}

.dropdown-footer {
  display: flex;
  align-items: center;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.dropdown-footer-link {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
}

.dropdown-footer-link:hover {
  text-decoration: underline;
}

.nexus-dropdown {
  right: 0;
  left: auto;
  width: min(560px, calc(100vw - 40px));
}

.nexus-dd-grid {
  display: grid;
  grid-template-columns: 1fr 210px;
  gap: 20px;
  align-items: start;
}

.nexus-services-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.nexus-service-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 9px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 140ms ease;
}

.nexus-service-item:hover {
  background: rgba(24, 75, 67, 0.05);
}

.service-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  margin-top: 6px;
}

.nexus-service-item strong {
  display: block;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
}

.nexus-service-item span {
  display: block;
  font-size: 0.72rem;
  color: var(--muted);
  margin-top: 1px;
  line-height: 1.4;
}

.nexus-featured-card {
  background: var(--ink);
  border-radius: var(--radius);
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.featured-badge {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold);
  background: rgba(185, 130, 43, 0.18);
  padding: 3px 8px;
  border-radius: 999px;
  align-self: flex-start;
}

.nexus-featured-card > strong {
  font-size: 0.94rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.3;
}

.nexus-featured-card > p {
  font-size: 0.73rem;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.5;
  margin: 0;
}

.featured-price {
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}

.featured-cta {
  display: inline-block;
  font-size: 0.79rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  padding: 8px 13px;
  border: 1.5px solid rgba(255, 255, 255, 0.22);
  border-radius: 7px;
  text-align: center;
  transition: background 160ms ease, border-color 160ms ease;
}

.featured-cta:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.45);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.nav-search-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  border-radius: var(--radius);
  color: var(--muted);
  cursor: pointer;
  transition: color 150ms ease, background 150ms ease;
}

.nav-search-btn:hover {
  color: var(--ink);
  background: rgba(18, 20, 23, 0.06);
}

.nav-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 13px;
  font-size: 0.815rem;
  font-weight: 700;
  color: #1a9e42;
  border: 1.5px solid rgba(26, 158, 66, 0.25);
  border-radius: var(--radius);
  text-decoration: none;
  white-space: nowrap;
  transition: border-color 150ms ease, background 150ms ease;
}

.nav-wa-btn:hover {
  border-color: rgba(26, 158, 66, 0.55);
  background: rgba(26, 158, 66, 0.05);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  font-size: 0.845rem;
  font-weight: 700;
  color: #fff;
  background: var(--ink);
  border-radius: var(--radius);
  text-decoration: none;
  white-space: nowrap;
  transition: background 160ms ease, transform 120ms ease;
}

.nav-cta:hover {
  color: #fff;
  background: var(--accent);
  transform: translateY(-1px);
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px 14px;
  padding: 14px clamp(20px, 5vw, 78px);
  font-size: 0.72rem;
  font-weight: 650;
  color: var(--muted);
  letter-spacing: 0.03em;
  background: var(--soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-strip .trust-sep {
  color: var(--gold);
  font-weight: 400;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(18, 20, 23, 0.1);
  border-radius: var(--radius);
  cursor: pointer;
  flex-shrink: 0;
  position: relative;
  z-index: 520;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  box-shadow: 0 6px 18px rgba(18, 20, 23, 0.08);
}

.nav-toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 240ms ease, opacity 200ms ease;
}

.site-header.scrolled .nav-toggle,
.nav-toggle.is-open {
  background: #fff;
  border-color: rgba(18, 20, 23, 0.16);
  color: var(--ink);
}

.nav-toggle.is-open .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open .nav-toggle-bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-toggle.is-open .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 510;
  background: #fff;
  flex-direction: column;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mobile-menu.is-open {
  display: flex;
}

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 86px 28px 40px;
}

.mobile-nav-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.mobile-nav-link {
  display: block;
  padding: 15px 0;
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  transition: color 140ms ease;
}

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

.mobile-accordion {
  border-bottom: 1px solid var(--line);
}

.mobile-accordion-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 15px 0;
  font-family: inherit;
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--ink);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}

.mobile-chevron {
  flex-shrink: 0;
  color: var(--muted);
  transition: transform 220ms ease;
}

.mobile-accordion.is-open .mobile-chevron {
  transform: rotate(180deg);
}

.mobile-accordion-content {
  display: none;
  flex-direction: column;
  padding: 0 0 12px;
}

.mobile-accordion.is-open .mobile-accordion-content {
  display: flex;
}

.mobile-accordion-content a {
  display: block;
  padding: 9px 0 9px 16px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  transition: color 130ms ease;
}

.mobile-accordion-content a:hover {
  color: var(--ink);
}

.mobile-cta-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 28px;
}

.mobile-wa-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px;
  font-size: 0.95rem;
  font-weight: 700;
  color: #1a9e42;
  border: 1.5px solid rgba(26, 158, 66, 0.3);
  border-radius: 10px;
  text-decoration: none;
  transition: background 150ms ease;
}

.mobile-wa-btn:hover {
  background: rgba(26, 158, 66, 0.05);
}

.mobile-book-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  background: var(--ink);
  border-radius: 10px;
  text-decoration: none;
  transition: background 160ms ease;
}

.mobile-book-btn:hover {
  background: var(--accent);
}

@media (max-width: 920px) {
  .nav-wa-btn {
    display: none;
  }
}

@media (max-width: 900px) {
  .top-nav {
    display: none;
  }

  .nav-actions .nav-cta {
    display: none;
  }

  .nav-search-btn {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-wa-btn {
    display: none;
  }

  .trust-strip {
    display: none;
  }
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: clamp(34px, 5vw, 86px);
  align-items: center;
  min-height: calc(100vh - 72px);
  padding: clamp(64px, 8vw, 118px) clamp(20px, 5vw, 78px) clamp(58px, 7vw, 92px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.74), rgba(247, 244, 236, 0.72)),
    linear-gradient(180deg, #fbfaf5 0%, #efe8da 100%);
}

.hero::after {
  position: absolute;
  right: clamp(20px, 5vw, 78px);
  bottom: 0;
  left: clamp(20px, 5vw, 78px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(21, 82, 71, 0.34), rgba(197, 138, 47, 0.42), transparent);
  content: "";
}

.hero-copy {
  max-width: 820px;
  align-self: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 900px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.1rem, 7vw, 6.7rem);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.9vw, 4.2rem);
  font-weight: 500;
  line-height: 0.96;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  letter-spacing: 0;
}

.hero-text {
  max-width: 620px;
  margin: 28px 0 0;
  color: #52616b;
  font-size: clamp(1.08rem, 2vw, 1.32rem);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-proof span {
  padding: 9px 14px;
  color: #26333b;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(17, 24, 32, 0.08);
  border-radius: var(--radius);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  box-shadow: var(--shadow-soft);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button.hero-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 20px;
  color: #fff;
  background: #25d366;
  border: 1px solid #25d366;
  border-radius: var(--radius);
  font: inherit;
  font-weight: 850;
  cursor: pointer;
  transition: background 160ms ease, transform 160ms ease;
}

.button.hero-wa:hover {
  background: #1fba59;
  border-color: #1fba59;
  transform: translateY(-1px);
}

.hero-sublink {
  display: inline-block;
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 750;
  transition: color 140ms ease;
}

.hero-sublink:hover {
  color: var(--accent);
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font: inherit;
  font-weight: 850;
  cursor: pointer;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  color: #fff;
  background: var(--charcoal);
  box-shadow: 0 12px 24px rgba(17, 24, 32, 0.14);
}

.button.primary:hover {
  background: var(--accent);
}

.button.full {
  width: 100%;
}

.hero-panel {
  display: grid;
  gap: 0;
  padding: 0;
  overflow: hidden;
  background: var(--charcoal);
  border: 1px solid rgba(18, 20, 23, 0.1);
  border-radius: var(--radius);
  box-shadow: 0 32px 78px rgba(17, 24, 32, 0.2);
}

.hero-panel img {
  display: block;
  width: 100%;
  aspect-ratio: 1.16 / 1;
  object-fit: cover;
}

.panel-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.panel-grid div {
  min-height: 136px;
  padding: 22px;
  color: #fff;
  background: var(--charcoal);
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.panel-grid div:last-child {
  border-right: 0;
}

.panel-label {
  display: block;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
}

.hero-panel strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.06rem;
  font-weight: 500;
  line-height: 1.35;
}

.section {
  padding: clamp(72px, 9vw, 128px) clamp(20px, 5vw, 78px);
}

.communities-section {
  position: relative;
  padding-top: clamp(42px, 6vw, 86px);
  padding-bottom: clamp(46px, 6vw, 92px);
  background:
    radial-gradient(circle at 18% 10%, rgba(197, 138, 47, 0.12), transparent 28%),
    radial-gradient(circle at 82% 16%, rgba(21, 82, 71, 0.14), transparent 30%),
    linear-gradient(180deg, #fbf8f1 0%, #f1ebdf 100%);
  border-block: 1px solid rgba(17, 24, 32, 0.08);
  overflow: hidden;
}

.communities-section::before {
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  background: linear-gradient(90deg, transparent, var(--accent), var(--gold), transparent);
  content: "";
}

.communities-section::after {
  position: absolute;
  right: -70px;
  bottom: -120px;
  width: 260px;
  height: 260px;
  background: rgba(21, 82, 71, 0.08);
  border-radius: 50%;
  filter: blur(10px);
  content: "";
}

.communities-section > * {
  position: relative;
  z-index: 1;
}

.enquiry-section {
  padding: clamp(36px, 4.5vw, 64px) clamp(20px, 5vw, 78px) 28px;
}

.intro {
  position: relative;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98), rgba(228, 238, 240, 0.68)),
    var(--surface);
  border-top: 1px solid rgba(17, 24, 32, 0.08);
  border-bottom: 1px solid rgba(17, 24, 32, 0.08);
  box-shadow: inset 0 18px 34px rgba(17, 24, 32, 0.035);
  overflow: hidden;
}

.intro::before {
  position: absolute;
  top: clamp(44px, 7vw, 88px);
  bottom: clamp(44px, 7vw, 88px);
  left: clamp(20px, 5vw, 78px);
  width: 4px;
  background: linear-gradient(180deg, var(--gold), var(--accent));
  border-radius: 999px;
  content: "";
}

.intro-copy {
  max-width: 680px;
  margin-bottom: clamp(36px, 4vw, 52px);
  padding-left: clamp(18px, 2.5vw, 32px);
}

.intro-copy h2 {
  margin-top: 10px;
  margin-bottom: 0;
}

.intro-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: rgba(17, 24, 32, 0.1);
  border: 1px solid rgba(17, 24, 32, 0.09);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.intro-feature {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 244, 236, 0.82));
  padding: clamp(24px, 3vw, 36px);
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.intro-feature:nth-child(2) {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(228, 238, 240, 0.74));
}

.intro-feature:nth-child(3) {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(220, 232, 220, 0.72));
}

.intro-feature::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: var(--accent);
  content: "";
}

.intro-feature:nth-child(2)::before {
  background: var(--gold);
}

.intro-feature:nth-child(3)::before {
  background: var(--coral);
}

.intro-feature:hover {
  box-shadow: 0 18px 42px rgba(17, 24, 32, 0.12);
  transform: translateY(-2px);
  z-index: 2;
}

.intro-num {
  font-size: 0.68rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.intro-feature strong {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.intro-feature p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.65;
}

.quote-band {
  position: relative;
  padding: clamp(54px, 8vw, 104px) clamp(20px, 5vw, 78px);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(21, 82, 71, 0.32), rgba(197, 138, 47, 0.16)),
    var(--charcoal);
  overflow: hidden;
}

.quote-band::after {
  position: absolute;
  right: clamp(20px, 7vw, 92px);
  bottom: -32px;
  color: rgba(255, 255, 255, 0.08);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(8rem, 18vw, 18rem);
  line-height: 0.8;
  content: "”";
}

.quote-band p {
  max-width: 1020px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 5vw, 5.25rem);
  font-weight: 500;
  line-height: 0.98;
}

.section-heading {
  max-width: 880px;
  margin-bottom: 42px;
}

.communities-header {
  max-width: 680px;
  margin: 0 auto 24px;
  text-align: center;
}

.communities-header h2 {
  position: relative;
  display: inline-block;
  margin: 4px 0 14px;
  font-size: clamp(2.15rem, 6vw, 4.4rem);
  line-height: 0.95;
}

.communities-header h2 span {
  color: var(--accent);
}

.communities-header h2::after {
  position: absolute;
  right: 12%;
  bottom: -10px;
  width: min(180px, 46vw);
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--accent));
  border-radius: 999px;
  animation: accentSweep 3.8s ease-in-out infinite;
  content: "";
}

.communities-subhead {
  margin: 0 auto;
  max-width: 560px;
  color: var(--muted);
  font-size: clamp(0.94rem, 2vw, 1.06rem);
  line-height: 1.62;
}

.communities-stats {
  justify-content: center;
  margin: 0 auto 28px;
  border-radius: 24px;
  overflow: hidden;
  width: max-content;
  max-width: 100%;
}

.community-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 20px);
  align-items: stretch;
}

.community-card {
  position: relative;
  display: flex;
  flex-direction: column;
  grid-column: span 2;
  gap: 8px;
  min-height: clamp(178px, 18vw, 230px);
  padding: clamp(18px, 2.4vw, 26px);
  color: #fff;
  background:
    linear-gradient(180deg, rgba(13, 18, 23, 0.1), rgba(13, 18, 23, 0.72)),
    linear-gradient(135deg, rgba(21, 82, 71, 0.84), rgba(197, 138, 47, 0.34));
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 24px;
  box-shadow: 0 22px 54px rgba(17, 24, 32, 0.12);
  cursor: default;
  isolation: isolate;
  overflow: hidden;
  animation: cardReveal 700ms ease both;
  transition: box-shadow 220ms ease, transform 220ms ease, border-color 220ms ease;
}

.community-card:nth-child(2) {
  animation-delay: 90ms;
}

.community-card:nth-child(3) {
  animation-delay: 160ms;
}

.community-card:nth-child(4) {
  animation-delay: 230ms;
}

.community-card:nth-child(5) {
  animation-delay: 300ms;
}

.community-card:nth-child(6) {
  animation-delay: 370ms;
}

.community-card::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.28), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), transparent 34%),
    var(--community-art);
  background-size: 100% 100%;
  background-position: center;
  transform: scale(1);
  transition: transform 500ms ease;
  content: "";
}

.community-card::after {
  position: absolute;
  inset: auto 14px 14px;
  z-index: -1;
  height: 52%;
  background: linear-gradient(180deg, transparent, rgba(13, 18, 23, 0.72));
  border-radius: 20px;
  content: "";
}

.community-card--whitefield {
  --community-art:
    linear-gradient(145deg, #155247 0%, #193d38 48%, #0d1217 100%);
}

.community-card--sarjapur {
  --community-art:
    linear-gradient(145deg, #1e4d47 0%, #6b633c 54%, #111820 100%);
}

.community-card--kadugodi {
  --community-art:
    linear-gradient(145deg, #235f52 0%, #2e4847 45%, #8e6734 100%);
}

.community-card--bellandur {
  --community-art:
    linear-gradient(145deg, #0d1217 0%, #155247 55%, #8a6a3a 100%);
}

.community-card--marathahalli {
  --community-art:
    linear-gradient(145deg, #184b43 0%, #2d5b53 48%, #c7674b 100%);
}

.community-card:hover {
  border-color: rgba(255, 255, 255, 0.34);
  box-shadow: 0 28px 70px rgba(17, 24, 32, 0.2);
  transform: translateY(-5px);
}

.community-card:hover::before {
  transform: scale(1.08);
}

.community-badge {
  align-self: flex-start;
  padding: 6px 10px;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  backdrop-filter: blur(12px);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.card-pin {
  display: grid;
  width: 38px;
  height: 38px;
  padding: 9px;
  color: var(--accent-dark);
  background: rgba(255, 255, 255, 0.9);
  opacity: 0.88;
  margin-top: auto;
  margin-bottom: 4px;
  border-radius: 50%;
  transition: opacity 180ms ease;
  flex-shrink: 0;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.community-card:hover .card-pin {
  opacity: 1;
}

.community-card h3 {
  margin: 0;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.28rem, 2vw, 1.72rem);
  font-weight: 800;
  line-height: 1;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.28);
}

.community-card p {
  margin: 0;
  max-width: 19rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
  font-weight: 650;
  line-height: 1.45;
}

.community-grid .community-card-cta {
  background:
    linear-gradient(135deg, rgba(21, 82, 71, 0.9), rgba(13, 18, 23, 0.86)),
    var(--charcoal);
  justify-content: flex-start;
  box-shadow: 0 18px 42px rgba(13, 18, 23, 0.18);
}

.community-grid .community-card-cta::before {
  background:
    radial-gradient(circle at 20% 10%, rgba(197, 138, 47, 0.28), transparent 34%),
    linear-gradient(135deg, var(--accent-dark), var(--charcoal));
}

.community-grid .community-card-cta:hover {
  background:
    linear-gradient(135deg, rgba(21, 82, 71, 0.46), rgba(197, 138, 47, 0.24)),
    var(--accent-dark);
  border-color: var(--accent-dark);
  border-left-color: var(--gold);
  transform: translateY(-3px);
}

.community-card-cta h3 {
  color: #fff;
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.24);
}

.community-card-cta p {
  color: rgba(255, 255, 255, 0.78);
}

.community-card-cta a {
  margin-top: auto;
  padding-top: 16px;
  color: #fff;
  font-size: 0.86rem;
  font-weight: 800;
  transition: color 140ms ease;
}

.community-card-cta a:hover {
  color: var(--gold);
}

.community-trust-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 14px;
  margin-top: 32px;
  padding: 16px 24px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}

.trust-sep {
  color: var(--gold);
  font-weight: 900;
}

.areas-stats {
  display: flex;
  gap: 10px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 24px;
  overflow: hidden;
  flex-shrink: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.42));
  box-shadow: 0 20px 54px rgba(17, 24, 32, 0.1);
  backdrop-filter: blur(16px);
}

.areas-stats div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3px 10px;
  align-items: center;
  min-width: 156px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.58);
  border-right: 0;
  border-radius: 18px;
  text-align: left;
}

.areas-stats div:last-child {
  border-right: 0;
}

.stat-icon {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  color: #fff;
  background: var(--accent);
  border-radius: 50%;
  font-size: 0.84rem;
  font-weight: 900;
}

.areas-stats strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.12rem, 2vw, 1.54rem);
  font-weight: 500;
  color: var(--ink);
  line-height: 1;
}

.areas-stats span {
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.enquiry-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.62fr);
  gap: clamp(32px, 6vw, 86px);
  align-items: start;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(197, 138, 47, 0.11), rgba(21, 82, 71, 0.18)),
    var(--accent-dark);
}

.enquiry-copy {
  max-width: 720px;
}

.enquiry-copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.08rem;
}

.trust-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.trust-list li {
  position: relative;
  padding-left: 28px;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 650;
}

.trust-list li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 50%;
  content: "";
}

.enquiry-channels {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.channel-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  font-size: 0.86rem;
  font-weight: 750;
  transition: background 140ms ease, color 140ms ease;
}

.channel-link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
}

.channel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.channel-dot.wa   { background: #25d366; }
.channel-dot.call { background: var(--gold); }
.channel-dot.mail { background: var(--sky); }

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.label-opt {
  margin-left: 6px;
  color: rgba(100, 112, 119, 0.7);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: lowercase;
  letter-spacing: 0;
}

.enquiry-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 3vw, 34px);
  color: var(--ink);
  background: var(--surface);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  gap: 7px;
}

label {
  color: #344054;
  font-size: 0.92rem;
  font-weight: 750;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  color: var(--ink);
  background: #fff;
  border: 1px solid #cad6ce;
  border-radius: var(--radius);
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold);
  outline: 3px solid rgba(185, 130, 43, 0.16);
}

.form-note {
  min-height: 22px;
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.form-note.success {
  color: var(--accent-dark);
  font-weight: 750;
}

.site-footer {
  background:
    linear-gradient(135deg, rgba(21, 82, 71, 0.18), rgba(197, 138, 47, 0.05)),
    var(--charcoal);
  color: rgba(255, 255, 255, 0.55);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr) minmax(0, 1fr);
  align-items: start;
  gap: 48px 60px;
  padding: clamp(48px, 5.5vw, 72px) clamp(20px, 5vw, 78px) clamp(40px, 4.5vw, 60px);
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 900;
  text-transform: lowercase;
}

.footer-logo .brand {
  width: clamp(170px, 17vw, 220px);
  height: 52px;
}

.footer-brand p {
  max-width: 300px;
  margin: 16px 0 20px;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.52);
  line-height: 1.65;
}

.footer-wa {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.855rem;
  font-weight: 700;
  color: #4ade80;
  text-decoration: none;
  transition: opacity 150ms;
}

.footer-wa:hover {
  opacity: 0.75;
}

.footer-col strong {
  display: block;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.32);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-col address {
  display: grid;
  gap: 10px;
  font-style: normal;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.52);
  line-height: 1.55;
}

.footer-col address a,
.footer-nav a {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
  transition: color 140ms ease;
}

.footer-col address a:hover,
.footer-nav a:hover {
  color: #fff;
}

.footer-nav {
  display: grid;
  gap: 12px;
}

.footer-nav a {
  font-size: 0.92rem;
}

.footer-rera {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px clamp(20px, 5vw, 78px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.rera-badge {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
}

.rera-number {
  color: rgba(255, 255, 255, 0.45);
  font-family: "Courier New", Courier, monospace;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.footer-copy {
  margin-left: auto;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.28);
}

.whatsapp-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 490;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.45);
  animation: whatsappPulse 2.8s ease-in-out infinite;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.whatsapp-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.55);
  animation-play-state: paused;
}

.whatsapp-hint {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translate(8px, -50%);
  width: max-content;
  max-width: 132px;
  padding: 8px 12px;
  color: #fff;
  background: var(--charcoal);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  box-shadow: 0 12px 28px rgba(13, 18, 23, 0.24);
  font-size: 0.78rem;
  font-weight: 850;
  line-height: 1;
  pointer-events: none;
  opacity: 0;
  white-space: nowrap;
  animation: whatsappHint 7s ease-in-out 1s infinite;
}

.whatsapp-hint::after {
  position: absolute;
  top: 50%;
  right: -5px;
  width: 10px;
  height: 10px;
  background: var(--charcoal);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  transform: translateY(-50%) rotate(45deg);
  content: "";
}

.whatsapp-btn svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

@keyframes whatsappPulse {
  0%,
  100% {
    box-shadow: 0 4px 24px rgba(37, 211, 102, 0.45);
  }

  45% {
    box-shadow:
      0 4px 24px rgba(37, 211, 102, 0.45),
      0 0 0 12px rgba(37, 211, 102, 0.12);
  }
}

@keyframes whatsappHint {
  0%,
  58%,
  100% {
    opacity: 0;
    transform: translate(8px, -50%);
  }

  8%,
  38% {
    opacity: 1;
    transform: translate(0, -50%);
  }
}

@keyframes accentSweep {
  0%,
  100% {
    opacity: 0.48;
    transform: scaleX(0.64);
    transform-origin: right;
  }

  50% {
    opacity: 1;
    transform: scaleX(1);
    transform-origin: right;
  }
}

@keyframes cardReveal {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

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

.paper-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.55fr);
  gap: clamp(34px, 6vw, 90px);
  align-items: end;
  min-height: calc(100vh - 72px);
  padding: clamp(76px, 9vw, 132px) clamp(20px, 5vw, 78px);
  color: #fff;
  background:
    linear-gradient(90deg, rgba(13, 18, 23, 0.92), rgba(13, 18, 23, 0.55)),
    url("assets/east-blr-neighbourhood.png") center / cover;
}

.paper-hero p:not(.eyebrow) {
  max-width: 720px;
  margin: 28px 0 34px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.08rem, 2vw, 1.3rem);
}

.paper-stats {
  display: grid;
  gap: 1px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.26);
}

.paper-stats div {
  display: grid;
  gap: 8px;
  padding: 26px;
  background: rgba(13, 18, 23, 0.5);
}

.paper-stats strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 500;
  line-height: 0.85;
}

.paper-stats span {
  color: rgba(255, 255, 255, 0.74);
  font-weight: 800;
}

.paper-section {
  padding: clamp(72px, 9vw, 128px) clamp(20px, 5vw, 78px);
  background: #fff;
}

.paper-section:nth-of-type(odd) {
  background: var(--paper);
}

.paper-section .section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(220px, 0.4fr);
  gap: 28px;
  max-width: none;
}

.paper-section .section-heading p:last-child {
  align-self: end;
  margin: 0;
  padding-left: 18px;
  border-left: 2px solid var(--accent);
  color: var(--ink);
  font-size: 1.08rem;
  line-height: 1.65;
  opacity: 0.72;
}


.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 42px;
}

.service-grid article {
  padding: clamp(24px, 3vw, 34px);
  background: var(--surface);
  border: 1px solid rgba(17, 24, 32, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.feature-board {
  display: grid;
  gap: 14px;
  margin-top: 42px;
}

.feature-overview {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(28px, 4vw, 46px);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(21, 82, 71, 0.18), transparent),
    var(--charcoal);
  border: 1px solid var(--charcoal);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.feature-overview span,
.feature-row span {
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.feature-overview h3 {
  margin: 18px 0 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.2vw, 3.6rem);
  font-weight: 500;
  line-height: 0.95;
}

.feature-overview p {
  margin: 0;
  padding-top: 22px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.06rem;
  line-height: 1.7;
  border-top: 1.5px solid rgba(185, 130, 43, 0.55);
}

.feature-overview p strong {
  display: block;
  margin-bottom: 10px;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  font-weight: 500;
  line-height: 1.25;
}

.feature-overview > div {
  display: grid;
  align-content: end;
}

.feature-list .feature-row:last-child {
  grid-column: 1 / -1;
}

.feature-row {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  min-height: 188px;
  padding: clamp(24px, 3vw, 34px);
  background: var(--surface);
  border: 1px solid rgba(17, 24, 32, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.feature-row:hover {
  transform: translateY(-3px);
  border-color: rgba(21, 82, 71, 0.22);
  box-shadow: 0 18px 42px rgba(17, 24, 32, 0.12);
}

.feature-row.bank-row {
  background: #f3efe5;
  border-color: rgba(185, 130, 43, 0.34);
}

.feature-icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: var(--ink);
  background: var(--soft);
  border: 1px solid rgba(17, 24, 32, 0.08);
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.04rem;
  font-weight: 700;
}

.bank-row .feature-icon {
  width: 76px;
  height: 76px;
  color: #fff;
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  font-size: 1.45rem;
}

.feature-row h3 {
  margin: 10px 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 2.2vw, 2.45rem);
  font-weight: 500;
  line-height: 1;
}

.feature-row p {
  margin: 0;
  color: var(--muted);
}

.timeline-section {
  padding: clamp(22px, 2.75vw, 40px) clamp(20px, 5vw, 78px);
  color: #fff;
  background: var(--charcoal);
}

.timeline-section .section-heading {
  margin-bottom: 40px;
}

.timeline-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.timeline-step {
  background: var(--charcoal);
  padding: clamp(28px, 3.5vw, 44px);
  display: flex;
  flex-direction: column;
  transition: background 200ms ease;
}

.timeline-step:hover {
  background: rgba(255, 255, 255, 0.03);
}

.step-num {
  display: block;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.timeline-step h3 {
  margin: 0 0 10px;
  font-size: clamp(1.05rem, 1.2vw, 1.2rem);
  font-weight: 650;
  color: #fff;
  line-height: 1.25;
}

.timeline-step p {
  margin: 0;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.68;
}

.nexus-band {
  position: relative;
  background:
    radial-gradient(circle at 18% 8%, rgba(197, 138, 47, 0.16), transparent 30%),
    radial-gradient(circle at 92% 18%, rgba(21, 82, 71, 0.14), transparent 34%),
    linear-gradient(180deg, #f8f2e8 0%, #fbfaf5 100%);
  padding: clamp(38px, 5.5vw, 86px) clamp(20px, 5vw, 78px);
  overflow: hidden;
}

.nexus-band::before {
  position: absolute;
  inset: auto -70px -110px auto;
  width: 260px;
  height: 260px;
  background: rgba(21, 82, 71, 0.09);
  border: 0;
  border-radius: 50%;
  filter: blur(12px);
  pointer-events: none;
  content: "";
}

.nexus-band::after {
  position: absolute;
  top: 28px;
  left: clamp(20px, 5vw, 78px);
  width: 96px;
  height: 96px;
  border: 1px solid rgba(197, 138, 47, 0.2);
  border-radius: 28px;
  transform: rotate(-12deg);
  content: "";
}

.nexus-band-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(320px, 0.78fr);
  gap: clamp(22px, 4vw, 54px);
  align-items: center;
  padding: clamp(22px, 4vw, 46px);
  color: #fff;
  background:
    radial-gradient(circle at 16% 12%, rgba(197, 138, 47, 0.22), transparent 32%),
    radial-gradient(circle at 88% 20%, rgba(255, 255, 255, 0.08), transparent 30%),
    linear-gradient(135deg, rgba(21, 82, 71, 0.98), rgba(13, 18, 23, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 30px;
  box-shadow: 0 30px 90px rgba(17, 24, 32, 0.2);
  isolation: isolate;
  overflow: hidden;
}

.nexus-band-inner::before {
  position: absolute;
  inset: 1px;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 29px;
  content: "";
}

.nexus-band .eyebrow {
  color: rgba(232, 190, 119, 0.78);
  letter-spacing: 0.18em;
}

.nexus-band-copy h2 {
  color: #fff;
  max-width: 760px;
  font-size: clamp(2.05rem, 5.2vw, 4.85rem);
  margin: 10px 0 18px;
  line-height: 0.94;
}

.nexus-band-copy h2 span {
  display: block;
  color: transparent;
  background: linear-gradient(90deg, #fff, #e8be77 54%, #9fc7bb);
  -webkit-background-clip: text;
  background-clip: text;
}

.nexus-band-desc {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(0.98rem, 1.7vw, 1.08rem);
  line-height: 1.68;
  margin: 0 0 20px;
}

.nexus-proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.nexus-proof-row span {
  padding: 7px 10px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.02em;
  backdrop-filter: blur(12px);
}

.nexus-band-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.nexus-band .button.primary {
  color: var(--accent-dark);
  background: linear-gradient(135deg, #fff, #f2dfb8);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.nexus-band .button.primary:hover {
  background: linear-gradient(135deg, #fff, #e8be77);
  transform: translateY(-1px);
}

.nexus-band-link {
  font-size: 0.88rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.68);
  text-decoration: none;
  transition: color 150ms;
}

.nexus-band-link:hover {
  color: #fff;
}

.nexus-band-services {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.nexus-highlight-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  min-height: 84px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.06));
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  padding: 16px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(18px);
  animation: cardReveal 700ms ease both;
  transition: background 180ms, transform 180ms, border-color 180ms, box-shadow 180ms;
}

.nexus-highlight-item:nth-child(2) {
  animation-delay: 90ms;
}

.nexus-highlight-item:nth-child(3) {
  animation-delay: 180ms;
}

.nexus-highlight-item:nth-child(4) {
  animation-delay: 270ms;
}

.nexus-highlight-item:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(232, 190, 119, 0.36);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.18);
  transform: translateY(-3px);
}

.nexus-hl-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, #f4d28f, var(--gold));
  color: var(--accent-dark);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.nexus-highlight-item strong {
  display: block;
  font-size: 0.96rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 4px;
}

.nexus-highlight-item span {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.45;
}

.trust-proof-section {
  position: relative;
  padding: clamp(42px, 6vw, 92px) clamp(20px, 5vw, 78px);
  background:
    radial-gradient(circle at 12% 18%, rgba(197, 138, 47, 0.12), transparent 26%),
    radial-gradient(circle at 88% 10%, rgba(21, 82, 71, 0.12), transparent 30%),
    linear-gradient(180deg, #fbf8f1 0%, #ffffff 56%, #f4efe5 100%);
  border-top: 1px solid rgba(17, 24, 32, 0.06);
  overflow: hidden;
}

.trust-proof-section::before {
  position: absolute;
  top: 28px;
  right: clamp(20px, 5vw, 78px);
  width: 110px;
  height: 110px;
  border: 1px solid rgba(197, 138, 47, 0.18);
  border-radius: 32px;
  transform: rotate(10deg);
  content: "";
}

.trust-proof-section--nexus {
  background: var(--paper);
}

.trust-proof-header {
  position: relative;
  max-width: 720px;
  margin: 0 auto clamp(26px, 4vw, 42px);
  text-align: center;
}

.trust-proof-header h2 {
  position: relative;
  display: inline-block;
  max-width: 680px;
  font-size: clamp(2.05rem, 5.4vw, 4rem);
  line-height: 0.98;
  margin-top: 8px;
}

.trust-proof-header h2::after {
  position: absolute;
  right: 8%;
  bottom: -12px;
  width: min(170px, 42vw);
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--accent));
  border-radius: 999px;
  animation: accentSweep 3.8s ease-in-out infinite;
  content: "";
}

.trust-proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 20px);
}

.trust-card {
  position: relative;
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 230px;
  padding: clamp(20px, 2.6vw, 30px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.52));
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 24px;
  box-shadow: 0 22px 58px rgba(17, 24, 32, 0.1);
  backdrop-filter: blur(18px);
  isolation: isolate;
  overflow: hidden;
  animation: cardReveal 700ms ease both;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.trust-card:nth-child(2) {
  animation-delay: 110ms;
}

.trust-card:nth-child(3) {
  animation-delay: 220ms;
}

.trust-card:nth-child(4) {
  animation-delay: 330ms;
}

.trust-card::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 12% 8%, rgba(197, 138, 47, 0.18), transparent 28%),
    radial-gradient(circle at 90% 18%, rgba(21, 82, 71, 0.14), transparent 34%);
  content: "";
}

.trust-card::after {
  position: absolute;
  right: -32px;
  bottom: -42px;
  z-index: -1;
  width: 116px;
  height: 116px;
  background: rgba(21, 82, 71, 0.08);
  border-radius: 50%;
  content: "";
}

.trust-card--families {
  transform: translateY(18px);
}

.trust-card--speed {
  background:
    linear-gradient(160deg, rgba(21, 82, 71, 0.96), rgba(13, 18, 23, 0.92));
  color: #fff;
  border-color: rgba(255, 255, 255, 0.18);
}

.trust-card--speed::before {
  background:
    radial-gradient(circle at 18% 12%, rgba(197, 138, 47, 0.24), transparent 32%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), transparent);
}

.trust-card--local {
  grid-column: span 1;
}

@media (hover: hover) {
  .trust-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 76px rgba(18, 20, 23, 0.16);
    border-color: rgba(197, 138, 47, 0.28);
    z-index: 2;
  }

  .trust-card--families:hover {
    transform: translateY(10px);
  }
}

.trust-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.trust-icon {
  display: grid;
  place-items: center;
  min-width: 44px;
  height: 44px;
  padding: 0 10px;
  color: #fff;
  background: var(--accent);
  border-radius: 16px;
  box-shadow: 0 14px 30px rgba(21, 82, 71, 0.2);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.98rem;
  font-weight: 800;
}

.trust-card--families .trust-icon {
  background: var(--gold);
}

.trust-card--speed .trust-icon {
  color: var(--accent-dark);
  background: #fff;
}

.trust-card--local .trust-icon {
  background: var(--charcoal);
}

.trust-badge {
  justify-self: end;
  padding: 6px 9px;
  color: var(--accent);
  background: rgba(21, 82, 71, 0.08);
  border: 1px solid rgba(21, 82, 71, 0.1);
  border-radius: 999px;
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  text-align: right;
}

.trust-card--speed .trust-badge {
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.16);
}

.trust-proof-grid strong {
  color: var(--ink);
  font-size: clamp(1.18rem, 1.8vw, 1.45rem);
  font-weight: 850;
  line-height: 1.12;
  letter-spacing: -0.01em;
}

.trust-card--speed strong {
  color: #fff;
}

.trust-proof-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.58;
}

.trust-card--speed p {
  color: rgba(255, 255, 255, 0.72);
}

.locality-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 4px;
}

.locality-chips span {
  padding: 6px 9px;
  color: var(--accent-dark);
  background: rgba(21, 82, 71, 0.08);
  border: 1px solid rgba(21, 82, 71, 0.08);
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 800;
}
}

#features {
  padding-top: clamp(32px, 4vw, 48px);
  padding-bottom: clamp(36px, 4.5vw, 64px);
}

.token-section {
  padding: clamp(36px, 4.5vw, 64px) clamp(20px, 5vw, 78px) 12px;
  background: var(--surface);
  border-top: 1px solid var(--line);
}

.token-header {
  max-width: 860px;
  margin-bottom: 48px;
}

.token-header > p:not(.eyebrow) {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: clamp(1.04rem, 1.8vw, 1.18rem);
}

.token-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.token-card {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: clamp(22px, 3vw, 32px);
  background: var(--paper);
}

.token-card h3 {
  margin: 0;
  font-size: 1.06rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.token-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.62;
}

.token-num {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.token-cta-card {
  background: var(--charcoal);
  gap: 22px;
  justify-content: end;
}

.token-cta-card p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.04rem;
  font-weight: 600;
  line-height: 1.45;
}

.token-cta-card .button.primary {
  background: var(--gold);
  border-color: var(--gold);
  width: max-content;
}

.token-cta-card .button.primary:hover {
  background: #a56f20;
  border-color: #a56f20;
}

.pricing-section {
  padding: clamp(40px, 5vw, 64px) clamp(20px, 5vw, 78px);
  background: #fff;
}

.pricing-header {
  max-width: 620px;
  margin: 0 auto 56px;
  text-align: center;
}

.pricing-subhead {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: clamp(0.98rem, 1.5vw, 1.08rem);
  line-height: 1.7;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  padding: 28px;
  background: #fff;
  border: 1px solid rgba(18, 20, 23, 0.09);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
  cursor: default;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 42px rgba(17, 24, 32, 0.12);
  border-color: rgba(18, 20, 23, 0.16);
}

.pricing-card-featured {
  background:
    linear-gradient(135deg, rgba(21, 82, 71, 0.18), transparent),
    var(--charcoal);
  border-color: transparent;
}

.pricing-card-featured:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(18, 20, 23, 0.16), 0 24px 56px rgba(18, 20, 23, 0.26);
  border-color: transparent;
}

.pricing-card-register {
  border-top: 3px solid var(--accent);
  box-shadow: 0 1px 3px rgba(18, 20, 23, 0.04), 0 4px 20px rgba(18, 20, 23, 0.06);
}

.pricing-card-register .card-price {
  color: var(--accent);
}

.pricing-card-register:hover {
  border-top-color: var(--accent);
  box-shadow: 0 4px 12px rgba(24, 75, 67, 0.1), 0 20px 48px rgba(24, 75, 67, 0.12);
}

.card-top {
  flex-shrink: 0;
}

.card-name-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.card-name {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-card-featured .card-name {
  color: rgba(255, 255, 255, 0.45);
}

.card-badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 9px;
  background: rgba(185, 130, 43, 0.14);
  color: var(--gold);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  border-radius: var(--radius);
}

.card-price {
  margin: 0 0 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.9rem, 2.8vw, 2.5rem);
  font-weight: 500;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.02em;
}

.pricing-card-featured .card-price {
  color: #fff;
}

.card-tagline {
  margin: 0 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.05rem, 1.4vw, 1.18rem);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.3;
}

.pricing-card-featured .card-tagline {
  color: #fff;
}

.card-desc {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.68;
}

.pricing-card-featured .card-desc {
  color: rgba(255, 255, 255, 0.52);
}

.card-features {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
  border-top: 1px solid rgba(18, 20, 23, 0.07);
}

.pricing-card-featured .card-features {
  border-top-color: rgba(255, 255, 255, 0.1);
}

.card-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 0;
  font-size: 0.84rem;
  font-weight: 600;
  color: #344054;
  border-bottom: 1px solid rgba(18, 20, 23, 0.06);
}

.card-features li:last-child {
  border-bottom: none;
}

.pricing-card-featured .card-features li {
  color: rgba(255, 255, 255, 0.78);
  border-bottom-color: rgba(255, 255, 255, 0.07);
}

.check-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  padding: 3px;
  background: rgba(24, 75, 67, 0.09);
  border-radius: 50%;
  color: var(--accent);
}

.pricing-card-featured .check-icon {
  background: rgba(185, 130, 43, 0.16);
  color: var(--gold);
}

.card-footer {
  margin-top: 24px;
  flex-shrink: 0;
}

.card-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 42px;
  padding: 0 20px;
  background: transparent;
  border: 1.5px solid rgba(18, 20, 23, 0.14);
  border-radius: var(--radius);
  color: var(--ink);
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 120ms ease;
}

.card-cta:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
  transform: translateY(-1px);
}

.card-cta-featured {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
  font-weight: 800;
}

.card-cta-featured:hover {
  background: #a06928;
  border-color: #a06928;
  color: #fff;
  transform: translateY(-1px);
}

@media (max-width: 1040px) {
  .hero,
  .paper-hero,
  .paper-section .section-heading,
  .enquiry-section {
    grid-template-columns: 1fr;
  }

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

  .intro-feature + .intro-feature {
    border-top: 1px solid rgba(17, 24, 32, 0.1);
  }

  .hero {
    min-height: auto;
  }

  .timeline-steps,
  .token-grid {
    grid-template-columns: 1fr 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr 1fr;
  }


  .community-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .community-card {
    grid-column: span 1;
  }

  .trust-proof-grid article:nth-child(2n) {
    border-right: 0;
  }

  .feature-overview {
    grid-template-columns: 1fr;
  }

  .feature-list {
    grid-template-columns: 1fr;
  }

  .feature-list .feature-row:last-child {
    grid-column: auto;
  }

  .paper-hero {
    min-height: auto;
  }
}

@media (max-width: 820px) {
  .hero,
  .paper-hero {
    grid-template-columns: minmax(0, 1fr);
    gap: 36px;
  }

  .hero-panel,
  .paper-stats {
    max-width: 560px;
    width: 100%;
  }

  .paper-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .trust-proof-grid {
    grid-template-columns: 1fr 1fr;
  }

  .trust-card--families {
    transform: none;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-rera {
    flex-wrap: wrap;
  }

  .footer-copy {
    width: 100%;
    margin-left: 0;
  }
}

@media (max-width: 640px) {
  .brand {
    width: clamp(136px, 46vw, 164px);
    height: 42px;
  }

  .nexus-band-inner {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 22px;
    border-radius: 26px;
  }

  .nexus-band-services {
    grid-template-columns: 1fr;
  }

  .nexus-band .button.primary {
    width: 100%;
    justify-content: center;
  }

  .nexus-band-actions {
    gap: 14px;
  }

  .nexus-band-link {
    width: 100%;
    text-align: center;
  }

  .nexus-proof-row {
    margin-bottom: 22px;
  }

  .nexus-highlight-item {
    min-height: auto;
    padding: 14px;
    border-radius: 18px;
  }

  .nav-inner {
    height: 64px;
    padding: 0 16px;
  }

  .hero {
    padding-top: 36px;
    padding-bottom: 48px;
  }

  h1 {
    font-size: clamp(2.45rem, 13vw, 3.7rem);
    line-height: 0.95;
  }

  h2 {
    font-size: clamp(1.85rem, 10vw, 2.7rem);
    line-height: 1.02;
  }

  .hero-text,
  .paper-hero p:not(.eyebrow),
  .enquiry-copy > p:not(.eyebrow) {
    font-size: 1rem;
  }

  .hero-actions,
  .enquiry-channels {
    flex-direction: column;
    align-items: stretch;
  }

  .panel-grid {
    grid-template-columns: 1fr;
  }

  .panel-grid div {
    min-height: 112px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .communities-section {
    padding-top: 40px;
    padding-bottom: 42px;
  }

  .communities-header {
    margin-bottom: 22px;
    text-align: left;
  }

  .communities-header h2::after {
    right: auto;
    left: 0;
  }

  .communities-subhead {
    margin-left: 0;
  }

  .communities-stats {
    width: 100%;
    margin-bottom: 22px;
  }

  .community-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .community-card {
    min-height: 156px;
    border-radius: 22px;
  }

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

  .areas-stats {
    display: grid;
    gap: 8px;
  }

  .areas-stats div {
    min-width: 0;
    border-right: 0;
    border-bottom: 0;
  }

  .areas-stats div:last-child {
    border-bottom: 0;
  }

  .community-trust-strip {
    gap: 8px 10px;
    font-size: 0.72rem;
  }

  .feature-row {
    grid-template-columns: 1fr;
    gap: 18px;
    min-height: auto;
  }

  .timeline-steps,
  .token-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .trust-proof-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .trust-card {
    min-height: auto;
    padding: 18px;
    border-radius: 22px;
  }

  .trust-proof-header {
    margin-bottom: 26px;
    text-align: left;
  }

  .trust-proof-header h2::after {
    right: auto;
    left: 0;
  }

  .trust-card-top {
    margin-bottom: 4px;
  }

  .trust-icon {
    min-width: 40px;
    height: 40px;
    border-radius: 14px;
  }

  .trust-badge {
    max-width: 150px;
  }

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


  .enquiry-form {
    padding: 20px;
  }

  .form-row-2 {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .footer-rera {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .rera-number,
  .footer-copy {
    overflow-wrap: anywhere;
  }
}

@media (max-width: 480px) {
  .section,
  .paper-section,
  .pricing-section,
  .token-section,
  .timeline-section,
  .nexus-band,
  .enquiry-section,
  .hero,
  .paper-hero {
    padding-left: 16px;
    padding-right: 16px;
  }

  .mobile-menu-inner {
    padding: 84px 18px 34px;
  }

  .community-grid,
  .nexus-band-services,
  .paper-stats,
  .pricing-grid,
  .trust-proof-grid,
  .timeline-steps,
  .token-grid {
    grid-template-columns: 1fr;
  }

  .community-card,
  .pricing-card,
  .token-card,
  .timeline-step,
  .feature-row,
  .feature-overview {
    padding: 22px;
  }

  .intro-copy {
    padding-left: 16px;
  }

  .intro::before {
    left: 16px;
  }

  .hero-proof span {
    width: 100%;
    text-align: center;
  }

  .paper-stats div {
    padding: 20px;
  }

  .feature-icon,
  .bank-row .feature-icon {
    width: 52px;
    height: 52px;
    font-size: 1rem;
  }

  .whatsapp-btn {
    right: 16px;
    bottom: 18px;
    width: 52px;
    height: 52px;
  }
}

@media (max-width: 360px) {
  .brand {
    width: 128px;
  }

  .nav-toggle {
    width: 42px;
    height: 42px;
  }

  h1 {
    font-size: 2.25rem;
  }

  h2 {
    font-size: 1.72rem;
  }

  .button,
  .button.hero-wa,
  .card-cta {
    padding-left: 14px;
    padding-right: 14px;
  }
}
