/* ============================================================
   SERVICE DETAIL — Liaison Services Page
   ============================================================ */

/* ============================================================
   REAL ESTATE DETAIL PAGES — SCROLL FIX
   Prevents double/stuck scrollbar from height-constrained wrappers.
   Applied globally to all RE detail pages via this shared CSS.
   ============================================================ */

/* 1. Ensure html/body always scroll naturally */
html,
body {
  height: auto !important;
  min-height: 100% !important;
  overflow-x: hidden !important;
  overflow-y: auto !important;
  max-height: none !important;
}

/* 2. #main wrapper opened by header.php must never constrain scroll */
#main {
  height: auto !important;
  min-height: auto !important;
  max-height: none !important;
  overflow: visible !important;
}

/* 3. All RE detail page wrappers — no fixed height, no inner scroll */
main.bim-page,
main.reva-page,
main.pm-page,
main.dc-page,
.fm-page,
.pv-page,
.sm-page,
.rebo-page,
.page-wrapper,
.service-detail-page,
.real-estate-detail-page {
  height: auto !important;
  min-height: auto !important;
  max-height: none !important;
  overflow: visible !important;
  overflow-y: visible !important;
}

.ld-page {
  background: #070012;
  color: #fff;
}

.ld-container {
  width: min(1120px, 88%);
  margin: 0 auto;
}

/* ── Fade-up animation ── */
@keyframes ldFadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}

.ld-reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.ld-reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ── Divider ── */
.ld-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  border: none;
  margin: 0;
}

/* ── Section spacing ── */
.ld-section {
  padding: 70px 0;
}

/* ── Glass card ── */
.ld-glass {
  background: rgba(35, 24, 55, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 18px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.ld-glass:hover {
  transform: translateY(-5px);
  border-color: rgba(183, 119, 255, 0.30);
  box-shadow: 0 20px 55px rgba(70, 22, 145, 0.30);
}

/* ── Headings ── */
.ld-heading {
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
  font-weight: 700;
  color: rgba(224, 217, 245, 0.82);
  margin: 0 0 1.2rem;
  line-height: 1.2;
}

.ld-subheading {
  font-size: 1.05rem;
  font-weight: 600;
  color: #b777ff;
  margin: 0 0 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ── Body text ── */
.ld-text {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(230, 224, 245, 0.78);
  margin: 0 0 1rem;
}

.ld-text:last-child { margin-bottom: 0; }

/* ── Bullet list ── */
.ld-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  gap: 0.6rem;
}

.ld-list li {
  padding-left: 1.4rem;
  position: relative;
  color: rgba(230, 224, 245, 0.78);
  font-size: 0.97rem;
  line-height: 1.7;
}

.ld-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, #b777ff, #ff72bd);
}

/* ============================================================
   1. HERO SECTION
   ============================================================ */
.ld-hero {
  padding: 80px 0 70px;
  background:
    radial-gradient(circle at 60% 40%, rgba(140, 70, 255, 0.18) 0%, transparent 55%),
    #070012;
}

.ld-hero-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 3.5rem;
  align-items: center;
}

.ld-hero-title {
  font-size: clamp(1.7rem, 2.8vw, 2.5rem);
  font-weight: 800;
  color: rgba(224, 217, 245, 0.82);
  line-height: 1.2;
  margin: 0 0 1.5rem;
}

.ld-hero-img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  display: block;
}

/* ============================================================
   2. WHY ESSENTIAL SECTION
   ============================================================ */
.ld-why-grid {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 2.5rem;
  align-items: start;
}

.ld-mini-card {
  padding: 1.8rem 1.5rem;
  display: grid;
  gap: 0.9rem;
}

.ld-mini-card-item {
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(224, 217, 245, 0.82);
  padding: 0.6rem 0.9rem;
  border-radius: 8px;
  background: rgba(183, 119, 255, 0.10);
  border: 1px solid rgba(183, 119, 255, 0.18);
  text-align: center;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.ld-mini-card-item:hover {
  background: rgba(183, 119, 255, 0.20);
  border-color: rgba(183, 119, 255, 0.40);
}

/* ============================================================
   3. EXPERTISE SECTION
   ============================================================ */
.ld-expertise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.ld-expertise-card {
  padding: 1.8rem;
}

.ld-expertise-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #ff72bd;
  margin: 0 0 1rem;
}

/* ============================================================
   4. WHY CHOOSE SECTION
   ============================================================ */
.ld-choose-section {
  background:
    radial-gradient(circle at 30% 50%, rgba(183, 119, 255, 0.10) 0%, transparent 50%),
    rgba(14, 4, 34, 0.60);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* ============================================================
   5. LAND SERVICES SECTION
   ============================================================ */
.ld-land-grid {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 2.5rem;
  align-items: start;
}

.ld-two-col-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 1.5rem;
  margin-top: 1rem;
}

/* ============================================================
   6. INFO GLASS SECTION
   ============================================================ */
.ld-info-card {
  padding: 2.5rem;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 2.5rem;
  align-items: center;
}

.ld-info-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

/* ============================================================
   7. HOW WE WORK SECTION
   ============================================================ */
.ld-process-card {
  display: inline-flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 1.4rem 1.8rem;
  max-width: 280px;
}

.ld-process-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #b777ff;
}

.ld-process-title {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(224, 217, 245, 0.82);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .ld-hero-grid,
  .ld-why-grid,
  .ld-land-grid {
    grid-template-columns: 1fr;
  }

  .ld-hero-img { height: 260px; }

  .ld-expertise-grid {
    grid-template-columns: 1fr 1fr;
  }

  .ld-info-card {
    grid-template-columns: 1fr;
  }

  .ld-info-img { height: 220px; }
}

@media (max-width: 600px) {
  .ld-section { padding: 50px 0; }

  .ld-expertise-grid {
    grid-template-columns: 1fr;
  }

  .ld-two-col-list {
    grid-template-columns: 1fr;
  }

  .ld-hero { padding: 60px 0 50px; }
}

/* ============================================================
   STATUTORY COMPLIANCE PAGE
   ============================================================ */

.service-detail-page {
  background: #070014;
  color: #fff;
}

.service-container {
  width: min(1120px, 88%);
  margin: 0 auto;
}

/* ── Hero ── */
.service-hero {
  padding: 120px 0 80px;
  background:
    radial-gradient(circle at top center, rgba(146, 84, 214, 0.22), transparent 35%),
    #070014;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.service-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.service-hero-content h1 {
  color: rgba(224, 217, 245, 0.82);
  font-size: clamp(38px, 4vw, 58px);
  line-height: 1.12;
  font-weight: 900;
  margin: 0 0 32px;
}

.service-hero-content p {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.86);
  margin: 0;
}

.service-hero-image {
  overflow: hidden;
  border-radius: 4px;
}

.service-hero-image img {
  width: 100%;
  height: 390px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.service-hero-image:hover img {
  transform: scale(1.06);
}

/* ── Industry Focus ── */
.industry-focus {
  padding: 80px 0 120px;
}

.industry-focus h2 {
  color: rgba(224, 217, 245, 0.82);
  font-size: clamp(28px, 3.5vw, 46px);
  line-height: 1.15;
  font-weight: 900;
  margin: 0 0 32px;
}

.focus-list-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  padding: 28px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.focus-list-grid ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.focus-list-grid li {
  margin-bottom: 14px;
  font-size: 16px;
  color: #fff;
  padding-left: 1.6rem;
  position: relative;
}

.focus-list-grid li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #b777ff;
  font-weight: 700;
}

/* ── Glass content section ── */
.service-glass-section {
  padding: 60px 0 100px;
}

