/* ==========================================================================
   HomeTimeline — Prestigious, White & Airy Architectural Design System
   Modern, spacious, serene, trustworthy and accessible.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Plus+Jakarta+Sans:wght@500;600;700;800&display=swap');

/* ---- Design Tokens ---- */
:root {
  /* Brand Palette (Deep Navy, Royal Blue & Blueprint Cyan) */
  --navy-950: #000f2c;
  --navy-900: #001a47;
  --navy-850: #0a255c;
  --navy-800: #0f327a;
  --navy-700: #1a4499;

  --brand-blue: #0055ff;
  --brand-blue-hover: #0044cc;
  --brand-blue-light: #e8f0fe;
  --brand-gradient: linear-gradient(135deg, #0055ff 0%, #0077ff 50%, #00a8ff 100%);
  --brand-gradient-subtle: linear-gradient(135deg, rgba(0, 85, 255, 0.08) 0%, rgba(0, 168, 255, 0.05) 100%);

  --cyan-500: #00a8ff;
  --cyan-100: #e0f2fe;
  --cyan-50: #f0f9ff;

  /* Neutrals (Luminous, White & Airy Canvas) */
  --bg-white: #ffffff;
  --bg-pearl: #f8fafc;
  --bg-subtle: #f1f5fa;
  --bg-elevated: #ffffff;

  --border-light: #e2e8f0;
  --border-brand: rgba(0, 85, 255, 0.12);
  --border-focus: rgba(0, 85, 255, 0.35);

  --text-main: #001a47;
  --text-body: #334155;
  --text-muted: #64748b;
  --text-light: #94a3b8;

  /* Status */
  --emerald-500: #10b981;
  --emerald-50: #ecfdf5;
  --emerald-border: #a7f3d0;
  
  --amber-500: #f59e0b;
  --amber-50: #fffbeb;

  --rose-500: #f43f5e;
  --rose-50: #fff1f2;
  --rose-border: #fecdd3;

  /* Typography */
  --font-heading: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;

  /* Soft Ambient Shadows */
  --shadow-xs: 0 1px 3px rgba(0, 30, 80, 0.04);
  --shadow-sm: 0 4px 12px -2px rgba(0, 30, 80, 0.05);
  --shadow-md: 0 10px 25px -4px rgba(0, 30, 80, 0.06), 0 2px 8px -2px rgba(0, 30, 80, 0.03);
  --shadow-lg: 0 18px 40px -6px rgba(0, 30, 80, 0.08), 0 4px 14px -2px rgba(0, 30, 80, 0.04);
  --shadow-xl: 0 25px 60px -12px rgba(0, 30, 80, 0.12), 0 8px 24px -4px rgba(0, 30, 80, 0.05);
  --shadow-glow: 0 8px 24px rgba(0, 85, 255, 0.22);

  /* Radii */
  --radius-sm: 0.375rem;
  --radius-md: 0.625rem;
  --radius-lg: 0.875rem;
  --radius-xl: 1.25rem;
  --radius-2xl: 1.5rem;
  --radius-full: 9999px;

  /* Transitions */
  --ease-spring: cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: 0.15s ease;
  --transition-smooth: 0.25s var(--ease-spring);
}

/* ---- Reset & Base ---- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  color: var(--text-body);
  background: var(--bg-white);
  line-height: 1.65;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-main);
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: -0.025em;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all var(--transition-fast);
}

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

input, textarea, select {
  font: inherit;
  color: inherit;
}

/* ---- Layout Containers ---- */
.container {
  width: 100%;
  max-width: 78rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container-narrow {
  width: 100%;
  max-width: 44rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container-wide {
  width: 100%;
  max-width: 88rem;
  margin: 0 auto;
  padding: 0 2rem;
}

@media (min-width: 768px) {
  .container { padding: 0 2.5rem; }
  .container-narrow { padding: 0 2rem; }
}

/* ==========================================================================
   SITE HEADER & NAVIGATION (FROSTED WHITE GLASS)
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 85, 255, 0.08);
  box-shadow: 0 4px 20px -2px rgba(0, 30, 80, 0.03);
  transition: all var(--transition-smooth);
}

.site-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4.75rem;
  gap: 1.5rem;
}

/* Brand Logo Lockup */
.brand-mark {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  text-decoration: none;
}

.brand-logo-img {
  height: 2.75rem;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0, 30, 80, 0.05));
}

.brand-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2.75rem;
  width: 2.75rem;
  border-radius: var(--radius-md);
  background: #ffffff;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-brand);
  padding: 3px;
}

