/* ═══════════════════════════════════════════════════════
   EGW TELEKOM — DESIGN SYSTEM
   Single source of truth for tokens + shared components.
   Imported by every page in the site.
   ═══════════════════════════════════════════════════════ */

:root {
  /* — Light surfaces — */
  --bg: #f0eee9;
  --bg-warm: #e9e6e0;
  --bg-accent: #f6f4f0;
  --off-white: #f5f3f0;
  --white: #ffffff;

  /* — Deep surfaces — */
  --deep: #1b1e24;
  --deep-2: #1f232b;
  --deep-card: #22262e;
  --deep-soft: #282d37;

  /* — Text — */
  --charcoal: #1a1a1a;
  --text: #1c1c1c;
  --text-dim: #4a4a4a;
  --text-muted: #888;

  /* — Neutral scale — */
  --mid-grey: #555;
  --grey: #777;
  --light-grey: #aaa;
  --silver: #ccc;

  /* — Accent (red is the ONLY chromatic in the system) — */
  --red: #c43030;
  --red-deep: #a02525;
  --red-hover: #d63838;
  --red-glow: rgba(196,48,48,0.10);
  --red-soft: rgba(196,48,48,0.05);
  --red-line: rgba(196,48,48,0.08);
  --red-strong: rgba(196,48,48,0.25);

  /* — Glass / borders — */
  --glass-d: rgba(255,255,255,0.05);
  --glass-d-b: rgba(255,255,255,0.08);
  --glass-d-bh: rgba(255,255,255,0.16);
  --border-l: rgba(0,0,0,0.06);
  --border-lh: rgba(0,0,0,0.13);

  /* — Typography — */
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Outfit', sans-serif;
  --font-mono: ui-monospace, 'JetBrains Mono', 'Menlo', monospace;

  /* — Motion — */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out: cubic-bezier(0.2, 0.7, 0.2, 1);

  /* — Layout — */
  --nav-h: 78px;
  --container: 1160px;
  --container-wide: 1280px;
}

* , *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

::selection { background: var(--red); color: #fff; }
a { color: inherit; }
img, svg { display: block; max-width: 100%; }

/* — Subtle grain over everything — */
body::after {
  content: ''; position: fixed; inset: 0; z-index: 1;
  pointer-events: none; opacity: 0.018;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

#circuitCanvas {
  position: fixed; top: 0; left: 0;
  width: 100vw; height: 100vh;
  z-index: 0; pointer-events: none;
}

.page-content { position: relative; z-index: 2; }

/* ─── CONTAINERS ─── */
.wrap { max-width: var(--container); margin: 0 auto; padding: 0 clamp(1.5rem, 5vw, 5rem); }
.wrap-wide { max-width: var(--container-wide); margin: 0 auto; padding: 0 clamp(1.5rem, 5vw, 5rem); }

/* ═══════ NAV ═══════ */
nav.egw-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 clamp(1.5rem, 5vw, 5rem);
  background: rgba(240,238,233,0.7);
  backdrop-filter: blur(24px) saturate(1.3);
  -webkit-backdrop-filter: blur(24px) saturate(1.3);
  border-bottom: 1px solid var(--border-l);
  transition: background 0.4s ease, box-shadow 0.4s ease;
}
nav.egw-nav.scrolled { background: rgba(240,238,233,0.92); box-shadow: 0 1px 24px rgba(0,0,0,0.04); }

