:root {
  --bg: #0b1220;
  --bg2: #0f1a33;
  --paper: #ffffff;
  --paper2: #edf0f6;
  --text: #0b1220;
  --text2: #585858;
  --muted: #566072;
  --line: #e7ecf3;
  --brand: #7936ff;
  --accent: #b48eff;
  --brand2: #33d3ff;
  --blue: #537bff;
  --red: #e43060;
  --good: #16a34a;
  --warn: #daa520;
  --radius: 16px;
  --shadow: 0 3px 8px rgba(0, 0, 0, .08);
  --shadow2: 0 3px 8px rgba(0, 0, 0, .16);
  --container: 1120px;
  --ease: 0.3s ease-out;
}

* {
  box-sizing: border-box
}

html,
body {
  height: 100%
}

html {
  font-size: clamp(15px, 1.1vw, 18px)
}

body {
  margin: 0;
  font-family: "Noto Sans JP", system-ui, -apple-system, Segoe UI, Roboto, "Hiragino Sans", sans-serif;
  color: var(--text);
  background: var(--paper);
  line-height: 1.6;
  letter-spacing: 0.05em;
  font-weight: 400;
  line-break: strict;
  word-break: auto-phrase;
}

a {
  color: inherit;
  text-decoration: none;
  display: block;
}

p {
  font-size: 1rem;
  color: var(--text);
}

