/* ==========================================================================
   GROUPSERVE — 3D MARKETING DESIGN SYSTEM
   Modern Fintech + Indian Consumer-Tech + 3D Spatial Depth System
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,700&family=Space+Grotesk:wght@600;700;800&display=swap');

:root {
  /* Brand Palettes */
  --primary: #16A34A;
  --primary-dark: #15803D;
  --primary-darker: #0F5132;
  --primary-light: #22C55E;
  --primary-subtle: #DCFCE7;
  --primary-bg: #F0FDF4;
  --primary-glow: rgba(22, 163, 74, 0.4);

  /* Luxury Dark / Navy Neutrals */
  --navy-950: #060D17;
  --navy-900: #0B1528;
  --navy-850: #0F1D36;
  --navy-800: #152747;
  --navy-700: #1E3A6E;

  /* Text & Surface Neutrals */
  --n-900: #0F172A;
  --n-800: #1E293B;
  --n-700: #334155;
  --n-600: #475569;
  --n-500: #64748B;
  --n-400: #94A3B8;
  --n-300: #CBD5E1;
  --n-200: #E2E8F0;
  --n-100: #F1F5F9;
  --n-50: #F8FAFC;
  --white: #FFFFFF;

  /* Accent Tokens */
  --amber: #F59E0B;
  --amber-light: #FEF3C7;
  --amber-glow: rgba(245, 158, 11, 0.35);
  --red: #EF4444;
  --red-light: #FEE2E2;
  --blue: #3B82F6;
  --blue-light: #EFF6FF;
  --purple: #8B5CF6;
  --purple-light: #F5F3FF;
  --teal: #0D9488;
  --teal-light: #CCFBF1;

  /* Fonts */
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'Space Grotesk', monospace;

  /* 3D Shadows & Layering */
  --s-subtle: 0 2px 8px rgba(15, 23, 42, 0.04);
  --s-card: 0 10px 30px -5px rgba(15, 23, 42, 0.08), 0 0 1px 1px rgba(15, 23, 42, 0.04);
  --s-card-hover: 0 22px 45px -10px rgba(15, 23, 42, 0.16), 0 0 1px 1px rgba(15, 23, 42, 0.06);
  --s-float-3d: 0 30px 60px -15px rgba(6, 13, 23, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.15) inset;
  --s-hero-phone: 0 40px 80px -20px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.2) inset;
  --s-primary-btn: 0 10px 25px -4px rgba(22, 163, 74, 0.45), 0 4px 10px -2px rgba(22, 163, 74, 0.25);
  --s-amber-btn: 0 10px 25px -4px rgba(245, 158, 11, 0.45);

  /* Radius */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-2xl: 36px;
  --r-full: 9999px;

  /* 3D Perspective Container */
  --perspective: 1200px;
}

/* ==========================================================================
   ACCESSIBILITY & UTILITIES
   ========================================================================== */
.skip-to-content {
  position: absolute;
  top: -100px;
  left: 20px;
  background: var(--primary);
  color: var(--white);
  padding: 12px 20px;
  font-weight: 800;
  border-radius: var(--r-md);
  z-index: 99999;
  text-decoration: none;
  transition: top 0.2s ease;
  box-shadow: var(--s-primary-btn);
}

.skip-to-content:focus {
  top: 20px;
}

*:focus-visible {
  outline: 3px solid #22C55E;
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Legal & Policy Reading Components */
.legal-content-box {
  background: #FFFFFF;
  border-radius: var(--r-xl);
  padding: 36px 32px;
  border: 1.5px solid var(--n-200);
  line-height: 1.7;
  color: var(--n-800);
  font-size: 0.95rem;
}

.legal-content-box h2 {
  font-size: 1.4rem;
  font-weight: 850;
  color: var(--n-900);
  margin: 28px 0 12px;
}

.legal-content-box h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--n-900);
  margin: 20px 0 8px;
}

.legal-content-box p,
.legal-content-box ul {
  margin-bottom: 16px;
}

.legal-content-box ul {
  padding-left: 24px;
}

.legal-disclaimer-banner {
  background: #FFFBEB;
  border: 1.5px solid #FDE68A;
  border-radius: var(--r-md);
  padding: 14px 18px;
  font-size: 0.85rem;
  color: #92400E;
  margin-bottom: 24px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

body {
  font-family: var(--font-sans);
  background-color: #040A10;
  color: var(--n-900);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-wrapper {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

@media (max-width: 768px) {
  .section-wrapper {
    padding: 60px 0;
  }
}

/* Typography Badges & Headers */
/* Badge semantic roles:
   .badge-green      → Section headers, category labels (light backgrounds)
   .badge-dark-green  → Section headers on dark backgrounds
   .badge-amber       → Demo/Illustrative/Simulated content
   .badge-blue        → Info/neutral labels
   .badge-red         → Alerts/errors
*/
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: var(--r-full);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
  backdrop-filter: blur(10px);
}

.badge-green {
  background: rgba(22, 163, 74, 0.12);
  color: #15803D;
  border: 1px solid rgba(22, 163, 74, 0.3);
}

.badge-dark-green {
  background: rgba(34, 197, 94, 0.18);
  color: #86EFAC;
  border: 1px solid rgba(134, 239, 172, 0.35);
}

.badge-amber {
  background: rgba(245, 158, 11, 0.14);
  color: #B45309;
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.badge-blue {
  background: rgba(59, 130, 246, 0.12);
  color: #1D4ED8;
  border: 1px solid rgba(59, 130, 246, 0.3);
}

.badge-red {
  background: rgba(239, 68, 68, 0.12);
  color: #B91C1C;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.badge-pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.7);
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.7);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 8px rgba(22, 163, 74, 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(22, 163, 74, 0);
  }
}

.section-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 60px;
}

.section-title {
  font-size: 2.75rem;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--n-900);
  margin-bottom: 16px;
}

