/* ==========================================================================
   theme.v3.css — ClayDesk Infotech site-wide premium re-theme (June 2026)
   Loads AFTER main.css / brand-shell.css on every page and re-skins the
   shared shell: dark ink nav + footer, brand navy/cyan palette, Satoshi
   display type. The homepage layers home.v3.css on top of this.
   Arabic (RTL) pages keep IBM Plex Sans Arabic — font overrides are
   scoped to html:not([dir="rtl"]).
   ========================================================================== */

@import url('https://api.fontshare.com/v2/css?f[]=satoshi@450,500,700,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=JetBrains+Mono:wght@500;700&display=swap');

/* ── 1. Token overrides — one palette, derived from the logo ─────────── */

:root {
  /* tokens.css (main.css system) */
  --color-navy:        #0A1A33;   /* surfaces formerly #0B2A4A */
  --color-navy-deep:   #050E1D;   /* deepest ink — footer, overlays */
  --color-navy-mid:    #0E2747;
  --color-cyan:        #1FA9E8;   /* brand cyan (unchanged) */
  --color-cyan-dark:   #0E78AC;
  --color-cyan-bg:     rgba(31, 169, 232, 0.10);
  --color-cyan-border: rgba(31, 169, 232, 0.30);

}

/* brand-shell.css (--bs system, used by the injected footer). footer.v2.js
   lazy-appends brand-shell.css AFTER this file on pages that don't link it
   statically — :root:root outranks its :root so load order can't flip these. */
:root:root {
  --bs-navy:        #0A1A33;
  --bs-navy-dark:   #050E1D;
  --bs-navy-light:  #0E2747;
  --bs-blue:        #1FA9E8;
  --bs-blue-dark:   #0E78AC;
  --bs-shadow-glow-amber: 0 0 60px -15px rgba(31, 169, 232, 0.45);
}

/* Display + mono faces on LTR pages; Arabic keeps IBM Plex Sans Arabic */
html:not([dir="rtl"]) {
  --font-sans:  'Satoshi', 'Inter', system-ui, -apple-system, sans-serif;
  --font-serif: 'Satoshi', 'Inter', system-ui, sans-serif;  /* headings go grotesk */
  --font-mono:  'JetBrains Mono', 'Fira Code', monospace;
}

html:not([dir="rtl"]) h1,
html:not([dir="rtl"]) h2,
html:not([dir="rtl"]) h3,
html:not([dir="rtl"]) h4 {
  font-weight: 800;
  letter-spacing: -0.025em;
}
html:not([dir="rtl"]) h1 { font-weight: 900; letter-spacing: -0.03em; }
html:not([dir="rtl"]) .serif-h1 {
  font-family: var(--font-sans);
  font-weight: 900;
  letter-spacing: -0.03em;
}

/* Instrument Serif stays available for italic accent words */
.serif-accent {
  font-family: 'Instrument Serif', Georgia, serif;
  font-style: italic;
  font-weight: 400;
}

/* ── 2. NAV — dark ink bar, site-wide ────────────────────────────────── */

.site-nav,
.site-nav.is-scrolled,
.site-nav.nav-solid,
.page-body-light .site-nav {
  background: rgba(5, 14, 29, 0.88);
  -webkit-backdrop-filter: blur(16px);
          backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(247, 250, 253, 0.12);
  box-shadow: none;
}

/* Option D logo: navy wordmark flips white; icon + INFOTECH keep cyan */
.nav-logo-img {
  filter: invert(1) hue-rotate(180deg) saturate(1.3) brightness(1.05);
}