.brand-icon-wrap img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}

.brand-wordmark {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
  display: flex;
  align-items: center;
}

.brand-wordmark .text-navy {
  color: var(--navy-900);
}

.brand-wordmark .text-brand {
  color: var(--brand-blue);
}

/* Header Nav Menu */
.site-nav {
  display: none;
  align-items: center;
  gap: 0.35rem;
}

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

.site-nav-link {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-body);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
}

.site-nav-link:hover {
  color: var(--brand-blue);
  background: var(--brand-blue-light);
}

/* Header Actions */
.site-header-actions {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

/* Language Switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  background: var(--bg-subtle);
  padding: 3px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-light);
}

.lang-pill {
  padding: 0.25rem 0.6rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  border-radius: var(--radius-full);
  text-transform: uppercase;
  transition: all var(--transition-fast);
}

.lang-pill:hover {
  color: var(--text-main);
}

.lang-pill.active {
  background: #ffffff;
  color: var(--brand-blue);
  box-shadow: 0 1px 3px rgba(0, 30, 80, 0.1);
}

/* Mobile Hamburger */
.mobile-nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  background: #ffffff;
  color: var(--text-main);
  cursor: pointer;
  box-shadow: var(--shadow-xs);
}

@media (min-width: 992px) {
  .mobile-nav-toggle { display: none; }
}

/* Mobile Nav Drawer */
.mobile-nav-drawer {
  display: none;
  background: #ffffff;
  border-bottom: 1px solid var(--border-light);
  padding: 1.25rem 1.5rem 1.75rem;
  box-shadow: var(--shadow-md);
}

.mobile-nav-drawer.show {
  display: block;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.mobile-nav-item {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-main);
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius-lg);
  background: var(--bg-pearl);
}

.mobile-nav-item:hover {
  background: var(--brand-blue-light);
  color: var(--brand-blue);
}

/* ==========================================================================
   BUTTONS & CTAS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 1.35rem;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1;
  border-radius: var(--radius-full);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition-smooth);
  text-decoration: none;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: var(--brand-gradient);
  color: #ffffff !important;
  box-shadow: 0 4px 14px rgba(0, 85, 255, 0.28);
}

.btn-primary:hover {
  box-shadow: 0 6px 22px rgba(0, 85, 255, 0.42);
  color: #ffffff !important;
}

.btn-secondary {
  background: #ffffff;
  color: var(--text-main);
  border: 1.5px solid var(--border-light);
  box-shadow: var(--shadow-xs);
}

.btn-secondary:hover {
  background: var(--bg-pearl);
  border-color: rgba(0, 85, 255, 0.3);
  color: var(--brand-blue);
  box-shadow: var(--shadow-sm);
}

.btn-ghost-blue {
  background: var(--brand-blue-light);
  color: var(--brand-blue) !important;
  border: 1px solid rgba(0, 85, 255, 0.15);
}

.btn-ghost-blue:hover {
  background: rgba(0, 85, 255, 0.14);
  color: var(--navy-900) !important;
}

.btn-lg {
  padding: 0.95rem 2rem;
  font-size: 1rem;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.825rem;
}

.btn-block {
  width: 100%;
}

.btn-danger {
  background: var(--rose-500);
  color: #ffffff !important;
  box-shadow: 0 4px 12px rgba(244, 63, 94, 0.25);
}

.btn-danger:hover {
  background: #e11d48;
}

/* ==========================================================================
   WHITE & AIRY HERO SECTION
   ========================================================================== */
.hero-white {
  position: relative;
  background: radial-gradient(circle at 50% 0%, rgba(0, 85, 255, 0.05) 0%, rgba(0, 168, 255, 0.02) 45%, #ffffff 80%);
  padding: 4.5rem 0 5.5rem;
  overflow: hidden;
  border-bottom: 1px solid rgba(0, 85, 255, 0.06);
}

/* Blueprint watermark grid */
.hero-white-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 85, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 85, 255, 0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
  pointer-events: none;
}

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