.section-title.light {
  color: var(--white);
}

.section-subtitle {
  font-size: 1.15rem;
  color: var(--n-600);
  line-height: 1.6;
}

.section-subtitle.light {
  color: var(--n-300);
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }
}

/* ==========================================================================
   TOP ANNOUNCEMENT BAR & LUXURY FLOATING PILL NAVBAR
   ========================================================================== */
.top-announcement-bar {
  background: linear-gradient(90deg, #060D17 0%, #0F3824 50%, #060D17 100%);
  border-bottom: 1px solid rgba(134, 239, 172, 0.2);
  color: #DCFCE7;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 8px 16px;
  text-align: center;
  position: relative;
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.top-announcement-bar a {
  color: #4ADE80;
  text-decoration: underline;
  margin-left: 4px;
}

.site-nav-wrapper {
  position: fixed;
  top: 54px;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  justify-content: center;
  padding: 0 16px;
  pointer-events: none;
  transition: top 0.15s ease;
}

.site-nav {
  pointer-events: auto;
  width: 100%;
  max-width: 1360px;
  background: rgba(11, 21, 40, 0.9);
  backdrop-filter: blur(28px) saturate(190%);
  -webkit-backdrop-filter: blur(28px) saturate(190%);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 9999px;
  padding: 6px 12px 6px 18px;
  box-shadow: 0 20px 45px -10px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.08) inset;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.site-nav.scrolled {
  background: rgba(6, 13, 23, 0.96);
  border-color: rgba(34, 197, 94, 0.35);
  box-shadow: 0 24px 50px -10px rgba(0, 0, 0, 0.75), 0 0 25px rgba(22, 163, 74, 0.2);
  transform: translateY(-4px);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: nowrap;
}

/* Brand Section */
.nav-brand-group {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  white-space: nowrap;
}

/* Society Selector Pill */
.nav-society-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 9999px;
  padding: 4px 10px;
  font-size: 0.72rem;
  font-weight: 750;
  color: #E2E8F0;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-society-pill:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(134, 239, 172, 0.45);
}

.society-live-indicator {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22C55E;
  box-shadow: 0 0 8px #22C55E;
  flex-shrink: 0;
}

/* Center Nav Links */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  background: transparent;
  padding: 0;
  border: none;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.nav-link {
  color: #CBD5E1;
  font-size: 0.8rem;
  font-weight: 650;
  padding: 6px 10px;
  border-radius: 9999px;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  display: block;
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

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

.btn-nav-partner {
  color: #CBD5E1;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 9999px;
  transition: all 0.2s ease;
  background: transparent;
  white-space: nowrap;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  border: 1px solid transparent;
}

.btn-nav-partner:hover {
  color: #86EFAC;
  background: rgba(34, 197, 94, 0.12);
  border-color: rgba(34, 197, 94, 0.25);
}

.btn-nav-primary {
  background: linear-gradient(135deg, #22C55E 0%, #16A34A 100%);
  color: var(--white);
  padding: 7px 16px;
  font-size: 0.82rem;
  font-weight: 850;
  border-radius: 9999px;
  box-shadow: 0 4px 14px rgba(22, 163, 74, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.35);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  align-items: center;
  gap: 5px;
  text-decoration: none;
  white-space: nowrap;
}

.btn-nav-primary:hover {
  transform: translateY(-1px) scale(1.02);
  box-shadow: 0 8px 22px rgba(22, 163, 74, 0.65);
}

.mobile-toggle {
  display: none;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--white);
  border-radius: 9999px;
  padding: 6px 10px;
  font-size: 1rem;
  cursor: pointer;
}

@media (max-width: 1140px) {
  .nav-society-pill {
    display: none;
  }
}

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

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

  .mobile-toggle {
    display: block;
  }

  .site-nav-wrapper {
    top: 38px;
  }
}

/* ==========================================================================
   HERO SECTION (3D Spatial Society & Floating Group Deal Cards)
   ========================================================================== */
.hero-section {
  position: relative;
  background: radial-gradient(circle at 50% 20%, #0F2A38 0%, #081622 45%, #040A10 100%);
  min-height: 100vh;
  padding-top: 175px;
  padding-bottom: 80px;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
}

.hero-glow-sphere {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.sphere-1 {
  width: 500px;
  height: 500px;
  background: rgba(22, 163, 74, 0.15);
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
}

.sphere-2 {
  width: 400px;
  height: 400px;
  background: rgba(14, 165, 233, 0.12);
  top: 40%;
  right: 5%;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
}

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 60px;
  }
}

.hero-content {
  max-width: 600px;
}

@media (max-width: 1024px) {
  .hero-content {
    margin: 0 auto;
  }
}

.hero-title {
  font-size: 3.6rem;
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
}

.hero-title .gradient-text {
  background: linear-gradient(135deg, #4ADE80 0%, #22C55E 50%, #86EFAC 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-sub {
  font-size: 1.25rem;
  color: var(--n-300);
  line-height: 1.6;
  margin-bottom: 36px;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

@media (max-width: 1024px) {
  .hero-cta-group {
    justify-content: center;
  }
}

.btn-hero-primary {
  background: linear-gradient(135deg, #22C55E 0%, #16A34A 100%);
  color: var(--white);
  padding: 16px 32px;
  font-size: 1.05rem;
  font-weight: 850;
  border-radius: var(--r-lg);
  box-shadow: var(--s-primary-btn);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-hero-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 35px -5px rgba(22, 163, 74, 0.6);
}

.btn-hero-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  padding: 16px 28px;
  font-size: 1.05rem;
  font-weight: 750;
  border-radius: var(--r-lg);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
}

.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-2px);
}

.hero-trust-strip {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 1024px) {
  .hero-trust-strip {
    justify-content: center;
  }
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--n-300);
}

