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

/* ============================================================================
   INMERSIVA — Sistema de diseño compartido
   Una sola fuente de verdad para color, tipografía, espaciado y componentes.
   Mantiene el ADN navy + gold; refina y unifica todas las vistas.
   No hardcodear valores en los templates: usar estas variables y clases.
   ============================================================================ */

:root {
  /* ── Marca ───────────────────────────────────────────────────────────── */
  --navy:        #1B2A4A;
  --navy-dark:   #0d1e38;
  --navy-700:    #243660;
  --navy-500:    #5a7090;
  --gold:        #C9A84C;
  --gold-light:  #E8C96A;
  --gold-dark:   #a8862f;

  /* ── Degradados de marca (profundidad, no colores planos) ────────────── */
  --grad-navy:   linear-gradient(135deg, #243660 0%, #1B2A4A 55%, #0d1e38 100%);
  --grad-gold:   linear-gradient(135deg, #E8C96A 0%, #C9A84C 60%, #a8862f 100%);
  --grad-surface: linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
  --grad-page:   radial-gradient(1200px 600px at 100% -10%, #eef2f9 0%, #f8fafc 60%);

  /* ── Neutros (escala slate) ──────────────────────────────────────────── */
  --bg:          #f8fafc;
  --surface:     #ffffff;
  --border:      #e2e8f0;
  --border-soft: #f1f5f9;
  --ink:         #1e293b;   /* texto principal */
  --ink-soft:    #475569;   /* texto secundario */
  --muted:       #64748b;   /* texto terciario */
  --muted-light: #94a3b8;   /* placeholders / iconos */

  /* ── Semánticos ──────────────────────────────────────────────────────── */
  --success:        #16a34a;
  --success-bg:     #dcfce7;
  --success-ink:    #14532d;
  --danger:         #dc2626;
  --danger-bg:      #fee2e2;
  --danger-ink:     #7f1d1d;
  --warning:        #d97706;
  --warning-bg:     #fef3c7;
  --warning-ink:    #78350f;
  --info:           #2563eb;
  --info-bg:        #dbeafe;
  --info-ink:       #1e3a8a;

  /* ── Tipografía ──────────────────────────────────────────────────────── */
  --font-sans:    'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-display: 'Sora', 'Inter', system-ui, sans-serif;
  --fs-xs:   clamp(.70rem, .68rem + .1vw, .75rem);
  --fs-sm:   clamp(.80rem, .78rem + .15vw, .875rem);
  --fs-base: clamp(.9rem, .86rem + .2vw, 1rem);
  --fs-lg:   clamp(1.05rem, 1rem + .3vw, 1.2rem);
  --fs-xl:   clamp(1.3rem, 1.2rem + .6vw, 1.6rem);
  --fs-2xl:  clamp(1.7rem, 1.4rem + 1.2vw, 2.4rem);
  --fs-3xl:  clamp(2.2rem, 1.7rem + 2.2vw, 3.4rem);

  /* ── Espaciado (escala 4px) ──────────────────────────────────────────── */
  --sp-1: 4px;  --sp-2: 8px;  --sp-3: 12px; --sp-4: 16px;
  --sp-5: 20px; --sp-6: 24px; --sp-8: 32px; --sp-10: 40px;
  --sp-12: 48px; --sp-16: 64px;

  /* ── Radios ──────────────────────────────────────────────────────────── */
  --r-sm: 8px;  --r-md: 12px; --r-lg: 16px; --r-xl: 22px; --r-full: 999px;

  /* ── Sombras ─────────────────────────────────────────────────────────── */
  --sh-xs: 0 1px 2px rgba(27,42,74,.06);
  --sh-sm: 0 2px 4px rgba(27,42,74,.06), 0 1px 2px rgba(27,42,74,.05);
  --sh-md: 0 8px 20px -6px rgba(27,42,74,.14), 0 2px 6px rgba(27,42,74,.06);
  --sh-lg: 0 18px 40px -10px rgba(27,42,74,.22), 0 4px 10px rgba(27,42,74,.08);
  --sh-xl: 0 32px 60px -12px rgba(13,30,56,.30), 0 8px 18px rgba(27,42,74,.10);
  --sh-gold: 0 6px 18px -4px rgba(201,168,76,.45);

  /* ── Transiciones / capas ────────────────────────────────────────────── */
  --tr: .2s ease;
  --z-nav: 50; --z-overlay: 90; --z-modal: 100; --z-toast: 110;

  --container: 1200px;
}

/* ── Reset suave ───────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

body.inm {
  margin: 0;
  font-family: var(--font-sans);
  font-size: var(--fs-base);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

.inm h1, .inm h2, .inm h3 { font-family: var(--font-display); line-height: 1.18; font-weight: 800; letter-spacing: -.01em; color: var(--navy); margin: 0; }
.inm a { color: inherit; }

/* ── Layout helpers ────────────────────────────────────────────────────── */
.inm-container { max-width: var(--container); margin: 0 auto; padding-inline: var(--sp-5); }
.inm-stack > * + * { margin-top: var(--sp-4); }
.inm-row { display: flex; align-items: center; gap: var(--sp-3); }
.inm-grid { display: grid; gap: var(--sp-5); }

/* ── Cards ─────────────────────────────────────────────────────────────── */
.inm-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-sm);
  padding: var(--sp-6);
}
.inm-card--flush { padding: 0; overflow: hidden; }

/* Stat / KPI card */
.inm-stat {
  position: relative;
  background: var(--grad-surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-sm);
  padding: var(--sp-5) var(--sp-6);
  overflow: hidden;
  transition: box-shadow var(--tr), transform var(--tr);
}
.inm-stat::before { content: ''; position: absolute; inset: 0 0 auto 0; height: 3px; background: var(--grad-gold); }
.inm-stat:hover { box-shadow: var(--sh-lg); transform: translateY(-3px); }
.inm-stat__value { font-size: var(--fs-2xl); font-weight: 800; color: var(--navy); line-height: 1; }
.inm-stat__label { font-size: var(--fs-xs); font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin-top: var(--sp-2); }

/* Section header (barra navy con título) */
.inm-section-head {
  display: flex; align-items: center; justify-content: space-between; gap: var(--sp-4);
  background: var(--grad-navy);
  color: #fff;
  padding: var(--sp-4) var(--sp-6);
  border-radius: var(--r-md) var(--r-md) 0 0;
  font-weight: 700; letter-spacing: .04em; text-transform: uppercase; font-size: var(--fs-sm);
}

/* ── Botones ───────────────────────────────────────────────────────────── */
.inm-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--sp-2);
  font-family: inherit; font-weight: 600; font-size: var(--fs-sm);
  padding: 10px 18px; min-height: 44px;
  border: 1px solid transparent; border-radius: var(--r-md);
  cursor: pointer; text-decoration: none; white-space: nowrap;
  transition: background var(--tr), color var(--tr), box-shadow var(--tr), transform var(--tr);
}
.inm-btn:active { transform: translateY(1px); }
.inm-btn:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.inm-btn--primary   { background: var(--grad-gold); color: var(--navy-dark); font-weight: 700; box-shadow: var(--sh-gold); }
.inm-btn--primary:hover { filter: brightness(1.06); box-shadow: var(--sh-lg); transform: translateY(-1px); }
.inm-btn--navy      { background: var(--grad-navy); color: #fff; }
.inm-btn--navy:hover{ filter: brightness(1.12); box-shadow: var(--sh-lg); transform: translateY(-1px); }
.inm-btn--ghost     { background: transparent; color: var(--navy); border-color: var(--border); }
.inm-btn--ghost:hover { background: var(--border-soft); }
.inm-btn--danger    { background: var(--danger); color: #fff; }
.inm-btn--danger:hover { background: var(--danger-ink); }
.inm-btn--sm { min-height: 34px; padding: 6px 12px; font-size: var(--fs-xs); }

/* ── Badges / estados ──────────────────────────────────────────────────── */
.inm-badge {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: var(--fs-xs); font-weight: 700; letter-spacing: .02em;
  padding: 4px 12px; border-radius: var(--r-full); line-height: 1.4;
}
.inm-badge--success { background: var(--success-bg); color: var(--success-ink); }
.inm-badge--danger  { background: var(--danger-bg);  color: var(--danger-ink); }
.inm-badge--warning { background: var(--warning-bg); color: var(--warning-ink); }
.inm-badge--info    { background: var(--info-bg);    color: var(--info-ink); }
.inm-badge--gold    { background: var(--gold); color: var(--navy); }
.inm-badge--navy    { background: var(--navy); color: #fff; }

.inm-dot { width: 8px; height: 8px; border-radius: var(--r-full); display: inline-block; }
.inm-dot--on  { background: var(--success); }
.inm-dot--off { background: var(--danger); }

/* ── Tablas ────────────────────────────────────────────────────────────── */
.inm-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: 0 0 var(--r-md) var(--r-md); }
.inm-table { width: 100%; border-collapse: collapse; background: var(--surface); font-size: var(--fs-sm); }
.inm-table thead th {
  text-align: left; font-size: var(--fs-xs); font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; color: var(--muted);
  padding: var(--sp-3) var(--sp-4); border-bottom: 1px solid var(--border); background: var(--border-soft);
}
.inm-table tbody td { padding: var(--sp-4); border-bottom: 1px solid var(--border-soft); vertical-align: middle; }
.inm-table tbody tr:nth-child(even) { background: #fcfdfe; }
.inm-table tbody tr:hover { background: var(--border-soft); }
.inm-table tbody tr:last-child td { border-bottom: none; }

/* ── Formularios ───────────────────────────────────────────────────────── */
.inm-label { display: block; font-size: var(--fs-xs); font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--muted); margin-bottom: var(--sp-2); }
.inm-input, .inm-select, .inm-textarea {
  width: 100%; font-family: inherit; font-size: var(--fs-base); color: var(--ink);
  padding: 11px 14px; min-height: 44px;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-md);
  transition: border-color var(--tr), box-shadow var(--tr);
}
.inm-input:focus, .inm-select:focus, .inm-textarea:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,168,76,.18);
}
.inm-textarea { min-height: 110px; resize: vertical; }