@media (min-width: 992px) {
  .hero-grid-layout {
    grid-template-columns: 1.15fr 1fr;
    gap: 4rem;
  }
}

.hero-text-side {
  position: relative;
  z-index: 2;
}

/* Eyebrow Pill */
.hero-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--brand-blue-light);
  border: 1px solid rgba(0, 85, 255, 0.2);
  padding: 0.4rem 1.1rem;
  border-radius: var(--radius-full);
  font-size: 0.825rem;
  font-weight: 700;
  color: var(--brand-blue);
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 85, 255, 0.08);
}

.hero-badge-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: var(--radius-full);
  background: var(--brand-blue);
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}

.hero-main-title {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.15;
  margin-bottom: 1.35rem;
  color: var(--navy-900);
}

@media (min-width: 768px) {
  .hero-main-title {
    font-size: 3.35rem;
  }
}

.hero-gradient-brand {
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: 1.15rem;
  line-height: 1.75;
  color: var(--text-body);
  margin-bottom: 2.25rem;
  max-width: 36rem;
}

.hero-actions-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.hero-trust-chips {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-light);
}

.trust-chip-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}

.trust-chip-item svg {
  color: var(--emerald-500);
}

/* Hero Visual Showcase */
.hero-visual-side {
  position: relative;
  z-index: 2;
}

.hero-emblem-card {
  position: relative;
  background: #ffffff;
  border-radius: var(--radius-2xl);
  padding: 2.25rem;
  box-shadow: var(--shadow-xl);
  border: 1.5px solid var(--border-brand);
  transition: all var(--transition-smooth);
}

.hero-emblem-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 70px -15px rgba(0, 50, 140, 0.16);
}

.hero-emblem-img {
  width: 100%;
  max-height: 18rem;
  object-fit: contain;
  margin: 0 auto 1.5rem;
  filter: drop-shadow(0 8px 24px rgba(0, 85, 255, 0.1));
}

.hero-passport-widget {
  background: var(--bg-pearl);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 1.25rem;
}

.passport-widget-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.875rem;
}

.passport-widget-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy-900);
}

.passport-verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: var(--emerald-50);
  border: 1px solid var(--emerald-border);
  color: var(--emerald-500);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
}

.passport-widget-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem;
}

.widget-stat-box {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 0.6rem 0.75rem;
}

.widget-stat-label {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.widget-stat-val {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--navy-900);
}

/* ==========================================================================
   METRICS & TRUST BAR (WHITE AIRY CARDS)
   ========================================================================== */
.stats-section-white {
  background: #ffffff;
  border-bottom: 1px solid var(--border-light);
  padding: 3.5rem 0;
}

.stats-grid-4 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

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

.stat-card-white {
  background: var(--bg-pearl);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 1.75rem 1.5rem;
  text-align: center;
  transition: all var(--transition-smooth);
}

.stat-card-white:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(0, 85, 255, 0.25);
  background: #ffffff;
}

.stat-num-brand {
  font-family: var(--font-heading);
  font-size: 2.35rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--brand-blue);
  line-height: 1.1;
  margin-bottom: 0.35rem;
}

.stat-title-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-body);
}

/* ==========================================================================
   SECTIONS (WHITE, AIRY & SERENE)
   ========================================================================== */
.section {
  padding: 5.5rem 0;
}

.section-pearl {
  background: var(--bg-pearl);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.section-header-center {
  text-align: center;
  max-width: 44rem;
  margin: 0 auto 3.5rem;
}

.section-eyebrow-pill {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brand-blue);
  margin-bottom: 0.75rem;
  display: inline-block;
}

.section-headline {
  font-size: 2.25rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--navy-900);
  margin-bottom: 1rem;
}

.section-lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ==========================================================================
   3-STEP PROCESS CARDS ("Nasıl Çalışır?")
   ========================================================================== */
.process-grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
}

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

.process-card {
  position: relative;
  background: #ffffff;
  border-radius: var(--radius-2xl);
  padding: 2.5rem 2rem;
  border: 1.5px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.process-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(0, 85, 255, 0.3);
}

