:root {
  --teal-500: #00A896;
  --teal-400: #00D9BF;
  --ink-900: #0B1F1D;
  --ink-700: #37504C;
  --ink-500: #5C7A76;
  --bg: #FBFEFD;
  --bg-alt: #EFFAF8;
  --border: #DCEEEA;
  --white: #FFFFFF;
  --radius: 16px;
  --shadow: 0 8px 24px rgba(11, 31, 29, 0.08);
  --max-width: 1120px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Segoe UI", system-ui, -apple-system, Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink-900);
  background: var(--bg);
  line-height: 1.55;
}

img { max-width: 100%; display: block; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.container--narrow { max-width: 720px; }

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 254, 253, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  gap: 24px;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--ink-900);
  text-decoration: none;
}

.nav__logo { width: 32px; height: 32px; border-radius: 8px; }

.nav__links {
  display: flex;
  gap: 28px;
  flex: 1;
  justify-content: center;
}

.nav__links a {
  color: var(--ink-700);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
}

.nav__links a:hover { color: var(--teal-500); }

.nav__cta { white-space: nowrap; }

/* Groups the CTA and the (desktop-hidden) burger button so they stay flush
   right as one flex item, instead of space-between spreading three items —
   including the CTA — evenly across the header on mobile. */
.nav__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
}

.nav__toggle-bar {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: var(--ink-900);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* Bars morph into an X while the panel is open — icon state mirrors
   aria-expanded rather than a separate JS-toggled class. */
.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn:hover { transform: translateY(-1px); }

.btn--primary {
  background: linear-gradient(120deg, var(--teal-400), var(--teal-500));
  color: var(--white);
  box-shadow: 0 6px 18px rgba(0, 168, 150, 0.35);
}

.btn--ghost {
  color: var(--ink-900);
  border: 1px solid var(--border);
  background: var(--white);
}

.btn--light {
  background: var(--white);
  color: var(--teal-500);
}

/* Hero */
.hero { padding: 72px 0 48px; }

.hero__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  color: var(--teal-500);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 2.9rem);
  line-height: 1.15;
  margin: 0 0 18px;
}

.hero__sub {
  display: inline-block;
  margin-top: 6px;
  font-size: 0.45em;
  font-weight: 600;
  color: var(--ink-700);
}

.hero__lead {
  color: var(--ink-700);
  font-size: 1.1rem;
  max-width: 46ch;
  margin: 0 0 28px;
}

.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Phone mock */
.phone-mock {
  width: 260px;
  height: 520px;
  margin: 0 auto;
  border-radius: 40px;
  background: var(--ink-900);
  padding: 14px;
  box-shadow: var(--shadow);
}

.phone-mock__screen {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 28px;
  background: linear-gradient(135deg, var(--teal-400), var(--teal-500));
  overflow: hidden;
}

.phone-mock__drops {
  position: absolute;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 28px;
  z-index: 1;
}

.phone-mock__drops--top { top: 26px; }
.phone-mock__drops--bottom { bottom: 26px; }

.phone-mock__drops svg {
  width: 56px;
  height: 56px;
  color: rgba(255, 255, 255, 0.55);
}

.mock-card {
  position: absolute;
  width: 160px;
  height: 210px;
  border-radius: 20px;
  background: var(--white);
  left: 50%;
  top: 50%;
}

.mock-card--back {
  opacity: 0.35;
  transform: translate(-42%, -55%) rotate(8deg);
}

