
    /* Property information card */
.prop-info {
  margin-top: 18px;
}

/* card background */
.pi-card {
  padding: 16px 18px;
  border-radius: 18px;
  background: radial-gradient(circle at top left, rgba(107, 70, 193, 0.25), transparent 55%),
              #050b13;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.6);
}

/* two mini columns on desktop */
.pi-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 24px;
}

/* each row */
.pi-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 8px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
}

/* label on left */
.pi-label {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.68);
}

/* value on right */
.pi-value {
  font-size: 13px;
  font-weight: 600;
  color: #ffffff;
  text-align: right;
}

/* mobile: stack into one column */
@media (max-width: 768px) {
  .pi-grid {
    grid-template-columns: 1fr;
  }
}
/* Location & Access (new color theme) */
.location-access h3 {
  margin-bottom: 14px;
}

/* Card container */
.la-card {
  padding: 16px 18px;
  border-radius: 18px;
  background: radial-gradient(circle at top right,
              rgba(0, 200, 180, 0.18),
              transparent 60%)
              , #050b13;
  border: 1px solid rgba(0, 255, 220, 0.15);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55);
}

/* 2-column layout */
.la-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 26px;
}

/* Each row */
.la-item {
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(0, 255, 220, 0.05);
  border: 1px solid rgba(0, 255, 220, 0.07);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* Row heading */
.la-label {
  font-size: 12px;
  font-weight: 500;
  color: rgba(0, 255, 220, 0.7);
  text-transform: uppercase;
  letter-spacing: .5px;
}

/* Value text */
.la-value {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  line-height: 1.4;
}

/* Mobile: stack into one column */
@media (max-width: 768px) {
  .la-grid {
    grid-template-columns: 1fr;
  }
}

    /* ---------- Transport + Payment Modern Cards ---------- */

.transport-section,
.payment-section {
  background: #0f141b;
  border: 1px solid rgba(255,255,255,0.05);
  padding: 22px;
  border-radius: 16px;
  margin-bottom: 32px;
}

.transport-section h3,
.payment-section h3 {
  margin-bottom: 14px;
  font-size: 20px;
  color: #ffffff;
  position: relative;
}

.transport-section h3::after,
.payment-section h3::after {
  content: "";
  display: block;
  width: 70px;
  height: 3px;
  margin-top: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg,#4d7cff,#b35cf2);
}


/* Cards inside the sections */

.transport-card,
.payment-card {
  background: #161c23;
  border-radius: 16px;
  padding: 18px 20px;
  border: 1px solid rgba(140,140,255,0.2);
  box-shadow: 0 0 25px rgba(103,59,255,0.15);
}

.transport-card + .transport-card {
  margin-top: 16px;
}

/* Rows inside transport cards */

.transport-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255,255,255,0.05);
  padding: 12px 14px;
  border-radius: 12px;
  margin-bottom: 10px;
  border: 1px solid rgba(255,255,255,0.04);
}

.transport-row span {
  color: #d6e0f5;
  font-size: 14px;
}

/* Payment table */

.payment-table {
  width: 100%;
  border-spacing: 0 10px;
}

.payment-table th {
  background: #202633;
  color: #fff;
  padding: 14px;
  text-align: left;
  border-radius: 12px;
}

.payment-table td {
  background: #161c23;
  padding: 14px;
  border-radius: 12px;
  color: #e1e6f7;
}


/* Container */
.amenity-pill {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 12px; /* slimmer pill */
  margin: 6px;
  font-size: 13px;
  color: #e6edff;
  border-radius: 999px;
  overflow: hidden;
  background: transparent;
  z-index: 0;
  line-height: 1;
}

/* Animated ultra-thin border */
.amenity-pill::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 0.8px; /* thinner border */
  border-radius: inherit;
  background: linear-gradient(
      135deg,
      #00f2ff,
      #6e57ff,
      #00c6ff,
      #00f2ff
  );
  background-size: 300% 300%;
  animation: pillBorderMove 4s linear infinite;
  z-index: -1;
}