.process-step-indicator {
  position: absolute;
  top: 1.5rem;
  right: 1.75rem;
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--brand-blue-light);
  line-height: 1;
}

.process-icon-box {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: var(--radius-xl);
  background: var(--brand-blue-light);
  color: var(--brand-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(0, 85, 255, 0.15);
}

.process-icon-box svg {
  width: 1.75rem;
  height: 1.75rem;
}

.process-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--navy-900);
}

.process-card-desc {
  font-size: 0.925rem;
  color: var(--text-body);
  line-height: 1.65;
}

/* ==========================================================================
   FEATURE MATRIX CARDS ("Öne Çıkan Özellikler")
   ========================================================================== */
.features-grid-6 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .features-grid-6 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .features-grid-6 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card-white {
  background: #ffffff;
  border-radius: var(--radius-2xl);
  padding: 2.25rem 2rem;
  border: 1.5px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-smooth);
}

.feature-card-white:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0, 85, 255, 0.3);
}

.feature-icon-bubble {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  background: var(--brand-blue-light);
  color: var(--brand-blue);
  border: 1px solid rgba(0, 85, 255, 0.15);
}

.feature-icon-bubble svg {
  width: 1.6rem;
  height: 1.6rem;
}

.feature-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: var(--navy-900);
}

.feature-card-desc {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.65;
}

/* ==========================================================================
   AUDIENCE SECTION ("Kimler İçin?")
   ========================================================================== */
.audience-grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
}

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

.audience-card-white {
  background: #ffffff;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-2xl);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-smooth);
}

.audience-card-white:hover {
  border-color: rgba(0, 85, 255, 0.35);
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.audience-tag-pill {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brand-blue);
  background: var(--brand-blue-light);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.25rem;
}

.audience-card-title {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--navy-900);
}

.audience-card-desc {
  font-size: 0.925rem;
  color: var(--text-body);
  line-height: 1.65;
  margin-bottom: 1.75rem;
}

.audience-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.audience-check-item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.875rem;
  color: var(--text-body);
}

.audience-check-item svg {
  width: 1.15rem;
  height: 1.15rem;
  color: var(--emerald-500);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ==========================================================================
   CALL TO ACTION BANNER (PRESTIGIOUS LIGHT GRADIENT)
   ========================================================================== */
.cta-banner-pearl {
  background: linear-gradient(135deg, #001a47 0%, #0a255c 60%, #0055ff 100%);
  border-radius: var(--radius-2xl);
  padding: 4.5rem 2rem;
  text-align: center;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  margin: 3.5rem 0;
}

.cta-banner-pearl::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 35rem;
  height: 35rem;
  background: radial-gradient(circle, rgba(0, 168, 255, 0.25) 0%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}

.cta-banner-title {
  font-size: 2.35rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.cta-banner-sub {
  font-size: 1.1rem;
  color: #e2e8f0;
  max-width: 38rem;
  margin: 0 auto 2.25rem;
  position: relative;
  z-index: 2;
}

.cta-banner-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

/* ==========================================================================
   PRESTIGIOUS LIGHT FOOTER
   ========================================================================== */
.site-footer {
  background: #ffffff;
  color: var(--text-muted);
  border-top: 1px solid var(--border-light);
  padding: 4.5rem 0 2.5rem;
  margin-top: auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3.5rem;
}

@media (min-width: 768px) {
  .footer-top {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.65;
  margin-top: 1rem;
  max-width: 24rem;
  color: var(--text-body);
}

.footer-col-title {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy-900);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1.25rem;
}

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

.footer-links a {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--brand-blue);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid var(--border-light);
  padding-top: 2rem;
  font-size: 0.85rem;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
  }
}

.footer-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--emerald-50);
  border: 1px solid var(--emerald-border);
  color: var(--emerald-500);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.85rem;
  border-radius: var(--radius-full);
}

.footer-status-dot {
  width: 7px;
  height: 7px;
  border-radius: var(--radius-full);
  background: var(--emerald-500);
}

/* ==========================================================================
   AUTHENTICATION & LOGIN (PRESTIGIOUS WHITE / BLUE DESIGN)
   ========================================================================== */