.nav-brand { display: flex; align-items: center; gap: 0.7rem; text-decoration: none; }
.nav-mark { width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.nav-mark svg { width: 100%; height: 100%; display: block; }
.nav-wordmark { font-family: var(--font-display); font-size: 2.4rem; letter-spacing: 0.14em; color: var(--charcoal); line-height: 1; display: inline-block; }
.nav-wordmark .egw { color: var(--red); }

.nav-links { display: flex; align-items: center; gap: 0; list-style: none; }
.nav-links > li { position: relative; }
.nav-links a {
  font-weight: 500; font-size: 0.82rem; letter-spacing: 0.03em;
  text-decoration: none; color: var(--mid-grey);
  padding: 0.45rem 1.1rem; border-radius: 6px;
  transition: color 0.25s ease, background 0.25s ease;
  display: inline-flex; align-items: center; gap: 0.35rem;
}
.nav-links a:hover { color: var(--charcoal); }
.nav-links a.active { color: var(--charcoal); }
.nav-links a.active::after {
  content: ''; position: absolute; left: 1.1rem; right: 1.1rem; bottom: -2px;
  height: 2px; background: var(--red); border-radius: 1px;
}

.nav-links .nav-cta {
  margin-left: 0.5rem; background: var(--red); color: #fff;
  font-weight: 600; padding: 0.5rem 1.4rem;
}
.nav-links .nav-cta:hover { background: var(--red-hover); color: #fff; }
.nav-links .nav-cta.active { color: #fff; background: var(--red-hover); }
.nav-links .nav-cta.active::after { display: none; }

/* dropdown */
.nav-dd {
  position: absolute; top: calc(100% + 6px); left: 50%; transform: translateX(-50%) translateY(-6px);
  min-width: 280px;
  background: rgba(252,250,246,0.97);
  backdrop-filter: blur(24px) saturate(1.3);
  border: 1px solid var(--border-l);
  border-radius: 14px;
  padding: 0.6rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
  opacity: 0; pointer-events: none;
  transition: all 0.2s var(--ease);
  list-style: none;
}
.nav-links li:hover > .nav-dd,
.nav-links li:focus-within > .nav-dd {
  opacity: 1; pointer-events: auto; transform: translateX(-50%) translateY(0);
}
.nav-dd a {
  display: flex; padding: 0.7rem 0.9rem; border-radius: 8px;
  align-items: flex-start; gap: 0.85rem; flex-direction: row;
}
.nav-dd a:hover { background: rgba(196,48,48,0.05); }
.nav-dd-mark {
  width: 6px; height: 24px; border-radius: 2px; flex-shrink: 0; margin-top: 3px;
}
.nav-dd-text { display: flex; flex-direction: column; gap: 0.15rem; }
.nav-dd-title {
  font-family: var(--font-display); font-size: 1.05rem; letter-spacing: 0.06em;
  color: var(--charcoal); line-height: 1;
}
.nav-dd-sub {
  font-size: 0.74rem; color: var(--text-muted); font-weight: 400; letter-spacing: 0;
}

.nav-burger { display: none; background: none; border: none; color: var(--charcoal); cursor: pointer; padding: 0.5rem; }
.nav-burger svg { width: 22px; height: 22px; }

/* ═══════ BUTTONS ═══════ */
.btn {
  font-family: var(--font-body); font-weight: 600; font-size: 0.85rem;
  letter-spacing: 0.03em; text-decoration: none; border: none; cursor: pointer;
  border-radius: 8px; padding: 0.8rem 1.8rem;
  display: inline-flex; align-items: center; gap: 0.5rem;
  transition: all 0.3s var(--ease);
}
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }
.btn-red { background: var(--red); color: #fff; }
.btn-red:hover { background: var(--red-hover); transform: translateY(-2px); box-shadow: 0 8px 30px var(--red-strong); }
.btn-outline-dark { background: transparent; color: var(--text-dim); border: 1px solid var(--border-lh); }
.btn-outline-dark:hover { border-color: var(--charcoal); color: var(--charcoal); }
.btn-outline-light { background: transparent; color: var(--silver); border: 1px solid var(--glass-d-b); }
.btn-outline-light:hover { border-color: var(--silver); color: #fff; }
.btn-ghost { background: transparent; color: var(--text-dim); padding: 0.6rem 1rem; }
.btn-ghost:hover { color: var(--red); }
.btn-sm { padding: 0.55rem 1.2rem; font-size: 0.78rem; }
.btn-lg { padding: 1rem 2.2rem; font-size: 0.95rem; }

/* ═══════ SECTIONS ═══════ */
.sec { padding: 7rem 0; position: relative; }
.sec-lg { padding: 9rem 0; position: relative; }
.sec-sm { padding: 4.5rem 0; position: relative; }

.sec-label { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--red); margin-bottom: 0.7rem; }
.sec-title { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); letter-spacing: 0.02em; color: var(--charcoal); line-height: 1; margin-bottom: 0.7rem; }
.sec-title .red { color: var(--red); }
.sec-desc { font-size: 1.02rem; font-weight: 300; color: var(--text-dim); max-width: 540px; }
.sec-header { margin-bottom: 3.5rem; }

.sec-deep, .sec-deep-lg {
  position: relative;
  background: linear-gradient(180deg, var(--deep) 0%, var(--deep-2) 100%);
  color: var(--off-white);
}
.sec-deep { padding: 7rem 0; }
.sec-deep-lg { padding: 9rem 0; }
.sec-deep .sec-title, .sec-deep-lg .sec-title { color: #fff; }
.sec-deep .sec-desc, .sec-deep-lg .sec-desc { color: var(--light-grey); }
.sec-deep .sec-label, .sec-deep-lg .sec-label { color: var(--red); }

/* angled cuts */
.angle-top::before {
  content: ''; position: absolute;
  top: -48px; left: 0; right: 0; height: 50px;
  background: var(--deep);
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
}
.angle-bottom::after {
  content: ''; position: absolute;
  bottom: -48px; left: 0; right: 0; height: 50px;
  background: var(--deep);
  clip-path: polygon(0 0, 100% 0, 0 100%);
  z-index: 3;
}
.deep-wrap { position: relative; z-index: 2; }
.divider-light { height: 1px; background: var(--border-l); }
.divider-deep { height: 1px; background: var(--glass-d-b); }

/* ═══════ CARDS ═══════ */
.card-light {
  background: rgba(255,255,255,0.65);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-l);
  border-radius: 16px;
  box-shadow: 0 12px 48px rgba(0,0,0,0.05);
}
.card-deep {
  background: rgba(34,38,46,0.7);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-d-b);
  border-radius: 14px;
  transition: all 0.35s var(--ease);
}
.card-deep:hover {
  border-color: var(--glass-d-bh);
  background: rgba(40,45,55,0.85);
  transform: translateY(-3px);
}

/* ═══════ PARTNER MARQUEE ═══════ */
.partner-strip {
  border-top: 1px solid var(--border-l); border-bottom: 1px solid var(--border-l);
  padding: 1.3rem 0; overflow: hidden;
  background: rgba(240,238,233,0.5);
  backdrop-filter: blur(8px);
  position: relative; z-index: 2;
}
.marquee-track { display: flex; gap: 3rem; animation: mq 35s linear infinite; width: max-content; }
.marquee-track span {
  font-family: var(--font-display); font-size: 1.15rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(26,26,26,0.7); white-space: nowrap;
  display: flex; align-items: center; gap: 3rem;
}
.marquee-track span::after { content: '◆'; font-size: 0.4rem; color: var(--red); opacity: 0.45; }
@keyframes mq { to { transform: translateX(-50%); } }

/* ═══════ FOOTER ═══════ */
.egw-footer {
  position: relative; z-index: 2;
  background: var(--bg);
  border-top: 1px solid var(--border-l);
  padding: 5rem 0 2.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 3rem;
  margin-bottom: 4rem;
}
.footer-brand { max-width: 280px; }
.footer-brand .nav-brand { margin-bottom: 1.2rem; }
.footer-brand p { font-size: 0.85rem; font-weight: 300; color: var(--text-muted); line-height: 1.6; margin-bottom: 1.4rem; }
.footer-iso {
  display: inline-flex; align-items: center; gap: 0.45rem;
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--red);
  padding: 0.4rem 0.7rem;
  border: 1px solid var(--red-line); border-radius: 6px;
  background: var(--red-soft);
  text-decoration: none;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease);
}
a.footer-iso:hover { background: rgba(196,48,48,0.12); border-color: var(--red); }
.footer-iso::before { content: ''; width: 6px; height: 6px; background: var(--red); border-radius: 50%; }

