:root {
  --brand: #1f18c0;
  --brand-strong: #17129a;
  --ink: #0a1836;
  --muted: #3f4d63;
  --line: #dce3ee;
  --soft: #f4f6fb;
  --white: #fff;
  --shadow: 0 12px 34px oklch(0.32 0.06 275 / 0.08);
  --radius: 16px;
  --site-width: 1160px;
  --header: 74px;
  --z-header: 20;
  --z-nav: 30;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Figtree, ui-sans-serif, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: var(--brand); text-decoration: none; }
a:hover { color: var(--brand-strong); }
a.btn-primary:hover,
a.btn-primary:focus-visible,
a.ee-post-button:hover,
a.ee-post-button:focus-visible,
a.ee-post-button:hover .button-atom__text,
a.ee-post-button:focus-visible .button-atom__text,
a.bde-loop-item__button:hover,
a.bde-loop-item__button:focus-visible,
a.bde-loop-item__button:hover .button-atom__text,
a.bde-loop-item__button:focus-visible .button-atom__text {
  color: #fff;
}
button, select { font: inherit; }

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

.skip-link {
  position: absolute;
  left: 16px;
  top: -40px;
  z-index: 40;
  background: var(--brand);
  color: #fff;
  padding: 8px 12px;
}
.skip-link:focus { top: 12px; }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.btn,
.btn-primary,
.outline-btn,
.best,
.breakdance-form-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border-radius: 8px;
  font-weight: 750;
  letter-spacing: -0.01em;
  transition: transform 160ms var(--ease), background 160ms var(--ease);
}
.btn-primary,
.breakdance-form-button {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 8px 20px oklch(0.35 0.18 275 / 0.22);
}
.btn-primary:hover,
.breakdance-form-button:hover {
  background: var(--brand-strong);
  color: #fff;
  transform: translateY(-1px);
}
.outline-btn {
  border: 1px solid #c5d0f5;
  background: #fff;
  color: var(--brand);
}
.outline-btn:hover { background: var(--soft); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-header);
  height: var(--header);
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 28px;
}
.logo,
.footer-logo {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}
.logo img,
.footer-logo img {
  display: block;
  width: 175px;
  height: auto;
}
.footer-logo img { width: 200px; }
.logo:hover,
.footer-logo:hover { opacity: 0.88; }
.nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 15px;
  font-weight: 650;
}
.nav a { color: var(--ink); }
.nav a.is-active,
.nav a[aria-current="page"] { color: var(--brand); }
.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 15px;
  font-weight: 650;
}
.header-actions .btn-primary {
  min-height: 42px;
  padding: 10px 18px;
}
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  font-size: 14px;
  font-weight: 750;
  letter-spacing: 0.04em;
}
.lang-switch a { color: var(--muted); }
.lang-switch a:hover,
.lang-switch a.is-active { color: var(--brand); }
.lang-switch__sep {
  color: var(--line);
  font-weight: 500;
}
.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  background: transparent;
  align-content: center;
  gap: 5px;
}
.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
}

/* Home */
.hero { padding: 36px 0 28px; }
.hero-inner {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  gap: 36px;
  align-items: center;
}
h1, .hero h1 {
  margin: 0 0 32px;
  font-size: clamp(2rem, 4vw, 2.35rem);
  line-height: 1.12;
  letter-spacing: -0.04em;
  font-weight: 800;
  text-wrap: balance;
}
.hero h1 .line { display: block; }
.accent { color: var(--brand); }
.hero-line {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px;
  align-items: center;
  margin-bottom: 24px;
  font-size: 1.35rem;
  line-height: 1.2;
  font-weight: 750;
  letter-spacing: -0.03em;
}
.circle {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--brand);
  color: #fff;
  box-shadow: 0 8px 20px oklch(0.35 0.18 275 / 0.2);
}
.circle svg { width: 28px; height: 28px; }

.compare {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  aspect-ratio: 1;
  background: var(--soft);
  user-select: none;
  touch-action: none;
  cursor: ew-resize;
  container-type: inline-size;
}
.compare img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.compare-after {
  display: block;
  width: 100%;
  height: 100%;
}
.compare-before-wrap {
  position: absolute;
  inset: 0 auto 0 0;
  width: 53%;
  overflow: hidden;
}
.compare-before-wrap img {
  width: 100cqw;
  max-width: none;
  height: 100%;
  object-fit: cover;
  object-position: left center;
}
.compare-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 53%;
  width: 50px;
  transform: translateX(-50%);
  z-index: 2;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: ew-resize;
}
.compare-handle::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: #fff;
  transform: translateX(-50%);
}
.compare-knob {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50px;
  height: 50px;
  border: 1px solid #fff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background: transparent;
}
.compare-arrow {
  width: 12.5px;
  height: 12.5px;
  box-sizing: border-box;
  transform: rotate(45deg);
  transition: margin 0.2s ease;
}
.compare-arrow:first-child {
  border-bottom: 3px solid #fff;
  border-left: 3px solid #fff;
}
.compare-arrow:last-child {
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
}
.compare:hover .compare-arrow:first-child {
  margin-right: 5px;
}