.service-glass-card {
  padding: 48px;
  border-radius: 10px;
  background: rgba(35, 24, 55, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.service-glass-card > img {
  width: 75%;
  height: 360px;
  object-fit: cover;
  display: block;
  margin: 0 auto 40px;
  border-radius: 8px;
}

.service-rich-text h3 {
  margin: 0 0 22px;
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 700;
  color: rgba(224, 217, 245, 0.82);
}

.service-rich-text p {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
  margin: 0 0 18px;
}

.service-rich-text p:last-child { margin-bottom: 0; }

.service-rich-text strong {
  color: #b777ff;
  font-weight: 700;
}

/* ── Scroll reveal ── */
.section-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.section-reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .service-hero { padding: 80px 0 60px; }

  .service-hero-grid,
  .focus-list-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .service-hero-image img { height: 280px; }

  .service-glass-card { padding: 28px; }

  .service-glass-card > img {
    width: 100%;
    height: 240px;
  }
}

@media (max-width: 600px) {
  .service-hero { padding: 60px 0 50px; }
  .industry-focus { padding: 60px 0 80px; }
  .service-glass-section { padding: 40px 0 70px; }
}

/* ============================================================
   REAL ESTATE INNER DETAIL PAGES
   Shared rescue layer for BIM, VA, property, construction, FM,
   back-office, documentation, and valuation detail pages.
   ============================================================ */

.bim-page,
.reva-page,
.pm-page,
.dc-page,
.fm-page,
.pv-page,
.sm-page {
  --re-dark: #020800;
  --re-dark-2: #061206;
  --re-dark-3: #0a1709;
  --re-lime: #b4ff3c;
  --re-lime-2: #d8ff6a;
  --re-text: rgba(220, 242, 205, .86);
  --re-muted: rgba(205, 232, 190, .66);
  --re-border: rgba(180, 255, 60, .16);
  background: var(--re-dark) !important;
  color: var(--re-text) !important;
  overflow-x: hidden;
  /* Scroll fix: never constrain height or create inner scroll */
  height: auto !important;
  min-height: auto !important;
  overflow-y: visible !important;
  max-height: none !important;
}

.bim-wrap,
.reva-wrap,
.pm-wrap,
.dc-wrap,
.fm-wrap,
.pv-container,
.sm-wrap {
  width: min(1180px, calc(100% - 40px));
  max-width: 100%;
  margin: 0 auto;
}

.bim-section,
.reva-section,
.pm-section,
.dc-section,
.fm-hero,
.fm-overview,
.fm-services,
.fm-benefits,
.fm-why,
.fm-cta,
.pv-section,
.sm-section {
  position: relative;
  padding: 86px 0;
  overflow: clip; /* clip instead of hidden — clips visually but does NOT create scroll container */
  height: auto !important;
  min-height: auto !important;
  max-height: none !important;
  background:
    radial-gradient(circle at 18% 20%, rgba(180,255,60,.07), transparent 34%),
    radial-gradient(circle at 82% 76%, rgba(102,217,135,.06), transparent 36%),
    var(--re-dark) !important;
  isolation: isolate;
}

.bim-section::before,
.reva-section::before,
.pm-section::before,
.dc-section::before,
.fm-hero::before,
.fm-overview::before,
.fm-services::before,
.fm-benefits::before,
.fm-why::before,
.fm-cta::before,
.pv-section::before,
.sm-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(180,255,60,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(180,255,60,.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, transparent, #000 16%, #000 86%, transparent);
}

.bim-hero,
.reva-hero,
.pm-hero,
.dc-hero,
.fm-hero,
.pv-hero-section,
.sm-banner {
  padding-top: 124px;
  background:
    radial-gradient(circle at 70% 30%, rgba(180,255,60,.13), transparent 42%),
    linear-gradient(135deg, #020800 0%, #071507 62%, #020800 100%) !important;
}

.bim-reveal,
.reva-reveal,
.pm-reveal,
.dc-reveal,
.fm-reveal,
.pv-page .reveal {
  opacity: 0;
  transform: translate3d(0, 34px, 0);
  transition: opacity .78s cubic-bezier(.22,1,.36,1), transform .78s cubic-bezier(.22,1,.36,1);
  will-change: opacity, transform;
}

.bim-reveal.bim-in,
.reva-reveal.reva-in,
.pm-reveal.pm-in,
.dc-reveal.dc-in,
.fm-reveal.fm-in,
.pv-page .reveal.in-view,
.re-detail-in {
  opacity: 1 !important;
  transform: translate3d(0, 0, 0) !important;
  visibility: visible !important;
}

/* Safety: if JS fails or observer never fires, show content after 1s */
@keyframes reDetailFallback {
  to { opacity: 1; transform: translate3d(0,0,0); }
}
.bim-reveal,
.reva-reveal,
.pm-reveal,
.dc-reveal,
.fm-reveal {
  animation: reDetailFallback 0.01s 1.5s forwards;
}

.bim-d1,
.reva-d1,
.pm-d1,
.dc-d1,
.fm-d1,
.sm-d1 { transition-delay: .12s; }

.bim-d2,
.reva-d2,
.pm-d2,
.dc-d2,
.fm-d2,
.sm-d2 { transition-delay: .24s; }

.bim-split,
.reva-split,
.pm-split,
.dc-split,
.fm-hero-grid,
.fm-overview-grid,
.fm-benefits-grid,
.pv-hero,
.pv-split,
.sm-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .9fr);
  gap: clamp(36px, 6vw, 72px);
  align-items: center;
}

.bim-split--rev,
.reva-split--rev,
.pm-split--rev,
.dc-split--rev,
.pv-split--rev,
.sm-split--rev {
  direction: rtl;
}

.bim-split--rev > *,
.reva-split--rev > *,
.pm-split--rev > *,
.dc-split--rev > *,
.pv-split--rev > *,
.sm-split--rev > * {
  direction: ltr;
}

.bim-copy,
.reva-copy,
.pm-copy,
.dc-copy,
.pv-content,
.sm-split__copy {
  min-width: 0;
}

.bim-label,
.reva-label,
.pm-label,
.dc-label,
.fm-label,
.pv-label,
.sm-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--re-lime) !important;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .22em;
  line-height: 1.3;
  text-transform: uppercase;
}

.bim-h1,
.reva-h1,
.pm-h1,
.dc-h1,
.pv-title,
.sm-banner__title,
.split-hero-title {
  margin: 0 0 18px;
  color: #fff !important;
  font-size: clamp(2.35rem, 6vw, 5.1rem);
  font-weight: 900;
  line-height: .98;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 0 34px rgba(180,255,60,.18);
}

.bim-h1-outline,
.reva-h1-outline,
.pm-h1-outline,
.dc-h1-outline,
.pv-title-outline,
.sm-outline,
.outline-text {
  color: transparent !important;
  -webkit-text-stroke: 1.6px var(--re-lime);
  text-stroke: 1.6px var(--re-lime);
}

.bim-h2,
.reva-h2,
.pm-h2,
.dc-h2,
.fm-h2,
.fm-h3,
.pv-h2,
.sm-h2 {
  margin: 0 0 16px;
  color: #fff !important;
  font-size: clamp(1.75rem, 3.6vw, 3rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: 0;
}

.bim-tagline,
.reva-tagline,
.pm-tagline,
.dc-tagline,
.fm-hero-tagline,
.pv-subtitle,
.sm-banner__sub {
  margin: 0 0 14px;
  color: var(--re-lime) !important;
  font-size: clamp(.98rem, 1.4vw, 1.16rem);
  font-weight: 700;
}

.bim-body,
.reva-body,
.pm-body,
.dc-body,
.fm-body,
.fm-hero-sub,
.pv-text,
.pv-section-sub,
.bim-section-sub,
.reva-section-sub,
.pm-section-sub,
.dc-section-sub,
.sm-body {
  color: var(--re-text) !important;
  font-size: .96rem;
  line-height: 1.78;
  margin: 0 0 22px;
}

.bim-btn-primary,
.reva-btn-primary,
.pm-btn-primary,
.dc-btn-primary,
.fm-btn,
.pv-btn,
.sm-btn--solid,
.sm-btn--outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 28px;
  border: 1px solid rgba(180,255,60,.38);
  border-radius: 999px;
  background: var(--re-lime) !important;
  color: #020800 !important;
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 0 0 26px rgba(180,255,60,.26), 0 12px 30px rgba(0,0,0,.32);
  transition: transform .28s ease, box-shadow .28s ease, background .28s ease;
}

