/* FewshotAI / FPSL – plain CSS (design preserved from Tailwind) */
:root {
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-900: #0f172a;
  --slate-950: #020617;
  --emerald-200: #a7f3d0;
  --emerald-300: #6ee7b7;
  --emerald-400: #34d399;
  --emerald-500: #10b981;
  --cyan-200: #a5f3fc;
  --cyan-300: #67e8f9;
  --cyan-400: #22d3ee;
  --cyan-500: #06b6d4;
  --sky-400: #38bdf8;
  --sky-500: #0ea5e9;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #020617;
  color: var(--slate-50);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

/* Page wrapper & background effects */
.page-wrap {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: linear-gradient(to bottom right, var(--slate-950), var(--slate-900), var(--slate-950));
}

.glow-layer {
  pointer-events: none;
  position: absolute;
  inset: 0;
}

.glow-emerald {
  position: absolute;
  left: -8rem;
  top: 0;
  width: 18rem;
  height: 18rem;
  border-radius: 9999px;
  background: rgba(16, 185, 129, 0.2);
  filter: blur(48px);
}

.glow-cyan {
  position: absolute;
  bottom: -6rem;
  right: -4rem;
  width: 24rem;
  height: 24rem;
  border-radius: 9999px;
  background: rgba(6, 182, 212, 0.2);
  filter: blur(48px);
}

.glow-radial {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, #1e293b 0%, transparent 55%);
  opacity: 0.7;
}

.grid-overlay {
  pointer-events: none;
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(148, 163, 184, 0.08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(148, 163, 184, 0.08) 1px, transparent 1px);
  background-size: 80px 80px;
}

.content-inner {
  position: relative;
  z-index: 10;
  max-width: 72rem;
  margin: 0 auto;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 1rem 1.5rem 4rem;
}

@media (min-width: 1024px) {
  .content-inner {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
    padding-top: 1.5rem;
  }
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(30, 41, 59, 0.6);
  background: rgba(2, 6, 23, 0.8);
  backdrop-filter: blur(12px);
  padding: 0.75rem 0.5rem;
}

@media (min-width: 768px) {
  .header {
    border-radius: 1rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

.logo-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-icon {
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  background: linear-gradient(to top right, var(--emerald-400), var(--cyan-400), var(--sky-500));
  color: var(--slate-950);
  font-size: 1.25rem;
  font-weight: 600;
  box-shadow: 0 0 40px rgba(45, 212, 191, 0.55);
}

.logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: inherit;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(110, 231, 183, 0.8);
}

.logo-sublabel {
  font-size: 0.875rem;
  color: var(--slate-300);
}

.nav {
  display: none;
  align-items: center;
  gap: 2rem;
  font-size: 0.875rem;
  color: rgba(226, 232, 240, 0.8);
}

@media (min-width: 768px) {
  .nav {
    display: flex;
  }
}

.nav a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

.nav a:hover {
  color: var(--emerald-300);
}

/* Services dropdown */
.dropdown-wrap {
  position: relative;
}

.dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  background: none;
  border: none;
  color: inherit;
  font-size: inherit;
  cursor: pointer;
  padding: 0;
  transition: color 0.2s;
}

.dropdown-trigger:hover {
  color: var(--emerald-300);
}

.dropdown-trigger svg {
  width: 0.75rem;
  height: 0.75rem;
  transition: transform 0.2s;
}

.dropdown-trigger.open svg {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  left: 0;
  top: 100%;
  margin-top: 0.5rem;
  min-width: 240px;
  border-radius: 0.75rem;
  border: 1px solid rgba(30, 41, 59, 0.8);
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(4px);
  box-shadow: 0 24px 80px rgba(15, 23, 42, 0.9);
  padding: 0.5rem;
  display: none;
}

.dropdown-menu.open {
  display: block;
}

.dropdown-menu a {
  display: block;
  padding: 0.625rem 1rem;
  font-size: 0.875rem;
  color: var(--slate-200);
  text-decoration: none;
  border-radius: 0.5rem;
  transition: background 0.2s, color 0.2s;
}

.dropdown-menu a:hover {
  background: rgba(16, 185, 129, 0.1);
  color: var(--emerald-200);
}

/* Main */
main {
  margin-top: 3.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.main-subpage {
  margin-top: 4rem;
  gap: 4rem;
}

/* Property Solutions: flex gap guarantees space after the sticky header so
   main never starts in the same band as the header (avoids overlap / paint-under). */
.page-property .content-inner {
  gap: 1.5rem;
}

.page-property main.main-subpage.property-main {
  margin-top: 0 !important;
}

.page-property .header {
  flex-shrink: 0;
}

/* Hero badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  border: 1px solid rgba(16, 185, 129, 0.4);
  background: rgba(16, 185, 129, 0.05);
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--emerald-200);
  box-shadow: 0 0 30px rgba(16, 185, 129, 0.5);
  backdrop-filter: blur(4px);
}

.hero-badge-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 9999px;
  background: var(--emerald-400);
}

.hero h1 {
  margin-top: 1.5rem;
  margin-bottom: 0;
  font-size: 2.25rem;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.2;
  text-wrap: balance;
}

@media (min-width: 640px) {
  .hero h1 {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .hero h1 {
    font-size: 3.2rem;
  }
}

.hero h1 .gradient-text {
  background: linear-gradient(to right, var(--emerald-300), var(--cyan-300), var(--sky-400));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-desc {
  margin-top: 1.25rem;
  max-width: 48rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(203, 213, 225, 0.9);
  text-wrap: balance;
}

@media (min-width: 640px) {
  .hero-desc {
    font-size: 0.96rem;
  }
}

/* CTA button */
.cta-row {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .cta-row {
    flex-direction: row;
    align-items: center;
  }
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 9999px;
  background: linear-gradient(to right, var(--emerald-400), var(--cyan-400), var(--sky-500));
  padding: 0.75rem 1.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--slate-950);
  text-decoration: none;
  box-shadow: 0 20px 60px rgba(45, 212, 191, 0.6);
  transition: filter 0.2s;
}

.btn-cta:hover {
  filter: brightness(1.1);
}

.btn-cta .arrow {
  transition: transform 0.2s;
}

.btn-cta:hover .arrow {
  transform: translateX(4px);
}

.scroll-section {
  margin-top: 4rem;
}

/* Section headings */
.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--slate-400);
}