.usp-section { padding: 8px 0 28px; }
.usp {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.usp-item {
  position: relative;
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 12px;
  align-items: center;
  padding: 20px 14px;
}
.usp-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 24px;
  bottom: 24px;
  width: 1px;
  background: var(--line);
}
.usp-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.usp-icon svg { width: 26px; height: 26px; }
.usp-item:nth-child(1) .usp-icon { background: #eceeff; color: var(--brand); }
.usp-item:nth-child(2) .usp-icon { background: #eaf9ea; color: #1d8a2d; }
.usp-item:nth-child(3) .usp-icon { background: #fff3dc; color: #c07a00; }
.usp-item:nth-child(4) .usp-icon { background: #eef0ff; color: var(--brand); }
.usp-item:nth-child(5) .usp-icon { background: #eaf4ff; color: var(--brand); }
.usp-title { font-size: 16px; font-weight: 780; letter-spacing: -0.02em; line-height: 1.25; margin-bottom: 6px; }
.usp-sub { font-size: 13px; color: var(--muted); }

.home-pricing {
  padding: 28px 0 40px;
  background: linear-gradient(90deg, #fff 0%, #f7f8fd 55%, #fff 100%);
}
.pricing-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr 0.95fr 0.95fr;
  gap: 16px;
  align-items: stretch;
}
.eyebrow {
  font-size: 13px;
  font-weight: 800;
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 20px;
}
.home-pricing h2 {
  margin: 0;
  font-size: clamp(1.5rem, 2.4vw, 1.7rem);
  line-height: 1.25;
  letter-spacing: -0.04em;
  text-wrap: balance;
}
.home-pricing h2 span { display: block; }
.pricing-notes { margin-top: 32px; display: grid; gap: 12px; font-size: 17px; }
.note-row { display: flex; align-items: center; gap: 12px; }
.check {
  width: 20px;
  height: 20px;
  border: 2px solid var(--brand);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--brand);
  font-size: 12px;
  font-weight: 900;
}
.price-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 6px 22px oklch(0.32 0.05 275 / 0.04);
}
.price-card.featured { border: 2px solid var(--brand); }
.brand { font-size: 19px; font-weight: 820; color: var(--brand); margin-bottom: 10px; }
.from { font-size: 15px; }
.price { font-size: 41px; line-height: 1; font-weight: 830; color: var(--brand); letter-spacing: -0.04em; }
.price-dark { font-size: 33px; font-weight: 800; letter-spacing: -0.03em; margin: 8px 0 2px; }
.suffix { font-size: 16px; margin-top: 4px; }
.includes {
  align-self: flex-start;
  background: var(--brand);
  color: #fff;
  border-radius: 5px;
  padding: 7px 8px;
  font-size: 12px;
  font-weight: 820;
  margin: 10px 0 8px;
}
.small { font-size: 12px; color: var(--muted); margin-bottom: 12px; }
.card-title { font-size: 15px; font-weight: 750; margin-bottom: 4px; }
.paid { font-size: 12px; color: var(--muted); margin: 8px 0 14px; }
.features { display: grid; gap: 11px; font-size: 13px; }
.feature { display: flex; gap: 8px; align-items: flex-start; }
.dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  background: #e1e4e9;
  color: #5b6473;
  font-size: 9px;
  font-weight: 900;
  margin-top: 2px;
}
.featured .dot { background: var(--brand); color: #fff; }
.best { margin-top: auto; background: var(--brand); color: #fff; text-align: center; }

.mockups { border-top: 1px solid var(--line); padding: 36px 0; }
.mockups-grid {
  display: grid;
  grid-template-columns: 0.8fr 0.5fr 1.4fr;
  gap: 22px;
  align-items: start;
}
.mockups-copy h2 {
  font-size: clamp(1.5rem, 2.6vw, 1.8rem);
  letter-spacing: -0.04em;
  margin: 0 0 16px;
  text-wrap: balance;
}
.mockups-copy p { color: var(--muted); max-width: 36ch; }
.upload-card {
  min-height: 220px;
  border: 1.5px dashed #9bb0f0;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
  font-weight: 700;
  color: var(--ink);
}
.upload-card svg { width: 48px; height: 48px; color: var(--brand); }
.gallery-wrap img { width: 100%; height: 221px; object-fit: cover; border-radius: 14px; }
.gallery-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 16px;
  font-size: 12px;
  color: var(--muted);
}
.meta { display: flex; align-items: center; gap: 8px; justify-content: center; }
.meta svg { width: 18px; height: 18px; color: var(--brand); flex: 0 0 auto; }

.suitable { border-top: 1px solid var(--line); padding: 28px 0 40px; }
.suitable-inner { display: grid; grid-template-columns: 140px 1fr; align-items: center; gap: 20px; }
.suitable-title { font-size: 18px; font-weight: 700; margin-bottom: 12px; text-align: center; }
.logos {
  display: flex;
  justify-content: space-around;
  gap: 16px;
  color: #6b7382;
  font-weight: 800;
  font-size: 22px;
  flex-wrap: wrap;
}

/* Footer — match original WordPress layout */
.site-footer {
  margin-top: 0;
  padding: 100px 0;
  background: #fff;
  color: var(--ink);
  border-top: 1px solid #e5ebf3;
  text-align: left;
}
.footer-grid {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 32px;
  margin-bottom: 40px;
  align-items: flex-start;
}
.footer-brand,
.footer-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  width: calc(25% - 24px);
  min-width: 0;
}
.footer-logo {
  margin: 0 0 20px;
}
.footer-tagline {
  margin: 0 0 10px;
  font-size: 14px;
}
.footer-follow {
  margin: 0 0 10px;
  font-weight: 700;
}
.footer-social {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7px;
  background: #fff;
  color: #000;
  border-radius: 0;
  transition: transform 300ms ease, opacity 300ms ease;
}
.footer-social a:hover {
  transform: scale(1.1);
  opacity: 0.8;
  color: #000;
}
.footer-social svg { display: block; fill: #000; }
.footer-heading {
  margin: 0 0 10px;
  font-weight: 700;
  color: var(--ink);
}
.footer-gap { margin-bottom: 30px; }
.footer-contact a { display: flex; }
.footer-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}
.footer-menu a {
  display: inline-block;
  padding: 8px 0;
  color: #000;
}
.footer-menu a:hover,
.footer-menu a.is-active,
.footer-menu a[aria-current="page"] { color: var(--brand); }
.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 20px;
}
.footer-legal a {
  color: #999;
  padding: 8px 0;
}
.footer-legal a:hover { color: var(--brand); }
.footer-copy {
  margin: 20px 0 0;
  color: #666;
  font-size: 14px;
}

@media (max-width: 1023px) {
  .footer-grid { flex-wrap: wrap; }
  .footer-brand,
  .footer-col { width: calc(50% - 16px); }
}

@media (max-width: 767px) {
  .footer-grid {
    flex-direction: column;
    flex-wrap: nowrap;
  }
  .footer-brand,
  .footer-col { width: 100%; }
  .footer-spacer { display: none; }
}

/* Inner pages leftover from conversion */
.section-container {
  width: min(var(--site-width), calc(100% - 48px));
  margin-inline: auto;
  padding-block: 56px;
}
.bde-heading, .bde-dual-heading {
  margin: 0 0 20px;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.04em;
  text-wrap: balance;
}
.bde-text, .bde-rich-text { color: var(--muted); max-width: 72ch; }
.bde-rich-text p { margin: 0 0 1em; }
.bde-columns { display: flex; flex-wrap: wrap; gap: 24px; }
.bde-column { flex: 1 1 260px; min-width: 0; }
.bde-image2 { width: 100%; max-width: 100%; }
.ee-posts, .bde-loop-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
}
.bde-section-220-103 .section-container {
  padding-top: 72px;
  padding-bottom: 12px;
}
.bde-section-220-100 .section-container {
  padding-top: 20px;
}
.ee-post, .bde-loop-item {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-bottom: 12px;
}
.ee-post-wrap, .bde-loop-item__wrap {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.ee-post-image, .bde-loop-item__image {
  overflow: hidden;
  border-radius: 14px;
}
.ee-post-image img, .bde-loop-item__image img {
  width: 100%;
  aspect-ratio: 3 / 2;
  border-radius: 14px;
  object-fit: cover;
  transition: transform 480ms var(--ease);
}
.ee-post:hover .ee-post-image img,
.bde-loop-item:hover .bde-loop-item__image img {
  transform: scale(1.045);
}
.t99-post-cover {
  display: grid;
  place-items: center;
  min-height: 188px;
  aspect-ratio: 3 / 2;
  border-radius: 14px;
  background: linear-gradient(160deg, #eef0fb, #f7f8fc);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.05em;
  color: #09073a;
}
.t99-post-cover strong { color: #1f18c0; font-weight: inherit; }
.ee-post-title { font-size: 1.2rem; letter-spacing: -0.03em; margin: 0; }
.ee-post-title a, .ee-post-title-link { color: var(--ink); }
.ee-post-meta { font-size: 13px; }
.bde-loop-item__meta-date,
.bde-loop-item__meta-item,
.ee-post-meta-date,
.ee-post-meta-item {
  display: inline-block;
  margin: 10px 0;
  color: #8b95a7;
}
.ee-post-content {
  color: var(--muted);
  flex: 1;
}
a.ee-post-button,
a.bde-loop-item__button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  margin-top: 28px;
  min-height: 44px;
  padding: 12px 18px;
  border-radius: 8px;
  background: var(--brand);
  color: #fff;
  font-weight: 750;
  letter-spacing: -0.01em;
  box-shadow: 0 8px 20px oklch(0.35 0.18 275 / 0.22);
  transition:
    transform 220ms var(--ease),
    background 220ms var(--ease),
    box-shadow 220ms var(--ease),
    color 220ms var(--ease);
}
a.ee-post-button .button-atom__text,
a.bde-loop-item__button .button-atom__text {
  color: #fff;
  transition: color 220ms var(--ease);
}
.ee-post-button__arrow {
  display: block;
  flex: 0 0 auto;
  color: #fff;
  transition: transform 220ms var(--ease);
}
a.ee-post-button:hover,
a.ee-post-button:focus-visible,
a.bde-loop-item__button:hover,
a.bde-loop-item__button:focus-visible {
  background: var(--brand-strong);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 14px 28px oklch(0.35 0.18 275 / 0.3);
}
a.ee-post-button:hover .button-atom__text,
a.ee-post-button:focus-visible .button-atom__text,
a.bde-loop-item__button:hover .button-atom__text,
a.bde-loop-item__button:focus-visible .button-atom__text,
a.ee-post-button:hover .ee-post-button__arrow,
a.ee-post-button:focus-visible .ee-post-button__arrow {
  color: #fff;
}
a.ee-post-button:hover .ee-post-button__arrow,
a.ee-post-button:focus-visible .ee-post-button__arrow,
a.bde-loop-item__button:hover .ee-post-button__arrow,
a.bde-loop-item__button:focus-visible .ee-post-button__arrow {
  transform: translateX(5px);
}
a.ee-post-button:active,
a.bde-loop-item__button:active {
  transform: translateY(-1px);
}

.breakdance-form { display: grid; gap: 16px; max-width: 560px; }
.breakdance-form-field { display: grid; gap: 8px; }
.breakdance-form-field__label { font-weight: 700; }
.breakdance-form-field__input,
.breakdance-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  font: inherit;
}
.form-note { font-weight: 700; color: var(--brand); }
.form-note.is-error { color: #b42318; }
.breakdance-form-field--hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.bde-post-meta {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 16px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #b8c0cc;
  font-size: 13px;
  line-height: 1;
  font-weight: 500;
}
.bde-post-meta .ee-postmeta-date-wrap,
.bde-post-meta .ee-postmeta-read-wrap {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.bde-post-meta .ee-postmeta-icon,
.bde-post-meta .breakdance-icon-atom {
  display: inline-flex;
  width: 13px;
  height: 13px;
  font-size: 13px;
  flex: 0 0 auto;
}
.bde-post-meta svg { width: 13px; height: 13px; fill: currentColor; }
.bde-social-share-buttons,
.bde-button-224-107,
.bde-div-224-106,
.bde-fancy-divider,
.bde-div-224-111,
.bde-comments-list { display: none !important; }

.bde-section-224-100 .section-container { padding-top: 36px; padding-bottom: 72px; }
.bde-columns-224-101,
.bde-column-224-102 {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  width: 100%;
  gap: 18px;
}
.bde-heading-224-103 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.15;
}
.bde-image2-224-115 {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
  margin: 8px 0;
}
.bde-rich-text-224-105 {
  max-width: none;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.7;
}
.bde-rich-text-224-105 p { margin: 0 0 1em; }
.bde-rich-text-224-105 p:last-child { margin-bottom: 0; }

.article-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  width: 100%;
  margin-top: 36px;
  padding-top: 8px;
}
.article-nav-card {
  position: relative;
  display: block;
  min-height: 220px;
  overflow: hidden;
  border-radius: 22px;
  color: #fff;
  isolation: isolate;
  box-shadow: 0 16px 40px oklch(0.28 0.08 275 / 0.14);
  transform: translateY(0);
  transition: transform 420ms var(--ease), box-shadow 420ms var(--ease);
}
.article-nav-next { grid-column: 2; }
.article-nav-media,
.article-nav-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.article-nav-media img {
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 700ms var(--ease);
}
.article-nav-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, oklch(0.22 0.08 275 / 0.08) 0%, oklch(0.16 0.07 275 / 0.22) 38%, oklch(0.12 0.06 275 / 0.82) 100%);
  z-index: 1;
  transition: background 420ms var(--ease);
}
.article-nav-body {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
  min-height: 220px;
  padding: 22px;
}
.article-nav-next .article-nav-body { align-items: flex-end; text-align: right; }
.article-nav-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: max-content;
  padding: 7px 12px 7px 8px;
  border-radius: 999px;
  background: oklch(1 0 0 / 0.16);
  backdrop-filter: blur(12px);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
}
.article-nav-next .article-nav-kicker { padding: 7px 8px 7px 12px; }
.article-nav-kicker svg {
  display: block;
  transition: transform 420ms var(--ease);
}
.article-nav-title {
  max-width: 28ch;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.03em;
  text-wrap: balance;
  color: #fff;
}
.article-nav-card:hover,
.article-nav-card:focus-visible {
  transform: translateY(-6px);
  box-shadow: 0 22px 48px oklch(0.28 0.12 275 / 0.22);
}
.article-nav-card:hover,
.article-nav-card:focus-visible,
.article-nav-card:hover .article-nav-title,
.article-nav-card:focus-visible .article-nav-title,
.article-nav-card:hover .article-nav-kicker,
.article-nav-card:focus-visible .article-nav-kicker { color: #fff; }
.article-nav-card:hover img,
.article-nav-card:focus-visible img { transform: scale(1.12); }
.article-nav-prev:hover .article-nav-kicker svg,
.article-nav-prev:focus-visible .article-nav-kicker svg { transform: translateX(-4px); }
.article-nav-next:hover .article-nav-kicker svg,
.article-nav-next:focus-visible .article-nav-kicker svg { transform: translateX(4px); }

.bde-icon-list ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.bde-icon-list li { display: flex; gap: 8px; align-items: center; }
.bde-wp-menu .breakdance-menu-toggle { display: none; }
.bde-wp-menu .breakdance-menu-list { display: grid; gap: 8px; list-style: none; padding: 0; margin: 0; }

/* About page */
#t99-about-page {
  --t99-about-brand: #1f18c0;
  --t99-about-brand-strong: #17129a;
  --t99-about-accent: #1f18c0;
  --t99-about-ink: #0a1836;
  --t99-about-muted: #3f4d63;
  --t99-about-line: #dce3ee;
  --t99-about-soft: #f4f6fb;
  --t99-about-soft-blue: #eceeff;
  --t99-about-white: #ffffff;
  --t99-about-radius-lg: 32px;
  --t99-about-shadow: 0 24px 70px oklch(0.28 0.05 275 / 0.08);
  width: 100%;
  overflow: hidden;
}
#t99-about-page a { color: inherit; text-decoration: none; }
#t99-about-page .t99-about-container { width: min(var(--site-width), calc(100% - 48px)); margin: 0 auto; }
#t99-about-page .t99-about-section { padding: 96px 0; }
#t99-about-page .t99-about-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  color: var(--t99-about-brand);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
#t99-about-page .t99-about-eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
}
#t99-about-page .t99-about-h1,
#t99-about-page .t99-about-h2,
#t99-about-page .t99-about-h3,
#t99-about-page .t99-about-p { margin-top: 0; }
#t99-about-page .t99-about-h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  font-weight: 800;
  text-wrap: balance;
}
#t99-about-page .t99-about-h2 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  font-weight: 800;
  text-wrap: balance;
}
#t99-about-page .t99-about-h3 {
  margin-bottom: 10px;
  font-size: 22px;
  letter-spacing: -0.025em;
  font-weight: 750;
}
#t99-about-page .t99-about-p {
  max-width: 72ch;
  color: var(--t99-about-muted);
  font-size: 18px;
  line-height: 1.7;
}
#t99-about-page .t99-about-hero {
  padding: 96px 0 80px;
  background:
    radial-gradient(circle at 92% 10%, oklch(0.45 0.18 275 / 0.12), transparent 29%),
    linear-gradient(180deg, #fff 0%, #f7f8fd 100%);
}
#t99-about-page .t99-about-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 64px;
  align-items: center;
}
#t99-about-page .t99-about-hero-lead { max-width: 690px; color: var(--muted); font-size: 20px; line-height: 1.65; }
#t99-about-page .t99-about-hero-lead strong { color: var(--ink); }
#t99-about-page .t99-about-chip-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 32px; }
#t99-about-page .t99-about-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  font-size: 14px;
  font-weight: 700;
}
#t99-about-page .t99-about-chip-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand);
}
#t99-about-page .t99-about-visual {
  position: relative;
  min-height: 480px;
  border: 1px solid var(--line);
  border-radius: 34px;
  background: linear-gradient(155deg, #fff 0%, #eef1fb 100%);
  box-shadow: var(--t99-about-shadow);
  overflow: hidden;
}
#t99-about-page .t99-about-visual-topbar,
#t99-about-page .t99-about-render-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px 12px;
}
#t99-about-page .t99-about-visual-brand { font-weight: 800; color: var(--brand); }
#t99-about-page .t99-about-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  border-radius: 999px;
  background: #eaf8ef;
  color: #17633a;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}