.sm-btn--outline {
  background: transparent !important;
  color: var(--re-lime) !important;
}

.bim-btn-primary:hover,
.reva-btn-primary:hover,
.pm-btn-primary:hover,
.dc-btn-primary:hover,
.fm-btn:hover,
.pv-btn:hover,
.sm-btn:hover {
  transform: translate3d(0, -3px, 0);
  box-shadow: 0 0 42px rgba(180,255,60,.42), 0 18px 42px rgba(0,0,0,.36);
}

.bim-img-col,
.reva-img-col,
.pm-img-col,
.dc-img-col,
.sm-split__img,
.pv-image-card,
.fm-img-card {
  position: relative;
  min-width: 0;
  animation: reDetailFloat 7s ease-in-out infinite;
}

.bim-img-frame,
.reva-img-frame,
.pm-img-frame,
.dc-img-frame,
.sm-img-card,
.pv-image-card,
.fm-img-card {
  overflow: hidden;
  border: 1px solid var(--re-border) !important;
  border-radius: 22px !important;
  background: rgba(180,255,60,.035) !important;
  box-shadow: 0 0 0 1px rgba(180,255,60,.08), 0 0 38px rgba(180,255,60,.10), 0 24px 70px rgba(0,0,0,.45) !important;
}

.bim-img-frame img,
.reva-img-frame img,
.pm-img-frame img,
.dc-img-frame img,
.sm-img-card img,
.pv-img,
.fm-img-card img {
  display: block;
  width: 100%;
  height: 420px;
  min-height: 0 !important;
  object-fit: cover;
  object-position: center;
  transition: transform .68s cubic-bezier(.22,1,.36,1), filter .68s ease;
}

.bim-img-frame:hover img,
.reva-img-frame:hover img,
.pm-img-frame:hover img,
.dc-img-frame:hover img,
.sm-img-card:hover img,
.pv-image-card:hover .pv-img,
.fm-img-card:hover img {
  transform: scale(1.055);
  filter: saturate(1.08) contrast(1.04);
}

.bim-img-overlay,
.reva-img-overlay,
.pm-img-overlay,
.dc-img-overlay,
.sm-img-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 46%, rgba(2,8,0,.58));
}

.bim-float-badge,
.reva-float-badge,
.pm-float-badge,
.dc-float-badge,
.sm-float-pill,
.pv-img-badge {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border: 1px solid rgba(180,255,60,.22);
  border-radius: 14px;
  background: rgba(5, 18, 6, .88);
  color: #fff;
  box-shadow: 0 14px 35px rgba(0,0,0,.38);
  backdrop-filter: blur(10px);
}

.bim-float-badge i,
.reva-float-badge i,
.pm-float-badge i,
.dc-float-badge i,
.sm-float-pill i,
.pv-img-badge i {
  color: var(--re-lime) !important;
}

.pv-img-badge--tl,
.sm-float-pill--tl {
  left: 18px;
  right: auto;
  top: 18px;
  bottom: auto;
}

.bim-cards-grid,
.reva-cards-grid,
.pm-cards-grid,
.dc-cards-grid,
.fm-cards-grid,
.pv-grid,
.pv-timeline-grid,
.bim-industry-grid,
.bim-why-grid,
.reva-why-grid,
.pm-why-grid,
.dc-why-grid,
.rebo-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.bim-card,
.reva-card,
.pm-card,
.dc-card,
.fm-card,
.pv-card,
.pv-tcard,
.bim-industry-card,
.bim-why-card,
.reva-why-card,
.pm-why-card,
.dc-why-card,
.pv-why-item,
.rebo-card {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  padding: 26px 22px;
  border: 1px solid rgba(180,255,60,.13) !important;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(180,255,60,.055), rgba(180,255,60,.018)) !important;
  color: var(--re-text) !important;
  box-shadow: 0 18px 46px rgba(0,0,0,.24);
  transition: transform .34s cubic-bezier(.22,1,.36,1), border-color .34s ease, box-shadow .34s ease;
}

.bim-card::before,
.reva-card::before,
.pm-card::before,
.dc-card::before,
.fm-card::before,
.pv-card::before,
.pv-tcard::before,
.rebo-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: var(--re-lime);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .34s ease;
}

.bim-card:hover,
.reva-card:hover,
.pm-card:hover,
.dc-card:hover,
.fm-card:hover,
.pv-card:hover,
.pv-tcard:hover,
.bim-industry-card:hover,
.bim-why-card:hover,
.reva-why-card:hover,
.pm-why-card:hover,
.dc-why-card:hover,
.pv-why-item:hover,
.rebo-card:hover {
  transform: translate3d(0, -8px, 0);
  border-color: rgba(180,255,60,.45) !important;
  box-shadow: 0 0 28px rgba(180,255,60,.16), 0 28px 64px rgba(0,0,0,.36);
}

.bim-card:hover::before,
.reva-card:hover::before,
.pm-card:hover::before,
.dc-card:hover::before,
.fm-card:hover::before,
.pv-card:hover::before,
.pv-tcard:hover::before,
.rebo-card:hover::before {
  transform: scaleX(1);
}

.bim-card-icon,
.reva-card-icon,
.pm-card-icon,
.dc-card-icon,
.fm-card-icon,
.pv-card-icon,
.pv-tcard-icon,
.rebo-card__icon,
.bim-industry-icon,
.bim-why-icon,
.reva-why-icon,
.pm-why-icon,
.dc-why-icon,
.pv-why-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 14px;
  border: 1px solid rgba(180,255,60,.20);
  border-radius: 14px;
  background: rgba(180,255,60,.08);
  color: var(--re-lime) !important;
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* Icon color guard — hover/active must never turn icons black */
.bim-card-icon i,
.reva-card-icon i,
.pm-card-icon i,
.dc-card-icon i,
.fm-card-icon i,
.pv-card-icon i,
.pv-tcard-icon i,
.rebo-card__icon i,
.bim-industry-icon i,
.bim-why-icon {
  color: var(--re-lime) !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.bim-card:hover .bim-card-icon,
.bim-card:active .bim-card-icon,
.bim-industry-card:hover .bim-industry-icon,
.bim-why-card:hover .bim-why-icon {
  background: rgba(180,255,60,.16) !important;
  border-color: rgba(180,255,60,.40) !important;
  color: var(--re-lime) !important;
}

.bim-card:hover .bim-card-icon i,
.bim-card:active .bim-card-icon i,
.bim-industry-card:hover .bim-industry-icon i,
.bim-why-card:hover .bim-why-icon {
  color: var(--re-lime) !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.bim-card h3,
.reva-card h3,
.pm-card h3,
.dc-card h3,
.fm-card h3,
.pv-card h3,
.pv-tcard h3,
.rebo-card h3,
.bim-industry-card h3 {
  margin: 0 0 10px;
  color: #fff !important;
  font-size: .98rem;
  font-weight: 800;
  line-height: 1.3;
}

.bim-card p,
.reva-card p,
.pm-card p,
.dc-card p,
.fm-card p,
.pv-card p,
.pv-tcard p,
.rebo-card p,
.bim-why-card p,
.reva-why-card p,
.pm-why-card p,
.dc-why-card p,
.pv-why-item p {
  margin: 0;
  color: var(--re-muted) !important;
  font-size: .85rem;
  line-height: 1.68;
}

.bim-check-list,
.reva-check-list,
.pm-check-list,
.dc-check-list,
.fm-checklist,
.pv-list,
.sm-checklist {
  display: grid;
  gap: 11px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.bim-check-list li,
.reva-check-list li,
.pm-check-list li,
.dc-check-list li,
.fm-checklist li,
.pv-list li,
.sm-checklist li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--re-text) !important;
  font-size: .92rem;
  line-height: 1.6;
}

.bim-check-list i,
.reva-check-list i,
.pm-check-list i,
.dc-check-list i,
.pv-list i,
.sm-checklist i {
  margin-top: 4px;
  color: var(--re-lime) !important;
  flex-shrink: 0;
}

.fm-checklist li::before {
  border-color: rgba(180,255,60,.45) !important;
  background-color: rgba(180,255,60,.12) !important;
}

.pv-stats-row,
.pv-hero-actions,
.pv-cta-box,
.bim-mini-cta-inner,
.reva-mini-cta-inner,
.pm-mini-cta-inner,
.dc-mini-cta-inner,
.fm-cta-inner {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}

.pv-cta-box,
.bim-mini-cta-inner,
.reva-mini-cta-inner,
.pm-mini-cta-inner,
.dc-mini-cta-inner,
.fm-cta-inner {
  justify-content: space-between;
  padding: clamp(28px, 5vw, 52px);
  border: 1px solid rgba(180,255,60,.18) !important;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(180,255,60,.085), rgba(180,255,60,.02)) !important;
  box-shadow: 0 24px 68px rgba(0,0,0,.30);
}