/* ── Navbar / footer compartidos ───────────────────────────────────────── */
.inm-nav {
  position: sticky; top: 0; z-index: var(--z-nav);
  background: var(--grad-navy); box-shadow: var(--sh-md);
  border-bottom: 1px solid rgba(201,168,76,.14);
}
.inm-nav__inner { max-width: var(--container); margin: 0 auto; padding: 0 var(--sp-5); height: 64px; display: flex; align-items: center; gap: var(--sp-4); }
.inm-brand { display: flex; align-items: center; gap: var(--sp-3); text-decoration: none; }
.inm-brand__name { color: #fff; font-weight: 900; letter-spacing: .15em; font-size: var(--fs-sm); line-height: 1; }
.inm-brand__sub  { color: var(--gold); font-weight: 600; letter-spacing: .15em; font-size: 8px; line-height: 1; }

.inm-footer { background: var(--navy-dark); color: var(--muted-light); padding: var(--sp-8) 0; font-size: var(--fs-xs); text-align: center; }
.inm-footer a { color: var(--gold); text-decoration: none; }

/* ── Modal ─────────────────────────────────────────────────────────────── */
.inm-overlay { position: fixed; inset: 0; background: rgba(13,30,56,.55); backdrop-filter: blur(2px); z-index: var(--z-overlay); display: flex; align-items: center; justify-content: center; padding: var(--sp-4); }
.inm-modal { background: var(--surface); border-radius: var(--r-lg); box-shadow: var(--sh-xl); width: min(520px, 92vw); max-height: 90vh; overflow-y: auto; }

/* ── Utilidades ────────────────────────────────────────────────────────── */
.inm-muted { color: var(--muted); }
.inm-gold  { color: var(--gold); }
.inm-navy  { color: var(--navy); }
.inm-truncate { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.inm-empty { text-align: center; color: var(--muted); padding: var(--sp-12) var(--sp-4); }

/* ── Responsive ────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .inm-grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .inm-grid--4, .inm-grid--3, .inm-grid--2 { grid-template-columns: 1fr; }
  .inm-section-head { flex-wrap: wrap; }
  .inm-card { padding: var(--sp-4); }
}
.inm-grid--2 { grid-template-columns: repeat(2, 1fr); }
.inm-grid--3 { grid-template-columns: repeat(3, 1fr); }
.inm-grid--4 { grid-template-columns: repeat(4, 1fr); }


/* ═══════════════════════════════════════════════════════════════════════════
   PREMIUM PUBLIC-FACING COMPONENTS
   Inmersiva Grupo Inmobiliario — Design System v2
   All rules below are ADDITIVE — existing classes are untouched.
   ═══════════════════════════════════════════════════════════════════════════ */


/* ── Hero ──────────────────────────────────────────────────────────────── */
.inm-hero {
  position: relative;
  width: 100%;
  background: linear-gradient(135deg, var(--navy) 0%, #0f2044 60%, #1a3060 100%);
  padding: clamp(4rem, 10vw, 8rem) var(--sp-6);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Radial-dot pattern overlay */
.inm-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.07) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
  pointer-events: none;
}

.inm-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.inm-hero__badge {
  display: inline-block;
  background: rgba(197,155,80,.18);
  color: var(--gold);
  border: 1px solid rgba(197,155,80,.35);
  border-radius: 999px;
  padding: var(--sp-1) var(--sp-4);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: var(--sp-4);
}

.inm-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin: 0 0 var(--sp-4);
}

.inm-hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,.72);
  line-height: 1.65;
  max-width: 580px;
  margin: 0 auto;
}