#t99-about-page .t99-about-status::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #2e9d5b;
}
#t99-about-page .t99-about-workflow { position: relative; padding: 32px 26px 28px; }
#t99-about-page .t99-about-workflow-line {
  position: absolute;
  top: 92px;
  left: 74px;
  right: 74px;
  height: 2px;
  background: linear-gradient(90deg, #d4dcec, var(--brand), #d4dcec);
}
#t99-about-page .t99-about-workflow-nodes {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
#t99-about-page .t99-about-node { text-align: center; }
#t99-about-page .t99-about-node-icon {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  margin: 0 auto 13px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  color: var(--brand);
}
#t99-about-page .t99-about-node-icon svg,
#t99-about-page .t99-about-principle-mark svg,
#t99-about-page .t99-about-tool-icon svg {
  display: block;
  width: 22px;
  height: 22px;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
#t99-about-page .t99-about-node-icon svg { width: 26px; height: 26px; }
#t99-about-page .t99-about-node-icon svg *,
#t99-about-page .t99-about-principle-mark svg *,
#t99-about-page .t99-about-tool-icon svg * {
  fill: none;
  stroke: currentColor;
}
#t99-about-page .t99-about-node-label { font-size: 12px; font-weight: 750; }
#t99-about-page .t99-about-render-card {
  margin: 42px 12px 0;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
}
#t99-about-page .t99-about-render-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}
#t99-about-page .t99-about-render-thumb {
  display: block;
  overflow: hidden;
  aspect-ratio: 53 / 45;
  border-radius: 12px;
  background: #eef2f7;
  cursor: zoom-in;
}
#t99-about-page .t99-about-render-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  transition: transform 420ms var(--ease);
}
#t99-about-page .t99-about-render-thumb:hover img,
#t99-about-page .t99-about-render-thumb:focus-visible img {
  transform: scale(1.06);
}