@keyframes reDetailFloat {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -8px, 0); }
}

@media (max-width: 1100px) {
  .bim-cards-grid,
  .reva-cards-grid,
  .pm-cards-grid,
  .dc-cards-grid,
  .fm-cards-grid,
  .pv-grid,
  .pv-timeline-grid,
  .bim-industry-grid,
  .rebo-cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bim-why-grid,
  .reva-why-grid,
  .pm-why-grid,
  .dc-why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .bim-split,
  .reva-split,
  .pm-split,
  .dc-split,
  .fm-hero-grid,
  .fm-overview-grid,
  .fm-benefits-grid,
  .pv-hero,
  .pv-split,
  .sm-split {
    grid-template-columns: 1fr;
  }

  .bim-split--rev,
  .reva-split--rev,
  .pm-split--rev,
  .dc-split--rev,
  .pv-split--rev,
  .sm-split--rev {
    direction: ltr;
  }

  .bim-section,
  .reva-section,
  .pm-section,
  .dc-section,
  .fm-hero,
  .fm-overview,
  .fm-services,
  .fm-benefits,
  .fm-why,
  .fm-cta,
  .pv-section,
  .sm-section {
    padding: 68px 0;
  }

  .bim-img-frame img,
  .reva-img-frame img,
  .pm-img-frame img,
  .dc-img-frame img,
  .sm-img-card img,
  .pv-img,
  .fm-img-card img {
    height: 310px;
  }
}

@media (max-width: 640px) {
  .bim-wrap,
  .reva-wrap,
  .pm-wrap,
  .dc-wrap,
  .fm-wrap,
  .pv-container,
  .sm-wrap {
    width: min(100% - 28px, 520px);
  }

  .bim-h1,
  .reva-h1,
  .pm-h1,
  .dc-h1,
  .pv-title,
  .sm-banner__title,
  .split-hero-title {
    font-size: clamp(2rem, 10vw, 2.85rem);
    line-height: 1.02;
  }

  .bim-cards-grid,
  .reva-cards-grid,
  .pm-cards-grid,
  .dc-cards-grid,
  .fm-cards-grid,
  .pv-grid,
  .pv-timeline-grid,
  .bim-industry-grid,
  .bim-why-grid,
  .reva-why-grid,
  .pm-why-grid,
  .dc-why-grid,
  .rebo-cards-grid {
    grid-template-columns: 1fr;
  }

  .bim-img-frame img,
  .reva-img-frame img,
  .pm-img-frame img,
  .dc-img-frame img,
  .sm-img-card img,
  .pv-img,
  .fm-img-card img {
    height: 245px;
  }

  .bim-float-badge,
  .reva-float-badge,
  .pm-float-badge,
  .dc-float-badge,
  .sm-float-pill,
  .pv-img-badge {
    display: none;
  }

  .bim-btn-primary,
  .reva-btn-primary,
  .pm-btn-primary,
  .dc-btn-primary,
  .fm-btn,
  .pv-btn,
  .pv-btn-ghost,
  .sm-btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .bim-reveal,
  .reva-reveal,
  .pm-reveal,
  .dc-reveal,
  .fm-reveal,
  .pv-page .reveal,
  .bim-img-col,
  .reva-img-col,
  .pm-img-col,
  .dc-img-col,
  .sm-split__img,
  .pv-image-card,
  .fm-img-card {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    transition: none !important;
  }
}

/* ============================================================
   RESOURCING PAGE
   ============================================================ */

.resourcing-hero {
  padding: 130px 0 80px;
  background:
    radial-gradient(circle at top center, rgba(146, 84, 214, 0.22), transparent 35%),
    #070014;
}

.resourcing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.resourcing-content h1 {
  font-size: clamp(42px, 5vw, 62px);
  color: rgba(224, 217, 245, 0.82);
  margin: 0 0 14px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.resourcing-content h3 {
  font-size: clamp(16px, 1.8vw, 22px);
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.78);
  margin: 0 0 20px;
  font-weight: 500;
}

.resourcing-content h2 {
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.1;
  color: rgba(224, 217, 245, 0.82);
  margin: 0 0 28px;
  font-weight: 900;
}

.service-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.10);
  margin: 28px 0;
}

.check-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 45px;
}

.check-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.check-grid li {
  font-size: 15px;
  margin-bottom: 13px;
  color: #fff;
  padding-left: 1.5rem;
  position: relative;
}

.check-grid li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #b777ff;
  font-weight: 900;
}

.service-image-card {
  overflow: hidden;
  border-radius: 4px;
}

.service-image-card img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.service-image-card:hover img {
  transform: scale(1.06);
}

.resourcing-info {
  padding: 70px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.resourcing-process {
  padding: 70px 0 100px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.resourcing-text p {
  font-size: 17px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.88);
  margin: 0 0 24px;
}

.resourcing-text p:last-child { margin-bottom: 0; }

.resourcing-text ol {
  margin: 24px 0 0;
  padding-left: 1.4rem;
}

.resourcing-text ol li {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 14px;
  padding-left: 0.4rem;
}

.resourcing-text ol li::marker {
  color: #b777ff;
  font-weight: 700;
}

.small-image img {
  height: 320px;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .resourcing-hero { padding: 80px 0 60px; }

  .resourcing-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .service-image-card img { height: 280px; }
  .small-image img { height: 240px; }
}

@media (max-width: 600px) {
  .resourcing-hero { padding: 60px 0 50px; }
  .resourcing-info,
  .resourcing-process { padding: 50px 0; }

  .check-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

/* ============================================================
   TRAININGS PAGE
   ============================================================ */

.training-intro {
  padding: 120px 0 80px;
  background:
    radial-gradient(circle at top center, rgba(146, 84, 214, 0.22), transparent 35%),
    #070014;
}

.training-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 70px;
  align-items: start;
}

/* ── Left content ── */
.training-content h1 {
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 900;
  color: rgba(224, 217, 245, 0.82);
  line-height: 1.15;
  margin: 0 0 28px;
}

.training-content h3 {
  font-size: clamp(17px, 1.8vw, 22px);
  font-weight: 700;
  color: #b777ff;
  margin: 28px 0 16px;
}

.training-content p {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.86);
  margin: 0 0 18px;
}

.training-content p:last-child { margin-bottom: 0; }

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

.training-offer-list li {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.86);
  padding-left: 1.4rem;
  position: relative;
}

