/* ==========================================================
   SUMOSA LP — design tokens
   ========================================================== */
:root {
  --blue: #2f6bee;
  --blue-deep: #1d4fd7;
  --blue-soft: #eaf2fd;
  --teal: #1fbfa4;
  --teal-deep: #12a189;
  --teal-soft: #e7f8f4;
  --pink: #f0426e;
  --ink: #1e2b46;
  --muted: #5d6d88;
  --line: #e3ecf7;
  --bg: #f6fafd;
  --card: #ffffff;
  --radius: 22px;
  --shadow: 0 10px 30px rgba(47, 107, 238, .10);
  --shadow-soft: 0 6px 18px rgba(30, 43, 70, .07);
  --font-display: "Zen Maru Gothic", sans-serif;
  --font-body: "Zen Kaku Gothic New", sans-serif;
  --header-h: 68px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.8;
  font-size: 15px;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
a { text-decoration: none; color: inherit; }

section[id], div[id], details[id] { scroll-margin-top: calc(var(--header-h) + 16px); }

/* ==========================================================
   Buttons
   ========================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55em;
  font-family: var(--font-display);
  font-weight: 700;
  border-radius: 999px;
  transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
}
.btn:hover { transform: translateY(-2px); filter: brightness(1.05); }

.btn--contact {
  background: linear-gradient(135deg, #3b82f6, #1d4fd7);
  color: #fff;
  padding: .62em 1.5em;
  font-size: 14px;
  box-shadow: 0 6px 16px rgba(47, 107, 238, .35);
}

.btn--big {
  padding: .8em 1.7em;
  color: #fff;
  box-shadow: var(--shadow);
}
.btn--big svg { flex: none; }
.btn__label { display: flex; flex-direction: column; line-height: 1.35; text-align: left; }
.btn__label small { font-size: .68em; font-weight: 500; opacity: .85; }
.btn .arrow { font-style: normal; }

.btn--primary { background: linear-gradient(135deg, #4b8bf9, #2058e0); }
.btn--secondary { background: linear-gradient(135deg, #2cd0b0, #14a98d); box-shadow: 0 10px 30px rgba(31, 191, 164, .22); }
.btn--white-blue { background: #fff; color: var(--blue-deep); box-shadow: 0 10px 26px rgba(10, 40, 120, .25); }
.btn--white-teal { background: linear-gradient(135deg, #2cd0b0, #109a80); color: #fff; border: 2px solid rgba(255, 255, 255, .65); }

/* ==========================================================
   Header
   ========================================================== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .86);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(227, 236, 247, .8);
}
.header__inner {
  max-width: 1160px;
  margin: 0 auto;
  height: var(--header-h);
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand__mark { width: 34px; height: auto; }
.brand__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 21px;
  letter-spacing: .42em;
  color: #43506b;
}
.gnav { display: flex; align-items: center; gap: 26px; }
.gnav__list { display: flex; gap: 26px; }
.gnav__list a {
  font-size: 14px;
  font-weight: 500;
  color: #3d4a66;
  position: relative;
  padding: 4px 0;
}
.gnav__list a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: 0;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--blue), var(--teal));
  transition: right .3s ease;
}
.gnav__list a:hover::after { right: 0; }

.menu-toggle { display: none; }

/* ==========================================================
   Hero
   ========================================================== */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(900px 480px at 78% 30%, rgba(47, 107, 238, .10), transparent 60%),
    radial-gradient(700px 420px at 60% 75%, rgba(31, 191, 164, .12), transparent 60%),
    linear-gradient(180deg, #ffffff 0%, #f2f8fd 100%);
}
.hero__blob { position: absolute; border-radius: 50% 46% 55% 45% / 48% 55% 45% 52%; filter: blur(2px); z-index: 0; }
.hero__blob--tl { width: 200px; height: 180px; left: -90px; top: 40px; background: rgba(72, 149, 239, .35); }
.hero__blob--bl { width: 260px; height: 230px; left: -70px; bottom: -90px; background: linear-gradient(135deg, #3f83f2, #64c7f0); opacity: .5; }
.hero__blob--br { width: 300px; height: 260px; right: -90px; bottom: -110px; background: linear-gradient(135deg, #35d3b2, #7de8cf); opacity: .55; }

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 1160px;
  margin: 0 auto;
  padding: 56px 24px 64px;
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: 32px;
  align-items: center;
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(34px, 4.6vw, 56px);
  line-height: 1.28;
  letter-spacing: .02em;
}
.hero__title .grad {
  font-style: normal;
  background: linear-gradient(92deg, #2f6bee 10%, #1fbfa4 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.reveal-line { display: block; animation: rise .8s cubic-bezier(.2, .7, .3, 1) both; }
.reveal-line:nth-child(2) { animation-delay: .12s; }

.hero__lead {
  margin-top: 26px;
  font-size: clamp(15px, 1.6vw, 18px);
  font-weight: 500;
  color: var(--blue-deep);
  letter-spacing: .04em;
  animation: rise .8s .25s cubic-bezier(.2, .7, .3, 1) both;
}
.hero__actions {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  animation: rise .8s .38s cubic-bezier(.2, .7, .3, 1) both;
}
.hero__note {
  margin-top: 22px;
  font-size: 12.5px;
  color: var(--muted);
  letter-spacing: .06em;
  animation: rise .8s .5s cubic-bezier(.2, .7, .3, 1) both;
}

.hero__visual { position: relative; animation: fadeIn 1s .2s both; }
.hero__img { width: 100%; filter: drop-shadow(0 24px 40px rgba(30, 43, 70, .16)); }

.live-badge {
  position: absolute;
  top: 1%;
  right: 0;
  display: flex;
  align-items: center;
  border-radius: 999px;
  overflow: hidden;
  font-family: var(--font-display);
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(10, 20, 50, .35);
}
.live-badge__live {
  background: linear-gradient(135deg, #4b8bf9, #2058e0);
  color: #fff;
  padding: 4px 16px;
  font-size: 15px;
  letter-spacing: .08em;
}
.live-badge__count {
  background: #10182b;
  color: #fff;
  padding: 4px 16px;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.chat {
  position: absolute;
  top: 13%;
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
  align-items: flex-end;
}
.chat__item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, .92);
  border: 1px solid rgba(210, 226, 245, .9);
  box-shadow: 0 6px 16px rgba(30, 43, 70, .10);
  border-radius: 999px;
  padding: 5px 16px 5px 7px;
  font-size: 13px;
  font-weight: 700;
  color: #33415e;
  white-space: nowrap;
}
.chat__icon {
  width: 24px; height: 24px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 11px;
  flex: none;
}
.chat__icon--blue { background: var(--blue-soft); }
.chat__icon--teal { background: var(--teal-soft); }
.chat__icon--pink { background: #fdeaf0; }

.float-1 { animation: floaty 5s ease-in-out infinite; }
.float-2 { animation: floaty 5.6s .3s ease-in-out infinite; }
.float-3 { animation: floaty 6.2s .8s ease-in-out infinite; }
.float-4 { animation: floaty 5.4s 1.3s ease-in-out infinite; }
.float-5 { animation: floaty 6s 1.7s ease-in-out infinite; }
.float-6 { animation: floaty 5.8s 2.1s ease-in-out infinite; }

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}
@keyframes rise {
  from { opacity: 0; transform: translateY(26px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ==========================================================
   Sections / titles
   ========================================================== */
.section {
  max-width: 1160px;
  margin: 0 auto;
  padding: 72px 24px 8px;
}
.section--wide { max-width: 1220px; }

.sec-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(24px, 3vw, 32px);
  text-align: center;
  letter-spacing: .12em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}
.spark, .spark--r { position: relative; width: 26px; height: 26px; flex: none; }
.spark::before, .spark::after {
  content: "";
  position: absolute;
  width: 4px;
  border-radius: 4px;
  background: var(--blue);
}
.spark::before { height: 15px; left: 4px; top: 6px; transform: rotate(38deg); }
.spark::after { height: 10px; left: 15px; top: 10px; transform: rotate(38deg); background: var(--teal); }
.spark--r { transform: scaleX(-1); }

/* ==========================================================
   Services
   ========================================================== */
.services {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.service-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 16px 22px;
  box-shadow: var(--shadow-soft);
  transition: transform .3s ease, box-shadow .3s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.service-card__visual {
  height: 120px;
  display: grid;
  place-items: center;
  margin-bottom: 10px;
}
.service-card__visual img { max-height: 120px; width: auto; }
.service-card__title {
  font-family: var(--font-display);
  font-size: 15.5px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 8px;
}
.service-card__title--blue { color: var(--blue); }
.service-card__title--teal { color: var(--teal-deep); }
.mini-badge {
  width: 26px; height: 26px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 12px;
  flex: none;
}
.mini-badge--blue { background: linear-gradient(135deg, #4b8bf9, #2058e0); }
.mini-badge--teal { background: linear-gradient(135deg, #2cd0b0, #14a98d); }
.service-card p { font-size: 12.8px; color: var(--muted); line-height: 1.75; }

/* ==========================================================
   Panels (liver / company)
   ========================================================== */
.panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.panel {
  border-radius: 28px;
  padding: 34px 28px;
}
.panel--liver { background: linear-gradient(180deg, #eef5fe, #f7fbff); border: 1px solid #dcebfb; }
.panel--company { background: linear-gradient(180deg, #e9f8f4, #f5fcfa); border: 1px solid #d3f0e8; }

.panel__head { text-align: center; margin-bottom: 24px; }
.panel__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(20px, 2.3vw, 26px);
  color: var(--blue-deep);
  letter-spacing: .06em;
}
.panel__title--teal { color: var(--teal-deep); }
.panel__sub { margin-top: 8px; font-size: 13.5px; color: var(--muted); font-weight: 500; }

.feature-list { display: flex; flex-direction: column; gap: 14px; }
.feature {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: var(--shadow-soft);
}
.feature__icon { width: 52px; height: 52px; object-fit: contain; flex: none; }
.feature__body h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 2px;
}
.feature__body h3.t-teal { color: var(--teal-deep); }
.feature__body p { font-size: 13px; color: var(--muted); }
.t-teal { color: var(--teal-deep); }

/* ==========================================================
   Recommend
   ========================================================== */
.recommend {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.check-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 28px 30px;
}
.check-card ul { display: flex; flex-direction: column; gap: 16px; }
.check-card li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14.5px;
  font-weight: 500;
}
.check {
  width: 26px; height: 26px;
  border-radius: 50%;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 14px;
  font-weight: 700;
  flex: none;
}
.check--blue { background: linear-gradient(135deg, #4b8bf9, #2058e0); }
.check--teal { background: linear-gradient(135deg, #2cd0b0, #14a98d); }
.check-card__deco {
  position: absolute;
  right: 22px;
  bottom: 14px;
  width: 84px;
  opacity: .9;
}

/* ==========================================================
   Flow
   ========================================================== */
.flow {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 30px;
  counter-reset: step;
}
.flow__step { position: relative; text-align: center; }
.flow__step:not(:last-child)::after {
  content: "▸▸▸";
  position: absolute;
  top: 44px;
  right: -28px;
  color: #9db9e6;
  font-size: 11px;
  letter-spacing: 2px;
}
.flow__card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  height: 116px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  padding-top: 13px;
  margin-bottom: 12px;
  transition: transform .3s ease;
}
.flow__step:hover .flow__card { transform: translateY(-5px); }
.flow__num {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4b8bf9, #2058e0);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  display: grid;
  place-items: center;
  flex: none;
}
.flow__step:last-child .flow__num { background: linear-gradient(135deg, #2cd0b0, #14a98d); }
.flow__card img { max-height: 52px; max-width: 66px; width: auto; height: auto; margin: auto; }
.flow__step h3 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--blue);
}
.flow__step p { font-size: 12px; color: var(--muted); margin-top: 2px; }

/* ==========================================================
   FAQ
   ========================================================== */
.faq {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 10px 30px;
}
.faq__item { border-bottom: 1px solid var(--line); }
.faq__item:last-child { border-bottom: 0; }
.faq__item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15.5px;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__q {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4b8bf9, #2058e0);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 15px;
  flex: none;
}
.faq__chev {
  margin-left: auto;
  width: 10px; height: 10px;
  border-right: 2.5px solid var(--blue);
  border-bottom: 2.5px solid var(--blue);
  transform: rotate(45deg);
  transition: transform .35s ease;
  flex: none;
}
.faq__item.is-open .faq__chev { transform: rotate(225deg); }
.faq__body {
  height: 0;
  overflow: hidden;
  transition: height .32s cubic-bezier(.4, 0, .2, 1);
  will-change: height;
}
.faq__a {
  padding: 2px 0 20px 46px;
  color: var(--muted);
  font-size: 14px;
}

/* ==========================================================
   CTA band
   ========================================================== */
.cta {
  position: relative;
  margin-top: 80px;
  overflow: hidden;
  background: linear-gradient(100deg, #1b56d6 0%, #2f7ae0 34%, #22b8a0 76%, #35d3b2 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 52px 40px;
}
.cta__wave {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, .10) 0 2px, transparent 2px 14px);
  mask-image: linear-gradient(90deg, #000 0 12%, transparent 22% 78%, #000 88% 100%);
  -webkit-mask-image: linear-gradient(90deg, #000 0 12%, transparent 22% 78%, #000 88% 100%);
  opacity: .8;
}
.cta__img { position: relative; width: 150px; flex: none; filter: drop-shadow(0 12px 22px rgba(0, 20, 40, .35)); }
.cta__body { position: relative; text-align: center; }
.cta__title {
  font-family: var(--font-display);
  font-weight: 900;
  color: #fff;
  font-size: clamp(18px, 2.4vw, 26px);
  letter-spacing: .06em;
  line-height: 1.75;
  text-shadow: 0 2px 12px rgba(0, 30, 80, .25);
}
.cta__actions {
  margin-top: 26px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

/* ==========================================================
   Footer
   ========================================================== */
.footer { background: #fff; border-top: 1px solid var(--line); }
.footer__inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 26px 24px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.brand--footer .brand__name { font-size: 17px; }
.footer__links { display: flex; flex-wrap: wrap; gap: 24px; }
.footer__links a { font-size: 13px; color: #4a5a76; }
.footer__links a:hover { color: var(--blue); }
.footer__copy { margin-left: auto; font-size: 12px; color: #8494ad; }

/* ==========================================================
   Floating CTA
   ========================================================== */
.float-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: opacity .35s ease, transform .35s ease, visibility .35s;
}
.float-cta.is-hidden {
  opacity: 0;
  transform: translateY(14px);
  visibility: hidden;
  pointer-events: none;
}
.float-cta__btn {
  justify-content: center;
  padding: .72em 1.4em;
  font-size: 13.5px;
  color: #fff;
  box-shadow: 0 10px 26px rgba(20, 40, 90, .30);
}

/* ==========================================================
   Scroll reveal
   ========================================================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s cubic-bezier(.2, .7, .3, 1), transform .7s cubic-bezier(.2, .7, .3, 1);
}
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ==========================================================
   Responsive
   ========================================================== */
@media (max-width: 1080px) {
  .services { grid-template-columns: repeat(3, 1fr); }
  .flow { grid-template-columns: repeat(3, 1fr); gap: 26px; }
  .flow__step:nth-child(3)::after { display: none; }
}

@media (max-width: 900px) {
  .gnav {
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    background: rgba(255, 255, 255, .97);
    backdrop-filter: blur(10px);
    flex-direction: column;
    align-items: stretch;
    padding: 18px 24px 26px;
    gap: 12px;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 30px rgba(30, 43, 70, .12);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: transform .3s ease, opacity .3s ease, visibility .3s;
  }
  .gnav.is-open { transform: none; opacity: 1; visibility: visible; }
  .gnav__list { flex-direction: column; gap: 4px; }
  .gnav__list a { display: block; padding: 10px 4px; font-size: 15px; }
  .btn--contact { justify-content: center; }

  .menu-toggle {
    display: grid;
    place-items: center;
    gap: 5px;
    width: 44px; height: 44px;
    border: 0;
    background: transparent;
    cursor: pointer;
  }
  .menu-toggle span {
    display: block;
    width: 22px; height: 2.5px;
    border-radius: 2px;
    background: var(--blue-deep);
    transition: transform .3s ease, opacity .3s ease;
  }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

  .hero__inner { grid-template-columns: 1fr; padding-top: 40px; }
  .hero__copy { text-align: center; }
  .hero__actions { justify-content: center; }
  .hero__visual { max-width: 560px; margin: 0 auto; }
  .chat__item { font-size: 12px; }

  .panels { grid-template-columns: 1fr; }
  .recommend { grid-template-columns: 1fr; }

  .cta { flex-direction: column; padding: 44px 24px; }
  .cta__img { width: 120px; }
  .cta__img--pad { order: 2; }
  .cta__img--mic { display: none; }
  .cta__body { order: 1; }

  .footer__inner { flex-direction: column; gap: 18px; text-align: center; }
  .footer__copy { margin-left: 0; }

  .float-cta {
    right: 0;
    bottom: 0;
    left: 0;
    flex-direction: row;
    gap: 8px;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid var(--line);
    box-shadow: 0 -6px 20px rgba(30, 43, 70, .10);
  }
  .float-cta.is-hidden { transform: translateY(100%); }
  .float-cta__btn { flex: 1; font-size: 12.5px; padding: .75em .5em; white-space: nowrap; }
}

@media (max-width: 640px) {
  body { font-size: 14px; }
  .section { padding-top: 56px; }
  .sec-title { font-size: 21px; letter-spacing: .05em; gap: 12px; margin-bottom: 30px; }
  .spark, .spark--r { width: 20px; height: 20px; }
  .service-card__title { font-size: 14.5px; }
  .panel__title { letter-spacing: .02em; }
  .services { grid-template-columns: 1fr 1fr; }
  .service-card:last-child { grid-column: 1 / -1; }
  .flow { grid-template-columns: 1fr 1fr; }
  .flow__step:nth-child(odd)::after { display: none; }
  .flow__step:nth-child(even)::after { display: none; }
  .chat { top: 8%; gap: 6px; }
  .chat__item { font-size: 10.5px; padding: 3px 10px 3px 4px; }
  .chat__icon { width: 18px; height: 18px; font-size: 9px; }
  .live-badge__live, .live-badge__count { font-size: 12px; padding: 3px 10px; }
  .btn--big { width: 100%; justify-content: center; }
  .hero__actions { flex-direction: column; }
  .check-card__deco { display: none; }
}