.t99-lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 28px;
  background: oklch(0.16 0.04 275 / 0.78);
  backdrop-filter: blur(12px);
}
.t99-lightbox[hidden] { display: none; }
.t99-lightbox__stage {
  position: relative;
  display: grid;
  place-items: center;
  width: min(1080px, 100%);
  max-height: calc(100vh - 56px);
}
.t99-lightbox__img {
  display: block;
  max-width: 100%;
  max-height: calc(100vh - 56px);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 28px 80px oklch(0.18 0.05 275 / 0.42);
}
.t99-lightbox__btn {
  position: absolute;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 10px 24px oklch(0.2 0.04 275 / 0.22);
  cursor: pointer;
}
.t99-lightbox__btn:hover,
.t99-lightbox__btn:focus-visible {
  background: var(--brand);
  color: #fff;
}
.t99-lightbox__close { top: 0; right: 0; }
.t99-lightbox__prev { left: 0; top: 50%; transform: translateY(-50%); }
.t99-lightbox__next { right: 0; top: 50%; transform: translateY(-50%); }
.t99-lightbox__btn svg { display: block; width: 18px; height: 18px; fill: currentColor; }
body.t99-lightbox-open { overflow: hidden; }
#t99-about-page .t99-about-visual-foot {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 14px 12px 0;
}
#t99-about-page .t99-about-mini-stat { padding: 13px 12px; border-radius: 14px; background: var(--soft); }
#t99-about-page .t99-about-mini-stat strong { display: block; font-size: 13px; }
#t99-about-page .t99-about-mini-stat span { color: var(--muted); font-size: 11px; }
#t99-about-page .t99-about-story-grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 72px;
}
#t99-about-page .t99-about-story-sticky { position: sticky; top: 96px; }
#t99-about-page .t99-about-story-card {
  position: relative;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--soft);
  overflow: hidden;
}
#t99-about-page .t99-about-story-number {
  color: var(--brand);
  font-size: 74px;
  line-height: 1;
  font-weight: 850;
  letter-spacing: -0.04em;
}
#t99-about-page .t99-about-story-caption { max-width: 250px; font-weight: 750; }
#t99-about-page .t99-about-story-copy .t99-about-p + .t99-about-p { margin-top: 22px; }
#t99-about-page .t99-about-principles { background: var(--soft); }
#t99-about-page .t99-about-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 48px;
}
#t99-about-page .t99-about-principles-grid,
#t99-about-page .t99-about-tools-grid { display: grid; gap: 18px; }
#t99-about-page .t99-about-principles-grid { grid-template-columns: repeat(3, 1fr); }
#t99-about-page .t99-about-tools-grid { grid-template-columns: repeat(2, 1fr); }
#t99-about-page .t99-about-principle-card,
#t99-about-page .t99-about-tool-card {
  min-height: 260px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
}
#t99-about-page .t99-about-principle-index,
#t99-about-page .t99-about-tool-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  color: var(--brand);
  font-size: 13px;
  font-weight: 800;
}
#t99-about-page .t99-about-principle-mark,
#t99-about-page .t99-about-tool-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: var(--t99-about-soft-blue);
  color: var(--brand);
}
#t99-about-page .t99-about-tool-featured {
  border-color: #cfd9f3;
  background: radial-gradient(circle at 90% 0%, oklch(0.5 0.16 275 / 0.12), transparent 36%), #fff;
}
#t99-about-page .t99-about-tool-badge {
  padding: 7px 10px;
  border-radius: 999px;
  background: #f2f4f7;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