.trust-item svg {
  color: #4ADE80;
}

/* 3D Spatial Hero Canvas & Floating Cards Scene */
.hero-3d-stage {
  position: relative;
  width: 100%;
  height: 540px;
  perspective: var(--perspective);
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 640px) {
  .hero-3d-stage {
    height: 460px;
  }
}

/* Central Society 3D Illustration Container */
.society-3d-center {
  position: relative;
  width: 320px;
  height: 420px;
  transform-style: preserve-3d;
  animation: floatSociety 6s ease-in-out infinite;
}

@keyframes floatSociety {

  0%,
  100% {
    transform: translateY(0px) rotateY(-8deg) rotateX(6deg);
  }

  50% {
    transform: translateY(-14px) rotateY(-4deg) rotateX(3deg);
  }
}

/* Realistic 3D Mobile Device in Center */
.device-frame-3d {
  position: absolute;
  inset: 0;
  background: #0A121E;
  border-radius: 42px;
  border: 4px solid rgba(255, 255, 255, 0.25);
  box-shadow: var(--s-hero-phone), 0 0 40px rgba(34, 197, 94, 0.2);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.device-notch {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 18px;
  background: #000;
  border-radius: 12px;
  z-index: 10;
}

.device-screen-content {
  flex: 1;
  background: linear-gradient(180deg, #091E28 0%, #0F3824 35%, #F8FAFC 35%, #F8FAFC 100%);
  padding: 38px 16px 16px;
  display: flex;
  flex-direction: column;
  color: var(--n-900);
}

.screen-society-header {
  color: var(--white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.screen-society-title {
  font-size: 0.85rem;
  font-weight: 800;
}

.screen-society-tag {
  font-size: 0.65rem;
  background: rgba(34, 197, 94, 0.25);
  color: #86EFAC;
  padding: 2px 6px;
  border-radius: 6px;
  font-weight: 700;
}

.screen-hero-card {
  background: var(--white);
  border-radius: 16px;
  padding: 12px;
  box-shadow: var(--s-card);
  margin-bottom: 10px;
  border: 1px solid var(--n-200);
}

/* Floating 3D Service Deal Cards hovering around Society */
.float-card-3d {
  position: absolute;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  border: 1.5px solid rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  padding: 14px 18px;
  color: var(--n-900);
  box-shadow: var(--s-float-3d);
  z-index: 20;
  transform-style: preserve-3d;
  transition: transform 0.3s ease;
  min-width: 210px;
}

.float-card-3d:hover {
  transform: scale(1.06) translateZ(30px) !important;
  z-index: 30;
}

.card-pos-1 {
  top: 40px;
  left: -40px;
  transform: translateZ(50px) rotate(-6deg);
  animation: floatCard1 5s ease-in-out infinite;
}

.card-pos-2 {
  bottom: 50px;
  left: -30px;
  transform: translateZ(40px) rotate(4deg);
  animation: floatCard2 6s ease-in-out infinite 0.5s;
}

.card-pos-3 {
  top: 100px;
  right: -50px;
  transform: translateZ(60px) rotate(5deg);
  animation: floatCard3 5.5s ease-in-out infinite 1s;
}

@keyframes floatCard1 {

  0%,
  100% {
    transform: translateZ(50px) translateY(0px) rotate(-6deg);
  }

  50% {
    transform: translateZ(50px) translateY(-12px) rotate(-4deg);
  }
}

@keyframes floatCard2 {

  0%,
  100% {
    transform: translateZ(40px) translateY(0px) rotate(4deg);
  }

  50% {
    transform: translateZ(40px) translateY(-10px) rotate(6deg);
  }
}

@keyframes floatCard3 {

  0%,
  100% {
    transform: translateZ(60px) translateY(0px) rotate(5deg);
  }

  50% {
    transform: translateZ(60px) translateY(-14px) rotate(3deg);
  }
}

@media (max-width: 768px) {
  .card-pos-1 {
    left: -10px;
    top: 20px;
  }

  .card-pos-2 {
    left: -10px;
    bottom: 20px;
  }

  .card-pos-3 {
    right: -10px;
    top: 60px;
  }
}

.fc-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}

.fc-service-name {
  font-size: 0.95rem;
  font-weight: 850;
  color: var(--n-900);
}

.fc-badge {
  font-size: 0.7rem;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 6px;
  background: #FEF3C7;
  color: #B45309;
}

.fc-pricing {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 6px;
}

.fc-current-price {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--primary);
}

.fc-original-price {
  font-size: 0.8rem;
  color: var(--n-400);
  text-decoration: line-through;
}

.fc-progress-bar {
  width: 100%;
  height: 6px;
  background: var(--n-200);
  border-radius: 99px;
  overflow: hidden;
  margin-bottom: 6px;
}

.fc-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #22C55E, #16A34A);
  border-radius: 99px;
}

.fc-footer {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--n-600);
}

/* ==========================================================================
   SECTION 2: “WHY GROUPSERVE?” BEFORE & AFTER COMPARISON
   ========================================================================== */
.why-section {
  background: var(--white);
}

