/* Dashtera pricing page */

/* Design tokens (values pulled from the Figma variable set) */
:root {
  /* Surfaces */
  --bg-deep:        #011f2a;   /* Colors/trq-dark-2 */
  --bg-darkest:     #01161e;   /* Colors/trq-dark-3 */
  --bg-panel:       #051e27;   /* color/azure/9 — Black Pearl */
  --border-subtle:  #193841;   /* color/cyan/18 — Big Stone */
  --border-teal:    #005864;   /* Colors/trq-1 */

  /* Brand */
  --accent:         #ff6e2d;   /* Colors/peach */
  --accent-dark:    #de5d23;   /* Colors/peach-dark */
  --teal:           #018ea3;   /* Colors/trq-2 */
  --blue:           #04b2ff;   /* Colors/blue */

  /* Text */
  --text:           #ffffff;
  --text-bright:    #ebf3f6;   /* Catskill White */

  /* Per-plan accents — as used by the pricing cards */
  --plan-basic:     #17d0d8;   /* Java */
  --plan-bi:        #ff6e2d;   /* Peach */
  --plan-eng:       #9f86ff;   /* Heliotrope */
  --plan-fin:       #3ad693;   /* Shamrock */

  /* Table palette — Basic heads in one blue, checks in another */
  --col-basic-head: #49add8;
  --col-basic:      #00b5cf;   /* Colors/trq-3 */
  --col-bi:         #ff6e2d;
  --col-eng:        #9582ff;
  --col-fin:        #00bd7b;
  --table-line:     #00424D;   /* Colors/trq-dark-1 */
  --table-name-bg:  #011f2a;   /* Colors/trq-dark-2 */

  /* Type */
  --font-body: 'Open Sans', system-ui, -apple-system, sans-serif;
  --font-ui:   'Inter', system-ui, -apple-system, sans-serif;

  /* Layout */
  --shell: 1420px;
}

/* Base */
*,
*::before,
*::after { box-sizing: border-box; }

body.page-id-4294 {
	overflow: visible !important;
}