/* ── Public Navbar (glass) ─────────────────────────────────────────────── */
.inm-page-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-6);
  padding: var(--sp-3) var(--sp-6);
  background: rgba(27,42,74,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.inm-page-nav__links {
  display: flex;
  align-items: center;
  gap: var(--sp-6);
  list-style: none;
  margin: 0;
  padding: 0;
}

.inm-page-nav__link {
  color: rgba(255,255,255,.82);
  text-decoration: none;
  font-size: var(--fs-sm);
  font-weight: 500;
  transition: color var(--transition);
}

.inm-page-nav__link:hover,
.inm-page-nav__link--active {
  color: var(--gold);
}

.inm-page-nav__cta {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  background: var(--gold);
  color: var(--navy);
  font-size: var(--fs-sm);
  font-weight: 700;
  padding: var(--sp-2) var(--sp-5);
  border-radius: var(--r-md);
  text-decoration: none;
  transition: opacity var(--transition), transform var(--transition);
  white-space: nowrap;
}

.inm-page-nav__cta:hover {
  opacity: .88;
  transform: translateY(-1px);
}


/* ── Property Listing Card ─────────────────────────────────────────────── */
.inm-prop-card {
  background: #fff;
  border-radius: var(--r-lg);
  box-shadow: var(--sh-sm);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}

.inm-prop-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-lg);
}

