/* ==========================================================================
   Mesa de Servicios InTouch — hoja de estilos
   Tipografía de marca: HandoSoft. Paleta primaria: navy + celeste/azul,
   tomada del logo InTouch (Linea Grafica/Inotuch colores.png).
   ========================================================================== */

@font-face{
  font-family:'HandoSoft'; src:url('fonts/HandoSoft-Light.woff2') format('woff2');
  font-weight:300; font-style:normal; font-display:swap;
}
@font-face{
  font-family:'HandoSoft'; src:url('fonts/HandoSoft-Regular.woff2') format('woff2');
  font-weight:400; font-style:normal; font-display:swap;
}
@font-face{
  font-family:'HandoSoft'; src:url('fonts/HandoSoft-Medium.woff2') format('woff2');
  font-weight:500; font-style:normal; font-display:swap;
}
@font-face{
  font-family:'HandoSoft'; src:url('fonts/HandoSoft-SemiBold.woff2') format('woff2');
  font-weight:600; font-style:normal; font-display:swap;
}
@font-face{
  font-family:'HandoSoft'; src:url('fonts/HandoSoft-Bold.woff2') format('woff2');
  font-weight:700; font-style:normal; font-display:swap;
}
@font-face{
  font-family:'HandoSoft'; src:url('fonts/HandoSoft-ExtraBold.woff2') format('woff2');
  font-weight:800; font-style:normal; font-display:swap;
}

:root{
  color-scheme:light;
  --ink:#14395C;
  --ink-2:#1A4A74;
  --ink-3:#215B8C;
  --text:#10233A;
  --text-soft:#4C6C82;
  --text-muted:#8AA0AF;
  --bg:#F2F6F8;
  --surface:#FFFFFF;
  --surface-2:#EEF3F6;
  --border:rgba(16,56,90,0.11);
  --border-strong:rgba(16,56,90,0.20);
  --shadow-sm:0 1px 2px rgba(16,42,66,0.06);
  --shadow:0 10px 28px rgba(16,42,66,0.09);
  --shadow-lg:0 20px 48px rgba(16,42,66,0.16);

  /* Paleta InTouch: navy -> azul medio -> celeste (del logo) */
  --touch-navy:#14395C;
  --touch-blue:#18709C;
  --touch-cyan:#1CA7DF;
  --touch-gradient:linear-gradient(120deg,var(--touch-cyan) 0%,var(--touch-blue) 100%);

  --accent-catalogo:#14395C;
  --accent-edificio:#18709C;
  --accent-experiencia:#1CA7DF;

  --icon-chip-bg:#EEF3F6;
  --radius-sm:10px;
  --radius:16px;
  --radius-lg:22px;
  --sidebar-w:80px;
  --sidebar-h-mobile:64px;
}

:root[data-theme="dark"]{
  color-scheme:dark;
  --text:#EAF1F6;
  --text-soft:#A9C0CF;
  --text-muted:#6F8CA0;
  --bg:#0A2033;
  --surface:#102A42;
  --surface-2:#0D2537;
  --border:rgba(255,255,255,0.09);
  --border-strong:rgba(255,255,255,0.16);
  --shadow-sm:0 1px 2px rgba(0,0,0,0.25);
  --shadow:0 10px 28px rgba(0,0,0,0.35);
  --shadow-lg:0 24px 56px rgba(0,0,0,0.5);
  --icon-chip-bg:#F2F6F8;
}

@media (prefers-color-scheme: dark){
  :root:not([data-theme="light"]){
    color-scheme:dark;
    --text:#EAF1F6;
    --text-soft:#A9C0CF;
    --text-muted:#6F8CA0;
    --bg:#0A2033;
    --surface:#102A42;
    --surface-2:#0D2537;
    --border:rgba(255,255,255,0.09);
    --border-strong:rgba(255,255,255,0.16);
    --shadow-sm:0 1px 2px rgba(0,0,0,0.25);
    --shadow:0 10px 28px rgba(0,0,0,0.35);
    --shadow-lg:0 24px 56px rgba(0,0,0,0.5);
    --icon-chip-bg:#F2F6F8;
  }
}