.footer-col h4 {
  font-family: var(--font-display); font-size: 0.95rem; letter-spacing: 0.14em;
  color: var(--charcoal); margin-bottom: 1.2rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col li { font-size: 0.83rem; color: var(--text-muted); }
.footer-col a {
  font-size: 0.83rem; color: var(--text-muted); text-decoration: none;
  transition: color 0.2s ease;
}
.footer-col a:hover { color: var(--charcoal); }
.footer-col p { font-size: 0.83rem; color: var(--text-muted); font-weight: 300; line-height: 1.7; }
.footer-col p strong { color: var(--charcoal); font-weight: 500; }

.footer-bottom {
  border-top: 1px solid var(--border-l);
  padding-top: 1.8rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; flex-wrap: wrap;
}
.footer-bottom-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-bottom-links a { font-size: 0.76rem; color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
.footer-bottom-links a:hover { color: var(--charcoal); }
.footer-copy { font-size: 0.76rem; color: var(--silver); }

/* ═══════ COMMON HERO BITS ═══════ */
.iso-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.73rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--red); margin-bottom: 1.6rem;
}
.iso-badge .dot { width: 7px; height: 7px; background: var(--red); border-radius: 50%; animation: blink 2.5s ease-in-out infinite; }
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0.2; } }

/* ═══════ SCROLL REVEAL ═══════ */
.rv { opacity: 0; transform: translateY(28px); transition: opacity 0.65s var(--ease), transform 0.65s var(--ease); }
.rv.vis { opacity: 1; transform: translateY(0); }
.rv-d1 { transition-delay: 0.08s; }
.rv-d2 { transition-delay: 0.16s; }
.rv-d3 { transition-delay: 0.24s; }
.rv-d4 { transition-delay: 0.32s; }