.section-label-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.section-label-row .line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, rgba(51, 65, 85, 0.5), transparent);
}

/* Scroll tray (problems / tags) */
.scroll-tray-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid rgba(30, 41, 59, 0.8);
  background: rgba(15, 23, 42, 0.4);
  padding: 1.5rem;
  backdrop-filter: blur(4px);
}

.scroll-tray {
  display: flex;
  width: max-content;
  gap: 1rem;
  animation: scroll 40s linear infinite;
  will-change: transform;
}

.scroll-tray-wrap:hover .scroll-tray {
  animation-play-state: paused;
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 1rem)); }
}

.scroll-tag {
  flex-shrink: 0;
  border-radius: 9999px;
  border: 1px solid rgba(16, 185, 129, 0.3);
  background: linear-gradient(to right, rgba(16, 185, 129, 0.1), rgba(6, 182, 212, 0.1), rgba(14, 165, 233, 0.1));
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--slate-200);
  box-shadow: 0 0 0 1px rgba(16, 185, 129, 0.2);
  transition: border-color 0.2s, color 0.2s;
}

.scroll-tag:hover {
  border-color: rgba(52, 211, 153, 0.6);
  color: var(--emerald-200);
}

/* Services grid (home) */
#services {
  margin-top: 5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(30, 41, 59, 0.8);
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  #services {
    grid-template-columns: 1fr 2fr;
  }
}

#services .intro {
  grid-column: 1;
}

#services .cards {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  #services .cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 768px) {
  #services .cards {
    grid-column: 2;
  }
}

.service-card {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid var(--slate-800);
  background: rgba(2, 6, 23, 0.7);
  padding: 1rem;
  font-size: 0.75rem;
  color: var(--slate-200);
  box-shadow: 0 18px 55px rgba(15, 23, 42, 0.9);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.service-card:hover {
  border-color: rgba(52, 211, 153, 0.6);
  box-shadow: 0 28px 80px rgba(16, 185, 129, 0.55);
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, rgba(16, 185, 129, 0.1), transparent, rgba(2, 6, 23, 0.8));
  opacity: 0;
  transition: opacity 0.2s;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card.card-cyan::before {
  background: linear-gradient(to bottom right, rgba(6, 182, 212, 0.1), transparent, rgba(2, 6, 23, 0.8));
}

.service-card.card-sky::before {
  background: linear-gradient(to bottom right, rgba(14, 165, 233, 0.1), transparent, rgba(2, 6, 23, 0.8));
}

.service-card h3 {
  position: relative;
  margin: 0;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--slate-50);
}

.service-card p {
  position: relative;
  margin-top: 0.5rem;
  font-size: 0.78rem;
  color: rgba(203, 213, 225, 0.9);
}

.service-card ul {
  position: relative;
  margin: 0.75rem 0 0;
  padding: 0;
  list-style: none;
  font-size: 0.74rem;
  color: var(--slate-300);
}

.service-card li {
  margin-top: 0.25rem;
}