#t99-about-page .t99-about-tool-badge-live { background: #eaf8ef; color: #17633a; }
#t99-about-page .t99-about-audience { background: var(--brand-strong); color: #fff; }
#t99-about-page .t99-about-audience .t99-about-eyebrow { color: #b9c9f7; }
#t99-about-page .t99-about-audience .t99-about-p { color: #c8d1e9; }
#t99-about-page .t99-about-audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 46px;
}
#t99-about-page .t99-about-audience-card {
  padding: 30px;
  border: 1px solid oklch(1 0 0 / 0.12);
  border-radius: 24px;
  background: oklch(1 0 0 / 0.06);
}
#t99-about-page .t99-about-audience-card .t99-about-h3 { color: #fff; }
#t99-about-page .t99-about-pricing-box {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 48px;
  align-items: center;
  padding: 54px;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: var(--soft);
}
#t99-about-page .t99-about-pricing-visual { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
#t99-about-page .t99-about-price-tile {
  min-height: 136px;
  padding: 22px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid var(--line);
}
#t99-about-page .t99-about-price-tile strong {
  display: block;
  margin-bottom: 8px;
  color: var(--brand);
  font-size: 22px;
  letter-spacing: -0.03em;
}
#t99-about-page .t99-about-cta { padding: 96px 0 112px; }
#t99-about-page .t99-about-cta-box {
  position: relative;
  overflow: hidden;
  padding: 68px;
  border-radius: 34px;
  background: var(--ink);
  color: #fff;
}
#t99-about-page .t99-about-cta-box .t99-about-p { color: #b8c0d0; }
#t99-about-page .t99-about-cta-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
#t99-about-page .t99-about-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 20px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 800;
}
#t99-about-page .t99-about-btn-primary { background: #fff; color: var(--ink); }
#t99-about-page .t99-about-btn-secondary {
  border: 1px solid oklch(1 0 0 / 0.18);
  background: oklch(1 0 0 / 0.08);
  color: #fff;
}