/* ═══════ FADE UP (hero) ═══════ */
@keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
.fade-up { animation: fadeUp 0.7s var(--ease) backwards; }
.fade-up.d1 { animation-delay: 0.08s; }
.fade-up.d2 { animation-delay: 0.16s; }
.fade-up.d3 { animation-delay: 0.24s; }
.fade-up.d4 { animation-delay: 0.32s; }
.fade-up.d5 { animation-delay: 0.40s; }

/* ═══════ PAGE HEADER (inner pages) ═══════ */
.page-head {
  padding: calc(var(--nav-h) + 5rem) 0 5rem;
  position: relative;
}
.page-head h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  line-height: 0.95; letter-spacing: 0.02em;
  color: var(--charcoal);
  margin-bottom: 1.2rem;
  max-width: 14ch;
}
.page-head h1 .red { color: var(--red); }
.page-head .lead {
  font-size: 1.12rem; font-weight: 300; color: var(--text-dim);
  max-width: 580px; line-height: 1.65;
}
.crumbs {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.92rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 1.6rem;
}
.crumbs a { text-decoration: none; color: var(--text-muted); transition: color 0.2s; }
.crumbs a:hover { color: var(--red); }
.crumbs .sep { color: var(--silver); }
.crumbs > span:last-child:not(.sep) { color: var(--charcoal); font-weight: 700; }