.nav-link { color: rgba(247, 250, 253, 0.74); }
.nav-link:hover,
.nav-item:hover > .nav-link {
  color: #5BC4F2;
  background: rgba(31, 169, 232, 0.10);
}
.nav-link.active { color: #5BC4F2; }

.nav-hamburger span { background: #F7FAFD; }

.nav-cta {
  background: var(--color-cyan) !important;
  color: #050E1D !important;
  font-weight: 700;
}
.nav-cta:hover { background: #5BC4F2 !important; }

/* Dropdown panels go dark too */
.nav-dropdown {
  background: #081A33;
  border: 1px solid rgba(247, 250, 253, 0.12);
  box-shadow: 0 24px 60px -20px rgba(5, 14, 29, 0.6);
  /* forgive brief hover loss while travelling to the panel */
  transition-delay: 0.18s;
}
.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown { transition-delay: 0s; }

/* Invisible bridge across the 8px gap between trigger and panel — without
   it, :hover drops in the gap and the menu closes before it can be used. */
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -14px;
  left: 0;
  right: 0;
  height: 14px;
}
.nav-dropdown a:hover { background: rgba(31, 169, 232, 0.10); }
.nav-dropdown-label { color: #F7FAFD; }
.nav-dropdown-sub { color: rgba(247, 250, 253, 0.55); }
.nav-dropdown-divider { background: rgba(247, 250, 253, 0.12); }

/* ── 2b. MEGA-MENU PANELS (Bain-format IA, injected by navbar.v2.js) ── */

.nav-item-mega { position: static; }

.nav-mega {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  width: min(880px, calc(100vw - 32px));
  background: #081A33;
  border: 1px solid rgba(247, 250, 253, 0.12);
  border-radius: 0 0 1.25rem 1.25rem;
  box-shadow: 0 32px 80px -24px rgba(5, 14, 29, 0.7);
  padding: 1.75rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s, transform 0.2s ease;
  transition-delay: 0.18s;
  z-index: 60;
}
.nav-item-mega:hover .nav-mega,
.nav-item-mega:focus-within .nav-mega,
.nav-item-mega.is-open .nav-mega {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
  transition-delay: 0s;
}
/* hover bridge across the gap to the bar */
.nav-mega::before {
  content: '';
  position: absolute;
  top: -16px;
  left: 0;
  right: 0;
  height: 16px;
}

.nav-mega-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(0, 1fr);
  gap: 1.75rem;
  align-items: stretch;
}

.nav-mega-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 1.25rem;
}

.mega-col-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(247, 250, 253, 0.45);
  margin: 0 0 0.5rem 0.75rem;
}

.mega-link {
  display: block;
  padding: 0.75rem;
  border-radius: 0.75rem;
  text-decoration: none;
  transition: background 0.2s;
}
.mega-link:hover { background: rgba(31, 169, 232, 0.10); }

.mega-link-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  color: #F7FAFD;
  font-weight: 700;
  font-size: 0.96875rem;
  letter-spacing: -0.01em;
}
.mega-link-sub {
  display: block;
  margin-top: 0.25rem;
  color: rgba(247, 250, 253, 0.55);
  font-size: 0.8125rem;
  line-height: 1.5;
}
.mega-link-compact { padding: 0.625rem 0.75rem; }
.mega-link-compact .mega-link-sub { font-size: 0.75rem; }

.mega-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #5BC4F2;
  border: 1px solid rgba(31, 169, 232, 0.45);
  border-radius: 999px;
  padding: 0.125rem 0.5rem;
}

.mega-chip {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.5625rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(247, 250, 253, 0.6);
  background: rgba(247, 250, 253, 0.07);
  border-radius: 999px;
  padding: 0.125rem 0.5rem;
}