/* Inner dark fill */
.amenity-pill::after {
  content: "";
  position: absolute;
  inset: 2px; /* reduced to match thin border */
  background: #0d121a;
  border-radius: inherit;
  z-index: -1;
}

/* Border movement animation */
@keyframes pillBorderMove {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* -------- TikTok stories strip -------- */

.project-stories {
  background: #050913;
  border-radius: 20px;
  padding: 18px 20px 20px;
  margin-bottom: 20px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.55);
}

.ps-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.ps-header h2 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}

.ps-pill {
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(6, 13, 22, 0.9);
  white-space: nowrap;
  color: #c7d4ff;
}

/* row with scroll if screen is small */
.ps-row {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 4px;
  -webkit-overflow-scrolling: touch;
}

/* hide ugly scrollbar */
.ps-row::-webkit-scrollbar {
  height: 6px;
}
.ps-row::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.18);
  border-radius: 999px;
}
.ps-row::-webkit-scrollbar-track {
  background: transparent;
}
/* each reel card – simpler border, no masking */
.ps-card {
  position: relative;
  flex: 0 0 230px;
  max-width: 230px;
  border-radius: 22px;
  padding: 3px;
  background: linear-gradient(135deg, #ff3b6a, #ffb347, #0be9ff);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.65);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease;
}

/* inner dark shell */
.ps-card .ps-frame {
  border-radius: 18px;
  background: #02050b;
  overflow: hidden;
  aspect-ratio: 9 / 16;
}

/* iframe fills card */
.ps-card iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  opacity: 0.7;           /* slightly dim by default */
  transition: opacity 0.2s ease;
}

/* hover: lift + glow + full brightness */
.ps-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.85);
}

.ps-card:hover iframe {
  opacity: 1;
}

/* mobile tweaks */
@media (max-width: 768px) {
  .ps-card {
    flex: 0 0 70%;
    max-width: 70%;
  }
}
.section.who-for {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
}

@media (min-width: 900px) {
  .section.who-for {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
}

.who-card {
  background: radial-gradient(circle at top left, rgba(106,255,211,0.06), rgba(33,43,61,0.96));
  border-radius: 16px;
  padding: 18px 20px;
  border: 1px solid rgba(150, 221, 255, 0.22);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}

.who-card h3 {
  margin: 0 0 8px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #9de6ff;
}

.who-card p {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: #e5edf9;
}
.section.who-for {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 20px;
  margin-top: 18px;
}

@media (min-width: 900px) {
  .section.who-for {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.who-card {
  position: relative;
  padding: 18px 18px 16px 18px;
  border-radius: 18px;
  background: radial-gradient(circle at top left, rgba(43, 255, 207, 0.06), rgba(10, 18, 30, 0.96));
  border: 1px solid rgba(165, 238, 255, 0.25);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55);
  overflow: hidden;
}

/* vertical accent bar */
.who-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, #63ffe4, #6fb4ff);
  opacity: 0.9;
}

/* subtle background glow */
.who-card::after {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at 0 0, rgba(111, 180, 255, 0.16), transparent 60%);
  opacity: 0.7;
  pointer-events: none;
}

.who-label {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0b1625;
  background: linear-gradient(90deg, #63ffe4, #6fb4ff);
  margin-bottom: 10px;
}

.who-intro {
  position: relative;
  margin: 0 0 8px;
  font-size: 13px;
  line-height: 1.5;
  color: #e9f2ff;
}

.who-list {
  position: relative;
  list-style: none;
  padding: 0;
  margin: 0;
}

.who-list li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 4px;
  font-size: 12.5px;
  line-height: 1.5;
  color: #c7d4ea;
}

.who-list li::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #63ffe4;
}