*{box-sizing:border-box;}
html,body{margin:0;padding:0; overflow-x:hidden;}
html{scrollbar-width:thin; scrollbar-color:var(--border-strong) transparent;}
body{
  background:var(--bg); color:var(--text);
  font-family:'HandoSoft', 'Segoe UI', sans-serif;
  font-weight:400;
  -webkit-font-smoothing:antialiased;
  min-height:100vh;
}
h1,h2,h3,h4{ font-family:'HandoSoft', sans-serif; font-weight:700; margin:0; letter-spacing:-0.01em; }
p{ margin:0; }
button{ font-family:inherit; }
a{ color:inherit; text-decoration:none; }
::-webkit-scrollbar{ width:9px; height:9px; }
::-webkit-scrollbar-track{ background:transparent; }
::-webkit-scrollbar-thumb{ background:var(--border-strong); border-radius:100px; }

.visually-hidden{
  position:absolute; width:1px; height:1px; padding:0; margin:-1px;
  overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0;
}

/* ---------- Layout ---------- */
.app{ min-height:100vh; padding-left:var(--sidebar-w); }

/* ---------- Sidebar ----------
   Fija al viewport: tamaño constante, nunca se estira ni se corta
   con el largo de la página. */
.sidebar{
  background:var(--ink);
  background-image:linear-gradient(180deg, var(--ink-2), var(--ink) 55%);
  display:flex; flex-direction:column; align-items:center;
  padding:22px 0 18px; gap:6px;
  position:fixed; top:0; left:0; width:var(--sidebar-w); height:100vh;
  z-index:70;
}
.sidebar .brand-mark{
  width:40px; height:40px; display:flex; align-items:center; justify-content:center;
  margin-bottom:22px; cursor:pointer; border:none; background:transparent; padding:0;
}
.sidebar .brand-mark img{ width:100%; height:100%; object-fit:contain; }
.sidebar nav{ display:flex; flex-direction:column; gap:6px; width:100%; align-items:center; }
.sidebar .nav-group{ display:flex; flex-direction:column; gap:6px; width:100%; align-items:center; }
.sidebar .nav-sep{ width:32px; height:1px; background:rgba(255,255,255,0.14); margin:12px 0; }
.sidebar .spacer{ flex:1; }

