/* ============================================
   PolDoc AI — components
   ============================================ */

/* --------------------------------------------
   Buttons
   -------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  font-weight: 700;
  border: 1px solid transparent;
  border-radius: var(--r-xl);
  transition: background var(--t), color var(--t), border-color var(--t),
              transform var(--t), box-shadow var(--t);
}
.btn:active { transform: translateY(1px); }

/* sizes */
.btn--lg  { height: 54px; padding: 0 28px; font-size: 16px; }
.btn--md  { padding: 11px 18px; font-size: 14.5px; border-radius: var(--r-xl); }
.btn--sm  { padding: 10px 16px; font-size: 14px; border-radius: var(--r-lg); }
.btn--block { display: flex; width: 100%; text-align: center; }

/* variants */
.btn--primary {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}
.btn--primary:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

.btn--dark {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
  border-radius: 14px;
}
.btn--dark:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}

.btn--outline {
  background: transparent;
  border-color: var(--line-16);
  color: var(--ink);
}
.btn--outline:hover { border-color: var(--ink); color: var(--ink); }

.btn--white {
  background: #fff;
  border-color: #fff;
  color: var(--ink);
}
.btn--white:hover {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--ink);
}

/* --------------------------------------------
   Header
   -------------------------------------------- */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 250, 247, .85);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-07);
  transition: box-shadow .3s var(--ease), background .3s var(--ease);
}
.header.is-stuck {
  background: rgba(251, 250, 247, .94);
  box-shadow: 0 10px 30px -22px rgba(22, 22, 40, .5);
}

.header__inner {
  display: flex;
  align-items: center;
  gap: 30px;
  padding-block: 13px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
}
.logo:hover { color: var(--ink); }
.logo__mark {
  width: 26px;
  height: 26px;
  border-radius: 9px;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  transition: transform .35s var(--ease);
}
.logo:hover .logo__mark { transform: rotate(-8deg) scale(1.06); }
.logo__dot {
  width: 9px;
  height: 9px;
  border-radius: 3px;
  background: var(--yellow);
}
.logo__text {
  font-size: 16.5px;
  font-weight: 800;
  letter-spacing: -.02em;
}
.logo__text span { color: var(--blue); }

.nav {
  display: flex;
  gap: 26px;
  font-size: 14.5px;
  font-weight: 500;
}
.nav a {
  color: var(--ink-450);
  position: relative;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -5px;
  height: 2px;
  border-radius: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .28s var(--ease);
}
.nav a:hover { color: var(--ink); }
.nav a:hover::after { transform: scaleX(1); }

.header__actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 14px;
}

/* --------------------------------------------
   Institution cards
   -------------------------------------------- */
.inst {
  background: #fff;
  border: 1px solid var(--line-08);
  border-radius: var(--r-3xl);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color var(--t), transform var(--t), box-shadow var(--t);
}
.inst:hover {
  border-color: var(--blue-35);
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -30px rgba(22, 22, 40, .55);
}
.inst__head {
  display: flex;
  align-items: center;
  gap: 10px;
}
.inst__mark {
  height: 32px;
  min-width: 32px;
  padding: 0 10px;
  border-radius: var(--r-md);
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 12px;
  color: #fff;
  flex: none;
  transition: background var(--t);
}
.inst:hover .inst__mark { background: var(--blue); }
.inst__name {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -.015em;
  line-height: 1.2;
}
.inst__note {
  font-size: 13.5px;
  color: var(--ink-350);
  line-height: 1.45;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.chip {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-600);
  background: var(--surface-tag);
  border-radius: var(--r-sm);
  padding: 5px 8px;
}

/* --------------------------------------------
   Steps (Як це працює)
   -------------------------------------------- */