/* small color variation between the two cards */
.who-investor::before {
  background: linear-gradient(180deg, #ffb06a, #ff5da9);
}
.who-investor .who-label {
  background: linear-gradient(90deg, #ffb06a, #ff5da9);
}

.who-enduser::before {
  background: linear-gradient(180deg, #63ffe4, #6fb4ff);
}
.who-enduser .who-label {
  background: linear-gradient(90deg, #63ffe4, #6fb4ff);
}

/* Investor engagement panel */

@keyframes invBorderShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes invGlowPulse {
  0%   { opacity: 0.12; }
  50%  { opacity: 0.28; }
  100% { opacity: 0.12; }
}

.inv-panel {
  position: relative;
  border-radius: 20px;
  padding: 16px 16px 14px;
  margin-bottom: 12px;
  background:
    linear-gradient(#050814,#050814) padding-box,
    linear-gradient(125deg, #f9d976, #f39f86, #87cefa) border-box;
  border: 1px solid transparent;
  overflow: hidden;
  box-shadow: 0 18px 34px rgba(0,0,0,0.7);
  background-size: 220% 220%;
  animation: invBorderShift 18s linear infinite;
}

.inv-panel-glow {
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(circle at top left, rgba(249,217,118,0.35), transparent 60%),
    radial-gradient(circle at bottom right, rgba(135,206,250,0.25), transparent 60%);
  opacity: 0.18;
  pointer-events: none;
  animation: invGlowPulse 10s ease-in-out infinite;
}

/* Header */

.inv-head {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}

.inv-head-main {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.inv-pill {
  align-self: flex-start;
  padding: 3px 9px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: #050814;
  color: #f9d976;
  border: 1px solid rgba(249,217,118,0.7);
}

.inv-title {
  margin: 0;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(222,244,255,0.9);
}

/* Upside chip */

.inv-score {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding: 5px 8px;
  border-radius: 12px;
  background: rgba(5,8,20,0.95);
  border: 1px solid rgba(249,217,118,0.6);
}

.inv-score-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.7);
}

.inv-score-value {
  font-size: 13px;
  font-weight: 700;
  color: #f9d976;
}

/* Tags row */

.inv-tags-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 8px;
}

.inv-tag {
  padding: 3px 8px;
  border-radius: 999px;
  font-size: 11px;
  color: rgba(9,12,20,0.95);
  background: rgba(255,255,255,0.9);
}

/* Body */

.inv-body {
  position: relative;
}

.inv-intro {
  margin-top: 0;
  margin-bottom: 6px;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255,255,255,0.96);
}

/* highlight key phrases inside intro or bullets */
.inv-intro strong,
.inv-list li strong,
.inv-intro .inv-key,
.inv-list li .inv-key {
  padding: 1px 4px;
  border-radius: 6px;
  background: rgba(249,217,118,0.16);
  border: 1px solid rgba(249,217,118,0.4);
  color: #ffffff;
}

.inv-list {
  margin-top: 0;
}

.inv-list li {
  color: rgba(255,255,255,0.9);
  font-size: 13px;
}

/* Footer */

.inv-footer {
  margin-top: 8px;
  padding-top: 6px;
  border-top: 1px solid rgba(255,255,255,0.16);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
}

.inv-note {
  font-size: 12px;
  color: rgba(255,255,255,0.83);
}

.inv-cta {
  padding: 6px 13px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  background: linear-gradient(90deg, #f9d976, #f39f86);
  color: #151515;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.35);
}

/* End user card subtle tweak so it stays softer */

.off-ai-card-enduser {
  background: rgba(10,13,30,0.96);
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.09);
}

/* Gallery grid */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 10px;
}

.gallery-item {
  position: relative;
  border: 0;
  padding: 0;
  background: transparent;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
}

.gallery-item img {
  display: block;
  width: 100%;
  height: 140px;
  object-fit: cover;
  filter: saturate(0.85);
  opacity: 0.8;
  transition: transform 0.15s ease, opacity 0.15s ease, filter 0.15s ease;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(0,0,0,0.0), rgba(0,0,0,0.45));
  opacity: 0;
  transition: opacity 0.15s ease;
}

.gallery-item:hover img {
  transform: scale(1.03);
  opacity: 1;
  filter: saturate(1.1);
}

.gallery-item:hover::after {
  opacity: 1;
}

/* Lightbox */

.gallery-lightbox {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.gallery-lightbox.is-open {
  display: flex;
}

.gallery-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
}

.gallery-lightbox-inner {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 18px;
  background: #050814;
  border: 1px solid rgba(255,255,255,0.12);
  padding: 10px 10px 12px;
  box-shadow: 0 26px 60px rgba(0,0,0,0.85);
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 1;
}

.gallery-lightbox-img {
  max-width: 100%;
  max-height: 70vh;
  object-fit: contain;
  border-radius: 12px;
}

.gallery-lightbox-caption {
  margin: 0;
  font-size: 13px;
  color: rgba(255,255,255,0.8);
}

.gallery-lightbox-close {
  position: absolute;
  top: 6px;
  right: 10px;
  border: 0;
  background: rgba(0,0,0,0.55);
  color: #ffffff;
  font-size: 20px;
  line-height: 1;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  cursor: pointer;
}
.payment-section h3 {
  margin: 0 0 8px;
}

.payment-card {
  border-radius: 16px;
  padding: 14px 16px 14px;
  background: radial-gradient(circle at top left, rgba(135,206,250,0.12), transparent 55%),
              #050814;
  border: 1px solid rgba(255,255,255,0.06);
}

/* header row */

.payment-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.payment-head-text {
  margin: 0;
  font-size: 13px;
  color: rgba(255,255,255,0.78);
}

.payment-head-tag {
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 11px;
  background: rgba(255,255,255,0.06);
  color: rgba(220,230,255,0.94);
}

/* big segmented bar */

.payment-bar {
  display: flex;
  height: 10px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255,255,255,0.04);
  margin-bottom: 14px;
}