.rail-btn{
  position:relative;
  width:48px; height:48px; border:none; background:transparent; border-radius:14px;
  color:#8FADC2; cursor:pointer; display:flex; align-items:center; justify-content:center;
  transition:background .15s ease, color .15s ease, transform .15s ease;
}
.rail-btn svg{ width:21px; height:21px; stroke-linecap:round; stroke-linejoin:round; }
.rail-btn:hover{ background:rgba(255,255,255,0.09); color:#fff; }
.rail-btn:active{ transform:scale(0.94); }
.rail-btn.active{ background:var(--touch-gradient); color:#fff; box-shadow:0 6px 16px rgba(0,0,0,0.28); }
.rail-btn .tooltip{
  position:absolute; left:calc(100% + 12px); top:50%; transform:translateY(-50%) translateX(-4px);
  background:var(--ink); color:#fff; font-size:12.5px; font-weight:600; white-space:nowrap;
  padding:7px 12px; border-radius:9px; box-shadow:var(--shadow-lg);
  opacity:0; pointer-events:none; transition:opacity .15s ease, transform .15s ease;
  z-index:80;
}
.rail-btn:hover .tooltip{ opacity:1; transform:translateY(-50%) translateX(0); }

.theme-toggle{ position:relative; }
.theme-toggle svg.icon-moon{ display:none; }
:root[data-theme="dark"] .theme-toggle svg.icon-sun{ display:none; }
:root[data-theme="dark"] .theme-toggle svg.icon-moon{ display:block; }
@media (prefers-color-scheme: dark){
  :root:not([data-theme="light"]) .theme-toggle svg.icon-sun{ display:none; }
  :root:not([data-theme="light"]) .theme-toggle svg.icon-moon{ display:block; }
}

.indatta-credit{
  width:48px; height:32px; margin-top:8px; display:flex; align-items:center; justify-content:center;
}
.indatta-credit img{ width:22px; height:22px; object-fit:contain; }

/* ---------- Main ---------- */
main.content{ padding:40px 52px 90px; max-width:1240px; margin:0 auto; width:100%; }

.crumb{ display:flex; align-items:center; gap:6px; font-size:13px; color:var(--text-muted); margin-bottom:8px; min-height:18px; flex-wrap:wrap; }
.crumb button{ background:none; border:none; padding:0; color:var(--text-muted); font-size:13px; cursor:pointer; font-family:inherit; }
.crumb button:hover{ color:var(--ink-2); text-decoration:underline; }
:root[data-theme="dark"] .crumb button:hover{ color:#fff; }
@media (prefers-color-scheme: dark){
  :root:not([data-theme="light"]) .crumb button:hover{ color:#fff; }
}
.crumb .sep{ opacity:.6; }
.crumb .current{ color:var(--text); font-weight:600; }

/* ---------- Topbar ---------- */
.topbar{ display:flex; align-items:center; justify-content:space-between; margin-bottom:22px; gap:16px; flex-wrap:wrap; row-gap:12px; }
.topbar .logo img{ height:30px; display:block; }
:root[data-theme="dark"] .topbar .logo .logo-light{ display:block; }
:root[data-theme="dark"] .topbar .logo .logo-dark{ display:none; }
.topbar .logo .logo-light{ display:none; }
.topbar .logo .logo-dark{ display:block; }
@media (prefers-color-scheme: dark){
  :root:not([data-theme="light"]) .topbar .logo .logo-light{ display:block; }
  :root:not([data-theme="light"]) .topbar .logo .logo-dark{ display:none; }
}

.jira-btn{
  display:inline-flex; align-items:center; gap:9px;
  background:var(--ink); color:#fff; border:none; border-radius:100px;
  padding:11px 20px 11px 18px; font-size:13.5px; font-weight:700;
  cursor:pointer; transition:transform .15s ease, box-shadow .15s ease; white-space:nowrap;
  box-shadow:var(--shadow-sm);
}
.jira-btn svg{ width:16px; height:16px; }
.jira-btn:hover{ transform:translateY(-1px); box-shadow:var(--shadow); background:var(--ink-2); }

/* ---------- Hero + search ---------- */
.hero{ text-align:center; max-width:680px; margin:38px auto 40px; position:relative; }
.hero .glow{
  position:absolute; left:50%; top:50%; width:420px; height:420px;
  transform:translate(-50%,-50%); z-index:-1;
  background:radial-gradient(circle at 50% 50%, rgba(28,167,223,0.10) 0%, rgba(24,112,156,0.045) 45%, transparent 70%);
  filter:blur(28px); pointer-events:none;
}
.hero h1{ font-size:clamp(28px, 3.6vw, 40px); line-height:1.15; margin:0 0 20px; }
.hero p{ font-size:15px; color:var(--text-soft); line-height:1.6; margin:0 0 30px; }

.search-wrap{ position:relative; max-width:560px; margin:0 auto; }
.search{
  display:flex; align-items:center; gap:12px; background:var(--surface);
  border:1px solid var(--border); border-radius:100px; padding:15px 20px;
  box-shadow:var(--shadow); position:relative; z-index:2;
}
.search svg{ width:18px; height:18px; color:var(--text-muted); flex-shrink:0; }
.search input{ border:none; outline:none; flex:1; font-size:14.5px; color:var(--text); background:transparent; font-family:inherit; }
.search input::placeholder{ color:var(--text-muted); }
.search .clear-btn{ border:none; background:var(--surface-2); color:var(--text-muted); width:22px; height:22px; border-radius:50%; display:none; align-items:center; justify-content:center; cursor:pointer; }
.search .clear-btn svg{ width:12px; height:12px; }
.search-wrap.has-value .clear-btn{ display:flex; }

.search-results{
  position:absolute; top:calc(100% + 10px); left:0; right:0;
  background:var(--surface); border:1px solid var(--border); border-radius:var(--radius);
  box-shadow:var(--shadow-lg); padding:8px; max-height:420px; overflow-y:auto;
  z-index:60; text-align:left; display:none;
}
.search-results.open{ display:block; }
.search-results .sr-empty{ padding:22px 16px; text-align:center; color:var(--text-muted); font-size:13.5px; }
.search-results .sr-group-label{ font-size:11px; font-weight:700; letter-spacing:.05em; text-transform:uppercase; color:var(--text-muted); padding:10px 12px 6px; }
.sr-item{
  display:flex; align-items:center; gap:12px; padding:9px 10px; border-radius:12px; cursor:pointer;
  border:none; background:none; width:100%; text-align:left; font-family:inherit;
}
.sr-item:hover, .sr-item.hl{ background:var(--surface-2); }
.sr-item .sr-icon{ width:34px; height:34px; border-radius:10px; background:var(--icon-chip-bg); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.sr-item .sr-icon img{ width:20px; height:20px; object-fit:contain; }
.sr-item .sr-text{ min-width:0; }
.sr-item .sr-name{ font-size:13.5px; font-weight:600; color:var(--text); white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.sr-item .sr-path{ font-size:11.5px; color:var(--text-muted); white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }

/* ---------- Section heading ---------- */
.section-head{ display:flex; align-items:baseline; justify-content:space-between; margin:0 0 18px; gap:12px; }
.section-head h2{ font-size:19px; }
.section-head .sub{ font-size:13px; color:var(--text-muted); }
.back-link{
  display:inline-flex; align-items:center; gap:6px; border:none; background:none; cursor:pointer;
  color:var(--text-soft); font-size:13px; font-weight:600; padding:0; margin-bottom:16px; font-family:inherit;
}
.back-link svg{ width:15px; height:15px; }
.back-link:hover{ color:var(--text); }

/* ---------- Group tiles (home) ---------- */
.groups{ display:grid; grid-template-columns:repeat(3, 1fr); gap:18px; margin:0 0 52px; }
.group-tile{
  background:var(--surface); border:1px solid var(--border); border-radius:var(--radius-lg);
  padding:26px 24px; box-shadow:var(--shadow-sm); cursor:pointer; text-align:left;
  display:flex; flex-direction:column; gap:14px; transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  font-family:inherit; position:relative; overflow:hidden;
}
.group-tile:hover{ transform:translateY(-3px); box-shadow:var(--shadow-lg); border-color:transparent; }
.group-tile .g-icon{
  width:52px; height:52px; border-radius:15px; display:flex; align-items:center; justify-content:center;
  color:#fff;
}
.group-tile .g-icon svg{ width:24px; height:24px; }
.group-tile h3{ font-size:16.5px; }
.group-tile p{ font-size:13px; color:var(--text-soft); line-height:1.55; }
.group-tile .g-count{ font-size:12px; color:var(--text-muted); font-weight:600; margin-top:auto; display:flex; align-items:center; gap:6px; }
.group-tile .g-count svg{ width:13px; height:13px; }

.group-tile[data-accent="catalogo"] .g-icon{ background:var(--accent-catalogo); }
.group-tile[data-accent="edificio"] .g-icon{ background:var(--accent-edificio); }
.group-tile[data-accent="experiencia"] .g-icon{ background:var(--accent-experiencia); }

/* ---------- Category grid ---------- */
.cat-grid{ display:grid; grid-template-columns:repeat(auto-fill, minmax(230px, 1fr)); gap:16px; margin-bottom:12px; }
.cat-card{
  background:var(--surface); border:1px solid var(--border); border-radius:var(--radius);
  padding:20px 20px 18px; box-shadow:var(--shadow-sm); cursor:pointer; text-align:left;
  display:flex; flex-direction:column; gap:12px; transition:transform .16s ease, box-shadow .16s ease;
  font-family:inherit;
}
.cat-card:hover{ transform:translateY(-2px); box-shadow:var(--shadow); }
.cat-card .icon-chip{ width:48px; height:48px; border-radius:13px; background:var(--icon-chip-bg); display:flex; align-items:center; justify-content:center; }
.cat-card .icon-chip img{ width:27px; height:27px; object-fit:contain; }
.cat-card h3{ font-size:14.5px; font-weight:700; line-height:1.3; }
.cat-card p{ font-size:12.5px; color:var(--text-muted); line-height:1.5; display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden; }
.cat-card .cat-count{ font-size:11.5px; color:var(--text-muted); font-weight:600; display:inline-flex; align-items:center; gap:5px; }
.cat-card .cat-count svg{ width:12px; height:12px; flex-shrink:0; }

/* ---------- Service grid ---------- */
.category-banner{
  display:flex; align-items:center; gap:16px; background:var(--surface); border:1px solid var(--border);
  border-radius:var(--radius-lg); padding:22px 24px; margin-bottom:28px; box-shadow:var(--shadow-sm);
}
.category-banner .icon-chip{ width:58px; height:58px; border-radius:16px; background:var(--icon-chip-bg); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.category-banner .icon-chip img{ width:32px; height:32px; object-fit:contain; }
.category-banner h1{ font-size:21px; margin-bottom:5px; }
.category-banner p{ font-size:13.5px; color:var(--text-soft); line-height:1.55; max-width:640px; }

.serv-grid{ display:grid; grid-template-columns:repeat(auto-fill, minmax(240px, 1fr)); gap:16px; }
.serv-card{
  background:var(--surface); border:1px solid var(--border); border-radius:var(--radius);
  padding:20px; box-shadow:var(--shadow-sm); cursor:pointer; text-align:left;
  display:flex; align-items:center; gap:14px; transition:transform .16s ease, box-shadow .16s ease, border-color .16s ease;
  font-family:inherit;
}
.serv-card:hover{ transform:translateY(-2px); box-shadow:var(--shadow); border-color:transparent; }
.serv-card .icon-chip{ width:44px; height:44px; border-radius:12px; background:var(--icon-chip-bg); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.serv-card .icon-chip img{ width:24px; height:24px; object-fit:contain; }
.serv-card .icon-chip svg{ width:20px; height:20px; color:var(--ink); }
.serv-card .s-text{ min-width:0; flex:1; }
.serv-card h3{ font-size:14px; font-weight:700; line-height:1.35; margin-bottom:3px; }
.serv-card .s-meta{ font-size:11.5px; color:var(--text-muted); }
.serv-card .go{ color:var(--text-muted); flex-shrink:0; }
.serv-card .go svg{ width:16px; height:16px; }
.serv-card:hover .go{ color:var(--touch-cyan); }

/* ---------- Empty search state within views ---------- */
.empty-state{ text-align:center; padding:60px 20px; color:var(--text-muted); }
.empty-state svg{ width:40px; height:40px; margin-bottom:14px; opacity:.5; }
.empty-state p{ font-size:14px; }

/* ---------- Modal (detalle de servicio) ---------- */
.modal-overlay{
  position:fixed; inset:0; background:rgba(9,26,41,0.52); backdrop-filter:blur(2px);
  display:flex; align-items:center; justify-content:center; padding:24px; z-index:100;
  opacity:0; pointer-events:none; transition:opacity .18s ease;
}
.modal-overlay.open{ opacity:1; pointer-events:auto; }
.modal{
  background:var(--surface); border-radius:24px; max-width:560px; width:100%; max-height:88vh;
  overflow-y:auto; box-shadow:var(--shadow-lg); transform:translateY(14px) scale(.98); transition:transform .2s ease;
  border:1px solid var(--border);
}
.modal-overlay.open .modal{ transform:translateY(0) scale(1); }
.modal-head{ display:flex; align-items:flex-start; gap:16px; padding:26px 26px 18px; border-bottom:1px solid var(--border); }
.modal-head .icon-chip{ width:54px; height:54px; border-radius:15px; background:var(--icon-chip-bg); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.modal-head .icon-chip img{ width:30px; height:30px; object-fit:contain; }
.modal-head .icon-chip svg{ width:24px; height:24px; color:var(--ink); }
.modal-head .mh-text{ flex:1; min-width:0; }
.modal-head .mh-path{ font-size:11.5px; color:var(--text-muted); font-weight:600; text-transform:uppercase; letter-spacing:.04em; margin-bottom:5px; }
.modal-head h2{ font-size:19px; line-height:1.3; }
.modal-close{
  border:none; background:var(--surface-2); color:var(--text-soft); width:32px; height:32px; border-radius:50%;
  display:flex; align-items:center; justify-content:center; cursor:pointer; flex-shrink:0;
}
.modal-close svg{ width:15px; height:15px; }
.modal-close:hover{ background:var(--border-strong); color:var(--text); }

.modal-body{ padding:22px 26px 8px; }
.modal-body .desc{ font-size:13.5px; color:var(--text-soft); line-height:1.6; margin-bottom:22px; }
.modal-section-title{ font-size:11.5px; font-weight:700; text-transform:uppercase; letter-spacing:.05em; color:var(--text-muted); margin-bottom:10px; }
.field-list{ list-style:none; margin:0 0 22px; padding:0; display:flex; flex-wrap:wrap; gap:8px; }
.field-list li{
  display:inline-flex; align-items:center; gap:6px; font-size:12.5px; font-weight:600; color:var(--text);
  background:var(--surface-2); border:1px solid var(--border); padding:7px 12px; border-radius:100px;
}
.field-list li svg{ width:12px; height:12px; color:var(--text-muted); flex-shrink:0; }
.field-list.empty{ color:var(--text-muted); font-size:13px; font-weight:500; background:none; border:none; padding:0; }

.owner-row{ display:flex; align-items:center; gap:10px; margin-bottom:24px; font-size:13px; color:var(--text-soft); }
.owner-row .av{ width:26px; height:26px; border-radius:50%; background:var(--touch-gradient); color:#fff; font-size:11px; font-weight:700; display:flex; align-items:center; justify-content:center; flex-shrink:0; }

/* ---------- Formulario de solicitud (Abastecimiento · Cotizaciones) ---------- */
.request-form{ display:flex; flex-direction:column; gap:14px; margin-bottom:20px; }
.form-field{ display:flex; flex-direction:column; gap:6px; font-size:12.5px; font-weight:700; color:var(--text-soft); }
.form-field input,
.form-field textarea{
  font-family:inherit; font-size:13.5px; font-weight:400; color:var(--text);
  background:var(--surface-2); border:1px solid var(--border); border-radius:12px;
  padding:10px 13px; outline:none; resize:vertical; transition:border-color .15s ease, box-shadow .15s ease;
}
.form-field input:focus,
.form-field textarea:focus{ border-color:var(--touch-blue); box-shadow:0 0 0 3px rgba(24,112,156,0.16); }
.form-status{ font-size:12.5px; font-weight:600; text-align:center; margin:0 0 4px; padding:9px 12px; border-radius:10px; }
.form-status.ok{ color:#0E7A3F; background:rgba(20,150,80,0.12); }
.form-status.error{ color:#C4281B; background:rgba(224,32,24,0.12); }

.modal-foot{ padding:18px 26px 26px; border-top:1px solid var(--border); display:flex; flex-direction:column; gap:10px; }
.modal-foot .note{ font-size:11.5px; color:var(--text-muted); line-height:1.5; text-align:center; }
.cta-jira{
  display:flex; align-items:center; justify-content:center; gap:10px; width:100%;
  background:var(--touch-gradient); color:#fff; border:none; border-radius:100px;
  padding:14px 20px; font-size:14.5px; font-weight:700; cursor:pointer;
  box-shadow:0 10px 24px rgba(24,112,156,0.30); transition:transform .15s ease, box-shadow .15s ease;
}
.cta-jira svg{ width:17px; height:17px; }
.cta-jira:hover{ transform:translateY(-1px); box-shadow:0 14px 30px rgba(24,112,156,0.4); }
.cta-jira:active{ transform:translateY(0); }

/* ---------- Responsive ---------- */
@media (max-width: 900px){
  .groups{ grid-template-columns:1fr; }
  .cat-grid{ grid-template-columns:repeat(auto-fill, minmax(190px,1fr)); }
}
@media (max-width: 720px){
  .app{ padding-left:0; padding-top:var(--sidebar-h-mobile); }
  .sidebar{
    position:fixed; top:0; left:0; right:0; width:100%; height:var(--sidebar-h-mobile);
    flex-direction:row; padding:0 14px; gap:10px;
    z-index:90; box-shadow:0 2px 10px rgba(0,0,0,.15);
  }
  .sidebar .brand-mark{ margin-bottom:0; margin-right:2px; }
  .sidebar nav{ flex-direction:row; flex:1; gap:4px; }
  .sidebar .nav-group{ flex-direction:row; gap:4px; }
  .sidebar .nav-sep{ width:1px; height:26px; margin:0 4px; }
  .sidebar .spacer{ display:none; }
  .indatta-credit{ width:auto; height:auto; margin-top:0; }
  .rail-btn .tooltip{ left:50%; top:calc(100% + 10px); transform:translateX(-50%) translateY(-4px); }
  .rail-btn:hover .tooltip{ transform:translateX(-50%) translateY(0); }
  main.content{ padding:26px 18px 60px; }
  .serv-grid, .cat-grid{ grid-template-columns:1fr 1fr; }
}
@media (max-width: 460px){
  .serv-grid, .cat-grid{ grid-template-columns:1fr; }
  .hero p{ font-size:14px; }
}