.comparison-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 1040px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .comparison-wrapper {
    grid-template-columns: 1fr;
  }
}

.compare-card {
  border-radius: var(--r-2xl);
  padding: 36px 32px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.compare-card.alone {
  background: #FFF8F8;
  border: 2px solid #FECACA;
}

.compare-card.together {
  background: linear-gradient(145deg, #F0FDF4 0%, #DCFCE7 100%);
  border: 2.5px solid #86EFAC;
  box-shadow: 0 20px 45px -10px rgba(22, 163, 74, 0.2);
  transform: scale(1.03);
}

@media (max-width: 768px) {
  .compare-card.together {
    transform: none;
  }
}

.compare-tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--r-full);
  font-size: 0.8rem;
  font-weight: 850;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.tag-red {
  background: #FEE2E2;
  color: #DC2626;
}

.tag-green {
  background: #22C55E;
  color: var(--white);
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.4);
}

.compare-price {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.03em;
}

.compare-price.red {
  color: #DC2626;
}

.compare-price.green {
  color: var(--primary-darker);
}

.compare-desc {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--n-700);
  margin-bottom: 28px;
}

.compare-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.compare-feat-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 650;
}

.feat-icon-bad {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #FEE2E2;
  color: #DC2626;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.feat-icon-good {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #16A34A;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 0.85rem;
  flex-shrink: 0;
}

/* ==========================================================================
   SECTION 3: HOW IT WORKS (Interactive 3D 4-Step Timeline)
   ========================================================================== */
.hiw-section {
  background: var(--n-50);
}

.timeline-3d-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

@media (max-width: 1024px) {
  .timeline-3d-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .timeline-3d-grid {
    grid-template-columns: 1fr;
  }
}

.timeline-connector {
  position: absolute;
  top: 70px;
  left: 10%;
  right: 10%;
  height: 4px;
  background: linear-gradient(90deg, #16A34A 0%, #22C55E 50%, #86EFAC 100%);
  z-index: 1;
}

@media (max-width: 1024px) {
  .timeline-connector {
    display: none;
  }
}

.timeline-step-card {
  position: relative;
  z-index: 2;
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 32px 24px;
  border: 1.5px solid var(--n-200);
  box-shadow: var(--s-card);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.timeline-step-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--s-card-hover);
  border-color: var(--primary-light);
}

.step-num-badge {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: linear-gradient(135deg, #22C55E 0%, #16A34A 100%);
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 18px rgba(22, 163, 74, 0.35);
  margin-bottom: 24px;
}

.step-title {
  font-size: 1.25rem;
  font-weight: 850;
  color: var(--n-900);
  margin-bottom: 10px;
}

.step-desc {
  font-size: 0.92rem;
  color: var(--n-600);
  line-height: 1.55;
}

/* ==========================================================================
   SECTION 4: THE GROUP DEAL ENGINE (Interactive Progress Engine & Calculator)
   ========================================================================== */
.engine-section {
  background: radial-gradient(circle at 50% 50%, #0F1F30 0%, #08121E 100%);
  color: var(--white);
}

.engine-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--r-2xl);
  padding: 48px 40px;
  backdrop-filter: blur(20px);
  box-shadow: var(--s-float-3d);
}

@media (max-width: 768px) {
  .engine-box {
    padding: 24px 18px;
  }
}

.engine-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
}

@media (max-width: 960px) {
  .engine-grid {
    grid-template-columns: 1fr;
  }
}

.deal-live-card {
  background: rgba(255, 255, 255, 0.98);
  color: var(--n-900);
  border-radius: var(--r-xl);
  padding: 32px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.deal-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}

.deal-name {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--n-900);
}

.deal-tag {
  background: #FEF3C7;
  color: #B45309;
  font-size: 0.8rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: var(--r-full);
}

.deal-price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 20px;
}

.dp-current {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--primary);
}

.dp-normal {
  font-size: 1.2rem;
  color: var(--n-400);
  text-decoration: line-through;
}

.dp-savings {
  background: var(--primary-subtle);
  color: var(--primary-darker);
  font-size: 0.85rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 8px;
}

/* Interactive Slider Simulation */
.engine-slider-wrap {
  margin: 24px 0;
}

.slider-label-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  font-weight: 750;
  color: var(--n-700);
  margin-bottom: 10px;
}

.engine-range-input {
  width: 100%;
  height: 10px;
  border-radius: 99px;
  background: var(--n-200);
  outline: none;
  -webkit-appearance: none;
  cursor: pointer;
}

.engine-range-input::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--primary);
  border: 4px solid var(--white);
  box-shadow: 0 4px 12px rgba(22, 163, 74, 0.5);
  cursor: pointer;
  transition: transform 0.1s ease;
}

.engine-range-input::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}

/* Price Ladder Visual */
.price-ladder-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 24px;
}

.ladder-tier {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 16px;
  border-radius: 12px;
  background: var(--n-100);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--n-700);
  transition: all 0.2s ease;
}

.ladder-tier.active-tier {
  background: #DCFCE7;
  color: var(--primary-darker);
  border: 1.5px solid var(--primary);
  transform: scale(1.02);
}

/* ==========================================================================
   SECTION 5: 3D SOCIETY NETWORK (Ashraya 9 Interactive Model)
   ========================================================================== */
.society-section {
  background: var(--white);
}

.society-grid-explorer {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 40px;
  align-items: center;
}

@media (max-width: 960px) {
  .society-grid-explorer {
    grid-template-columns: 1fr;
  }
}