.step {
  background: #fff;
  border-radius: var(--r-4xl);
  padding: 28px;
  min-height: 230px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: transform var(--t), box-shadow var(--t);
}
.step:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 46px -32px rgba(22, 22, 40, .5);
}
.step--dark { background: var(--ink); color: #fff; }
.step__num {
  font-size: 52px;
  font-weight: 800;
  letter-spacing: -.05em;
  color: var(--blue);
  line-height: 1;
  margin-bottom: auto;
}
.step--dark .step__num { color: var(--yellow); }
.step__title {
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -.02em;
}
.step__text {
  font-size: 14.5px;
  color: var(--ink-350);
  line-height: 1.5;
}
.step--dark .step__text { color: var(--on-dark-muted); }

/* --------------------------------------------
   Feature cards (Не просто переклад)
   -------------------------------------------- */
.feat {
  background: #fff;
  border: 1px solid var(--line-08);
  border-radius: var(--r-4xl);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.feat:hover {
  transform: translateY(-4px);
  border-color: var(--blue-22);
  box-shadow: 0 22px 46px -32px rgba(22, 22, 40, .45);
}
.feat__art {
  background: var(--surface-soft);
  border-radius: var(--r-xl);
  padding: 18px;
  min-height: 132px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.feat__body { padding: 0 6px 6px; }
.feat__title {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -.02em;
}
.feat__text {
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--ink-350);
  margin-top: 5px;
}

/* art 1 — skeleton lines */
.art-lines { gap: 8px; }
.art-lines .bar {
  height: 8px;
  border-radius: 4px;
  background: rgba(22, 22, 26, .13);
}
.art-lines .bar--accent { background: var(--blue); }

/* art 2 — checklist */
.art-check { gap: 10px; }
.art-check__row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.art-check__box {
  width: 18px;
  height: 18px;
  border-radius: 6px;
  background: var(--blue);
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.art-check__box i {
  width: 7px;
  height: 7px;
  border-radius: 2px;
  background: #fff;
  display: block;
}
.art-check__box--empty {
  background: none;
  border: 1.5px solid rgba(22, 22, 26, .18);
}
.art-check__row .bar {
  height: 7px;
  border-radius: 4px;
  background: rgba(22, 22, 26, .16);
}

/* art 3 — calendar */
.art-cal {
  align-items: center;
  justify-content: center;
  flex-direction: row;
}
.art-cal__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
  width: 100%;
  max-width: 180px;
}
.art-cal__grid i {
  aspect-ratio: 1;
  border-radius: 4px;
  background: rgba(22, 22, 26, .08);
  display: block;
}
.art-cal__grid i.is-soft { background: var(--blue-18); }
.art-cal__grid i.is-due {
  background: var(--yellow);
  box-shadow: 0 0 0 3px var(--yellow-25);
  animation: pulse-due 2.6s var(--ease) infinite;
}
@keyframes pulse-due {
  0%, 100% { box-shadow: 0 0 0 3px var(--yellow-25); }
  50%      { box-shadow: 0 0 0 6px rgba(242, 183, 53, .16); }
}

/* art 4 — letter */
.art-letter {
  align-items: center;
  justify-content: center;
  flex-direction: row;
}
.art-letter__card {
  width: 100%;
  max-width: 170px;
  background: #fff;
  border: 1px solid var(--line-09);
  border-radius: var(--r-md);
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transform: rotate(-2deg);
  box-shadow: var(--shadow-letter);
  transition: transform .35s var(--ease);
}
.feat:hover .art-letter__card { transform: rotate(0deg) scale(1.03); }
.art-letter__head {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: .08em;
  color: var(--blue);
}
.art-letter__card .bar {
  height: 5px;
  border-radius: 3px;
  background: rgba(22, 22, 26, .13);
}

/* --------------------------------------------
   Example (before / after)
   -------------------------------------------- */
.orig {
  background: #fff;
  border: 1px solid var(--line-09);
  border-radius: var(--r-5xl);
  padding: 30px;
  position: relative;
  overflow: hidden;
}
.orig .kicker { font-size: 11px; margin-bottom: 20px; display: block; }
.orig__text {
  font-family: var(--font-serif);
  font-size: 15px;
  line-height: 1.75;
  color: var(--ink-700);
}
.orig__text p { margin-bottom: 14px; }
.orig__text p:last-child { margin-bottom: 0; color: var(--ink-300); }
.orig__org { font-weight: 600; margin-bottom: 14px; }
.orig__fade {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 100px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), #fff 78%);
  pointer-events: none;
}

.expl {
  background: #fff;
  border: 1px solid var(--blue-22);
  border-radius: var(--r-5xl);
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: var(--shadow-blue);
}
.expl__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.expl__top .kicker { font-size: 11px; color: var(--blue); }
.expl__time {
  font-size: 11.5px;
  font-family: var(--font-mono);
  color: var(--ink-300);
}
.expl__title {
  font-size: clamp(21px, 2.2vw, 24px);
  font-weight: 800;
  letter-spacing: -.025em;
  line-height: 1.25;
}
.expl__body {
  border-top: 1px solid var(--line-08);
  padding-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.expl__label {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--ink-300);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 6px;
}
.expl__text {
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--ink-700);
}
.alert {
  background: var(--yellow-14);
  border-radius: var(--r-xl);
  padding: 14px 16px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.alert__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #D99A0B;
  margin-top: 6px;
  flex: none;
}
.alert__title {
  font-size: 13px;
  font-weight: 700;
  color: #7A5A08;
  margin-bottom: 2px;
}
.alert__text {
  font-size: 14.5px;
  line-height: 1.5;
  color: #5C4A16;
}
.expl__foot { margin-top: auto; padding-top: 4px; }
.expl__cta {
  display: block;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  background: var(--blue);
  color: #fff;
  padding: 14px;
  border-radius: 14px;
  transition: background var(--t);
}
.expl__cta:hover { background: var(--ink); color: #fff; }

/* --------------------------------------------
   Audience cards
   -------------------------------------------- */
.aud {
  background: #fff;
  border-radius: var(--r-3xl);
  padding: 22px;
  min-height: 230px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform var(--t), box-shadow var(--t);
}
.aud:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 46px -32px rgba(22, 22, 40, .5);
}
.aud__icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--surface-tag);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  transition: transform .35s var(--ease);
}
.aud:hover .aud__icon { transform: scale(1.08) rotate(-4deg); }
.aud__title {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -.02em;
}
.aud__text {
  font-size: 14px;
  color: var(--ink-350);
  line-height: 1.45;
  margin-top: 4px;
}
.aud .chips { margin-top: auto; }