.inm-prop-card__img-wrap {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.inm-prop-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}

.inm-prop-card:hover .inm-prop-card__img {
  transform: scale(1.06);
}

.inm-prop-card__badge {
  position: absolute;
  top: var(--sp-3);
  left: var(--sp-3);
  background: var(--gold);
  color: var(--navy);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 3px var(--sp-3);
  border-radius: 999px;
  line-height: 1.6;
}

.inm-prop-card__body {
  padding: var(--sp-5);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.inm-prop-card__price {
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  font-weight: 800;
  color: var(--gold);
  line-height: 1.1;
  margin-bottom: var(--sp-2);
}

.inm-prop-card__title {
  color: var(--navy);
  font-weight: 700;
  font-size: var(--fs-base);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-bottom: var(--sp-2);
}

.inm-prop-card__location {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
  font-size: var(--fs-sm);
  color: var(--muted);
  margin-bottom: var(--sp-3);
}

.inm-prop-card__specs {
  display: flex;
  gap: var(--sp-4);
  border-top: 1px solid var(--border);
  padding-top: var(--sp-3);
  margin-top: auto;
  font-size: var(--fs-xs);
  color: var(--muted);
  flex-wrap: wrap;
}

.inm-prop-card__spec {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
}


/* ── Filter Bar ────────────────────────────────────────────────────────── */
.inm-filter-bar {
  background: #fff;
  border-radius: var(--r-xl);
  box-shadow: var(--sh-md);
  padding: var(--sp-4) var(--sp-6);
  display: flex;
  align-items: flex-end;
  gap: var(--sp-4);
  flex-wrap: wrap;
}

.inm-filter-bar__field {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  flex: 1;
  min-width: 140px;
}

.inm-filter-bar__field label {
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--navy);
  letter-spacing: .04em;
  text-transform: uppercase;
}