.society-info-card {
  background: var(--n-50);
  border-radius: var(--r-2xl);
  padding: 36px;
  border: 1.5px solid var(--n-200);
}

.society-name-hero {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--n-900);
  margin-bottom: 6px;
}

.society-loc-tag {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--n-600);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.tower-matrix-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 28px;
}

.tower-pill-btn {
  background: var(--white);
  border: 1.5px solid var(--n-200);
  border-radius: var(--r-md);
  padding: 12px;
  text-align: left;
  cursor: pointer;
  transition: all 0.2s ease;
}

.tower-pill-btn:hover,
.tower-pill-btn.active {
  border-color: var(--primary);
  background: var(--primary-bg);
  box-shadow: 0 4px 14px rgba(22, 163, 74, 0.15);
}

.tp-name {
  font-size: 0.95rem;
  font-weight: 850;
  color: var(--n-900);
}

.tp-homes {
  font-size: 0.75rem;
  color: var(--n-500);
}

.tp-active-deal {
  font-size: 0.75rem;
  font-weight: 750;
  color: var(--primary);
  margin-top: 4px;
}

/* Society 3D Isometric Viewport Container */
.society-isometric-stage {
  position: relative;
  background: radial-gradient(circle at 50% 50%, #F0FDF4 0%, #E2E8F0 100%);
  border-radius: var(--r-2xl);
  border: 2px solid var(--n-200);
  height: 480px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--s-card);
}

/* Interactive SVG Canvas representation for 3D towers */
.society-canvas-wrap {
  width: 100%;
  height: 100%;
  position: relative;
}

/* ==========================================================================
   SECTION 6: “YOUR SOCIETY IS YOUR ADVANTAGE” STATS COUNTER
   ========================================================================== */
.stats-section {
  background: linear-gradient(135deg, #091E28 0%, #0F3824 50%, #060D17 100%);
  color: var(--white);
  padding: 80px 0;
}

.stats-counter-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

@media (max-width: 960px) {
  .stats-counter-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 540px) {
  .stats-counter-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.stat-box {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--r-xl);
  padding: 32px 24px;
  backdrop-filter: blur(14px);
  text-align: center;
  transition: transform 0.2s ease;
}

.stat-box:hover {
  transform: translateY(-6px);
  border-color: rgba(34, 197, 94, 0.4);
}

.stat-number {
  font-family: var(--font-mono);
  font-size: 3.2rem;
  font-weight: 800;
  color: #86EFAC;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 4px;
}

.stat-caption {
  font-size: 0.85rem;
  color: var(--n-400);
}

/* ==========================================================================
   SECTION 7: SERVICE CATEGORIES (Interactive 18+ Universe)
   ========================================================================== */
.services-section {
  background: var(--n-50);
}

.service-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

@media (max-width: 1024px) {
  .service-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 540px) {
  .service-cards-grid {
    grid-template-columns: 1fr;
  }
}

.service-card-3d {
  background: var(--white);
  border-radius: var(--r-xl);
  border: 1.5px solid var(--n-200);
  padding: 24px;
  box-shadow: var(--s-card);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.service-card-3d:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--s-card-hover);
  border-color: var(--primary);
}

.sc-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 16px;
  box-shadow: var(--s-subtle);
}

.sc-title {
  font-size: 1.2rem;
  font-weight: 850;
  color: var(--n-900);
  margin-bottom: 6px;
}

.sc-tagline {
  font-size: 0.85rem;
  color: var(--n-600);
  margin-bottom: 16px;
  line-height: 1.4;
}

.sc-footer {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  border-top: 1px solid var(--n-100);
}

.sc-discount {
  font-size: 0.85rem;
  font-weight: 850;
  color: var(--primary);
}

.sc-action {
  font-size: 0.8rem;
  font-weight: 750;
  color: var(--n-600);
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ==========================================================================
   SECTION 8: SERVICE DETAIL EXPERIENCE (Floating Phone Mockup)
   ========================================================================== */
.detail-exp-section {
  background: var(--white);
}

.detail-exp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 960px) {
  .detail-exp-grid {
    grid-template-columns: 1fr;
  }
}

.detail-inclusions-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 28px 0;
}

.inc-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  font-weight: 650;
  color: var(--n-800);
}

.inc-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #DCFCE7;
  color: #16A34A;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 0.8rem;
  flex-shrink: 0;
}

/* ==========================================================================
   SECTION 9: TRUST, SAFETY & SHIELD
   ========================================================================== */
.trust-section {
  background: var(--n-50);
}

.trust-pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

@media (max-width: 960px) {
  .trust-pillars-grid {
    grid-template-columns: 1fr;
  }
}

.trust-pillar-card {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 32px;
  border: 1.5px solid var(--n-200);
  box-shadow: var(--s-card);
  transition: transform 0.2s ease;
}

.trust-pillar-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--s-card-hover);
}