.br_sp,
.br_xs,
.br_tb {
  display: none;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.small {
  font-size: 12px
}

.muted {
  color: var(--muted)
}

.left {
  text-align: left;
}

.muted--light {
  color: rgba(255, 255, 255, .78)
}

.strong {
  font-weight: 700
}

.strong--light {
  color: #fff
}

.mt-12 {
  margin-top: 12px
}

.mt-24 {
  margin-top: 24px
}

.w-full {
  width: 100%
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  height: var(--header-h);
  background: rgba(255, 255, 255, .8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 0;
}

.brand {
  display: flex;
  align-items: center;
}

.brand img {
  width: 100px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1em;
  margin-left: auto;
}

.nav a {
  font-size: 0.8rem;
  color: var(--text);
  padding: 0.5em 1em;
  border-top:  2px solid transparent;
  border-bottom: 2px solid transparent;
  transition: 0.3s ease;
}

.nav a:hover {
  border-bottom: 2px solid var(--brand2);
}

.header__cta {
  display: flex;
  gap: 1em;
}

.hamburger {
  display: none;
  margin-left: 8px;
  width: 44px;
  height: 40px;
  cursor: pointer;
  background: transparent;
  border: 0;
  position: relative;
}

.hamburger span {
  display: block;
  height: 2px;
  width: 18px;
  background: #1b2a44;
  margin: 5px auto;
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
  transform-origin: center;
}

.hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.mobile-menu__inner {
  padding: 14px 0 18px;
  display: grid;
  gap: 10px;
}

.mobile-menu__link {
  padding: 12px 12px;
}

.mobile-menu__cta .btn--primary {
  padding: 1rem 2rem;
  width: fit-content;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5em 1em;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--ease);
  user-select: none;
}

.btn:active {
  transform: translateY(1px)
}

.btn--primary {
  background: linear-gradient(135deg, #ff3636, #ffc53a);
  color: #fff;
  text-shadow: #000 1px 1px 0;
  transition: .2s ease-in;
}

.btn--primary:hover {
  filter: brightness(1.1) saturate(1.05);
  transform: scale(1.05);
}

.btn--ghost {
  background: #fff;
  border: 1px solid var(--brand);
  color: var(--brand);
}

.btn--ghost:hover {
  background: var(--brand);
  color: #fff;
}

.btn--dark {
  background: #0d1730;
  color: #fff;
  border-color: rgba(255, 255, 255, .14);
}

.hero__container {
  width: min(1200px, calc(100% - 40px));
  margin-inline: auto;
  margin-bottom: 2rem;
}

.hero__container--item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  gap: 2rem;
}

.hero {
  position: relative;
  padding: 120px 0 40px;
  overflow: hidden;
  background: url(../images/fv.png);
  background-position: top -5% left;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero__title {
  font-size: clamp(28px, 4.2vw, 46px);
  line-height: 1.6;
  letter-spacing: 0.07em;
  margin: 0 0 10px;
}

.hl {
  background: linear-gradient(45deg, var(--brand), var(--brand2));
  color: #fff;
  display: inline-block;
  padding: 0 0.2em 6px;
  line-height: 1.2;
  text-shadow: #000 2px 2px 0;
}

.hl__w {
  color: #fff;
  display: inline-block;
  padding: 0 0.2em 6px;
  line-height: 1.2;
}

.hero__subtitle {
  font-size: clamp(16px, 2vw, 24px);
  color: #fff;
  margin: 0;
  padding: 0 8px 2px 8px;
  display: inline-block;
  background-color: var(--bg2);
  white-space: nowrap;
}

.hero__panel {
  position: relative;
}

.hero_speech {
  position: absolute;
  top: -45px;
  right: -6%;
  width: 30%;
  transform: rotate(8deg);
  min-width: 150px;
}

.hero__facts {
  background-color: #ffffffc0;
  display: inline-flex;
  flex-wrap: wrap;
  gap: 1em;
  width: 100%;
  justify-content: center;
  color: var(--text);
  padding: 1em 20px;
}

.box {
  margin-top: 5rem;
  position: relative;
  padding: 1.5em;
  border: 2px solid var(--brand2);
  color: var(--bg);
  background-color: rgba(255, 255, 255, .9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.box::before {
  position: absolute;
  top: 1px;
  right: -8px;
  width: 5px;
  height: 100%;
  border: solid var(--brand2);
  border-width: 3px 2px 2px 0;
  transform: skewY(45deg);
  content: '';
  background-color: rgba(255, 255, 255, .9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.box:after {
  position: absolute;
  bottom: -9px;
  left: 1px;
  width: 100%;
  height: 5px;
  border: solid var(--brand2);
  border-width: 0 1px 2px 3px;
  transform: skewX(45deg);
  content: '';
  background-color: rgba(255, 255, 255, .9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.card {
  background-color: rgba(255, 255, 255, .6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 1.5em;
  box-shadow: var(--shadow2);
  border: 2px solid var(--bg2);
  width: fit-content;
  margin: 0 auto;
}

.card--dark {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .10);
  box-shadow: none;
}

.card__head {
  text-align: center;
  margin-bottom: 0.8em
}

.triangle-right {
  width: 0;
  height: 0;
  border-left: 1.5em solid transparent;
  border-right: 1.5em solid transparent;
  border-top: 1.4em solid var(--text);
  transform: rotate(270deg);
}

.pill {
  font-size: 1.4rem;
  border-bottom: 2px solid var(--brand2);
  color: var(--text);
  font-weight: 600;
  padding-bottom: 1px;
}

.seminar-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  margin-bottom: 1em;
}

.seminar-table th,
.seminar-table td {
  padding: 12px 14px;
  vertical-align: middle;
}

.seminar-table tr {
  border-bottom: 1px dashed rgba(0, 0, 0, .25);
}

.seminar-table tr:last-child {
  border: none;
}

.seminar-table th {
  width: 5rem;
  text-align: right;
  font-weight: 500;
  white-space: nowrap;
  font-size: 0.9rem;
}

.seminar-table td {
  font-size: 1.3rem;
  font-weight: 700;
  white-space: nowrap;
  padding: 12px 0 12px 14px;
}

.seminar-table__speaker td {
  width: auto;
}

.td__speaker span.block {
  color: var(--muted);
  font-size: 0.7rem;
  line-height: 1.1;
  display: block;
}

.td__speaker {
  line-height: 1.6;
  font-size: 1.25rem;
}

.td__speaker:first-child {
  margin-bottom: 0.5em;
}

.card__actions {
  display: flex;
  flex-direction: column;
  gap: 1em;
}

.btn--primary.big {
  font-size: 1.5rem;
}

.section {
  padding: 4em 0
}

.section--light {
  background: var(--paper2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line)
}

.section--dark {
  background: radial-gradient(1200px 600px at 20% 10%, rgba(47, 124, 246, .22), transparent 60%),
    radial-gradient(900px 520px at 80% 40%, rgba(107, 228, 255, .18), transparent 55%),
    linear-gradient(180deg, var(--bg), var(--bg2));
  color: #fff;
}

.center {
  text-align: center;
}

.h2 {
  position: relative;
  font-size: clamp(22px, 2.6vw, 30px);
  margin: 0 0 0.5em;
  letter-spacing: -.01em;
  padding: 0 1em;
  font-weight: 600;
  display: inline-block;
  color: var(--text);
  border: var(--text) 1.5px solid;
  background-color: var(--paper);
}

.h2::before {
  position: absolute;
  bottom: -5px;
  right: -5px;
  width: 100%;
  height: 100%;
  border-right: 2px dashed var(--brand);
  border-bottom: 2px dashed var(--brand);
  content: '';
}

.h2--light {
  background-color: transparent;
  color: #fff;
  border-color: #fff;
}

.h3 {
  margin: 0 0 8px;
  font-size: 1rem;
}

.pain .lead {
  color: var(--text);
  font-size: 1.1rem;
  padding-top: 1em;
}

.pain-text {
  padding: 10px 0 0;
  font-size: 1.3rem;
  font-weight: 600;
}

.pain-text span {
  color: var(--red);
}

.pain--box {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding-top: 2rem;
}

.pain--box img {
  width: 10%;
  min-width: 100px;
}

.marker {
  color: var(--text);
  font-size: 1.3rem;
  text-align: center;
  display: inline;
  background: var(--brand2);
  padding: 2px 0 5px 10px;
  font-weight: 600;
}

.diff p {
  font-size: 2rem;
  font-weight: 600;
  padding: 1em 14px;
  background-color: var(--bg2);
  color: var(--paper2);
  line-height: 1.3;
}

.lead {
  margin: 0 0 1.5rem;
  color: var(--text2);
}

.lead--light {
  color: rgba(255, 255, 255, .82)
}

.grid {
  display: grid;
  gap: 1rem;
}

.grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr))
}

.grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr))
}

.grid--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr))
}