/* audience icon shapes */
.ic-docs { position: relative; width: 22px; height: 22px; }
.ic-docs i {
  position: absolute;
  width: 15px; height: 19px;
  border-radius: 3px;
  display: block;
}
.ic-docs i:nth-child(1) { left: 0; top: 3px; background: rgba(34, 56, 158, .25); }
.ic-docs i:nth-child(2) { left: 6px; top: 0; background: var(--blue); }

.ic-worker { display: flex; flex-direction: column; align-items: center; gap: 3px; }
.ic-worker i:nth-child(1) { width: 10px; height: 10px; border-radius: 50%; background: var(--blue); display: block; }
.ic-worker i:nth-child(2) { width: 20px; height: 9px; border-radius: 8px 8px 3px 3px; background: var(--yellow); display: block; }

.ic-bars { display: flex; align-items: flex-end; gap: 3px; height: 20px; }
.ic-bars i { width: 5px; border-radius: 2px; display: block; }
.ic-bars i:nth-child(1) { height: 9px;  background: var(--blue-30); }
.ic-bars i:nth-child(2) { height: 14px; background: var(--blue); }
.ic-bars i:nth-child(3) { height: 20px; background: var(--yellow); }

.ic-cap { display: flex; flex-direction: column; align-items: center; gap: 3px; }
.ic-cap i:nth-child(1) {
  width: 0; height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-bottom: 10px solid var(--blue);
  display: block;
}
.ic-cap i:nth-child(2) { width: 16px; height: 6px; border-radius: 2px; background: var(--yellow); display: block; }

.ic-family { display: flex; align-items: flex-end; gap: 4px; }
.ic-family i { border-radius: 50%; display: block; }
.ic-family i:nth-child(1) { width: 13px; height: 13px; background: var(--blue); }
.ic-family i:nth-child(2) { width: 9px;  height: 9px;  background: var(--yellow); }

/* --------------------------------------------
   Trust cards
   -------------------------------------------- */