.inm-filter-bar__sep {
  width: 1px;
  height: 40px;
  background: var(--border);
  flex-shrink: 0;
  align-self: center;
}


/* ── Section Utilities ─────────────────────────────────────────────────── */
.inm-section--padded {
  padding: var(--sp-12) 0;
}

.inm-section--navy {
  background: var(--navy);
  color: #fff;
}

.inm-section__eyebrow {
  display: block;
  color: var(--gold);
  font-size: var(--fs-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: var(--sp-2);
}

.inm-section__title {
  font-family: var(--font-display);
  font-size: var(--fs-2xl);
  font-weight: 800;
  color: var(--navy);
  margin-top: var(--sp-2);
  margin-bottom: 0;
  line-height: 1.2;
}

.inm-section--navy .inm-section__title {
  color: #fff;
}

.inm-section__desc {
  color: var(--ink-soft, var(--muted));
  font-size: var(--fs-base);
  line-height: 1.7;
  max-width: 600px;
  margin-top: var(--sp-3);
}

.inm-section--navy .inm-section__desc {
  color: rgba(255,255,255,.72);
}


/* ── Stats Bar ─────────────────────────────────────────────────────────── */
.inm-stat-bar {
  background: var(--navy);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
  padding: var(--sp-10) var(--sp-6);
  gap: var(--sp-6);
}

.inm-stat-bar__num {
  font-family: var(--font-display);
  font-size: var(--fs-3xl);
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  display: block;
}

.inm-stat-bar__label {
  color: rgba(255,255,255,.7);
  font-size: var(--fs-sm);
  margin-top: var(--sp-2);
  display: block;
}

@media (max-width: 640px) {
  .inm-stat-bar {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* ── Value / Feature Card ──────────────────────────────────────────────── */
.inm-value-card {
  background: #fff;
  border-radius: var(--r-lg);
  padding: var(--sp-6);
  box-shadow: var(--sh-sm);
  border-top: 3px solid var(--card-accent, var(--gold));
  transition: transform var(--transition), box-shadow var(--transition);
}

.inm-value-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-md);
}

.inm-value-card__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--r-md);
  background: rgba(197,155,80,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--card-accent, var(--gold));
  font-size: 1.25rem;
}

.inm-value-card__title {
  color: var(--navy);
  font-weight: 700;
  font-size: var(--fs-base);
  margin-top: var(--sp-4);
  margin-bottom: var(--sp-2);
}

