/* =============================================================================
   TestKav · pages/free-test-intro.css
   Light, luxe-consistent intro page for the free test (extends base_luxe.html).
   Cohesive two-column layout: art (left, fills column) + copy/stats/features/CTA
   (right). Mobile-first, spacious.
   ========================================================================== */

.fti-wrap{padding-bottom:48px}

/* breadcrumb */
.fti-wrap .crumbs{display:flex;align-items:center;flex-wrap:wrap;gap:8px;font-size:.82rem;color:var(--ink-3);padding:26px 0 6px}
.fti-wrap .crumbs a{color:var(--ink-3);transition:color .3s var(--ease)}
.fti-wrap .crumbs a:hover{color:var(--gold-deep)}
.fti-wrap .crumbs .sep{color:var(--line-2)}
.fti-wrap .crumbs [aria-current]{color:var(--ink);font-weight:600}

/* ---------- cohesive shell ---------- */
.fti-shell{margin-top:14px}
.fti-grid{display:grid;grid-template-columns:.85fr 1.15fr;gap:48px;align-items:stretch}

/* LEFT: art column — soft framed panel that fills the row height so the left
   side is never empty (top to bottom). */
.fti-art{display:flex}
.fti-art__inner{flex:1;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:22px;
  border:1px solid var(--line);border-radius:24px;
  background:linear-gradient(180deg,#fffdf8,#fff);
  box-shadow:0 40px 90px -56px rgba(20,17,13,.26);
  padding:36px 28px}
.fti-art__svg{width:min(300px,86%);height:auto;filter:drop-shadow(0 24px 40px rgba(20,17,13,.12))}
.fti-art__cap{display:inline-flex;align-items:center;gap:9px;font-family:var(--ff-d);font-weight:700;font-size:.92rem;
  color:var(--ink-2);background:#fff;border:1px solid var(--gold-soft);border-radius:999px;padding:9px 18px;
  box-shadow:0 10px 24px -16px var(--gold-soft)}
.fti-art__cap i{color:var(--gold-deep)}
.fti-art__orbit{fill:none;stroke:var(--gold-soft);stroke-width:1.5;stroke-dasharray:3 9;opacity:.7}
.fti-art__dot{fill:var(--gold)}
.fti-art__paper{fill:#fff;stroke:var(--line-2);stroke-width:1.5}
.fti-art__sub{fill:var(--line-2)}
.fti-art__line{fill:rgba(20,17,13,.16)}
.fti-art__line--strong{fill:rgba(20,17,13,.34)}
.fti-art__line--faint{fill:rgba(20,17,13,.1)}
.fti-art__circle{stroke:var(--line-2);stroke-width:2}
.fti-art__badge{fill:#fff;stroke:var(--gold-soft);stroke-width:1.5}

/* RIGHT: content column */
.fti-content{min-width:0}
.fti-content .eyebrow{margin-bottom:6px}
.fti-content .h1{font-size:clamp(1.7rem,3.4vw,2.6rem);line-height:1.5;margin-top:14px}
.fti-content .h1 .gt{color:var(--gold-text)}
.fti-content .h1 [dir="ltr"]{unicode-bidi:isolate}
.fti-content .lead{margin-top:16px;max-width:56ch}
.fti-content .lead a{color:var(--gold-deep);font-weight:600;text-decoration:underline;text-underline-offset:3px}

/* stat strip */
.fti-stats{display:grid;grid-template-columns:repeat(3,1fr);gap:14px;margin-top:28px}
.fti-stat{display:flex;flex-direction:column;gap:6px;border:1px solid var(--line);border-radius:16px;padding:16px 14px;background:#fff;transition:border-color .3s var(--ease),transform .3s var(--ease),box-shadow .3s var(--ease)}
.fti-stat:hover{border-color:var(--gold-soft);transform:translateY(-2px);box-shadow:0 16px 32px -22px rgba(20,17,13,.22)}
.fti-stat__ic{display:grid;place-items:center;width:38px;height:38px;border-radius:11px;background:var(--gold-faint);color:var(--gold-deep);font-size:1.1rem;margin-bottom:3px}
.fti-stat__label{font-size:.79rem;color:var(--ink-3)}
.fti-stat__value{font-family:var(--ff-d);font-weight:800;font-size:1.08rem;color:var(--ink);line-height:1.35}

/* feature list */
.fti-list{list-style:none;margin:24px 0 0;padding:0;display:grid;gap:12px}
.fti-list li{display:flex;align-items:flex-start;gap:11px;font-size:.95rem;color:var(--ink-2);line-height:1.7}
.fti-list li i{color:var(--gold-deep);font-size:1.05rem;margin-top:3px;flex:none}

/* actions */
.fti-actions{display:flex;flex-wrap:wrap;gap:14px;margin-top:28px}
.fti-start{flex:0 0 auto}

/* ---------- responsive ---------- */
@media (max-width:920px){
  .fti-grid{grid-template-columns:1fr;gap:28px}
  .fti-art{order:-1}
  .fti-art__inner{padding:30px 24px}
  .fti-art__svg{width:min(240px,64%)}
}
@media (max-width:600px){
  .fti-art__inner{padding:24px 18px;border-radius:20px}
  .fti-art__svg{width:min(210px,60%)}
  .fti-stats{grid-template-columns:1fr;gap:12px}
  .fti-stat{flex-direction:row;align-items:center;gap:12px}
  .fti-stat__ic{margin-bottom:0}
  .fti-stat__label{flex:1}
  .fti-actions{gap:10px}
  .fti-actions .btn{width:100%;justify-content:center}
}