body {
  margin: 0;
  background: var(--bg-deep);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { margin: 0; font-weight: 600; }
p          { margin: 0; }
ul         { margin: 0; padding: 0; list-style: none; }
img        { max-width: 100%; display: block; }

a.btn, button { font-family: var(--font-body); cursor: pointer; color: #fff;}

.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
}

.brand { color: var(--accent); }

/* Visually hidden, still announced */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* Section rhythm */
.section        { padding: 70px 20px; }
.section-title  { font-size: 36px !important; line-height: 49px; text-align: center; font-weight: 600; color:#fff !important;}
.section-sub    { padding-top: 10px; text-align: center; font-size: 16px; font-weight: 600; color:#fff !important; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 9px 20px;
  border-radius: 35px;
  font-size: 16px;
  line-height: 22px;
  font-weight: 500;
  text-decoration: none;
  color: var(--text);
  border: 1px solid transparent;
  transition: background-color .18s ease, border-color .18s ease, transform .18s ease;
}
.btn-primary        { background: var(--accent-dark); }
.btn-primary:hover  { background: var(--accent); }
.btn-ghost          { border-color: var(--border-teal); background: transparent; }
.btn-ghost:hover    { border-color: var(--teal); background: rgba(1, 142, 163, .12); color:#fff; }
.btn-block          { width: 100%; }

/* Shared icon sizing */
.icon       { width: 18px; height: 18px; flex: none; }
/* CTA arrow is wide, not square */
.btn .icon  { width: 18px; height: 11px; }

/* Pricing hero + plan cards */
.pricing {
  background: linear-gradient(to bottom, var(--bg-darkest), var(--bg-deep));
}
.pricing .shell {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1440px;   /* the card row runs 1440, wider than the title */
}
.pricing h1 { font-size: 36px; text-align: center; padding-bottom: 10px; color: #fff;}
.pricing-lead { text-align: center; font-weight: 600; padding-bottom: 50px; color: #fff; }

/* Monthly / Yearly toggle */
.billing-toggle {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 5px;
  background: var(--bg-panel);
  border: 1px solid var(--border-subtle);
  border-radius: 999px;
}
.billing-toggle button {
  padding: 8px 24px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--text);
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 14px;
  text-transform: capitalize;
  transition: background-color .18s ease;
}
.billing-toggle button[aria-selected="true"] { background: var(--teal); }

/* Plan grid */
.plan-grid { display: none; width: 100%; gap: 20px; padding-top: 50px; }
.plan-grid.is-active { display: flex; flex-wrap: wrap; align-items: stretch; }

.plan {
  flex: 1 1 280px;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 25px 24px;
  border-radius: 20px;
}
/* --plan-color drives the text; the wash uses its own, slightly different hue */
.plan--basic {
  --plan-color: var(--plan-basic);
  background: linear-gradient(180deg, rgba(0, 181, 207, 0) 0%, rgba(0, 181, 207, .1) 50%, rgba(0, 181, 207, .2) 100%);
}
.plan--bi {
  --plan-color: var(--plan-bi);
  background: linear-gradient(180deg, rgba(251, 121, 74, 0) 0%, rgba(251, 121, 74, .1) 50%, rgba(251, 121, 74, .2) 100%);
}
.plan--eng {
  --plan-color: var(--plan-eng);
  background: linear-gradient(180deg, rgba(159, 134, 255, 0) 0%, rgba(159, 134, 255, .1) 50%, rgba(159, 134, 255, .15) 100%);
}
.plan--fin {
  --plan-color: var(--plan-fin);
  background: linear-gradient(180deg, rgba(0, 189, 123, 0) 0%, rgba(0, 189, 123, .1) 50%, rgba(0, 189, 123, .2) 100%);
}

/* SVG carries its own frame and shadow; margins crop the shadow padding */
.plan-icon {
  width: 126px;
  height: 126px;
  margin: -13.5px 0 -33.5px;
  flex: none;
}
.plan-icon svg { width: 100%; height: 100%; display: block; }

/* min-height keeps one- and two-line titles on the same baseline */
.plan-name {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 64px;
    font-size: 24px !important;
    line-height: 32px;
    font-weight: 700;
    text-align: center;
    color: var(--plan-color) !important;
}

.plan--fin .finance-trading-green {
	color: var(--plan-color) !important;
	font-weight: 400;
}

.rule {
  width: 100%;
  height: 1px;
  background: var(--plan-color) !important;
  opacity: .3;
  border: 0;
  margin: 0;
}
.plan-price {
  text-align: center;
  font-size: 30px;
  line-height: 36px;
  font-weight: 700;
  color: var(--text-bright);
  letter-spacing: -.05em;
    display: flex;
    gap: 10px;
    align-items: center;
	margin:0 !important;
}
.plan-price .per {
  font-size: 13.3px;
  line-height: 20px;
  font-weight: 400;
  color: var(--text);
  letter-spacing: 0;
}

.pricing .original-price {
	display: inline-block;
    width: 100%;
    text-align: center;
    font-size: 16px;
    color: #fff;
}

.pricing .original-price .price-currency, .pricing .original-price .normal-price {
	text-decoration: line-through;
}

.pricing .original-price .percetange-label {
    padding: 2px 5px;
    text-decoration: none !important;
    border-radius: 25px;
    background-color: #DE5D23;
    color: #fff;
    margin-left: 10px;
    font-size: 12px;
    font-weight: bold;
}

.plan-features { display: flex; flex-direction: column; gap: 10px; width: 100%; padding-top: 4px; }
.plan-features li { display: flex; gap: 8px; align-items: flex-start; font-size: 14px; color: var(--plan-color); }
.plan-features li .icon { color: var(--plan-color); margin-top: 2px; }
/* Lead features go white above the divider */
.plan-features .lead,
.plan-features .lead .icon { color: var(--text); font-weight: 700; margin: 0; }
.plan-features .lead strong { font-weight: 700; }
.plan-features .divider {
  display: block;
  height: 1px;
  background: var(--plan-color);
  opacity: .3;
  margin: 4px 0;
}

.plan-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 100%;
  margin-top: auto;
  padding-top: 30px;
}
.note { font-size: 14px; line-height: 20px; color: var(--plan-color); }

/* Note + compare link under the cards */
.pricing-foot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding-top: 30px;
}
.vat-note { font-style: italic; font-weight: 600; text-align: center; color: #fff;}

/* Add-ons — shares the dark ground with the table below it */
.addons {
  background: var(--bg-darkest);
  padding-bottom: 0;
}
.addons .shell { max-width: 1440px; }   /* card row runs the full width */

.addon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);   /* 3 × 2 grid, as in the design */
  gap: 20px;
  padding-top: 50px;
}
.addon {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 30px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(57, 180, 198, .051) 0%, rgba(57, 180, 198, .17) 100%);
}
/* The "coming soon" card is outlined instead of filled */
.addon--soon {
  background: none;
  border: 1px solid rgba(0, 181, 207, .2);
}