@media (max-width: 1023px) {
  .ee-posts, .bde-loop-grid,
  .article-nav { grid-template-columns: 1fr; }
  .article-nav-next { grid-column: auto; }
  .article-nav-next .article-nav-body { align-items: flex-start; text-align: left; }
}

@media (max-width: 980px) {
  .nav {
    display: none;
    position: absolute;
    top: var(--header);
    left: 0;
    right: 0;
    z-index: var(--z-nav);
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 16px 24px 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .nav.is-open { display: flex; }
  .menu-toggle { display: grid; }
  .hero-inner,
  .pricing-grid,
  .mockups-grid,
  .suitable-inner,
  #t99-about-page .t99-about-hero-grid,
  #t99-about-page .t99-about-story-grid,
  #t99-about-page .t99-about-pricing-box,
  #t99-about-page .t99-about-principles-grid,
  #t99-about-page .t99-about-audience-grid { grid-template-columns: 1fr; }
  .usp { grid-template-columns: 1fr 1fr; }
  .usp-item:nth-child(2)::after,
  .usp-item:nth-child(4)::after { display: none; }
  #t99-about-page .t99-about-story-sticky { position: static; }
  #t99-about-page .t99-about-tools-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .container, .section-container, #t99-about-page .t99-about-container { width: min(100% - 28px, var(--site-width)); }
  .logo img { width: 150px; }
  .header-actions { margin-left: auto; }
  .t99-lightbox { padding: 12px; }
  .t99-lightbox__prev,
  .t99-lightbox__next {
    top: auto;
    bottom: 10px;
    transform: none;
  }
  .t99-lightbox__prev { left: 10px; }
  .t99-lightbox__next { right: 10px; }
  .usp { grid-template-columns: 1fr; }
  .usp-item::after { display: none; }
  .gallery-meta { grid-template-columns: 1fr; gap: 10px; }
  #t99-about-page .t99-about-pricing-visual { grid-template-columns: 1fr; }
  #t99-about-page .t99-about-btn { width: 100%; }
  #t99-about-page .t99-about-cta-box,
  #t99-about-page .t99-about-pricing-box { padding: 32px 22px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn-primary, .t99-about-btn, .compare-arrow,
  .article-nav-card, .article-nav-media img, .article-nav-kicker svg,
  .ee-post-button, .bde-loop-item__button, .ee-post-button__arrow,
  .ee-post-image img, .bde-loop-item__image img { transition: none; }
  .article-nav-card:hover,
  .article-nav-card:focus-visible { transform: none; }
  a.ee-post-button:hover,
  a.ee-post-button:focus-visible,
  a.bde-loop-item__button:hover,
  a.bde-loop-item__button:focus-visible { transform: none; box-shadow: 0 8px 20px oklch(0.35 0.18 275 / 0.22); }
  a.ee-post-button:hover .ee-post-button__arrow,
  a.ee-post-button:focus-visible .ee-post-button__arrow { transform: none; }
  .ee-post:hover .ee-post-image img,
  .bde-loop-item:hover .bde-loop-item__image img,
  #t99-about-page .t99-about-render-thumb img { transform: none; }
  .article-nav-card:hover img,
  .article-nav-card:focus-visible img { transform: scale(1.04); }
}

/* pricing board (from app recharge modal, page layout) */

.pricing-page {
  padding: 36px 0 72px;
  background: #fff;
}

.pricing-board {
  --blue-950: #030213;
  --blue-900: #09073A;
  --blue-800: #100C60;
  --blue-700: #161186;
  --blue-600: #1F18C0;
  --blue-500: #4C46CD;
  --blue-100: #D2D1F2;
  --blue-50: #E9E8F9;
  --line: #D2D1F2;
  --line-strong: #8F8CE0;
  --text: #09073A;
  --muted: #6D6B8D;
  --surface: #ffffff;
  --shadow: 0 28px 80px rgba(31, 24, 192, 0.22);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --focus: 0 0 0 4px rgba(31, 24, 192, 0.22);
  width: min(1220px, calc(100% - 48px));
  margin: 0 auto;
  color: var(--text);
}

.pricing-board .recharge-dialog {
  position: relative;
  width: 100%;
  border: 1px solid rgba(210, 209, 242, 0.92);
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.pricing-board .recharge-inner {
  padding: 16px 36px;
}

.pricing-board .recharge-close {
  position: absolute;
  top: 22px;
  right: 22px;
  z-index: 4;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: var(--blue-900);
  transition: background 140ms ease, transform 140ms ease;
  cursor: pointer;
  font: inherit;
}

.pricing-board .recharge-close:hover {
  background: var(--blue-50);
  transform: rotate(4deg);
}

.pricing-board .recharge-close:focus-visible,
.pricing-board .recharge-btn:focus-visible {
  outline: none;
  box-shadow: var(--focus);
}

.pricing-board .recharge-top {
  display: grid;
  grid-template-columns: auto auto;
  gap: 28px;
  align-items: start;
  justify-content: start;
}

.pricing-board .recharge-brand {
  font-size: 28px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.05em;
  color: var(--blue-900);
}

.pricing-board .recharge-brand strong {
  color: var(--blue-600);
}

.pricing-board .recharge-title {
  margin: 0;
  font-size: clamp(20px, 4vw, 26px);
  line-height: 1.02;
  letter-spacing: -0.045em;
  color: var(--text);
}

.pricing-board .balance-chip {
  min-width: 230px;
  padding: 8px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
}

.pricing-board .balance-chip__label {
  display: block;
  margin-bottom: 4px;
  font-size: 13px;
  color: var(--muted);
}

.pricing-board .balance-chip__row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-board .balance-chip__value {
  font-size: 28px;
  line-height: 1;
  font-weight: 850;
  letter-spacing: -0.03em;
  color: var(--blue-700);
}

.pricing-board .balance-chip__unit {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}

.pricing-board .benefit-banner {
  display: grid;
  grid-template-columns: auto auto;
  width: max-content;
  max-width: 100%;
  justify-self: start;
  align-items: stretch;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(115deg, rgba(31, 24, 192, 0.11), rgba(31, 24, 192, 0.02)),
    #fff;
}

.pricing-board .benefit {
  position: relative;
  display: grid;
  grid-template-columns: 54px auto;
  align-items: center;
  gap: 15px;
  padding: 5px 28px;
}

.pricing-board .benefit + .benefit::before {
  content: "";
  position: absolute;
  left: 0;
  top: 22%;
  bottom: 22%;
  width: 1px;
  background: var(--line);
}

.pricing-board .benefit__icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.72);
  color: var(--blue-700);
}