.trust {
  background: #fff;
  border: 1px solid var(--line-08);
  border-radius: var(--r-4xl);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 270px;
  transition: transform var(--t), box-shadow var(--t);
}
.trust:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 46px -32px rgba(22, 22, 40, .45);
}
.trust--dark { background: var(--ink); color: #fff; border-color: var(--ink); }
.trust__art {
  background: var(--surface-soft);
  border-radius: var(--r-xl);
  padding: 16px;
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.trust--dark .trust__art {
  background: var(--white-05);
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  gap: 9px;
}
.trust__body { margin-top: auto; }
.trust__title {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.3;
}
.trust__text {
  font-size: 14.5px;
  color: var(--ink-350);
  margin-top: 6px;
  line-height: 1.5;
}
.trust--dark .trust__text { color: var(--on-dark-muted); }

/* trust art 1 — legalese → human */
.tone__label {
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: .1em;
  color: var(--on-dark-faint);
}
.tone__label--y { color: var(--yellow); }
.tone__set { display: flex; flex-direction: column; gap: 5px; }
.tone__set--dim { opacity: .45; }
.tone__set i { height: 5px; border-radius: 3px; background: #fff; display: block; }
.tone__rule { height: 1px; background: var(--white-16); margin: 3px 0; }
.tone__set i.is-y { background: var(--yellow); }
.tone__set i.is-w { background: rgba(255, 255, 255, .6); }

/* trust art 2 — PL → UA */
.lang { display: flex; align-items: center; justify-content: center; gap: 10px; }
.lang__box {
  width: 52px;
  height: 52px;
  border-radius: var(--r-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 14px;
}
.lang__box--pl {
  background: #fff;
  border: 1px solid var(--line-09);
  color: var(--ink-300);
}
.lang__box--ua {
  background: var(--blue);
  color: #fff;
  box-shadow: var(--shadow-chip);
}
.lang__dots { display: flex; align-items: center; gap: 3px; }
.lang__dots i {
  width: 5px; height: 5px;
  border-radius: 50%;
  display: block;
  animation: dot-fade 1.8s var(--ease) infinite;
}
.lang__dots i:nth-child(1) { background: rgba(22, 22, 26, .2);  animation-delay: 0s; }
.lang__dots i:nth-child(2) { background: rgba(22, 22, 26, .3);  animation-delay: .18s; }
.lang__dots i:nth-child(3) { background: rgba(22, 22, 26, .45); animation-delay: .36s; }
@keyframes dot-fade {
  0%, 100% { opacity: .45; transform: translateX(0); }
  50%      { opacity: 1;   transform: translateX(2px); }
}

/* trust art 3 — 24/7 ring */
.ring {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: conic-gradient(var(--blue) 0turn .62turn, rgba(22, 22, 26, .1) .62turn 1turn);
  display: flex;
  align-items: center;
  justify-content: center;
}
.ring__inner {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--surface-soft);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1px;
}
.ring__value { font-size: 18px; font-weight: 800; letter-spacing: -.03em; }
.ring__unit  { font-family: var(--font-mono); font-size: 9px; color: var(--ink-300); }

/* trust art 4 — lock */
.lock {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.lock__shackle {
  width: 24px;
  height: 14px;
  border: 3px solid var(--blue);
  border-bottom: none;
  border-radius: 14px 14px 0 0;
}
.lock__body {
  width: 46px;
  height: 36px;
  border-radius: 9px;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
}
.lock__body i {
  width: 6px;
  height: 11px;
  border-radius: 3px;
  background: var(--yellow);
  display: block;
}
.lock__dots { display: flex; gap: 4px; margin-top: 12px; }
.lock__dots i {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: rgba(22, 22, 26, .18);
  display: block;
}

/* --------------------------------------------
   FAQ accordion
   -------------------------------------------- */
.faq {
  max-width: 820px;
  margin-inline: auto;
}
.faq__list { border-top: 1px solid var(--line-10); }

.faq__item { border-bottom: 1px solid var(--line-10); }

.faq__q {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  cursor: pointer;
  list-style: none;
  font-size: clamp(16.5px, 1.7vw, 19px);
  font-weight: 700;
  letter-spacing: -.02em;
  transition: color var(--t);
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q:hover { color: var(--blue); }
.faq__q > .faq__text { flex: 1 1 auto; min-width: 0; }

.faq__sign {
  width: 30px;
  min-width: 30px;
  height: 30px;
  flex: 0 0 30px;
  border-radius: 50%;
  border: 1px solid var(--line-15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-500);
  position: relative;
  transition: border-color var(--t), background var(--t), transform .3s var(--ease);
}
.faq__sign::before,
.faq__sign::after {
  content: "";
  position: absolute;
  background: currentColor;
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.faq__sign::before { width: 11px; height: 1.6px; }
.faq__sign::after  { width: 1.6px; height: 11px; }

.faq__item[open] .faq__sign {
  border-color: var(--blue);
  background: var(--blue);
  color: #fff;
  transform: rotate(180deg);
}
.faq__item[open] .faq__sign::after { transform: scaleY(0); opacity: 0; }

.faq__a {
  padding: 0 46px 22px 0;
  font-size: 15.5px;
  line-height: 1.6;
  color: #5A5A65;
}
.faq__item[open] .faq__a {
  animation: faq-in .32s var(--ease) both;
}
@keyframes faq-in {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: none; }
}

.faq__foot {
  margin: 22px 0 0;
  text-align: center;
  font-size: 15px;
  color: var(--ink-350);
}
.faq__foot a { font-weight: 600; }

/* --------------------------------------------
   Pricing
   -------------------------------------------- */
.plan {
  background: #fff;
  border: 1px solid var(--line-10);
  border-radius: var(--r-5xl);
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  transition: transform var(--t), box-shadow var(--t);
}
.plan:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 54px -34px rgba(22, 22, 40, .5);
}
.plan--dark { background: var(--ink); color: #fff; border-color: var(--ink); }
.plan__badge {
  position: absolute;
  top: 24px; right: 24px;
  font-size: 11.5px;
  font-family: var(--font-mono);
  color: var(--ink);
  background: var(--yellow);
  padding: 5px 9px;
  border-radius: 8px;
}
.plan__name { font-size: 15px; font-weight: 700; color: var(--ink-400); }
.plan--dark .plan__name { color: var(--on-dark-muted); }
.plan__price {
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -.04em;
  margin-top: 6px;
}
.plan__price span {
  font-size: 16px;
  font-weight: 600;
  color: var(--on-dark-muted);
  letter-spacing: 0;
}
.plan__list {
  display: flex;
  flex-direction: column;
  gap: 11px;
  font-size: 15.5px;
  color: var(--ink-700);
}
.plan--dark .plan__list { color: var(--on-dark); }
.plan__list li { display: flex; gap: 11px; align-items: center; }
.plan__list li::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--blue);
  flex: none;
}
.plan--dark .plan__list li::before { background: var(--yellow); }
.plan__cta {
  margin-top: auto;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  padding: 15px;
  border-radius: var(--r-xl);
  border: 1px solid var(--line-15);
  color: var(--ink);
  transition: background var(--t), color var(--t), border-color var(--t);
}
.plan__cta:hover { background: var(--ink); border-color: var(--ink); color: #fff; }
.plan__cta--solid {
  background: #fff;
  border-color: #fff;
  color: var(--ink);
}
.plan__cta--solid:hover {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--ink);
}

/* --------------------------------------------
   CTA banner
   -------------------------------------------- */
.cta {
  background: var(--blue);
  border-radius: var(--r-5xl);
  padding: clamp(36px, 6vw, 72px) clamp(24px, 5vw, 64px);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  position: relative;
  overflow: hidden;
}
.cta::after {
  content: "";
  position: absolute;
  width: 520px; height: 520px;
  right: -160px; top: -220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242, 183, 53, .18), transparent 62%);
  pointer-events: none;
}
.cta__title {
  max-width: 760px;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.1;
  letter-spacing: -.03em;
  font-weight: 800;
  color: #fff;
  text-wrap: balance;
}
.cta__lead {
  max-width: 520px;
  font-size: 17px;
  line-height: 1.55;
  color: rgba(255, 255, 255, .75);
}
.cta .btn {
  margin-top: 4px;
  padding: 17px 30px;
  font-size: 16px;
  border-radius: var(--r-2xl);
  position: relative;
  z-index: 1;
}

/* --------------------------------------------
   Footer
   -------------------------------------------- */
.footer { border-top: 1px solid var(--line-08); }
.footer__top {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: space-between;
  align-items: flex-start;
  padding-block: 44px 40px;
}
.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 320px;
}
.footer__brand .logo__mark { width: 24px; height: 24px; border-radius: 8px; }
.footer__brand .logo__dot  { width: 8px; height: 8px; }
.footer__brand .logo__text { font-size: 15.5px; }
.footer__note {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--ink-300);
}
.footer__cols {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
}
.footer__col {
  display: flex;
  flex-direction: column;
  gap: 9px;
  font-size: 14px;
}
.footer__label {
  font-size: 12px;
  font-weight: 700;
  color: var(--ink-200);
  text-transform: uppercase;
  letter-spacing: .06em;
}
.footer__col a { color: var(--ink-600); }
.footer__col a:hover { color: var(--blue); }
.footer__bottom {
  padding-block: 0 90px;
  font-size: 12.5px;
  color: var(--ink-200);
}

/* --------------------------------------------
   Mobile sticky CTA
   -------------------------------------------- */
.mobile-cta {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 60;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(251, 250, 247, .92);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-top: 1px solid var(--line-09);
  transform: translateY(120%);
  transition: transform .4s var(--ease);
}
.mobile-cta.is-visible { transform: translateY(0); }
.mobile-cta .btn {
  flex: 1;
  padding: 16px;
  font-size: 16px;
  border-radius: var(--r-xl);
}

/* --------------------------------------------
   Responsive
   -------------------------------------------- */
@media (max-width: 860px) {
  .mobile-cta { display: flex; }

  .step { min-height: 0; }
  .aud  { min-height: 0; }

  .sec-head { align-items: flex-start; }
  .sec-head .lead { max-width: none; }

  .faq__a { padding-right: 0; }

  .footer__cols { gap: 28px; width: 100%; }
  .footer__col { min-width: 140px; }
}

@media (max-width: 420px) {
  .result__actions > * { flex: 1 1 100%; }
  .footer__cols { flex-direction: column; gap: 24px; }
}
