/* ELC — main stylesheet. Vanilla CSS, mobile-first.
 * Brand-book aligned (2017): English Lifestyle Communication
 *   - Pantone 2117 C navy   #373D8D  (R55 G61 B141)
 *   - Pantone 485  C red    #E31E24  (R227 G30 B36)
 *   - Pantone 116  C yellow #FFCC00  (R255 G204 B0)
 *   - Western/Statue-of-Liberty motif (stars pattern, navy + red)
 * Type:
 *   - Headlines: Acrom (uppercase). Web-safe fallback: Manrope/Inter Black.
 *   - Body: Trebuchet MS (web-safe per brandbook).
 *   - Tabular: Tahoma.
 */

:root {
  /* Brand palette */
  --b-navy:    #373D8D;
  --b-navy-d:  #2a307a;
  --b-navy-l:  #5159b0;
  --b-red:     #E31E24;
  --b-red-d:   #c01418;
  --b-yellow:  #FFCC00;
  --b-yellow-d:#e6b800;

  /* Surfaces */
  --c-bg: #ffffff;
  --c-bg-alt: #f5f3ec;       /* very pale warm grey, almost white */
  --c-bg-card: #ffffff;
  --c-bg-dark: #1f235a;       /* darker navy for inverted sections */
  --c-text: #14182b;
  --c-text-muted: #5c6479;
  --c-text-invert: #f4f5fb;

  --c-border: #e5e6ec;
  --c-border-strong: #c8cad6;

  /* Soft tints derived from brand */
  --c-navy-soft:   #e7e8f3;
  --c-red-soft:    #fde2e3;
  --c-yellow-soft: #fff4cc;

  /* Action colours (semantic aliases) */
  --c-accent:        var(--b-red);
  --c-accent-hover:  var(--b-red-d);
  --c-accent-soft:   var(--c-red-soft);
  --c-success: #1d8a4a;
  --c-warn:    #b9501a;

  --radius:    8px;
  --radius-lg: 14px;
  --radius-xl: 22px;
  --shadow-sm: 0 1px 2px rgba(20, 24, 43, 0.05);
  --shadow-md: 0 8px 22px rgba(20, 24, 43, 0.08);
  --shadow-lg: 0 22px 50px rgba(20, 24, 43, 0.12);

  --max-w: 1180px;
  --pad: 22px;

  --font-display: "Manrope", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --font-body:    "Trebuchet MS", "Inter", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --font-tab:     Tahoma, Verdana, system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; background: var(--c-bg); }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--c-text);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
}
img, video, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--b-red); text-decoration: none; transition: color .15s; }
a:hover { color: var(--b-red-d); text-decoration: underline; }
hr { border: 0; border-top: 1px solid var(--c-border); margin: 32px 0; }
small { color: var(--c-text-muted); }
ul, ol { padding-left: 22px; }

h1, h2, h3, h4 {
  line-height: 1.05;
  margin: 0 0 .5em;
  font-weight: 800;
  letter-spacing: -.022em;
  font-family: var(--font-display);
  color: var(--b-navy);
}
h1 { font-size: clamp(36px, 6.6vw, 64px); letter-spacing: -.028em; }
h2 { font-size: clamp(26px, 4.2vw, 40px); margin-top: 1.4em; letter-spacing: -.022em; }
h3 { font-size: clamp(19px, 2.7vw, 24px); margin-top: 1.2em; letter-spacing: -.014em; color: var(--c-text); }
p { margin: 0 0 1em; }

::selection { background: var(--b-yellow); color: var(--b-navy); }

/* Brand colour helpers */
.t-navy   { color: var(--b-navy); }
.t-red    { color: var(--b-red); }
.t-yellow { color: var(--b-yellow); }