.auth-wrapper {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr;
  background: var(--bg-pearl);
}

@media (min-width: 992px) {
  .auth-wrapper {
    grid-template-columns: 1.1fr 1fr;
  }
}

.auth-sidebar {
  display: none;
  position: relative;
  background: linear-gradient(135deg, #001a47 0%, #0a255c 60%, #0055ff 100%);
  color: #ffffff;
  padding: 4.5rem 4rem;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

@media (min-width: 992px) {
  .auth-sidebar {
    display: flex;
  }
}

.auth-sidebar::before {
  content: '';
  position: absolute;
  top: -10rem;
  left: -10rem;
  width: 35rem;
  height: 35rem;
  border-radius: var(--radius-full);
  background: radial-gradient(circle, rgba(0, 168, 255, 0.3) 0%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
}

.auth-sidebar-hero {
  position: relative;
  z-index: 2;
  margin: auto 0;
}

.auth-hero-title {
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.25rem;
  color: #ffffff;
  letter-spacing: -0.03em;
}

.auth-hero-desc {
  font-size: 1.1rem;
  color: #e2e8f0;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.auth-feature-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.auth-feature-item {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  font-size: 0.95rem;
  color: #f1f5f9;
}

.auth-feature-icon {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #38bdf8;
  flex-shrink: 0;
}

.auth-main {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 1.5rem;
}

.auth-card {
  width: 100%;
  max-width: 26rem;
  background: #ffffff;
  border-radius: var(--radius-2xl);
  padding: 2.75rem 2.25rem;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-light);
}

.auth-card-header {
  text-align: center;
  margin-bottom: 2rem;
}

.auth-card-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--navy-900);
  margin-top: 1.25rem;
  margin-bottom: 0.35rem;
  letter-spacing: -0.02em;
}

.auth-card-sub {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* ==========================================================================
   FORMS & INPUTS
   ========================================================================== */
.form-group {
  margin-bottom: 1.25rem;
}

.field-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 0.45rem;
}

.field-input, .field-textarea, .field-select {
  display: block;
  width: 100%;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--border-light);
  padding: 0.8rem 1rem;
  font-size: 0.925rem;
  color: var(--navy-900);
  background: #ffffff;
  box-shadow: var(--shadow-xs);
  transition: all var(--transition-fast);
}

.field-input:focus, .field-textarea:focus, .field-select:focus {
  outline: none;
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 4px rgba(0, 85, 255, 0.12);
}

.field-input-readonly {
  background: var(--bg-pearl);
  color: var(--text-muted);
  cursor: not-allowed;
}

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

.checkbox-label {
  font-size: 0.875rem;
  color: var(--text-body);
  cursor: pointer;
  user-select: none;
}

/* Alerts */
.alert {
  margin-bottom: 1.25rem;
  border-radius: var(--radius-lg);
  border: 1px solid;
  padding: 0.875rem 1rem;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.alert-error {
  background: var(--rose-50);
  border-color: var(--rose-border);
  color: #b91c1c;
}

.alert-success {
  background: var(--emerald-50);
  border-color: var(--emerald-border);
  color: #15803d;
}

/* ==========================================================================
   PORTAL INTERFACE (UNIT OVERVIEW, MAP, MEDIA & ASSETS)
   ========================================================================== */
.site-main-narrow {
  flex: 1;
  width: 100%;
  max-width: 62rem;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 5rem;
}

.portal-hero-card {
  background: linear-gradient(135deg, #001a47 0%, #0a255c 60%, #0055ff 100%);
  border-radius: var(--radius-2xl);
  padding: 2.5rem 2.25rem;
  color: #ffffff;
  box-shadow: var(--shadow-lg);
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
}

.portal-hero-card::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 16rem;
  height: 16rem;
  background: radial-gradient(circle, rgba(0, 168, 255, 0.3) 0%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}

.portal-breadcrumb {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #93c5fd;
  margin-bottom: 0.5rem;
}

.portal-unit-title {
  font-size: 2rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.unit-stats-pills {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

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

.stat-pill {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  padding: 0.85rem 1rem;
}

.stat-pill-label {
  font-size: 0.725rem;
  color: #cbd5e1;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 3px;
}

.stat-pill-val {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
}

/* ==========================================================================
   CARDS & GRID ARCHITECTURE (PRESTIGIOUS AGENCY QUALITY)
   ========================================================================== */
.card {
  background: #ffffff;
  border-radius: var(--radius-xl);
  border: 1.5px solid var(--border-light);
  box-shadow: 0 4px 16px -2px rgba(0, 30, 80, 0.04), 0 1px 3px rgba(0, 30, 80, 0.02);
  padding: 1.5rem;
  transition: all var(--transition-smooth);
  position: relative;
}

.card:hover {
  border-color: rgba(0, 85, 255, 0.25);
}

a.card:hover, button.card:hover, .card-interactive:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px -8px rgba(0, 45, 120, 0.12), 0 0 0 1px rgba(0, 85, 255, 0.25);
  border-color: var(--brand-blue);
}

.card-flush {
  padding: 0;
  overflow: hidden;
}

.card-center {
  text-align: center;
}

/* Multi-Column Responsive Grids */
.card-grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .card-grid-2 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

.card-grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .card-grid-3 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .card-grid-3 {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.35rem;
  }
}

/* Feature Navigation Module Grid (12 Items) */
.feature-module-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}

@media (min-width: 640px) {
  .feature-module-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.15rem;
  }
}