.addon-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
/* Only the storage icon needs the disc drawn here */
.addon-icon {
  width: 80px;
  height: 80px;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: 50%;
}
.addon-icon svg { width: 100%; height: 100%; display: block; }

.addon-icon--framed { background: #005864; }
.addon-icon--framed svg { width: 43px; height: 43px; }

.addon-price { font-size: 30px; line-height: 45px; color: #1bffec; }
.addon-soon  { font-size: 30px; line-height: 45px; color: var(--text); }

.addon-text { display: flex; flex-direction: column; gap: 15px; }
.addon-name { font-size: 24px !important; line-height: 36px; font-weight: 700; color:#fff !important;}
.addon-desc { font-size: 16px; line-height: 160%; color: var(--text); }

/* Compare features table */
/* Table is full-bleed, title keeps the gutter */
.compare {
  padding: 70px 0 50px;
  background: var(--bg-darkest);   /* the section sits on the darker ground */
  /* head height; open groups park under it */
  --head-h: 100px;
}
/* Table spans the full 1440; title stays at 1420 */
.compare .shell { max-width: 1440px; }
.compare-head {
  max-width: 1420px;
  margin-inline: auto;
  padding-inline: 20px;
}
.compare .section-title { padding-bottom: 50px; }
/* No overflow here — it would trap position: sticky */

.compare-table {
  width: 100%;
  border-collapse: separate;   /* sticky cells need their own borders */
  border-spacing: 0;
  table-layout: fixed;         /* five equal 288px columns, as in the frame */
  font-family: 'Segoe UI', var(--font-body);
  font-size: 16px;
  line-height: 21px;
  margin-bottom: 0px;
}

/* Legend, phone only */
.legend {
  display: none;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 22px;
  margin-bottom: 20px;
  font-size: 14px;
}
.legend li { display: flex; align-items: center; gap: 8px; }
.legend li:nth-child(1) { color: var(--col-basic-head); }
.legend li:nth-child(2) { color: var(--col-bi); }
.legend li:nth-child(3) { color: var(--col-eng); }
.legend li:nth-child(4) { color: var(--col-fin); }

.dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex: none;
  background: currentColor;
}
/* Dots replace the titles only once those are hidden */
.compare-table thead .dot { display: none; }
/* The Basic dot uses the check colour, not the heading colour */
.dot--basic { color: var(--col-basic); }
.dot--bi    { color: var(--col-bi); }
.dot--eng   { color: var(--col-eng); }
.dot--fin   { color: var(--col-fin); }

/* Value swaps: Unlimited ⇄ ∞, repeated ⇄ spanned cells */
.mobile-only { display: none; }
.compare-table th,
.compare-table td {
  height: 45px;
  padding: 12px 10px;
  border-right: 1px solid var(--table-line);
  border-bottom: 1px solid var(--table-line);
  text-align: center;
  vertical-align: middle;
}
.compare-table tr > *:last-child { border-right: 0; }

/* Column heads: 100px band, each fading up from its plan colour */
.compare-table thead th {
  height: 100px;
  padding: 10px;
  background: var(--bg-darkest);
  border-bottom: 1px solid var(--table-line);
  font-size: 24px;
  line-height: 32px;
  font-weight: 600;
}
.compare-table .col-basic {
  color: var(--col-basic-head);
  background: linear-gradient(180deg, rgba(73, 173, 216, 0) 0%, rgba(73, 173, 216, .2) 100%), var(--bg-darkest);
}
.compare-table .col-bi {
  color: var(--col-bi);
  background: linear-gradient(180deg, rgba(255, 110, 45, 0) 0%, rgba(255, 110, 45, .2) 100%), var(--bg-darkest);
}
.compare-table .col-eng {
  color: var(--col-eng);
  background: linear-gradient(180deg, rgba(149, 130, 255, 0) 0%, rgba(149, 130, 255, .2) 100%), var(--bg-darkest);
}
.compare-table .col-fin {
  color: var(--col-fin);
  background: linear-gradient(180deg, rgba(0, 189, 123, 0) 0%, rgba(0, 189, 123, .2) 100%), var(--bg-darkest);
}

/* Sticky heads. --stack-top is 0 above phone, else the pinned title block */
.compare-table thead th {
  position: sticky;
  top: var(--stack-top, 0px);
  z-index: 4;
}
/* Feature column keeps its own fill */
.compare-table tbody tr > *:first-child { background: var(--table-name-bg); }

.compare-table tbody th {
  text-align: left;
  font-weight: 400;
  color: var(--text);
}
.has-tooltip-icon {
  display: inline-flex;
  vertical-align: middle;
  margin-left: 6px;
  top: -1px !important;
  color: var(--blue);
}
.has-tooltip-icon svg { width: 13px; height: 13px; }

/* Tooltips */
.has-tooltip {
  position: relative;
  display: inline-flex;
  vertical-align: middle;
  margin-left: 6px;
}
.tooltip-toggle {
  display: inline-flex;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--blue);
  line-height: 0;
}
.tooltip-toggle svg { width: 13px; height: 13px; }
.tooltip-toggle:hover { color: #6fd0ff; }
.tooltip-toggle[disabled] { cursor: default; opacity: 1; }
.tooltip-toggle[disabled]:hover { color: var(--blue); }
.tooltip-toggle:focus-visible { outline: 2px solid var(--blue); outline-offset: 2px; }

.tooltip {
    position: absolute !important;
    top: calc(100% + 10px);
    left: -10px;
    z-index: 20 !important;
    display: none !important;
    width: max-content;
    max-width: 300px !important;
    padding: 14px 18px;
    background: #fff;
    color: #1a1a1a;
    border-radius: 10px;
    font-size: 14px !important;
    line-height: 1.45 !important;
    text-align: left !important;
    white-space: normal !important;
    box-shadow: none;
}
.tooltip-wide { max-width: 380px; }
.tooltip.is-open { display: block !important; opacity: 1; }

/* Bubble tail */
.tooltip::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 14px;
  border: 9px solid transparent;
  border-bottom-color: #fff;
  border-top-width: 0;
}
.tooltip ul { margin: 8px 0 0; padding-left: 18px; list-style: disc; }
.tooltip li { margin-bottom: 2px; }

/* Flip when the icon sits near the right edge */
.tooltip.flip-left { left: auto; right: -10px; }
.tooltip.flip-left::before { left: auto; right: 14px; }

/* Per-column colouring — nth-child keeps the markup free of repeated classes */
.compare-table tbody td:nth-child(2) { color: var(--col-basic); }
.compare-table tbody td:nth-child(3) { color: var(--col-bi); }
.compare-table tbody td:nth-child(4) { color: var(--col-eng); }
.compare-table tbody td:nth-child(5) { color: var(--col-fin); }
/* Plain-text values (Unlimited, 1 GB *, Partial…) stay neutral */
.compare-table tbody td.val { color: var(--text); }
/* "Not included" is a flat 5 × 1 rule in the design, not a dash glyph */
.compare-table tbody td.dash {
  font-size: 0;
  color: var(--text);
}
.compare-table tbody td.dash::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 1px;
  background: currentColor;
  vertical-align: middle;
}
.compare-table tbody td.plus { color: var(--text); }
.compare-table tbody td .icon { display: inline-block; vertical-align: middle; }