.training-offer-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, #b777ff, #ff72bd);
}

.training-offer-list strong {
  color: #b777ff;
  font-weight: 700;
}

.training-image {
  margin: 24px 0;
}

.training-image img {
  height: 240px !important;
}

/* ── Right form card ── */
.training-form-card {
  position: sticky;
  top: 110px;
  padding: 36px 32px;
  border-radius: 10px;
  background: rgba(35, 24, 55, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.training-form-card h2 {
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 800;
  color: rgba(224, 217, 245, 0.82);
  margin: 0 0 10px;
}

.training-form-card > p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(230, 224, 245, 0.65);
  margin: 0 0 24px;
}

.training-form {
  display: grid;
  gap: 12px;
}

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

.training-form label {
  display: grid;
  gap: 5px;
}

.training-form label span {
  font-size: 12px;
  font-weight: 600;
  color: rgba(230, 224, 245, 0.65);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.training-form input,
.training-form textarea {
  width: 100%;
  background: rgba(10, 2, 28, 0.80);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 4px;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  padding: 10px 12px;
  outline: none;
  transition: border-color 0.25s ease;
}

.training-form input:focus,
.training-form textarea:focus {
  border-color: #b777ff;
  box-shadow: 0 0 0 3px rgba(183, 119, 255, 0.12);
}

.training-form input::placeholder,
.training-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.30);
}

.training-form textarea { resize: vertical; }

.training-form button {
  width: 100%;
  padding: 13px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, #b777ff, #ff72bd);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  margin-top: 4px;
}

.training-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(183, 119, 255, 0.40);
}

/* ── On-site training section ── */
.onsite-training {
  padding: 80px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.onsite-training h2,
.internship-section h2,
.inplant-section h2 {
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 900;
  color: rgba(224, 217, 245, 0.82);
  margin: 0 0 36px;
  letter-spacing: 0.03em;
}

/* ── Internship section ── */
.internship-section {
  padding: 80px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.internship-section > .service-container > p {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.86);
  margin: 0 0 36px;
  max-width: 860px;
}

.internship-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 60px;
  align-items: start;
}

.internship-grid .service-image-card img {
  height: 320px;
}

/* ── In-plant section ── */
.inplant-section {
  padding: 80px 0 100px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

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

.inplant-grid .service-image-card img {
  height: 300px;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .training-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .training-form-card {
    position: static;
  }
}

@media (max-width: 900px) {
  .training-intro { padding: 80px 0 60px; }

  .internship-grid,
  .inplant-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .internship-grid .service-image-card img,
  .inplant-grid .service-image-card img { height: 260px; }
}

@media (max-width: 600px) {
  .training-intro { padding: 60px 0 50px; }

  .onsite-training,
  .internship-section,
  .inplant-section { padding: 60px 0; }

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

  .training-form-card { padding: 24px 20px; }
}

/* ============================================================
   SOFTWARE SOLUTIONS PAGE
   ============================================================ */

.software-hero {
  padding: 130px 0 90px;
  background:
    radial-gradient(circle at top center, rgba(146, 84, 214, 0.22), transparent 35%),
    #070014;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.software-approach {
  padding: 90px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.software-essential {
  padding: 90px 0 110px;
}

.software-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 85px;
  align-items: center;
}

.software-content h1 {
  font-size: clamp(42px, 5vw, 62px);
  color: rgba(224, 217, 245, 0.82);
  margin: 0 0 20px;
  font-weight: 900;
  letter-spacing: 0.03em;
}

.software-content h2 {
  font-size: clamp(28px, 3.5vw, 46px);
  line-height: 1.12;
  color: rgba(224, 217, 245, 0.82);
  margin: 0 0 22px;
  font-weight: 900;
}

.software-content h2 + h2 {
  margin-top: 36px;
}

.software-content p {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.86);
  margin: 0 0 20px;
}

.software-content p:last-of-type { margin-bottom: 0; }

.service-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  padding: 13px 34px;
  border-radius: 999px;
  background: linear-gradient(90deg, #b777ff, #ff72bd, #ffa36b);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.service-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(255, 114, 189, 0.45);
}

.service-glass-image {
  padding: 36px;
  border-radius: 10px;
  background: rgba(35, 24, 55, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  overflow: hidden;
}

.service-glass-image img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 4px;
  display: block;
  transition: transform 0.6s ease;
}

.service-glass-image:hover img {
  transform: scale(1.04);
}

.service-check-list {
  list-style: none;
  padding: 0;
  margin: 30px 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
}

.service-check-list li {
  font-size: 15px;
  color: #fff;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.5;
}

.service-check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #b777ff;
  font-weight: 900;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .software-hero { padding: 80px 0 60px; }
  .software-approach,
  .software-essential { padding: 70px 0; }

  .software-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .service-glass-image { padding: 20px; }
  .service-glass-image img { height: 240px; }

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

@media (max-width: 600px) {
  .software-hero { padding: 60px 0 50px; }
  .software-approach,
  .software-essential { padding: 55px 0; }
}

/* ============================================================
   ACCOUNTING SERVICES PAGE
   ============================================================ */

.accounting-page {
  background: #070014;
  color: #fff;
}

/* ── Hero ── */
.accounting-hero {
  padding: 120px 0 80px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    radial-gradient(circle at top center, rgba(146, 84, 214, 0.20), transparent 35%),
    #070014;
  background-size: 120px 120px, 120px 120px, auto, auto;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.accounting-top-title {
  font-size: clamp(22px, 2.5vw, 36px);
  color: rgba(224, 217, 245, 0.72);
  margin: 0 0 60px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.accounting-hero-grid,
.accounting-two-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 85px;
  align-items: center;
}

.finance-box {
  border-left: 4px solid #9cecff;
  padding-left: 22px;
  margin-bottom: 34px;
}

.finance-box h2 {
  font-size: clamp(26px, 3.5vw, 42px);
  line-height: 1.12;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 900;
  margin: 0 0 10px;
}

.finance-box h3 {
  color: #ff72bd;
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 700;
  margin: 0;
}

.accounting-hero-content p {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
}

.accounting-hero-image {
  overflow: hidden;
  border-radius: 28px;
  border: 2px solid rgba(255, 255, 255, 0.18);
}

.accounting-hero-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.accounting-hero-image:hover img {
  transform: scale(1.05);
}

/* ── Brand statement ── */
.brand-statement {
  padding: 70px 0;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.brand-statement h2 {
  position: relative;
  display: inline-block;
  font-size: clamp(22px, 3vw, 38px);
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
}

.brand-statement h2 .underline-pink {
  position: relative;
  display: inline-block;
}

.brand-statement h2 .underline-pink::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 4px;
  background: #ff72bd;
  border-radius: 999px;
  transform: rotate(-1.5deg);
}

/* ── Trust section ── */
.accounting-trust {
  padding: 80px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-content .trust-logo {
  width: 160px;
  height: auto;
  display: block;
  margin-bottom: 28px;
  filter: brightness(1.1);
}

.trust-content > p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
  margin: 0 0 28px;
}

.trust-item {
  margin-bottom: 20px;
}

.trust-item h3 {
  font-size: 17px;
  font-weight: 700;
  color: #b777ff;
  margin: 0 0 4px;
}

.trust-item p {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.80);
  margin: 0;
}

/* ── Services list ── */
.accounting-services-list {
  padding: 80px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.accent-heading {
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 900;
  color: rgba(224, 217, 245, 0.82);
  border-left: 4px solid #9cecff;
  padding-left: 20px;
  margin: 0 0 16px;
  line-height: 1.2;
}

.services-main-heading {
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 900;
  color: rgba(224, 217, 245, 0.82);
  margin: 0 0 40px;
}

.accounting-service-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 60px;
}

.accounting-service-item h3 {
  font-size: 17px;
  font-weight: 700;
  color: #b777ff;
  margin: 0 0 8px;
}