/* Contact CTA section */
.contact-cta {
  margin-top: 4rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(16, 185, 129, 0.35);
  background: linear-gradient(to right, rgba(16, 185, 129, 0.1), var(--slate-950), var(--slate-950));
  padding: 1.5rem 1.5rem;
  font-size: 0.875rem;
  color: var(--slate-100);
  box-shadow: 0 28px 100px rgba(16, 185, 129, 0.5);
}

@media (min-width: 640px) {
  .contact-cta {
    padding: 1.75rem 2rem;
  }
}

@media (min-width: 1024px) {
  .contact-cta {
    margin-top: 5rem;
  }
}

.contact-cta-inner {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .contact-cta-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.contact-cta h2 {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--emerald-200);
  margin: 0;
}

.contact-cta p {
  margin-top: 0.5rem;
  max-width: 36rem;
  font-size: 0.9rem;
  color: rgba(236, 254, 255, 0.9);
}

.contact-cta .actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .contact-cta .actions {
    flex-direction: row;
    align-items: center;
  }
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background: var(--slate-950);
  padding: 0.625rem 1.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--emerald-200);
  text-decoration: none;
  box-shadow: 0 0 0 1px rgba(16, 185, 129, 0.7);
  transition: background 0.2s;
}

.btn-outline:hover {
  background: var(--slate-900);
}

/* Footer */
.footer {
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(30, 41, 59, 0.8);
  font-size: 0.7rem;
  color: var(--slate-500);
}

@media (min-width: 640px) {
  .footer {
    margin-top: 3.5rem;
  }
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .footer-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.footer-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-tags span {
  border-radius: 9999px;
  border: 1px solid rgba(51, 65, 85, 0.7);
  padding: 0.25rem 0.75rem;
}

/* Consulting page: two-column hero */
.hero-grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
    align-items: start;
  }
}

.hero-grid h1 {
  margin: 0;
  font-size: 2.25rem;
  font-weight: 600;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

@media (min-width: 640px) {
  .hero-grid h1 {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .hero-grid h1 {
    font-size: 3.2rem;
  }
}

.hero-grid .gradient-text {
  background: linear-gradient(to right, var(--emerald-300), var(--cyan-300), var(--sky-400));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-grid > div > p {
  margin-top: 1.5rem;
  max-width: 48rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(203, 213, 225, 0.9);
}

@media (min-width: 640px) {
  .hero-grid > div > p {
    font-size: 0.96rem;
  }
}

.hero-grid .highlight {
  color: var(--emerald-200);
}

.stats-row {
  margin-top: 2rem;
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .stats-row {
    grid-template-columns: repeat(3, 1fr);
  }
}

.stat-box {
  border-radius: 1rem;
  border: 1px solid rgba(30, 41, 59, 0.8);
  background: rgba(15, 23, 42, 0.7);
  padding: 0.75rem 1rem;
  box-shadow: 0 18px 60px rgba(15, 23, 42, 0.8);
}

.stat-box .label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--slate-400);
}

.stat-box p:last-child {
  margin: 0.5rem 0 0;
  font-size: 0.875rem;
  color: var(--slate-100);
}

/* Expertise map aside */
.aside-card {
  border-radius: 1.5rem;
  border: 1px solid rgba(30, 41, 59, 0.8);
  background: rgba(15, 23, 42, 0.7);
  padding: 1.25rem;
  box-shadow: 0 24px 80px rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(4px);
}

@media (min-width: 640px) {
  .aside-card {
    padding: 1.5rem;
  }
}

.aside-card .label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(110, 231, 183, 0.85);
}

.expertise-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  font-size: 0.75rem;
  color: var(--slate-200);
}

.expertise-item {
  border-radius: 1rem;
  padding: 0.75rem;
}

.expertise-item.emerald {
  border: 1px solid rgba(16, 185, 129, 0.4);
  background: rgba(16, 185, 129, 0.1);
}

.expertise-item.emerald .k {
  color: rgba(167, 243, 208, 0.9);
}

.expertise-item.cyan {
  border: 1px solid rgba(6, 182, 212, 0.4);
  background: rgba(6, 182, 212, 0.1);
}

.expertise-item.cyan .k {
  color: rgba(165, 243, 252, 0.9);
}

.expertise-item.sky {
  border: 1px solid rgba(14, 165, 233, 0.4);
  background: rgba(14, 165, 233, 0.1);
}

.expertise-item.sky .k {
  color: rgba(186, 230, 253, 0.9);
}

.expertise-item.slate {
  border: 1px solid rgba(51, 65, 85, 0.8);
  background: var(--slate-900);
}

.expertise-item.slate .k {
  color: rgba(203, 213, 225, 0.9);
}