/* "Coming soon" row */
.soon td { color: var(--teal) !important; }
.compare-table .soon th { color: rgba(255, 255, 255, .4); }

/* Open groups fill the whole row, feature column included */
.compare-table tbody tr.group.is-open > *:first-child { background: #00424D; }
.compare-table tbody tr.subrow > *:first-child { background: rgba(0, 66, 77, .5); }

/* Group rows — whole row is the click target */
.group { cursor: pointer; }
/* Closed: only the label cell is filled, the value cells stay clear */
.group th,
.group td { background: transparent; }
/* Open: the fill runs across the whole row, which also keeps it solid
   while it is pinned under the header */
.group.is-open th,
.group.is-open td { background: #00424D; }

/* An open group pins itself under the plan titles while its rows scroll past */
.group.is-open th,
.group.is-open td {
  position: sticky;
  top: calc(var(--stack-top, 0px) + var(--head-h));
  z-index: 3;
}

.group-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: auto;
  /* The cell's 16px is the whole indent */
  padding: 0;
  border: 0;
  background: transparent !important;
  color: var(--col-basic) !important;
  font: inherit;
  text-align: left;
  cursor: pointer;
}
.group-btn[aria-expanded="true"] { color: var(--text); }
/* Chevron points right when closed; the span carries the rotation */
.group-btn .chev {
  display: inline-flex;
  width: 7px;
  height: 12px;
  flex: none;
  color: var(--col-basic);
  transition: transform .2s ease;
}
.group-btn .chev svg { width: 100%; height: 100%; display: block; }
/* Open: points down, white */
.group-btn[aria-expanded="true"] .chev {
  transform: rotate(90deg);
  color: var(--text);
}

/* Sub-rows, revealed on expand */
.subrow[hidden] { display: none; }
.subrow th,
.subrow td { background: rgba(0, 66, 77, .5); }
.compare-table .subrow th { padding-left: 32px; }

/* Plan CTAs sit in a borderless tfoot so they line up with the columns */
.cta-row td {
  border: 0;
  padding: 24px 12px 0;
  text-align: center;
}
.cta-row .btn { width: 100%; max-width: 220px; }

/* CTA — Bring your data to life */
.cta {
  position: relative;
  overflow: hidden;
  background: var(--bg-deep);
  padding: 0 10px;
}
/* Teal glow behind everything — a heavily blurred disc, not a gradient */
.cta::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  left: 53%;
  top: 72%;
  border-radius: 50%;
  background: var(--teal);
  filter: blur(275px);
  z-index: 0;
  pointer-events: none;
}
/* White panel on the right, inner edge cut on a slant */
.cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #fff;
  /* First and last x set the slant — swap them to flip it */
  clip-path: polygon(86% 0, 100% 0, 100% 100%, 75% 100%);
  z-index: 1;
  pointer-events: none;
}