.payment-bar-seg {
  position: relative;
  background: linear-gradient(90deg, #35d3c9, #9b7bff);
}

.payment-bar-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 600;
  color: rgba(11,12,20,0.95);
}

/* vertical timeline of steps */

.payment-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px 16px;
  margin-top: 4px;
}

.payment-step {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 8px;
}

.payment-step-marker {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, #35d3c9, #9b7bff);
  margin-top: 4px;
}

.payment-step-line {
  grid-row: 1 / span 2;
  width: 2px;
  margin: 0 auto;
  background: linear-gradient(to bottom, rgba(53,211,201,0.8), rgba(155,123,255,0.4));
  border-radius: 999px;
}

.payment-step-line.is-last {
  background: transparent;
}

.payment-step-content {
  padding-left: 0;
}

.payment-step-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 6px;
}

.payment-step-label {
  font-size: 13px;
  color: rgba(255,255,255,0.9);
}

.payment-step-percent {
  font-size: 12px;
  font-weight: 600;
  color: rgba(198,206,255,0.96);
}

.payment-step-note {
  margin: 2px 0 0;
  font-size: 11px;
  color: rgba(180,190,220,0.8);
}

/* empty state */

.payment-empty {
  background:#161c23;
  border-radius:14px;
  padding:14px 16px;
  color:#e1e6f7;
  border:1px solid rgba(140,140,255,0.2);
  font-size: 13px;
}

/* responsive */

@media (max-width: 640px) {
  .payment-head {
    flex-direction: column;
    align-items: flex-start;
  }
}
/* Gradient palettes per milestone segment */