/* Highlight — yellow underline, mirrors the brand yellow stripe */
.mark {
  background: linear-gradient(180deg, transparent 0 60%, var(--b-yellow) 60% 92%, transparent 92%);
  padding: 0 .12em;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

/* "C-style" word — replicates logo's red C inside ELC. Use sparingly. */
.brand-c { color: var(--b-red); }

/* Tagline strip — slogans from brandbook (ALLCAPS, Acrom-style) */
.tagline {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 800;
  color: var(--b-navy);
  font-size: clamp(14px, 1.6vw, 18px);
}

/* Eyebrow chip — quieter than the gradient version */
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; border-radius: 4px;
  font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em;
  background: var(--c-bg-alt); color: var(--b-navy);
  border: 1px solid var(--c-border);
}
.chip--navy   { background: var(--b-navy);   color: #fff; border-color: transparent; }
.chip--red    { background: var(--b-red);    color: #fff; border-color: transparent; }
.chip--yellow { background: var(--b-yellow); color: var(--b-navy); border-color: transparent; }
.chip--ghost  { background: transparent; color: var(--b-navy); }
.chip__dot { width: 7px; height: 7px; border-radius: 50%; background: currentColor; }

/* Container/section */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad); }
.section { padding: 76px 0; position: relative; }
.section--alt { background: var(--c-bg-alt); }
.section--navy { background: var(--b-navy); color: var(--c-text-invert); }
.section--navy h1, .section--navy h2, .section--navy h3 { color: #fff; }
.section--navy a { color: var(--b-yellow); }
.section--red { background: var(--b-red); color: #fff; }
.section--red h1, .section--red h2, .section--red h3 { color: #fff; }
.section--yellow { background: var(--b-yellow); color: var(--b-navy); }
.section--yellow h1, .section--yellow h2, .section--yellow h3 { color: var(--b-navy); }

.muted { color: var(--c-text-muted); }
.lead { font-size: clamp(18px, 2vw, 22px); color: var(--c-text); line-height: 1.55; }

.section__head { margin-bottom: 28px; }
.section__chip { margin-bottom: 14px; }

/* Pattern: stars row — references brandbook western-themed pattern */
.pattern-stars {
  position: absolute; inset: 0; pointer-events: none; opacity: .08;
  background-image:
    radial-gradient(circle at 10% 30%, var(--b-yellow) 0 6px, transparent 6px),
    radial-gradient(circle at 30% 70%, var(--b-yellow) 0 4px, transparent 4px),
    radial-gradient(circle at 50% 25%, var(--b-yellow) 0 5px, transparent 5px),
    radial-gradient(circle at 75% 70%, var(--b-yellow) 0 5px, transparent 5px),
    radial-gradient(circle at 90% 35%, var(--b-yellow) 0 6px, transparent 6px);
  background-size: 100% 100%;
}

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.94);
  backdrop-filter: saturate(160%) blur(10px);
  -webkit-backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--c-border);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 12px var(--pad); max-width: var(--max-w); margin: 0 auto;
}
.site-header__logo { display: flex; align-items: center; gap: 0; height: 36px; text-decoration: none; }
.site-header__logo img { height: 32px; width: auto; display: block; }
.site-header__nav { display: none; gap: 24px; }
.site-header__nav a { color: var(--c-text); font-weight: 600; font-family: var(--font-display); }
.site-header__nav a:hover { color: var(--b-red); text-decoration: none; }
.site-header__cta { display: none; }
.site-header__menu-btn {
  background: none; border: 2px solid var(--b-navy); color: var(--b-navy);
  padding: 9px 14px; border-radius: var(--radius); cursor: pointer; font-weight: 700;
  font-family: var(--font-display);
}
@media (min-width: 900px) {
  .site-header__nav { display: flex; }
  .site-header__cta { display: inline-flex; }
  .site-header__menu-btn { display: none; }
}
.mobile-menu { display: none; padding: 8px var(--pad) 16px; border-bottom: 1px solid var(--c-border); background: var(--c-bg); }
.mobile-menu[data-open="true"] { display: block; }
.mobile-menu a { display: block; padding: 12px 0; color: var(--c-text); font-weight: 600; font-family: var(--font-display); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 24px; border-radius: var(--radius); font-weight: 700; font-size: 16px;
  border: 2px solid transparent; cursor: pointer; text-decoration: none;
  font-family: var(--font-display);
  transition: transform .12s ease, background-color .15s, border-color .15s, box-shadow .15s, color .15s;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn--primary {
  background: var(--b-red); color: #fff;
  box-shadow: 0 6px 18px rgba(227, 30, 36, 0.25);
}
.btn--primary:hover { background: var(--b-red-d); color: #fff; box-shadow: 0 10px 24px rgba(227, 30, 36, 0.35); }
.btn--navy { background: var(--b-navy); color: #fff; }
.btn--navy:hover { background: var(--b-navy-d); color: #fff; }
.btn--ghost { background: transparent; color: var(--b-navy); border-color: var(--b-navy); }
.btn--ghost:hover { background: var(--b-navy); color: #fff; }
.btn--ghost-on-navy { color: #fff; border-color: rgba(255,255,255,.6); background: transparent; }
.btn--ghost-on-navy:hover { background: #fff; color: var(--b-navy); }
.btn--lg { padding: 16px 30px; font-size: 17px; }

/* Hero */
.hero { padding: 56px 0 44px; position: relative; overflow: hidden; }
.hero::before {
  /* Brand stripe along top — the brandbook uses red+navy stripes */
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 6px;
  background: linear-gradient(90deg, var(--b-red) 0 33%, #fff 33% 34%, var(--b-navy) 34% 67%, #fff 67% 68%, var(--b-yellow) 68% 100%);
  opacity: .85;
}
.hero__grid {
  display: grid; gap: 32px; grid-template-columns: 1fr; align-items: start;
}
@media (min-width: 980px) {
  .hero__grid { grid-template-columns: 1.2fr 0.8fr; align-items: center; }
}
.hero__title { font-size: clamp(36px, 6.4vw, 60px); margin: 14px 0 16px; color: var(--b-navy); }
.hero__subtitle { font-size: clamp(17px, 2vw, 21px); color: var(--c-text-muted); max-width: 600px; margin: 14px 0 28px; }
.hero__cta-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.hero__cta-note { font-size: 14px; color: var(--c-text-muted); display: inline-flex; align-items: center; gap: 8px; font-weight: 600; }
.hero__cta-note::before {
  content: ""; width: 9px; height: 9px; border-radius: 50%;
  background: var(--c-success);
  box-shadow: 0 0 0 4px rgba(29, 138, 74, 0.18);
}

/* Statue side panel */
.hero__statue {
  display: none;
  position: relative; padding: 18px;
}
.hero__statue img { max-height: 420px; margin: 0 auto; }
@media (min-width: 980px) { .hero__statue { display: block; } }

/* Hero facts strip */
.hero__facts {
  margin-top: 40px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px;
}
.hero__fact {
  background: var(--c-bg-card); border: 1px solid var(--c-border);
  padding: 18px; border-radius: var(--radius-lg);
  transition: transform .15s, border-color .15s;
}
.hero__fact:hover { transform: translateY(-2px); border-color: var(--b-navy); }
.hero__fact strong {
  display: block; font-size: clamp(26px, 4vw, 36px); font-weight: 800;
  letter-spacing: -.02em; margin-bottom: 4px; line-height: 1; color: var(--b-navy);
  font-family: var(--font-display);
}
.hero__fact span { color: var(--c-text-muted); font-size: 14px; line-height: 1.4; }
.hero__fact:nth-child(2) strong { color: var(--b-red); }
.hero__fact:nth-child(3) strong { color: var(--b-navy); }
.hero__fact:nth-child(4) strong { color: var(--b-red); }
@media (min-width: 720px) { .hero__facts { grid-template-columns: repeat(4, 1fr); gap: 16px; } }

/* Highlights row — brand-style, no emoji backgrounds */
.highlights { display: flex; gap: 10px; flex-wrap: wrap; margin: 24px 0 0; }
.highlight {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px; border-radius: 999px;
  background: var(--c-bg-card); border: 1.5px solid var(--c-border);
  font-size: 14px; font-weight: 600; color: var(--b-navy);
  text-decoration: none; transition: transform .12s, border-color .15s, color .15s;
}
.highlight:hover { transform: translateY(-1px); border-color: var(--b-red); color: var(--b-red); text-decoration: none; }
.highlight__icon {
  width: 22px; height: 22px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--c-navy-soft); color: var(--b-navy); font-size: 12px;
}

/* Cards */
.cards { display: grid; gap: 18px; grid-template-columns: 1fr; }
@media (min-width: 720px) { .cards--2 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 980px) { .cards--3 { grid-template-columns: repeat(3, 1fr); } .cards--4 { grid-template-columns: repeat(4, 1fr); } }

.card {
  background: var(--c-bg-card); border: 1px solid var(--c-border);
  border-radius: var(--radius-lg); padding: 24px; box-shadow: var(--shadow-sm);
  display: block; color: var(--c-text); text-decoration: none;
  transition: transform .15s ease, border-color .15s, box-shadow .15s;
  position: relative; overflow: hidden;
}
.card::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
  background: var(--c-border-strong); opacity: 0; transition: opacity .15s, background .15s;
}
.card:hover {
  text-decoration: none; transform: translateY(-3px);
  box-shadow: var(--shadow-md); border-color: var(--c-border-strong);
}
.card:hover::before { opacity: 1; }
.card__eyebrow {
  display: inline-block; font-size: 12px; text-transform: uppercase;
  letter-spacing: .08em; color: var(--c-text-muted); font-weight: 700;
  background: var(--c-bg-alt); padding: 4px 10px; border-radius: 4px;
}
.card__title { margin: 12px 0 8px; font-size: 21px; font-weight: 800; color: var(--b-navy); font-family: var(--font-display); }
.card__meta { font-size: 14px; color: var(--c-text-muted); margin-top: 12px; font-weight: 500; }

/* Brand-aligned colour variants — only navy/red/yellow + neutral */
.card--navy   .card__eyebrow  { background: var(--c-navy-soft);   color: var(--b-navy); }
.card--red    .card__eyebrow  { background: var(--c-red-soft);    color: var(--b-red); }
.card--yellow .card__eyebrow  { background: var(--c-yellow-soft); color: #8a5a05; }

.card--navy:hover::before   { background: var(--b-navy); }
.card--red:hover::before    { background: var(--b-red); }
.card--yellow:hover::before { background: var(--b-yellow-d); }

/* Tables */
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
table.t {
  width: 100%; border-collapse: collapse; font-size: 15px; min-width: 560px;
  background: var(--c-bg-card); border: 1px solid var(--c-border);
  border-radius: var(--radius-lg); overflow: hidden;
  font-family: var(--font-tab);
}
table.t th, table.t td { padding: 13px 16px; text-align: left; border-bottom: 1px solid var(--c-border); }
table.t th { background: var(--c-navy-soft); font-weight: 700; color: var(--b-navy); }
table.t tr:last-child td { border-bottom: 0; }
table.t tr:hover td { background: rgba(227, 30, 36, .04); }

/* Forms */
.form { display: grid; gap: 14px; max-width: 480px; }
.form input, .form select, .form textarea {
  width: 100%; padding: 13px 16px; font: inherit; color: var(--c-text);
  border: 1.5px solid var(--c-border); border-radius: var(--radius);
  background: var(--c-bg-card); transition: border-color .15s, box-shadow .15s;
}
.form input:focus, .form select:focus, .form textarea:focus {
  outline: none; border-color: var(--b-navy);
  box-shadow: 0 0 0 4px var(--c-navy-soft);
}
.form label { font-size: 13px; color: var(--c-text-muted); font-weight: 700; text-transform: uppercase; letter-spacing: .04em; }
.form-row { display: grid; gap: 14px; grid-template-columns: 1fr; }
@media (min-width: 600px) { .form-row { grid-template-columns: 1fr 1fr; } }

/* FAQ */
.faq { display: grid; gap: 10px; }
.faq details {
  background: var(--c-bg-card); border: 1px solid var(--c-border);
  border-radius: var(--radius-lg); padding: 16px 20px;
  transition: box-shadow .15s, border-color .15s;
}
.faq summary { cursor: pointer; font-weight: 700; font-size: 17px; list-style: none; position: relative; padding-right: 30px; color: var(--b-navy); font-family: var(--font-display); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 0; top: -3px;
  font-size: 22px; font-weight: 700; color: var(--b-red);
}
.faq details[open] summary::after { content: "−"; }
.faq details[open] { box-shadow: var(--shadow-sm); border-color: var(--b-navy); }
.faq details > *:not(summary) { margin-top: 12px; color: var(--c-text); }

/* Breadcrumbs */
.breadcrumbs { font-size: 14px; color: var(--c-text-muted); margin: 22px 0 8px; }
.breadcrumbs a { color: var(--c-text-muted); }
.breadcrumbs a:hover { color: var(--b-red); }

/* Pricing */
.price-card {
  padding: 28px; border-radius: var(--radius-xl); border: 1px solid var(--c-border);
  background: var(--c-bg-card); position: relative; overflow: hidden;
  transition: transform .15s, box-shadow .15s;
}
.price-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.price-card__price {
  font-size: 38px; font-weight: 800; letter-spacing: -.025em; color: var(--b-navy);
  margin: 12px 0 4px; line-height: 1; font-family: var(--font-display);
}
.price-card__per { color: var(--c-text-muted); font-weight: 500; font-size: 16px; }
.price-card ul { padding-left: 0; list-style: none; margin: 18px 0 0; }
.price-card ul li { margin: 10px 0; padding-left: 26px; position: relative; }
.price-card ul li::before {
  content: ""; position: absolute; left: 0; top: 7px; width: 16px; height: 16px;
  background: var(--c-red-soft); border-radius: 50%;
}
.price-card ul li::after {
  content: ""; position: absolute; left: 4px; top: 11px; width: 8px; height: 5px;
  border-left: 2px solid var(--b-red); border-bottom: 2px solid var(--b-red);
  transform: rotate(-45deg);
}
.price-card--featured {
  background: var(--b-navy);
  border-color: transparent; color: #fff;
  box-shadow: 0 18px 40px rgba(55, 61, 141, 0.28);
}
.price-card--featured .card__eyebrow,
.price-card--featured .chip { background: rgba(255,255,255,.18); color: #fff; }
.price-card--featured .price-card__price,
.price-card--featured .price-card__per { color: #fff; }
.price-card--featured ul li::before { background: rgba(255,255,255,.22); }
.price-card--featured ul li::after { border-color: var(--b-yellow); }
.price-card--featured::after {
  content: "Самый популярный"; position: absolute; top: 16px; right: 16px;
  background: var(--b-red); color: #fff;
  padding: 5px 12px; border-radius: 4px; font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .04em;
}

/* Footer */
.site-footer {
  background: var(--b-navy); color: var(--c-text-invert);
  padding: 56px 0 32px; margin-top: 64px; position: relative;
}
.site-footer::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 4px;
  background: linear-gradient(90deg, var(--b-red) 0 33%, #fff 33% 34%, var(--b-yellow) 34% 100%);
}
.site-footer a { color: #cdd0eb; }
.site-footer a:hover { color: var(--b-yellow); }
.site-footer__cols { display: grid; gap: 28px; grid-template-columns: 1fr; }
@media (min-width: 720px) { .site-footer__cols { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.site-footer h4 { color: #fff; font-size: 16px; margin: 0 0 14px; font-weight: 700; font-family: var(--font-display); }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer ul li { margin: 8px 0; }
.site-footer__logo img { height: 36px; filter: brightness(0) invert(1); margin-bottom: 12px; }
.site-footer__bottom {
  margin-top: 40px; padding-top: 24px; border-top: 1px solid #4a508f;
  font-size: 14px; color: #a4abd6; display: flex; flex-wrap: wrap;
  justify-content: space-between; gap: 12px;
}

/* Utility */
.flex { display: flex; }
.col { flex-direction: column; }
.gap-12 { gap: 12px; }
.gap-24 { gap: 24px; }
.mt-0 { margin-top: 0; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.text-center { text-align: center; }
.hidden { display: none !important; }
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

/* Calculator */
.calc {
  background: var(--c-bg-card); border: 1px solid var(--c-border);
  border-radius: var(--radius-xl); padding: 28px; box-shadow: var(--shadow-sm);
}
.calc__row { display: grid; gap: 16px; grid-template-columns: 1fr; align-items: center; }
@media (min-width: 720px) { .calc__row { grid-template-columns: 1fr 1fr; } }
.calc__result {
  margin-top: 22px; padding: 20px;
  background: var(--c-navy-soft); border-left: 4px solid var(--b-navy);
  border-radius: var(--radius); font-size: 16px; line-height: 1.7;
}
.calc__result b { font-size: 22px; color: var(--b-navy); font-family: var(--font-display); }

/* Note / callout */
.note {
  border-left: 4px solid var(--b-navy); background: var(--c-navy-soft);
  padding: 16px 20px; border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  margin: 22px 0;
}
.note--warn { border-color: var(--c-warn); background: #fff4ec; }
.note--red  { border-color: var(--b-red); background: var(--c-red-soft); }

/* Pull / quote */
.pull {
  border-left: 5px solid var(--b-red); padding: 8px 0 8px 22px;
  font-size: clamp(20px, 2.4vw, 26px); line-height: 1.4;
  font-weight: 700; color: var(--b-navy); margin: 28px 0;
  font-family: var(--font-display);
}
.pull cite {
  display: block; margin-top: 10px; font-size: 14px; font-style: normal;
  color: var(--c-text-muted); font-weight: 500; font-family: var(--font-body);
}

/* Brand stat strip on navy */
.stat-strip {
  display: grid; gap: 14px; grid-template-columns: repeat(2, 1fr);
  padding: 28px; border-radius: var(--radius-xl);
  background: var(--b-navy); color: var(--c-text-invert);
  margin: 28px 0;
}
@media (min-width: 720px) { .stat-strip { grid-template-columns: repeat(4, 1fr); } }
.stat-strip__item strong {
  display: block; font-size: clamp(26px, 4vw, 36px); color: #fff;
  font-weight: 800; letter-spacing: -.02em; line-height: 1; font-family: var(--font-display);
}
.stat-strip__item:nth-child(2) strong { color: var(--b-yellow); }
.stat-strip__item:nth-child(4) strong { color: var(--b-yellow); }
.stat-strip__item span { font-size: 13px; opacity: .8; margin-top: 6px; display: block; }

/* ===========================================================================
   FLOATING MESSENGER BUTTONS (bottom-right, all viewports)
   =========================================================================== */
.msgr {
  position: fixed; right: 18px; bottom: 18px; z-index: 60;
  display: flex; flex-direction: column; gap: 12px;
}
.msgr__btn {
  display: inline-flex; align-items: center; gap: 8px;
  width: 52px; height: 52px; border-radius: 50%;
  justify-content: center; color: #fff; box-shadow: var(--shadow-md);
  transition: width .25s ease, border-radius .25s ease, box-shadow .15s, transform .12s;
  overflow: hidden; white-space: nowrap;
  font-weight: 700; font-family: var(--font-display); font-size: 14px;
  text-decoration: none;
}
.msgr__btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); text-decoration: none; color: #fff; }
.msgr__btn--wa { background: #25d366; }
.msgr__btn--tg { background: #2aabee; }
.msgr__label { display: none; padding-right: 14px; }
@media (min-width: 720px) {
  /* Desktop: expand to pill on hover */
  .msgr__btn:hover { width: auto; border-radius: 26px; padding: 0 4px 0 14px; }
  .msgr__btn:hover .msgr__label { display: inline; }
}

/* ===========================================================================
   STICKY MOBILE CTA — visible only on small screens
   =========================================================================== */
.sticky-cta {
  display: none;
  position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 55;
  background: var(--b-red); color: #fff;
  text-align: center; padding: 14px 16px;
  border-radius: 999px; font-weight: 700; font-size: 15px;
  box-shadow: 0 14px 30px rgba(227,30,36,0.35);
  text-decoration: none;
  font-family: var(--font-display);
}
.sticky-cta:hover { color: #fff; text-decoration: none; }
@media (max-width: 720px) {
  .sticky-cta { display: block; }
  /* Push msgr up so they don't overlap on phones */
  .msgr { bottom: 76px; }
  /* Add bottom padding so footer/content not hidden */
  body { padding-bottom: 70px; }
}