.accounting-service-item p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.80);
  margin: 0;
}

/* ── Commitment ── */
.accounting-commitment {
  padding: 80px 0;
  text-align: center;
  background:
    radial-gradient(circle at center, rgba(183, 119, 255, 0.10) 0%, transparent 55%),
    #070014;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.accounting-commitment h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 900;
  color: rgba(224, 217, 245, 0.82);
  margin: 0 0 28px;
}

.accounting-commitment p {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.82);
  max-width: 780px;
  margin: 0 auto;
}

/* ── CTA section ── */
.accounting-cta {
  padding: 80px 0 100px;
}

.get-started-content h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 900;
  color: rgba(224, 217, 245, 0.82);
  margin: 0 0 20px;
}

.get-started-content h3 {
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 700;
  color: rgba(224, 217, 245, 0.72);
  margin: 0 0 24px;
}

.get-started-content p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
  margin: 0 0 14px;
}

.get-started-content p strong {
  color: #b777ff;
  font-weight: 700;
}

.cta-accounting-card {
  padding: 36px;
  border-radius: 14px;
  background: rgba(35, 24, 55, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.cta-accounting-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

.cta-accounting-card h2 {
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 900;
  color: #ff72bd;
  margin: 0;
}

.cta-accounting-card p {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .accounting-hero { padding: 80px 0 60px; }
  .accounting-top-title { margin-bottom: 40px; }

  .accounting-hero-grid,
  .accounting-two-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .accounting-hero-image img { height: 280px; }

  .accounting-service-items {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .cta-accounting-card img { height: 180px; }
}

@media (max-width: 600px) {
  .accounting-hero { padding: 60px 0 50px; }

  .accounting-trust,
  .accounting-services-list,
  .accounting-commitment,
  .accounting-cta { padding: 55px 0; }

  .brand-statement { padding: 50px 0; }
}

/* ============================================================
   SAFETY MANAGEMENT PAGE
   ============================================================ */

.safety-page {
  background: #070014;
  color: #fff;
}

/* ── Hero ── */
.safety-hero {
  padding: 130px 0 90px;
  background:
    radial-gradient(circle at top center, rgba(146, 84, 214, 0.22), transparent 35%),
    #070014;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.safety-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 85px;
  align-items: center;
}

.safety-content h1 {
  font-size: clamp(38px, 4vw, 58px);
  line-height: 1.12;
  color: rgba(224, 217, 245, 0.82);
  margin: 0 0 28px;
  font-weight: 900;
  letter-spacing: 0.03em;
}

.safety-content p {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
  margin: 0 0 28px;
}

/* Single-column check list for hero */
.safety-check-list {
  grid-template-columns: 1fr !important;
  margin-top: 8px !important;
}

/* ── Section divider ── */
.safety-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  border: none;
  margin: 0;
}

/* ── Content sections ── */
.safety-section {
  padding: 90px 0;
}

.safety-section--last {
  padding-bottom: 110px;
}

.safety-section h2 {
  font-size: clamp(28px, 3.5vw, 46px);
  line-height: 1.12;
  color: rgba(224, 217, 245, 0.82);
  margin: 0 0 28px;
  font-weight: 900;
}

.safety-section p {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
  margin: 0 0 18px;
}

.safety-section p:last-of-type {
  margin-bottom: 0;
}

/* ── Ordered list ── */
.safety-ordered-list {
  margin: 28px 0 0;
  padding-left: 1.4rem;
  display: grid;
  gap: 12px;
}

.safety-ordered-list li {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
  padding-left: 0.4rem;
}

.safety-ordered-list li::marker {
  color: #b777ff;
  font-weight: 700;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .safety-hero {
    padding: 80px 0 60px;
  }

  .safety-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .safety-section {
    padding: 65px 0;
  }

  .safety-section--last {
    padding-bottom: 80px;
  }

  .check-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

@media (max-width: 600px) {
  .safety-hero {
    padding: 60px 0 50px;
  }

  .safety-section {
    padding: 50px 0;
  }

  .safety-content h1 {
    font-size: 34px;
  }
}

/* ============================================================
   INVENTORY MANAGEMENT PAGE
   ============================================================ */

.inventory-page {
  background: #070014;
  color: #fff;
}

/* ── Hero ── */
.inventory-hero {
  padding: 130px 0 90px;
  background:
    radial-gradient(circle at top center, rgba(146, 84, 214, 0.22), transparent 35%),
    #070014;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom-left-radius: 90px;
  border-bottom-right-radius: 90px;
}

.inventory-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}

.inventory-hero-content h1 {
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.08;
  color: rgba(224, 217, 245, 0.82);
  margin: 0 0 30px;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.inventory-hero-content p {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.86);
  max-width: 520px;
  margin: 0;
}

.inventory-hero-image {
  max-width: 360px;
  justify-self: center;
}

/* ── Content blocks ── */
.inventory-content {
  padding: 100px 0 120px;
}

.inventory-block {
  padding-bottom: 62px;
  margin-bottom: 62px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.inventory-block:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.inventory-block h2 {
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.12;
  color: rgba(224, 217, 245, 0.82);
  margin: 0 0 22px;
  font-weight: 900;
}

.inventory-block p {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
  margin: 0;
  max-width: 860px;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .inventory-hero {
    padding: 80px 0 60px;
    border-bottom-left-radius: 45px;
    border-bottom-right-radius: 45px;
  }

  .inventory-hero-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .inventory-hero-image {
    max-width: 100%;
  }

  .inventory-content {
    padding: 70px 0 90px;
  }

  .inventory-block {
    padding-bottom: 48px;
    margin-bottom: 48px;
  }
}

@media (max-width: 600px) {
  .inventory-hero {
    padding: 60px 0 50px;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
  }

  .inventory-content {
    padding: 55px 0 70px;
  }

  .inventory-block h2 {
    font-size: 28px;
  }
}

/* ============================================================
   QUALITY MANAGEMENT PAGE
   ============================================================ */

.quality-page {
  background: #070014;
  color: #fff;
}

/* ── Hero ── */
.quality-hero {
  padding: 130px 0 90px;
  background:
    radial-gradient(circle at top center, rgba(146, 84, 214, 0.22), transparent 35%),
    #070014;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom-left-radius: 90px;
  border-bottom-right-radius: 90px;
}

.quality-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}

.quality-hero-content h1 {
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.08;
  color: rgba(224, 217, 245, 0.82);
  margin: 0 0 30px;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.quality-hero-content p {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.86);
  max-width: 520px;
  margin: 0;
}

.quality-hero-image {
  max-width: 340px;
  justify-self: center;
}

/* ── Content blocks ── */
.quality-content {
  padding: 100px 0 120px;
}

.quality-block {
  padding-bottom: 58px;
  margin-bottom: 58px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.quality-block:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.quality-block h2 {
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.12;
  color: rgba(224, 217, 245, 0.82);
  margin: 0 0 22px;
  font-weight: 900;
}

.quality-block p {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
  margin: 0;
  max-width: 860px;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .quality-hero {
    padding: 80px 0 60px;
    border-bottom-left-radius: 45px;
    border-bottom-right-radius: 45px;
  }

  .quality-hero-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .quality-hero-image {
    max-width: 100%;
  }

  .quality-content {
    padding: 70px 0 90px;
  }

  .quality-block {
    padding-bottom: 48px;
    margin-bottom: 48px;
  }
}

@media (max-width: 600px) {
  .quality-hero {
    padding: 60px 0 50px;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
  }

  .quality-content {
    padding: 55px 0 70px;
  }

  .quality-block h2 {
    font-size: 28px;
  }
}

/* ============================================================
   SUSTAINABILITY MANAGEMENT PAGE
   ============================================================ */

.sustainability-page {
  background: #070014;
  color: #fff;
}

/* ── Hero ── */
.sustainability-hero {
  padding: 130px 0 90px;
  background:
    radial-gradient(circle at top center, rgba(146, 84, 214, 0.22), transparent 35%),
    #070014;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom-left-radius: 90px;
  border-bottom-right-radius: 90px;
}

.sustainability-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}

.sustainability-hero-content h1 {
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.08;
  color: rgba(224, 217, 245, 0.82);
  margin: 0 0 30px;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.sustainability-hero-content p {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.86);
  max-width: 520px;
  margin: 0;
}

.sustainability-hero-image {
  max-width: 340px;
  justify-self: center;
}

/* ── Content blocks ── */
.sustainability-content {
  padding: 100px 0 120px;
}

.sustainability-block {
  padding-bottom: 58px;
  margin-bottom: 58px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.sustainability-block:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.sustainability-block h2 {
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.12;
  color: rgba(224, 217, 245, 0.82);
  margin: 0 0 22px;
  font-weight: 900;
}

.sustainability-block p {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
  margin: 0;
  max-width: 860px;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .sustainability-hero {
    padding: 80px 0 60px;
    border-bottom-left-radius: 45px;
    border-bottom-right-radius: 45px;
  }

  .sustainability-hero-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .sustainability-hero-image {
    max-width: 100%;
  }

  .sustainability-content {
    padding: 70px 0 90px;
  }

  .sustainability-block {
    padding-bottom: 48px;
    margin-bottom: 48px;
  }
}

@media (max-width: 600px) {
  .sustainability-hero {
    padding: 60px 0 50px;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
  }

  .sustainability-content {
    padding: 55px 0 70px;
  }

  .sustainability-block h2 {
    font-size: 28px;
  }
}

/* ============================================================
   REAL ESTATE PAGE
   ============================================================ */

.re-page {
  background: #070014;
  color: #fff;
}

/* ── Hero ── */
.re-hero {
  padding: 130px 0 90px;
  background:
    radial-gradient(circle at top center, rgba(146, 84, 214, 0.22), transparent 35%),
    #070014;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.re-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.re-grid--reverse {
  direction: rtl;
}

.re-grid--reverse > * {
  direction: ltr;
}

.re-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #b777ff;
  margin-bottom: 18px;
}

.re-content h1 {
  font-size: clamp(38px, 4.5vw, 60px);
  line-height: 1.1;
  color: rgba(224, 217, 245, 0.82);
  font-weight: 900;
  margin: 0 0 16px;
  letter-spacing: 0.02em;
}

.re-tagline {
  font-size: clamp(14px, 1.5vw, 17px);
  font-weight: 600;
  color: #ff72bd;
  margin: 0 0 14px;
  font-style: italic;
  letter-spacing: 0.01em;
}

.re-subtitle {
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.72);
  margin: 0 0 32px;
}

/* ── Shared image card ── */
.re-image-card {
  width: 100%;
  min-height: 360px;
  border-radius: 24px;
  overflow: hidden;
  background: #140020;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 60px rgba(168, 85, 247, 0.18);
}

.re-image-card img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  display: block;
  border-radius: 24px;
  transition: transform 0.5s ease;
}