@media (min-width: 992px) {
  .feature-module-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}

/* Module Feature Cards */
.portal-feature-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #ffffff;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 1.25rem 1.35rem;
  transition: all var(--transition-smooth);
  box-shadow: 0 2px 10px rgba(0, 30, 80, 0.03);
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.portal-feature-link:hover {
  border-color: var(--brand-blue);
  box-shadow: 0 12px 30px -4px rgba(0, 85, 255, 0.16);
  transform: translateY(-3px);
}

.portal-feature-link .chevron-arrow {
  margin-left: auto;
  color: var(--text-light);
  transition: transform var(--transition-smooth), color var(--transition-fast);
  flex-shrink: 0;
}

.portal-feature-link:hover .chevron-arrow {
  transform: translateX(4px);
  color: var(--brand-blue);
}

.feature-link-icon {
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--brand-blue-light);
  color: var(--brand-blue);
  transition: transform var(--transition-smooth);
}

.portal-feature-link:hover .feature-link-icon {
  transform: scale(1.06);
}

.feature-link-content {
  min-width: 0;
  flex: 1;
}

.feature-link-title {
  font-family: var(--font-heading);
  font-size: 0.975rem;
  font-weight: 700;
  color: var(--navy-900);
  line-height: 1.25;
}

.feature-link-desc {
  font-size: 0.775rem;
  color: var(--text-muted);
  line-height: 1.4;
  margin-top: 3px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Color Accent Variations for Modules */
.icon-cyan { background: var(--cyan-50); color: #0284c7; }
.icon-purple { background: #f5f3ff; color: #7c3aed; }
.icon-indigo { background: #eef2ff; color: #4f46e5; }
.icon-amber { background: #fffbeb; color: #d97706; }
.icon-rose { background: #fff1f2; color: #e11d48; }
.icon-emerald { background: var(--emerald-50); color: var(--emerald-500); }
.icon-teal { background: #f0fdfa; color: #0d9488; }
.icon-sky { background: #f0f9ff; color: #0284c7; }

/* Room Card (In Unit.aspx) */
.room-card {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  background: #ffffff;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 1rem 1.25rem;
  transition: all var(--transition-smooth);
  box-shadow: 0 2px 8px rgba(0, 30, 80, 0.03);
}

.room-card:hover {
  border-color: rgba(0, 85, 255, 0.35);
  box-shadow: 0 8px 24px -4px rgba(0, 85, 255, 0.12);
  transform: translateY(-2px);
}

.room-icon-box {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: var(--radius-lg);
  background: var(--brand-blue-light);
  color: var(--brand-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.room-type-chip {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--brand-blue);
  background: var(--brand-blue-light);
  padding: 0.15rem 0.55rem;
  border-radius: var(--radius-full);
}

/* Media Cards (WallBehind & Photos) */
.media-card {
  background: #ffffff;
  border-radius: var(--radius-xl);
  border: 1.5px solid var(--border-light);
  overflow: hidden;
  box-shadow: 0 4px 16px -2px rgba(0, 30, 80, 0.05);
  transition: all var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.media-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 45px -8px rgba(0, 50, 140, 0.14);
  border-color: var(--brand-blue);
}

.media-thumb-wrap {
  position: relative;
  overflow: hidden;
  height: 12.5rem;
  background: #000e29;
}

.media-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease-spring);
}

.media-card:hover .media-thumb-img {
  transform: scale(1.06);
}

.media-badge-4k {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: rgba(0, 15, 44, 0.85);
  backdrop-filter: blur(8px);
  color: #38bdf8;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(56, 189, 248, 0.35);
  display: flex;
  align-items: center;
  gap: 0.3rem;
  z-index: 2;
}

.media-badge-zone {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  color: var(--navy-900);
  font-size: 0.725rem;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  z-index: 2;
}

.media-card-body {
  padding: 1.15rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  background: #ffffff;
}

.media-card-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy-900);
  line-height: 1.35;
}

.media-card-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Material Swatch Cards */
.material-card {
  background: #ffffff;
  border-radius: var(--radius-xl);
  border: 1.5px solid var(--border-light);
  padding: 1.35rem;
  box-shadow: 0 4px 16px -2px rgba(0, 30, 80, 0.04);
  transition: all var(--transition-smooth);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.material-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px -6px rgba(0, 45, 120, 0.1);
  border-color: var(--brand-blue);
}

.material-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.material-cat-chip {
  font-size: 0.725rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #0284c7;
  background: #f0f9ff;
  border: 1px solid #bae6fd;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
}

.material-room-tag {
  font-size: 0.775rem;
  font-weight: 600;
  color: var(--text-muted);
}

.material-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy-900);
  line-height: 1.3;
}

.material-detail-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  padding-top: 0.5rem;
  border-top: 1px solid var(--border-light);
}

.detail-pill-subtle {
  font-size: 0.775rem;
  font-weight: 600;
  color: var(--text-body);
  background: var(--bg-pearl);
  border: 1px solid var(--border-light);
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-md);
}

/* Device & Appliance Cards */
.device-card {
  background: #ffffff;
  border-radius: var(--radius-xl);
  border: 1.5px solid var(--border-light);
  padding: 1.4rem;
  box-shadow: 0 4px 16px -2px rgba(0, 30, 80, 0.04);
  transition: all var(--transition-smooth);
}

.device-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px -6px rgba(0, 45, 120, 0.1);
  border-color: var(--brand-blue);
}

