:root {
  --ink: #0d1014;
  --ink-2: #161a20;
  --ink-3: #20262e;
  --red: #d9232b;
  --red-dark: #b3161d;
  --paper: #ffffff;
  --mist: #f4f5f7;
  --line: #e4e7eb;
  --text: #1b2027;
  --muted: #5c6672;
  --radius: 18px;
  --max: 1180px;
  --display: "Barlow Condensed", "Arial Narrow", Impact, sans-serif;
  --body: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--red); }

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: 0.005em;
  margin: 0 0 0.45em;
}
h1 { font-size: clamp(3rem, 8.5vw, 6.2rem); line-height: 0.92; }
h2 { font-size: clamp(2.2rem, 4.6vw, 3.4rem); }
h3 { font-size: 1.6rem; font-weight: 600; }
p { margin: 0 0 1.1em; }
.accent { color: var(--red); }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
section { padding: 72px 0; }
.section-head { max-width: 720px; margin-bottom: 36px; }
.section-head p { color: var(--muted); font-size: 1.18rem; margin: 0; }
.dark .section-head p { color: #a9b2bd; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 18px;
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: var(--red); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.2;
  text-decoration: none;
  color: #fff;
  border: 1.5px solid transparent;
  transition: background 0.2s, border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn svg { width: 21px; height: 21px; fill: currentColor; flex: none; }
.btn-wa { background: var(--red); box-shadow: 0 8px 24px -8px rgba(217, 35, 43, 0.7); }
.btn-wa:hover { background: var(--red-dark); }
.btn-red { background: #fff; color: var(--red); border-color: var(--red); }
.btn-red:hover { background: #fdecec; }
.btn-ghost { border-color: rgba(255, 255, 255, 0.35); }
.btn-ghost:hover { border-color: #fff; background: rgba(255, 255, 255, 0.08); }
.btn-outline { color: var(--text); border-color: #c9ced5; }
.btn-outline:hover { border-color: var(--text); }
.btn-white { background: #fff; color: var(--ink); }
.btn-white svg { fill: var(--red); }
.btn-white:hover { background: #f1f1f1; }
.btn-lg { padding: 18px 30px; font-size: 1.08rem; }
.btn-sm { padding: 11px 20px; font-size: 1rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 1.05rem;
  text-decoration: none;
  color: var(--red);
}
.arrow-link svg { width: 18px; height: 18px; fill: currentColor; }
.arrow-link span { transition: transform 0.2s; }
.arrow-link:hover span { transform: translateX(4px); }

/* Header: floats over the hero photo with a see-through dark gradient.
   Once the page is scrolled it turns into a frosted dark bar so the menu stays readable. */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(13, 16, 20, 0.92);
}
.js .site-header {
  background: linear-gradient(180deg, rgba(13, 16, 20, 0.82) 0%, rgba(13, 16, 20, 0.5) 55%, rgba(13, 16, 20, 0) 100%);
}
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(13, 16, 20, 0.86);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 30px -14px rgba(0, 0, 0, 0.7);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.site-header.scrolled::before { opacity: 1; }
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 96px; }
.logo { flex: none; }
.logo img { height: 72px; width: auto; }
.nav { display: flex; align-items: center; gap: 30px; }
.nav .link {
  color: #c5ccd4;
  text-decoration: none;
  font-size: 1.02rem;
  font-weight: 500;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s;
}
.nav .link:hover { color: #fff; }
.nav .link.active { color: #fff; border-color: var(--red); }
.nav .phone { display: inline-flex; align-items: center; gap: 8px; color: #fff; font-weight: 600; text-decoration: none; font-size: 1.05rem; }
.nav .phone svg { width: 18px; height: 18px; fill: var(--red); }
.nav-toggle, .nav-toggle-label { display: none; }

/* Hero */
.hero { padding: 0; position: relative; background: var(--ink); color: #fff; overflow: hidden; isolation: isolate; }
.hero::before {
  content: "";
  position: absolute;
  inset: 0 0 0 auto;
  width: 64%;
  background: url("../images/hero.jpg") center 35% / cover no-repeat;
  filter: grayscale(1) contrast(1.05) brightness(1.02);
  z-index: -2;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, var(--ink) 36%, rgba(13, 16, 20, 0.76) 52%, rgba(13, 16, 20, 0.3) 100%),
    linear-gradient(0deg, var(--ink) 0%, transparent 36%);
  z-index: -1;
}
.hero .wrap { padding-top: 188px; padding-bottom: 136px; }
.hero h1 { max-width: 760px; margin-bottom: 26px; }
.hero h1, .hero .lead, .hero .eyebrow, .ticks { text-shadow: 0 2px 14px rgba(0, 0, 0, 0.65); }
.hero .lead { font-size: 1.32rem; color: #c5ccd4; max-width: 560px; margin-bottom: 36px; }
.ticks { display: flex; flex-wrap: wrap; gap: 10px 26px; margin: 38px 0 0; padding: 0; list-style: none; color: #c5ccd4; font-size: 1.08rem; }
.ticks li { display: flex; align-items: center; gap: 9px; }
.ticks svg { width: 18px; height: 18px; stroke: var(--red); fill: none; stroke-width: 2.6; }

/* Stats */
.stats { padding: 0; margin-top: -72px; position: relative; z-index: 2; }
.stats-card {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 30px 60px -28px rgba(13, 16, 20, 0.35), 0 0 0 1px var(--line);
}
.stat { padding: 32px 28px; border-left: 1px solid var(--line); }
.stat:first-child { border-left: 0; }
.stat strong { display: block; font-family: var(--display); font-size: 3.1rem; font-weight: 700; line-height: 1; color: var(--ink); }
.stat strong small { font-size: 0.5em; color: var(--red); margin-left: 3px; }
.stat span { color: var(--muted); font-size: 1.05rem; }

/* Service cards */
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.cards.two { grid-template-columns: repeat(2, 1fr); gap: 26px; }
.card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
  scroll-margin-top: 126px;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.card:hover { transform: translateY(-6px); border-color: transparent; box-shadow: 0 28px 50px -24px rgba(13, 16, 20, 0.3); }
.card .icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: #fdecec;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  transition: background 0.25s;
}
.card .icon svg { width: 36px; height: 36px; stroke: var(--red); fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; transition: stroke 0.25s; }
.card:hover .icon { background: var(--red); }
.card:hover .icon svg { stroke: #fff; }
.card p { color: var(--muted); font-size: 1.06rem; }
.card .arrow-link, .card .btn-row { margin-top: auto; padding-top: 8px; }
.cards.two .card { padding: 38px 36px; }
.cards.two .card h3 { font-size: 2rem; }

/* Dark sections / steps */
.dark { background: var(--ink); color: #fff; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; counter-reset: step; }
.step {
  counter-increment: step;
  background: var(--ink-2);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius);
  padding: 32px 30px 30px;
}
.step::before {
  content: "0" counter(step);
  display: block;
  font-family: var(--display);
  font-weight: 700;
  font-size: 4.2rem;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--red);
  margin-bottom: 22px;
}
.step p { color: #a9b2bd; margin: 0; font-size: 1.08rem; }

/* Split (why us) */
.split { display: grid; grid-template-columns: 1fr 1.05fr; gap: 64px; align-items: center; }
.photo { position: relative; }
.photo img { border-radius: var(--radius); width: 100%; aspect-ratio: 5 / 4; object-fit: cover; object-position: 30% center; filter: grayscale(1); position: relative; }
.photo::before { content: ""; position: absolute; inset: 28px -18px -18px 28px; background: var(--red); border-radius: var(--radius); }
.photo .badge {
  position: absolute;
  left: -14px;
  bottom: 30px;
  background: #fff;
  color: var(--text);
  border-radius: 14px;
  padding: 16px 22px;
  font-size: 0.98rem;
  line-height: 1.3;
  box-shadow: 0 18px 36px -14px rgba(0, 0, 0, 0.5);
}
.photo .badge strong { color: var(--red); display: block; font-family: var(--display); font-size: 2rem; line-height: 1; }
.checks { list-style: none; padding: 0; margin: 28px 0 34px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px 24px; }
.checks li { display: flex; gap: 12px; align-items: flex-start; font-weight: 500; font-size: 1.08rem; }
.checks svg { width: 22px; height: 22px; flex: none; padding: 4px; border-radius: 50%; background: #fdecec; stroke: var(--red); fill: none; stroke-width: 3; margin-top: 2px; }

/* Areas */
.mist { background: var(--mist); }
.areas { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: center; }
.areas .section-head { margin: 0; }
.chips { display: flex; flex-wrap: wrap; gap: 10px; list-style: none; padding: 0; margin: 0; }
.chips li { background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 11px 20px; font-weight: 500; font-size: 1.08rem; display: flex; align-items: center; gap: 8px; }
.chips li::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--red); }
.chips li.more { background: transparent; border-style: dashed; color: var(--muted); }
.chips li.more::before { display: none; }

/* CTA */
.cta { padding: 0 0 72px; }
.cta.mist { padding-top: 0; }
.cta-box {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  padding: 68px 60px;
  color: #fff;
  background: var(--red);
  display: grid;
  grid-template-columns: 1.2fr auto;
  gap: 40px;
  align-items: center;
}
.cta-box::after { content: ""; position: absolute; right: -90px; bottom: -150px; width: 380px; height: 380px; border-radius: 50%; border: 50px solid rgba(255, 255, 255, 0.07); pointer-events: none; }
.cta-box h2 { margin-bottom: 14px; }
.cta-box p { margin: 0; color: rgba(255, 255, 255, 0.88); max-width: 520px; }
.cta-box .btn-row { position: relative; z-index: 1; flex-direction: column; }

/* Inner page hero */
.page-hero { padding: 0; position: relative; background: var(--ink); color: #fff; overflow: hidden; isolation: isolate; }
.page-hero::before { content: ""; position: absolute; inset: 0 0 0 auto; width: 55%; background: url("../images/hero.jpg") center 25% / cover no-repeat; filter: grayscale(1); opacity: 0.55; z-index: -2; }
.page-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, var(--ink) 45%, rgba(13, 16, 20, 0.5) 100%); z-index: -1; }
.page-hero .wrap { padding-top: 168px; padding-bottom: 72px; }
.page-hero h1 { font-size: clamp(2.8rem, 7vw, 5rem); max-width: 800px; margin-bottom: 18px; }
.page-hero p { color: #c5ccd4; font-size: 1.28rem; max-width: 600px; margin: 0; }

/* About */
.about-grid { display: grid; grid-template-columns: 1.35fr 1fr; gap: 70px; align-items: start; }
.prose p { color: #39414b; }
.prose p:first-child { font-size: 1.3rem; line-height: 1.5; color: var(--text); font-weight: 500; }
.facts { background: var(--ink); color: #fff; border-radius: var(--radius); padding: 36px 34px; position: sticky; top: 126px; }
.facts h3 { margin-bottom: 20px; }
.facts dl { margin: 0 0 28px; }
.facts dl div { display: flex; justify-content: space-between; gap: 20px; padding: 13px 0; border-top: 1px solid rgba(255, 255, 255, 0.1); font-size: 1.05rem; }
.facts dt { color: #a9b2bd; }
.facts dd { margin: 0; font-weight: 600; text-align: right; }
.facts .btn { width: 100%; margin-top: 10px; }
.team { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.member { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 24px; text-align: center; }
.member img { width: 132px; height: 132px; border-radius: 50%; object-fit: cover; margin: 0 auto 20px; border: 4px solid #fff; box-shadow: 0 0 0 3px var(--red); }
.member h3 { margin-bottom: 4px; }
.member span { color: var(--muted); font-size: 1.05rem; }

/* FAQ */
.faq-layout { display: grid; grid-template-columns: 1fr 1.7fr; gap: 60px; align-items: start; }
.faq-layout .section-head { margin: 0; position: sticky; top: 126px; }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { cursor: pointer; list-style: none; padding: 24px 44px 24px 0; font-weight: 600; font-size: 1.1rem; position: relative; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 6px; top: 50%; transform: translateY(-50%); font-size: 1.7rem; font-weight: 400; color: var(--red); transition: transform 0.2s; }
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq details p { color: var(--muted); font-size: 1.06rem; padding-right: 44px; margin-bottom: 24px; }

/* Contact */
.contact-layout { display: grid; grid-template-columns: 1.4fr 1fr; gap: 26px; align-items: start; }
.contact-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.c-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 26px;
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--text);
  background: #fff;
  border: 1px solid var(--line);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.c-card:hover { transform: translateY(-4px); border-color: transparent; box-shadow: 0 24px 44px -22px rgba(13, 16, 20, 0.3); }
.c-card .icon { width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center; flex: none; background: #fdecec; }
.c-card .icon svg { width: 26px; height: 26px; fill: var(--red); }
.c-card small { display: block; color: var(--muted); font-size: 0.88rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; }
.c-card strong { font-size: 1.25rem; font-weight: 600; word-break: break-word; line-height: 1.3; }
.c-card.wide { grid-column: 1 / -1; }
.c-card.primary { background: var(--red); border-color: var(--red); color: #fff; padding: 34px 30px; }
.c-card.primary .icon { background: rgba(255, 255, 255, 0.18); width: 64px; height: 64px; }
.c-card.primary .icon svg { fill: #fff; width: 32px; height: 32px; }
.c-card.primary small { color: rgba(255, 255, 255, 0.85); }
.c-card.primary strong { font-size: 1.5rem; }
.c-card.primary em { display: block; font-style: normal; font-size: 1.05rem; opacity: 0.9; margin-top: 2px; }
.info { background: var(--ink); color: #fff; border-radius: var(--radius); padding: 34px; }
.info h3 { margin-bottom: 10px; }
.info p { color: #c5ccd4; font-size: 1.08rem; }
.info hr { border: 0; border-top: 1px solid rgba(255, 255, 255, 0.1); margin: 24px 0; }
.info p:last-child { margin: 0; }

/* Footer */
.site-footer { background: var(--ink); color: #a9b2bd; padding: 60px 0 0; font-size: 1.05rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 44px; padding-bottom: 44px; }
.site-footer .logo img { height: 90px; margin-bottom: 20px; }
.site-footer h4 { color: #fff; font-size: 0.9rem; letter-spacing: 0.16em; text-transform: uppercase; margin: 0 0 18px; }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.site-footer a { color: #d5dae0; text-decoration: none; }
.site-footer a:hover { color: #fff; }
.credit { background: #000; color: #9aa3ad; text-align: center; font-size: 0.95rem; padding: 14px 20px; }
.credit a { color: #fff; font-weight: 600; text-decoration: none; }
.credit a:hover { text-decoration: underline; }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.08); padding: 20px 0; font-size: 0.98rem; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }

/* Floating WhatsApp (desktop) + sticky action bar (mobile) */
.wa-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 60;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 28px -8px rgba(217, 35, 43, 0.8);
  transition: transform 0.2s;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 32px; height: 32px; fill: currentColor; }
.action-bar { display: none; }

/* Reveal on scroll (only when JS is running) */
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s ease, transform 0.7s ease; }
.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

@media (max-width: 1020px) {
  .nav .phone { display: none; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .split, .areas, .about-grid, .contact-layout, .faq-layout { grid-template-columns: 1fr; gap: 36px; }
  .faq-layout .section-head { position: static; }
  .facts { position: static; }
  .cta-box { grid-template-columns: 1fr; padding: 54px 40px; }
  .cta-box .btn-row { flex-direction: row; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .credit { padding-bottom: calc(78px + env(safe-area-inset-bottom)); }
  section { padding: 48px 0; }
  .wrap { padding: 0 20px; }
  .section-head { margin-bottom: 26px; }
  .site-header .wrap { min-height: 80px; }
  .logo img { height: 60px; }

  .nav-toggle-label { display: block; width: 44px; height: 44px; padding: 13px 9px; cursor: pointer; }
  .nav-toggle-label span { display: block; height: 2px; background: #fff; border-radius: 2px; margin-bottom: 6px; }
  .nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: linear-gradient(180deg, #171c23 0%, #0d1014 100%); flex-direction: column; gap: 0; padding: 8px 20px 20px; border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
  .nav .link { width: 100%; padding: 16px 0; font-size: 1.05rem; border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
  .nav .link.active { border-color: rgba(255, 255, 255, 0.08); color: var(--red); }
  .nav .btn { width: 100%; margin-top: 18px; }
  .nav-toggle:checked ~ .nav { display: flex; }

  /* Phone: photo shows in a window at the top, text sits below it as the photo fades out */
  .hero::before { inset: 0 0 auto 0; width: 100%; height: 390px; opacity: 1; background-position: 30% 35%; }
  .hero::after { background: linear-gradient(180deg, rgba(13, 16, 20, 0.4) 0, rgba(13, 16, 20, 0.4) 170px, rgba(13, 16, 20, 0.78) 280px, var(--ink) 390px); }
  .js .site-header { background: linear-gradient(180deg, rgba(13, 16, 20, 0.94) 0%, rgba(13, 16, 20, 0.72) 55%, rgba(13, 16, 20, 0) 100%); }
  .hero .wrap { padding-top: 218px; padding-bottom: 100px; }
  .hero .lead { font-size: 1.18rem; }
  .hero .btn { width: 100%; }
  .ticks { flex-direction: column; }

  .stats { margin-top: -64px; }
  .stats-card { grid-template-columns: 1fr 1fr; }
  .stat { padding: 22px 20px; }
  .stat:nth-child(3) { border-left: 0; }
  .stat:nth-child(n + 3) { border-top: 1px solid var(--line); }
  .stat strong { font-size: 2.5rem; }

  .cards, .cards.two, .steps, .team, .contact-cards, .checks { grid-template-columns: 1fr; }
  .cards.two .card { padding: 30px 26px; }
  .photo::before { inset: 18px -10px -10px 18px; }
  .photo .badge { left: 12px; bottom: 16px; }
  .page-hero .wrap { padding-top: 124px; padding-bottom: 44px; }
  .page-hero p { font-size: 1.12rem; }
  .page-hero::before { width: 100%; opacity: 0.3; }
  .cta { padding-bottom: 48px; }
  .cta-box { padding: 44px 26px; border-radius: 22px; }
  .cta-box .btn-row { flex-direction: column; }
  .cta-box .btn { width: 100%; }
  .c-card.wide { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }

  .wa-float { display: none; }
  .action-bar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 60;
    padding: 8px 10px calc(8px + env(safe-area-inset-bottom));
    background: rgba(13, 16, 20, 0.94);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }
  .action-bar a { display: flex; align-items: center; justify-content: center; gap: 9px; height: 48px; border-radius: 999px; color: #fff; font-weight: 600; text-decoration: none; }
  .action-bar svg { width: 21px; height: 21px; fill: currentColor; }
  .action-bar .call { background: #fff; color: var(--red); }
  .action-bar .wa { background: var(--red); }
}