.mock-card--front {
  transform: translate(-58%, -48%) rotate(-6deg);
  padding: 24px 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.mock-card__bar {
  height: 34px;
  border-radius: 8px;
  background: #C3E0D9;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 8px;
}

.mock-card__bar--short { width: 60%; }

.mock-icon-badge {
  width: 42px;
  height: 42px;
  border-radius: 13px;
  background: linear-gradient(135deg, var(--teal-400), var(--teal-500));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 6px 14px rgba(0, 168, 150, 0.35);
}

.mock-icon-badge svg {
  width: 22px;
  height: 22px;
}

.mock-card__bar--play {
  width: 0;
  height: 0;
  background: none;
  display: block;
  padding: 0;
  margin-left: 18px;
  border-style: solid;
  border-width: 28px 0 28px 44px;
  border-color: transparent transparent transparent var(--teal-500);
}

/* Value carousel */
.carousel-section { padding: 24px 0 8px; }

.carousel {
  position: relative;
  border-radius: 24px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.carousel__viewport { overflow: hidden; }

.carousel__track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel__slide {
  flex: 0 0 100%;
  width: 100%;
  box-sizing: border-box;
  padding: 56px 64px 32px;
  text-align: left;
  color: var(--ink-900);
}

.carousel__eyebrow {
  display: inline-block;
  color: var(--teal-500);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.carousel__headline {
  margin: 0 0 14px;
  font-size: clamp(1.6rem, 3.2vw, 2.3rem);
  line-height: 1.2;
  color: var(--ink-900);
}

.carousel__sub {
  margin: 0 0 16px;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink-700);
}

.carousel__body {
  margin: 0;
  max-width: 56ch;
  color: var(--ink-700);
}

.carousel__footer {
  display: flex;
  align-items: center;
  padding: 8px 64px 28px;
}

.carousel__controls {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.carousel__nav {
  position: static;
  transform: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink-900);
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  transition: background 0.15s ease, border-color 0.15s ease;
}

.carousel__nav:hover { background: var(--bg-alt); border-color: var(--teal-400); }

.carousel__dots {
  display: flex;
  justify-content: flex-start;
  gap: 10px;
  padding: 0 64px 24px;
}

.carousel__dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: var(--border);
  cursor: pointer;
  transition: background 0.15s ease, transform 0.15s ease;
}

.carousel__dot.is-active {
  background: var(--teal-500);
  transform: scale(1.25);
}

@media (max-width: 640px) {
  .carousel__slide { padding: 40px 24px 24px; }
  .carousel__footer { padding: 8px 24px 24px; }
  .carousel__dots { padding: 0 24px 24px; }
  .carousel__nav { width: 38px; height: 38px; font-size: 1.4rem; }
}

/* Strip */
.strip { padding: 20px 0; border-bottom: 1px solid var(--border); }

.strip__inner {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  color: var(--ink-500);
  font-size: 0.9rem;
  font-weight: 600;
}

/* Sections */
.section { padding: 88px 0; }
.section--alt { background: var(--bg-alt); }

.section__title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin: 0 0 12px;
  text-align: center;
}

.section__lead {
  text-align: center;
  color: var(--ink-700);
  max-width: 60ch;
  margin: 0 auto 48px;
  font-size: 1.05rem;
}

.grid { display: grid; gap: 24px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}

.card__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--teal-400), var(--teal-500));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.card__icon svg { width: 24px; height: 24px; }
.card h3 { margin: 0 0 10px; font-size: 1.1rem; }
.card p { margin: 0; color: var(--ink-700); }