.device-head {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.device-icon-box {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: var(--radius-lg);
  background: var(--brand-blue-light);
  color: var(--brand-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.device-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 2px;
}

.device-brand-model {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brand-blue);
}

.device-specs-list {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--border-light);
  margin-bottom: 1rem;
}

.device-spec-item {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
}

.device-spec-label {
  color: var(--text-muted);
}

.device-spec-val {
  font-weight: 600;
  color: var(--navy-900);
}

/* Document & Blueprint Cards */
.doc-card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: var(--radius-xl);
  border: 1.5px solid var(--border-light);
  padding: 1.35rem;
  box-shadow: 0 4px 16px -2px rgba(0, 30, 80, 0.04);
  transition: all var(--transition-smooth);
}

.doc-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px -6px rgba(0, 45, 120, 0.1);
  border-color: var(--brand-blue);
}

.doc-icon-head {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 0.85rem;
}

.doc-badge-pill {
  font-size: 0.725rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #7c3aed;
  background: #f5f3ff;
  border: 1px solid #ddd6fe;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
}

.doc-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy-900);
  line-height: 1.35;
  margin-bottom: 0.5rem;
}

.doc-desc {
  font-size: 0.825rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 1.25rem;
  flex: 1;
}

/* Infrastructure Group Cards */
.infra-group-card {
  background: #ffffff;
  border-radius: var(--radius-xl);
  border: 1.5px solid var(--border-light);
  overflow: hidden;
  box-shadow: 0 4px 16px -2px rgba(0, 30, 80, 0.04);
  margin-bottom: 1.5rem;
}