.cta .shell {
  position: relative;
  z-index: 2;                 /* copy and screenshots sit above the panel */
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 70px 0;
}
.cta-copy { padding-right: 30px; }
.cta-copy h2 { font-size: 36px !important; line-height: 49px; font-weight: 600; padding-bottom: 10px; color: #fff !important;}
.cta-copy p  { font-size: 18px; line-height: 25px; font-weight: 600; padding-bottom: 50px; color:#fff; }
.cta-copy .btn { font-size: 18px; line-height: 25px; }

/* Stage pinned to the right of its column; the shots overhang it */
.cta-art {
  position: relative;
  width: 100%;
  max-width: 633px;
  aspect-ratio: 633 / 430;
  margin-left: auto;
}
.cta-art img {
  position: absolute;
  border-radius: 4px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .45);
}
.cta-art .art-back  { top: 0;     left: 35%;   width: 78.7%; z-index: 2; position: absolute;}
.cta-art .art-front { top: 29.4%; left: 13.7%; width: 85.6%; z-index: 3; position: absolute;}

/* Responsive */
/* Tablet: plans 2 × 2, add-ons stay three across */
@media (max-width: 1100px) {
  .plan-grid.is-active { flex-wrap: wrap; }
  .plan { flex: 1 1 calc(50% - 10px); }

  /* Tablet: smaller heads, 220px feature column */
  .compare-table thead th { font-size: 20px; line-height: 27px; }
  .compare-table tr > *:first-child { width: 220px; }

  /* CTA: narrower columns, so the panel and the shots shift left */
  .cta .shell { padding: 70px 40px; }
  .cta::after { clip-path: polygon(77% 0, 100% 0, 100% 100%, 66% 100%); }
  .cta-art .art-back  { left: 21.25%; }
  .cta-art .art-front { left: 0; }
  .cta-row td { padding: 20px 6px 0; }
  .cta-row .btn { padding: 8px 10px; font-size: 14px; }
}

@media (max-width: 900px) {
  .addon-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
  .section { padding: 48px 16px; }
  .addon-grid { grid-template-columns: 1fr; }
  .pricing h1 { font-size: 28px;}
  .section-title { font-size: 30px !important; line-height: 41px; }

  /* the table stays edge to edge, and the dark band stays joined */
  .addons { padding-bottom: 0; }
  .compare { padding: 48px 0 50px; }

  .plan { flex: 1 1 100%; }

  /* Phone stacks, and the screenshots move above the copy */
  .cta .shell {
    grid-template-columns: 1fr;
    gap: 41px;
    min-height: 0;
    padding: 70px 15px;
  }
  .cta-art  { order: 1; }
  .cta-copy { order: 2; padding: 0; text-align: center; }
  .cta-copy h2 { font-size: 30px !important; line-height: 41px; }

  .cta-art { max-width: none; margin: 0; }
  .cta::after { display: none; }   /* no white panel in the phone layout */
}

/* Phone: column titles become dots, legend carries the names */
@media (max-width: 620px) {
  .compare { --head-h: 45px; padding-bottom: 0; }
  .compare .section-title { padding-bottom: 20px; }

  /* Title + legend pin above the table head */
  .compare-head {
    position: sticky;
    top: 0;
    z-index: 6;
    padding: 0 10px 10px;
    background: var(--bg-darkest);
  }
  .legend { display: flex; gap: 10px 16px; }

  /* No per-column CTAs on phone */
  .cta-row { display: none; }

  /* Column titles collapse to dots */
  .col-name { display: none; }
  /* Dot row is a plain band */
  .compare-table thead th,
  .compare-table .col-basic,
  .compare-table .col-bi,
  .compare-table .col-eng,
  .compare-table .col-fin {
    height: 45px;
    padding: 12px 10px;
    line-height: 0;              /* the dot alone sets the row height */
    background: var(--bg-darkest);
  }
  .compare-table thead .col .dot {
    display: inline-block;
    width: 20.7px;
    height: 20.7px;
  }

  /* Feature column fixed at 210px */
  .compare-table tr > *:first-child { width: 210px; }
  .compare-table th,
  .compare-table td { padding: 12px 6px; }
  .compare-table .subrow th { padding-left: 32px; }

  .desktop-only   { display: none; }
  .mobile-only { display: table-cell; }
  td .mobile-only { display: inline; }
  .unlimited .mobile-only { font-size: 20px; line-height: 1; }
  /* Longer values step down so they stay on one line */
  .compare-table td.val { font-size: 14px; line-height: 19px; }

  .group-btn { padding: 12px 10px 12px 0; }

  .tooltip { max-width: min(300px, calc(100vw - 40px)); }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; }
}

/* Add-on price: billing-period suffix under the amount */
.addons .addon-price { text-align: right; }
.addons .addon-price .per {
  display: block;
  font-size: 13.3px;
  line-height: 18px;
  font-weight: 400;
  color: var(--p26-text);
}