.pricing-board .benefit__title {
  display: block;
  margin-bottom: 5px;
  font-size: 17px;
  font-weight: 850;
  color: var(--text);
}

.pricing-board .recharge-empty {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.pricing-board .plans {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

.pricing-board .plan {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: 0 8px 24px rgba(31, 24, 192, 0.06);
}

.pricing-board .plan--popular {
  border-color: var(--blue-500);
  box-shadow: 0 16px 34px rgba(31, 24, 192, 0.13);
}

.pricing-board .plan-cost {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-self: self-end;
}

.pricing-board .plan-cost strong {
  font-size: 20px;
  border-radius: 100%;
  background: var(--blue-50);
  padding: 10px;
}

.pricing-board .plan-cost span {
  font-size: 12px;
  width: 76px;
  display: block;
}

.pricing-board .plan__ribbon {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 7px 16px;
  border-radius: 8px;
  background: var(--blue-700);
  color: #fff;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.04em;
  white-space: nowrap;
  text-transform: uppercase;
}

.pricing-board .plan__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.pricing-board .plan__name {
  margin: 0;
  font-size: 18px;
  line-height: 1.25;
  color: var(--text);
}

.pricing-board .plan__bonus {
  flex: 0 0 auto;
  padding: 7px 10px;
  border-radius: 9px;
  background: var(--blue-100);
  color: var(--blue-700);
  font-size: 12px;
  font-weight: 850;
  white-space: nowrap;
}

.pricing-board .plan__price-row {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: end;
  gap: 28px;
  margin-top: 24px;
}

.pricing-board .plan__price {
  font-size: 48px;
  line-height: 0.94;
  font-weight: 900;
  letter-spacing: -0.05em;
  color: var(--text);
}

.pricing-board .plan__credits-detail {
  margin-top: 7px;
  font-size: 14px;
  line-height: 1.45;
  color: var(--muted);
}

.pricing-board .plan__credits-detail strong {
  color: var(--blue-700);
}

.pricing-board .plan__features {
  display: grid;
  gap: 14px;
  margin: 21px 0 24px;
  padding: 0;
  list-style: none;
}

.pricing-board .plan__feature {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 11px;
  align-items: start;
  min-width: 0;
  font-size: 15px;
  line-height: 1.4;
  color: var(--text);
}

.pricing-board .plan__feature svg {
  margin-top: 1px;
  color: var(--blue-600);
}

.pricing-board .plan__feature strong {
  font-weight: 850;
}

.pricing-board .plan__feature small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 13px;
}

.pricing-board .plan__cta {
  margin-top: auto;
  padding-top: 4px;
}

.pricing-board .plan__details-toggle {
  display: none;
}

.pricing-board .plan__details-toggle-icon--hide {
  display: none;
}

.pricing-board .recharge-btn {
  width: 100%;
  min-height: 50px;
  padding: 13px 16px;
  border: 1px solid var(--blue-700);
  border-radius: 12px;
  background: linear-gradient(180deg, var(--blue-500), var(--blue-700));
  color: #fff;
  font-size: 16px;
  font-weight: 850;
  box-shadow: 0 10px 20px rgba(31, 24, 192, 0.18);
  transition: transform 140ms ease, box-shadow 140ms ease;
  cursor: pointer;
  font: inherit;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-sizing: border-box;
}

.pricing-board a.recharge-btn:hover,
.pricing-board a.recharge-btn:hover:not(:disabled) {
  color: #fff;
}

.pricing-board .recharge-btn:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 13px 26px rgba(31, 24, 192, 0.23);
}