.re-image-card:hover img {
  transform: scale(1.04);
}

/* ── Shared text block ── */
.re-text h2 {
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 900;
  color: rgba(224, 217, 245, 0.82);
  margin: 0 0 20px;
  line-height: 1.15;
}

.re-text p {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.86);
  margin: 0 0 18px;
}

.re-text p:last-of-type { margin-bottom: 0; }

/* ── Inline bullet list inside text blocks ── */
.re-inline-list {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
}

.re-inline-list li {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.82);
  padding-left: 1.4rem;
  position: relative;
  line-height: 1.55;
}

.re-inline-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, #b777ff, #ff72bd);
}

/* ── Section intro text ── */
.re-section-intro {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.78);
  max-width: 820px;
  margin: -28px 0 48px;
}

/* ── BIM section ── */
.re-bim {
  padding: 90px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* ── VA / services cards section ── */
.re-va {
  padding: 90px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.re-section-title {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 900;
  color: rgba(224, 217, 245, 0.82);
  margin: 0 0 18px;
  line-height: 1.15;
}

.re-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.re-card {
  padding: 26px 22px;
  border-radius: 16px;
  background: rgba(35, 24, 55, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.re-card:hover {
  transform: translateY(-6px);
  border-color: rgba(183, 119, 255, 0.35);
  box-shadow: 0 18px 50px rgba(100, 40, 200, 0.25);
}

/* Clickable card variant */
a.re-card--link {
  display: block;
  text-decoration: none;
  cursor: pointer;
  color: inherit;
}

a.re-card--link h3 { color: #b777ff; }
a.re-card--link p  { color: rgba(255, 255, 255, 0.70); }

.re-card-icon {
  font-size: 26px;
  margin-bottom: 12px;
  line-height: 1;
}

.re-card h3 {
  font-size: 14px;
  font-weight: 700;
  color: #b777ff;
  margin: 0 0 8px;
  line-height: 1.3;
}

.re-card p {
  font-size: 13px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.70);
  margin: 0;
}

/* ============================================================
   PREMIUM SERVICE CARDS — Real Estate Icon Cards
   ============================================================ */

.re-cards-grid .premium-service-card {
  position: relative;
  overflow: hidden;
  padding: 26px 22px;
  border-radius: 20px;
  background: rgba(22, 13, 40, 0.80);
  border: 1px solid rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: transform 0.45s ease, box-shadow 0.45s ease, border-color 0.45s ease;
  text-decoration: none;
  color: inherit;
  display: block;
  cursor: pointer;
}

.re-cards-grid .premium-service-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, #ffcc33, #ff6fae, #b45cff, #00d4ff);
  border-radius: 22px;
  opacity: 0;
  transition: opacity 0.45s ease;
  z-index: 0;
}

.re-cards-grid .premium-service-card::after {
  content: "";
  position: absolute;
  inset: 1px;
  background: #160d28;
  border-radius: 19px;
  z-index: 1;
}

.re-cards-grid .premium-service-card:hover::before {
  opacity: 1;
}

.re-cards-grid .premium-service-card:hover {
  transform: translateY(-14px) scale(1.03);
  box-shadow: 0 25px 70px rgba(180, 92, 255, 0.35);
}

.re-cards-grid .premium-service-card > * {
  position: relative;
  z-index: 2;
}

.service-icon-wrap {
  width: 68px;
  height: 68px;
  border-radius: 18px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255, 204, 51, 0.18), rgba(180, 92, 255, 0.20));
  box-shadow: 0 0 25px rgba(180, 92, 255, 0.20);
  flex-shrink: 0;
}

.service-icon-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  transition: transform 0.45s ease;
}

.re-cards-grid .premium-service-card:hover .service-icon-img {
  transform: rotateY(360deg) scale(1.15);
}

.re-cards-grid .premium-service-card h3 {
  font-size: 14px;
  font-weight: 700;
  color: #c084fc;
  margin: 0 0 8px;
  line-height: 1.3;
}

.re-cards-grid .premium-service-card p {
  font-size: 13px;
  line-height: 1.65;
  color: #d8d1e8;
  margin: 0;
}

/* ── Valuation section ── */
.re-valuation {
  padding: 90px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* ── Management section ── */
.re-management {
  padding: 90px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* ── Standards section ── */
.re-standards {
  padding: 90px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 70% 40%, rgba(183, 119, 255, 0.07) 0%, transparent 55%),
    #070014;
}

.re-standards-inner {
  text-align: center;
}

.re-standards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 0;
}