.card__badge {
  display: inline-block;
  vertical-align: middle;
  margin-left: 6px;
  padding: 2px 8px;
  border-radius: 999px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  color: var(--ink-500);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

/* Screenshots */
.shot-row {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  overflow-x: auto;
  overflow-y: visible;
  padding: 56px 16px 24px;
  scroll-snap-type: x proximity;
}

.shot-frame {
  flex: 0 0 auto;
  margin: 0;
  width: 190px;
  scroll-snap-align: start;
}

.shot-frame img {
  width: 100%;
  aspect-ratio: 9 / 19.5;
  object-fit: cover;
  object-position: top;
  border-radius: 22px;
  border: 6px solid var(--ink-900);
  box-shadow: var(--shadow);
  background: var(--ink-900);
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  transform-origin: center;
  position: relative;
}

.shot-frame:hover img,
.shot-frame img:focus-visible {
  transform: scale(1.16);
  box-shadow: 0 20px 40px rgba(11, 31, 29, 0.22);
  z-index: 2;
}

.shot-frame figcaption {
  text-align: center;
  margin-top: 12px;
  font-weight: 600;
  color: var(--ink-700);
  font-size: 0.9rem;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 56px 20px;
  background: rgba(11, 19, 18, 0.88);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.lightbox.is-open { opacity: 1; pointer-events: auto; }

.lightbox__figure {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: min(92vw, 460px);
}

.lightbox__img {
  max-height: 82vh;
  max-width: 100%;
  width: auto;
  border-radius: 26px;
  border: 6px solid var(--white);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  transform: scale(0.94);
  transition: transform 0.2s ease;
  background: var(--ink-900);
}

.lightbox.is-open .lightbox__img { transform: scale(1); }

.lightbox__caption {
  color: var(--white);
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
}

.lightbox__close,
.lightbox__nav {
  position: absolute;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border: none;
  border-radius: 999px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease;
}

.lightbox__close:hover,
.lightbox__nav:hover { background: rgba(255, 255, 255, 0.24); }

.lightbox__close {
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  font-size: 1.6rem;
  line-height: 1;
}

.lightbox__nav {
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  font-size: 2rem;
  line-height: 1;
}

.lightbox__nav--prev { left: 20px; }
.lightbox__nav--next { right: 20px; }

@media (max-width: 640px) {
  .lightbox__nav { width: 42px; height: 42px; font-size: 1.6rem; }
  .lightbox__nav--prev { left: 8px; }
  .lightbox__nav--next { right: 8px; }
  .lightbox__close { top: 10px; right: 10px; }
}

/* Gamification */
.gamification {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.checklist { list-style: none; padding: 0; margin: 24px 0 0; }

.checklist li {
  padding-left: 30px;
  position: relative;
  margin-bottom: 12px;
  color: var(--ink-700);
}

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--teal-500);
  font-weight: 700;
}

.rank-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
}

.rank-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  width: 82px;
}

.rank-chip img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  filter: drop-shadow(0 6px 14px rgba(11, 31, 29, 0.18));
}

.rank-chip span {
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--ink-700);
  text-align: center;
}

/* Bots */
.bot-grid { margin-top: 8px; }

.bot-chip {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px 16px;
  text-align: center;
  font-weight: 600;
  color: var(--ink-700);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.bot-chip:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: var(--teal-400);
}

.bot-chip__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--bg-alt);
  color: var(--teal-500);
  display: flex;
  align-items: center;
  justify-content: center;
}

.bot-chip__icon svg { width: 22px; height: 22px; }

/* Privacy */
.privacy__inner { text-align: center; }

.privacy__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--teal-400), var(--teal-500));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.privacy__icon svg { width: 28px; height: 28px; }

.privacy-list {
  list-style: none;
  margin: 40px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: left;
}

.privacy-list li {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
}

.privacy-list strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink-900);
}

.privacy-list span {
  color: var(--ink-700);
  font-size: 0.95rem;
}

/* Plans */
.plans-table-wrap {
  position: relative;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius);
  background:
    linear-gradient(to right, rgba(0, 0, 0, 0.14), rgba(0, 0, 0, 0)) left / 18px 100% no-repeat,
    linear-gradient(to left, rgba(0, 0, 0, 0.14), rgba(0, 0, 0, 0)) right / 18px 100% no-repeat;
  background-attachment: scroll;
}

.plans-table {
  width: 100%;
  min-width: 620px;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.plans-table th,
.plans-table td {
  padding: 16px 18px;
  text-align: center;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}

.plans-table thead th {
  vertical-align: top;
  padding-top: 22px;
  padding-bottom: 22px;
  background: var(--bg-alt);
}

.plans-table thead th.plans-table__feature {
  border-top-left-radius: var(--radius);
}

.plans-table tbody tr:last-child th {
  border-bottom-left-radius: var(--radius);
}

.plans-table__feature,
.plans-table tbody th {
  position: sticky;
  left: 0;
  z-index: 1;
  background: var(--white);
  box-shadow: 1px 0 0 var(--border);
}

.plans-table thead th.plans-table__feature {
  background: var(--bg-alt);
  z-index: 2;
}

.plans-table__plan {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink-900);
}

.plans-table__note {
  display: block;
  margin-top: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink-500);
}