/* ═══════ CTA CARD (reusable) ═══════ */
.cta-card {
  border-radius: 20px; border: 1px solid var(--border-l);
  background: rgba(255,255,255,0.65);
  backdrop-filter: blur(16px);
  padding: clamp(3rem, 6vw, 5rem) clamp(2rem, 5vw, 4rem);
  text-align: center; position: relative; overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.04);
}
.cta-card::before {
  content: ''; position: absolute; top: -50%; left: -20%;
  width: 400px; height: 400px; border-radius: 50%;
  background: var(--red-glow); filter: blur(80px); pointer-events: none;
}
.cta-card > * { position: relative; z-index: 1; }
.cta-card .sec-title { margin-bottom: 0.6rem; }
.cta-card .sec-desc { margin: 0 auto 2.5rem; max-width: 480px; }
.cta-btns { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* ═══════ SERVICE OVERVIEW (homepage) ═══════ */
.svc-overview { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.svc-card {
  display: flex; flex-direction: column;
  padding: 2rem 1.8rem; border-radius: 16px;
  background: rgba(255,255,255,0.78); backdrop-filter: blur(12px);
  border: 1px solid var(--border-l);
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
  text-decoration: none; color: inherit;
  position: relative; overflow: hidden;
}
.svc-card::before {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px;
  background: var(--red);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.svc-card:hover { transform: translateY(-4px); border-color: var(--red-line); box-shadow: 0 20px 56px rgba(0,0,0,0.07); }
.svc-card:hover::before { transform: scaleX(1); }
.svc-card.relax {
  background: linear-gradient(180deg, var(--deep) 0%, var(--deep-2) 100%);
  border: 1px solid var(--glass-d-b); color: var(--off-white);
  grid-column: span 3;
  flex-direction: row; align-items: center; gap: 3rem;
}
.svc-card.relax::before { background: var(--red); }
.svc-card.relax:hover { border-color: var(--glass-d-bh); box-shadow: 0 24px 60px rgba(0,0,0,0.4); }
.svc-card .svc-mark { width: 60px; height: 60px; margin-bottom: 1.3rem; flex-shrink: 0; }
.svc-card.relax .svc-mark { width: 88px; height: 88px; margin-bottom: 0; }
.svc-card .svc-num { font-family: var(--font-display); font-size: 0.78rem; letter-spacing: 0.18em; color: var(--red); margin-bottom: 0.4rem; }
.svc-card.relax .svc-num { color: #ff6b6b; }
.svc-card h3 { font-family: var(--font-display); font-size: 1.7rem; letter-spacing: 0.05em; color: var(--charcoal); line-height: 1; margin-bottom: 0.7rem; }
.svc-card.relax h3 { color: #fff; font-size: 2.2rem; }
.svc-card .tag { font-size: 0.88rem; color: var(--text-dim); font-weight: 300; line-height: 1.55; margin-bottom: 1.2rem; flex: 1; }
.svc-card.relax .tag { color: var(--light-grey); font-size: 0.98rem; max-width: 480px; margin-bottom: 1.4rem; }
.svc-card .arrow {
  font-family: var(--font-display); font-size: 0.82rem; letter-spacing: 0.14em;
  color: var(--red); display: inline-flex; gap: 0.45rem; align-items: center;
  margin-top: auto; padding-top: 0.9rem; border-top: 1px solid var(--border-l);
}
.svc-card.relax .arrow { color: #ff6b6b; border-top-color: var(--glass-d-b); }
.svc-card .arrow svg { width: 12px; height: 12px; transition: transform 0.25s var(--ease); }
.svc-card:hover .arrow svg { transform: translateX(4px); }
.svc-card.relax > div { flex: 1; display: flex; flex-direction: column; height: 100%; justify-content: center; }

@media (max-width: 1024px) { .svc-overview { grid-template-columns: 1fr 1fr; } .svc-card.relax { grid-column: span 2; flex-direction: row; } }
@media (max-width: 640px)  { .svc-overview { grid-template-columns: 1fr; } .svc-card.relax { grid-column: span 1; flex-direction: column; align-items: flex-start; gap: 1rem; } .svc-card.relax .svc-mark { width: 60px; height: 60px; } .svc-card.relax h3 { font-size: 1.8rem; } }

/* ═══════ SERVICE PAGE HEAD ═══════ */
.svc-head { padding: calc(var(--nav-h) + 4rem) 0 4rem; }
.svc-head-grid { display: grid; grid-template-columns: 0.8fr 1.4fr; gap: 4rem; align-items: end; }
.svc-head-mark { width: 200px; height: 200px; }
.svc-head .eyebrow {
  display: inline-flex; align-items: center; gap: 0.7rem; margin-bottom: 1.4rem;
  font-family: var(--font-display); letter-spacing: 0.14em; font-size: 0.9rem; color: var(--red);
}
.svc-head .eyebrow .bar { width: 32px; height: 3px; background: var(--red); border-radius: 2px; }
.svc-head h1 { font-family: var(--font-display); font-size: clamp(3rem, 6.5vw, 5.4rem); line-height: 0.95; letter-spacing: 0.02em; color: var(--charcoal); margin-bottom: 1.2rem; }
.svc-head h1 .red { color: var(--red); }
.svc-head .lead { font-size: 1.08rem; font-weight: 300; color: var(--text-dim); max-width: 580px; line-height: 1.65; margin-bottom: 2rem; }
@media (max-width: 1024px) { .svc-head-grid { grid-template-columns: 1fr; gap: 2rem; align-items: start; } .svc-head-mark { width: 140px; height: 140px; } }

/* ═══════ CAPABILITY GRID (service pages) ═══════ */
.cap-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.cap-card {
  padding: 2rem 1.8rem; border-radius: 14px;
  background: rgba(255,255,255,0.72); border: 1px solid var(--border-l);
  transition: all 0.3s var(--ease);
}
.cap-card:hover { border-color: var(--red-line); transform: translateY(-3px); box-shadow: 0 14px 36px rgba(0,0,0,0.05); }
.cap-card .num { font-family: var(--font-display); font-size: 0.78rem; letter-spacing: 0.18em; color: var(--red); margin-bottom: 0.5rem; }
.cap-card h3 { font-family: var(--font-display); font-size: 1.4rem; letter-spacing: 0.04em; color: var(--charcoal); line-height: 1.1; margin-bottom: 0.8rem; }
.cap-card p { font-size: 0.92rem; color: var(--text-dim); font-weight: 300; line-height: 1.65; margin-bottom: 1rem; }
.cap-card ul { list-style: none; display: flex; flex-direction: column; gap: 0.45rem; }
.cap-card li { font-size: 0.86rem; color: var(--text-muted); padding-left: 1.1rem; position: relative; }
.cap-card li::before { content: '+'; position: absolute; left: 0; color: var(--red); }
@media (max-width: 768px) { .cap-grid { grid-template-columns: 1fr; } }

/* Related-services row */
.related-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.related-tile {
  padding: 1.4rem 1.4rem; border-radius: 12px; background: rgba(255,255,255,0.6);
  border: 1px solid var(--border-l); text-decoration: none; color: inherit;
  display: flex; flex-direction: column; gap: 0.5rem;
  transition: all 0.3s var(--ease);
}
.related-tile:hover { border-color: var(--red-line); transform: translateY(-2px); box-shadow: 0 12px 30px rgba(0,0,0,0.04); }
.related-tile .mini-mark { width: 32px; height: 32px; margin-bottom: 0.4rem; }
.related-tile .meta { font-family: var(--font-display); font-size: 0.7rem; letter-spacing: 0.16em; color: var(--text-muted); }
.related-tile .name { font-family: var(--font-display); font-size: 1.2rem; letter-spacing: 0.04em; color: var(--charcoal); line-height: 1; }
.related-tile .desc { font-size: 0.8rem; color: var(--text-dim); font-weight: 300; line-height: 1.5; }
@media (max-width: 768px) { .related-row { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .related-row { grid-template-columns: 1fr; } }

/* ═══════ RELAX HUB DIAGRAM ═══════ */
.relax-hub-vis { padding: 3rem; border-radius: 18px; background: linear-gradient(180deg, var(--deep) 0%, var(--deep-2) 100%); border: 1px solid var(--glass-d-b); position: relative; overflow: hidden; }
.relax-hub-vis svg { width: 100%; height: auto; max-height: 540px; display: block; }
@keyframes relaxPulse { 0% { stroke-dashoffset: 0; opacity: 0.9; } 100% { stroke-dashoffset: -80; opacity: 0.2; } }
.relax-pulse { stroke-dasharray: 4 76; animation: relaxPulse 3.2s ease-in-out infinite; }
.relax-pulse-1 { animation-delay: 0s; }
.relax-pulse-2 { animation-delay: 0.6s; }
.relax-pulse-3 { animation-delay: 1.2s; }
.relax-pulse-4 { animation-delay: 1.8s; }
.relax-pulse-5 { animation-delay: 2.4s; }
@keyframes hubBreathe { 0%, 100% { transform: scale(1); opacity: 0.4; } 50% { transform: scale(1.18); opacity: 0.65; } }
.relax-hub-glow { transform-origin: center; transform-box: fill-box; animation: hubBreathe 3.6s ease-in-out infinite; }

/* SLA strip */
.sla-bar { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-radius: 14px; overflow: hidden; background: var(--glass-d-b); border: 1px solid var(--glass-d-b); }
.sla-tile { padding: 1.8rem 1.6rem; background: rgba(34,38,46,0.7); }
.sla-tile .v { font-family: var(--font-display); font-size: 2.2rem; color: var(--red); line-height: 1; letter-spacing: 0.02em; }
.sla-tile .l { font-size: 0.78rem; color: var(--light-grey); margin-top: 0.4rem; letter-spacing: 0.04em; }
@media (max-width: 768px) { .sla-bar { grid-template-columns: 1fr 1fr; } }

/* ═══════ MOBILE ═══════ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: var(--nav-h); left: 0; right: 0;
    background: rgba(240,238,233,0.98);
    backdrop-filter: blur(20px); padding: 1.5rem;
    border-bottom: 1px solid var(--border-l); gap: 0.25rem;
  }
  .nav-links.open .nav-dd { position: static; transform: none; opacity: 1; pointer-events: auto; box-shadow: none; border: none; background: transparent; padding: 0 0 0 1rem; }
  .nav-links.open .nav-cta { text-align: center; margin-left: 0; margin-top: 0.5rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