.re-standard-card {
  padding: 28px 20px;
  border-radius: 16px;
  background: rgba(35, 24, 55, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  text-align: left;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.re-standard-card:hover {
  transform: translateY(-5px);
  border-color: rgba(183, 119, 255, 0.30);
}

.re-standard-card h3 {
  font-size: 16px;
  font-weight: 800;
  color: #ff72bd;
  margin: 0 0 10px;
}

.re-standard-card p {
  font-size: 13px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
}

/* ── Why Choose section ── */
.re-why {
  padding: 90px 0;
  background:
    radial-gradient(circle at 30% 50%, rgba(183, 119, 255, 0.08) 0%, transparent 55%),
    #070014;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.re-why-inner {
  max-width: 800px;
  margin: 0 auto;
}

.re-why-inner h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 900;
  color: rgba(224, 217, 245, 0.82);
  margin: 0 0 44px;
  text-align: center;
}

.re-why-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 26px;
}

.re-why-list li {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.re-why-dot {
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #b777ff, #ff72bd);
  margin-top: 6px;
}

.re-why-list strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: rgba(224, 217, 245, 0.90);
  margin-bottom: 4px;
}

.re-why-list p {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
}

/* ── CTA section ── */
.re-cta {
  padding: 100px 0 120px;
  text-align: center;
  background:
    radial-gradient(circle at center, rgba(146, 84, 214, 0.14) 0%, transparent 55%),
    #070014;
}

.re-cta-inner h2 {
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 900;
  color: rgba(224, 217, 245, 0.82);
  margin: 0 0 18px;
}

.re-cta-inner p {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
  margin: 0 0 36px;
}

/* ── Responsive ── */
@media (max-width: 1100px) {
  .re-cards-grid,
  .re-standards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .re-hero { padding: 80px 0 60px; }

  .re-bim,
  .re-va,
  .re-valuation,
  .re-management,
  .re-standards,
  .re-why { padding: 65px 0; }

  .re-cta { padding: 70px 0 90px; }

  .re-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    direction: ltr;
  }

  .re-image-card { min-height: 260px; }
  .re-image-card img { min-height: 260px; }

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

@media (max-width: 600px) {
  .re-hero { padding: 60px 0 50px; }

  .re-bim,
  .re-va,
  .re-valuation,
  .re-management,
  .re-standards,
  .re-why { padding: 50px 0; }

  .re-cta { padding: 55px 0 70px; }

  .re-cards-grid,
  .re-standards-grid { grid-template-columns: 1fr; }

  .re-content h1 { font-size: 32px; }
  .re-section-title { font-size: 24px; }
}

/* ============================================================
   REAL ESTATE BACK OFFICE & CONSTRUCTION DOCUMENTATION
   Missing helper classes for sm-* pages
   ============================================================ */

/* Banner inner wrapper */
.sm-banner__inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  position: relative;
  z-index: 2;
  padding-top: 40px;
}

/* Breadcrumb */
.sm-crumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .78rem;
  color: rgba(220,242,205,.55);
  margin: 0 0 24px;
  flex-wrap: wrap;
}
.sm-crumb a {
  color: rgba(220,242,205,.55);
  text-decoration: none;
  transition: color .25s;
}
.sm-crumb a:hover { color: var(--re-lime); }
.sm-crumb i { font-size: .6rem; color: rgba(220,242,205,.35); }

/* Ambient orbs in banner */
.sm-banner__orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
  z-index: 0;
}
.sm-banner__orb--1 {
  width: 420px; height: 420px;
  top: -120px; right: -80px;
  background: rgba(180,255,60,.07);
}
.sm-banner__orb--2 {
  width: 300px; height: 300px;
  bottom: -60px; left: 10%;
  background: rgba(102,217,135,.05);
}

/* Fade-up / left / right for sm-* pages */
.sm-fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .72s cubic-bezier(.22,1,.36,1), transform .72s cubic-bezier(.22,1,.36,1);
}
.sm-fade-left {
  opacity: 0;
  transform: translateX(-36px);
  transition: opacity .72s cubic-bezier(.22,1,.36,1), transform .72s cubic-bezier(.22,1,.36,1);
}
.sm-fade-right {
  opacity: 0;
  transform: translateX(36px);
  transition: opacity .72s cubic-bezier(.22,1,.36,1), transform .72s cubic-bezier(.22,1,.36,1);
}
.sm-fade-up.sm-in,
.sm-fade-left.sm-in,
.sm-fade-right.sm-in {
  opacity: 1 !important;
  transform: translate3d(0,0,0) !important;
}

/* CSS fallback — show after 1.5s if observer never fires */
@keyframes smFadeFallback { to { opacity: 1; transform: translate3d(0,0,0); } }
.sm-fade-up, .sm-fade-left, .sm-fade-right {
  animation: smFadeFallback 0.01s 1.5s forwards;
}

/* Alternate section background */
.sm-section--alt {
  background:
    radial-gradient(circle at 80% 30%, rgba(180,255,60,.05), transparent 40%),
    rgba(5,14,4,.55) !important;
}

/* Divider */
.im-divider {
  height: 1px;
  background: rgba(180,255,60,.08);
  border: none;
  margin: 0;
}

/* Section head for rebo cards */
.rebo-section-head {
  margin-bottom: 40px;
}
.rebo-section-head .sm-eyebrow {
  display: block;
  margin-bottom: 10px;
}

/* pv-tcard number badge */
.pv-tcard-num {
  font-size: 2.2rem;
  font-weight: 900;
  color: rgba(180,255,60,.18);
  line-height: 1;
  margin-bottom: 10px;
}

/* pv-why-glass overlay on image */
.pv-why-glass {
  position: absolute;
  bottom: 18px;
  left: 18px;
  right: 18px;
  padding: 14px 18px;
  border-radius: 12px;
  background: rgba(5,18,6,.88);
  border: 1px solid rgba(180,255,60,.18);
  backdrop-filter: blur(10px);
  display: grid;
  gap: 8px;
}
.pv-why-glass-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .84rem;
  color: rgba(220,242,205,.82);
}
.pv-why-glass-row i { color: var(--re-lime); font-size: .8rem; }

/* pv-stat items */
.pv-stat-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.pv-stat-num {
  font-size: 1.8rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}
.pv-stat-suf {
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--re-lime);
}
.pv-stat-lbl {
  font-size: .72rem;
  color: rgba(220,242,205,.55);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-top: 4px;
}
.pv-stat-sep {
  width: 1px;
  height: 40px;
  background: rgba(180,255,60,.18);
  align-self: center;
}

/* pv-btn-ghost */
.pv-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  border: 1px solid rgba(180,255,60,.28);
  border-radius: 999px;
  background: transparent;
  color: var(--re-lime) !important;
  font-size: .82rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  transition: background .28s ease, border-color .28s ease;
}
.pv-btn-ghost:hover {
  background: rgba(180,255,60,.08);
  border-color: rgba(180,255,60,.5);
}

/* pv-section-head */
.pv-section-head {
  margin-bottom: 40px;
}

/* pv-why-list */
.pv-why-list {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}
.pv-why-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px 20px;
  border-radius: 14px;
  border: 1px solid rgba(180,255,60,.10);
  background: linear-gradient(180deg, rgba(180,255,60,.04), rgba(180,255,60,.01));
  transition: border-color .3s ease;
}
.pv-why-item:hover { border-color: rgba(180,255,60,.30); }
.pv-why-item strong {
  display: block;
  font-size: .92rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.pv-why-item p {
  font-size: .84rem;
  color: var(--re-muted);
  margin: 0;
  line-height: 1.6;
}

/* pv-img-badge--br */
.pv-img-badge--br {
  right: 18px;
  bottom: 18px;
  left: auto;
  top: auto;
}

/* Responsive additions */
@media (max-width: 900px) {
  .sm-fade-up, .sm-fade-left, .sm-fade-right {
    animation-delay: 0.8s;
  }
}
@media (prefers-reduced-motion: reduce) {
  .sm-fade-up, .sm-fade-left, .sm-fade-right {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    transition: none !important;
  }
}