.pricing-board .recharge-btn:disabled {
  opacity: 0.65;
  cursor: wait;
}

.pricing-board .recharge-info {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--blue-50);
}

.pricing-board .info-item {
  position: relative;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 15px;
  padding: 22px 24px;
}

.pricing-board .info-item + .info-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: var(--line);
}

.pricing-board .info-item__icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--blue-600);
  color: #fff;
}

.pricing-board .info-item__title {
  display: block;
  margin-bottom: 5px;
  color: var(--blue-700);
  font-size: 14px;
  font-weight: 850;
}

.pricing-board .info-item__text {
  display: block;
  font-size: 13px;
  line-height: 1.5;
  color: var(--muted);
}

@media (max-width: 1020px) {
  .pricing-board .recharge-inner {
    padding: 30px;
  }

  .pricing-board .benefit-banner {
    grid-template-columns: auto auto;
  }

  .pricing-board .plans {
    grid-template-columns: 1fr;
  }

  .pricing-board .plan__price-row {
    grid-template-columns: 150px 1fr;
  }

  .pricing-board .recharge-info {
    grid-template-columns: 1fr;
  }

  .pricing-board .info-item + .info-item::before {
    left: 24px;
    right: 24px;
    top: 0;
    bottom: auto;
    width: auto;
    height: 1px;
  }
}

@media (max-width: 720px) {
  .pricing-board {
    width: calc(100% - 28px);
  }

  .pricing-board .recharge-dialog {
    width: 100%;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .pricing-board .recharge-inner {
    padding: 21px 18px 24px;
  }

  .pricing-board .recharge-close {
    position: fixed;
    top: max(14px, env(safe-area-inset-top));
    right: 16px;
    background: rgba(255, 255, 255, 0.95);
  }

  .pricing-board .recharge-top {
    grid-template-columns: 1fr;
    gap: 17px;
    padding-right: 0;
  }

  .pricing-board .recharge-title {
    max-width: none;
    font-size: 35px;
  }

  .pricing-board .balance-chip {
    width: 100%;
    min-width: 0;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 10px;
  }

  .pricing-board .benefit-banner {
    grid-template-columns: 1fr;
    width: max-content;
    max-width: 100%;
  }
  .pricing-board .benefit__icon {
    width:30px;
    height: 30px;
  }
  .pricing-board .benefit__icon svg {
    width: 16px;
    height: 16px;
  }
  .pricing-board .benefit__title {
    font-size: 17px;
    margin-bottom:0;
  }

  .pricing-board .benefit {
    padding: 8px 20px;
    grid-template-columns: auto 1fr;
  }

  .pricing-board .benefit + .benefit::before {
    left: 20px;
    right: 20px;
    top: 0;
    bottom: auto;
    width: auto;
    height: 1px;
  }

  .pricing-board .plans {
    margin-top: 18px;
    gap: 16px;
  }

  .pricing-board .plan {
    padding: 21px 18px 18px;
  }

  .pricing-board .plan--popular {
    margin-top: 10px;
  }

  .pricing-board .plan__price-row {
    grid-template-columns: 92px 1fr;
    gap: 18px;
    margin-top: 20px;
  }

  .pricing-board .plan__price {
    font-size: 42px;
  }

  .pricing-board .plan__details-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    margin-top: 14px;
    padding: 10px 12px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--blue-50);
    color: var(--blue-700);
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
  }

  .pricing-board .plan__details-toggle:focus-visible {
    outline: none;
    box-shadow: var(--focus);
  }

  .pricing-board .plan__details-toggle-icon {
    flex: 0 0 auto;
    color: var(--blue-600);
  }

  .pricing-board .plan__features {
    display: none;
    margin-top: 14px;
  }

  .pricing-board .plan--details-open .plan__features {
    display: grid;
  }

  .pricing-board .plan--details-open .plan__details-toggle-icon--show {
    display: none;
  }

  .pricing-board .plan--details-open .plan__details-toggle-icon--hide {
    display: block;
  }

  .pricing-board .recharge-info {
    margin-top: 18px;
  }

  .pricing-board .info-item {
    padding: 19px 18px;
  }
}

@media (max-width: 430px) {
  .pricing-board .recharge-inner {
    padding-inline: 14px;
  }

  .pricing-board .recharge-title {
    font-size: 31px;
  }

  .pricing-board .balance-chip {
    grid-template-columns: 1fr;
  }

  .pricing-board .plan__header {
    align-items: center;
  }

  .pricing-board .plan__name {
    font-size: 17px;
  }

  .pricing-board .plan__price-row {
    grid-template-columns: 76px 1fr;
  }

  .pricing-board .plan__price {
    font-size: 38px;
  }

  .pricing-board .recharge-btn {
    font-size: 15px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pricing-board,
  .pricing-board * {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