.inm-value-card__text {
  color: var(--muted);
  font-size: var(--fs-sm);
  line-height: 1.65;
  margin: 0;
}


/* ── Pricing Card ──────────────────────────────────────────────────────── */
.inm-pricing-card {
  background: #fff;
  border-radius: var(--r-xl);
  padding: var(--sp-8);
  border: 2px solid var(--border);
  box-shadow: var(--sh-sm);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}

.inm-pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-md);
}

.inm-pricing-card--featured {
  background: var(--navy);
  border-color: var(--gold);
  box-shadow: var(--sh-lg);
}

.inm-pricing-card__name {
  font-size: var(--fs-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--muted);
  margin-bottom: var(--sp-3);
}

.inm-pricing-card--featured .inm-pricing-card__name {
  color: var(--gold);
}

.inm-pricing-card__price {
  font-family: var(--font-display);
  font-size: var(--fs-3xl);
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}

.inm-pricing-card--featured .inm-pricing-card__price {
  color: #fff;
}

.inm-pricing-card__period {
  font-size: var(--fs-sm);
  color: var(--muted);
  margin-left: var(--sp-1);
}

.inm-pricing-card--featured .inm-pricing-card__period {
  color: rgba(197,155,80,.8);
}

.inm-pricing-card__feature-list {
  list-style: none;
  padding: 0;
  margin: var(--sp-6) 0;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  flex: 1;
}

.inm-pricing-card__feature {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  font-size: var(--fs-sm);
  color: var(--ink, #334155);
}

.inm-pricing-card--featured .inm-pricing-card__feature {
  color: rgba(255,255,255,.85);
}

.inm-pricing-card__check {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
  line-height: 1;
}

.inm-pricing-card--featured .inm-pricing-card__check {
  color: #fff;
}


/* ── Contact Info Panel ────────────────────────────────────────────────── */
.inm-contact-info {
  background: var(--navy);
  border-radius: var(--r-lg);
  padding: var(--sp-6);
  box-shadow: var(--sh-md);
}

.inm-contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  margin-bottom: var(--sp-5);
}

.inm-contact-info__item:last-child {
  margin-bottom: 0;
}

.inm-contact-info__icon-wrap {
  width: 36px;
  height: 36px;
  border-radius: var(--r-md);
  background: rgba(197,155,80,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

.inm-contact-info__meta {
  font-size: var(--fs-xs);
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 3px;
  line-height: 1.4;
}

.inm-contact-info__value {
  font-size: var(--fs-sm);
  color: #fff;
  font-weight: 500;
  line-height: 1.5;
}


/* ── Scrollbar ─────────────────────────────────────────────────────────── */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: rgba(27,42,74,.2);
  border-radius: 999px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(27,42,74,.35);
}


/* ── Focus Visible ─────────────────────────────────────────────────────── */
.inm-btn:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}


/* ── Loading Skeletons ─────────────────────────────────────────────────── */
@keyframes shimmer {
  0%   { background-position: -600px 0; }
  100% { background-position:  600px 0; }
}

.inm-skeleton {
  background: linear-gradient(
    90deg,
    rgba(27,42,74,.06) 25%,
    rgba(27,42,74,.12) 37%,
    rgba(27,42,74,.06) 63%
  );
  background-size: 1200px 100%;
  animation: shimmer 1.6s infinite linear;
  border-radius: var(--r-md);
}

.inm-skeleton--text {
  height: 1em;
  width: 60%;
}

.inm-skeleton--card {
  height: 220px;
  width: 100%;
}


/* ── Print ─────────────────────────────────────────────────────────────── */
@media print {
  .inm-sidebar,
  .inm-nav,
  .inm-page-nav,
  .inm-btn,
  .inm-filter-bar {
    display: none !important;
  }

  body {
    background: #fff !important;
    color: #000 !important;
  }

  .inm-card {
    box-shadow: none !important;
    border: 1px solid #ccc !important;
  }
}