.tp-icon-box {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.tp-title {
  font-size: 1.25rem;
  font-weight: 850;
  color: var(--n-900);
  margin-bottom: 8px;
}

.tp-desc {
  font-size: 0.92rem;
  color: var(--n-600);
  line-height: 1.55;
}

/* ==========================================================================
   SECTION 10: REFUND PROMISE (3D Auto-Refund Pipeline)
   ========================================================================== */
.refund-section {
  background: linear-gradient(135deg, #060D17 0%, #0F172A 100%);
  color: var(--white);
}

.refund-pipeline-wrap {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  position: relative;
  margin-top: 40px;
}

@media (max-width: 1024px) {
  .refund-pipeline-wrap {
    grid-template-columns: 1fr;
  }
}

.pipeline-node {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--r-lg);
  padding: 24px 18px;
  text-align: center;
  backdrop-filter: blur(12px);
  position: relative;
}

.node-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(34, 197, 94, 0.2);
  color: #86EFAC;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}

.node-title {
  font-size: 0.95rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.node-desc {
  font-size: 0.78rem;
  color: var(--n-300);
}

/* ==========================================================================
   SECTION 11: SERVICE DAY TRACKING (7-Stage Flow)
   ========================================================================== */
.serviceday-section {
  background: var(--white);
}

.serviceday-stages-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 12px;
}

@media (max-width: 1024px) {
  .serviceday-stages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 540px) {
  .serviceday-stages-grid {
    grid-template-columns: 1fr;
  }
}

.stage-step-card {
  background: var(--n-50);
  border: 1.5px solid var(--n-200);
  border-radius: var(--r-lg);
  padding: 18px 14px;
  text-align: center;
  transition: all 0.2s ease;
}

.stage-step-card.current {
  background: #F0FDF4;
  border-color: #16A34A;
  box-shadow: 0 4px 14px rgba(22, 163, 74, 0.2);
}

.stage-icon {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.stage-name {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--n-900);
}

/* ==========================================================================
   SECTION 12 & 13: RESIDENT APP CTA & VENDOR PARTNER PORTAL
   ========================================================================== */
.vendor-portal-section {
  background: radial-gradient(circle at 50% 20%, #152747 0%, #0B1528 50%, #060D17 100%);
  color: var(--white);
  padding: 110px 0;
}

.vendor-dashboard-preview {
  background: rgba(255, 255, 255, 0.05);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--r-2xl);
  padding: 36px;
  box-shadow: var(--s-float-3d);
}

.vendor-stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

@media (max-width: 768px) {
  .vendor-stats-strip {
    grid-template-columns: repeat(2, 1fr);
  }
}

.v-stat-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--r-md);
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.v-stat-val {
  font-size: 1.5rem;
  font-weight: 900;
  color: #86EFAC;
}

.v-stat-lbl {
  font-size: 0.8rem;
  color: var(--n-300);
}

/* ==========================================================================
   SECTION 14: FAQ ACCORDION
   ========================================================================== */
.faq-section {
  background: var(--n-50);
}

.faq-list {
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1.5px solid var(--n-200);
  overflow: hidden;
  box-shadow: var(--s-subtle);
  transition: border-color 0.2s ease;
}

.faq-question-btn {
  width: 100%;
  padding: 22px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--n-900);
  cursor: pointer;
}

.faq-answer-content {
  padding: 0 24px 22px;
  font-size: 0.95rem;
  color: var(--n-600);
  line-height: 1.6;
  display: none;
}

.faq-item.open .faq-answer-content {
  display: block;
}

.faq-item.open {
  border-color: var(--primary);
}

.faq-chevron {
  transition: transform 0.2s ease;
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: var(--navy-950);
  color: var(--n-300);
  padding: 80px 0 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}

@media (max-width: 960px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 540px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-col-title {
  font-size: 1rem;
  font-weight: 850;
  color: var(--white);
  margin-bottom: 18px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: var(--n-400);
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #86EFAC;
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--n-500);
  flex-wrap: wrap;
  gap: 16px;
}

/* ==========================================================================
   BETA TESTING ANNOUNCEMENT BAR
   ========================================================================== */
.top-announcement-bar.beta-bar {
  background: linear-gradient(90deg, #0B1528 0%, #0F2A1F 50%, #0B1528 100%);
  border-bottom: 1px solid rgba(74, 222, 128, 0.2);
  position: relative;
  overflow: hidden;
}

.top-announcement-bar.beta-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(74, 222, 128, 0.04), transparent);
  animation: betaShimmer 3s ease-in-out infinite;
}

@keyframes betaShimmer {

  0%,
  100% {
    opacity: 0;
    transform: translateX(-100%);
  }

  50% {
    opacity: 1;
    transform: translateX(100%);
  }
}

.beta-pulse {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ADE80;
  box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7);
  animation: betaPulse 1.8s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes betaPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7);
  }

  70% {
    box-shadow: 0 0 0 8px rgba(74, 222, 128, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(74, 222, 128, 0);
  }
}

/* ==========================================================================
   MOBILE-FIRST RESPONSIVE SYSTEM — Full Coverage
   Target breakpoints: 1200px | 960px | 768px | 640px | 480px | 360px
   ========================================================================== */

/* ── Announcement Bar ── */
@media (max-width: 640px) {
  .top-announcement-bar {
    font-size: 0.72rem;
    padding: 7px 12px;
    gap: 6px;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }

  .top-announcement-bar a {
    font-size: 0.72rem;
  }
}

