/* ============================================================
   CareConnect — design system
   ============================================================ */

:root {
  --navy-950: #10182f;
  --navy-900: #182449;
  --navy-800: #212f5c;
  --navy-700: #2c3d78;
  --coral-600: #e5503d;
  --coral-500: #ee6b52;
  --coral-100: #fde7e2;
  --sky-500: #6fa8e8;
  --sky-300: #a9cdf3;
  --sky-100: #e3eefc;
  --purple-400: #8f86ef;
  --ink-900: #101527;
  --ink-700: #384060;
  --ink-500: #636d8c;
  --ink-300: #99a1bd;
  --paper-0: #ffffff;
  --paper-50: #f7f8fc;
  --paper-100: #eef1f8;
  --border: #e3e7f1;
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --shadow-sm: 0 2px 10px rgba(16, 21, 39, 0.06);
  --shadow-md: 0 16px 40px rgba(16, 21, 39, 0.10);
  --shadow-lg: 0 24px 60px rgba(16, 21, 39, 0.16);
  --container: 1200px;
  --font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
}

:focus-visible {
  outline: 2.5px solid var(--sky-500);
  outline-offset: 3px;
  border-radius: 4px;
}
a, button { transition: opacity .15s ease, color .15s ease, background .15s ease, border-color .15s ease, box-shadow .15s ease, transform .15s ease; }

::selection { background: var(--sky-300); color: var(--navy-950); }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink-900);
  background: var(--paper-0);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
button { font-family: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  margin: 0 0 .5em;
  font-weight: 800;
  line-height: 1.15;
  color: var(--ink-900);
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.1rem, 1.5rem + 2.6vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 1.3rem + 1.7vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 1.05rem + .7vw, 1.5rem); }
h4 {
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--coral-600);
  font-weight: 700;
}
p { margin: 0 0 1em; color: var(--ink-700); }
.lead { font-size: clamp(1.05rem, 1rem + .3vw, 1.2rem); color: var(--ink-700); }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: clamp(56px, 5vw + 24px, 112px) 0; }
.section-tight { padding: clamp(40px, 3vw + 16px, 72px) 0; }
.bg-soft { background: var(--paper-50); }
.bg-navy { background: linear-gradient(160deg, var(--navy-900), var(--navy-950)); color: #fff; }
.bg-navy h2, .bg-navy h3, .bg-navy p, .bg-navy h4 { color: #fff; }
.bg-navy h4 { color: var(--sky-300); }
.bg-navy .lead, .bg-navy p { color: rgba(255,255,255,.78); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--coral-600);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--coral-600);
  display: inline-block;
}

.section-head { max-width: 720px; margin-bottom: 44px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: .95rem;
  border: 2px solid transparent;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease, border-color .15s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--navy-900); color: #fff; }