/* ── Animations ────────────────────────────────────────────────────────── */
@keyframes fadeInUp { from { opacity:0; transform:translateY(20px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeIn   { from { opacity:0; } to { opacity:1; } }
@keyframes slideInLeft { from { opacity:0; transform:translateX(-16px); } to { opacity:1; transform:translateX(0); } }
@keyframes pulse-gold { 0%,100% { box-shadow: 0 0 0 0 rgba(201,168,76,.4); } 70% { box-shadow: 0 0 0 8px rgba(201,168,76,0); } }

.inm-animate-up   { animation: fadeInUp .4s ease both; }
.inm-animate-in   { animation: fadeIn .3s ease both; }
.inm-animate-left { animation: slideInLeft .35s ease both; }
.inm-pulse-gold   { animation: pulse-gold 2s infinite; }

/* Stagger children */
.inm-stagger > *:nth-child(1) { animation-delay: .05s; }
.inm-stagger > *:nth-child(2) { animation-delay: .10s; }
.inm-stagger > *:nth-child(3) { animation-delay: .15s; }
.inm-stagger > *:nth-child(4) { animation-delay: .20s; }

/* ── Avatars ────────────────────────────────────────────────────────────── */
.inm-avatar { display:inline-flex; align-items:center; justify-content:center; border-radius:50%; font-family:var(--font-display); font-weight:800; flex-shrink:0; }
.inm-avatar--xs { width:28px; height:28px; font-size:.7rem; }
.inm-avatar--sm { width:36px; height:36px; font-size:.85rem; }
.inm-avatar--md { width:48px; height:48px; font-size:1rem; }
.inm-avatar--lg { width:64px; height:64px; font-size:1.3rem; }
.inm-avatar--xl { width:80px; height:80px; font-size:1.6rem; }
.inm-avatar--gold  { background:var(--grad-gold);  color:var(--navy); }
.inm-avatar--navy  { background:var(--grad-navy);  color:#fff; }
.inm-avatar--ring  { box-shadow:0 0 0 3px var(--gold), 0 0 0 5px rgba(201,168,76,.15); }

/* ── Timeline ───────────────────────────────────────────────────────────── */
.inm-timeline { display:flex; flex-direction:column; gap:var(--sp-3); }
.inm-timeline-item { display:flex; gap:var(--sp-4); align-items:flex-start; }
.inm-timeline-dot { width:12px; height:12px; border-radius:50%; border:2px solid var(--gold); background:var(--surface); flex-shrink:0; margin-top:4px; position:relative; }
.inm-timeline-dot::before { content:''; position:absolute; left:50%; top:100%; transform:translateX(-50%); width:2px; height:calc(100% + var(--sp-3)); background:var(--border); }
.inm-timeline-item:last-child .inm-timeline-dot::before { display:none; }
.inm-timeline-date { font-size:var(--fs-xs); color:var(--muted); font-weight:600; white-space:nowrap; min-width:80px; padding-top:2px; }
.inm-timeline-content { flex:1; }

/* ── Dividers ───────────────────────────────────────────────────────────── */
.inm-divider { height:1px; background:var(--border); margin:var(--sp-6) 0; }
.inm-divider--gold { background:linear-gradient(90deg, transparent, var(--gold), transparent); }
.inm-divider--label { display:flex; align-items:center; gap:var(--sp-3); margin:var(--sp-5) 0; }
.inm-divider--label::before, .inm-divider--label::after { content:''; flex:1; height:1px; background:var(--border); }
.inm-divider--label span { font-size:var(--fs-xs); font-weight:700; color:var(--muted); letter-spacing:.08em; text-transform:uppercase; white-space:nowrap; }

/* ── Steps ──────────────────────────────────────────────────────────────── */
.inm-steps { display:flex; align-items:center; gap:0; }
.inm-step { display:flex; flex-direction:column; align-items:center; gap:var(--sp-2); flex:1; position:relative; }
.inm-step::before { content:''; position:absolute; top:16px; left:calc(-50% + 16px); right:calc(50% + 16px); height:2px; background:var(--border); }
.inm-step:first-child::before { display:none; }
.inm-step__circle { width:32px; height:32px; border-radius:50%; border:2px solid var(--border); background:var(--surface); display:flex; align-items:center; justify-content:center; font-size:var(--fs-xs); font-weight:700; color:var(--muted); position:relative; z-index:1; transition:all var(--tr); }
.inm-step--active .inm-step__circle  { border-color:var(--gold); background:var(--gold); color:var(--navy); box-shadow:var(--sh-gold); }
.inm-step--done .inm-step__circle    { border-color:var(--success); background:var(--success); color:#fff; }
.inm-step__label { font-size:var(--fs-xs); font-weight:600; color:var(--muted); text-align:center; }
.inm-step--active .inm-step__label   { color:var(--navy); font-weight:700; }
.inm-step--done .inm-step__label     { color:var(--success); }

/* ── Tooltips ───────────────────────────────────────────────────────────── */
[data-tip] { position:relative; }
[data-tip]::after { content:attr(data-tip); position:absolute; bottom:calc(100% + 6px); left:50%; transform:translateX(-50%); background:var(--navy); color:#fff; font-size:.68rem; font-weight:600; padding:4px 10px; border-radius:var(--r-sm); white-space:nowrap; pointer-events:none; opacity:0; transition:opacity .15s; z-index:var(--z-toast); }
[data-tip]:hover::after { opacity:1; }

/* ── Glass card ─────────────────────────────────────────────────────────── */
.inm-card--glass { background:rgba(255,255,255,.72); backdrop-filter:blur(16px); -webkit-backdrop-filter:blur(16px); border:1px solid rgba(255,255,255,.5); }
.inm-card--glass-dark { background:rgba(27,42,74,.72); backdrop-filter:blur(16px); -webkit-backdrop-filter:blur(16px); border:1px solid rgba(255,255,255,.1); color:#fff; }

/* ── Number display ─────────────────────────────────────────────────────── */
.inm-num { font-family:var(--font-display); font-weight:800; letter-spacing:-.02em; line-height:1; }
.inm-num--gold { color:var(--gold); }
.inm-num--navy { color:var(--navy); }
.inm-num--xs  { font-size:var(--fs-base); }
.inm-num--sm  { font-size:var(--fs-xl); }
.inm-num--md  { font-size:var(--fs-2xl); }
.inm-num--lg  { font-size:var(--fs-3xl); }
.inm-num--xl  { font-size:clamp(2.8rem,6vw,4.5rem); }

/* ── Scroll row ─────────────────────────────────────────────────────────── */
.inm-scroll-row { display:flex; gap:var(--sp-4); overflow-x:auto; padding-bottom:var(--sp-2); scroll-snap-type:x mandatory; -webkit-overflow-scrolling:touch; }
.inm-scroll-row::-webkit-scrollbar { height:3px; }
.inm-scroll-row::-webkit-scrollbar-thumb { background:rgba(201,168,76,.3); border-radius:var(--r-full); }
.inm-scroll-row > * { scroll-snap-align:start; flex-shrink:0; }

/* ── Status indicators ──────────────────────────────────────────────────── */
.inm-status { display:inline-flex; align-items:center; gap:6px; font-size:var(--fs-xs); font-weight:600; }
.inm-status__dot { width:8px; height:8px; border-radius:50%; flex-shrink:0; }
.inm-status--online .inm-status__dot  { background:var(--success); animation:pulse-gold 2s infinite; }
.inm-status--away .inm-status__dot    { background:var(--warning); }
.inm-status--offline .inm-status__dot { background:var(--muted-light); }