/* ── Navigation Mobile Drawer — always hidden by default globally ── */
.mobile-menu-drawer {
  display: none !important;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(6, 13, 23, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 9000;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 80px 24px 40px;
  overflow-y: auto;
}

.mobile-menu-drawer.open {
  display: flex !important;
}

.mobile-drawer-link {
  color: #E2E8F0;
  font-size: 1.3rem;
  font-weight: 800;
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 16px;
  transition: background 0.2s, color 0.2s;
  width: 100%;
  max-width: 380px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-drawer-link:hover,
.mobile-drawer-link:focus {
  background: rgba(74, 222, 128, 0.12);
  color: #4ADE80;
  border-color: rgba(74, 222, 128, 0.3);
}

.mobile-drawer-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.08);
  border: none;
  color: #fff;
  font-size: 1.4rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.mobile-drawer-close:hover {
  background: rgba(255, 255, 255, 0.18);
}

.mobile-drawer-download {
  background: linear-gradient(135deg, #22C55E, #16A34A);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 900;
  padding: 16px 40px;
  border-radius: 16px;
  text-decoration: none;
  margin-top: 12px;
  box-shadow: 0 10px 25px rgba(22, 163, 74, 0.4);
  text-align: center;
  width: 100%;
  max-width: 380px;
}

@media (max-width: 990px) {
  .site-nav-wrapper {
    padding: 0 10px;
  }

  .site-nav {
    border-radius: 20px;
    padding: 8px 12px;
  }
}


/* ── Hero Section ── */
@media (max-width: 768px) {
  .hero-section {
    padding-top: 140px;
    padding-bottom: 60px;
  }

  .hero-title {
    font-size: 2.4rem;
  }

  .hero-sub {
    font-size: 1rem;
  }

  .hero-3d-stage {
    height: 380px;
  }

  .society-3d-center {
    width: 240px;
    height: 320px;
  }

  .float-card-3d {
    min-width: 160px;
    padding: 10px 12px;
  }

  .fc-service-name {
    font-size: 0.8rem;
  }

  .fc-current-price {
    font-size: 1.05rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.9rem;
    letter-spacing: -0.025em;
  }

  .hero-sub {
    font-size: 0.92rem;
  }

  .hero-cta-group {
    flex-direction: column;
    width: 100%;
  }

  .btn-hero-primary,
  .btn-hero-secondary {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
    font-size: 0.95rem;
  }

  .hero-3d-stage {
    height: 300px;
  }

  .society-3d-center {
    width: 180px;
    height: 240px;
  }

  .card-pos-1,
  .card-pos-2,
  .card-pos-3 {
    display: none;
    /* avoid crowding on very small screens */
  }

  .hero-trust-strip {
    gap: 14px;
  }

  .trust-item {
    font-size: 0.78rem;
  }
}

/* ── Sections General ── */
@media (max-width: 768px) {
  .section-wrapper {
    padding: 60px 0;
  }

  .section-title {
    font-size: 1.9rem;
  }

  .section-subtitle {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 1.6rem;
  }

  .container {
    padding: 0 16px;
  }
}

/* ── Group Deal Engine ── */
@media (max-width: 900px) {
  .engine-grid {
    grid-template-columns: 1fr !important;
    gap: 28px;
  }

  .price-ladder-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .deal-live-card {
    padding: 20px 16px;
  }

  .dp-current {
    font-size: 2rem;
  }

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

  .ladder-tier {
    padding: 12px 14px;
    font-size: 0.85rem;
  }
}

/* ── Society Explorer ── */
@media (max-width: 768px) {
  .tower-pill-btn {
    padding: 8px 12px;
    font-size: 0.78rem;
  }

  #towerPillGrid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 8px;
  }
}

@media (max-width: 480px) {
  #towerPillGrid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* ── Service Cards Grid ── */
@media (max-width: 900px) {
  #serviceCardsContainer {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 480px) {
  #serviceCardsContainer {
    grid-template-columns: 1fr !important;
  }

  .service-card-3d {
    padding: 16px 14px;
  }
}

/* ── How It Works Timeline ── */
@media (max-width: 640px) {
  .timeline-step-card {
    padding: 22px 18px;
  }

  .step-num-badge {
    width: 42px;
    height: 42px;
    font-size: 1rem;
    border-radius: 14px;
  }
}

/* ── Partner / Vendor Section ── */
@media (max-width: 768px) {
  .partner-grid {
    grid-template-columns: 1fr !important;
    gap: 24px;
  }

  .vendor-dashboard-preview {
    padding: 22px 16px;
  }
}

/* ── FAQ ── */
@media (max-width: 640px) {
  .faq-question-btn {
    font-size: 0.95rem;
    padding: 18px 16px;
  }

  .faq-answer-content {
    padding: 0 16px 18px;
    font-size: 0.88rem;
  }
}

/* ── Footer ── */
@media (max-width: 768px) {
  .site-footer {
    padding: 60px 0 36px;
  }

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

  .investor-block {
    flex-direction: column;
  }

  .investor-block > div:last-child {
    text-align: left;
  }
}

@media (max-width: 480px) {
  .footer-col-title {
    font-size: 0.9rem;
  }

  .footer-links a {
    font-size: 0.85rem;
  }
}

/* ── Compare Section ── */
@media (max-width: 640px) {
  .compare-price {
    font-size: 2.6rem;
  }

  .compare-card {
    padding: 24px 18px;
  }
}

/* ── Modals ── */
@media (max-width: 600px) {
  .modal-box {
    margin: 12px;
    border-radius: 20px;
    padding: 24px 18px;
    max-height: 90vh;
    overflow-y: auto;
  }
}

/* ── Typography Scaling ── */
@media (max-width: 480px) {
  html {
    font-size: 15px;
  }

  h1 {
    font-size: 1.7rem;
  }

  h2 {
    font-size: 1.4rem;
  }

  h3 {
    font-size: 1.15rem;
  }
}

/* ── Touch Target Minimum ── */
@media (hover: none) and (pointer: coarse) {

  .btn-hero-primary,
  .btn-hero-secondary,
  .btn-nav-primary,
  .nav-link,
  .faq-question-btn,
  .tower-pill-btn,
  .service-card-3d {
    min-height: 44px;
  }
}

/* ── Scroll Padding for Anchor Links ── */
html {
  scroll-padding-top: 100px;
}

/* ── Legal / Inner Pages Mobile ── */
@media (max-width: 640px) {
  .legal-content-box {
    padding: 22px 16px;
    border-radius: 16px;
  }

  main.container {
    padding: 40px 16px 70px !important;
  }
}

/* ── Currency Widget Mobile ── */
@media (max-width: 480px) {
  #gs-currency-widget {
    bottom: 72px;
    right: 12px;
  }

  #gs-currency-trigger {
    font-size: 0.76rem;
    padding: 7px 10px;
  }
}