.list li {
  padding: 3px 0 3px 1.5em;
  font-size: 1rem;
  list-style: none;
  text-align: left;
  background: url('../images/check.svg') left 0px top 0.5em no-repeat;
  background-size: 1.1em auto;
}

#benefit {
  background-image: radial-gradient(#ecdbff 2px, transparent 2px), radial-gradient(#ffe8ae 2px, #fff 2px);
  background-size: 40px 40px;
  background-position: 0 0, 20px 20px;
}

.benefit-list {
  padding: 2em 0;
  width: fit-content;
  margin: auto;
  column-gap: 2rem;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
}

.benefit-list li {
  padding: 3px 0 3px 2.3em;
  font-size: 1.5rem;
  font-weight: 600;
  list-style: none;
  text-align: left;
  background: url('../images/present.svg') left 0px top 0.5em no-repeat;
  background-size: 2em auto;
  margin-bottom: 1em;
  background-color: rgba(255, 255, 255, .6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.benefit-list li span {
  font-weight: 400;
  font-size: 0.6em;
  display: block;
  color: var(--warn);
}

.benefit-list__img img {
  max-width: 300px;
}

.section--dark .list {
  color: rgba(255, 255, 255, .85)
}

.split {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 16px;
  align-items: flex-end;
}

.compare {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.triangle {
  width: 0;
  height: 0;
  border-top: 18px solid transparent;
  border-bottom: 18px solid transparent;
  border-left: 23px solid var(--brand);
  border-right: 0;
}

.compare__head {
  font-weight: 800;
  margin-bottom: 8px;
}

.compare__col {
  background: rgba(255, 255, 255, .8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--line);
  border-radius: 1em;
  padding: 1em;
  color: var(--muted);
}

.compare__col--em {
  color: var(--text);
  border-color: var(--brand);
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.stat_wrap {
  display: flex;
  flex-direction: row;
}

.stat_wrap .card {
  flex: 1;
  min-width: 0;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 1em;
}

.stat__num {
  font-size: 2.1rem;
  font-weight: 800;
  letter-spacing: -.02em;
}

.stat__label {
  font-weight: 800;
  color: var(--brand2);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.stat img {
  width: 80px;
  height: auto;
}

.stat p {
  text-align: center;
}

.triangle-down {
  width: 3em;
  height: 3em;
  border: 5px solid;
  border-color: transparent transparent var(--brand2) var(--brand2);
  transform: rotate(-45deg);
  margin: 0 auto 2em;
}

#why {
  background: url(../images/back-3.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.why-wrap {
  position: relative;
  gap: 2em;
  padding: 2em 0;
}

.why-wrap .card {
  padding-top: 2em;
}

.step {
  width: 2em;
  height: 2em;
  display: grid;
  place-items: center;
  background: var(--brand2);
  color: #fff;
  font-weight: 900;
  font-size: 1.5rem;
  position: absolute;
  top: 0;
  left: 0;
}

.why-wrap h3 {
  font-size: 1.3rem;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid var(--brand2);
}

.why-wrap .card {
  width: 100%;
}

.callout {
  text-align: center;
}

.callout__text {
  padding: 1em;
  background: rgba(255, 255, 255, .06);
  color: rgba(255, 255, 255, .84);
  display: inline-block;
  font-size: 1.3em;
}

#examples {
  background: linear-gradient(125deg, rgba(216, 177, 255, 0.4), rgba(172, 223, 255, 0.4)), url(../images/back-2.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

#examples h3 {
  font-size: 1.3em;
}

.examples-wrap {
  gap: 2em;
  padding-top: 2em;
  margin-bottom: 3em;
}

.examples-block {
  align-items: center;
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: calc(1em);
}

.examples-block h3.h3 {
  margin: 0;
}

#examples h3.examples-block_h3 {
  margin-bottom: 0.5em;
}

.card--shadow {
  padding: 1em;
  border: 1px solid var(--text);
  box-shadow: 3px 3px 0 var(--brand2);
  position: relative;
  background-color: rgba(255, 255, 255, .6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.card--shadow img {
  width: 3em;
  position: absolute;
  top: -1em;
  left: -1em;
  background-color: var(--brand2);
  padding: 10px;
  border-radius: 50%;
  vertical-align: middle;
}

.card--outline .banner {
  margin-top: 18px;
  padding: 16px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(47, 124, 246, .06), rgba(107, 228, 255, .05));
}

.banner__text {
  color: var(--paper);
  font-size: 1.4rem;
  text-align: center;
  line-height: 1.3;
}

.banner__text span {
  color: var(--brand2);
}

.banner {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 1em 20px;
}

.banner::before,
.banner::after {
  width: 3px;
  height: 4em;
  content: "";
  background-color: var(--paper);
}

.banner::before {
  margin-right: 2em;
  transform: rotate(-30deg);
}

.banner::after {
  margin-left: 1.1em;
  transform: rotate(30deg);
}

.note {
  margin-top: 14px;
  padding: 14px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #fff;
}

.note__title {
  font-weight: 900;
  margin-bottom: 4px
}

.note__text {
  margin: 0;
  color: #2a3a55
}

/* --- cta --- */
#cta .btn {
  font-size: 1.8rem;
  margin-bottom: 1em;
  font-weight: 800;
  padding: 0.7em 2em;
}

.cta-list {
  width: fit-content;
  margin: 0 auto;
}

.cta-text {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 1em;
  font-weight: 500;
}

/* --- speaker --- */
#speaker {
  background: linear-gradient(rgba(95, 70, 255, 0.15), rgba(83, 172, 255, 0.15)), url(../images/back-4.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.speaker-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: left;
  gap: 2em;
  padding: 2em;
  background-color: rgba(255, 255, 255, .6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1.5px solid var(--brand);
  box-shadow: 0 20px 35px -20px rgba(0, 0, 0, .25);
}

.speaker-card.top {
  margin-bottom: 2em;
}

.speaker-card.reverse {
  border-color: var(--brand2);
  flex-direction: row-reverse;
}

.speaker-photo {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 0.5px solid var(--brand);
}

.speaker-card.reverse .speaker-photo {
  border-color: var(--brand2);
}

.speaker-photo img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.speaker-body {
  text-align: left;
}

.speaker-name h3 {
  font-size: 1.3em;
  font-weight: 700;
  margin-bottom: 5px;
}

.speaker-name h3 span {
  font-size: 0.7em;
}

.speaker-name p {
  font-size: 0.8em;
  color: var(--muted);
  line-height: 1.2;
}

.speaker-name {
  margin-bottom: 1em;
}

.speaker-desc {
  margin-bottom: 1.5em;
}

.speaker-links {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  gap: 1em;
}

.speaker-links a {
  border: 0.5px solid var(--brand);
  font-size: 0.9em;
  line-height: 1;
  padding: 0.8em 1em;
  transition: ease 0.2s;
}

.speaker-card.reverse .speaker-links a {
  border-color: var(--brand2);
}

.speaker-links a:hover {
  background-color: var(--brand);
  color: var(--paper);
}

.speaker-card.reverse .speaker-links a:hover {
  background-color: var(--brand2);
  color: var(--paper);
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: clamp(20px, 4vw, 32px);
  right: clamp(20px, 4vw, 32px);
  background-color: var(--brand);
  color: white;
  border: none;
  border-radius: 50%;
  width: clamp(48px, 8vw, 56px);
  height: clamp(48px, 8vw, 56px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  z-index: 50;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: var(--accent);
  transform: scale(1.1);
}

.footer {
  padding: 2em 20px;
  border-top: 1px solid var(--brand);
  background: var(--bg2);
}

small {
  color: var(--paper);
}

/* slow fade base */
.slow-fade {
  opacity: 0;
  transition: opacity 1.6s ease;
}

.slow-fade.is-visible {
  opacity: 1;
}

@media (max-width: 1024px) {
  .hero__container--item {
    flex-direction: column;
  }

  .hero__panel.box {
    width: 60%;
    margin-top: 1rem;
  }

  .hero {
    background-position: 10% 10%;
  }


  #examples h3.examples-block_h3 {
    width: 200px;
    line-height: 1.2;
  }

  .examples-block_h3 span {
    display: block;
  }

}

@media (max-width: 980px) {
  .br_tb {
    display: block;
  }


  .split {
    grid-template-columns: 1fr
  }

  .nav {
    display: none
  }

  .hamburger {
    display: inline-block
  }

  .header__cta {
    margin-left: auto
  }

  .hero__panel.box {
    padding: 1.5em 1em 2em;
  }

  .seminar-table th,
  .seminar-table td {
    padding: 0.7em 0.6em;
  }

  .stat_wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;

  }

  .card--dark {
    width: 100%;
  }

  .benefit-list {
    flex-direction: column;
  }


}

@media (max-width: 768px) {
  .br_sp {
    display: block;
  }

  .hero {
    background: url(../images/fv-sp.png);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 30vh;
  }

  .hero__container {
    width: calc(100% - 28px);
  }

  .hero__container--item {
    padding: 0;
  }

  .hero__subtitle {
    white-space: unset;
    display: inline;
  }

  .hero_speech {
    top: -40px;
    right: -50px;
  }

  .hl__w {
    background-color: var(--text);
  }

  .hero__panel.box,
  .hero__copy {
    width: 90%;
    margin: 0 auto 1rem;
  }

  .hero__copy {
    margin-bottom: 2rem;
  }

  .speaker-card,
  .speaker-card.speaker-card.reverse,
  .flow {
    flex-direction: column;
    align-items: center;
  }

  .grid--3 {
    grid-template-columns: 1fr
  }

  .grid--2 {
    grid-template-columns: 1fr
  }

  .examples-block {
    flex-direction: column;
  }

  .triangle-right {
    transform: rotate(360deg);
  }

  .benefit-list li {
    line-height: 1.2;
    background: url('../images/present.svg') left 0px top 8px no-repeat;
    background-size: 2em auto;
  }

  .benefit-list li span {
    padding-top: 8px;
  }


  #examples h3.examples-block_h3 {
    width: 100%;
  }

  .diff p {
    font-size: 1.8rem;
  }

}

@media (max-width: 640px) {
  .container {
    width: calc(100% - 28px)
  }

  .seminar-table,
  .seminar-table tbody,
  .seminar-table tr,
  .seminar-table th,
  .seminar-table td {
    display: block;
  }

  .seminar-table tr:not(.seminar-table__speaker) th,
  .seminar-table tr:not(.seminar-table__speaker) td {
    width: 100%;
    padding: 0 12px;
    white-space: normal;
  }

  .seminar-table th,
  .seminar-table td {
    padding: 0 14px;
  }

  .seminar-table th {
    color: var(--muted);
    padding-top: 12px;
  }

  .seminar-table tr:not(.seminar-table__speaker) th {
    white-space: nowrap;
    text-align: left;
    font-size: 0.95em;
    font-weight: 600;
    color: var(--muted);
  }

  .seminar-table tr:last-child {
    margin-bottom: 1.5em;
  }

  .seminar-table tr:not(.seminar-table__speaker) {
    display: block;
    padding: 0;
    border-bottom: unset;
  }

  .seminar-table tr:not(.seminar-table__speaker) td {
    border-bottom: 1px dashed rgba(0, 0, 0, .25);
    padding-bottom: 10px;
    display: block;
  }

  .seminar-table tr:not(.seminar-table__speaker) th {
    padding-top: 10px;
  }

  .pain--box {
    flex-direction: column-reverse;
    gap: 1em;
  }

  .topbar__text {
    display: none
  }

  .stat_wrap {
    grid-template-columns: 1fr;
  }

  .compare {
    grid-template-columns: 1fr
  }

  .hero__cta {
    flex-direction: column
  }

  .header__cta {
    display: none
  }

  .hero_speech {
    right: -17px;
    min-width: 150px;
    top: -50px;
  }

  .hero__panel.box,
  .hero__copy {
    width: 100%;
  }

  .hero__facts {
    gap: 5px;
    letter-spacing: 0.01em;
  }

}

@media (max-width: 480px) {
  .hl {
    display: inline;
  }

  .h2 {
    line-height: 1.3;
    padding: 5px 1em 8px;
  }

  .benefit-list__img img {
    max-width: 260px;
  }

  .br_xs {
    display: block;
  }

  #cta .btn {
    font-size: 1.7rem;
  }
}