.expertise-item .k {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.expertise-item p {
  margin: 0.5rem 0 0;
  font-size: 0.8rem;
}

/* How we engage */
.section-block {
  padding-top: 2.5rem;
  border-top: 1px solid rgba(30, 41, 59, 0.8);
}

.engage-grid {
  display: grid;
  gap: 1rem;
}

.engage-intro {
  max-width: 28rem;
}

.engage-intro p {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  color: rgba(203, 213, 225, 0.9);
}

@media (min-width: 768px) {
  .engage-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}

.engage-card {
  border-radius: 1rem;
  border: 1px solid var(--slate-800);
  background: rgba(2, 6, 23, 0.7);
  padding: 1.25rem 1.5rem;
  font-size: 0.75rem;
  color: var(--slate-200);
}

.engage-card .num {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--slate-400);
}

.engage-card p {
  margin: 0.5rem 0 0;
  font-size: 0.8rem;
}

.engage-card ul {
  margin: 0.75rem 0 0;
  padding: 0;
  list-style: none;
  font-size: 0.75rem;
  color: var(--slate-300);
}

.engage-card li {
  margin-top: 0.25rem;
}

/* Problem silhouettes (consulting) */
.silhouettes-tray {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid rgba(30, 41, 59, 0.8);
  background: rgba(2, 6, 23, 0.6);
  padding: 1.25rem;
  backdrop-filter: blur(4px);
}

.silhouettes-tray .scroll-tray {
  gap: 1rem;
}

.silhouette-card {
  position: relative;
  flex: 0 0 18rem;
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid var(--slate-800);
  background: rgba(2, 6, 23, 0.8);
  padding: 1rem;
  font-size: 0.75rem;
  color: var(--slate-200);
}

@media (min-width: 640px) {
  .silhouette-card {
    flex: 0 0 20rem;
  }
}

.silhouette-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to bottom right, var(--accent), transparent, rgba(2, 6, 23, 0.95));
}

.silhouette-card.accent-emerald { --accent: rgba(16, 185, 129, 0.1); }
.silhouette-card.accent-cyan { --accent: rgba(6, 182, 212, 0.1); }
.silhouette-card.accent-sky { --accent: rgba(14, 165, 233, 0.1); }

.silhouette-card .inner {
  position: relative;
}

.silhouette-card .cat {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.silhouette-card .cat.emerald { color: rgba(110, 231, 183, 0.9); }
.silhouette-card .cat.cyan { color: rgba(103, 232, 249, 0.9); }
.silhouette-card .cat.sky { color: rgba(56, 189, 248, 0.9); }

.silhouette-card .body {
  margin-top: 0.5rem;
  font-size: 0.8rem;
  color: rgba(226, 232, 240, 0.9);
}

/* Property solutions: services grid (same as service-card) */
.ps-service-card {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid var(--slate-800);
  background: rgba(2, 6, 23, 0.7);
  padding: 1rem;
  font-size: 0.75rem;
  color: var(--slate-200);
  box-shadow: 0 18px 55px rgba(15, 23, 42, 0.9);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.ps-service-card:hover {
  border-color: rgba(52, 211, 153, 0.6);
  box-shadow: 0 28px 80px rgba(16, 185, 129, 0.55);
}

.ps-service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to bottom right, rgba(16, 185, 129, 0.1), transparent, rgba(2, 6, 23, 0.9));
  opacity: 0;
  transition: opacity 0.2s;
}

.ps-service-card:hover::before {
  opacity: 1;
}

.ps-service-card.cyan::before {
  background: linear-gradient(to bottom right, rgba(6, 182, 212, 0.1), transparent, rgba(2, 6, 23, 0.9));
}

.ps-service-card.sky::before {
  background: linear-gradient(to bottom right, rgba(14, 165, 233, 0.1), transparent, rgba(2, 6, 23, 0.9));
}

.ps-service-card .relative {
  position: relative;
}

.ps-service-card h3 {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--slate-50);
}

.ps-service-card p {
  margin-top: 0.5rem;
  font-size: 0.78rem;
  color: rgba(203, 213, 225, 0.9);
}

.ps-service-card ul {
  margin-top: 0.75rem;
  padding: 0;
  list-style: none;
  font-size: 0.74rem;
  color: var(--slate-300);
}

.ps-service-card li {
  margin-top: 0.25rem;
}

/* About two-column */
.about-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    align-items: start;
  }
}

.about-grid p {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  color: rgba(203, 213, 225, 0.9);
}

.about-side p {
  border-radius: 1rem;
  border: 1px solid var(--slate-800);
  background: rgba(2, 6, 23, 0.8);
  padding: 0.75rem 1rem;
  font-size: 0.75rem;
  color: var(--slate-300);
}

.about-side p + p {
  margin-top: 0.75rem;
}

/* Logo image in header (property solutions) */
.logo-icon.logo-img {
  width: 3rem;
  height: 3rem;
  padding: 0.375rem;
  background: rgba(15, 23, 42, 0.8);
}

.logo-icon.logo-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: inherit;
}