.infra-group-header {
  background: var(--bg-pearl);
  border-bottom: 1px solid var(--border-light);
  padding: 1rem 1.35rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy-900);
}

.infra-item-card {
  padding: 1.1rem 1.35rem;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  transition: background var(--transition-fast);
}

.infra-item-card:last-child {
  border-bottom: none;
}

.infra-item-card:hover {
  background: #f8fafc;
}

.infra-type-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 0.25rem;
}

.infra-desc-text {
  font-size: 0.85rem;
  color: var(--text-body);
}

/* Search Bars */
.search-form-portal {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 2rem;
  align-items: center;
}

.search-form-portal .field-input {
  border-radius: var(--radius-full);
  padding: 0.85rem 1.35rem;
  font-size: 0.95rem;
}

.search-form-portal .btn {
  border-radius: var(--radius-full);
  padding: 0.85rem 1.6rem;
  font-size: 0.95rem;
  flex-shrink: 0;
}

/* Media & Photos */
.thumb {
  width: 100%;
  height: 10rem;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

.card:hover .thumb {
  transform: scale(1.03);
}

.thumb-lg {
  height: 12rem;
}

.thumb-sm {
  height: 8rem;
}

.thumb-placeholder {
  width: 100%;
  height: 9rem;
  background: var(--bg-subtle);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.thumb-placeholder-sm {
  height: 6.5rem;
  font-size: 1.5rem;
}

.thumb-caption-muted {
  padding: 0.85rem;
  font-size: 0.825rem;
  color: var(--text-body);
  background: #ffffff;
  border-top: 1px solid var(--border-light);
}

.thumb-caption {
  padding: 0.85rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy-900);
  background: #ffffff;
}

.media-preview-video-plain {
  width: 100%;
  max-height: 18rem;
  background: #000000;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

/* Empty States */
.empty-state {
  text-align: center;
  padding: 3rem 1.5rem;
  background: var(--bg-pearl);
  border-radius: var(--radius-xl);
  border: 1.5px dashed var(--border-light);
  color: var(--text-muted);
  font-size: 0.925rem;
}

/* Typography & Minor Utilities */
.page-title-sm {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--navy-900);
  margin-top: 0.75rem;
  margin-bottom: 1.25rem;
}

.page-title-sm-tight {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--navy-900);
  margin-top: 0.25rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 0.875rem;
}

.section-title-top {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy-900);
  margin-top: 2.25rem;
  margin-bottom: 1rem;
}

.text-eyebrow-label-xs {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--brand-blue);
}

.value-text {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy-900);
}

.value-mt {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy-900);
  margin-top: 0.25rem;
}

.value-mt-strong {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy-900);
  margin-top: 0.25rem;
}

.value-strong-mt1 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy-900);
  margin-top: 0.35rem;
}

.text-caption {
  font-size: 0.825rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

.text-caption-mt {
  font-size: 0.825rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

.text-hint {
  font-size: 0.825rem;
  color: var(--text-muted);
}

.text-hint-mt-sm {
  font-size: 0.75rem;
  color: var(--text-light);
  margin-top: 0.25rem;
}

.link-sm {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--brand-blue);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.link-sm:hover {
  color: var(--brand-blue-hover);
}

.truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mb-block {
  margin-bottom: 2rem;
}

.mt-4 {
  margin-top: 1rem;
}

.card-py3 {
  padding-top: 0.875rem;
  padding-bottom: 0.875rem;
}

.pad-sm {
  padding: 0.875rem 1rem;
}

.field-grow {
  flex: 1;
}

.card-link-block {
  display: block;
}

.card-sm {
  max-width: 28rem;
  margin: 0 auto;
}

.auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem;
  background: var(--bg-pearl);
}

.btn-mt6 {
  margin-top: 1.5rem;
}

.body-text-sm {
  margin-top: 0.5rem;
  font-size: 0.925rem;
  color: var(--text-body);
}

/* Layer filter checkbox row in Map.aspx */
.layer-form {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  background: #ffffff;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 0.875rem 1.35rem;
  margin-bottom: 1rem;
}

.layer-check {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-body);
  cursor: pointer;
}

.row-wrap-gap2 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.hint-mb3 {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}