.plans-table thead th.plans-table__highlight {
  background: linear-gradient(135deg, var(--teal-400), var(--teal-500));
}

.plans-table thead th.plans-table__highlight .plans-table__plan,
.plans-table thead th.plans-table__highlight .plans-table__note {
  color: var(--white);
}

.plans-table tbody th {
  text-align: left;
  font-weight: 600;
  color: var(--ink-700);
  /* Long feature labels wrap rather than force the whole table wider than a
     narrow web viewport — the table only needs horizontal scroll for the
     plan columns, not for row labels. */
  white-space: normal;
  max-width: 260px;
}

.plans-table tbody tr:last-child th,
.plans-table tbody tr:last-child td {
  border-bottom: none;
}

.plans-table td:nth-child(4) {
  background: rgba(0, 168, 150, 0.05);
}

.plans-check {
  display: inline-flex;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.plans-check--yes {
  background: rgba(0, 168, 150, 0.14);
  color: var(--teal-500);
}

.plans-check--no {
  color: var(--ink-500);
}

/* The default badge is a fixed-size circle sized for a single glyph (✓/–).
   A cell that also carries a footnote marker ("✓ *", "– (außer *)") needs to
   grow into a pill instead, or the extra text spills past the circle. */
.plans-check--wide {
  width: auto;
  min-width: 26px;
  padding: 0 8px;
  border-radius: 999px;
  white-space: nowrap;
}

.plans-table__footnote {
  margin: 16px 4px 0;
  color: var(--ink-500);
  font-size: 0.85rem;
  text-align: center;
}

/* FAQ */
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 20px;
  margin-bottom: 12px;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 600;
}

.faq-item p {
  color: var(--ink-700);
  margin: 12px 0 0;
}

/* CTA */
.cta {
  background: linear-gradient(120deg, var(--teal-500), var(--ink-900));
  color: var(--white);
  padding: 80px 0;
  text-align: center;
}

.cta h2 { margin: 0 0 12px; font-size: clamp(1.6rem, 3vw, 2.2rem); }
.cta p { margin: 0 0 28px; opacity: 0.9; }

/* Footer */
.footer { padding: 40px 0; border-top: 1px solid var(--border); }

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
}

.reg {
  font-size: 0.55em;
  font-weight: 600;
  margin-left: 1px;
}

.footer__copy-logo {
  width: 1em;
  height: 1em;
  border-radius: 3px;
  vertical-align: -0.15em;
  margin: 0 2px;
}

.footer__links { display: flex; gap: 20px; }
.footer__links a { color: var(--ink-700); text-decoration: none; font-size: 0.9rem; }
.footer__links a:hover { color: var(--teal-500); }
.footer__copy {
  color: var(--ink-500);
  font-size: 0.85rem;
  margin: 0;
  white-space: nowrap;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

/* Responsive */
@media (max-width: 900px) {
  .nav__toggle { display: flex; }

  /* .nav is the nearest positioned ancestor (sticky counts), so the panel
     anchors to the full header width rather than just .nav__inner. */
  .nav__links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    padding: 8px 0;
  }
  .nav__links.is-open { display: flex; }
  .nav__links a {
    padding: 12px 24px;
  }
  .nav__links a:hover { background: var(--bg-alt); }

  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { order: -1; }
  .phone-mock { width: 200px; height: 400px; }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .gamification { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .footer__inner { flex-direction: column; text-align: center; }
}

@media (max-width: 640px) {
  .plans-table {
    table-layout: fixed;
    min-width: 364px;
  }
  .plans-table th,
  .plans-table td {
    padding: 8px 8px;
    font-size: 0.78rem;
  }
  .plans-table thead th {
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .plans-table__plan { font-size: 0.85rem; }
  .plans-table__note { font-size: 0.65rem; }
  .plans-check { width: 20px; height: 20px; }
  .plans-check--wide { width: auto; padding: 0 6px; }
  .plans-table th:first-child,
  .plans-table td:first-child {
    width: 100px;
  }
  .plans-table th:not(:first-child),
  .plans-table td:not(:first-child) {
    width: 88px;
  }
  .plans-table tbody th {
    white-space: normal;
  }
}