/* Segment 0 — Aqua / Mint */
.payment-bar-seg-0 {
  background: linear-gradient(90deg, #2fe6c8, #4be4ff);
}

/* Segment 1 — Violet / Blue */
.payment-bar-seg-1 {
  background: linear-gradient(90deg, #9b7bff, #6fa9ff);
}

/* Segment 2 — Peach / Pink */
.payment-bar-seg-2 {
  background: linear-gradient(90deg, #ffb387, #ff7fc2);
}

/* Segment 3 — Gold / Orange (just in case project has 4 steps) */
.payment-bar-seg-3 {
  background: linear-gradient(90deg, #f9d976, #f39f86);
}

/* Segment 4 — Cyan / Purple (fallback for more steps) */
.payment-bar-seg-4 {
  background: linear-gradient(90deg, #4be4ff, #9b7bff);
}
/* Hero insight panel */

.hero-insight {
  margin-top: 18px;
  padding: 10px 12px 12px;
  border-radius: 16px;
  background: radial-gradient(circle at top left, rgba(75,228,255,0.16), transparent 60%),
              radial-gradient(circle at bottom right, rgba(155,123,255,0.18), transparent 60%),
              rgba(5,8,20,0.96);
  border: 1px solid rgba(255,255,255,0.06);
}

.hi-head {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 8px;
}

.hi-pill {
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(5,8,20,1);
  border: 1px solid rgba(155,123,255,0.6);
  color: rgba(220,232,255,0.95);
}

/* Cards */

.hi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 8px;
}

.hi-card {
  position: relative;
  padding: 8px 10px;
  border-radius: 12px;
  background:
    linear-gradient(#050814,#050814) padding-box,
    linear-gradient(120deg, #4be4ff, #9b7bff, #ffb387) border-box;
  border: 1px solid transparent;
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 8px;
  row-gap: 2px;
  align-items: center;
}

.hi-icon {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  background: radial-gradient(circle at 30% 20%, #4be4ff, #9b7bff);
  box-shadow: 0 0 0 1px rgba(0,0,0,0.6);
}

.hi-main {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.hi-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: rgba(210,220,255,0.75);
}

.hi-value {
  font-size: 14px;
  font-weight: 600;
  background: linear-gradient(90deg, #4be4ff, #9b7bff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hi-caption {
  grid-column: 1 / -1;
  margin: 2px 0 0;
  font-size: 11px;
  color: rgba(185,195,230,0.8);
}

/* Hover effect */

.hi-card:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(0,0,0,0.7);
}
/* ============ SIDEBAR THEME v2 ============ */

/* Base card look – cleaner glass style */
.col-aside .s-card {
  position: relative;
  border-radius: 18px;
  padding: 14px 16px;
  background: rgba(8, 12, 22, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  margin-bottom: 14px;
}

/* Thin accent line at top of each card */
.col-aside .s-card::before {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  top: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #38e2c9, #7b8bff);
  opacity: 0.4;
}

/* -------- SHARE THIS PROJECT -------- */

.s-quick-alt .s-quick-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.s-quick-title {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: rgba(205, 215, 240, 0.85);
}

.s-quick-save {
  border-radius: 999px;
  padding: 4px 9px;
  border: 0;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 11px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}

.s-quick-row {
  display: flex;
  gap: 8px;
}

.s-quick-btn {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 9px;
  border-radius: 999px;
  text-decoration: none;
  background: #0d131f;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(230, 236, 255, 0.96);
  font-size: 12px;
}

.s-quick-btn:hover {
  background: #121a29;
}

.s-quick-icon {
  font-size: 13px;
}

/* -------- BROKER CARD (trust profile) -------- */

.s-broker {
  padding-top: 16px;
}

.s-broker-top {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}

.s-broker-avatar-wrap {
  position: relative;
  width: 46px;
  height: 46px;
}

.s-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
}

.s-broker-status-dot {
  position: absolute;
  right: -1px;
  bottom: -1px;
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: #38e2c9;
  box-shadow: 0 0 0 2px #080c16;
}

.s-broker-meta {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.s-name {
  font-size: 14px;
  font-weight: 600;
}

.s-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(220, 232, 255, 0.96);
}

.s-broker-stars {
  font-size: 11px;
  color: #ffd580;
}

.s-broker-rating {
  margin-left: 4px;
  color: rgba(210, 220, 255, 0.9);
}

.s-broker-note {
  font-size: 11px;
  color: rgba(185, 195, 225, 0.85);
}

/* Stats pill inside broker card */

.s-broker-stats {
  margin: 8px 0 10px;
  padding: 10px 11px;
  border-radius: 14px;
  background: #060a13;
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sb-stat {
  display: flex;
  align-items: center;
  gap: 8px;
}

.sb-icon {
  width: 22px;
  height: 22px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.04);
  font-size: 13px;
}

.sb-main {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.sb-value {
  font-size: 13px;
  font-weight: 600;
  background: linear-gradient(90deg, #38e2c9, #7b8bff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sb-label {
  font-size: 11px;
  color: rgba(195, 205, 235, 0.85);
}

.s-broker-foot {
  margin: 4px 0 10px;
  font-size: 11px;
  color: rgba(190, 200, 230, 0.9);
}

/* Broker actions row */

.s-broker-actions {
  display: flex;
  gap: 8px;
}

.s-action {
  flex: 1;
  text-align: center;
  padding: 7px 0;
  border-radius: 999px;
  font-size: 12px;
  text-decoration: none;
  color: #e6ecff;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.02);
}

.s-action.primary {
  background: linear-gradient(90deg, #38e2c9, #7b8bff);
  border-color: transparent;
  color: #050911;
}

.s-action:hover {
  filter: brightness(1.05);
}

.s-brochure {
  display: block;
  margin-top: 7px;
  font-size: 12px;
  text-align: center;
  padding: 7px 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px dashed rgba(255, 255, 255, 0.18);
  text-decoration: none;
  color: rgba(220, 230, 255, 0.96);
}

/* -------- COMMUNITY CARD -------- */

.s-community-alt {
  background: rgba(9, 13, 22, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.6);
}

.s-community-alt::before {
  /* softer accent line */
  background: linear-gradient(90deg, #7b8bff, #38e2c9);
  opacity: 0.35;
}

.s-community-top {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 6px;
}

.s-community-tag {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(150, 160, 195, 0.94);
}

.s-community-name {
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
}

.s-community-text {
  margin: 3px 0 8px;
  font-size: 13px;
  color: rgba(190, 200, 230, 0.9);
}

.s-community-link {
  font-size: 13px;
  font-weight: 600;
  color: #38e2c9;
  text-decoration: none;
}
/* --- SIDEBAR: LIGHT THEME VERSION --- */

/* make all sidebar cards light */
.col-aside .s-card {
  background: #f5f5ff;              /* pale light background */
  border-radius: 18px;
  border: 1px solid #d4d4ff;        /* light lavender border */
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.18);
  color: #0f172a;                   /* dark text */
}

/* all text inside cards becomes dark by default */
.col-aside .s-card * {
  color: inherit;
}

/* small top accent line so it still feels premium */
.col-aside .s-card::before {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  top: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #38e2c9, #7b8bff);
  opacity: 0.7;
}

/* primary WhatsApp button: dark pill, white text */
.col-aside .s-action.primary {
  background: #111827;
  border-color: #111827;
  color: #f9fafb;
}

/* secondary buttons: light outline */
.col-aside .s-action:not(.primary) {
  background: transparent;
  border-color: #c7d2fe;
  color: #111827;
}

/* community link in green so it pops on light card */
.col-aside .s-community-link {
  color: #059669;
  font-weight: 600;
}

/* share buttons row – softer style */
.col-aside .s-quick-btn {
  background: #e5e7ff;
  border-color: #c7d2fe;
}

.col-aside .s-quick-btn:hover {
  background: #d4d4ff;
}
/* --- 1. GRADIENT CIRCLE BORDER AROUND PROFILE IMAGE --- */

.s-broker-avatar-wrap {
  position: relative;
  width: 58px;
  height: 58px;
  padding: 2px;
  background: linear-gradient(130deg, #4be4ff, #9b7bff, #4be4ff);
  border-radius: 50%;
}

.s-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: block;
}

/* status dot */
.s-broker-status-dot {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #2fe6c8;
  box-shadow: 0 0 0 3px #050814;
}

/* --- 2. GRADIENT CIRCLE BORDER AROUND BROKER PERFORMANCE ICONS --- */

.sb-icon {
  width: 32px;
  height: 32px;
  padding: 2px;
  background: linear-gradient(130deg, #4be4ff, #9b7bff, #4be4ff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sb-icon span,
.sb-icon svg,
.sb-icon img {
  background: #0b111d;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* --- 3. GRADIENT PILL BORDER AROUND SPECIALIST BADGE --- */

.s-badge {
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: 
    linear-gradient(#0b111d, #0b111d) padding-box,
    linear-gradient(130deg, #4be4ff, #9b7bff, #4be4ff) border-box;
  color: #eaf2ff;
  font-weight: 500;
}

/* --- 4. THIN GRADIENT BORDER AROUND THE WHOLE BROKER CARD --- */

.s-broker {
  position: relative;
  border-radius: 20px;
  padding: 16px 18px;
  border: 1px solid transparent;
  background:
    linear-gradient(#050a12, #050a12) padding-box,
    linear-gradient(130deg, #4be4ff33, #9b7bff33, #4be4ff33) border-box;
}

/* optional stronger, if you want more glow: change 33 to 66 */

/* --- 5. CLEAR SEPARATION BETWEEN SECTIONS INSIDE BROKER CARD --- */

.s-broker-top {
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.s-broker-stats {
  margin-top: 14px;
  margin-bottom: 14px;
  background: rgba(255,255,255,0.03);
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.05);
}

.sb-stat {
  padding: 6px 0;
}

.s-broker-actions {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.07);
}

/* WhatsApp button more visible */
.s-action.primary {
  background: linear-gradient(90deg, #4be4ff, #9b7bff);
  color: #0b111d;
  border: none;
}
/* avatar with gradient ring */
.s-broker-avatar-wrap {
  position: relative;
  width: 60px;
  height: 60px;
  padding: 2px;
  background: linear-gradient(130deg, #4be4ff, #9b7bff, #4be4ff);
  border-radius: 50%;
}

.s-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.s-broker-status-dot {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 3px #000;
}

/* broker card outer border */
.s-broker {
  border-radius: 22px;
  border: 1px solid #d6ddff;
  background: #f5f6ff;
}

/* top section separation */
.s-broker-top {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(148, 163, 255, 0.5);
}

/* name + badge */
.s-name {
  font-size: 15px;
  font-weight: 600;
  color: #020617;
}

.s-badge {
  margin-top: 2px;
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid transparent;
  background:
    linear-gradient(#0b1120, #0b1120) padding-box,
    linear-gradient(130deg, #4be4ff, #9b7bff, #4be4ff) border-box;
  color: #e5edff;
  font-size: 11px;
}

/* rating row big and clear */
.s-broker-rating-row {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
}

.s-broker-rating-number {
  font-size: 18px;
  font-weight: 700;
  color: #020617;
}

.s-broker-stars {
  font-size: 25px;
  color: #FFD43B;
}

.s-broker-note {
  margin-top: 2px;
  font-size: 11px;
  color: #4b5563;
}

/* performance block with border and internal dividers */
.s-broker-stats {
  margin: 10px 0 12px;
  padding: 12px 14px;
  border-radius: 18px;
  background: #e9ecff;
  border: 1px solid #c7d2fe;
}

.sb-stat {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* thin divider line between stats */
.sb-divider {
  height: 1px;
  margin: 8px 0;
  background: linear-gradient(90deg, #e5e7eb, #c7d2fe, #e5e7eb);
}

/* icon inside gradient circle */
.sb-icon {
  width: 32px;
  height: 32px;
  padding: 2px;
  border-radius: 50%;
  background: linear-gradient(130deg, #4be4ff, #9b7bff, #4be4ff);
  display: flex;
  align-items: center;
  justify-content: center;
}

.sb-icon span {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #0f172a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.sb-main {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.sb-value {
  font-size: 13px;
  font-weight: 600;
  color: #0f172a;
}

.sb-label {
  font-size: 11px;
  color: #4b5563;
}

/* actions and brochure text colors on light background */

.s-broker-foot {
  font-size: 11px;
  color: #4b5563;
  margin: 4px 0 10px;
}

.s-broker-actions .s-action {
  color: #0f172a;
  border-color: #c7d2fe;
}

.s-broker-actions .s-action.primary {
  background: #0f172a;
  color: #f9fafb;
  border-color: #0f172a;
}

.s-brochure {
  color: #0f172a;
  border-color: #c7d2fe;
  background: #e5e7ff;
}
/* white badge inside + gradient border */
.s-badge {
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(130deg, #4be4ff, #9b7bff, #4be4ff) border-box;
  border: 1px solid transparent;
  color: #000 !important;   /* black text since inside is white */
}
/* verified tick icon */
.verified-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  background: #22c55e; /* green tick background */
  color: white;
  font-size: 11px;
  font-weight: 700;
  border-radius: 50%;
  margin-right: 6px;
  box-shadow: 0 0 6px rgba(34, 197, 94, 0.4);
}

/* broker note text */
.s-broker-note {
  font-size: 12px;
  color: #4b5563;
  display: flex;
  align-items: center;
  margin-top: 4px;
}
/* ===== SIDEBAR AREA INSIGHTS – DARK GRADIENT CARD ===== */

.s-area-card {
  border-radius: 20px;
  padding: 16px 16px 14px;
  background:
    linear-gradient(#050814, #050814) padding-box,
    linear-gradient(130deg, #4be4ff, #9b7bff, #ffb387) border-box;
  border: 1px solid transparent;
  color: #e5e7eb;
  box-shadow: 0 14px 28px rgba(0,0,0,0.7);
}

.s-area-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}

.s-area-pill-main {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(148,163,255,0.9);
}

.s-area-count {
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(15,23,42,0.9);
  border: 1px solid rgba(148,163,255,0.7);
  color: rgba(226,232,255,0.95);
}

.s-area-card-title {
  margin: 0 0 4px;
  font-size: 15px;
  font-weight: 600;
  color: #f9fafb;
}

.s-area-card-text {
  margin: 0 0 12px;
  font-size: 13px;
  color: rgba(203,213,225,0.92);
}

/* rows */

.s-area-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 8px 9px;
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  background: rgba(15,23,42,0.9);
  border: 1px solid rgba(30,64,175,0.6);
  transition: transform 0.12s ease, box-shadow 0.12s ease, border-color 0.12s ease, background 0.12s ease;
}

.s-area-row + .s-area-row {
  margin-top: 6px;
}

.s-area-row:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.7);
  border-color: rgba(96,165,250,0.85);
  background: rgba(15,23,42,1);
}

.s-area-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  white-space: nowrap;
}

.s-area-label span:last-child {
  overflow: hidden;
  text-overflow: ellipsis;
}

/* colored dots */

.s-area-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.s-area-dot.pain {
  background: #f97373;
  box-shadow: 0 0 6px rgba(248,113,113,0.9);
}

.s-area-dot.compare {
  background: #38bdf8;
  box-shadow: 0 0 6px rgba(56,189,248,0.9);
}

/* small pill on right */

.s-area-tag {
  font-size: 10px;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 2px 7px;
  font-weight: 600;
  white-space: nowrap;
}

.s-area-tag.pain {
  background: rgba(254, 226, 226, 0.12);
  color: #fecaca;
  border: 1px solid rgba(248,113,113,0.7);
}

.s-area-tag.compare {
  background: rgba(191, 219, 254, 0.12);
  color: #bfdbfe;
  border: 1px solid rgba(59,130,246,0.7);
}
/* FIX: Row text visibility */
.s-area-row {
  background: #1e2635 !important;
  color: #f1f5f9 !important;
}

/* Fix label text */
.s-area-label span:last-child {
  color: #f8fafc !important;
}

/* Stronger pills */
.s-area-tag.pain {
  background: #ffe2e2 !important;
  color: #b91c1c !important;
  border-color: #fecaca !important;
}

.s-area-tag.compare {
  background: #dbeafe !important;
  color: #1e3a8a !important;
  border-color: #93c5fd !important;
}