.btn-primary:hover { background: var(--navy-800); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.btn-accent { background: var(--coral-600); color: #fff; }
.btn-accent:hover { background: #d9432f; box-shadow: var(--shadow-md); transform: translateY(-2px); }
.btn-outline { background: transparent; border-color: var(--border); color: var(--ink-900); }
.btn-outline:hover { border-color: var(--navy-900); transform: translateY(-2px); }
.bg-navy .btn-outline { border-color: rgba(255,255,255,.3); color: #fff; }
.bg-navy .btn-outline:hover { border-color: #fff; }
.btn-sm { padding: 10px 20px; font-size: .85rem; }
.btn-block { width: 100%; }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* ============ Header ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 80px;
}
.logo { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 1.25rem; color: var(--navy-950); flex-shrink: 0; }
.logo .word-care { color: var(--navy-950); }
.logo .word-connect { color: var(--sky-500); }

.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav > ul { display: flex; align-items: center; gap: 4px; }
.main-nav a.nav-link {
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
  color: var(--ink-700);
}
.main-nav a.nav-link:hover { background: var(--paper-100); color: var(--ink-900); }
.nav-item.has-dropdown { position: relative; }
.nav-item.has-dropdown:hover .dropdown,
.nav-item.has-dropdown:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 340px;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: all .18s ease;
}
.dropdown a {
  display: block;
  padding: 12px 14px;
  border-radius: 12px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--ink-700);
}
.dropdown a:hover { background: var(--sky-100); color: var(--navy-900); }
.dropdown .dd-all {
  color: var(--coral-600);
  border-top: 1px solid var(--border);
  margin-top: 6px;
  padding-top: 12px;
}

.header-actions { display: flex; align-items: center; gap: 10px; }
.lang-switch { display: flex; align-items: center; gap: 2px; background: var(--paper-100); border-radius: 999px; padding: 4px; }
.lang-switch a { padding: 6px 12px; border-radius: 999px; font-size: .8rem; font-weight: 700; color: var(--ink-500); }
.lang-switch a.active { background: var(--navy-900); color: #fff; }
.lang-switch-mobile { display: none; }

.nav-toggle { display: none; background: none; border: none; padding: 8px; }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; display: block; width: 22px; height: 2px; background: var(--ink-900); position: relative; transition: all .2s;
}
.nav-toggle span::before { position: absolute; top: -7px; }
.nav-toggle span::after { position: absolute; top: 7px; }

/* ============ Footer ============ */
.site-footer { background: var(--navy-950); color: rgba(255,255,255,.7); padding: 72px 0 28px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 32px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand .logo { color: #fff; margin-bottom: 14px; }
.footer-brand .logo .word-care { color: #fff; }
.footer-brand p { color: rgba(255,255,255,.55); max-width: 300px; }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center; transition: background .2s;
}
.footer-social a:hover { background: var(--coral-600); }
.footer-col h4 { color: rgba(255,255,255,.9); font-size: .75rem; margin-bottom: 18px; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col a { color: rgba(255,255,255,.6); font-size: .9rem; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
  padding-top: 24px; font-size: .82rem; color: rgba(255,255,255,.45);
}
.footer-bottom .lang-switch { background: rgba(255,255,255,.08); }
.footer-bottom .lang-switch a { color: rgba(255,255,255,.55); }
.footer-bottom .lang-switch a.active { background: var(--coral-600); color: #fff; }

/* ============ Hero ============ */
.hero { padding-top: clamp(48px, 5vw, 88px); padding-bottom: clamp(32px, 4vw, 56px); overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.hero h1 { margin-bottom: .45em; }
.trust-bar {
  display: flex; flex-wrap: wrap; gap: 10px 28px; margin-top: 32px; padding-top: 28px;
  border-top: 1px solid var(--border);
}
.trust-bar span { display: flex; align-items: center; gap: 8px; font-size: .82rem; font-weight: 700; color: var(--ink-500); }
.trust-bar span::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--coral-600); flex-shrink: 0; }
/* ============ Partner logos strip ============ */
.logos-section { padding: 28px 0 40px; }
.logos-eyebrow {
  text-align: center; font-size: .78rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  color: var(--ink-500); margin-bottom: 20px;
}
.logos-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }
.logo-placeholder {
  display: flex; align-items: center; justify-content: center;
  width: 148px; height: 56px; border-radius: var(--radius-md);
  border: 1.5px dashed var(--border); color: var(--ink-400, #9aa3af);
  font-size: .82rem; font-weight: 600; background: var(--paper-50);
}
.logos-note { text-align: center; font-size: .78rem; color: var(--ink-400, #9aa3af); margin: 16px 0 0; }
@media (max-width: 768px) {
  .logo-placeholder { width: calc(50% - 8px); }
}

.hero-visual { position: relative; }
.blob-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.blob-grid img, .blob-cell {
  width: 100%; aspect-ratio: 1/1; object-fit: cover; border-radius: 28px;
}
.blob-cell.coral { background: linear-gradient(135deg, var(--coral-500), var(--coral-600)); }
.blob-cell.sky { background: linear-gradient(135deg, var(--sky-300), var(--sky-500)); }
.blob-cell.purple { background: radial-gradient(circle at 30% 30%, var(--purple-400), var(--coral-500) 120%); }
.blob-cell.navy { background: linear-gradient(135deg, var(--navy-800), var(--navy-950)); }
.stat-chip {
  position: absolute; bottom: -22px; left: -22px; background: #fff; border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg); padding: 18px 22px; display: flex; align-items: center; gap: 14px;
}
.stat-chip .num { font-size: 1.6rem; font-weight: 800; color: var(--navy-950); }
.stat-chip .label { font-size: .78rem; color: var(--ink-500); max-width: 130px; line-height: 1.3; }

/* ============ Cards & grids ============ */
.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md);
  padding: 32px 28px; box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease;
  height: 100%;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card .icon {
  width: 52px; height: 52px; border-radius: 16px; background: var(--sky-100);
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
}
.card .icon img { width: 26px; height: 26px; }
.card .icon svg { width: 26px; height: 26px; color: var(--sky-600, #3d7cc9); }
.card h3 { margin-bottom: 10px; font-size: 1.05rem; }
.card p { margin-bottom: 0; font-size: .93rem; }

.trust-card { text-align: left; }
.trust-card .icon { background: var(--coral-100); }
.trust-card .icon svg { color: var(--coral-600); }
.service-card .icon svg { color: var(--coral-600); }

.service-card { position: relative; display: block; }
.service-card .num { font-size: .78rem; font-weight: 800; color: var(--coral-600); margin-bottom: 10px; display: block; }
.service-card .arrow {
  position: absolute; top: 28px; right: 24px; width: 34px; height: 34px; border-radius: 50%;
  background: var(--paper-100); display: flex; align-items: center; justify-content: center;
  transition: all .2s ease; font-size: 1rem;
}
.service-card:hover .arrow { background: var(--navy-900); color: #fff; transform: rotate(45deg); }

.process-step { position: relative; padding-left: 0; }
.process-num {
  font-size: 2.4rem; font-weight: 800; color: var(--navy-800); margin-bottom: 6px; display: block;
}
.bg-navy .process-num { color: var(--sky-300); }

.pill-tag {
  display: inline-block; padding: 6px 14px; border-radius: 999px; background: var(--sky-100);
  color: var(--navy-900); font-size: .78rem; font-weight: 700; margin-bottom: 16px;
}

.quote-block { text-align: center; max-width: 780px; margin: 0 auto; }
.quote-block h2 { font-weight: 700; font-style: normal; }
.quote-block cite { display: block; margin-top: 20px; font-style: normal; color: var(--sky-300); font-weight: 700; font-size: .9rem; }

.stats-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; text-align: center; }
.stats-row .stat-num { font-size: clamp(2rem, 1.6rem + 1vw, 2.8rem); font-weight: 800; color: var(--navy-950); }
.bg-navy .stats-row .stat-num { color: #fff; }
.stats-row .stat-label { font-size: .85rem; color: var(--ink-500); }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }

.cta-banner {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-950));
  border-radius: var(--radius-lg);
  padding: clamp(36px, 4vw, 64px);
  color: #fff;
  display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.cta-banner::after {
  content: ""; position: absolute; width: 320px; height: 320px; border-radius: 50%;
  background: radial-gradient(circle, var(--coral-600), transparent 70%); opacity: .35;
  top: -140px; right: -80px;
}
.cta-banner h2, .cta-banner p { color: #fff; position: relative; }
.cta-banner p { color: rgba(255,255,255,.75); }
.cta-banner-text { max-width: 520px; position: relative; }

.feature-list { margin: 20px 0 0; }
.feature-list li { display: flex; gap: 12px; margin-bottom: 14px; font-size: .93rem; color: var(--ink-700); align-items: flex-start; }
.feature-list li::before {
  content: "✓"; flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%; background: var(--coral-100);
  color: var(--coral-600); font-weight: 800; font-size: .72rem; display: flex; align-items: center; justify-content: center; margin-top: 2px;
}
.bg-navy .feature-list li { color: rgba(255,255,255,.82); }

.breadcrumb { font-size: .85rem; color: var(--ink-500); margin-bottom: 18px; }
.breadcrumb a { color: var(--ink-500); }
.breadcrumb a:hover { color: var(--navy-900); }
.breadcrumb .sep { margin: 0 6px; }

.page-hero { padding: 44px 0 0; }
.page-hero h1 { max-width: 760px; }

.content-block { max-width: 780px; }
.content-block ul { margin: 20px 0; }
.content-block li { position: relative; padding-left: 28px; margin-bottom: 14px; color: var(--ink-700); }
.content-block li::before {
  content: ""; position: absolute; left: 0; top: 8px; width: 8px; height: 8px; border-radius: 50%; background: var(--coral-600);
}
.content-block strong { color: var(--ink-900); }

.sidebar-card {
  background: var(--paper-50); border-radius: var(--radius-md); padding: 28px; border: 1px solid var(--border);
}
.sidebar-card h4 { color: var(--coral-600); margin-bottom: 16px; }
.sidebar-card ul li { margin-bottom: 10px; }
.sidebar-card ul a { font-size: .9rem; font-weight: 600; color: var(--ink-700); display: block; padding: 8px 10px; border-radius: 10px; }
.sidebar-card ul a:hover, .sidebar-card ul a.active { background: #fff; color: var(--navy-900); box-shadow: var(--shadow-sm); }

.service-layout { display: grid; grid-template-columns: 2.1fr 1fr; gap: 48px; align-items: start; }
.service-layout aside.sidebar-card { position: sticky; top: 96px; }

/* ============ Form ============ */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-size: .85rem; font-weight: 700; color: var(--ink-900); }
.form-field input, .form-field select, .form-field textarea {
  border: 1.5px solid var(--border); border-radius: 12px; padding: 13px 16px; font-family: inherit; font-size: .95rem;
  background: #fff; color: var(--ink-900); transition: border-color .15s;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { outline: none; border-color: var(--sky-500); }
.form-field textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: .78rem; color: var(--ink-500); margin-top: 14px; }
.form-status { font-size: .9rem; font-weight: 600; margin-top: 14px; display: none; }
.form-status.ok { color: #1a8f5e; display: block; }
.form-status.err { color: var(--coral-600); display: block; }

.contact-info-list { margin-top: 20px; }
.contact-info-list li { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; font-weight: 600; }
.contact-info-list .ico {
  width: 42px; height: 42px; border-radius: 12px; background: var(--sky-100); color: var(--navy-900);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}

.newsletter-box {
  border-radius: var(--radius-lg); background: linear-gradient(135deg, var(--navy-900), var(--navy-950));
  color: #fff; padding: clamp(32px, 4vw, 56px); display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: center;
}
.newsletter-box h2, .newsletter-box p { color: #fff; }
.newsletter-box p { color: rgba(255,255,255,.72); }
.newsletter-form { display: flex; gap: 10px; }
.newsletter-form input {
  flex: 1; padding: 15px 18px; border-radius: 999px; border: none; font-family: inherit; font-size: .95rem;
}
.newsletter-form button { flex-shrink: 0; }

/* ============ misc pages ============ */
.two-col-list { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }

/* ============ Responsive ============ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .service-layout { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .hero-grid, .split, .two-col-list { grid-template-columns: 1fr; }
  .newsletter-box { grid-template-columns: 1fr; text-align: left; }

  /* Hero: swap the multi-tile image grid (too cramped on phones) for a single
     full-bleed photo behind the text, with a dark overlay for readability. */
  .hero-visual { display: none; }
  .hero {
    position: relative;
    padding: 40px 0 36px;
    background-image: linear-gradient(180deg, rgba(11, 22, 45, .58), rgba(11, 22, 45, .82)), var(--hero-bg-mobile);
    background-size: cover;
    background-position: center;
    color: #fff;
  }
  .hero h1, .hero .lead { color: #fff; }
  .hero .lead { opacity: .92; }
  .hero .trust-bar { border-top-color: rgba(255,255,255,.25); }
  .hero .trust-bar span { color: rgba(255,255,255,.85); }
  .hero .trust-bar span::before { background: #ff8a75; }
  .hero .btn-outline { border-color: rgba(255,255,255,.4); color: #fff; }
  .hero .btn-outline:hover { border-color: #fff; }
}

@media (max-width: 768px) {
  .header-inner { height: 68px; }
  .main-nav { position: fixed; inset: 68px 0 0 0; background: #fff; flex-direction: column; align-items: stretch;
    padding: 20px; transform: translateY(-12px); opacity: 0; visibility: hidden; transition: all .2s ease; overflow-y: auto; }
  .main-nav.open { transform: translateY(0); opacity: 1; visibility: visible; }
  .main-nav > ul { flex-direction: column; align-items: stretch; gap: 6px; width: 100%; }
  .main-nav a.nav-link { display: block; padding: 14px 16px; }
  .nav-item.has-dropdown .dropdown {
    position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none;
    background: var(--paper-50); display: none; margin-top: 4px;
  }
  .nav-item.has-dropdown.open .dropdown { display: block; }
  .header-actions .lang-switch { display: none; }
  .header-actions { order: 2; }
  .nav-toggle { display: block; order: 3; }
  .lang-switch-mobile { display: flex; margin-top: 20px; width: max-content; }

  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr; gap: 32px; }
  .cta-banner { flex-direction: column; align-items: flex-start; }
  .form-grid { grid-template-columns: 1fr; }
  .form-field.full { grid-column: auto; }
  .stat-chip { position: static; margin-top: -40px; margin-left: 16px; max-width: max-content; }
  .newsletter-form { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  section { padding: 44px 0; }
  .btn { padding: 13px 22px; font-size: .88rem; }
  .blob-grid { grid-template-columns: repeat(2, 1fr); }
  .container { padding: 0 18px; }
  .trust-bar { gap: 8px 18px; }
  .quote-block h2 { font-size: 1.4rem; }
}

body.nav-locked { overflow: hidden; }

.service-layout aside.sidebar-card { position: static; }
@media (min-width: 1025px) {
  .service-layout aside.sidebar-card { position: sticky; top: 96px; }
}