.mega-strip {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  flex-wrap: wrap;
  border-top: 1px solid rgba(247, 250, 253, 0.10);
  margin-top: 0.875rem;
  padding: 0.875rem 0.75rem 0;
}
.mega-strip-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.625rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(247, 250, 253, 0.45);
}
.mega-strip-links { display: flex; gap: 1rem; flex-wrap: wrap; }
.mega-strip-links a {
  color: rgba(247, 250, 253, 0.7);
  font-size: 0.8125rem;
  font-weight: 600;
  text-decoration: none;
}
.mega-strip-links a:hover { color: #5BC4F2; }

.nav-mega-feature {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  background: rgba(31, 169, 232, 0.08);
  border: 1px solid rgba(31, 169, 232, 0.25);
  border-radius: 1rem;
  padding: 1.25rem;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}
.nav-mega-feature:hover {
  background: rgba(31, 169, 232, 0.14);
  border-color: rgba(31, 169, 232, 0.45);
}
.mega-feature-kicker {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #5BC4F2;
}
.mega-feature-title {
  color: #F7FAFD;
  font-weight: 800;
  font-size: 1.0625rem;
  line-height: 1.3;
  letter-spacing: -0.015em;
}
.mega-feature-sub {
  color: rgba(247, 250, 253, 0.6);
  font-size: 0.8125rem;
  line-height: 1.55;
  flex: 1;
}
.mega-feature-cta {
  color: #5BC4F2;
  font-size: 0.875rem;
  font-weight: 700;
}

@media (max-width: 768px) {
  .nav-mega { display: none; }
}

/* ── 3. FOOTER — same ink as the rest of the theme ───────────────────── */

/* Doubled selectors: footer.v2.js lazy-loads brand-shell.css after this
   file, so these must outrank brand-shell's single-class rules. */
footer.brand-footer,
.brand-shell.brand-footer,
.site-footer {
  background: #050E1D;
  border-top: 1px solid rgba(247, 250, 253, 0.10);
}

/* Footer logo: drop the white chip, recolour the lockup (option D) */
a.brand-footer-logo,
.brand-footer .brand-footer-logo {
  background: none;
  border-radius: 0;
  padding: 0;
}
.brand-footer .brand-footer-logo img,
.site-footer .footer-logo-row img {
  filter: invert(1) hue-rotate(180deg) saturate(1.3) brightness(1.05);
  background: none;
}

.brand-footer a:hover { color: #5BC4F2; }

/* ── 4. INNER-PAGE HERO — cinematic ink, consistent with homepage ────── */

.page-hero {
  background:
    radial-gradient(50% 70% at 80% 0%, rgba(31, 169, 232, 0.14), transparent 65%),
    radial-gradient(60% 80% at 10% 100%, rgba(14, 78, 140, 0.35), transparent 70%),
    radial-gradient(110% 90% at 50% -10%, #081A33 0%, #050E1D 60%);
}
.page-hero .eyebrow { color: #5BC4F2; }

/* ── 5. BUTTONS — amber CTAs become brand cyan; cyan gets ink text ──── */

.btn-primary {
  background: var(--color-cyan);
  color: #050E1D;
}
.btn-primary:hover { background: #5BC4F2; color: #050E1D; }

.btn-cyan {
  background: var(--color-cyan);
  color: #050E1D;
}
.btn-cyan:hover { background: #5BC4F2; color: #050E1D; }

/* ── 6. BRAND-SHELL NAV (Arabic / RTL pages use this header) ─────────── */

.brand-nav {
  background: rgba(5, 14, 29, 0.88);
  -webkit-backdrop-filter: blur(16px);
          backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(247, 250, 253, 0.12);
}
.brand-nav.scrolled { box-shadow: none; }

.brand-logo img {
  filter: invert(1) hue-rotate(180deg) saturate(1.3) brightness(1.05);
}

.brand-nav-link { color: rgba(247, 250, 253, 0.74); }
.brand-nav-link:hover, .brand-nav-link.active { color: #5BC4F2; }
.brand-nav-link::after { background: var(--bs-blue); }

.brand-nav-toggle { color: #F7FAFD; }

/* Amber nav CTA becomes brand cyan */
.brand-cta-amber {
  background: var(--bs-blue);
  color: #050E1D;
}
.brand-cta-amber:hover { background: #5BC4F2; transform: translateY(-1px); }

.brand-nav-drawer {
  background: #081A33;
}
.brand-nav-drawer a { color: rgba(247, 250, 253, 0.8); }
.brand-nav-drawer a:hover { color: #5BC4F2; }

/* ── 7. FIXES — headings on dark hero surfaces stay light ────────────── */

/* base.css gives h1/h2 a dark text colour that beats the hero's inherited
   white; force light headings on every dark hero surface site-wide. */
.page-hero h1, .page-hero h2,
.ar-hero h1, .ar-hero .ar-hero-title,
.ar-cta h2 {
  color: #F7FAFD;
}

/* Amber accents that remain (status chips, highlights) read as warnings
   only — primary UI accent is cyan everywhere else. */

/* ══ 8. BAIN-FORMAT PAGE TEMPLATE COMPONENTS ═════════════════════════ */

/* Proof-lede band — hard numbers under the hero */
.proof-band {
  background: var(--paper, #fff);
  border-bottom: 1px solid rgba(15, 23, 34, 0.12);
}
.proof-band-inner {
  max-width: 1280px;
  margin-inline: auto;
  padding: 2.5rem clamp(1.25rem, 4vw, 3rem);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
@media (max-width: 900px) { .proof-band-inner { grid-template-columns: repeat(2, 1fr); } }
.proof-stat .ps-num {
  display: block;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #0F1722;
  line-height: 1.1;
}
.proof-stat .ps-num .ps-accent { color: #0E78AC; }
.proof-stat .ps-label {
  display: block;
  margin-top: 0.375rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #6B7686;
}

/* At-a-glance box (country guides + articles) */
.glance {
  background: #F4F3F0;
  border: 1px solid rgba(15, 23, 34, 0.12);
  border-left: 3px solid #1FA9E8;
  border-radius: 1rem;
  padding: 1.75rem clamp(1.25rem, 3vw, 2rem);
  margin: 2rem 0;
}
.glance-title {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #0E78AC;
  margin-bottom: 1.125rem;
  display: block;
}
.glance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem 2rem;
}
.glance-item .gi-k {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.625rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6B7686;
  margin-bottom: 0.25rem;
}
.glance-item .gi-v {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #0F1722;
  line-height: 1.5;
}
.glance ul.glance-bullets { list-style: none; margin: 0; padding: 0; }
.glance ul.glance-bullets li {
  padding: 0.375rem 0 0.375rem 1.5rem;
  position: relative;
  font-size: 0.96875rem;
  line-height: 1.6;
  color: #2A3441;
}
.glance ul.glance-bullets li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: #0E78AC;
  font-weight: 700;
}

/* Timeline (country guides) */
.tl { border-left: 2px solid rgba(15, 23, 34, 0.14); margin: 1.5rem 0 0 0.5rem; padding-left: 0; list-style: none; }
.tl li { position: relative; padding: 0 0 1.75rem 1.75rem; }
.tl li:last-child { padding-bottom: 0.25rem; }
.tl li::before {
  content: '';
  position: absolute;
  left: -7px;
  top: 0.35rem;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: #F4F3F0;
  border: 2.5px solid #0E78AC;
}
.tl li.tl-now::before { background: #1FA9E8; border-color: #1FA9E8; }
.tl .tl-date {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.71875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #0E78AC;
  margin-bottom: 0.25rem;
}
.tl .tl-what { font-size: 0.96875rem; line-height: 1.65; color: #2A3441; }
.tl .tl-what strong { color: #0F1722; }

/* Checklist */
.check-list { list-style: none; padding: 0; margin: 1.25rem 0 0; }
.check-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.875rem;
  padding: 0.875rem 0;
  border-bottom: 1px solid rgba(15, 23, 34, 0.10);
  font-size: 0.96875rem;
  line-height: 1.65;
  color: #2A3441;
}
.check-list li:last-child { border-bottom: none; }
.check-list .cl-n {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  font-weight: 700;
  color: #0E78AC;
  padding-top: 0.2rem;
}
.check-list strong { color: #0F1722; }

/* FAQ accordion (native details/summary) */
.faq { border-top: 1px solid rgba(15, 23, 34, 0.12); margin-top: 1.5rem; }
.faq details { border-bottom: 1px solid rgba(15, 23, 34, 0.12); }
.faq summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0.25rem;
  font-weight: 700;
  font-size: 1.0625rem;
  letter-spacing: -0.01em;
  color: #0F1722;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 450;
  color: #0E78AC;
  flex: none;
  transition: transform 0.2s;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .faq-a {
  padding: 0 0.25rem 1.5rem;
  font-size: 0.96875rem;
  line-height: 1.7;
  color: #455161;
  max-width: 70ch;
}
.faq .faq-a a { color: #0E78AC; font-weight: 600; }

/* Related insights rail */
.insight-rail {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}
@media (max-width: 900px) { .insight-rail { grid-template-columns: 1fr; } }
.ir-card {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  background: var(--paper, #fff);
  border: 1px solid rgba(15, 23, 34, 0.12);
  border-radius: 1rem;
  padding: 1.5rem;
  text-decoration: none;
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.25s;
}
.ir-card:hover { transform: translateY(-3px); box-shadow: 0 18px 44px -18px rgba(5, 14, 29, 0.25); }
.ir-card .ir-series {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #0E78AC;
}
.ir-card .ir-title {
  font-size: 1.0625rem;
  font-weight: 800;
  letter-spacing: -0.015em;
  line-height: 1.35;
  color: #0F1722;
}
.ir-card .ir-sub { font-size: 0.875rem; line-height: 1.6; color: #6B7686; flex: 1; }
.ir-card .ir-cta { font-size: 0.8125rem; font-weight: 700; color: #0E78AC; }

/* Ready-to-talk module — one component, every page */
.rtt-wrap { padding: clamp(3rem, 6vw, 5rem) clamp(1.25rem, 4vw, 3rem); }
.rtt {
  max-width: 1280px;
  margin-inline: auto;
  background: #050E1D;
  border-radius: clamp(1.25rem, 2.5vw, 2rem);
  padding: clamp(2.5rem, 6vw, 4.5rem) clamp(1.5rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 4fr);
  gap: 2.5rem;
  align-items: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
@media (max-width: 900px) { .rtt { grid-template-columns: 1fr; } }
.rtt::before {
  content: '';
  position: absolute;
  inset: -30%;
  z-index: -1;
  background:
    radial-gradient(44% 60% at 88% 0%, rgba(31, 169, 232, 0.18), transparent 65%),
    radial-gradient(50% 60% at 4% 100%, rgba(14, 78, 140, 0.45), transparent 70%);
  filter: blur(36px);
}
.rtt h2 {
  color: #F7FAFD;
  font-size: clamp(1.75rem, 3.4vw, 2.75rem);
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1.08;
  margin: 0 0 0.875rem;
}
.rtt h2 .serif-accent { color: #5BC4F2; font-weight: 400; }
.rtt p {
  color: rgba(247, 250, 253, 0.72);
  font-size: 1.0313rem;
  line-height: 1.7;
  max-width: 52ch;
  margin: 0;
}
.rtt-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.125rem;
}
.rtt-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: #1FA9E8;
  color: #050E1D;
  font-weight: 700;
  font-size: 1.0313rem;
  padding: 1rem 1.75rem;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.25s, transform 0.25s;
  box-shadow: 0 12px 40px -12px rgba(31, 169, 232, 0.5);
}
.rtt-btn:hover { background: #5BC4F2; transform: translateY(-2px); }
.rtt-quiet {
  color: rgba(247, 250, 253, 0.72);
  font-size: 0.9375rem;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid rgba(247, 250, 253, 0.25);
  padding-bottom: 2px;
}
.rtt-quiet:hover { color: #F7FAFD; }
.rtt-meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(247, 250, 253, 0.45);
}

/* Sub-offering blocks ("How we can help") */
.offer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}
@media (max-width: 900px) { .offer-grid { grid-template-columns: 1fr; } }
.offer {
  background: var(--paper, #fff);
  border: 1px solid rgba(15, 23, 34, 0.12);
  border-radius: 1rem;
  padding: 1.75rem;
}
.offer .of-k {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: #0E78AC;
  display: block;
  margin-bottom: 0.625rem;
}
.offer h3 { font-size: 1.1875rem; font-weight: 800; letter-spacing: -0.015em; margin: 0 0 0.625rem; }
.offer p { font-size: 0.9375rem; line-height: 1.65; color: #455161; margin: 0 0 0.75rem; }
.offer ul { list-style: none; margin: 0; padding: 0; }
.offer ul li {
  font-size: 0.875rem;
  line-height: 1.6;
  color: #455161;
  padding: 0.25rem 0 0.25rem 1.25rem;
  position: relative;
}
.offer ul li::before { content: '·'; position: absolute; left: 0.25rem; color: #0E78AC; font-weight: 900; }