/* ==========================================================================
   COOKIE CONSENT BANNER
   ========================================================================== */
.gs-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  background: rgba(6, 13, 23, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-top: 1px solid rgba(74, 222, 128, 0.2);
  box-shadow: 0 -20px 50px rgba(0, 0, 0, 0.5);
  font-family: var(--font-sans);
  animation: gsCookieSlideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes gsCookieSlideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }

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

.gs-cookie-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.gs-cookie-text {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  flex: 1;
}

.gs-cookie-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.gs-cookie-title {
  font-size: 1rem;
  font-weight: 800;
  color: #F1F5F9;
  margin-bottom: 4px;
}

.gs-cookie-desc {
  font-size: 0.82rem;
  color: #94A3B8;
  line-height: 1.55;
  margin: 0;
}

.gs-cookie-link {
  color: #4ADE80;
  text-decoration: underline;
  font-weight: 600;
}

.gs-cookie-link:hover {
  color: #86EFAC;
}

.gs-cookie-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.gs-cookie-btn {
  padding: 10px 18px;
  border-radius: 10px;
  font-size: 0.82rem;
  font-weight: 750;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  white-space: nowrap;
  font-family: var(--font-sans);
}

.gs-cookie-btn-accept {
  background: linear-gradient(135deg, #22C55E, #16A34A);
  color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(22, 163, 74, 0.4);
}

.gs-cookie-btn-accept:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(22, 163, 74, 0.5);
}

.gs-cookie-btn-reject {
  background: rgba(255, 255, 255, 0.08);
  color: #CBD5E1;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.gs-cookie-btn-reject:hover {
  background: rgba(255, 255, 255, 0.14);
  color: #F1F5F9;
}

.gs-cookie-btn-manage {
  background: rgba(255, 255, 255, 0.05);
  color: #94A3B8;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.gs-cookie-btn-manage:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #CBD5E1;
}

/* Manage Panel */
.gs-cookie-manage-panel {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.gs-cookie-manage-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.gs-cookie-cat-title {
  font-size: 0.88rem;
  font-weight: 750;
  color: #E2E8F0;
  margin-bottom: 2px;
}

.gs-cookie-cat-desc {
  font-size: 0.78rem;
  color: #64748B;
  line-height: 1.45;
}

.gs-cookie-toggle {
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 800;
  flex-shrink: 0;
}

.gs-cookie-toggle-on {
  background: rgba(34, 197, 94, 0.2);
  color: #4ADE80;
  border: 1px solid rgba(34, 197, 94, 0.3);
}

/* Toggle Switch */
.gs-cookie-switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}

.gs-cookie-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.gs-cookie-slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  transition: background 0.25s ease;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.gs-cookie-slider::before {
  content: "";
  position: absolute;
  height: 18px;
  width: 18px;
  left: 2px;
  bottom: 2px;
  background: #CBD5E1;
  border-radius: 50%;
  transition: transform 0.25s ease, background 0.25s ease;
}

.gs-cookie-switch input:checked+.gs-cookie-slider {
  background: rgba(34, 197, 94, 0.35);
  border-color: rgba(34, 197, 94, 0.5);
}

.gs-cookie-switch input:checked+.gs-cookie-slider::before {
  transform: translateX(20px);
  background: #4ADE80;
}

.gs-cookie-manage-actions {
  padding-top: 14px;
  text-align: right;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .gs-cookie-inner {
    flex-direction: column;
    align-items: stretch;
    padding: 16px 18px;
  }

  .gs-cookie-actions {
    justify-content: stretch;
  }

  .gs-cookie-btn {
    flex: 1;
    text-align: center;
    padding: 10px 10px;
    font-size: 0.78rem;
  }
}

@media (max-width: 480px) {
  .gs-cookie-inner {
    padding: 14px 14px;
  }

  .gs-cookie-text {
    gap: 10px;
  }

  .gs-cookie-title {
    font-size: 0.92rem;
  }

  .gs-cookie-desc {
    font-size: 0.76rem;
  }

  .gs-cookie-btn {
    padding: 9px 8px;
    font-size: 0.74rem;
  }

  .gs-cookie-manage-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

/* ==========================================================================
   WHATSAPP CHAT WIDGET
   ========================================================================== */
#gs-chat-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9998;
}

.gs-chat-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #FFFFFF;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease, width 0.25s ease;
  text-decoration: none;
  overflow: hidden;
}

.gs-chat-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.6);
  width: auto;
  border-radius: 30px;
  padding: 0 18px 0 16px;
}

.gs-chat-tooltip {
  display: none;
  font-size: 0.85rem;
  font-weight: 700;
  font-family: var(--font-sans);
  white-space: nowrap;
}

.gs-chat-btn:hover .gs-chat-tooltip {
  display: block;
}

.gs-chat-btn svg {
  flex-shrink: 0;
}

@media (max-width: 480px) {
  #gs-chat-widget {
    bottom: 16px;
    right: 16px;
  }
  .gs-chat-btn {
    width: 52px;
    height: 52px;
  }
  .gs-chat-btn svg {
    width: 24px;
    height: 24px;
  }
}