/* ============================================
   DENTICOR AI ENGINE V2 — CSS
   Mobile-first · Design Blueprint specs
   ============================================ */

/* TOOTH PICKER */
.ai-picker { text-align:center; }
.ai-picker-title { font-size:22px; font-weight:700; color:#1E2328; margin-bottom:4px; }
.ai-picker-sub { font-size:15px; color:#6B7280; margin-bottom:24px; }

.ai-jaw { margin-bottom:20px; }
.ai-jaw-label { font-size:12px; font-weight:600; color:#6B7280; text-transform:uppercase; letter-spacing:0.06em; margin:8px 0; }

.ai-teeth-row { display:flex; justify-content:center; gap:3px; flex-wrap:nowrap; }
.ai-teeth-gap { width:8px; flex-shrink:0; }

/* Mobile: grid 8 columns = 2 rows of 8, hide gap, big touch targets */
@media(max-width:600px){
  .ai-teeth-row { display:grid; grid-template-columns:repeat(8,1fr); gap:5px; justify-items:center; }
  .ai-teeth-gap { display:none; }
  .ai-tooth { width:100%; max-width:44px; height:52px; }
  .ai-t-shape { width:30px; height:34px; }
  .ai-t-num { font-size:10px; }
}

.ai-tooth { 
  width:clamp(28px,6vw,38px); height:clamp(40px,8vw,52px); 
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  cursor:pointer; border-radius:6px; transition:all .15s; position:relative;
  -webkit-tap-highlight-color:transparent;
}
.ai-tooth:active { transform:scale(0.92); }

.ai-t-shape {
  width:clamp(18px,4vw,26px); height:clamp(24px,5vw,34px);
  border-radius:4px 4px 6px 6px; transition:all .2s;
  border:1px solid transparent;
}
/* Main diagram uses the same colors as the helper map below it. */
.ai-t-central-incisor .ai-t-shape { background:#FCE4EC; border-color:#E0909A; }
.ai-t-lateral-incisor .ai-t-shape { background:#FFF3E0; border-color:#E0C090; }
.ai-t-canine .ai-t-shape { background:#E8F0E4; border-color:#9DC49A; }
.ai-t-premolar .ai-t-shape { background:#D9E8ED; border-color:#A4C4D0; }
.ai-t-molar .ai-t-shape { background:#EBE4D9; border-color:#C4B8A4; }
/* Backward compatibility if an older JS class remains cached. */
.ai-t-front .ai-t-shape { background:#FCE4EC; border-color:#E0909A; }
.ai-t-back .ai-t-shape { background:#EBE4D9; border-color:#C4B8A4; }
.ai-t-gone .ai-t-shape { background:#D4D0C8; border-color:#D4D0C8; opacity:0.35; }

.ai-t-num { font-size:9px; color:#6B7280; margin-top:2px; }
.ai-t-gone .ai-t-num { color:#A13F3F; font-weight:700; }

/* Legend */
.ai-legend { display:flex; gap:12px 14px; justify-content:center; flex-wrap:wrap; margin:16px 0; font-size:12px; color:#6B7280; }
.ai-leg-item { display:flex; align-items:center; gap:4px; }
.ai-leg-dot { width:10px; height:10px; border-radius:3px; border:1px solid transparent; }
.ai-leg-central { background:#FCE4EC; border-color:#E0909A; }
.ai-leg-lateral { background:#FFF3E0; border-color:#E0C090; }
.ai-leg-canine { background:#E8F0E4; border-color:#9DC49A; }
.ai-leg-premolar { background:#D9E8ED; border-color:#A4C4D0; }
.ai-leg-molar { background:#EBE4D9; border-color:#C4B8A4; }
.ai-leg-front { background:#FCE4EC; border-color:#E0909A; }
.ai-leg-back { background:#EBE4D9; border-color:#C4B8A4; }
.ai-leg-gone { background:#D4D0C8; border-color:#D4D0C8; opacity:0.45; }

/* Selected summary */
.ai-sel-summary { background:#FAF8F5; border-radius:12px; padding:16px; margin:16px 0; text-align:left; }
.ai-sel-title { font-size:15px; font-weight:600; color:#1E2328; margin-bottom:8px; }
.ai-sel-chip { display:inline-block; font-size:12px; background:#fff; border:1px solid #D4D0C8; border-radius:100px; padding:4px 10px; margin:2px 4px 2px 0; color:#4B5563; }

/* Buttons */
.ai-btn-next {
  display:block; width:100%; padding:16px; margin-top:16px;
  background:#244651; color:#fff; border:none; border-radius:12px;
  font-size:17px; font-weight:700; cursor:pointer; font-family:inherit;
  min-height:48px; transition:background .15s;
}
.ai-btn-next:hover { background:#1B3640; }

.ai-hint { font-size:15px; color:#6B7280; margin-top:16px; }
.ai-warn { background:#F7EAEA; border-left:4px solid #A13F3F; border-radius:0 12px 12px 0; padding:14px 16px; margin-top:16px; font-size:15px; color:#4B5563; text-align:left; }

/* SITUATION BUTTONS */
.ai-situation { text-align:center; }
.ai-sit-btn {
  display:flex; align-items:center; gap:12px; width:100%; padding:16px;
  margin-bottom:8px; background:#fff; border:2px solid #E2DED6;
  border-radius:12px; cursor:pointer; font-family:inherit; font-size:16px;
  color:#4B5563; text-align:left; min-height:48px; transition:all .15s;
}
.ai-sit-btn:hover { border-color:#244651; }
.ai-sit-icon { font-size:20px; flex-shrink:0; }
.ai-sit-label { flex:1; }

.ai-skip-btn {
  display:block; width:100%; padding:14px; margin-top:8px;
  background:transparent; border:none; color:#244651; font-size:15px;
  font-weight:600; cursor:pointer; font-family:inherit;
}
.ai-back-btn {
  display:block; width:100%; padding:14px; margin-top:4px;
  background:transparent; border:none; color:#6B7280; font-size:15px;
  cursor:pointer; font-family:inherit; text-align:center;
}

/* RESULT */
.ai-result { text-align:left; }

.ai-block {
  background:#fff; border-radius:16px; padding:20px;
  margin-bottom:12px; border:1px solid #E2DED6;
}
.ai-block-icon { font-size:24px; margin-bottom:8px; }
.ai-block-title { font-size:18px; font-weight:700; color:#1E2328; margin-bottom:12px; }
.ai-block-body { font-size:16px; color:#4B5563; line-height:1.7; }

/* Situation block */
.ai-block-situation { background:#FAF8F5; }
.ai-tooth-label { font-size:15px; color:#244651; font-weight:600; padding:2px 0; }
.ai-scenarios-label { font-size:13px; color:#6B7280; margin-top:8px; }

/* Metrics */
.ai-metrics { display:grid; grid-template-columns:1fr 1fr; gap:12px; }
.ai-metric { background:#FAF8F5; border-radius:10px; padding:12px; }
.ai-metric-label { font-size:12px; color:#6B7280; font-weight:600; text-transform:uppercase; letter-spacing:0.04em; margin-bottom:4px; }
.ai-metric-val { font-size:16px; font-weight:700; color:#1E2328; }
.ai-metric-big { font-size:19px; }
.ai-metric-bar { height:6px; background:#E2DED6; border-radius:3px; margin:6px 0; }
.ai-metric-fill { height:100%; background:#244651; border-radius:3px; transition:width .4s; }

/* Package block */
.ai-block-pkg { border:2px solid #244651; }
.ai-pkg-badge { font-size:12px; font-weight:700; color:#244651; text-transform:uppercase; letter-spacing:0.06em; margin-bottom:4px; }
.ai-pkg-name { font-size:22px; font-weight:800; color:#1E2328; }
.ai-pkg-price { font-size:19px; font-weight:600; color:#244651; margin-bottom:12px; }
.ai-pkg-refills { margin-bottom:12px; }
.ai-refill-chip { display:inline-block; font-size:13px; background:#FAF5E8; border:1px solid #8B7335; color:#8B7335; border-radius:100px; padding:4px 10px; margin:2px 4px 2px 0; font-weight:600; }
.ai-pkg-total { font-size:16px; font-weight:700; color:#1E2328; margin-top:8px; }
.ai-pkg-reason { font-size:15px; color:#4B5563; line-height:1.6; margin-bottom:16px; background:#FAF8F5; padding:12px; border-radius:10px; }

/* Material bars */
.ai-mat-section { margin-bottom:16px; }
.ai-mat-title { font-size:15px; font-weight:600; color:#1E2328; margin-bottom:10px; }
.ai-mat-row { margin-bottom:10px; }
.ai-mat-label { font-size:13px; font-weight:600; color:#4B5563; margin-bottom:4px; }
.ai-mat-bar { height:8px; background:#E2DED6; border-radius:4px; }
.ai-mat-fill { height:100%; border-radius:4px; transition:width .4s; }
.ai-mat-plus { background:#3A6B7C; }
.ai-mat-df { background:#5A8A6A; }
.ai-mat-nums { font-size:12px; color:#6B7280; margin-top:3px; }

/* Buy button */
.ai-btn-buy {
  display:block; width:100%; padding:16px; text-align:center;
  background:#244651; color:#fff; border-radius:12px;
  font-size:17px; font-weight:700; text-decoration:none;
  min-height:48px; line-height:1; transition:background .15s;
}
.ai-btn-buy:hover { background:#1B3640; color:#fff; }
.ai-btn-buy.ai-btn-secondary {
  background:transparent; border:2px solid #244651; color:#244651;
}
.ai-btn-buy.ai-btn-secondary:hover { background:#244651; color:#fff; }

.ai-btn-phone {
  display:block; width:100%; padding:14px; text-align:center;
  background:transparent; border:2px solid #244651; color:#244651;
  border-radius:12px; font-size:16px; font-weight:600; text-decoration:none;
  min-height:48px; margin-top:8px;
}

/* Guide teaser */
.ai-block-guide { background:#FAF5E8; border-color:#8B7335; }
.ai-guide-teaser { margin-bottom:10px; font-size:15px; color:#4B5563; }
.ai-guide-meta { font-size:13px; color:#6B7280; margin-top:2px; }
.ai-guide-includes { font-size:13px; color:#6B7280; margin-top:12px; padding-top:12px; border-top:1px solid rgba(139,115,53,.2); line-height:1.6; }

/* Rules */
.ai-rules { display:flex; flex-direction:column; gap:8px; }
.ai-rule { display:flex; gap:10px; align-items:flex-start; font-size:15px; color:#4B5563; line-height:1.6; }
.ai-rule-icon { font-size:17px; flex-shrink:0; margin-top:2px; }

/* Situation context */
.ai-block-sit { background:#E8F0F3; border-color:#3A6B7C; }
.ai-block-sit p { font-size:16px; color:#4B5563; line-height:1.7; margin:0; }

/* CTA block */
.ai-block-cta { text-align:center; background:#FAF8F5; border:none; }
.ai-cta-text { font-size:17px; font-weight:600; color:#1E2328; margin-bottom:16px; }
.ai-cta-note { font-size:13px; color:#6B7280; margin-top:12px; }

/* ============================================
   TABLET (768px+)
   ============================================ */
@media (min-width:768px) {
  .ai-tooth { width:38px; height:52px; }
  .ai-t-shape { width:26px; height:34px; }
  .ai-teeth-gap { width:16px; }
  .ai-metrics { grid-template-columns:repeat(4,1fr); }
  .ai-block { padding:24px; }
}

/* ============================================
   DESKTOP (1024px+)
   ============================================ */
@media (min-width:1024px) {
  .ai-tooth { width:42px; height:56px; }
  .ai-t-shape { width:28px; height:36px; }
  .ai-btn-next, .ai-btn-buy { max-width:400px; margin-left:auto; margin-right:auto; }
  .ai-btn-phone { max-width:400px; margin-left:auto; margin-right:auto; }
}

/* Result page in-place guide cards */
.ai-v22-guide-cards .ai-v22-guide-head{max-width:860px}
.ai-v22-guide-list{position:relative;z-index:1;display:grid;gap:14px;margin:20px 0}
.ai-v22-guide-card{border:1px solid #dbe7fb;border-radius:20px;background:#fff;box-shadow:0 16px 42px -38px rgba(7,27,69,.42);overflow:hidden}
.ai-v22-guide-card.is-open{border-color:rgba(11,94,215,.42);box-shadow:0 22px 58px -44px rgba(7,27,69,.5)}
.ai-v22-guide-card-toggle{width:100%;border:0;background:transparent;color:inherit;font:inherit;cursor:pointer;text-align:left;display:grid;grid-template-columns:44px minmax(0,1.2fr) minmax(260px,.9fr) auto;gap:14px;align-items:center;padding:18px}
.ai-v22-guide-card-toggle:hover{background:#f8fbff}
.ai-v22-guide-index{width:44px;height:44px;border-radius:14px;background:#eaf3ff;color:#0b5ed7;display:grid;place-items:center;font-size:17px;font-weight:900}
.ai-v22-guide-card-main{display:grid;gap:5px;min-width:0}
.ai-v22-guide-card-main small{font-size:12px;color:#174ea6;font-weight:900;text-transform:uppercase;letter-spacing:.08em}
.ai-v22-guide-card-main strong{font-size:19px;line-height:1.2;color:#071b45;font-weight:900;overflow-wrap:anywhere}
.ai-v22-guide-card-main em{font-style:normal;font-size:13px;line-height:1.45;color:#64748b;font-weight:700}
.ai-v22-guide-card-meta{display:flex;gap:7px;flex-wrap:wrap;justify-content:flex-start}
.ai-v22-guide-card-meta b{display:inline-flex;align-items:center;min-height:30px;padding:0 9px;border-radius:999px;background:#f7fbff;border:1px solid #dbe7fb;color:#33517f;font-size:11px;font-weight:900;white-space:nowrap}
.ai-v22-guide-card-action{display:inline-flex;align-items:center;justify-content:flex-end;gap:9px;color:#0b5ed7;font-size:13px;font-weight:900;white-space:nowrap}
.ai-v22-guide-card-action i{font-style:normal;width:30px;height:30px;border-radius:11px;background:#0b5ed7;color:#fff;display:grid;place-items:center;font-size:20px;line-height:1}
.ai-v22-guide-card-panel{border-top:1px solid #e5edf9;background:linear-gradient(180deg,#fbfdff 0%,#fff 100%);padding:20px}
.ai-v22-guide-panel-head{display:grid;gap:6px;margin-bottom:16px}
.ai-v22-guide-panel-head span{font-size:12px;color:#174ea6;font-weight:900;text-transform:uppercase;letter-spacing:.1em}
.ai-v22-guide-panel-head p{max-width:760px}
.ai-v22-guide-loading,.ai-v22-guide-empty,.ai-v22-guide-note-box,.ai-v22-guide-tip{border-radius:16px;border:1px solid #dbe7fb;background:#fff;padding:14px 16px;color:#334155;font-size:15px;line-height:1.65}
.ai-v22-guide-note-box{background:#f6fbff;margin-bottom:14px}
.ai-v22-guide-note-box.is-reference{background:#fff9ed;border-color:#eadfbd}
.ai-v22-guide-steps{display:grid;gap:12px}
.ai-v22-guide-step{display:grid;grid-template-columns:34px minmax(0,1fr);gap:12px;align-items:start;border:1px solid #e5edf9;background:#fff;border-radius:16px;padding:14px}
.ai-v22-guide-step>span{width:34px;height:34px;border-radius:12px;background:#071b45;color:#fff;display:grid;place-items:center;font-size:13px;font-weight:900}
.ai-v22-guide-step h4{margin:0 0 6px;color:#071b45;font-size:17px;line-height:1.25;font-weight:900}
.ai-v22-guide-step p{font-size:15px!important;line-height:1.65!important;color:#334155!important;margin:0!important}
.ai-v22-guide-step small{display:block;margin-top:8px;border-radius:12px;background:#f2fbf6;border:1px solid rgba(45,110,76,.14);padding:10px 12px;color:#2d6e4c;font-size:13px;line-height:1.5}
.ai-v22-guide-step small.is-warning{background:#fff7f7;border-color:rgba(161,63,63,.14);color:#a13f3f}
.ai-v22-guide-tip{margin-top:14px;background:#f2fbf6;border-color:rgba(45,110,76,.18)}
.ai-v22-guide-tip strong{display:block;color:#2d6e4c;font-size:13px;text-transform:uppercase;letter-spacing:.08em;margin-bottom:4px}
.ai-v22-guide-card-cta{margin-top:16px;border-radius:18px;background:#eef6ff;border:1px solid #d5e6ff;padding:14px;display:flex;align-items:center;justify-content:space-between;gap:14px}
.ai-v22-guide-card-cta span{font-size:13px;color:#33517f;font-weight:800}
.ai-v22-guide-card-cta button{border:0;border-radius:14px;background:linear-gradient(135deg,#071b45,#0b5ed7);color:#fff;min-height:46px;padding:0 16px;display:inline-flex;align-items:center;gap:9px;font:inherit;font-weight:900;cursor:pointer;white-space:nowrap}
.ai-v22-guide-card-cta svg{width:18px;height:18px;stroke:currentColor;fill:none}
@media(max-width:980px){
  .ai-v22-guide-card-toggle{grid-template-columns:40px minmax(0,1fr);gap:12px}
  .ai-v22-guide-card-meta,.ai-v22-guide-card-action{grid-column:2}
  .ai-v22-guide-card-action{justify-content:flex-start}
}
@media(max-width:620px){
  .ai-v22-guide-list{gap:12px;margin:16px 0}
  .ai-v22-guide-card{border-radius:18px}
  .ai-v22-guide-card-toggle{grid-template-columns:1fr;padding:16px}
  .ai-v22-guide-index{width:38px;height:38px;border-radius:12px}
  .ai-v22-guide-card-meta,.ai-v22-guide-card-action{grid-column:auto}
  .ai-v22-guide-card-action{width:100%;justify-content:space-between}
  .ai-v22-guide-card-panel{padding:16px}
  .ai-v22-guide-step{grid-template-columns:1fr}
  .ai-v22-guide-card-cta{display:grid}
  .ai-v22-guide-card-cta button{width:100%;justify-content:center;white-space:normal;text-align:center}
}

/* Universal rules block */
.ai-block-universal { background:#FAF8F5; }
.ai-rule-section { padding:14px 0; border-bottom:1px solid #E2DED6; }
.ai-rule-section:last-child { border-bottom:none; padding-bottom:0; }
.ai-rule-section:first-child { padding-top:0; }
.ai-rule-head { font-size:16px; font-weight:700; color:#1E2328; margin-bottom:4px; }
.ai-rule-text { font-size:15px; color:#4B5563; line-height:1.7; }
.ai-rule-text strong { color:#1E2328; }

/* ============================================
   MOBILE STEP-BY-STEP PICKER
   ============================================ */
.ai-mob-btn {
  display:flex;align-items:center;gap:12px;
  width:100%;padding:18px 20px;
  background:#fff;border:2px solid #E2DED6;border-radius:12px;
  font-size:17px;font-weight:600;color:#1E2328;
  cursor:pointer;text-align:left;
  font-family:'Plus Jakarta Sans',sans-serif;
  transition:border-color .15s,background .15s;
  min-height:56px;
}
.ai-mob-btn:hover,.ai-mob-btn:active{border-color:#244651;background:#F5F8FA}

.ai-mob-tooth {
  display:flex;align-items:center;justify-content:center;
  padding:16px 12px;
  background:#fff;border:2px solid #E2DED6;border-radius:10px;
  font-size:16px;font-weight:600;color:#1E2328;
  cursor:pointer;text-align:center;
  font-family:'Plus Jakarta Sans',sans-serif;
  transition:border-color .15s,background .15s;
  min-height:52px;
}
.ai-mob-tooth:hover,.ai-mob-tooth:active{border-color:#244651;background:#F5F8FA}

.ai-warn {
  background:#FEF3F2;border:1px solid #F5C6C6;border-radius:10px;
  padding:14px 18px;margin-top:16px;
  font-size:15px;color:#A13F3F;text-align:center;line-height:1.6;
}

/* Optional GPT low-effort helper inside manual diagram result */
.ai-manual-helper {
  background: #F2FAF7;
  border: 1px solid rgba(45,110,76,.18);
  border-radius: 16px;
  padding: 16px 18px;
  margin: 16px 0;
  color: #1E2328;
}
.ai-manual-helper-kicker {
  font-size: 12px;
  font-weight: 800;
  color: #2D6E4C;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 6px;
}
.ai-manual-helper-title {
  font-size: 18px;
  font-weight: 800;
  color: #1E2328;
  line-height: 1.3;
  margin-bottom: 8px;
}
.ai-manual-helper-loading,
.ai-manual-helper p {
  font-size: 15px;
  color: #4B5563;
  line-height: 1.65;
  margin: 8px 0 0;
}
.ai-manual-helper small {
  display: block;
  font-size: 12px;
  color: #6B7280;
  line-height: 1.55;
  margin-top: 8px;
}
.ai-manual-helper-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 10px 0;
}
.ai-manual-helper-chips span {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(36,70,81,.14);
  background: #fff;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 800;
  color: #244651;
}


/* ============================================
   PC tooth picker selected state — Mockup 02
   ============================================ */
.ai-picker-desktop .ai-picker-layout {
  display:grid;
  gap:20px;
  align-items:start;
  margin-top:22px;
}
.ai-picker-board {
  background:#fff;
  border:1px solid #E2DED6;
  border-radius:18px;
  padding:clamp(18px,3vw,28px);
}
.ai-picker-side {
  background:#F6FBFD;
  border:1px solid rgba(36,70,81,.14);
  border-radius:18px;
  padding:22px;
  text-align:left;
}
.ai-picker-side-kicker {
  font-size:11px;
  line-height:1.2;
  color:#244651;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.08em;
  margin-bottom:10px;
}
.ai-picker-side-title {
  font-size:22px;
  line-height:1.2;
  color:#1E2328;
  font-weight:800;
  letter-spacing:-.02em;
  margin:0 0 14px;
}
.ai-picker-side-empty {
  font-size:15px;
  color:#6B7280;
  line-height:1.6;
  margin:0;
}
.ai-sel-num-row {
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin:10px 0 16px;
}
.ai-sel-num-chip {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:40px;
  min-height:34px;
  padding:8px 12px;
  border-radius:10px;
  background:#A13F3F;
  color:#fff;
  font-size:13px;
  line-height:1;
  font-weight:800;
  box-shadow:0 6px 14px rgba(161,63,63,.18);
}
.ai-sel-groups {
  background:#fff;
  border:1px solid #E2DED6;
  border-radius:14px;
  padding:14px 16px;
  margin-top:12px;
}
.ai-sel-groups p {
  font-size:13px;
  color:#4B5563;
  line-height:1.55;
  margin:0;
}
.ai-sel-groups p + p { margin-top:8px; }
.ai-sel-groups strong { color:#1E2328; font-weight:800; }
.ai-picker-side .ai-btn-next { max-width:none; margin-top:18px; }
.ai-picker-side .ai-hint { text-align:left; margin-top:10px; }
.ai-picker-board-hint {
  margin:14px 0 0;
  padding:12px 14px;
  border:1px solid rgba(161,63,63,.22);
  background:#FEF3F2;
  border-radius:14px;
  color:#A13F3F;
  font-size:15px;
  line-height:1.35;
  font-weight:800;
  text-align:center;
}
.ai-picker-desktop .ai-jaw { margin-bottom:26px; }
.ai-picker-desktop .ai-teeth-row { gap:4px; }
.ai-picker-desktop .ai-tooth {
  border:1px solid transparent;
  background:#fff;
  border-radius:14px;
  padding:4px 2px 5px;
  height:66px;
}
.ai-picker-desktop .ai-tooth:hover {
  background:#FAF8F5;
  border-color:#E2DED6;
}
.ai-t-shape { position:relative; }
.ai-t-gone {
  background:#FEF3F2 !important;
  border:2px solid #A13F3F !important;
  box-shadow:0 0 0 3px rgba(161,63,63,.10), 0 8px 18px rgba(161,63,63,.16);
  opacity:1 !important;
}
.ai-t-gone:hover { background:#FEF3F2 !important; border-color:#8F3333 !important; }
.ai-t-gone .ai-t-shape {
  background:#A13F3F !important;
  border-color:#A13F3F !important;
  opacity:1 !important;
  border-radius:8px;
  box-shadow:none;
}
.ai-t-gone .ai-t-shape::before {
  content:"×";
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-size:24px;
  font-weight:800;
  line-height:1;
}
.ai-t-gone .ai-t-num {
  color:#A13F3F;
  font-weight:800;
  font-size:11px;
  margin-top:3px;
}
.ai-t-missing {
  font-size:8px;
  line-height:1;
  color:#A13F3F;
  font-weight:800;
  letter-spacing:-.02em;
  margin-top:1px;
  text-transform:lowercase;
}
.ai-leg-gone { background:#A13F3F; border-color:#A13F3F; opacity:1; }


/* Keep non-picker AI screens readable after widening the diagram host. */
.ai-screening,
.ai-situation,
.ai-result {
  max-width:800px;
  margin-left:auto;
  margin-right:auto;
}
.ai-picker { max-width:none; }

@media (min-width:1180px) {
  .ai-picker-desktop .ai-picker-layout { grid-template-columns:minmax(0,1fr) 290px; }
  .ai-picker-side { position:sticky; top:96px; }
}
@media (max-width:1179px) {
  .ai-picker-side { max-width:680px; margin:0 auto; }
}
@media (max-width:767px) {
  .ai-picker-board,
  .ai-picker-side { padding:0; border:0; background:transparent; }
  .ai-picker-desktop .ai-tooth { height:52px; }
}

/* ============================================
   Visual tooth selector — approved Mockup 02 style
   ============================================ */
.ai-picker-visual {
  text-align:left;
  max-width:1180px;
  margin:0 auto;
  --selector-blue:#1D63D8;
  --selector-green:#13813A;
  --selector-red:#E21D2A;
  --selector-red-dark:#B91C1C;
  --selector-ink:#0B1736;
  --selector-muted:#667085;
  --selector-line:#E2E8F0;
}
.ai-picker-visual .ai-picker-title,
.ai-picker-visual .ai-picker-sub { text-align:left; }
.ai-picker-visual .ai-picker-title {
  color:var(--selector-ink);
  font-size:clamp(34px,4.2vw,46px);
  line-height:1.04;
  letter-spacing:-.045em;
  font-weight:900;
  margin:0 0 12px;
}
.ai-picker-visual .ai-picker-sub {
  max-width:760px;
  color:#344054;
  margin:0 0 22px;
  font-size:18px;
  line-height:1.45;
}
.ai-picker-info-pill {
  display:inline-flex;
  align-items:center;
  gap:12px;
  width:auto;
  max-width:600px;
  padding:12px 16px;
  margin:0 0 26px;
  background:#ECFDF3;
  border:1px solid #37B36B;
  border-radius:8px;
  color:#166534;
  font-size:16px;
  line-height:1.4;
  font-weight:600;
}
.ai-info-icon {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  flex:0 0 22px;
  width:22px;
  height:22px;
  border-radius:50%;
  background:#13813A;
  color:#fff;
  font-size:13px;
  line-height:1;
  font-weight:900;
  font-style:normal;
}
.ai-picker-visual-layout {
  display:grid;
  gap:30px;
  align-items:start;
}
.ai-visual-main {
  min-width:0;
}
.ai-visual-summary {
  background:#fff;
  border:1px solid #E5E7EB;
  border-radius:12px;
  box-shadow:0 18px 44px rgba(31,41,55,.08);
  padding:18px;
}
.ai-visual-controls {
  display:grid;
  grid-template-columns:minmax(0,.8fr) minmax(0,1.55fr);
  gap:36px;
  align-items:end;
  margin-bottom:22px;
}
.ai-vstep-label {
  display:flex;
  align-items:center;
  gap:10px;
  color:#0B1736;
  font-size:16px;
  font-weight:900;
  margin-bottom:14px;
}
.ai-vstep-label span {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:30px;
  height:30px;
  border-radius:50%;
  background:#386E8D;
  color:#fff;
  font-size:16px;
  font-weight:900;
  box-shadow:0 6px 16px rgba(56,110,141,.18);
}
.ai-control-group {
  display:flex;
  gap:18px;
  min-width:0;
}
.ai-control-pill {
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  min-height:60px;
  padding:14px 24px;
  border:1px solid #D8DEE8;
  border-radius:8px;
  background:#fff;
  color:#0B1736;
  font-family:inherit;
  font-size:16px;
  font-weight:900;
  line-height:1;
  cursor:pointer;
  transition:background .15s,border-color .15s,color .15s,box-shadow .15s,transform .15s;
  box-shadow:0 3px 10px rgba(31,41,55,.04);
  -webkit-tap-highlight-color:transparent;
}
.ai-control-row-pill { min-width:138px; }
.ai-control-zone-pill { flex:1 1 0; min-width:170px; }
.ai-control-pill:hover,
.ai-control-pill:focus-visible {
  border-color:#13813A;
  box-shadow:0 0 0 3px rgba(19,129,58,.08),0 6px 16px rgba(31,41,55,.08);
  outline:none;
}
.ai-control-pill:active { transform:scale(.98); }
.ai-control-pill.is-active {
  background:#13813A;
  border-color:#13813A;
  color:#fff;
  box-shadow:0 10px 24px rgba(19,129,58,.22);
}
.ai-control-chevron { display:none; }
.ai-control-ico {
  position:relative;
  display:inline-flex;
  width:30px;
  height:30px;
  align-items:center;
  justify-content:center;
  flex:0 0 30px;
  opacity:.75;
}
.ai-control-pill.is-active .ai-control-ico { opacity:1; }
.ai-control-ico::before,
.ai-control-ico::after { content:""; position:absolute; }
.ai-ico-arch-up::before,
.ai-ico-arch-down::before {
  width:27px; height:22px;
  border:2px dotted currentColor;
  border-bottom:none;
  border-radius:22px 22px 0 0;
}
.ai-ico-arch-down::before { transform:rotate(180deg); }
.ai-ico-front::before {
  width:28px; height:24px;
  background:linear-gradient(90deg,currentColor 0 22%,transparent 22% 26%,currentColor 26% 48%,transparent 48% 52%,currentColor 52% 74%,transparent 74% 78%,currentColor 78% 100%);
  opacity:.18;
  border-radius:8px 8px 12px 12px;
}
.ai-ico-side::before {
  width:26px; height:25px;
  border:2px solid currentColor;
  border-radius:10px 10px 14px 14px;
  opacity:.32;
}
.ai-ico-side::after {
  width:16px; height:23px;
  left:2px;
  border:2px solid currentColor;
  border-radius:10px 10px 12px 12px;
  opacity:.22;
}
.ai-ico-back::before {
  width:28px; height:26px;
  border:2px solid currentColor;
  border-radius:11px 11px 9px 9px;
  opacity:.32;
}
.ai-ico-back::after {
  width:28px; height:1px;
  top:13px;
  background:currentColor;
  opacity:.16;
}
.ai-orientation-strip {
  display:grid;
  grid-template-columns:1fr auto 1fr;
  align-items:center;
  gap:14px;
  margin:0 0 18px;
  padding:0 4px;
  color:#667085;
  font-size:13px;
  line-height:1.2;
  font-weight:800;
  text-align:center;
  text-transform:uppercase;
  letter-spacing:.04em;
}
.ai-orientation-strip span:nth-child(2) {
  color:#344054;
  position:relative;
  padding:0 18px;
}
.ai-orientation-strip span:nth-child(2)::before,
.ai-orientation-strip span:nth-child(2)::after {
  content:"";
  position:absolute;
  top:50%;
  width:260px;
  max-width:34vw;
  border-top:1px dotted rgba(102,112,133,.45);
}
.ai-orientation-strip span:nth-child(2)::before { right:100%; }
.ai-orientation-strip span:nth-child(2)::after { left:100%; }
.ai-visual-diagram {
  position:relative;
  padding:20px 28px 22px;
  border:1px solid #E5E7EB;
  border-radius:10px;
  background:#fff;
  overflow:hidden;
  box-shadow:0 10px 28px rgba(31,41,55,.04);
}
.ai-visual-diagram::before {
  content:"";
  position:absolute;
  left:0;
  right:0;
  top:0;
  height:82px;
  background:linear-gradient(180deg,rgba(255,246,246,.86),rgba(255,255,255,0));
  pointer-events:none;
}
.ai-teeth-cards {
  position:relative;
  z-index:1;
  display:flex;
  justify-content:center;
  align-items:stretch;
  gap:18px;
  overflow-x:visible;
  padding:0;
}
.ai-visual-tooth-card {
  position:relative;
  flex:1 1 0;
  max-width:158px;
  min-width:118px;
  min-height:184px;
  padding:22px 12px 14px;
  border:1px solid #E5E7EB;
  border-radius:8px;
  background:#fff;
  color:#0B1736;
  font-family:inherit;
  text-align:center;
  cursor:pointer;
  box-shadow:0 8px 18px rgba(31,41,55,.04);
  transition:transform .15s,border-color .15s,box-shadow .15s,background .15s;
  -webkit-tap-highlight-color:transparent;
}
.ai-visual-tooth-card:hover,
.ai-visual-tooth-card:focus-visible {
  border-color:#13813A;
  box-shadow:0 0 0 3px rgba(19,129,58,.08),0 12px 24px rgba(31,41,55,.08);
  outline:none;
}
.ai-visual-tooth-card:active { transform:scale(.98); }
.ai-vtooth-shape {
  display:block;
  width:54px;
  height:82px;
  margin:0 auto 14px;
  object-fit:contain;
  border:0;
  border-radius:0;
  background:transparent;
  box-shadow:0 8px 14px rgba(31,41,55,.08);
  filter:drop-shadow(0 5px 7px rgba(31,41,55,.10));
  pointer-events:none;
}
.ai-vtooth-img { user-select:none; -webkit-user-drag:none; }
.ai-t-central-incisor .ai-vtooth-shape { width:58px; height:84px; }
.ai-t-lateral-incisor .ai-vtooth-shape { width:50px; height:80px; }
.ai-t-canine .ai-vtooth-shape { width:48px; height:84px; }
.ai-t-premolar .ai-vtooth-shape { width:60px; height:72px; }
.ai-t-molar .ai-vtooth-shape { width:68px; height:72px; }
.ai-vtooth-num {
  display:block;
  color:#0B1736;
  font-size:32px;
  line-height:1;
  font-weight:900;
  letter-spacing:-.05em;
}
.ai-vtooth-label {
  display:block;
  margin-top:8px;
  color:#0B1736;
  font-size:17px;
  line-height:1.25;
  font-weight:800;
}
.ai-vtooth-side {
  display:block;
  margin-top:6px;
  color:#667085;
  font-size:11px;
  line-height:1.2;
  font-weight:700;
}
.ai-visual-tooth-card.is-selected {
  background:#FFF1F2;
  border:1px solid #F04438;
  color:#0B1736;
  box-shadow:0 0 0 0 rgba(226,29,42,0),0 12px 26px rgba(226,29,42,.08);
}
.ai-visual-tooth-card.is-selected .ai-vtooth-num,
.ai-visual-tooth-card.is-selected .ai-vtooth-label,
.ai-visual-tooth-card.is-selected .ai-vtooth-side { color:#0B1736; }
.ai-vtooth-x {
  position:absolute;
  top:14px;
  left:14px;
  right:auto;
  display:flex;
  align-items:center;
  justify-content:center;
  width:28px;
  height:28px;
  border-radius:50%;
  background:#D92D20;
  color:#fff;
  font-size:24px;
  line-height:1;
  font-weight:700;
  box-shadow:0 3px 8px rgba(217,45,32,.20);
}
.ai-vtooth-missing {
  display:inline-flex;
  justify-content:center;
  align-items:center;
  min-height:26px;
  padding:6px 12px;
  margin-top:10px;
  border-radius:6px;
  background:#D92D20;
  color:#fff;
  font-size:12px;
  line-height:1;
  font-weight:900;
  letter-spacing:.02em;
}
.ai-picker-action-note {
  display:flex;
  align-items:center;
  gap:10px;
  margin:18px 0 0;
  padding:12px 14px;
  border:1px solid #B9E0FF;
  border-radius:8px;
  background:#F0F8FF;
  color:#0B376D;
  font-size:15px;
  line-height:1.4;
  font-weight:600;
}
.ai-picker-action-note .ai-info-icon {
  background:#0B6EAA;
  color:#fff;
  flex-basis:20px;
  width:20px;
  height:20px;
  font-size:12px;
}
.ai-visual-legend {
  justify-content:flex-start;
  margin:24px 0 0;
  padding:16px 0 0;
  border-top:1px solid #EEF2F6;
  color:#667085;
}
.ai-visual-legend .ai-leg-item { gap:8px; }
.ai-leg-gone { background:#E21D2A; border-color:#E21D2A; opacity:1; }
.ai-picker-board-hint {
  margin:16px 0 0;
  padding:12px 14px;
  border:1px solid rgba(226,29,42,.22);
  background:#FEF3F2;
  border-radius:10px;
  color:#B91C1C;
  font-size:15px;
  line-height:1.35;
  font-weight:900;
  text-align:center;
}
.ai-picker-side-kicker {
  font-size:25px;
  line-height:1.2;
  color:#0B1736;
  font-weight:900;
  letter-spacing:-.03em;
  margin-bottom:16px;
  text-transform:none;
}
.ai-summary-choicebox {
  border:1px solid #FDA29B;
  background:#FFF6F6;
  border-radius:10px;
  padding:18px;
  margin-bottom:14px;
}
.ai-summary-scope {
  margin:0 0 20px;
  color:#C1121F;
  font-size:19px;
  line-height:1.2;
  font-weight:900;
}
.ai-summary-label {
  margin:0 0 10px;
  color:#0B1736;
  font-size:16px;
  line-height:1.3;
  font-weight:700;
}
.ai-visual-selected-chips {
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin:0;
}
.ai-visual-selected-chip {
  display:inline-flex;
  align-items:center;
  gap:8px;
  min-height:36px;
  padding:8px 10px;
  border:0;
  border-radius:6px;
  background:#D92D20;
  color:#fff;
  font-family:inherit;
  font-size:16px;
  line-height:1;
  font-weight:900;
  cursor:pointer;
  box-shadow:0 5px 12px rgba(217,45,32,.18);
}
.ai-visual-selected-chip span { display:none; }
.ai-visual-selected-chip b { color:#fff; font-size:19px; line-height:1; }
.ai-summary-plainbox {
  border:1px solid #E5E7EB;
  background:#fff;
  border-radius:10px;
  padding:18px;
  margin-bottom:14px;
}
.ai-summary-plain-title {
  display:flex;
  align-items:center;
  gap:10px;
  margin:0 0 14px;
  color:#0B1736;
  font-size:17px;
  line-height:1.3;
  font-weight:900;
}
.ai-summary-plain-title span { color:#13813A; font-size:23px; line-height:1; }
.ai-summary-plain-text {
  margin:0 0 14px;
  color:#0B1736;
  font-size:16px;
  line-height:1.55;
  font-weight:500;
}
.ai-mini-arch {
  display:flex;
  align-items:flex-end;
  justify-content:center;
  gap:4px;
  min-height:72px;
  padding:10px 0 0;
}
.ai-mini-arch span {
  display:block;
  width:20px;
  height:36px;
  background:#fff;
  border:1px solid #D4D0C8;
  border-radius:50% 50% 38% 38%;
  box-shadow:inset 0 -6px 10px rgba(185,172,150,.14),0 3px 7px rgba(31,41,55,.08);
}
.ai-mini-arch span:nth-child(1),
.ai-mini-arch span:nth-child(6) { height:28px; transform:translateY(8px); }
.ai-mini-arch span:nth-child(2),
.ai-mini-arch span:nth-child(5) { height:32px; transform:translateY(3px); }
.ai-mini-arch span.is-red {
  background:#F04438;
  border-color:#D92D20;
  box-shadow:inset 0 -6px 10px rgba(255,255,255,.12),0 3px 7px rgba(217,45,32,.18);
}
.ai-summary-tip {
  border:1px solid #FAD79A;
  background:#FFFAEB;
  border-radius:10px;
  padding:14px 16px;
  margin-bottom:14px;
  color:#667085;
  font-size:15px;
  line-height:1.45;
}
.ai-summary-tip strong {
  display:inline-block;
  margin-bottom:6px;
  color:#92400E;
  font-size:15px;
}
.ai-visual-summary .ai-btn-next {
  max-width:none;
  margin:0;
  min-height:58px;
  border-radius:8px;
  background:#13813A;
  font-size:20px;
  font-weight:900;
  box-shadow:0 10px 22px rgba(19,129,58,.22);
}
.ai-visual-summary .ai-btn-next:hover { background:#0F6A31; }
.ai-summary-safe {
  margin:14px 0 0;
  color:#667085;
  font-size:13px;
  line-height:1.35;
  text-align:center;
}
.ai-picker-side-title {
  font-size:20px;
  line-height:1.2;
  color:#0B1736;
  font-weight:900;
  margin:0 0 8px;
}
.ai-picker-side-empty {
  font-size:15px;
  color:#667085;
  line-height:1.55;
  margin:0;
}

@media (min-width:1180px) {
  .ai-picker-visual-layout { grid-template-columns:minmax(0,1fr) 300px; }
  .ai-visual-summary { position:sticky; top:96px; }
}
@media (max-width:1179px) and (min-width:768px) {
  .ai-picker-visual { max-width:920px; }
  .ai-picker-visual-layout { grid-template-columns:1fr; }
  .ai-visual-summary { max-width:720px; width:100%; justify-self:center; }
}
@media (max-width:767px) {
  .ai-picker-visual {
    max-width:430px;
    margin:0 auto;
    padding:0;
    --selector-blue:#0F63E6;
  }
  .ai-picker-visual .ai-picker-title {
    font-size:38px;
    line-height:1.08;
    margin:0 0 14px;
  }
  .ai-picker-visual .ai-picker-sub {
    font-size:19px;
    line-height:1.45;
    color:#667085;
    margin-bottom:20px;
  }
  .ai-desktop-break { display:none; }
  .ai-picker-info-pill {
    width:100%;
    max-width:none;
    box-sizing:border-box;
    background:#F2F6FF;
    border:0;
    border-radius:16px;
    padding:16px 18px;
    margin-bottom:24px;
    color:#344054;
    font-size:18px;
    font-weight:500;
  }
  .ai-picker-info-pill .ai-info-icon {
    background:#fff;
    color:#0F63E6;
    border:2px solid #0F63E6;
  }
  .ai-picker-visual-layout { display:block; }
  .ai-visual-main { min-width:0; }
  .ai-visual-summary {
    margin-top:18px;
    border:0;
    border-radius:0;
    box-shadow:none;
    padding:0;
    background:transparent;
  }
  .ai-picker-side-kicker { display:none; }
  .ai-visual-controls {
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:14px;
    margin-bottom:24px;
  }
  .ai-vstep-label { display:none; }
  .ai-control-group { display:block; }
  .ai-control-group .ai-control-pill:not(.is-active) { display:none; }
  .ai-control-pill {
    width:100%;
    min-width:0;
    min-height:58px;
    justify-content:flex-start;
    gap:12px;
    padding:14px 18px;
    border:2px solid #0F63E6;
    border-radius:999px;
    background:#fff;
    color:#0F63E6;
    font-size:18px;
    box-shadow:none;
  }
  .ai-control-pill.is-active {
    background:#fff;
    border-color:#0F63E6;
    color:#0F63E6;
    box-shadow:none;
  }
  .ai-control-ico { width:26px; height:26px; flex-basis:26px; opacity:1; }
  .ai-control-chevron {
    display:block;
    margin-left:auto;
    color:#0F63E6;
    font-size:20px;
    line-height:1;
    transform:translateY(-1px);
  }
  .ai-orientation-strip {
    margin:0 0 20px;
    padding:12px 8px;
    border:1px solid #E5E7EB;
    border-radius:10px;
    background:#fff;
    color:#667085;
    font-size:17px;
    font-weight:500;
    text-transform:none;
    letter-spacing:0;
  }
  .ai-orientation-strip span:nth-child(2) {
    color:#344054;
    font-weight:600;
    padding:0 8px;
  }
  .ai-orientation-strip span:nth-child(2)::before,
  .ai-orientation-strip span:nth-child(2)::after {
    content:"";
    position:absolute;
    top:50%;
    width:1px;
    height:26px;
    border:0;
    background:#E5E7EB;
  }
  .ai-orientation-strip span:nth-child(2)::before { right:100%; }
  .ai-orientation-strip span:nth-child(2)::after { left:100%; }
  .ai-visual-diagram {
    margin:0 -8px;
    padding:96px 0 4px;
    border:0;
    border-radius:0;
    background:linear-gradient(180deg,#FFE1E3 0,#FFEDEE 45px,#fff 100px);
    box-shadow:none;
    overflow:visible;
  }
  .ai-visual-diagram::before {
    height:110px;
    background:radial-gradient(ellipse at center,rgba(229,115,125,.36),rgba(255,224,226,.75) 48%,rgba(255,255,255,0) 72%);
  }
  .ai-teeth-cards {
    justify-content:flex-start;
    gap:6px;
    overflow-x:auto;
    padding:0 8px 10px;
    scroll-snap-type:x proximity;
    -webkit-overflow-scrolling:touch;
  }
  .ai-teeth-cards::-webkit-scrollbar { height:4px; }
  .ai-teeth-cards::-webkit-scrollbar-thumb { background:#D0D5DD; border-radius:999px; }
  .ai-visual-tooth-card {
    flex:0 0 86px;
    min-width:86px;
    max-width:86px;
    min-height:154px;
    padding:14px 8px 10px;
    border:1px solid #E5E7EB;
    border-radius:10px;
    box-shadow:0 6px 16px rgba(31,41,55,.06);
    scroll-snap-align:center;
  }
  .ai-vtooth-shape {
    width:44px;
    height:68px;
    margin-bottom:10px;
  }
  .ai-t-central-incisor .ai-vtooth-shape { width:46px; height:70px; }
  .ai-t-lateral-incisor .ai-vtooth-shape { width:42px; height:66px; }
  .ai-t-canine .ai-vtooth-shape { width:40px; height:70px; }
  .ai-t-premolar .ai-vtooth-shape { width:48px; height:60px; }
  .ai-t-molar .ai-vtooth-shape { width:54px; height:58px; }
  .ai-vtooth-num { font-size:28px; }
  .ai-vtooth-label { font-size:16px; margin-top:6px; }
  .ai-vtooth-side { display:none; }
  .ai-visual-tooth-card.is-selected {
    background:#F22932;
    border-color:#D92D20;
    color:#fff;
    box-shadow:0 0 0 4px rgba(242,41,50,.11),0 12px 24px rgba(242,41,50,.20);
  }
  .ai-visual-tooth-card.is-selected .ai-vtooth-num,
  .ai-visual-tooth-card.is-selected .ai-vtooth-label { color:#fff; }
  .ai-visual-tooth-card.is-selected .ai-vtooth-shape {
    background:transparent;
    border:0;
    filter:drop-shadow(0 5px 8px rgba(0,0,0,.12));
  }
  .ai-vtooth-x {
    top:8px;
    right:8px;
    left:auto;
    width:24px;
    height:24px;
    background:transparent;
    color:#fff;
    box-shadow:none;
    font-size:32px;
    font-weight:400;
  }
  .ai-vtooth-missing {
    min-height:24px;
    padding:5px 8px;
    margin-top:8px;
    border-radius:8px;
    background:#fff;
    color:#D92D20;
    font-size:12px;
  }
  .ai-picker-action-note { display:none; }
  .ai-visual-legend {
    display:flex;
    overflow-x:auto;
    flex-wrap:nowrap;
    margin:12px 0 0;
    padding:14px 16px;
    border:1px solid #E5E7EB;
    border-radius:12px;
    background:#fff;
    justify-content:flex-start;
  }
  .ai-visual-legend .ai-leg-item { white-space:nowrap; }
  .ai-picker-board-hint { margin:14px 0 0; }
  .ai-summary-choicebox {
    border:1px solid #E5E7EB;
    background:#fff;
    border-radius:16px;
    padding:22px 24px;
    box-shadow:0 8px 22px rgba(31,41,55,.05);
    margin-bottom:16px;
  }
  .ai-summary-scope,
  .ai-summary-label,
  .ai-summary-plainbox,
  .ai-summary-tip,
  .ai-summary-safe { display:none; }
  .ai-summary-choicebox::before {
    content:"Chýba: ";
    display:inline;
    color:#D92D20;
    font-size:28px;
    line-height:1.1;
    font-weight:900;
    letter-spacing:-.04em;
  }
  .ai-visual-selected-chips {
    display:inline-flex;
    gap:4px;
    vertical-align:baseline;
  }
  .ai-visual-selected-chip {
    display:inline-flex;
    min-height:auto;
    padding:0;
    border:0;
    background:transparent;
    box-shadow:none;
    color:#D92D20;
    font-size:28px;
    line-height:1.1;
    font-weight:900;
    letter-spacing:-.04em;
  }
  .ai-visual-selected-chip:not(:last-child)::after { content:","; }
  .ai-visual-selected-chip b { display:none; }
  .ai-visual-summary .ai-btn-next {
    width:100%;
    margin:0;
    min-height:64px;
    border-radius:12px;
    background:#0F63E6;
    color:#fff;
    font-size:24px;
    font-weight:900;
    box-shadow:0 14px 26px rgba(15,99,230,.22);
  }
  .ai-visual-summary .ai-btn-next:hover { background:#0B56CC; }
}


/* Real tooth image assets inside the manual selector. */
.ai-visual-tooth-card.is-selected .ai-vtooth-img { opacity:1; }

/* 2026-05-16 patch: full-width visual tooth selector; summary moves below selector. */
.ai-picker-visual {
  width:100%;
  max-width:none;
}
.ai-picker-visual-layout {
  display:block;
  width:100%;
}
.ai-visual-main {
  width:100%;
}
.ai-visual-summary {
  position:static !important;
  top:auto !important;
  width:100%;
  max-width:none;
  margin:22px 0 0;
  box-sizing:border-box;
}
@media (min-width:1180px) {
  .ai-picker-visual-layout { display:block; }
  .ai-visual-summary { position:static !important; top:auto !important; }
}
@media (min-width:768px) {
  .ai-visual-summary.has-selection {
    display:grid;
    grid-template-columns:minmax(0,1fr) minmax(260px,.8fr);
    gap:18px;
    align-items:stretch;
    padding:22px;
  }
  .ai-visual-summary.has-selection .ai-picker-side-kicker {
    grid-column:1 / -1;
    margin:0 0 2px;
  }
  .ai-visual-summary.has-selection .ai-summary-choicebox,
  .ai-visual-summary.has-selection .ai-summary-plainbox,
  .ai-visual-summary.has-selection .ai-summary-tip,
  .ai-visual-summary.has-selection .ai-btn-next,
  .ai-visual-summary.has-selection .ai-summary-safe {
    margin:0;
  }
  .ai-visual-summary.has-selection .ai-summary-choicebox { grid-column:1; grid-row:2; }
  .ai-visual-summary.has-selection .ai-summary-plainbox { grid-column:1; grid-row:3; }
  .ai-visual-summary.has-selection .ai-summary-tip { grid-column:2; grid-row:2; }
  .ai-visual-summary.has-selection .ai-btn-next { grid-column:2; grid-row:3; align-self:end; }
  .ai-visual-summary.has-selection .ai-summary-safe { grid-column:1 / -1; }
  .ai-visual-summary.is-empty {
    padding:20px 22px;
    background:#F8FAFC;
    border-style:dashed;
  }
}

/* Attractive help section under the selector. */
.tooth-help-v2 {
  margin-top:var(--s-lg);
  max-width:1180px;
  margin-left:auto;
  margin-right:auto;
  background:linear-gradient(135deg,#FFFFFF 0%,#F8FBFF 55%,#FFF8F5 100%);
  border:1px solid rgba(36,70,81,.12);
  border-radius:22px;
  padding:clamp(20px,3vw,32px);
  box-shadow:0 12px 36px rgba(30,35,40,.06),0 1px 3px rgba(30,35,40,.06);
}
.tooth-help-head {
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:18px;
  margin-bottom:22px;
}
.tooth-help-eyebrow {
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:7px 11px;
  border-radius:999px;
  background:#EAF3FF;
  color:#0B4EA2;
  font-size:12px;
  line-height:1;
  font-weight:900;
  letter-spacing:.04em;
  text-transform:uppercase;
  margin-bottom:10px;
}
.tooth-help-title {
  margin:0;
  color:#0B1736;
  font-size:clamp(23px,2.4vw,34px);
  line-height:1.08;
  letter-spacing:-.035em;
  font-weight:900;
}
.tooth-help-sub {
  margin:10px 0 0;
  color:#516070;
  font-size:16px;
  line-height:1.6;
  max-width:720px;
}
.tooth-help-steps {
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:14px;
  margin-bottom:18px;
}
.tooth-help-step {
  background:#fff;
  border:1px solid #E5EAF0;
  border-radius:18px;
  padding:17px;
  display:grid;
  grid-template-columns:auto minmax(0,1fr);
  gap:12px;
  min-height:112px;
}
.tooth-help-num {
  width:34px;
  height:34px;
  border-radius:50%;
  background:#0F63E6;
  color:#fff;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-weight:900;
  font-size:16px;
  box-shadow:0 8px 18px rgba(15,99,230,.18);
}
.tooth-help-step strong {
  display:block;
  color:#0B1736;
  font-size:16px;
  line-height:1.25;
  margin:0 0 5px;
}
.tooth-help-step p {
  margin:0;
  color:#516070;
  font-size:13px;
  line-height:1.5;
}
.tooth-help-grid {
  display:grid;
  grid-template-columns:repeat(5,minmax(0,1fr));
  gap:10px;
}
.tooth-help-card {
  background:#fff;
  border:1px solid #E5EAF0;
  border-radius:18px;
  padding:15px 12px;
  text-align:center;
  box-shadow:0 8px 18px rgba(31,41,55,.035);
}
.tooth-help-card img {
  display:block;
  height:72px;
  max-width:88px;
  object-fit:contain;
  margin:0 auto 11px;
  filter:drop-shadow(0 6px 8px rgba(31,41,55,.10));
}
.tooth-help-card strong {
  display:block;
  color:#0B1736;
  font-size:15px;
  line-height:1.25;
  font-weight:900;
  margin-bottom:4px;
}
.tooth-help-card span {
  display:block;
  color:#667085;
  font-size:12px;
  line-height:1.35;
  min-height:32px;
}
@media (max-width:900px) {
  .tooth-help-head { display:block; }
  .tooth-help-steps { grid-template-columns:1fr; }
  .tooth-help-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
}
@media (max-width:520px) {
  .tooth-help-v2 { border-radius:18px; padding:18px; }
  .tooth-help-grid { grid-template-columns:1fr; }
  .tooth-help-card { display:grid; grid-template-columns:72px minmax(0,1fr); gap:12px; text-align:left; align-items:center; }
  .tooth-help-card img { height:64px; max-width:72px; margin:0; }
  .tooth-help-card span { min-height:0; }
}

/* 2026-05-16 hotfix: mobile selector buttons must be tappable; molars/back teeth must be reachable. */
@media (max-width:767px) {
  .ai-picker-visual {
    width:100%;
    max-width:100%;
    box-sizing:border-box;
    padding-left:0;
    padding-right:0;
  }

  .ai-visual-controls {
    display:block;
    margin-bottom:18px;
  }

  .ai-vstep {
    margin-bottom:14px;
  }

  .ai-vstep-label {
    display:flex !important;
    align-items:center;
    gap:9px;
    margin:0 0 8px;
    color:#0B1736;
    font-size:15px;
    line-height:1.2;
    font-weight:900;
  }

  .ai-vstep-label span {
    width:26px;
    height:26px;
    font-size:13px;
    background:#0F63E6;
  }

  .ai-control-group {
    display:flex !important;
    gap:8px;
    overflow-x:auto;
    overflow-y:hidden;
    padding:2px 2px 8px;
    scroll-snap-type:x proximity;
    -webkit-overflow-scrolling:touch;
    touch-action:pan-x;
  }

  .ai-control-group::-webkit-scrollbar { height:4px; }
  .ai-control-group::-webkit-scrollbar-thumb { background:#CBD5E1; border-radius:999px; }

  .ai-control-group .ai-control-pill,
  .ai-control-group .ai-control-pill:not(.is-active) {
    display:flex !important;
    flex:0 0 auto;
    width:auto;
    min-width:0;
    min-height:52px;
    padding:11px 13px;
    border:1px solid #D8DEE8;
    border-radius:12px;
    background:#fff;
    color:#0B1736;
    box-shadow:0 4px 12px rgba(31,41,55,.05);
    scroll-snap-align:start;
    cursor:pointer;
    pointer-events:auto;
    user-select:none;
    -webkit-user-select:none;
  }

  .ai-control-row-pill { min-width:146px !important; }
  .ai-control-zone-pill { min-width:136px !important; }

  .ai-control-pill.is-active {
    border-color:#0F63E6 !important;
    background:#0F63E6 !important;
    color:#fff !important;
    box-shadow:0 8px 18px rgba(15,99,230,.20) !important;
  }

  .ai-control-chevron { display:none !important; }

  .ai-control-ico {
    width:24px;
    height:24px;
    flex-basis:24px;
  }

  .ai-orientation-strip {
    margin:0 0 12px;
  }

  .ai-visual-diagram {
    margin:0;
    padding:18px 0 8px;
    border:1px solid #E5E7EB;
    border-radius:16px;
    background:#fff;
    overflow:hidden;
  }

  .ai-visual-diagram::before { display:none; }

  .ai-teeth-cards {
    display:flex;
    justify-content:flex-start;
    gap:10px;
    overflow-x:auto !important;
    overflow-y:hidden;
    padding:4px 14px 14px;
    scroll-snap-type:x proximity;
    -webkit-overflow-scrolling:touch;
    touch-action:pan-x;
  }

  .ai-teeth-cards::after {
    content:"";
    flex:0 0 4px;
  }

  .ai-teeth-cards::-webkit-scrollbar { height:5px; }
  .ai-teeth-cards::-webkit-scrollbar-thumb { background:#CBD5E1; border-radius:999px; }

  .ai-visual-tooth-card {
    flex:0 0 92px;
    min-width:92px;
    max-width:92px;
    min-height:170px;
    pointer-events:auto;
    touch-action:manipulation;
  }

  .ai-zone-side .ai-visual-tooth-card,
  .ai-zone-back .ai-visual-tooth-card {
    flex-basis:98px;
    min-width:98px;
    max-width:98px;
  }

  .ai-zone-back .ai-t-molar .ai-vtooth-shape {
    width:62px;
    height:62px;
  }

  .ai-picker-action-note {
    display:flex !important;
    margin:12px 0 0;
    font-size:13px;
  }

  .ai-picker-action-note span:last-child::after {
    content:" Ak nevidíte všetky zuby, posuňte rad prstom do strany.";
    font-weight:800;
  }
}

/* 2026-05-16 patch: full-mouth selected-teeth simulation in the summary. */
.ai-fullmouth-map {
  margin-top:16px;
  padding:14px;
  border:1px solid #D7E2EE;
  border-radius:14px;
  background:linear-gradient(180deg,#FFFFFF 0%,#F8FBFF 100%);
}
.ai-fullmouth-title {
  color:#0B1736;
  font-size:16px;
  line-height:1.25;
  font-weight:900;
  margin:0 0 3px;
}
.ai-fullmouth-sub {
  color:#667085;
  font-size:12px;
  line-height:1.4;
  margin:0 0 12px;
}
.ai-fullmouth-orient {
  display:grid;
  grid-template-columns:1fr auto 1fr;
  gap:8px;
  align-items:center;
  margin:0 0 10px;
  color:#667085;
  font-size:11px;
  line-height:1.2;
  font-weight:800;
  text-align:center;
}
.ai-fullmouth-orient span:first-child { text-align:left; }
.ai-fullmouth-orient span:last-child { text-align:right; }
.ai-fullmouth-jaw {
  display:grid;
  grid-template-columns:78px minmax(0,1fr);
  gap:10px;
  align-items:center;
  margin:9px 0;
}
.ai-fullmouth-jaw-label {
  color:#0B1736;
  font-size:12px;
  line-height:1.2;
  font-weight:900;
}
.ai-fullmouth-row {
  display:grid;
  grid-template-columns:repeat(16,minmax(0,1fr));
  gap:4px;
}
.ai-fullmouth-tooth {
  position:relative;
  min-width:0;
  min-height:54px;
  padding:5px 2px 4px;
  border:1px solid #E5E7EB;
  border-radius:8px;
  background:#fff;
  color:#0B1736;
  display:grid;
  justify-items:center;
  align-content:center;
  gap:2px;
  font-family:inherit;
  cursor:pointer;
  box-shadow:0 3px 8px rgba(31,41,55,.035);
  -webkit-tap-highlight-color:transparent;
}
.ai-fullmouth-tooth img {
  display:block;
  width:20px;
  height:24px;
  object-fit:contain;
  filter:drop-shadow(0 2px 3px rgba(31,41,55,.12));
  pointer-events:none;
  user-select:none;
  -webkit-user-drag:none;
}
.ai-fullmouth-tooth.ai-t-premolar img { width:22px; height:22px; }
.ai-fullmouth-tooth.ai-t-molar img { width:23px; height:22px; }
.ai-fullmouth-tooth span:last-child {
  display:block;
  font-size:10px;
  line-height:1;
  font-weight:900;
}
.ai-fullmouth-tooth:hover,
.ai-fullmouth-tooth:focus-visible {
  outline:none;
  border-color:#0F63E6;
  box-shadow:0 0 0 2px rgba(15,99,230,.11),0 4px 10px rgba(31,41,55,.06);
}
.ai-fullmouth-tooth.is-selected {
  border-color:#D92D20;
  background:#D92D20;
  color:#fff;
  box-shadow:0 6px 14px rgba(217,45,32,.18);
}
.ai-fullmouth-tooth.is-selected img { filter:drop-shadow(0 2px 3px rgba(0,0,0,.18)); }
.ai-fullmouth-x {
  position:absolute;
  top:-6px;
  right:-5px;
  width:17px;
  height:17px;
  border-radius:50%;
  background:#fff;
  color:#D92D20;
  display:flex !important;
  align-items:center;
  justify-content:center;
  font-size:16px !important;
  line-height:1 !important;
  font-weight:900;
  box-shadow:0 2px 6px rgba(31,41,55,.14);
}

/* 2026-05-16 patch: mobile controls are all visible; no hidden area buttons; molars/back teeth are not hidden. */
@media (max-width:767px) {
  .ai-visual-controls {
    display:block !important;
    margin-bottom:16px;
  }
  .ai-vstep { margin-bottom:14px; }
  .ai-control-group {
    display:grid !important;
    overflow:visible !important;
    gap:8px;
    padding:0 !important;
    scroll-snap-type:none !important;
    touch-action:manipulation;
  }
  .ai-vstep-row .ai-control-group { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .ai-vstep-zone .ai-control-group { grid-template-columns:repeat(3,minmax(0,1fr)); }
  .ai-control-group .ai-control-pill,
  .ai-control-group .ai-control-pill:not(.is-active),
  .ai-control-row-pill,
  .ai-control-zone-pill {
    display:flex !important;
    width:100% !important;
    min-width:0 !important;
    max-width:none !important;
    min-height:52px;
    justify-content:center;
    gap:7px;
    padding:10px 7px !important;
    white-space:normal;
    line-height:1.15;
    font-size:13px;
    pointer-events:auto !important;
    touch-action:manipulation;
  }
  .ai-control-ico {
    width:22px !important;
    height:22px !important;
    flex:0 0 22px !important;
  }
  .ai-teeth-cards {
    display:grid !important;
    grid-template-columns:repeat(3,minmax(0,1fr));
    justify-content:stretch !important;
    gap:10px !important;
    overflow:visible !important;
    padding:4px 10px 12px !important;
    scroll-snap-type:none !important;
  }
  .ai-teeth-cards::after { display:none !important; content:none !important; }
  .ai-visual-tooth-card,
  .ai-zone-side .ai-visual-tooth-card,
  .ai-zone-back .ai-visual-tooth-card {
    width:100% !important;
    min-width:0 !important;
    max-width:none !important;
    flex:none !important;
    min-height:164px;
    padding:14px 6px 10px;
    pointer-events:auto !important;
    touch-action:manipulation;
  }
  .ai-vtooth-num { font-size:25px; }
  .ai-vtooth-label { font-size:13px; }
  .ai-fullmouth-map {
    padding:12px 10px;
    border-radius:14px;
  }
  .ai-fullmouth-jaw {
    display:block;
    margin:12px 0;
  }
  .ai-fullmouth-jaw-label {
    margin:0 0 7px;
    font-size:13px;
  }
  .ai-fullmouth-row {
    grid-template-columns:repeat(8,minmax(0,1fr));
    gap:5px;
  }
  .ai-fullmouth-tooth {
    min-height:50px;
    padding:5px 1px 4px;
    border-radius:8px;
  }
  .ai-fullmouth-tooth img {
    width:20px;
    height:22px;
  }
  .ai-fullmouth-tooth.ai-t-premolar img,
  .ai-fullmouth-tooth.ai-t-molar img { width:21px; height:21px; }
  .ai-fullmouth-orient {
    font-size:10px;
    gap:5px;
  }
}
@media (max-width:360px) {
  .ai-control-group .ai-control-pill,
  .ai-control-group .ai-control-pill:not(.is-active),
  .ai-control-row-pill,
  .ai-control-zone-pill {
    font-size:12px;
    padding-left:5px !important;
    padding-right:5px !important;
  }
  .ai-control-ico { display:none !important; }
  .ai-visual-tooth-card,
  .ai-zone-side .ai-visual-tooth-card,
  .ai-zone-back .ai-visual-tooth-card { min-height:156px; }
}



/* 2026-05-17 patch: replace phone fallback in tooth selection with AI tooth-selection helper. */
.tooth-help-ai {
  flex:0 0 auto;
  display:inline-flex;
  flex-direction:column;
  align-items:flex-start;
  gap:2px;
  padding:13px 17px;
  border-radius:14px;
  background:linear-gradient(135deg,#0F63E6 0%,#13813A 100%);
  border:0;
  color:#fff;
  font-family:inherit;
  font-size:15px;
  line-height:1.25;
  font-weight:900;
  text-decoration:none;
  box-shadow:0 12px 26px rgba(15,99,230,.18);
  cursor:pointer;
  -webkit-tap-highlight-color:transparent;
}
.tooth-help-ai span {
  color:rgba(255,255,255,.86);
  font-size:12px;
  font-weight:800;
}
.tooth-help-ai:hover,
.tooth-help-ai:focus-visible {
  outline:none;
  transform:translateY(-1px);
  box-shadow:0 16px 32px rgba(15,99,230,.24);
}
.ai-tooth-ai-helper {
  margin:18px 0 16px;
  padding:18px;
  border:2px solid #8BBEFF;
  border-radius:20px;
  background:linear-gradient(180deg,#F2F8FF 0%,#FFFFFF 100%);
  box-shadow:0 18px 42px rgba(15,99,230,.13),0 0 0 5px rgba(15,99,230,.04);
}
.ai-tooth-ai-head {
  display:grid;
  grid-template-columns:auto minmax(0,1fr);
  gap:12px;
  align-items:start;
  margin-bottom:12px;
}
.ai-tooth-ai-badge {
  display:flex;
  align-items:center;
  justify-content:center;
  width:42px;
  height:42px;
  border-radius:14px;
  background:#0F63E6;
  color:#fff;
  font-size:15px;
  font-weight:900;
  box-shadow:0 8px 18px rgba(15,99,230,.20);
}
.ai-tooth-ai-head strong {
  display:block;
  color:#0B1736;
  font-size:18px;
  line-height:1.25;
  font-weight:900;
  margin:0 0 3px;
}
.ai-tooth-ai-head p {
  margin:0;
  color:#516070;
  font-size:13px;
  line-height:1.45;
}
.ai-tooth-ai-bubble {
  margin:0 0 12px;
  padding:12px 13px;
  border:1px solid #D7E6FF;
  border-radius:14px 14px 14px 4px;
  background:#fff;
  color:#0B376D;
  font-size:15px;
  line-height:1.5;
  font-weight:700;
}

.ai-tooth-ai-quick-actions {
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin:0 0 12px;
}
.ai-tooth-ai-quick-actions button {
  padding:10px 13px;
  border:1px solid #B9D3FF;
  border-radius:999px;
  background:#EAF4FF;
  color:#0B376D;
  font-family:inherit;
  font-size:13px;
  font-weight:900;
  cursor:pointer;
}
.ai-tooth-ai-quick-actions button:hover,
.ai-tooth-ai-quick-actions button:focus-visible {
  outline:none;
  border-color:#0F63E6;
  box-shadow:0 0 0 3px rgba(15,99,230,.10);
}

.ai-tooth-ai-form {
  display:grid;
  grid-template-columns:minmax(0,1fr) 210px;
  gap:12px;
  align-items:stretch;
}
.ai-tooth-ai-input-wrap {
  text-align:left;
}
.ai-tooth-ai-input-wrap label {
  display:block;
  margin:0 0 7px;
  color:#0B1736;
  font-size:13px;
  line-height:1.2;
  font-weight:900;
}
.ai-tooth-ai-form textarea {
  width:100%;
  min-height:82px;
  resize:vertical;
  padding:15px 16px;
  border:2px solid #0F63E6;
  border-radius:16px;
  background:#F8FBFF;
  color:#0B1736;
  font-family:inherit;
  font-size:17px;
  line-height:1.45;
  font-weight:750;
  outline:none;
  box-shadow:0 0 0 4px rgba(15,99,230,.10), inset 0 1px 0 rgba(255,255,255,.8);
}
.ai-tooth-ai-form textarea::placeholder {
  color:#4D6F9D;
  opacity:.9;
  font-weight:700;
}
.ai-tooth-ai-form textarea:focus {
  border-color:#0647B8;
  background:#fff;
  box-shadow:0 0 0 5px rgba(15,99,230,.16),0 12px 28px rgba(15,99,230,.10);
}
.ai-tooth-ai-actions {
  display:grid;
  grid-template-columns:1fr;
  gap:9px;
  align-content:end;
}
.ai-tooth-ai-form button {
  min-height:48px;
  padding:0 16px;
  border-radius:14px;
  font-family:inherit;
  font-size:15px;
  line-height:1.15;
  font-weight:900;
  cursor:pointer;
}
.ai-tooth-ai-submit {
  border:0;
  background:#13813A;
  color:#fff;
  box-shadow:0 8px 18px rgba(19,129,58,.18);
}
.ai-tooth-ai-photo {
  border:1.5px solid #0F63E6;
  background:#fff;
  color:#0B376D;
  box-shadow:0 8px 18px rgba(15,99,230,.08);
}
.ai-tooth-ai-examples {
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:10px;
}
.ai-tooth-ai-examples button {
  padding:8px 10px;
  border:1px solid #D7E2EE;
  border-radius:999px;
  background:#fff;
  color:#0B376D;
  font-family:inherit;
  font-size:12px;
  line-height:1;
  font-weight:800;
  cursor:pointer;
}
.ai-tooth-ai-examples button:last-child {
  color:#A13F3F;
  border-color:#F1C5C5;
}
@media (max-width:900px) {
  .tooth-help-ai { margin-top:14px; }
}
@media (max-width:767px) {
  .ai-tooth-ai-helper {
    margin:14px 0;
    padding:14px;
    border-radius:16px;
  }
  .ai-tooth-ai-form {
    grid-template-columns:1fr;
  }
  .ai-tooth-ai-actions {
    grid-template-columns:1fr;
  }
  .ai-tooth-ai-form button {
    min-height:48px;
  }
  .ai-tooth-ai-examples {
    display:grid;
    grid-template-columns:1fr 1fr;
  }
  .ai-tooth-ai-examples button {
    white-space:normal;
    line-height:1.25;
    min-height:38px;
  }
}
@media (max-width:420px) {
  .ai-tooth-ai-examples { grid-template-columns:1fr; }
}


/* 2026-05-17: full-width confirmed selection block + clearer CTA wording */
@media (min-width:768px) {
  .ai-visual-summary.has-selection {
    grid-template-columns:minmax(0,1fr) minmax(280px,.85fr);
  }
  .ai-visual-summary.has-selection .ai-summary-plainbox {
    grid-column:1 / -1 !important;
    grid-row:3 !important;
  }
  .ai-visual-summary.has-selection .ai-btn-next {
    grid-column:2;
    grid-row:4;
    align-self:end;
  }
  .ai-visual-summary.has-selection .ai-summary-safe {
    grid-column:1 / 2;
    grid-row:4;
    align-self:center;
    text-align:left;
  }
}
.ai-fullmouth-map { width:100%; }
.ai-fullmouth-row { justify-content:space-between; }


/* ============================================
   RESULT PAGE — MOCKUP 02 STYLE
   ============================================ */
.ai-result-m2 {
  display:flex;
  flex-direction:column;
  gap:16px;
}
.ai-result-m2 section,
.ai-result-m2 button {font-family:'Plus Jakarta Sans',sans-serif;}
.ai-m2-hero {
  position:relative;
  display:grid;
  grid-template-columns:minmax(520px,.98fr) minmax(340px,.86fr);
  gap:18px;
  align-items:center;
  overflow:hidden;
  border-radius:24px;
  padding:28px 28px 22px;
  background:linear-gradient(135deg,#072b8a 0%,#0b47cc 42%,#4f95ff 100%);
  color:#fff;
  box-shadow:0 18px 48px -28px rgba(11,71,204,.65);
}
.ai-m2-hero:after{
  content:"";
  position:absolute;
  inset:0;
  background:radial-gradient(circle at 75% 25%,rgba(255,255,255,.18),transparent 28%);
  pointer-events:none;
}
.ai-m2-hero-copy,.ai-m2-hero-art{position:relative;z-index:1;}
.ai-m2-kicker,.ai-m2-product-kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 16px;
  border-radius:999px;
  background:rgba(255,255,255,.14);
  border:1px solid rgba(255,255,255,.14);
  color:#fff;
  font-size:13px;
  font-weight:700;
  margin-bottom:20px;
}
.ai-m2-kicker svg,.ai-m2-product-kicker svg{width:16px;height:16px;fill:currentColor;stroke:none;}
.ai-m2-hero h2{
  margin:0 0 16px;
  font-size:clamp(38px,6vw,72px);
  line-height:1.02;
  letter-spacing:-.05em;
  color:#fff;
}
.ai-m2-hero-summary{
  margin:0 0 18px;
  max-width:620px;
  font-size:19px;
  line-height:1.55;
  color:rgba(255,255,255,.92);
}
.ai-m2-hero-tags{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}
.ai-m2-hero-tag{
  display:inline-flex;
  align-items:center;
  gap:10px;
  min-height:54px;
  padding:0 14px;
  border-radius:18px;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.25);
  color:#fff;
  font-size:13px;
  font-weight:700;
}
.ai-m2-hero-tag svg{width:24px;height:24px;fill:#fff;stroke:none;flex:0 0 auto;}
.ai-m2-hero-art{display:flex;justify-content:flex-end;align-items:flex-end;min-height:268px;}
.ai-m2-hero-art img{display:block;max-width:100%;width:min(620px,115%);height:auto;object-fit:cover;border-radius:0;filter:drop-shadow(0 10px 30px rgba(4,20,77,.28));}
.ai-m2-card{
  display:grid;
  grid-template-columns:104px minmax(0,1fr);
  align-items:center;
  gap:22px;
  padding:24px 26px;
  background:#fff;
  border:1px solid #dfe8fb;
  border-radius:22px;
  box-shadow:0 14px 38px -30px rgba(9,52,153,.22);
}
.ai-m2-card h3{
  margin:0 0 12px;
  font-size:22px;
  line-height:1.18;
  color:#163988;
  letter-spacing:-.03em;
}
.ai-m2-card p{
  margin:0;
  font-size:17px;
  line-height:1.72;
  color:#415582;
}
.ai-m2-card small{
  display:block;
  margin-top:10px;
  color:#7080a8;
  font-size:13px;
  line-height:1.6;
}
.ai-m2-card-icon{
  width:92px;
  height:92px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:linear-gradient(180deg,#edf4ff 0%,#e3eeff 100%);
}
.ai-m2-card-icon svg{width:42px;height:42px;stroke:#2658ff;fill:none;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round;}
.ai-m2-chip-row{display:flex;flex-wrap:wrap;gap:12px;margin:0 0 14px;}
.ai-m2-chip{
  display:inline-flex;
  align-items:center;
  min-height:42px;
  padding:0 16px;
  border-radius:14px;
  border:1px solid #dce6fb;
  background:#fff;
  font-size:15px;
  font-weight:600;
  color:#23438e;
}
.ai-m2-helper-why{margin-top:10px!important;}
.ai-m2-expect-card{display:block;padding:24px 26px 26px;}
.ai-m2-expect-card h3{margin:0 0 16px;font-size:22px;color:#163988;letter-spacing:-.03em;}
.ai-m2-metrics{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:16px;
  margin-bottom:18px;
}
.ai-m2-metric{
  display:grid;
  grid-template-columns:52px 1fr;
  gap:12px;
  align-items:center;
  min-height:96px;
  padding:16px 18px;
  border:1px solid #dce6fb;
  border-radius:18px;
  background:#fbfdff;
}
.ai-m2-metric-ico{
  width:52px;height:52px;border-radius:50%;display:grid;place-items:center;
  background:linear-gradient(180deg,#edf4ff,#e6efff);
}
.ai-m2-metric-ico svg{width:26px;height:26px;stroke:#2658ff;fill:none;stroke-width:1.9;stroke-linecap:round;stroke-linejoin:round;}
.ai-m2-metric-label{font-size:15px;font-weight:600;color:#55698f;}
.ai-m2-metric-value{font-size:18px;font-weight:800;color:#2658ff;line-height:1.2;}
.ai-m2-product-band{
  position:relative;
  display:grid;
  grid-template-columns:minmax(290px,.9fr) minmax(0,1.25fr);
  gap:24px;
  align-items:center;
  overflow:hidden;
  border-radius:24px;
  padding:22px 24px;
  background:linear-gradient(135deg,#0c47d4 0%,#0735ab 52%,#2d78ff 100%);
  color:#fff;
  box-shadow:0 20px 46px -30px rgba(12,71,212,.55);
}
.ai-m2-product-band:before{
  content:"";
  position:absolute;
}
.ai-m2-product-visual{display:flex;justify-content:center;align-items:flex-end;min-height:268px;}
.ai-m2-product-visual img{max-width:100%;max-height:280px;display:block;object-fit:cover;border-radius:0;filter:drop-shadow(0 12px 22px rgba(0,0,0,.18));}
.ai-m2-pack-placeholder{width:100%;display:flex;flex-direction:column;align-items:center;gap:16px;}
.ai-m2-pack-box{
  width:min(280px,100%);
  min-height:220px;
  padding:26px 24px;
  border-radius:20px;
  background:linear-gradient(180deg,#ffffff 0%,#f2f5fb 72%,#dbe7ff 100%);
  color:#103792;
  box-shadow:0 18px 28px -20px rgba(0,0,0,.28);
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}
.ai-m2-pack-brand{font-size:15px;font-weight:800;letter-spacing:.08em;display:block;opacity:.9;}
.ai-m2-pack-box strong{display:block;font-size:34px;line-height:1.05;letter-spacing:-.04em;}
.ai-m2-pack-box small{display:block;color:#4767ae;font-size:15px;line-height:1.45;}
.ai-m2-pack-jars{display:flex;gap:14px;justify-content:center;flex-wrap:wrap;}
.ai-m2-pack-jars span{
  display:grid;place-items:center;
  width:120px;height:120px;border-radius:50%;
  background:linear-gradient(180deg,#ffffff 0%,#eef4ff 74%,#d9e6ff 100%);
  color:#1f4ed6;font-weight:800;font-size:16px;text-align:center;
  padding:18px;line-height:1.2;
  box-shadow:0 14px 24px -20px rgba(0,0,0,.32);
}
.ai-m2-product-copy{display:flex;flex-direction:column;align-items:flex-start;}
.ai-m2-product-name{font-size:clamp(34px,5vw,60px);font-weight:800;line-height:1.02;letter-spacing:-.05em;margin-bottom:14px;}
.ai-m2-price-row{display:flex;align-items:center;flex-wrap:wrap;gap:14px;margin-bottom:18px;}
.ai-m2-price-old{font-size:28px;color:rgba(255,255,255,.65);text-decoration:line-through;text-decoration-thickness:2px;}
.ai-m2-price-new{font-size:60px;font-weight:800;letter-spacing:-.05em;line-height:1;}
.ai-m2-price-pill{display:inline-flex;align-items:center;justify-content:center;min-height:58px;padding:0 22px;border-radius:999px;background:rgba(255,255,255,.13);border:1px solid rgba(255,255,255,.24);font-size:19px;font-weight:700;color:#fff;}
.ai-m2-checkline{display:flex;align-items:flex-start;gap:12px;margin-bottom:18px;font-size:17px;line-height:1.65;color:rgba(255,255,255,.96);}
.ai-m2-checkline svg{width:22px;height:22px;stroke:#fff;fill:none;stroke-width:2.3;flex:0 0 auto;margin-top:2px;}
.ai-m2-buy-btn{
  width:100%;
  min-height:64px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  padding:0 24px;
  border-radius:18px;
  background:linear-gradient(180deg,#ffefc2 0%,#f5d58a 100%);
  color:#5c3a00;
  font-size:19px;
  font-weight:800;
  text-decoration:none;
  box-shadow:0 16px 24px -20px rgba(0,0,0,.26);
}
.ai-m2-buy-btn svg{width:24px;height:24px;stroke:#5c3a00;fill:none;stroke-width:2;}
.ai-m2-buy-btn:hover{color:#472d00;transform:translateY(-1px);}
.ai-m2-alt-link{display:inline-block;margin-top:12px;color:rgba(255,255,255,.88);font-size:15px;text-decoration:underline;text-underline-offset:2px;}
.ai-m2-alt-link:hover{color:#fff;}
.ai-m2-material-note{margin-top:6px!important;color:#6a7ba3!important;}
.ai-m2-reset-btn{
  align-self:center;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  min-width:280px;
  min-height:56px;
  padding:0 22px;
  border:none;
  border-radius:16px;
  background:#fff;
  box-shadow:inset 0 0 0 2px #d4def8;
  color:#2658ff;
  font-size:17px;
  font-weight:700;
  cursor:pointer;
}
.ai-m2-reset-btn svg{width:22px;height:22px;stroke:#2658ff;fill:none;stroke-width:2;}
.ai-m2-reset-btn:hover{background:#f8fbff;}
@media (max-width:860px){
  .ai-m2-hero,.ai-m2-product-band{grid-template-columns:1fr;}
  .ai-m2-hero-art,.ai-m2-product-visual{justify-content:center;}
  .ai-m2-product-copy{align-items:flex-start;}
}
@media (max-width:760px){
  .ai-result-m2{gap:14px;}
  .ai-m2-hero{padding:20px 18px 18px;border-radius:20px;}
  .ai-m2-hero h2{font-size:44px;}
  .ai-m2-hero-summary{font-size:17px;}
  .ai-m2-hero-tags{display:grid;grid-template-columns:1fr;gap:10px;}
  .ai-m2-hero-tag{min-height:50px;padding:0 14px;border-radius:14px;}
  .ai-m2-card{grid-template-columns:1fr;gap:16px;padding:20px 18px;border-radius:20px;}
  .ai-m2-card-icon{width:74px;height:74px;}
  .ai-m2-card h3,.ai-m2-expect-card h3{font-size:20px;}
  .ai-m2-card p{font-size:16px;line-height:1.65;}
  .ai-m2-chip-row{gap:10px;}
  .ai-m2-chip{min-height:40px;font-size:13px;padding:0 14px;}
  .ai-m2-metrics{grid-template-columns:1fr 1fr;gap:12px;}
  .ai-m2-metric{grid-template-columns:46px 1fr;padding:14px 14px;min-height:84px;}
  .ai-m2-metric-ico{width:46px;height:46px;}
  .ai-m2-product-band{gap:16px;padding:18px;border-radius:20px;}
  .ai-m2-product-visual{min-height:0;}
  .ai-m2-product-name{font-size:40px;}
  .ai-m2-price-row{gap:10px;}
  .ai-m2-price-old{font-size:24px;}
  .ai-m2-price-new{font-size:46px;}
  .ai-m2-price-pill{min-height:46px;padding:0 16px;font-size:17px;}
  .ai-m2-buy-btn{min-height:56px;font-size:17px;text-align:center;}
  .ai-m2-reset-btn{width:100%;min-width:0;}
}
@media (max-width:480px){
  .ai-m2-hero h2{font-size:38px;}
  .ai-m2-metrics{grid-template-columns:1fr;}
  .ai-m2-price-new{font-size:40px;}
  .ai-m2-product-name{font-size:34px;}
  .ai-m2-buy-btn span{line-height:1.2;}
}

/* Result page strict outer-container reset */
body.diagnostic-result-mode .odx-live{padding-top:22px;}
body.diagnostic-result-mode .odx-active-panel{min-width:0;}
body.diagnostic-result-mode .odx-ai-engine{background:transparent!important;border:none!important;box-shadow:none!important;backdrop-filter:none!important;padding:0!important;border-radius:0!important;}



.ai-m2-svg-wrap{width:100%;max-width:680px;}
.ai-m2-dental-svg{display:block;width:100%;height:auto;overflow:visible;}
.ai-m2-pack-schematic{width:100%;display:flex;flex-direction:column;align-items:center;gap:18px;}
.ai-m2-pack-card{width:min(320px,100%);min-height:210px;padding:26px 24px;border-radius:22px;background:linear-gradient(180deg,#ffffff 0%,#eef4ff 70%,#d8e6ff 100%);color:#0e3b9c;box-shadow:0 24px 34px -28px rgba(0,0,0,.35);display:flex;flex-direction:column;justify-content:flex-end;position:relative;overflow:hidden;}
.ai-m2-pack-card:before{content:"";position:absolute;top:-60px;right:-40px;width:170px;height:170px;border-radius:50%;background:radial-gradient(circle,rgba(60,123,255,.22),rgba(60,123,255,0));}
.ai-m2-pack-overline{display:block;font-size:12px;font-weight:800;letter-spacing:.08em;text-transform:uppercase;color:#5575c8;margin-bottom:12px;position:relative;z-index:1;}
.ai-m2-pack-card strong{display:block;font-size:38px;line-height:1.02;letter-spacing:-.05em;position:relative;z-index:1;}
.ai-m2-pack-card small{display:block;color:#486ab6;font-size:16px;line-height:1.45;margin-top:14px;position:relative;z-index:1;}
.ai-m2-pack-units{display:flex;gap:12px;flex-wrap:wrap;justify-content:center;}
.ai-m2-pack-unit{width:132px;height:132px;border-radius:50%;background:linear-gradient(180deg,#ffffff 0%,#edf4ff 72%,#d6e4ff 100%);box-shadow:0 18px 28px -24px rgba(0,0,0,.3);display:flex;flex-direction:column;align-items:center;justify-content:center;color:#1b48c8;padding:16px;text-align:center;}
.ai-m2-pack-unit strong{font-size:24px;line-height:1;font-weight:800;margin-bottom:8px;}
.ai-m2-pack-unit span{font-size:13px;font-weight:700;line-height:1.2;color:#4a68b6;}
.ai-m2-pack-unit-plus{background:linear-gradient(180deg,#ffffff 0%,#eef9ff 72%,#dcf1ff 100%);}
.ai-m2-pack-unit-fazety{background:linear-gradient(180deg,#fff9ef 0%,#fff1cf 78%,#ffe7a5 100%);}


/* RESULT MODE FULL SECTION WIDTH — 2026-05-17
   The Mockup-2 result must use the same wide section width as the page,
   not the old narrow diagnostic card width. */
body.diagnostic-result-mode .odx-live{
  padding-top:22px;
  padding-bottom:clamp(40px,6vw,72px);
}
body.diagnostic-result-mode .odx-wrap.odx-workspace{
  width:min(1480px,calc(100% - 48px));
  max-width:1480px;
  grid-template-columns:1fr!important;
  margin-inline:auto;
}
body.diagnostic-result-mode .odx-active-panel,
body.diagnostic-result-mode .odx-ai-engine,
body.diagnostic-result-mode .ai-result-m2{
  width:100%!important;
  max-width:none!important;
  min-width:0!important;
}
body.diagnostic-result-mode .odx-ai-engine{
  background:transparent!important;
  border:none!important;
  box-shadow:none!important;
  backdrop-filter:none!important;
  padding:0!important;
  border-radius:0!important;
}
body.diagnostic-result-mode .ai-m2-hero,
body.diagnostic-result-mode .ai-m2-card,
body.diagnostic-result-mode .ai-m2-product-band{
  width:100%;
}
@media(min-width:1180px){
  body.diagnostic-result-mode .ai-m2-hero{
    grid-template-columns:minmax(0,1.12fr) minmax(500px,.88fr);
    padding:36px 42px 30px;
  }
  body.diagnostic-result-mode .ai-m2-product-band{
    grid-template-columns:minmax(360px,.9fr) minmax(0,1.35fr);
    padding:34px 40px;
  }
}
@media(max-width:720px){
  body.diagnostic-result-mode .odx-wrap.odx-workspace{
    width:min(100% - 28px,1480px);
  }
}


/* Personalized guide-ready card on result page */
.ai-m2-guide-ready-card{
  border-color:#cfe0ff;
  background:linear-gradient(180deg,#ffffff 0%,#f8fbff 100%);
}
.ai-m2-guide-kicker{
  display:inline-flex;
  align-items:center;
  min-height:34px;
  padding:0 13px;
  margin:0 0 12px;
  border-radius:999px;
  background:#edf5ff;
  border:1px solid #cfe1ff;
  color:#174ea6;
  font-size:12px;
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.ai-m2-guide-points{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:16px;
}
.ai-m2-guide-points span{
  display:inline-flex;
  align-items:center;
  gap:8px;
  min-height:42px;
  padding:0 14px;
  border-radius:14px;
  background:#fff;
  border:1px solid #dce6fb;
  color:#23438e;
  font-size:15px;
  font-weight:800;
}
.ai-m2-guide-points svg{
  width:17px;
  height:17px;
  stroke:#0f8a3a;
  fill:none;
  stroke-width:2.4;
  flex:0 0 auto;
}
.ai-m2-guide-note{
  margin-top:12px!important;
  color:#6a7ba3!important;
  font-size:15px!important;
}


/* Equal product choices when a cheaper alternative exists */
.ai-m2-choice-section{
  display:block;
  padding:26px;
}
.ai-m2-choice-head{
  margin-bottom:18px;
}
.ai-m2-choice-kicker{
  display:inline-flex;
  align-items:center;
  min-height:34px;
  padding:0 12px;
  border-radius:999px;
  background:#edf4ff;
  color:#2658ff;
  font-size:12px;
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
  margin-bottom:12px;
}
.ai-m2-choice-head h3{
  margin:0 0 8px;
  font-size:clamp(24px,3vw,34px);
  color:#163988;
  letter-spacing:-.04em;
}
.ai-m2-choice-head p{
  max-width:920px;
  color:#526793;
  font-size:17px;
  line-height:1.68;
}
.ai-m2-choice-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:18px;
}
.ai-m2-choice-card{
  display:flex;
  flex-direction:column;
  min-height:100%;
  border:1.5px solid #dce6fb;
  border-radius:22px;
  padding:22px;
  background:linear-gradient(180deg,#ffffff 0%,#f8fbff 100%);
  box-shadow:0 16px 38px -32px rgba(9,52,153,.24);
}
.ai-m2-choice-card:hover{
  border-color:#9db8ff;
  box-shadow:0 22px 48px -34px rgba(38,88,255,.32);
}
.ai-m2-choice-top{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:16px;
  margin-bottom:14px;
}
.ai-m2-choice-label{
  display:inline-flex;
  align-items:center;
  min-height:30px;
  padding:0 11px;
  border-radius:999px;
  background:#edf4ff;
  color:#2658ff;
  font-size:11px;
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.ai-m2-choice-card h4{
  margin:10px 0 6px;
  font-size:clamp(24px,3.4vw,38px);
  line-height:1.05;
  letter-spacing:-.045em;
  color:#0f2f86;
}
.ai-m2-choice-badge{
  margin:0!important;
  font-size:15px!important;
  line-height:1.35!important;
  color:#6a7ca5!important;
  font-weight:700;
}
.ai-m2-choice-price{
  text-align:right;
  flex:0 0 auto;
}
.ai-m2-choice-price span{
  display:block;
  font-size:16px;
  color:#7b88a9;
  text-decoration:line-through;
}
.ai-m2-choice-price strong{
  display:block;
  font-size:clamp(28px,4vw,42px);
  line-height:1.05;
  color:#0f8a3a;
  letter-spacing:-.045em;
}
.ai-m2-choice-price small{
  display:block;
  margin-top:4px;
  font-size:13px;
  color:#6a7ca5;
  font-weight:800;
}
.ai-m2-choice-reason{
  color:#415582!important;
  font-size:16px!important;
  line-height:1.66!important;
  margin:0 0 16px!important;
}
.ai-m2-choice-components{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin:0 0 18px;
}
.ai-m2-choice-components span{
  display:inline-flex;
  align-items:center;
  min-height:34px;
  padding:0 11px;
  border-radius:999px;
  background:#eef6ff;
  color:#23438e;
  border:1px solid #d9e6ff;
  font-size:12px;
  font-weight:800;
}
.ai-m2-choice-btn{
  margin-top:auto;
  min-height:58px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  width:100%;
  padding:0 18px;
  border-radius:16px;
  background:linear-gradient(135deg,#071b45,#0b5ed7);
  color:#fff;
  font-size:17px;
  font-weight:900;
  text-decoration:none;
  text-align:center;
}
.ai-m2-choice-btn svg{
  width:22px;
  height:22px;
  stroke:#fff;
  fill:none;
  stroke-width:2;
  flex:0 0 auto;
}
.ai-m2-choice-btn:hover{
  color:#fff;
  transform:translateY(-1px);
}
.ai-m2-choice-alternative .ai-m2-choice-btn{
  background:#fff;
  color:#0b5ed7;
  border:2px solid #0b5ed7;
}
.ai-m2-choice-alternative .ai-m2-choice-btn svg{
  stroke:#0b5ed7;
}
.ai-m2-choice-alternative .ai-m2-choice-label{
  background:#fff7df;
  color:#8b6500;
}
.ai-m2-choice-alternative{
  border-color:#ead99b;
  background:linear-gradient(180deg,#fffdf7 0%,#fff9e9 100%);
}
.ai-m2-choice-alternative .ai-m2-choice-components span{
  background:#fff9e9;
  border-color:#f0dfaa;
  color:#755505;
}
@media (max-width:900px){
  .ai-m2-choice-grid{grid-template-columns:1fr;}
  .ai-m2-choice-top{display:block;}
  .ai-m2-choice-price{text-align:left;margin-top:14px;}
}
@media (max-width:520px){
  .ai-m2-choice-section{padding:20px 18px;}
  .ai-m2-choice-card{padding:18px;}
  .ai-m2-choice-btn{font-size:16px;line-height:1.2;padding-top:10px;padding-bottom:10px;}
}

/* RESULT PAGE POLISH — same visual language as AI diagnostika page */
body.diagnostic-result-mode .odx-page{
  background:
    radial-gradient(circle at 12% 8%,rgba(11,94,215,.10),transparent 32%),
    linear-gradient(180deg,#ffffff 0%,#f5f8fc 44%,#ffffff 100%)!important;
}
body.diagnostic-result-mode .odx-live{
  padding-top:clamp(22px,3vw,38px)!important;
  padding-bottom:clamp(54px,7vw,96px)!important;
}
body.diagnostic-result-mode .ai-result-m2{
  display:grid!important;
  grid-template-columns:1fr!important;
  gap:clamp(16px,2vw,24px)!important;
  width:100%!important;
}
body.diagnostic-result-mode .ai-m2-hero{
  min-height:clamp(340px,32vw,470px)!important;
  border:1px solid rgba(207,225,255,.55)!important;
  border-radius:32px!important;
  padding:clamp(28px,4vw,54px)!important;
  background:
    radial-gradient(circle at 82% 22%,rgba(121,183,255,.48),transparent 34%),
    linear-gradient(135deg,#061d5a 0%,#0b47d4 48%,#4d9bff 100%)!important;
  box-shadow:0 28px 82px -48px rgba(7,27,69,.55)!important;
}
body.diagnostic-result-mode .ai-m2-hero h2{
  font-size:clamp(46px,6vw,82px)!important;
  letter-spacing:-.065em!important;
  margin-bottom:clamp(12px,2vw,20px)!important;
}
body.diagnostic-result-mode .ai-m2-kicker{
  background:rgba(255,255,255,.16)!important;
  border:1px solid rgba(255,255,255,.22)!important;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.18)!important;
}
body.diagnostic-result-mode .ai-m2-hero-summary{
  max-width:680px!important;
  font-size:clamp(17px,1.55vw,22px)!important;
  line-height:1.62!important;
}
body.diagnostic-result-mode .ai-m2-hero-tags{
  margin-top:clamp(18px,2.4vw,28px)!important;
  gap:10px!important;
}
body.diagnostic-result-mode .ai-m2-hero-tag{
  min-height:50px!important;
  border-radius:16px!important;
  background:rgba(255,255,255,.14)!important;
  border:1px solid rgba(255,255,255,.25)!important;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.14)!important;
}
body.diagnostic-result-mode .ai-m2-hero-art{
  align-self:center!important;
  opacity:.96!important;
}
body.diagnostic-result-mode .ai-m2-svg-wrap{
  max-width:760px!important;
}
body.diagnostic-result-mode .ai-m2-card,
body.diagnostic-result-mode .ai-m2-choice-section{
  background:rgba(255,255,255,.94)!important;
  border:1px solid rgba(219,228,239,.95)!important;
  border-radius:24px!important;
  box-shadow:0 24px 70px -42px rgba(7,27,69,.28)!important;
  backdrop-filter:blur(16px)!important;
}
body.diagnostic-result-mode .ai-m2-card{
  grid-template-columns:82px minmax(0,1fr)!important;
  gap:18px!important;
  padding:clamp(20px,2.6vw,30px)!important;
}
body.diagnostic-result-mode .ai-m2-card-icon{
  width:64px!important;
  height:64px!important;
  border-radius:20px!important;
  background:linear-gradient(135deg,#071b45,#0b5ed7)!important;
  box-shadow:0 18px 32px -24px rgba(11,94,215,.8)!important;
}
body.diagnostic-result-mode .ai-m2-card-icon svg{
  width:30px!important;
  height:30px!important;
  stroke:#fff!important;
}
body.diagnostic-result-mode .ai-m2-card h3,
body.diagnostic-result-mode .ai-m2-expect-card h3,
body.diagnostic-result-mode .ai-m2-choice-head h3{
  color:#071b45!important;
  font-weight:900!important;
}
body.diagnostic-result-mode .ai-m2-card p,
body.diagnostic-result-mode .ai-m2-choice-head p{
  color:#475569!important;
}
body.diagnostic-result-mode .ai-m2-chip-row,
body.diagnostic-result-mode .ai-m2-guide-points{
  gap:9px!important;
}
body.diagnostic-result-mode .ai-m2-chip,
body.diagnostic-result-mode .ai-m2-guide-points span{
  border-radius:999px!important;
  background:#edf5ff!important;
  border:1px solid #cfe1ff!important;
  color:#174ea6!important;
  font-weight:850!important;
  min-height:38px!important;
}
body.diagnostic-result-mode .ai-m2-helper-card,
body.diagnostic-result-mode .ai-m2-why-card,
body.diagnostic-result-mode .ai-m2-guide-ready-card{
  position:relative!important;
  overflow:hidden!important;
}
body.diagnostic-result-mode .ai-m2-helper-card:after,
body.diagnostic-result-mode .ai-m2-guide-ready-card:after{
  content:"";
  position:absolute;
  right:-80px;
  top:-80px;
  width:220px;
  height:220px;
  border-radius:50%;
  background:radial-gradient(circle,rgba(11,94,215,.10),transparent 62%);
  pointer-events:none;
}
body.diagnostic-result-mode .ai-m2-guide-kicker,
body.diagnostic-result-mode .ai-m2-choice-kicker{
  background:#edf5ff!important;
  border:1px solid #cfe1ff!important;
  color:#174ea6!important;
}
body.diagnostic-result-mode .ai-m2-expect-card{
  display:block!important;
  padding:clamp(22px,3vw,34px)!important;
}
body.diagnostic-result-mode .ai-m2-metrics{
  gap:clamp(12px,1.6vw,18px)!important;
  margin-bottom:clamp(20px,3vw,30px)!important;
}
body.diagnostic-result-mode .ai-m2-metric{
  border-radius:20px!important;
  border:1px solid #dce8fb!important;
  background:linear-gradient(180deg,#ffffff 0%,#fbfdff 100%)!important;
  box-shadow:0 18px 42px -36px rgba(7,27,69,.28)!important;
}
body.diagnostic-result-mode .ai-m2-metric-ico{
  border-radius:16px!important;
  background:#edf5ff!important;
}
body.diagnostic-result-mode .ai-m2-metric-value{
  color:#0b5ed7!important;
  font-weight:900!important;
}
body.diagnostic-result-mode .ai-m2-choice-section{
  padding:clamp(22px,3vw,34px)!important;
  border:1px solid #dce8fb!important;
  background:
    radial-gradient(circle at 92% 8%,rgba(11,94,215,.10),transparent 28%),
    #fff!important;
}
body.diagnostic-result-mode .ai-m2-choice-head{
  display:grid!important;
  grid-template-columns:minmax(0,1fr) auto!important;
  align-items:end!important;
  gap:18px!important;
  margin-bottom:clamp(18px,2.4vw,26px)!important;
}
body.diagnostic-result-mode .ai-m2-choice-head:after{
  content:"Vyberte podľa komfortu alebo ceny";
  display:inline-flex;
  align-items:center;
  min-height:42px;
  padding:0 16px;
  border-radius:999px;
  background:#f8fbff;
  border:1px solid #dce8fb;
  color:#23438e;
  font-size:13px;
  font-weight:900;
  white-space:nowrap;
}
body.diagnostic-result-mode .ai-m2-choice-grid{
  gap:clamp(16px,2vw,22px)!important;
}
body.diagnostic-result-mode .ai-m2-choice-card{
  position:relative!important;
  overflow:hidden!important;
  border-radius:24px!important;
  padding:clamp(22px,2.6vw,30px)!important;
  border:1.5px solid #dce8fb!important;
  background:linear-gradient(180deg,#ffffff 0%,#f8fbff 100%)!important;
  box-shadow:0 22px 56px -42px rgba(7,27,69,.32)!important;
}
body.diagnostic-result-mode .ai-m2-choice-card:before{
  content:"";
  position:absolute;
  right:-70px;
  top:-80px;
  width:210px;
  height:210px;
  border-radius:50%;
  background:radial-gradient(circle,rgba(11,94,215,.12),transparent 62%);
  pointer-events:none;
}
body.diagnostic-result-mode .ai-m2-choice-alternative{
  background:linear-gradient(180deg,#fffdf8 0%,#fff9ea 100%)!important;
  border-color:#ead99b!important;
}
body.diagnostic-result-mode .ai-m2-choice-alternative:before{
  background:radial-gradient(circle,rgba(245,190,64,.18),transparent 62%)!important;
}
body.diagnostic-result-mode .ai-m2-choice-label{
  background:#edf5ff!important;
  color:#174ea6!important;
  border:1px solid #cfe1ff!important;
}
body.diagnostic-result-mode .ai-m2-choice-alternative .ai-m2-choice-label{
  background:#fff4cf!important;
  color:#8b6500!important;
  border-color:#f2dda2!important;
}
body.diagnostic-result-mode .ai-m2-choice-card h4{
  color:#071b45!important;
  font-size:clamp(30px,3.4vw,48px)!important;
  margin-top:12px!important;
}
body.diagnostic-result-mode .ai-m2-choice-badge{
  display:inline-flex!important;
  min-height:36px!important;
  align-items:center!important;
  padding:0 12px!important;
  border-radius:999px!important;
  background:#f8fbff!important;
  border:1px solid #dce8fb!important;
  color:#526793!important;
  font-size:13px!important;
}
body.diagnostic-result-mode .ai-m2-choice-alternative .ai-m2-choice-badge{
  background:#fff8df!important;
  border-color:#f0dfaa!important;
}
body.diagnostic-result-mode .ai-m2-choice-price strong{
  color:#0f8a3a!important;
}
body.diagnostic-result-mode .ai-m2-choice-reason{
  font-size:16px!important;
  color:#415582!important;
  background:rgba(237,245,255,.62)!important;
  border:1px solid rgba(207,225,255,.75)!important;
  border-radius:16px!important;
  padding:14px 16px!important;
}
body.diagnostic-result-mode .ai-m2-choice-alternative .ai-m2-choice-reason{
  background:rgba(255,248,223,.72)!important;
  border-color:#f0dfaa!important;
}
body.diagnostic-result-mode .ai-m2-choice-components span{
  min-height:36px!important;
  border-radius:999px!important;
}
body.diagnostic-result-mode .ai-m2-choice-btn{
  min-height:62px!important;
  border-radius:18px!important;
  box-shadow:0 16px 30px -22px rgba(11,94,215,.75)!important;
}
body.diagnostic-result-mode .ai-m2-choice-alternative .ai-m2-choice-btn{
  background:linear-gradient(180deg,#fffdf7 0%,#fff3c7 100%)!important;
  color:#6d4c00!important;
  border:1.5px solid #e4c973!important;
  box-shadow:0 16px 30px -24px rgba(139,101,0,.44)!important;
}
body.diagnostic-result-mode .ai-m2-choice-alternative .ai-m2-choice-btn svg{
  stroke:#6d4c00!important;
}
body.diagnostic-result-mode .ai-m2-material-card{
  background:linear-gradient(180deg,#ffffff 0%,#fbfdff 100%)!important;
}
body.diagnostic-result-mode .ai-m2-reset-btn{
  margin-top:4px!important;
  border:1px solid #dce8fb!important;
  box-shadow:0 16px 38px -34px rgba(7,27,69,.32)!important;
}
@media(min-width:1060px){
  body.diagnostic-result-mode .ai-result-m2{
    grid-template-columns:minmax(0,1fr) minmax(360px,.55fr)!important;
    align-items:start!important;
  }
  body.diagnostic-result-mode .ai-m2-hero,
  body.diagnostic-result-mode .ai-m2-expect-card,
  body.diagnostic-result-mode .ai-m2-material-card,
  body.diagnostic-result-mode .ai-m2-reset-btn{
    grid-column:1 / -1!important;
  }
  body.diagnostic-result-mode .ai-m2-guide-ready-card{
    grid-column:2!important;
    grid-row:2 / span 2!important;
    min-height:100%!important;
  }
  body.diagnostic-result-mode .ai-m2-helper-card,
  body.diagnostic-result-mode .ai-m2-why-card{
    grid-column:1!important;
  }
}
@media(max-width:900px){
  body.diagnostic-result-mode .ai-m2-choice-head{display:block!important;}
  body.diagnostic-result-mode .ai-m2-choice-head:after{margin-top:14px;white-space:normal;}
}
@media(max-width:760px){
  body.diagnostic-result-mode .ai-m2-card{grid-template-columns:1fr!important;}
  body.diagnostic-result-mode .ai-m2-card-icon{width:58px!important;height:58px!important;}
  body.diagnostic-result-mode .ai-m2-hero{border-radius:24px!important;padding:22px!important;}
  body.diagnostic-result-mode .ai-m2-hero h2{font-size:42px!important;}
}


/* 2026-05-17: AI helper clarification alert.
   Makes follow-up choice buttons impossible to miss after "Označiť zuby". */
.ai-tooth-ai-choice-alert{
  display:grid;
  grid-template-columns:44px minmax(0,1fr);
  gap:14px;
  align-items:center;
  margin:14px 0 12px;
  padding:16px 18px;
  border-radius:18px;
  border:2px solid rgba(11,94,215,.34);
  background:linear-gradient(135deg,#eaf3ff 0%,#ffffff 62%,#eef7ff 100%);
  box-shadow:0 16px 34px -24px rgba(11,94,215,.42),0 0 0 4px rgba(11,94,215,.07);
  color:#071b45;
  animation:aiChoicePulse 1.5s ease-in-out 0s 2;
}
.ai-choice-alert-arrow{
  width:44px;
  height:44px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:linear-gradient(135deg,#071b45,#0b5ed7);
  color:#fff;
  font-size:24px;
  font-weight:900;
  line-height:1;
  box-shadow:0 10px 22px -14px rgba(11,94,215,.8);
}
.ai-tooth-ai-choice-alert strong{
  display:block;
  font-size:18px;
  line-height:1.2;
  font-weight:900;
  letter-spacing:-.02em;
  color:#071b45;
}
.ai-tooth-ai-choice-alert p{
  margin:4px 0 0;
  color:#3b4f76;
  font-size:15px;
  line-height:1.45;
  font-weight:600;
}
.ai-tooth-ai-quick-actions.is-waiting-choice{
  padding:14px;
  border-radius:18px;
  background:rgba(11,94,215,.06);
  border:1px dashed rgba(11,94,215,.30);
}
.ai-tooth-ai-quick-actions.is-waiting-choice button{
  min-height:48px;
  border:2px solid rgba(11,94,215,.28)!important;
  box-shadow:0 12px 26px -22px rgba(7,27,69,.45);
}
.ai-tooth-ai-quick-actions.is-waiting-choice button:first-child{
  background:linear-gradient(135deg,#071b45,#0b5ed7)!important;
  color:#fff!important;
  border-color:#0b5ed7!important;
}
@keyframes aiChoicePulse{
  0%,100%{transform:translateY(0);box-shadow:0 16px 34px -24px rgba(11,94,215,.42),0 0 0 4px rgba(11,94,215,.07)}
  50%{transform:translateY(-2px);box-shadow:0 24px 48px -26px rgba(11,94,215,.55),0 0 0 7px rgba(11,94,215,.11)}
}
@media(max-width:560px){
  .ai-tooth-ai-choice-alert{grid-template-columns:38px minmax(0,1fr);gap:12px;padding:14px;border-radius:16px;}
  .ai-choice-alert-arrow{width:38px;height:38px;font-size:22px;}
  .ai-tooth-ai-choice-alert strong{font-size:17px;}
  .ai-tooth-ai-choice-alert p{font-size:13px;}
  .ai-tooth-ai-quick-actions.is-waiting-choice{padding:12px;}
  .ai-tooth-ai-quick-actions.is-waiting-choice button{width:100%;}
}


/* 2026-05-17: premium personalized guide highlight — no side icon */
.ai-m2-guide-ready-card{
  position:relative!important;
  display:block!important;
  overflow:hidden!important;
  padding:clamp(28px,3.8vw,46px)!important;
  border-radius:28px!important;
  border:1px solid rgba(255,255,255,.65)!important;
  background:
    radial-gradient(circle at 88% 8%,rgba(255,255,255,.28),transparent 34%),
    linear-gradient(135deg,#062b82 0%,#0b5ed7 48%,#48a5ff 100%)!important;
  box-shadow:0 30px 90px -44px rgba(7,27,69,.72), inset 0 1px 0 rgba(255,255,255,.22)!important;
  color:#fff!important;
  transform:translateY(-1px);
}
.ai-m2-guide-ready-card:before{
  content:"";
  position:absolute;
  left:-90px;
  bottom:-120px;
  width:360px;
  height:240px;
  border-radius:50%;
  background:radial-gradient(circle,rgba(255,255,255,.22),transparent 68%);
  pointer-events:none;
}
.ai-m2-guide-ready-card:after{
  content:""!important;
  position:absolute!important;
  right:-110px!important;
  top:-115px!important;
  width:340px!important;
  height:340px!important;
  border-radius:50%!important;
  background:radial-gradient(circle,rgba(184,239,255,.35),rgba(184,239,255,.10) 42%,transparent 70%)!important;
  pointer-events:none!important;
}
.ai-m2-guide-glow{
  position:absolute;
  inset:0;
  background:repeating-linear-gradient(155deg,transparent 0 38px,rgba(255,255,255,.045) 39px 40px);
  opacity:.7;
  pointer-events:none;
}
.ai-m2-guide-ready-card .ai-m2-guide-kicker{
  position:relative;
  z-index:1;
  display:inline-flex!important;
  align-items:center!important;
  min-height:40px!important;
  padding:0 16px!important;
  margin:0 0 16px!important;
  border-radius:999px!important;
  background:rgba(255,255,255,.16)!important;
  border:1px solid rgba(255,255,255,.30)!important;
  color:#fff!important;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.16)!important;
  font-size:12px!important;
  font-weight:950!important;
  letter-spacing:.095em!important;
  text-transform:uppercase!important;
}
.ai-m2-guide-ready-card h3{
  position:relative;
  z-index:1;
  margin:0 0 12px!important;
  max-width:820px;
  color:#fff!important;
  font-size:clamp(26px,3.8vw,44px)!important;
  line-height:1.08!important;
  letter-spacing:-.045em!important;
}
.ai-m2-guide-ready-card .ai-m2-guide-main{
  position:relative;
  z-index:1;
  max-width:900px;
  margin:0!important;
  color:rgba(255,255,255,.90)!important;
  font-size:clamp(16px,1.45vw,20px)!important;
  line-height:1.65!important;
}
.ai-m2-guide-ready-card .ai-m2-guide-main strong{
  color:#fff!important;
  font-weight:900!important;
}
.ai-m2-guide-ready-card .ai-m2-guide-points{
  position:relative;
  z-index:1;
  display:grid!important;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:12px!important;
  margin-top:24px!important;
}
.ai-m2-guide-ready-card .ai-m2-guide-points span{
  display:flex!important;
  align-items:center!important;
  gap:10px!important;
  min-height:58px!important;
  padding:0 18px!important;
  border-radius:18px!important;
  background:rgba(255,255,255,.14)!important;
  border:1px solid rgba(255,255,255,.26)!important;
  color:#fff!important;
  font-size:15px!important;
  font-weight:850!important;
  line-height:1.25!important;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.13)!important;
}
.ai-m2-guide-ready-card .ai-m2-guide-points svg{
  width:20px!important;
  height:20px!important;
  stroke:#d8fff1!important;
  fill:none!important;
  stroke-width:2.5!important;
  flex:0 0 auto!important;
}
.ai-m2-guide-ready-card .ai-m2-guide-note{
  position:relative;
  z-index:1;
  margin:20px 0 0!important;
  max-width:860px;
  color:rgba(255,255,255,.80)!important;
  font-size:15px!important;
  line-height:1.65!important;
}
@media(max-width:900px){
  .ai-m2-guide-ready-card .ai-m2-guide-points{grid-template-columns:1fr!important;}
  .ai-m2-guide-ready-card{padding:24px!important;border-radius:24px!important;}
}


/* 2026-05-17: guide card title + aligned icon points + Extra package correction support */
.ai-m2-guide-ready-card h3{
  margin:0 0 14px!important;
  max-width:820px!important;
  color:#fff!important;
  font-size:clamp(22px,2.4vw,32px)!important;
  line-height:1.18!important;
  letter-spacing:-.025em!important;
  font-weight:850!important;
}
.ai-m2-guide-ready-card .ai-m2-guide-main{
  max-width:900px!important;
  margin:0!important;
  color:rgba(255,255,255,.90)!important;
  font-size:clamp(15px,1.25vw,18px)!important;
  line-height:1.65!important;
}
.ai-m2-guide-ready-card .ai-m2-guide-points{
  display:grid!important;
  grid-template-columns:repeat(3,minmax(0,1fr))!important;
  gap:12px!important;
  margin-top:22px!important;
  align-items:stretch!important;
}
.ai-m2-guide-ready-card .ai-m2-guide-point{
  display:grid!important;
  grid-template-columns:34px minmax(0,1fr)!important;
  align-items:center!important;
  gap:12px!important;
  min-height:64px!important;
  padding:14px 16px!important;
  border-radius:18px!important;
  background:rgba(255,255,255,.14)!important;
  border:1px solid rgba(255,255,255,.24)!important;
  color:#fff!important;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.13)!important;
}
.ai-m2-guide-ready-card .ai-m2-guide-point-icon{
  width:34px!important;
  height:34px!important;
  display:grid!important;
  place-items:center!important;
  border-radius:12px!important;
  background:rgba(255,255,255,.18)!important;
  color:#d8fff1!important;
  flex:0 0 auto!important;
}
.ai-m2-guide-ready-card .ai-m2-guide-point-icon svg{
  width:19px!important;
  height:19px!important;
  stroke:#d8fff1!important;
  fill:none!important;
  stroke-width:2.4!important;
}
.ai-m2-guide-ready-card .ai-m2-guide-point b{
  display:block!important;
  min-width:0!important;
  color:#fff!important;
  font-size:15px!important;
  line-height:1.32!important;
  font-weight:850!important;
  letter-spacing:-.01em!important;
}
@media(max-width:900px){
  .ai-m2-guide-ready-card .ai-m2-guide-points{grid-template-columns:1fr!important;}
  .ai-m2-guide-ready-card .ai-m2-guide-point{grid-template-columns:32px minmax(0,1fr)!important;min-height:58px!important;}
}

/* ============================================
   DENTICOR AI EXPERIENCE LAYER — STATE OF ART
   Scope: additive UX only. Uses ai-exp-* classes to avoid touching core logic.
   ============================================ */
.ai-exp-command{
  position:relative;
  display:grid;
  grid-template-columns:auto minmax(0,1fr) auto;
  align-items:center;
  gap:18px;
  margin:0 0 18px;
  padding:18px;
  border-radius:24px;
  border:1px solid rgba(86,130,214,.26);
  background:
    radial-gradient(circle at 10% 0%,rgba(65,132,255,.18),transparent 30%),
    linear-gradient(135deg,rgba(255,255,255,.96),rgba(242,248,255,.94));
  box-shadow:0 22px 60px -42px rgba(7,27,69,.48),inset 0 1px 0 rgba(255,255,255,.8);
  overflow:hidden;
}
.ai-exp-command:after{
  content:"";
  position:absolute;
  inset:0;
  background:repeating-linear-gradient(135deg,transparent 0 38px,rgba(11,94,215,.035) 39px 40px);
  pointer-events:none;
}
.ai-exp-command>*{position:relative;z-index:1;}
.ai-exp-command-orb{
  width:64px;
  height:64px;
  display:grid;
  place-items:center;
  position:relative;
  border-radius:24px;
  color:#fff;
  background:linear-gradient(135deg,#071b45,#0b5ed7 70%,#62b7ff);
  box-shadow:0 16px 34px -22px rgba(11,94,215,.8);
}
.ai-exp-command-orb span{font-weight:950;letter-spacing:.04em;}
.ai-exp-command-orb i{
  position:absolute;
  inset:-8px;
  border:1px solid rgba(11,94,215,.22);
  border-radius:28px;
  animation:aiExpOrbit 2.8s ease-in-out infinite;
}
@keyframes aiExpOrbit{0%,100%{transform:scale(.96);opacity:.5}50%{transform:scale(1.05);opacity:1}}
.ai-exp-command-top{display:flex;align-items:center;gap:10px;justify-content:space-between;flex-wrap:wrap;}
.ai-exp-command-top strong{color:#071b45;font-size:19px;letter-spacing:-.02em;}
.ai-exp-command-top span{font-size:12px;font-weight:900;color:#174ea6;background:#eaf3ff;border:1px solid #cfe2ff;border-radius:999px;padding:7px 10px;}
.ai-exp-command-main p{margin:6px 0 12px;color:#43536f;font-size:15px;line-height:1.5;}
.ai-exp-rail{height:9px;background:#dfeaff;border-radius:999px;overflow:hidden;box-shadow:inset 0 1px 2px rgba(7,27,69,.08);}
.ai-exp-rail b{display:block;height:100%;border-radius:inherit;background:linear-gradient(90deg,#071b45,#0b5ed7,#4fc3ff);transition:width .4s ease;}
.ai-exp-steps{display:flex;gap:8px;flex-wrap:wrap;margin-top:10px;}
.ai-exp-steps span{font-size:11px;font-weight:900;color:#6b7a92;background:#fff;border:1px solid #e2e9f5;border-radius:999px;padding:6px 9px;}
.ai-exp-steps span.is-done{color:#0f8a3a;background:#ebfbf1;border-color:#c5f2d4;}
.ai-exp-steps span.is-active{color:#0b5ed7;background:#eaf3ff;border-color:#cfe2ff;}
.ai-exp-command-actions{display:flex;gap:10px;flex-wrap:wrap;justify-content:flex-end;}
.ai-exp-command-actions button,.ai-exp-brain-actions button,.ai-exp-lab-actions button,.ai-exp-intent-repair button,.ai-exp-intent-empty button,.ai-exp-mission-grid button{
  min-height:42px;
  border-radius:14px;
  border:1px solid #d6e2ef;
  background:#fff;
  color:#071b45;
  padding:0 14px;
  font:900 13px/1 'Plus Jakarta Sans',sans-serif;
  cursor:pointer;
  transition:transform .18s ease,box-shadow .18s ease,border-color .18s ease;
}
.ai-exp-command-actions button:hover,.ai-exp-brain-actions button:hover,.ai-exp-lab-actions button:hover,.ai-exp-intent-repair button:hover,.ai-exp-intent-empty button:hover,.ai-exp-mission-grid button:hover{
  transform:translateY(-1px);
  border-color:#b8cef6;
  box-shadow:0 14px 30px -24px rgba(7,27,69,.45);
}
.ai-exp-command-actions .ai-exp-hot,.ai-exp-brain-actions button:last-child{
  background:linear-gradient(135deg,#071b45,#0b5ed7);
  color:#fff;
  border-color:#0b5ed7;
}
.ai-exp-selection-brain{
  margin-top:16px;
  padding:16px;
  border-radius:20px;
  border:1px solid #dfe8fb;
  background:linear-gradient(180deg,#ffffff,#f7fbff);
  box-shadow:0 16px 40px -32px rgba(7,27,69,.36);
}
.ai-exp-brain-head{display:grid;grid-template-columns:44px minmax(0,1fr);gap:12px;align-items:start;}
.ai-exp-brain-head>span,.foto-qc-head>span,.ai-exp-lab-head>span{
  width:44px;height:44px;border-radius:16px;display:grid;place-items:center;
  background:linear-gradient(135deg,#071b45,#0b5ed7);color:#fff;font-weight:950;font-size:12px;
}
.ai-exp-brain-head strong,.foto-qc-head strong,.ai-exp-lab-head strong{display:block;color:#071b45;font-size:17px;line-height:1.22;}
.ai-exp-brain-head p,.foto-qc-head p,.ai-exp-lab-head p{margin:4px 0 0;color:#64748b;font-size:13px;line-height:1.45;}
.ai-exp-mission-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:8px;margin-top:14px;}
.ai-exp-mission-grid button{display:flex;flex-direction:column;align-items:flex-start;justify-content:center;min-height:74px;text-align:left;padding:12px;}
.ai-exp-mission-grid b{font-size:15px;}
.ai-exp-mission-grid small{font-size:11px;line-height:1.35;color:#64748b;margin-top:4px;}
.ai-exp-score{display:grid;grid-template-columns:auto minmax(0,1fr);gap:12px;align-items:center;margin-top:14px;}
.ai-exp-score b{display:block;color:#0b5ed7;font-size:28px;letter-spacing:-.04em;}
.ai-exp-score span{display:block;color:#64748b;font-size:11px;font-weight:900;text-transform:uppercase;letter-spacing:.06em;}
.ai-exp-score i{height:12px;background:#e5efff;border-radius:999px;overflow:hidden;box-shadow:inset 0 1px 2px rgba(7,27,69,.08);}
.ai-exp-score em{display:block;height:100%;border-radius:inherit;background:linear-gradient(90deg,#0f8a3a,#0b5ed7);}
.ai-exp-brain-chips,.ai-exp-intent-chips{display:flex;gap:8px;flex-wrap:wrap;margin-top:12px;}
.ai-exp-brain-chips span,.ai-exp-intent-chips span{border-radius:999px;background:#eef6ff;border:1px solid #d7e8ff;color:#174ea6;font-size:12px;font-weight:900;padding:7px 10px;}
.ai-exp-brain-tip{margin:12px 0 0;color:#475569;font-size:13px;line-height:1.55;}
.ai-exp-brain-actions{display:grid;grid-template-columns:1fr;gap:8px;margin-top:12px;}
.ai-exp-intent-mirror{margin-top:12px;}
.ai-exp-intent-empty,.ai-exp-intent-live{
  border-radius:18px;
  padding:14px;
  border:1px solid #dfe8fb;
  background:linear-gradient(180deg,#fbfdff,#f1f7ff);
}
.ai-exp-intent-empty strong,.ai-exp-intent-title strong{color:#071b45;font-size:15px;}
.ai-exp-intent-empty p,.ai-exp-intent-live p{margin:5px 0 0;color:#64748b;font-size:13px;line-height:1.5;}
.ai-exp-intent-empty div{display:flex;gap:8px;flex-wrap:wrap;margin-top:12px;}
.ai-exp-intent-title{display:flex;align-items:center;justify-content:space-between;gap:12px;}
.ai-exp-intent-title span{font-size:12px;font-weight:950;color:#0b5ed7;}
.ai-exp-intent-bar{height:8px;background:#dfeaff;border-radius:999px;overflow:hidden;margin-top:10px;}
.ai-exp-intent-bar b{display:block;height:100%;border-radius:inherit;background:linear-gradient(90deg,#071b45,#0b5ed7,#4fc3ff);}
.ai-exp-intent-repair{display:flex;gap:8px;flex-wrap:wrap;margin-top:12px;}
.ai-exp-result-lab{
  position:relative;
  display:block;
  padding:24px;
  border-radius:24px;
  border:1px solid #dfe8fb;
  background:
    radial-gradient(circle at 92% 8%,rgba(11,94,215,.14),transparent 30%),
    linear-gradient(180deg,#fff,#f7fbff);
  box-shadow:0 18px 48px -34px rgba(7,27,69,.34);
}
.ai-exp-lab-head{display:grid;grid-template-columns:48px minmax(0,1fr);gap:14px;align-items:start;margin-bottom:18px;}
.ai-exp-lab-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:12px;}
.ai-exp-lab-grid>div{padding:14px;border-radius:18px;background:#fff;border:1px solid #e2e9f5;box-shadow:0 10px 28px -26px rgba(7,27,69,.3);}
.ai-exp-lab-grid b{display:block;color:#64748b;font-size:11px;text-transform:uppercase;letter-spacing:.08em;margin-bottom:7px;}
.ai-exp-lab-grid strong{display:block;color:#071b45;font-size:16px;line-height:1.25;word-break:break-word;}
.ai-exp-lab-details{margin-top:14px;border-radius:18px;border:1px solid #e2e9f5;background:#fff;overflow:hidden;}
.ai-exp-lab-details summary{cursor:pointer;padding:14px 16px;color:#071b45;font-weight:900;}
.ai-exp-audit-lines{padding:0 16px 16px;color:#475569;font-size:15px;line-height:1.6;}
.ai-exp-audit-lines p{margin:10px 0 0;}
.ai-exp-lab-actions{display:flex;gap:10px;flex-wrap:wrap;margin-top:14px;}
.ai-exp-lab-actions button:first-child{background:linear-gradient(135deg,#071b45,#0b5ed7);color:#fff;border-color:#0b5ed7;}
.ai-exp-toast{
  position:fixed;left:50%;bottom:24px;z-index:9999;transform:translate(-50%,20px);opacity:0;
  max-width:min(460px,calc(100% - 32px));padding:13px 16px;border-radius:16px;background:#071b45;color:#fff;
  box-shadow:0 18px 44px -26px rgba(7,27,69,.65);font:850 14px/1.4 'Plus Jakarta Sans',sans-serif;transition:.25s ease;
}
.ai-exp-toast.is-visible{transform:translate(-50%,0);opacity:1;}
.ai-exp-sticky-result{
  position:fixed;left:16px;right:16px;bottom:16px;z-index:2200;display:none;align-items:center;justify-content:space-between;gap:14px;
  max-width:760px;margin:0 auto;padding:12px 12px 12px 16px;border-radius:20px;background:rgba(7,27,69,.94);color:#fff;
  box-shadow:0 24px 60px -28px rgba(7,27,69,.75);backdrop-filter:blur(16px);
}
.ai-exp-sticky-result span{display:block;font-size:11px;text-transform:uppercase;letter-spacing:.08em;color:rgba(255,255,255,.65);font-weight:900;}
.ai-exp-sticky-result strong{display:block;font-size:15px;line-height:1.3;color:#fff;}
.ai-exp-sticky-result button{border:0;border-radius:15px;background:#fff;color:#071b45;min-height:46px;padding:0 16px;font:950 13px/1 'Plus Jakarta Sans',sans-serif;cursor:pointer;}
.ai-exp-confetti{position:fixed;left:50%;top:18%;z-index:9998;pointer-events:none;}
.ai-exp-confetti i{position:absolute;width:10px;height:16px;border-radius:5px;background:#0b5ed7;animation:aiExpConfetti 1.2s ease-out forwards;animation-delay:var(--d);}
.ai-exp-confetti i:nth-child(2n){background:#0f8a3a;}
.ai-exp-confetti i:nth-child(3n){background:#48a5ff;}
@keyframes aiExpConfetti{0%{transform:translate(0,0) rotate(0);opacity:0}18%{opacity:1}100%{transform:translate(var(--x),180px) rotate(260deg);opacity:0}}
.foto-quality-coach{
  margin-top:16px;padding:18px;border-radius:22px;border:1px solid #dfe8fb;background:linear-gradient(180deg,#fff,#f6fbff);
  box-shadow:0 16px 44px -36px rgba(7,27,69,.38);
}
.foto-qc-head{display:grid;grid-template-columns:44px minmax(0,1fr);gap:12px;align-items:start;}
.foto-qc-list{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:10px;margin-top:14px;}
.foto-qc-list div{display:grid;grid-template-columns:28px minmax(0,1fr);gap:9px;align-items:center;padding:10px;border-radius:14px;background:#fff;border:1px solid #e2e9f5;color:#475569;font-size:13px;font-weight:800;}
.foto-qc-list b{width:28px;height:28px;border-radius:10px;display:grid;place-items:center;color:#fff;font-size:13px;}
.foto-qc-list .is-ok b{background:#0f8a3a;}
.foto-qc-list .is-warn b{background:#e63742;}
.foto-qc-note{margin:12px 0 0;color:#64748b;font-size:13px;line-height:1.55;}
@media(max-width:980px){
  .ai-exp-command{grid-template-columns:auto minmax(0,1fr);}
  .ai-exp-command-actions{grid-column:1/-1;justify-content:flex-start;}
  .ai-exp-lab-grid{grid-template-columns:repeat(2,minmax(0,1fr));}
}
@media(max-width:760px){
  .ai-exp-command{grid-template-columns:1fr;padding:16px;border-radius:20px;}
  .ai-exp-command-orb{width:54px;height:54px;border-radius:20px;}
  .ai-exp-command-actions{display:grid;grid-template-columns:1fr;}
  .ai-exp-command-actions button{width:100%;}
  .ai-exp-mission-grid,.foto-qc-list,.ai-exp-lab-grid{grid-template-columns:1fr;}
  .ai-exp-sticky-result{display:flex;}
  body.diagnostic-result-mode{padding-bottom:84px;}
}
@media(max-width:520px){
  .ai-exp-command-top{display:block;}
  .ai-exp-command-top span{display:inline-flex;margin-top:8px;}
  .ai-exp-steps span{font-size:10px;}
  .ai-exp-result-lab{padding:18px;border-radius:20px;}
  .ai-exp-lab-actions{display:grid;grid-template-columns:1fr;}
  .ai-exp-lab-actions button{width:100%;}
}
@media print{
  .ai-exp-command,.ai-exp-sticky-result,.ai-exp-toast,.ai-exp-confetti,.odx-flow-panel,.odx-final,.odx-info,.odx-explain,footer{display:none!important;}
  .ai-exp-result-lab{break-inside:avoid;box-shadow:none!important;}
}

/* v8 result: preserve the loved cockpit + situation hero, then reduce everything into one clean decision path. */
.ai-result-clean-v8{display:grid;gap:18px;}
.ai-result-clean-v8 .ai-m2-primary-answer{position:relative;overflow:hidden;background:radial-gradient(circle at 96% 8%,rgba(11,94,215,.16),transparent 28%),linear-gradient(180deg,#fff,#f7fbff);}
.ai-m2-primary-answer .ai-m2-card-content>h3{font-size:clamp(24px,3vw,36px);letter-spacing:-.04em;color:#071b45;margin:8px 0 8px;}
.ai-m2-primary-line{display:grid;grid-template-columns:minmax(0,1fr) auto;gap:16px;align-items:center;border:1px solid #dfe8fb;background:#fff;border-radius:20px;padding:16px;margin:16px 0 12px;}
.ai-m2-primary-line small,.ai-m2-primary-price small{display:block;color:#64748b;font-size:12px;text-transform:uppercase;letter-spacing:.08em;font-weight:900;}
.ai-m2-primary-line strong{display:block;color:#071b45;font-size:24px;letter-spacing:-.03em;line-height:1.15;}
.ai-m2-primary-price{text-align:right;}
.ai-m2-primary-price span{display:block;color:#94a3b8;text-decoration:line-through;font-weight:800;font-size:13px;}
.ai-m2-primary-price strong{display:block;color:#0b5ed7;font-size:30px;letter-spacing:-.05em;}
.ai-m2-primary-components{margin:10px 0 16px;}
.ai-m2-quick-stats{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:12px;}
.ai-m2-quick-stats .ai-m2-metric{margin:0;}
.ai-m2-details-card{border:1px solid #dfe8fb;background:#fff;border-radius:22px;box-shadow:0 16px 48px -36px rgba(7,27,69,.3);overflow:hidden;}
.ai-m2-details-card>summary{list-style:none;cursor:pointer;display:flex;align-items:center;justify-content:space-between;gap:16px;padding:17px 20px;color:#071b45;font-weight:950;}
.ai-m2-details-card>summary::-webkit-details-marker{display:none;}
.ai-m2-details-card>summary span{font-size:12px;text-transform:uppercase;letter-spacing:.09em;color:#0b5ed7;}
.ai-m2-details-card>summary strong{font-size:17px;text-align:right;}
.ai-m2-details-card[open]>summary{border-bottom:1px solid #e6eef8;background:#f8fbff;}
.ai-m2-details-body{padding:18px 20px 20px;color:#475569;font-size:16px;line-height:1.6;}
.ai-m2-details-body .ai-m2-choice-card{box-shadow:none;margin:0;}
.ai-m2-pro-panel-inline .ai-exp-lab-grid{margin-bottom:4px;}
.ai-m2-pro-panel-inline .ai-exp-audit-lines{padding:4px 0 0;}
.ai-m2-pro-panel-inline .ai-exp-lab-actions{margin-top:14px;}
@media(max-width:860px){
  .ai-m2-primary-line{grid-template-columns:1fr;}
  .ai-m2-primary-price{text-align:left;}
  .ai-m2-quick-stats{grid-template-columns:repeat(2,minmax(0,1fr));}
  .ai-m2-details-card>summary{display:block;}
  .ai-m2-details-card>summary strong{display:block;text-align:left;margin-top:5px;}
}
@media(max-width:520px){
  .ai-m2-quick-stats{grid-template-columns:1fr;}
  .ai-m2-primary-line{padding:14px;border-radius:18px;}
  .ai-m2-primary-price strong{font-size:26px;}
}

/* v8 phone overflow guard verified at 360/390/414 widths. */
@media(max-width:860px){
  .odx-wrap,.odx-wrap.odx-workspace{width:calc(100vw - 36px)!important;max-width:calc(100vw - 36px)!important;margin-left:auto!important;margin-right:auto!important;}
  .odx-flow-panel,.odx-active-panel,.odx-ai-engine,.odx-live-note{width:100%!important;max-width:100%!important;min-width:0!important;}
  .odx-explain .odx-wrap,.odx-final .odx-wrap{width:100%!important;max-width:100%!important;margin-left:0!important;margin-right:0!important;}
  .odx-two-ai-benefits span{max-width:100%!important;min-width:0!important;overflow-wrap:anywhere;}
}
@media(max-width:860px){
  .ai-visual-legend,.ai-legend{overflow-x:visible!important;flex-wrap:wrap!important;max-width:100%!important;}
  .ai-visual-legend .ai-leg-item,.ai-legend .ai-leg-item{white-space:normal!important;min-width:0!important;}
}


/* v10 production result: diagnostic passport + visible professional handoff. */
.ai-result-command-v10{display:grid;gap:22px;width:100%;max-width:1120px;margin:0 auto;padding:0 0 24px;box-sizing:border-box;overflow:hidden}.ai-v10-situation{position:relative;overflow:hidden}.ai-v10-overline{display:inline-flex;align-items:center;gap:6px;font-size:11px;font-weight:900;letter-spacing:.12em;text-transform:uppercase;color:#9b6b22}.ai-v10-passport,.ai-v10-decision-studio,.ai-v10-guide,.ai-v10-pro-audit,.ai-v10-compare{position:relative;border:1px solid rgba(45,110,76,.14);border-radius:28px;background:linear-gradient(145deg,#fff 0%,#fffaf2 100%);box-shadow:0 24px 70px rgba(46,35,18,.08);padding:24px;box-sizing:border-box;overflow:hidden}.ai-v10-passport:before,.ai-v10-decision-studio:before,.ai-v10-pro-audit:before{content:"";position:absolute;inset:-90px -120px auto auto;width:240px;height:240px;border-radius:999px;background:radial-gradient(circle,rgba(206,160,84,.20),transparent 66%);pointer-events:none}.ai-v10-passport-head,.ai-v10-section-head{position:relative;display:grid;gap:8px;max-width:760px}.ai-v10-passport h3,.ai-v10-decision-studio h3,.ai-v10-guide h3,.ai-v10-pro-audit h3,.ai-v10-section-head h3{margin:0;font-size:clamp(22px,3vw,34px);line-height:1.05;color:#173d2b}.ai-v10-passport p,.ai-v10-decision-studio p,.ai-v10-guide p,.ai-v10-pro-audit p,.ai-v10-section-head p{margin:0;color:#56625c;font-size:16px;line-height:1.6}.ai-v10-action-row{position:relative;display:flex;gap:10px;flex-wrap:wrap;margin:18px 0}.ai-v10-action-row button,.ai-exp-lab-actions button{border:0;border-radius:999px;background:#173d2b;color:#fff;padding:11px 15px;font-weight:900;cursor:pointer;box-shadow:0 12px 28px rgba(23,61,43,.18)}.ai-v10-action-row button:nth-child(2),.ai-v10-action-row button:nth-child(3),.ai-exp-lab-actions button:nth-child(n+2){background:#fff;color:#173d2b;border:1px solid rgba(23,61,43,.16);box-shadow:none}.ai-v10-passport-grid{position:relative;display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:12px}.ai-v10-passport-card{min-width:0;background:rgba(255,255,255,.82);border:1px solid rgba(45,110,76,.12);border-radius:20px;padding:16px;display:grid;gap:6px;box-shadow:inset 0 1px 0 rgba(255,255,255,.75)}.ai-v10-passport-card span{font-size:11px;text-transform:uppercase;letter-spacing:.08em;font-weight:900;color:#8a6c38}.ai-v10-passport-card strong{font-size:18px;color:#173d2b;overflow-wrap:anywhere}.ai-v10-passport-card small{font-size:12px;color:#6d756f}.ai-v10-decision-studio{display:grid;grid-template-columns:minmax(0,1.1fr) minmax(280px,.9fr);gap:18px;align-items:stretch}.ai-v10-decision-copy{position:relative;display:grid;gap:14px;align-content:start}.ai-v10-price-band{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:10px}.ai-v10-price-band>div{background:#173d2b;color:#fff;border-radius:18px;padding:14px;display:grid;gap:3px}.ai-v10-price-band span{font-size:11px;letter-spacing:.08em;text-transform:uppercase;color:rgba(255,255,255,.70);font-weight:900}.ai-v10-price-band strong{font-size:22px}.ai-v10-price-band del{color:rgba(255,255,255,.62);font-size:18px}.ai-v10-material-chips{display:flex;gap:8px;flex-wrap:wrap}.ai-v10-material-chips span{background:#f4ead8;border:1px solid rgba(206,160,84,.28);color:#6e4d1f;border-radius:999px;padding:8px 11px;font-size:12px;font-weight:900}.ai-v10-primary-cta{display:inline-flex;align-items:center;justify-content:center;gap:9px;width:max-content;max-width:100%;border-radius:999px;background:linear-gradient(135deg,#2d6e4c,#173d2b);color:#fff;text-decoration:none;padding:14px 18px;font-weight:950;box-shadow:0 18px 34px rgba(45,110,76,.24)}.ai-v10-primary-cta svg{width:18px;height:18px;fill:none;stroke:currentColor;stroke-width:2}.ai-v10-proof-stack{position:relative;display:grid;gap:10px}.ai-v10-proof-stack>div{background:rgba(255,255,255,.84);border:1px solid rgba(45,110,76,.11);border-radius:20px;padding:16px}.ai-v10-proof-stack b{display:block;color:#173d2b;margin-bottom:5px}.ai-v10-proof-stack p{font-size:15px}.ai-v10-metrics{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:12px}.ai-v10-metrics .ai-m2-metric{min-width:0}.ai-v10-compare{display:grid;gap:16px}.ai-v10-choice-grid{grid-template-columns:repeat(2,minmax(0,1fr))!important}.ai-v10-guide{display:grid;gap:18px}.ai-v10-timeline{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:10px}.ai-v10-timeline div{background:#fff;border:1px solid rgba(45,110,76,.12);border-radius:18px;padding:14px;display:grid;gap:8px}.ai-v10-timeline b{display:grid;place-items:center;width:30px;height:30px;border-radius:999px;background:#173d2b;color:#fff}.ai-v10-timeline span{font-weight:850;color:#173d2b}.ai-v10-material-note{background:#f8f1e6;border-radius:16px;padding:14px;color:#6b5640!important}.ai-v10-pro-audit{display:grid;grid-template-columns:76px minmax(0,1fr);gap:18px;background:linear-gradient(145deg,#173d2b 0%,#245b40 100%);color:#fff}.ai-v10-pro-audit h3,.ai-v10-pro-audit p{color:#fff}.ai-v10-pro-audit p{opacity:.85}.ai-v10-pro-label{display:grid;place-items:center;width:64px;height:64px;border-radius:20px;background:#fff;color:#173d2b;font-weight:950;letter-spacing:.12em}.ai-v10-pro-body{display:grid;gap:12px}.ai-v10-pro-audit .ai-exp-audit-lines{background:rgba(255,255,255,.10);border:1px solid rgba(255,255,255,.16);border-radius:18px;padding:14px}.ai-v10-pro-audit .ai-exp-audit-lines p{margin:0 0 8px}.ai-v10-pro-audit .ai-exp-audit-lines p:last-child{margin-bottom:0}.ai-v10-pro-audit .ai-exp-lab-actions button{background:#fff;color:#173d2b}.ai-v10-pro-audit .ai-exp-lab-actions button:nth-child(n+2){background:rgba(255,255,255,.12);color:#fff;border-color:rgba(255,255,255,.22)}.ai-v10-bottom-actions{display:flex;gap:12px;align-items:center;justify-content:center;flex-wrap:wrap}.ai-v10-bottom-actions .ai-m2-reset-btn{margin:0}.ai-result-command-v10 .ai-m2-choice-card{max-width:100%;min-width:0}.ai-result-command-v10 .ai-m2-choice-card:before{right:0!important;top:0!important}.ai-result-command-v10 *{box-sizing:border-box}
@media(max-width:1080px){.ai-v10-passport-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.ai-v10-decision-studio{grid-template-columns:1fr}.ai-v10-metrics{grid-template-columns:repeat(2,minmax(0,1fr))}.ai-v10-timeline{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media(max-width:760px){.ai-result-command-v10{gap:16px;max-width:100%;padding-bottom:86px}.ai-v10-passport,.ai-v10-decision-studio,.ai-v10-guide,.ai-v10-pro-audit,.ai-v10-compare{border-radius:22px;padding:18px;width:100%;max-width:100%}.ai-v10-passport-grid,.ai-v10-price-band,.ai-v10-metrics,.ai-v10-timeline,.ai-v10-choice-grid{grid-template-columns:1fr!important}.ai-v10-pro-audit{grid-template-columns:1fr}.ai-v10-pro-label{width:52px;height:52px;border-radius:16px}.ai-v10-action-row{display:grid;grid-template-columns:1fr}.ai-v10-action-row button,.ai-exp-lab-actions button{width:100%}.ai-v10-primary-cta{width:100%;white-space:normal;text-align:center}.ai-v10-price-band strong{font-size:20px}.ai-v10-bottom-actions{display:grid;grid-template-columns:1fr}.ai-v10-proof-stack>div,.ai-v10-passport-card,.ai-v10-timeline div{padding:14px}.ai-exp-command-orb i{inset:0!important}.ai-v10-metrics .ai-m2-metric{grid-template-columns:44px minmax(0,1fr)!important;padding:14px!important}.ai-v10-metrics .ai-m2-metric-ico{width:44px!important;height:44px!important}.ai-v10-metrics .ai-m2-metric-value{font-size:16px!important;overflow-wrap:anywhere!important;word-break:normal!important}}
@media(max-width:430px){.ai-v10-passport,.ai-v10-decision-studio,.ai-v10-guide,.ai-v10-pro-audit,.ai-v10-compare{padding:16px;border-radius:20px}.ai-v10-passport h3,.ai-v10-decision-studio h3,.ai-v10-guide h3,.ai-v10-pro-audit h3,.ai-v10-section-head h3{font-size:22px}.ai-v10-passport-card strong{font-size:16px}.ai-v10-price-band>div{padding:12px}.ai-v10-material-chips span{max-width:100%;overflow-wrap:anywhere}.ai-v10-pro-audit .ai-exp-lab-actions{display:grid;grid-template-columns:1fr;gap:8px}}
@media print{.ai-v10-action-row,.ai-v10-bottom-actions,.ai-exp-sticky-result{display:none!important}.ai-v10-passport,.ai-v10-decision-studio,.ai-v10-guide,.ai-v10-pro-audit,.ai-v10-compare{box-shadow:none;break-inside:avoid}.ai-v10-pro-audit{background:#fff;color:#111;border-color:#111}.ai-v10-pro-audit h3,.ai-v10-pro-audit p{color:#111}.ai-v10-pro-label{border:1px solid #111}}

.ai-m2-metric-text{display:grid;gap:5px;min-width:0;}
.ai-v10-metrics .ai-m2-metric-text{min-width:0;}
@media(max-width:760px){.ai-v10-metrics .ai-m2-metric-value{white-space:normal;overflow-wrap:normal!important;word-break:normal!important;}.ai-v10-metrics .ai-m2-metric-label,.ai-v10-metrics .ai-m2-metric-value{grid-column:auto!important;}}

/* =========================================================
   v13 Denticor AI Result Studio — production money page
   No green palette, no overlay proof stack, no empty desktop holes.
   ========================================================= */
.ai-result-showcase-v13{
  --v13-blue:#0B5ED7;
  --v13-blue-2:#1A7CFF;
  --v13-navy:#071B45;
  --v13-navy-2:#0F2E68;
  --v13-ink:#0B1F45;
  --v13-muted:#52657F;
  --v13-soft:#F4F8FF;
  --v13-soft-2:#EAF2FF;
  --v13-line:#DCE8F8;
  --v13-gold:#B97818;
  --v13-gold-soft:#FFF3DC;
  display:grid;
  gap:22px;
  width:100%;
  max-width:1220px;
  margin:0 auto;
  padding:0 0 26px;
  color:var(--v13-ink);
  overflow:visible!important;
}
.ai-result-showcase-v13,
.ai-result-showcase-v13 *{box-sizing:border-box;min-width:0;}
.ai-result-showcase-v13 svg{width:20px;height:20px;fill:none;stroke:currentColor;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;flex:0 0 auto;}
.ai-result-showcase-v13 a{text-decoration:none;}
.ai-result-showcase-v13 button,
.ai-result-showcase-v13 a{font-family:inherit;}
.ai-v13-situation{position:relative;overflow:hidden!important;box-shadow:0 28px 70px rgba(11,54,141,.18)!important;}
.ai-v13-situation .ai-m2-hero-summary{max-width:760px;}
.ai-v13-track{
  display:grid;
  grid-template-columns:minmax(0,1fr) auto;
  gap:16px;
  align-items:center;
  border:1px solid var(--v13-line);
  background:rgba(255,255,255,.92);
  border-radius:24px;
  padding:14px;
  box-shadow:0 16px 46px rgba(12,42,92,.08);
}
.ai-v13-steps{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:8px;}
.ai-v13-steps span{display:flex;align-items:center;justify-content:center;min-height:42px;border-radius:14px;background:var(--v13-soft);border:1px solid var(--v13-line);color:var(--v13-muted);font-size:13px;font-weight:950;white-space:nowrap;}
.ai-v13-steps span.done{background:#EDF6FF;color:var(--v13-blue);border-color:#C7DFFF;}
.ai-v13-steps span.active{background:linear-gradient(135deg,var(--v13-blue),var(--v13-blue-2));color:#fff;border-color:transparent;box-shadow:0 12px 24px rgba(11,94,215,.22);}
.ai-v13-track-actions{display:flex;gap:8px;flex-wrap:wrap;justify-content:flex-end;}
.ai-v13-track-actions button,
.ai-v13-play-actions button,
.ai-v13-pro-actions button{border:1px solid #CFE0F7;background:#fff;color:var(--v13-navy);border-radius:999px;min-height:42px;padding:0 15px;font-weight:950;font-size:13px;cursor:pointer;box-shadow:0 8px 20px rgba(8,35,82,.06);}
.ai-v13-track-actions button:first-child,
.ai-v13-play-actions button:first-child{background:var(--v13-navy);border-color:var(--v13-navy);color:#fff;}
.ai-v13-plan,
.ai-v13-passport,
.ai-v13-why,
.ai-v13-play,
.ai-v13-choices,
.ai-v13-pro-audit{
  position:relative;
  border:1px solid var(--v13-line);
  border-radius:30px;
  background:linear-gradient(180deg,#fff 0%,#FBFDFF 100%);
  box-shadow:0 24px 72px rgba(11,35,83,.09);
  padding:clamp(20px,2.6vw,32px);
  overflow:visible;
}
.ai-v13-plan:before,
.ai-v13-passport:before,
.ai-v13-play:before{content:"";position:absolute;inset:0;border-radius:inherit;pointer-events:none;background:radial-gradient(circle at 88% -18%,rgba(26,124,255,.14),transparent 32%),radial-gradient(circle at 0% 110%,rgba(185,120,24,.12),transparent 34%);}
.ai-v13-plan>* , .ai-v13-passport>* , .ai-v13-play>*{position:relative;}
.ai-v13-plan-head,
.ai-v13-section-head{display:grid;gap:8px;max-width:820px;margin-bottom:20px;}
.ai-v13-plan-head span,
.ai-v13-section-head span,
.ai-v13-why-copy>span,
.ai-v13-guide-copy>span,
.ai-v13-pro-copy>span{font-size:11px;line-height:1.15;font-weight:950;letter-spacing:.13em;text-transform:uppercase;color:var(--v13-gold);}
.ai-v13-plan-head h3,
.ai-v13-section-head h3,
.ai-v13-why-copy h3,
.ai-v13-pro-copy h3{margin:0;color:var(--v13-navy);font-size:clamp(25px,3.2vw,42px);line-height:1.02;letter-spacing:-.035em;}
.ai-v13-plan-head p,
.ai-v13-section-head p,
.ai-v13-why-copy p,
.ai-v13-guide-copy p,
.ai-v13-pro-copy p{margin:0;color:var(--v13-muted);font-size:16.5px;line-height:1.65;}
.ai-v13-plan-grid{display:grid;grid-template-columns:minmax(0,1.14fr) minmax(340px,.86fr);gap:18px;align-items:stretch;}
.ai-v13-product-main{display:grid;grid-template-columns:minmax(235px,.88fr) minmax(0,1.12fr);gap:18px;background:#fff;border:1px solid #DCE8F8;border-radius:26px;padding:16px;box-shadow:0 18px 50px rgba(8,35,82,.07);}
.ai-v13-product-visual{position:relative;display:flex;align-items:center;justify-content:center;min-height:310px;border-radius:22px;background:linear-gradient(135deg,#F3F8FF,#E7F1FF);overflow:hidden;border:1px solid #D7E6FA;}
.ai-v13-product-visual:before{content:"";position:absolute;width:78%;aspect-ratio:1;border-radius:999px;background:radial-gradient(circle,rgba(26,124,255,.18),transparent 68%);}
.ai-v13-product-visual img{position:relative;z-index:1;display:block;width:100%;height:100%;max-height:320px;object-fit:contain;padding:24px;filter:drop-shadow(0 22px 34px rgba(7,27,69,.18));}
.ai-v13-product-visual span,
.ai-v13-guide-image span{position:absolute;z-index:2;left:14px;bottom:14px;border-radius:999px;background:rgba(7,27,69,.86);color:#fff;padding:8px 12px;font-size:12px;font-weight:950;box-shadow:0 8px 24px rgba(0,0,0,.14);}
.ai-v13-product-copy{display:grid;gap:12px;align-content:center;padding:4px;}
.ai-v13-product-copy h4,
.ai-v13-guide-copy h4,
.ai-v13-choice-card h4{margin:0;color:var(--v13-navy);font-size:clamp(25px,3vw,38px);line-height:1;letter-spacing:-.035em;}
.ai-v13-product-copy p,
.ai-v13-choice-card p{margin:0;color:var(--v13-muted);font-size:16px;line-height:1.62;}
.ai-v13-pill{display:inline-flex;width:max-content;max-width:100%;border-radius:999px;background:var(--v13-gold-soft);color:#875511;border:1px solid rgba(185,120,24,.22);padding:7px 10px;font-size:12px;font-weight:950;}
.ai-v13-price-line{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:10px;margin-top:2px;}
.ai-v13-price-line>div{border:1px solid #DCE8F8;background:#F7FAFF;border-radius:16px;padding:12px;display:grid;gap:3px;}
.ai-v13-price-line>div:nth-child(2){background:linear-gradient(135deg,var(--v13-navy),var(--v13-navy-2));border-color:var(--v13-navy);color:#fff;box-shadow:0 12px 24px rgba(7,27,69,.18);}
.ai-v13-price-line span{font-size:10px;text-transform:uppercase;letter-spacing:.1em;color:var(--v13-muted);font-weight:950;}
.ai-v13-price-line>div:nth-child(2) span{color:rgba(255,255,255,.72);}
.ai-v13-price-line strong{font-size:clamp(18px,2vw,25px);line-height:1;color:var(--v13-blue);white-space:nowrap;}
.ai-v13-price-line>div:nth-child(2) strong{color:#fff;}
.ai-v13-price-line del{color:#8A98AC;font-size:19px;font-weight:850;}
.ai-v13-mini-chips{display:flex;flex-wrap:wrap;gap:8px;}
.ai-v13-mini-chips span{border:1px solid #D8E5F6;background:#fff;color:var(--v13-navy);border-radius:999px;padding:7px 10px;font-size:12px;font-weight:900;}
.ai-v13-cta{display:inline-flex;align-items:center;justify-content:center;gap:9px;min-height:52px;width:max-content;max-width:100%;border-radius:999px;background:linear-gradient(135deg,var(--v13-blue),var(--v13-blue-2));color:#fff!important;padding:0 20px;font-size:16px;font-weight:950;box-shadow:0 18px 34px rgba(11,94,215,.26);text-align:center;white-space:normal;}
.ai-v13-cta:hover{transform:translateY(-1px);box-shadow:0 22px 42px rgba(11,94,215,.32);}
.ai-v13-guide-preview{display:grid;background:#fff;border:1px solid #DCE8F8;border-radius:26px;overflow:hidden;box-shadow:0 18px 50px rgba(8,35,82,.07);}
.ai-v13-guide-image{position:relative;min-height:260px;background:var(--v13-soft);overflow:hidden;}
.ai-v13-guide-image img{display:block;width:100%;height:100%;min-height:260px;object-fit:cover;}
.ai-v13-guide-copy{display:grid;gap:8px;padding:18px;align-content:start;}
.ai-v13-guide-copy h4{font-size:22px;line-height:1.1;}
.ai-v13-passport-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:12px;}
.ai-v13-passport-card{background:#fff;border:1px solid #DCE8F8;border-radius:20px;padding:17px;display:grid;gap:7px;min-height:146px;box-shadow:inset 0 1px 0 rgba(255,255,255,.9);}
.ai-v13-passport-card span{font-size:10px;text-transform:uppercase;letter-spacing:.1em;color:var(--v13-gold);font-weight:950;}
.ai-v13-passport-card strong{font-size:clamp(17px,1.8vw,22px);line-height:1.28;color:var(--v13-navy);overflow-wrap:anywhere;word-break:normal;}
.ai-v13-passport-card small{font-size:12px;color:var(--v13-muted);line-height:1.45;overflow-wrap:anywhere;}
.ai-v13-why{display:grid;grid-template-columns:minmax(0,1fr) minmax(330px,.72fr);gap:20px;align-items:stretch;}
.ai-v13-why-copy{display:grid;gap:12px;align-content:center;}
.ai-v13-metrics{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px;}
.ai-v13-metrics>div{display:grid;grid-template-columns:46px minmax(0,1fr);gap:10px;align-items:center;background:#fff;border:1px solid #DCE8F8;border-radius:18px;padding:14px;box-shadow:0 10px 28px rgba(8,35,82,.05);}
.ai-v13-metrics svg{width:46px;height:46px;padding:11px;border-radius:15px;background:#ECF5FF;color:var(--v13-blue);stroke-width:2;}
.ai-v13-metrics span{display:block;font-size:12px;color:var(--v13-muted);font-weight:850;}
.ai-v13-metrics strong{display:block;margin-top:2px;color:var(--v13-blue);font-size:19px;font-weight:950;overflow-wrap:anywhere;}
.ai-v13-play-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:12px;}
.ai-v13-play-grid label{display:grid;grid-template-columns:auto minmax(0,1fr);gap:10px;align-items:start;background:#fff;border:1px solid #DCE8F8;border-radius:20px;padding:16px;box-shadow:0 10px 30px rgba(8,35,82,.05);cursor:pointer;}
.ai-v13-play-grid input{appearance:none;width:25px;height:25px;border-radius:999px;border:2px solid #BCD4F2;margin:0;position:relative;background:#fff;}
.ai-v13-play-grid input:checked{background:var(--v13-blue);border-color:var(--v13-blue);}
.ai-v13-play-grid input:checked:after{content:"✓";position:absolute;inset:0;display:grid;place-items:center;color:#fff;font-weight:950;font-size:13px;}
.ai-v13-play-grid b{display:block;color:var(--v13-navy);font-size:16px;line-height:1.25;}
.ai-v13-play-grid small{display:block;color:var(--v13-muted);font-size:12px;line-height:1.45;margin-top:4px;overflow-wrap:anywhere;}
.ai-v13-play-actions{display:flex;gap:10px;flex-wrap:wrap;margin-top:14px;}
.ai-v13-choices{display:grid;gap:4px;}
.ai-v13-choice-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px;}
.ai-v13-choice-card{display:grid;gap:12px;background:#fff;border:1px solid #DCE8F8;border-radius:24px;padding:20px;box-shadow:0 16px 42px rgba(8,35,82,.06);}
.ai-v13-choice-card.is-primary{border-color:#BBD5FF;background:linear-gradient(180deg,#fff,#F6FAFF);}
.ai-v13-choice-tag{width:max-content;max-width:100%;border-radius:999px;background:#EDF6FF;color:var(--v13-blue);padding:7px 10px;font-size:11px;font-weight:950;text-transform:uppercase;letter-spacing:.08em;}
.ai-v13-choice-card.is-alt .ai-v13-choice-tag{background:var(--v13-gold-soft);color:#875511;}
.ai-v13-choice-price{display:grid;grid-template-columns:auto auto minmax(0,1fr);gap:8px 12px;align-items:end;border-top:1px solid #E4ECF7;padding-top:12px;}
.ai-v13-choice-price del{color:#8996A9;font-weight:850;}
.ai-v13-choice-price strong{color:var(--v13-blue);font-size:24px;line-height:1;}
.ai-v13-choice-price small{color:var(--v13-muted);font-weight:850;align-self:center;}
.ai-v13-choice-cta{display:flex;align-items:center;justify-content:center;min-height:48px;border-radius:999px;background:var(--v13-navy);color:#fff!important;font-weight:950;text-align:center;padding:0 14px;}
.ai-v13-choice-card.is-alt .ai-v13-choice-cta{background:#fff;color:var(--v13-navy)!important;border:1px solid #CFE0F7;}
.ai-v13-alt-note{margin:10px 0 0;color:var(--v13-muted);font-size:13px;font-weight:850;}
.ai-v13-pro-audit{display:grid;grid-template-columns:88px minmax(0,1fr);gap:18px;background:linear-gradient(135deg,#071B45,#0F2E68 60%,#123D86);color:#fff;border-color:rgba(255,255,255,.12);box-shadow:0 28px 80px rgba(7,27,69,.23);}
.ai-v13-pro-mark{display:grid;place-items:center;width:72px;height:72px;border-radius:24px;background:#fff;color:var(--v13-blue);font-size:20px;font-weight:950;letter-spacing:.12em;box-shadow:0 16px 36px rgba(0,0,0,.16);}
.ai-v13-pro-copy{display:grid;gap:9px;}
.ai-v13-pro-copy span{color:#BFD8FF;}
.ai-v13-pro-copy h3,
.ai-v13-pro-copy p{color:#fff;}
.ai-v13-pro-copy p{opacity:.86;}
.ai-v13-pro-actions{display:flex;gap:9px;flex-wrap:wrap;margin-top:4px;}
.ai-v13-pro-actions button{background:rgba(255,255,255,.12);border-color:rgba(255,255,255,.22);color:#fff;box-shadow:none;}
.ai-v13-pro-actions button:first-child{background:#fff;color:var(--v13-navy);border-color:#fff;}
.ai-v13-bottom-actions{display:flex;align-items:center;justify-content:center;gap:12px;flex-wrap:wrap;}
.ai-v13-reset{display:inline-flex;align-items:center;justify-content:center;gap:9px;min-height:52px;border-radius:999px;border:1px solid #CFE0F7;background:#fff;color:var(--v13-navy);padding:0 18px;font-weight:950;cursor:pointer;}
.ai-result-showcase-v13 + .ai-exp-result-lab{display:none!important;}
body .ai-exp-sticky-result{background:linear-gradient(135deg,#071B45,#0B5ED7)!important;box-shadow:0 16px 40px rgba(7,27,69,.25)!important;}
body .ai-exp-sticky-result button{color:#071B45!important;}
@media(max-width:1180px){
  .ai-v13-plan-grid{grid-template-columns:1fr;}
  .ai-v13-product-main{grid-template-columns:minmax(230px,.65fr) minmax(0,1fr);}
}
@media(max-width:980px){
  .ai-v13-track{grid-template-columns:1fr;}
  .ai-v13-track-actions{justify-content:flex-start;}
  .ai-v13-passport-grid{grid-template-columns:repeat(2,minmax(0,1fr));}
  .ai-v13-why{grid-template-columns:1fr;}
  .ai-v13-choice-grid{grid-template-columns:1fr;}
}
@media(max-width:760px){
  .ai-result-showcase-v13{gap:16px;max-width:100%;padding-bottom:92px;}
  .ai-v13-plan,.ai-v13-passport,.ai-v13-why,.ai-v13-play,.ai-v13-choices,.ai-v13-pro-audit{border-radius:22px;padding:18px;}
  .ai-v13-steps,.ai-v13-track-actions,.ai-v13-product-main,.ai-v13-passport-grid,.ai-v13-metrics,.ai-v13-play-grid{grid-template-columns:1fr;}
  .ai-v13-steps span{justify-content:flex-start;padding-left:14px;}
  .ai-v13-track-actions button,.ai-v13-play-actions button,.ai-v13-pro-actions button{width:100%;}
  .ai-v13-product-visual{min-height:230px;}
  .ai-v13-product-visual img{max-height:250px;padding:18px;}
  .ai-v13-price-line{grid-template-columns:1fr;}
  .ai-v13-cta,.ai-v13-choice-cta,.ai-v13-reset{width:100%;}
  .ai-v13-guide-image,.ai-v13-guide-image img{min-height:220px;}
  .ai-v13-pro-audit{grid-template-columns:1fr;}
  .ai-v13-pro-mark{width:58px;height:58px;border-radius:18px;font-size:17px;}
  .ai-v13-choice-price{grid-template-columns:1fr;align-items:start;}
  .ai-v13-plan-head h3,.ai-v13-section-head h3,.ai-v13-why-copy h3,.ai-v13-pro-copy h3{font-size:26px;}
  .ai-v13-product-copy h4{font-size:30px;}
}
@media(max-width:430px){
  .ai-v13-plan,.ai-v13-passport,.ai-v13-why,.ai-v13-play,.ai-v13-choices,.ai-v13-pro-audit{padding:16px;border-radius:20px;}
  .ai-v13-track{padding:10px;border-radius:18px;}
  .ai-v13-product-main,.ai-v13-guide-preview,.ai-v13-choice-card{border-radius:20px;padding:13px;}
  .ai-v13-guide-preview{padding:0;}
  .ai-v13-guide-copy{padding:15px;}
  .ai-v13-passport-card,.ai-v13-play-grid label{padding:14px;}
  .ai-v13-price-line strong{font-size:22px;}
  .ai-v13-metrics>div{grid-template-columns:42px minmax(0,1fr);padding:12px;}
  .ai-v13-metrics svg{width:42px;height:42px;}
}
@media print{
  .ai-v13-track-actions,.ai-v13-play-actions,.ai-v13-bottom-actions,.ai-exp-sticky-result{display:none!important;}
  .ai-result-showcase-v13{max-width:100%;padding:0;color:#111;}
  .ai-v13-plan,.ai-v13-passport,.ai-v13-why,.ai-v13-play,.ai-v13-choices,.ai-v13-pro-audit{box-shadow:none!important;break-inside:avoid;background:#fff!important;color:#111!important;border-color:#999!important;}
  .ai-v13-pro-copy h3,.ai-v13-pro-copy p{color:#111!important;}
}

/* v13 photo ROI area selector — visible before upload, blue palette */
#foto-diag .foto-area-panel{background:linear-gradient(135deg,#F5F9FF,#fff);border:1px solid #DCE8F8;border-radius:22px;padding:18px;margin:0 0 16px;text-align:left;box-shadow:0 14px 36px rgba(8,35,82,.06)}
#foto-diag .foto-area-title{font-size:17px;font-weight:950;color:#071B45;margin-bottom:6px}
#foto-diag .foto-area-sub{font-size:13px;color:#52657F;line-height:1.55;margin-bottom:12px}
#foto-diag .foto-area-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:10px}
#foto-diag .foto-area-btn{border:1px solid #DCE8F8;background:#fff;border-radius:16px;padding:13px 12px;text-align:left;cursor:pointer;font-family:inherit;font-weight:950;color:#071B45;transition:.18s;display:flex;align-items:center;justify-content:space-between;gap:9px;box-shadow:0 8px 20px rgba(8,35,82,.04)}
#foto-diag .foto-area-btn span{font-size:12px;font-weight:800;color:#52657F;display:block;margin-top:3px;line-height:1.35}
#foto-diag .foto-area-btn:after{content:"";width:18px;height:18px;border:2px solid #BCD4F2;border-radius:50%;flex:0 0 auto}
#foto-diag .foto-area-btn.active{border-color:#0B5ED7;background:#EDF6FF;box-shadow:0 12px 28px rgba(11,94,215,.12)}
#foto-diag .foto-area-btn.active:after{background:#0B5ED7;border-color:#0B5ED7;box-shadow:inset 0 0 0 4px #fff}
@media(max-width:560px){#foto-diag .foto-area-grid{grid-template-columns:1fr}#foto-diag .foto-area-btn{padding:12px}}

/* v14 hotfix: result studio must not inherit old two-column Mockup-2 grid.
   This fixes desktop text squeezing / overlap and removes blind empty columns. */
body.diagnostic-result-mode .ai-result-showcase-v13{
  display:grid!important;
  grid-template-columns:1fr!important;
  grid-auto-flow:row!important;
  align-items:stretch!important;
  width:100%!important;
  max-width:1220px!important;
  margin-inline:auto!important;
  gap:22px!important;
  overflow:visible!important;
}
body.diagnostic-result-mode .ai-result-showcase-v13 > *{
  grid-column:1 / -1!important;
  width:100%!important;
  max-width:100%!important;
}
body.diagnostic-result-mode .ai-result-showcase-v13 .ai-v13-plan-grid{
  display:grid!important;
  grid-template-columns:minmax(0,1.08fr) minmax(320px,.92fr)!important;
  gap:18px!important;
}
body.diagnostic-result-mode .ai-result-showcase-v13 .ai-v13-product-main{
  width:100%!important;
  min-width:0!important;
  grid-template-columns:minmax(220px,.82fr) minmax(0,1.18fr)!important;
}
body.diagnostic-result-mode .ai-result-showcase-v13 .ai-v13-why{
  grid-template-columns:minmax(0,1fr) minmax(320px,.72fr)!important;
}
body.diagnostic-result-mode .ai-result-showcase-v13 .ai-v13-pro-audit{
  grid-template-columns:88px minmax(0,1fr)!important;
}
@media(max-width:1180px){
  body.diagnostic-result-mode .ai-result-showcase-v13 .ai-v13-plan-grid{
    grid-template-columns:1fr!important;
  }
  body.diagnostic-result-mode .ai-result-showcase-v13 .ai-v13-product-main{
    grid-template-columns:minmax(220px,.65fr) minmax(0,1fr)!important;
  }
}
@media(max-width:980px){
  body.diagnostic-result-mode .ai-result-showcase-v13 .ai-v13-why{
    grid-template-columns:1fr!important;
  }
}
@media(max-width:760px){
  body.diagnostic-result-mode .ai-result-showcase-v13{
    max-width:100%!important;
    gap:16px!important;
    padding-bottom:92px!important;
  }
  body.diagnostic-result-mode .ai-result-showcase-v13 .ai-v13-product-main,
  body.diagnostic-result-mode .ai-result-showcase-v13 .ai-v13-pro-audit{
    grid-template-columns:1fr!important;
  }
}

/* =========================================================
   v14 Denticor AI Result Studio — money page patch
   Clean blue/navy result, guide visual, no overlapping cards.
   ========================================================= */
.ai-result-showcase-v14{
  --v14-blue:#0B5ED7;
  --v14-blue-2:#4966FF;
  --v14-navy:#071B45;
  --v14-ink:#0B1F45;
  --v14-muted:#52657F;
  --v14-soft:#F5F8FF;
  --v14-soft-2:#EAF2FF;
  --v14-line:#DCE8F8;
  --v14-gold:#B97818;
  --v14-gold-soft:#FFF3DC;
  display:grid!important;
  grid-template-columns:1fr!important;
  gap:clamp(16px,2vw,24px)!important;
  width:100%!important;
  max-width:1180px!important;
  margin:0 auto!important;
  padding:0 0 28px!important;
  color:var(--v14-ink);
  overflow:visible!important;
}
.ai-result-showcase-v14,
.ai-result-showcase-v14 *{box-sizing:border-box;min-width:0;}
.ai-result-showcase-v14 a{text-decoration:none;}
.ai-result-showcase-v14 button,
.ai-result-showcase-v14 a{font-family:inherit;}
.ai-result-showcase-v14 svg{width:20px;height:20px;fill:none;stroke:currentColor;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;flex:0 0 auto;}
.ai-result-showcase-v14 > *{grid-column:1 / -1!important;width:100%;max-width:100%;}
.ai-result-showcase-v14 + .ai-exp-result-lab{display:none!important;}
.ai-v14-situation{position:relative;overflow:hidden!important;box-shadow:0 28px 78px rgba(7,27,69,.18)!important;}
.ai-v14-situation .ai-m2-hero-summary{max-width:780px;}
.ai-v14-command{
  display:grid;
  grid-template-columns:minmax(0,1fr) auto;
  align-items:center;
  gap:14px;
  padding:12px;
  border:1px solid var(--v14-line);
  border-radius:24px;
  background:rgba(255,255,255,.94);
  box-shadow:0 16px 46px rgba(12,42,92,.08);
  backdrop-filter:blur(10px);
}
.ai-v14-steps{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:8px;}
.ai-v14-steps span{display:flex;align-items:center;justify-content:center;min-height:40px;padding:0 10px;border-radius:13px;background:var(--v14-soft);border:1px solid var(--v14-line);color:var(--v14-muted);font-size:12px;font-weight:950;white-space:nowrap;}
.ai-v14-steps span.done{background:#EDF6FF;color:var(--v14-blue);border-color:#C7DFFF;}
.ai-v14-steps span.active{background:linear-gradient(135deg,var(--v14-blue),var(--v14-blue-2));color:#fff;border-color:transparent;box-shadow:0 12px 24px rgba(11,94,215,.22);}
.ai-v14-command-actions{display:flex;gap:8px;justify-content:flex-end;flex-wrap:wrap;}
.ai-v14-command-actions button,
.ai-v14-play-actions button,
.ai-v14-pro-actions button{border:1px solid #CFE0F7;background:#fff;color:var(--v14-navy);border-radius:999px;min-height:40px;padding:0 15px;font-weight:950;font-size:12.5px;cursor:pointer;box-shadow:0 8px 20px rgba(8,35,82,.06);}
.ai-v14-command-actions button:first-child,
.ai-v14-play-actions button:first-child{background:var(--v14-navy);border-color:var(--v14-navy);color:#fff;}
.ai-v14-plan,
.ai-v14-why,
.ai-v14-play,
.ai-v14-compare,
.ai-v14-pro{
  position:relative;
  overflow:hidden;
  border:1px solid var(--v14-line);
  border-radius:30px;
  background:linear-gradient(145deg,#fff 0%,#F8FBFF 100%);
  box-shadow:0 24px 70px rgba(8,35,82,.08);
  padding:clamp(18px,2.4vw,28px);
}
.ai-v14-plan:before,.ai-v14-play:before{content:"";position:absolute;inset:-80px -110px auto auto;width:240px;height:240px;border-radius:999px;background:radial-gradient(circle,rgba(11,94,215,.14),transparent 68%);pointer-events:none;}
.ai-v14-plan-head,
.ai-v14-section-head{position:relative;display:flex;align-items:flex-start;justify-content:space-between;gap:18px;margin-bottom:22px;}
.ai-v14-plan-head>div,.ai-v14-section-head{max-width:760px;}
.ai-v14-plan-head span,
.ai-v14-section-head span,
.ai-v14-why-copy>span,
.ai-v14-guide-copy>span,
.ai-v14-pro-copy>span{display:inline-flex;width:max-content;max-width:100%;border-radius:999px;background:#EDF6FF;color:var(--v14-blue);padding:7px 10px;font-size:10px;font-weight:950;letter-spacing:.11em;text-transform:uppercase;}
.ai-v14-plan-head h3,
.ai-v14-section-head h3,
.ai-v14-why-copy h3,
.ai-v14-pro-copy h3{margin:8px 0 0;color:var(--v14-navy);font-size:clamp(28px,3.4vw,46px);line-height:.98;letter-spacing:-.045em;}
.ai-v14-plan-head p,
.ai-v14-section-head p,
.ai-v14-why-copy p,
.ai-v14-guide-copy p,
.ai-v14-pro-copy p{margin:9px 0 0;color:var(--v14-muted);font-size:16px;line-height:1.65;}
.ai-v14-plan-head aside{flex:0 0 auto;display:grid;gap:4px;min-width:220px;border:1px solid #DCE8F8;background:#fff;border-radius:20px;padding:14px 16px;box-shadow:0 12px 32px rgba(8,35,82,.06);}
.ai-v14-plan-head aside span{background:transparent;color:var(--v14-muted);padding:0;letter-spacing:.08em;}
.ai-v14-plan-head aside strong{color:var(--v14-navy);font-size:19px;line-height:1.2;overflow-wrap:anywhere;}
.ai-v14-plan-head aside small{color:var(--v14-muted);font-size:12px;}
.ai-v14-plan-grid{position:relative;display:grid!important;grid-template-columns:minmax(0,1.25fr) minmax(320px,.75fr)!important;gap:18px!important;align-items:stretch;}
.ai-v14-product-card{display:grid;grid-template-columns:minmax(230px,.78fr) minmax(0,1.22fr);gap:18px;border:1px solid #DCE8F8;background:#fff;border-radius:26px;padding:16px;box-shadow:0 18px 54px rgba(8,35,82,.07);overflow:hidden;}
.ai-v14-product-visual{position:relative;display:flex;align-items:center;justify-content:center;min-height:310px;border-radius:22px;background:linear-gradient(135deg,#EEF5FF 0%,#DCEBFF 100%);border:1px solid #D7E6FA;overflow:hidden;}
.ai-v14-product-visual:before{content:"";position:absolute;width:82%;aspect-ratio:1;border-radius:999px;background:radial-gradient(circle,rgba(11,94,215,.16),transparent 70%);}
.ai-v14-product-visual img{position:relative;z-index:1;display:block;width:92%;height:92%;max-height:285px;object-fit:contain;padding:16px;filter:drop-shadow(0 24px 34px rgba(7,27,69,.18));}
.ai-v14-product-visual em,
.ai-v14-guide-image em{position:absolute;left:14px;bottom:14px;z-index:2;font-style:normal;border-radius:999px;background:rgba(7,27,69,.88);color:#fff;padding:8px 12px;font-size:11px;font-weight:950;box-shadow:0 8px 24px rgba(0,0,0,.14);}
.ai-v14-product-copy{display:grid;gap:12px;align-content:center;padding:4px;}
.ai-v14-pill{display:inline-flex;width:max-content;max-width:100%;border-radius:999px;background:#EDF6FF;color:var(--v14-blue);padding:8px 10px;font-size:11px;font-weight:950;letter-spacing:.06em;text-transform:uppercase;}
.ai-v14-product-copy h4,.ai-v14-choice-card h4,.ai-v14-guide-copy h4{margin:0;color:var(--v14-navy);font-size:clamp(30px,4vw,48px);line-height:.96;letter-spacing:-.05em;}
.ai-v14-product-copy p,.ai-v14-choice-card p{margin:0;color:var(--v14-muted);font-size:16px;line-height:1.62;}
.ai-v14-price-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:10px;}
.ai-v14-price-grid>div{border:1px solid #DCE8F8;background:#F7FAFF;border-radius:16px;padding:12px;display:grid;gap:3px;}
.ai-v14-price-grid>div.hot{background:linear-gradient(135deg,var(--v14-blue),var(--v14-blue-2));border-color:transparent;color:#fff;box-shadow:0 14px 28px rgba(11,94,215,.22);}
.ai-v14-price-grid span{font-size:9.5px;text-transform:uppercase;letter-spacing:.1em;color:var(--v14-muted);font-weight:950;}
.ai-v14-price-grid>div.hot span{color:rgba(255,255,255,.75);}
.ai-v14-price-grid strong{font-size:clamp(18px,2vw,25px);line-height:1;color:var(--v14-blue);white-space:nowrap;}
.ai-v14-price-grid>div.hot strong{color:#fff;}
.ai-v14-price-grid del{color:#8A98AC;font-size:19px;font-weight:850;}
.ai-v14-mini-chips{display:flex;flex-wrap:wrap;gap:8px;}
.ai-v14-mini-chips span{border:1px solid #D8E5F6;background:#fff;color:var(--v14-navy);border-radius:999px;padding:7px 10px;font-size:12px;font-weight:900;}
.ai-v14-cta{display:inline-flex;align-items:center;justify-content:center;gap:9px;min-height:54px;width:max-content;max-width:100%;border-radius:999px;background:linear-gradient(135deg,var(--v14-blue),var(--v14-blue-2));color:#fff!important;padding:0 20px;font-size:15px;font-weight:950;box-shadow:0 18px 34px rgba(11,94,215,.26);text-align:center;white-space:normal;}
.ai-v14-cta:hover{transform:translateY(-1px);box-shadow:0 22px 42px rgba(11,94,215,.32);}
.ai-v14-guide-card{display:grid;grid-template-rows:auto 1fr;border:1px solid #DCE8F8;background:#fff;border-radius:26px;overflow:hidden;box-shadow:0 18px 54px rgba(8,35,82,.07);}
.ai-v14-guide-image{position:relative;min-height:245px;background:#EEF5FF;overflow:hidden;}
.ai-v14-guide-image img{display:block;width:100%;height:100%;min-height:245px;object-fit:cover;}
.ai-v14-guide-copy{display:grid;gap:10px;align-content:start;padding:18px;}
.ai-v14-guide-copy h4{font-size:clamp(23px,2.2vw,31px);line-height:1.02;}
.ai-v14-guide-copy ol{display:grid;gap:8px;margin:0;padding:0;list-style:none;counter-reset:v14step;}
.ai-v14-guide-copy li{counter-increment:v14step;display:flex;align-items:center;gap:10px;border:1px solid #DCE8F8;background:#F8FBFF;border-radius:14px;padding:9px 10px;color:var(--v14-navy);font-size:13px;font-weight:900;}
.ai-v14-guide-copy li:before{content:counter(v14step);display:grid;place-items:center;flex:0 0 26px;width:26px;height:26px;border-radius:999px;background:var(--v14-blue);color:#fff;font-size:12px;font-weight:950;}
.ai-v14-passport-strip{position:relative;display:grid;grid-template-columns:repeat(4,minmax(0,1fr));margin-top:18px;border:1px solid #DCE8F8;background:#fff;border-radius:22px;overflow:hidden;box-shadow:0 14px 40px rgba(8,35,82,.06);}
.ai-v14-passport-strip>div{display:grid;gap:5px;padding:16px;border-right:1px solid #E7EEF9;}
.ai-v14-passport-strip>div:last-child{border-right:0;}
.ai-v14-passport-strip span,.ai-v14-choice-top span{font-size:10px;text-transform:uppercase;letter-spacing:.1em;color:var(--v14-gold);font-weight:950;}
.ai-v14-passport-strip strong{font-size:clamp(17px,1.6vw,22px);line-height:1.25;color:var(--v14-navy);overflow-wrap:anywhere;}
.ai-v14-passport-strip small{font-size:12px;color:var(--v14-muted);line-height:1.45;overflow-wrap:anywhere;}
.ai-v14-why{display:grid;grid-template-columns:minmax(0,1fr) minmax(330px,.76fr);gap:18px;align-items:stretch;background:linear-gradient(145deg,#fff 0%,#F6FAFF 100%);}
.ai-v14-why-copy{display:grid;gap:8px;align-content:center;}
.ai-v14-why-copy ul{display:grid;gap:8px;margin:4px 0 0;padding:0;list-style:none;color:var(--v14-navy);font-size:15px;line-height:1.5;}
.ai-v14-why-copy li{position:relative;padding-left:24px;font-weight:850;}
.ai-v14-why-copy li:before{content:"";position:absolute;left:0;top:.42em;width:11px;height:11px;border-radius:999px;background:var(--v14-blue);box-shadow:inset 0 0 0 3px #DDEBFF;}
.ai-v14-metric-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:0;border:1px solid #DCE8F8;border-radius:22px;overflow:hidden;background:#fff;}
.ai-v14-metric-grid>div{display:grid;grid-template-columns:48px minmax(0,1fr);gap:10px;align-items:center;min-height:110px;padding:15px;border-right:1px solid #E7EEF9;border-bottom:1px solid #E7EEF9;}
.ai-v14-metric-grid>div:nth-child(2n){border-right:0;}
.ai-v14-metric-grid>div:nth-last-child(-n+2){border-bottom:0;}
.ai-v14-metric-grid svg{width:44px;height:44px;padding:10px;border-radius:15px;background:#ECF5FF;color:var(--v14-blue);stroke-width:2;}
.ai-v14-metric-grid span{display:block;color:var(--v14-gold);font-size:10px;font-weight:950;text-transform:uppercase;letter-spacing:.09em;}
.ai-v14-metric-grid strong{display:block;color:var(--v14-blue);font-size:clamp(18px,2.2vw,27px);line-height:1.05;font-weight:950;overflow-wrap:anywhere;}
.ai-v14-play-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:12px;}
.ai-v14-play-grid label{display:grid;grid-template-columns:auto minmax(0,1fr);gap:11px;align-items:start;background:#fff;border:1px solid #DCE8F8;border-radius:20px;padding:16px;box-shadow:0 10px 30px rgba(8,35,82,.05);cursor:pointer;}
.ai-v14-play-grid input{appearance:none;width:27px;height:27px;border-radius:999px;border:2px solid #BCD4F2;margin:0;position:relative;background:#fff;}
.ai-v14-play-grid input:checked{background:var(--v14-blue);border-color:var(--v14-blue);}
.ai-v14-play-grid input:checked:after{content:"✓";position:absolute;inset:0;display:grid;place-items:center;color:#fff;font-weight:950;font-size:13px;}
.ai-v14-play-grid b{display:block;color:var(--v14-navy);font-size:16px;line-height:1.25;}
.ai-v14-play-grid small{display:block;color:var(--v14-muted);font-size:12px;line-height:1.45;margin-top:4px;overflow-wrap:anywhere;}
.ai-v14-play-actions{display:flex;gap:10px;flex-wrap:wrap;margin-top:16px;}
.ai-v14-choice-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px;}
.ai-v14-choice-card{display:grid;gap:12px;background:#fff;border:1px solid #DCE8F8;border-radius:24px;padding:20px;box-shadow:0 16px 42px rgba(8,35,82,.06);}
.ai-v14-choice-card.is-primary{border-color:#BBD5FF;background:linear-gradient(180deg,#fff,#F6FAFF);}
.ai-v14-choice-card.is-alt{border-color:#E9D7B6;background:linear-gradient(180deg,#fff,#FFFBF1);}
.ai-v14-choice-top{display:flex;align-items:center;justify-content:space-between;gap:10px;}
.ai-v14-choice-top small{color:var(--v14-muted);font-size:12px;font-weight:850;}
.ai-v14-choice-price{display:grid;grid-template-columns:auto auto minmax(0,1fr);gap:8px 12px;align-items:end;border-top:1px solid #E4ECF7;padding-top:12px;}
.ai-v14-choice-price del{color:#8996A9;font-weight:850;}
.ai-v14-choice-price strong{color:var(--v14-blue);font-size:28px;line-height:1;}
.ai-v14-choice-price small{color:var(--v14-muted);font-weight:850;align-self:center;}
.ai-v14-choice-cta{display:flex;align-items:center;justify-content:center;gap:8px;min-height:50px;border-radius:999px;background:var(--v14-navy);color:#fff!important;font-weight:950;text-align:center;padding:0 14px;}
.ai-v14-choice-card.is-alt .ai-v14-choice-cta{background:#fff;color:var(--v14-navy)!important;border:1px solid #CFE0F7;}
.ai-v14-alt-note{margin:10px 0 0;color:var(--v14-muted);font-size:13px;font-weight:850;}
.ai-v14-pro{display:grid;grid-template-columns:82px minmax(0,1fr);gap:18px;background:linear-gradient(135deg,#071B45,#0F2E68 60%,#1454B8);color:#fff;border-color:rgba(255,255,255,.12);box-shadow:0 28px 80px rgba(7,27,69,.23);}
.ai-v14-pro-mark{display:grid;place-items:center;width:68px;height:68px;border-radius:22px;background:#fff;color:var(--v14-blue);font-size:19px;font-weight:950;letter-spacing:.12em;box-shadow:0 16px 36px rgba(0,0,0,.16);}
.ai-v14-pro-copy{display:grid;gap:11px;}
.ai-v14-pro-copy span{background:rgba(255,255,255,.12);color:#BFD8FF;}
.ai-v14-pro-copy h3,.ai-v14-pro-copy p{color:#fff;}
.ai-v14-pro-box{border:1px solid rgba(255,255,255,.18);border-radius:18px;background:rgba(255,255,255,.09);padding:14px;}
.ai-v14-pro-box p{margin:0 0 8px;opacity:.92;}
.ai-v14-pro-box p:last-child{margin-bottom:0;}
.ai-v14-pro-actions{display:flex;gap:9px;flex-wrap:wrap;}
.ai-v14-pro-actions button{background:rgba(255,255,255,.12);border-color:rgba(255,255,255,.22);color:#fff;box-shadow:none;}
.ai-v14-pro-actions button:first-child{background:#fff;color:var(--v14-navy);border-color:#fff;}
.ai-v14-bottom-actions{display:flex;align-items:center;justify-content:center;gap:12px;flex-wrap:wrap;}
.ai-v14-reset{display:inline-flex;align-items:center;justify-content:center;gap:9px;min-height:52px;border-radius:999px;border:1px solid #CFE0F7;background:#fff;color:var(--v14-navy);padding:0 18px;font-weight:950;cursor:pointer;}
body.diagnostic-result-mode .ai-result-showcase-v14{display:grid!important;grid-template-columns:1fr!important;}
body.diagnostic-result-mode .ai-result-showcase-v14 > *{grid-column:1 / -1!important;}
body.diagnostic-result-mode .odx-wrap.odx-workspace{grid-template-columns:1fr!important;}
@media(max-width:1120px){
  .ai-v14-plan-grid{grid-template-columns:1fr!important;}
  .ai-v14-product-card{grid-template-columns:minmax(220px,.65fr) minmax(0,1fr);}
}
@media(max-width:900px){
  .ai-v14-command{grid-template-columns:1fr;}
  .ai-v14-command-actions{justify-content:flex-start;}
  .ai-v14-plan-head{display:grid;}
  .ai-v14-plan-head aside{min-width:0;width:100%;}
  .ai-v14-product-card,.ai-v14-why,.ai-v14-pro{grid-template-columns:1fr;}
  .ai-v14-passport-strip{grid-template-columns:repeat(2,minmax(0,1fr));}
  .ai-v14-passport-strip>div:nth-child(2n){border-right:0;}
  .ai-v14-passport-strip>div:nth-child(-n+2){border-bottom:1px solid #E7EEF9;}
  .ai-v14-play-grid,.ai-v14-choice-grid{grid-template-columns:1fr;}
}
@media(max-width:760px){
  .ai-result-showcase-v14{max-width:100%!important;padding-bottom:92px!important;gap:16px!important;}
  .ai-v14-plan,.ai-v14-why,.ai-v14-play,.ai-v14-compare,.ai-v14-pro{padding:18px;border-radius:22px;}
  .ai-v14-steps{grid-template-columns:1fr 1fr;}
  .ai-v14-command-actions button,.ai-v14-play-actions button,.ai-v14-pro-actions button{width:100%;}
  .ai-v14-product-visual{min-height:235px;}
  .ai-v14-product-visual img{max-height:235px;}
  .ai-v14-price-grid{grid-template-columns:1fr;}
  .ai-v14-cta,.ai-v14-choice-cta,.ai-v14-reset{width:100%;}
  .ai-v14-guide-image,.ai-v14-guide-image img{min-height:220px;}
  .ai-v14-section-head{display:grid;}
  .ai-v14-pro-mark{width:58px;height:58px;border-radius:18px;font-size:17px;}
}
@media(max-width:430px){
  .ai-v14-plan,.ai-v14-why,.ai-v14-play,.ai-v14-compare,.ai-v14-pro{padding:16px;border-radius:20px;}
  .ai-v14-command{padding:10px;border-radius:18px;}
  .ai-v14-steps{grid-template-columns:1fr;}
  .ai-v14-product-card,.ai-v14-choice-card{border-radius:20px;padding:13px;}
  .ai-v14-passport-strip{grid-template-columns:1fr;}
  .ai-v14-passport-strip>div{border-right:0!important;border-bottom:1px solid #E7EEF9!important;}
  .ai-v14-passport-strip>div:last-child{border-bottom:0!important;}
  .ai-v14-price-grid strong{font-size:22px;}
  .ai-v14-metric-grid{grid-template-columns:1fr;}
  .ai-v14-metric-grid>div{border-right:0!important;border-bottom:1px solid #E7EEF9!important;min-height:92px;}
  .ai-v14-metric-grid>div:last-child{border-bottom:0!important;}
  .ai-v14-choice-price{grid-template-columns:1fr;align-items:start;}
  .ai-v14-product-copy h4{font-size:34px;}
}
@media print{
  .ai-v14-command-actions,.ai-v14-play-actions,.ai-v14-bottom-actions,.ai-exp-sticky-result{display:none!important;}
  .ai-result-showcase-v14{max-width:100%!important;padding:0!important;color:#111;}
  .ai-v14-plan,.ai-v14-why,.ai-v14-play,.ai-v14-compare,.ai-v14-pro{box-shadow:none!important;break-inside:avoid;background:#fff!important;color:#111!important;border-color:#999!important;}
  .ai-v14-pro-copy h3,.ai-v14-pro-copy p{color:#111!important;}
}

/* v15 production result refinement: keep trust metrics readable, never squeezed. */
.ai-result-showcase-v14 .ai-v14-why{grid-template-columns:1fr!important;}
.ai-result-showcase-v14 .ai-v14-metric-grid{display:grid!important;grid-template-columns:repeat(4,minmax(0,1fr))!important;gap:12px!important;border:0!important;background:transparent!important;overflow:visible!important;}
.ai-result-showcase-v14 .ai-v14-metric-grid>div{border:1px solid #DCE8F8!important;border-radius:18px!important;background:#fff!important;min-height:96px!important;padding:14px!important;}
.ai-result-showcase-v14 .ai-v14-metric-grid svg{width:40px!important;height:40px!important;padding:9px!important;}
.ai-result-showcase-v14 .ai-v14-metric-grid strong{font-size:clamp(17px,1.55vw,23px)!important;line-height:1.12!important;word-break:normal!important;overflow-wrap:normal!important;hyphens:none!important;}
@media (max-width:760px){
  .ai-result-showcase-v14 .ai-v14-metric-grid{grid-template-columns:repeat(2,minmax(0,1fr))!important;gap:10px!important;}
  .ai-result-showcase-v14 .ai-v14-metric-grid>div{grid-template-columns:36px minmax(0,1fr)!important;min-height:86px!important;padding:12px!important;}
  .ai-result-showcase-v14 .ai-v14-metric-grid svg{width:36px!important;height:36px!important;padding:8px!important;}
  .ai-result-showcase-v14 .ai-v14-metric-grid strong{font-size:17px!important;line-height:1.15!important;}
}
@media (max-width:340px){.ai-result-showcase-v14 .ai-v14-metric-grid{grid-template-columns:1fr!important;}}

/* v14 final polish: readable metrics + hide any legacy injected lab in the new result. */
.ai-result-showcase-v14 .ai-exp-result-lab{display:none!important;}
@media(min-width:981px){.ai-v14-why{grid-template-columns:minmax(0,1fr) minmax(420px,.76fr)!important;}}
.ai-v14-metric-grid strong{overflow-wrap:normal!important;word-break:normal!important;hyphens:none!important;}
@media(max-width:430px){.ai-v14-metric-grid strong{font-size:20px!important;}}
.ai-result-showcase-v14 .ai-v14-metric-grid strong{white-space:nowrap!important;}


/* =========================================================
   v19 production hotfix: no broken result SVG/image paths,
   no squeezed text, no internal copy, mobile-safe money page.
   ========================================================= */
.ai-result-showcase-v14{
  --v14-blue:#0B5ED7!important;
  --v14-blue-2:#174EA6!important;
  --v14-navy:#071B45!important;
  --v14-ink:#0E1B33!important;
  --v14-muted:#56677F!important;
  --v14-line:#D8E5F4!important;
  --v14-soft:#F6FAFF!important;
  max-width:1120px!important;
  gap:18px!important;
}
.ai-result-showcase-v14 .ai-m2-hero{
  display:grid!important;
  grid-template-columns:minmax(0,1.02fr) minmax(300px,.78fr)!important;
  gap:clamp(16px,3vw,34px)!important;
  align-items:center!important;
  border-radius:30px!important;
  padding:clamp(20px,3vw,36px)!important;
  background:linear-gradient(145deg,#071B45 0%,#0A3D91 58%,#0B5ED7 100%)!important;
}
.ai-result-showcase-v14 .ai-m2-hero *{min-width:0!important;}
.ai-result-showcase-v14 .ai-m2-kicker{background:rgba(255,255,255,.12)!important;color:#CFE4FF!important;border-color:rgba(255,255,255,.18)!important;}
.ai-result-showcase-v14 .ai-m2-hero h2,
.ai-result-showcase-v14 .ai-m2-hero-summary{color:#fff!important;}
.ai-result-showcase-v14 .ai-m2-hero-summary{font-size:clamp(17px,1.8vw,23px)!important;line-height:1.55!important;}
.ai-result-showcase-v14 .ai-m2-hero-tag{background:rgba(255,255,255,.12)!important;color:#fff!important;border-color:rgba(255,255,255,.20)!important;}
.ai-result-showcase-v14 .ai-m2-hero-tag svg{width:18px!important;height:18px!important;stroke:currentColor!important;}
.ai-result-showcase-v14 .ai-m2-hero-art{width:100%!important;max-width:100%!important;overflow:hidden!important;border-radius:24px!important;background:rgba(255,255,255,.10)!important;border:1px solid rgba(255,255,255,.15)!important;padding:8px!important;}
.ai-result-showcase-v14 .ai-m2-svg-wrap{width:100%!important;max-width:100%!important;aspect-ratio:820/420!important;min-height:220px!important;display:block!important;}
.ai-result-showcase-v14 svg.ai-m2-dental-svg,
.ai-result-showcase-v14 .ai-m2-dental-svg{
  display:block!important;
  width:100%!important;
  height:100%!important;
  min-height:220px!important;
  max-height:420px!important;
  overflow:visible!important;
  stroke:initial!important;
  fill:initial!important;
  color:inherit!important;
}
.ai-result-showcase-v14 .ai-v14-command{position:relative!important;z-index:2!important;}
.ai-result-showcase-v14 .ai-v14-plan,
.ai-result-showcase-v14 .ai-v14-why,
.ai-result-showcase-v14 .ai-v14-play,
.ai-result-showcase-v14 .ai-v14-compare,
.ai-result-showcase-v14 .ai-v14-pro{
  border-radius:28px!important;
  box-shadow:0 20px 56px rgba(8,35,82,.075)!important;
  overflow:hidden!important;
}
.ai-result-showcase-v14 .ai-v14-plan-head h3,
.ai-result-showcase-v14 .ai-v14-section-head h3,
.ai-result-showcase-v14 .ai-v14-why-copy h3,
.ai-result-showcase-v14 .ai-v14-pro-copy h3{
  font-size:clamp(25px,2.9vw,40px)!important;
  line-height:1.05!important;
  letter-spacing:-.035em!important;
}
.ai-result-showcase-v14 .ai-v14-plan-grid{grid-template-columns:1fr!important;}
.ai-result-showcase-v14 .ai-v14-product-card{
  display:grid!important;
  grid-template-columns:minmax(260px,.55fr) minmax(0,1fr)!important;
  align-items:stretch!important;
  gap:18px!important;
  padding:16px!important;
}
.ai-result-showcase-v14 .ai-v14-product-visual{min-height:260px!important;}
.ai-result-showcase-v14 .ai-v14-product-visual img{
  display:block!important;
  width:100%!important;
  height:100%!important;
  max-height:260px!important;
  object-fit:contain!important;
  object-position:center!important;
}
.ai-result-showcase-v14 .ai-v14-guide-card{display:grid!important;grid-template-columns:minmax(280px,.55fr) minmax(0,1fr)!important;grid-template-rows:auto!important;}
.ai-result-showcase-v14 .ai-v14-guide-image{min-height:260px!important;}
.ai-result-showcase-v14 .ai-v14-guide-image img{display:block!important;width:100%!important;height:100%!important;min-height:260px!important;object-fit:cover!important;}
.ai-result-showcase-v14 .ai-v14-price-grid{grid-template-columns:repeat(auto-fit,minmax(140px,1fr))!important;}
.ai-result-showcase-v14 .ai-v14-price-grid strong,
.ai-result-showcase-v14 .ai-v14-choice-price strong{white-space:nowrap!important;word-break:normal!important;overflow-wrap:normal!important;}
.ai-result-showcase-v14 .ai-v14-passport-strip{grid-template-columns:repeat(4,minmax(0,1fr))!important;}
.ai-result-showcase-v14 .ai-v14-play-grid{grid-template-columns:repeat(3,minmax(0,1fr))!important;}
.ai-result-showcase-v14 .ai-v14-choice-price{grid-template-columns:auto auto!important;align-items:end!important;}
.ai-result-showcase-v14 .ai-v14-choice-price small{grid-column:1 / -1!important;}
.ai-result-showcase-v14 .ai-v14-choice-top{align-items:flex-start!important;}
.ai-result-showcase-v14 .ai-v14-choice-top small{text-align:right!important;}
.ai-result-showcase-v14 img{max-width:100%!important;}
@media(max-width:980px){
  .ai-result-showcase-v14 .ai-m2-hero,
  .ai-result-showcase-v14 .ai-v14-product-card,
  .ai-result-showcase-v14 .ai-v14-guide-card,
  .ai-result-showcase-v14 .ai-v14-pro{grid-template-columns:1fr!important;}
  .ai-result-showcase-v14 .ai-v14-passport-strip{grid-template-columns:repeat(2,minmax(0,1fr))!important;}
  .ai-result-showcase-v14 .ai-v14-play-grid{grid-template-columns:1fr!important;}
}
@media(max-width:620px){
  .ai-result-showcase-v14{gap:14px!important;padding-bottom:96px!important;}
  .ai-result-showcase-v14 .ai-m2-hero{padding:18px!important;border-radius:24px!important;}
  .ai-result-showcase-v14 .ai-m2-svg-wrap{min-height:190px!important;}
  .ai-result-showcase-v14 svg.ai-m2-dental-svg{min-height:190px!important;}
  .ai-result-showcase-v14 .ai-v14-plan,
  .ai-result-showcase-v14 .ai-v14-why,
  .ai-result-showcase-v14 .ai-v14-play,
  .ai-result-showcase-v14 .ai-v14-compare,
  .ai-result-showcase-v14 .ai-v14-pro{padding:16px!important;border-radius:22px!important;}
  .ai-result-showcase-v14 .ai-v14-passport-strip,
  .ai-result-showcase-v14 .ai-v14-metric-grid,
  .ai-result-showcase-v14 .ai-v14-choice-grid{grid-template-columns:1fr!important;}
  .ai-result-showcase-v14 .ai-v14-command-actions{display:grid!important;grid-template-columns:1fr!important;}
  .ai-result-showcase-v14 .ai-v14-command-actions button{width:100%!important;}
  .ai-result-showcase-v14 .ai-v14-product-visual,
  .ai-result-showcase-v14 .ai-v14-guide-image,
  .ai-result-showcase-v14 .ai-v14-guide-image img{min-height:210px!important;}
  .ai-result-showcase-v14 .ai-v14-product-copy h4{font-size:32px!important;}
  .ai-result-showcase-v14 .ai-v14-choice-price{grid-template-columns:1fr!important;align-items:start!important;}
  .ai-result-showcase-v14 .ai-v14-choice-top{display:grid!important;gap:4px!important;}
  .ai-result-showcase-v14 .ai-v14-choice-top small{text-align:left!important;}
}
@media(max-width:360px){
  .ai-result-showcase-v14 .ai-m2-hero{padding:14px!important;}
  .ai-result-showcase-v14 .ai-v14-product-card,
  .ai-result-showcase-v14 .ai-v14-choice-card{padding:12px!important;}
}

/* =========================================================
   v20 Denticor AI Result — selected Variant 1+2 hybrid
   Situation-first reassurance + immersive package card + assigned guide story.
   ========================================================= */
.ai-result-v20{
  --v20-navy:#071B45;
  --v20-navy-2:#0A285D;
  --v20-blue:#0B5ED7;
  --v20-blue-2:#176DFF;
  --v20-ink:#0B1F45;
  --v20-muted:#53667F;
  --v20-soft:#F4F8FF;
  --v20-soft-2:#EAF3FF;
  --v20-line:#D8E6F7;
  --v20-card:#FFFFFF;
  display:grid!important;
  gap:clamp(14px,2vw,22px)!important;
  width:min(1120px,100%)!important;
  margin:0 auto!important;
  padding:0 0 clamp(72px,8vw,110px)!important;
  color:var(--v20-ink)!important;
  font-family:'Plus Jakarta Sans',-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif!important;
}
.ai-result-v20,.ai-result-v20 *{box-sizing:border-box;min-width:0;}
.ai-result-v20 a{text-decoration:none;}
.ai-result-v20 svg{width:20px;height:20px;fill:none;stroke:currentColor;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;flex:0 0 auto;}
.ai-v20-assurance{display:grid;grid-template-columns:auto minmax(0,1fr);gap:18px;align-items:flex-start;padding:clamp(10px,1.5vw,16px) 4px 0;}
.ai-v20-assurance-icon{width:56px;height:56px;border-radius:16px;display:grid;place-items:center;background:linear-gradient(145deg,#E8F2FF,#D7E7FF);color:var(--v20-blue);box-shadow:0 16px 34px rgba(11,94,215,.14);}
.ai-v20-assurance-icon svg{width:28px;height:28px;stroke-width:2.4;}
.ai-v20-assurance-copy h2{margin:0;color:var(--v20-navy);font-size:clamp(36px,4.5vw,58px);line-height:.98;letter-spacing:-.055em;font-weight:950;}
.ai-v20-assurance-copy p{max-width:820px;margin:8px 0 0;color:var(--v20-muted);font-size:clamp(16px,1.45vw,19px);line-height:1.55;font-weight:650;}
.ai-v20-tabs{display:flex;gap:12px;flex-wrap:wrap;align-items:center;margin:4px 0 8px;}
.ai-v20-tab{border:1px solid #CFE0F4;background:rgba(255,255,255,.86);color:var(--v20-navy);border-radius:999px;min-height:48px;padding:0 18px;display:inline-flex;align-items:center;justify-content:center;gap:9px;font:900 14px/1 inherit;cursor:pointer;box-shadow:0 10px 28px rgba(8,35,82,.06);transition:transform .18s ease,box-shadow .18s ease,border-color .18s ease,background .18s ease;}
.ai-v20-tab:hover{transform:translateY(-1px);border-color:#A9C9FF;box-shadow:0 16px 36px rgba(8,35,82,.10);}
.ai-v20-tab.is-active{background:#F0F6FF;border-color:#9FC3FF;color:var(--v20-blue);}
.ai-v20-tab svg{width:18px;height:18px;stroke-width:2.3;}
.ai-v20-hero-card{position:relative;overflow:hidden;border-radius:34px;background:radial-gradient(circle at 88% 18%,rgba(87,151,255,.28),transparent 24%),linear-gradient(145deg,#071B45 0%,#082758 48%,#0B3F96 100%);border:1px solid rgba(120,173,255,.36);box-shadow:0 32px 88px rgba(7,27,69,.24);padding:clamp(20px,3vw,34px);color:#fff;}
.ai-v20-hero-card:before{content:"";position:absolute;right:-90px;bottom:-110px;width:330px;height:330px;border-radius:999px;background:radial-gradient(circle,rgba(143,226,255,.34),rgba(143,226,255,.10) 48%,transparent 70%);pointer-events:none;}
.ai-v20-hero-card:after{content:"✦";position:absolute;right:34px;top:36px;color:rgba(203,226,255,.35);font-size:46px;line-height:1;}
.ai-v20-rec-badge{position:relative;z-index:1;width:max-content;max-width:100%;display:inline-flex;align-items:center;gap:9px;border:1px solid rgba(202,225,255,.24);background:rgba(28,102,214,.36);color:#fff;border-radius:999px;padding:10px 16px;font-size:15px;font-weight:950;box-shadow:inset 0 1px 0 rgba(255,255,255,.08);}
.ai-v20-rec-badge svg{width:18px;height:18px;stroke-width:2.4;}
.ai-v20-hero-main{position:relative;z-index:1;display:grid;grid-template-columns:minmax(0,1fr) auto;gap:18px;align-items:end;margin-top:clamp(22px,3vw,38px);}
.ai-v20-hero-main h3{margin:0;color:#fff;font-size:clamp(42px,5vw,64px);line-height:.95;letter-spacing:-.06em;font-weight:950;}
.ai-v20-hero-main p{margin:10px 0 0;color:#D4E4FF;font-size:clamp(16px,1.7vw,22px);line-height:1.35;font-weight:650;}
.ai-v20-hero-main strong{display:block;color:#fff;font-size:clamp(44px,6vw,78px);line-height:.9;letter-spacing:-.06em;font-weight:950;white-space:nowrap;text-shadow:0 10px 28px rgba(0,0,0,.16);}
.ai-v20-main-cta{position:relative;z-index:1;margin-top:clamp(22px,2.6vw,32px);min-height:68px;width:100%;border-radius:22px;background:linear-gradient(135deg,var(--v20-blue-2),#0A55D4);color:#fff!important;display:flex;align-items:center;justify-content:center;gap:14px;padding:0 24px;font-size:clamp(16px,1.5vw,20px);font-weight:950;box-shadow:0 22px 42px rgba(11,94,215,.35);transition:transform .18s ease,box-shadow .18s ease;}
.ai-v20-main-cta:hover{transform:translateY(-1px);box-shadow:0 28px 54px rgba(11,94,215,.44);}
.ai-v20-main-cta svg{width:24px;height:24px;}
.ai-v20-main-cta i{font-style:normal;position:absolute;right:26px;font-size:32px;font-weight:600;line-height:1;}
.ai-v20-pack-media{position:relative;z-index:1;margin-top:clamp(20px,2.5vw,30px);height:clamp(280px,36vw,430px);border-radius:24px;overflow:hidden;background:#fff;border:1px solid rgba(255,255,255,.36);box-shadow:0 20px 54px rgba(0,0,0,.18);}
.ai-v20-pack-media img{display:block;width:100%;height:100%;object-fit:cover;object-position:center center;transform:scale(1.06);}
.ai-v20-passport{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px;}
.ai-v20-passport article{position:relative;overflow:hidden;min-height:110px;border:1px solid var(--v20-line);background:rgba(255,255,255,.93);border-radius:20px;padding:18px 72px 18px 20px;box-shadow:0 16px 42px rgba(8,35,82,.07);display:grid;align-content:center;gap:7px;}
.ai-v20-passport span{color:#6A7892;text-transform:uppercase;letter-spacing:.10em;font-size:12px;font-weight:950;}
.ai-v20-passport strong{color:var(--v20-navy);font-size:clamp(20px,2.15vw,28px);line-height:1.15;font-weight:950;overflow-wrap:anywhere;}
.ai-v20-passport i{position:absolute;right:18px;top:50%;transform:translateY(-50%);width:48px;height:48px;border-radius:16px;background:#EAF3FF;color:var(--v20-blue);display:grid;place-items:center;font-style:normal;}
.ai-v20-trust-strip{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));border:1px solid var(--v20-line);background:#fff;border-radius:22px;box-shadow:0 16px 42px rgba(8,35,82,.06);overflow:hidden;}
.ai-v20-trust-strip>div{display:grid;grid-template-columns:auto minmax(0,1fr);gap:4px 14px;align-items:center;padding:18px;border-right:1px solid #E7EEF9;}
.ai-v20-trust-strip>div:last-child{border-right:0;}
.ai-v20-trust-strip svg{grid-row:1/3;width:36px;height:36px;padding:7px;border-radius:14px;background:#F0F6FF;color:var(--v20-blue);}
.ai-v20-trust-strip b{color:var(--v20-navy);font-size:16px;font-weight:950;line-height:1.2;}
.ai-v20-trust-strip small{color:var(--v20-muted);font-size:12px;line-height:1.35;font-weight:650;overflow-wrap:anywhere;}
.ai-v20-confidence{position:relative;overflow:hidden;display:grid;grid-template-columns:auto minmax(0,1fr) auto;gap:18px;align-items:center;border:1px solid #BFD8FF;background:linear-gradient(135deg,#F5FAFF 0%,#E6F2FF 66%,#CFE7FF 100%);border-radius:24px;padding:20px 24px;box-shadow:0 18px 46px rgba(8,35,82,.06);}
.ai-v20-confidence:before{content:"";position:absolute;right:0;bottom:0;width:56%;height:100%;background:linear-gradient(135deg,transparent,rgba(255,255,255,.46));clip-path:polygon(20% 100%,100% 20%,100% 100%);}
.ai-v20-confidence-icon{position:relative;z-index:1;width:58px;height:58px;border-radius:22px;background:#DCEBFF;color:var(--v20-blue);display:grid;place-items:center;box-shadow:inset 0 0 0 1px #C4DAFF;}
.ai-v20-confidence h3{position:relative;z-index:1;margin:0;color:var(--v20-navy);font-size:clamp(20px,2vw,26px);letter-spacing:-.03em;line-height:1.08;font-weight:950;}
.ai-v20-confidence p{position:relative;z-index:1;margin:7px 0 0;color:var(--v20-muted);font-size:16px;line-height:1.5;font-weight:650;}
.ai-v20-confidence-teeth{position:relative;z-index:1;display:flex;gap:6px;align-items:end;padding-right:12px;}
.ai-v20-confidence-teeth span{width:34px;height:52px;border-radius:48% 48% 42% 42%;background:linear-gradient(145deg,#FFF 0%,#F7E7CB 100%);box-shadow:inset -6px -8px 16px rgba(163,125,76,.18),0 12px 26px rgba(7,27,69,.13);transform:rotate(-3deg);}
.ai-v20-confidence-teeth span:nth-child(2){height:48px;transform:rotate(5deg);}
.ai-v20-section{position:relative;overflow:hidden;border:1px solid var(--v20-line);background:linear-gradient(145deg,#fff 0%,#F8FBFF 100%);border-radius:28px;padding:clamp(20px,2.5vw,30px);box-shadow:0 20px 56px rgba(8,35,82,.075);scroll-margin-top:96px;}
.ai-v20-section-head{max-width:860px;margin-bottom:20px;}
.ai-v20-section-head>span{display:inline-flex;width:max-content;max-width:100%;border-radius:999px;background:#EDF6FF;color:var(--v20-blue);padding:8px 11px;font-size:11px;font-weight:950;letter-spacing:.11em;text-transform:uppercase;}
.ai-v20-section-head h3{margin:10px 0 0;color:var(--v20-navy);font-size:clamp(28px,3vw,42px);line-height:1.02;letter-spacing:-.045em;font-weight:950;}
.ai-v20-section-head p{margin:10px 0 0;color:var(--v20-muted);font-size:16.5px;line-height:1.65;font-weight:650;}
.ai-v20-proof-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:12px;}
.ai-v20-proof-grid details{border:1px solid #DCE8F8;background:#fff;border-radius:20px;padding:14px;box-shadow:0 12px 30px rgba(8,35,82,.045);}
.ai-v20-proof-grid summary{list-style:none;display:flex;align-items:center;gap:10px;cursor:pointer;color:var(--v20-navy);font-weight:950;}
.ai-v20-proof-grid summary::-webkit-details-marker{display:none;}
.ai-v20-proof-grid summary svg{width:36px;height:36px;padding:8px;border-radius:14px;background:#F0F6FF;color:var(--v20-blue);}
.ai-v20-proof-grid p{margin:12px 0 2px;color:var(--v20-muted);font-size:15px;line-height:1.55;font-weight:650;}
.ai-v20-inside-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:16px;}
.ai-v20-inside-grid article{border:1px solid #DCE8F8;background:#fff;border-radius:24px;overflow:hidden;box-shadow:0 14px 38px rgba(8,35,82,.055);}
.ai-v20-inside-photo{height:260px;background:#EEF5FF;overflow:hidden;}
.ai-v20-inside-photo img{display:block;width:100%;height:100%;object-fit:cover;object-position:center;}
.ai-v20-inside-grid h4{margin:18px 18px 0;color:var(--v20-navy);font-size:clamp(22px,2vw,30px);letter-spacing:-.035em;line-height:1.05;font-weight:950;}
.ai-v20-inside-grid p{margin:8px 18px 20px;color:var(--v20-muted);line-height:1.55;font-size:15.5px;font-weight:650;}
.ai-v20-story-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:12px;}
.ai-v20-story-grid article{position:relative;min-height:230px;border-radius:22px;overflow:hidden;background:#EAF3FF;border:1px solid #DCE8F8;box-shadow:0 14px 34px rgba(8,35,82,.055);}
.ai-v20-story-grid img{display:block;width:100%;height:100%;min-height:230px;object-fit:cover;transition:transform .25s ease;}
.ai-v20-story-grid article:hover img{transform:scale(1.04);}
.ai-v20-story-grid span{position:absolute;left:14px;top:14px;width:34px;height:34px;border-radius:999px;background:var(--v20-blue);color:#fff;display:grid;place-items:center;font-size:13px;font-weight:950;box-shadow:0 10px 20px rgba(11,94,215,.25);}
.ai-v20-story-grid b{position:absolute;left:12px;right:12px;bottom:12px;border-radius:999px;background:rgba(7,27,69,.88);color:#fff;padding:9px 12px;text-align:center;font-size:12px;font-weight:950;}
.ai-v20-guide-link{display:inline-flex;margin-top:16px;align-items:center;justify-content:center;min-height:46px;border-radius:999px;border:1px solid #CFE0F7;background:#fff;color:var(--v20-navy)!important;padding:0 16px;font-weight:950;box-shadow:0 10px 26px rgba(8,35,82,.05);}
.ai-v20-metric-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:12px;}
.ai-v20-metric-grid>div{display:grid;grid-template-columns:auto minmax(0,1fr);gap:4px 12px;align-items:center;border:1px solid #DCE8F8;background:#fff;border-radius:20px;padding:16px;min-height:96px;box-shadow:0 12px 30px rgba(8,35,82,.045);}
.ai-v20-metric-grid svg{grid-row:1/3;width:38px;height:38px;padding:8px;border-radius:14px;background:#F0F6FF;color:var(--v20-blue);}
.ai-v20-metric-grid span{color:#65758C;text-transform:uppercase;letter-spacing:.08em;font-size:10px;font-weight:950;}
.ai-v20-metric-grid strong{color:var(--v20-navy);font-size:clamp(17px,1.6vw,22px);line-height:1.1;font-weight:950;white-space:nowrap;}
.ai-v20-choice-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px;}
.ai-v20-choice-card{display:grid;gap:12px;border:1px solid #DCE8F8;background:#fff;border-radius:24px;padding:20px;box-shadow:0 16px 42px rgba(8,35,82,.06);}
.ai-v20-choice-card.is-primary{border-color:#BBD5FF;background:linear-gradient(180deg,#fff,#F6FAFF);}
.ai-v20-choice-card.is-secondary{background:linear-gradient(180deg,#fff,#F9FBFF);}
.ai-v20-choice-top{display:flex;align-items:center;justify-content:space-between;gap:10px;}
.ai-v20-choice-top span{font-size:11px;text-transform:uppercase;letter-spacing:.1em;color:var(--v20-blue);font-weight:950;}
.ai-v20-choice-top small{font-size:12px;color:var(--v20-muted);font-weight:850;text-align:right;}
.ai-v20-choice-card h4{margin:0;color:var(--v20-navy);font-size:clamp(27px,2.7vw,38px);line-height:1;letter-spacing:-.045em;font-weight:950;}
.ai-v20-choice-card p{margin:0;color:var(--v20-muted);font-size:15.5px;line-height:1.55;font-weight:650;}
.ai-v20-mini-chips{display:flex;gap:8px;flex-wrap:wrap;}
.ai-v20-mini-chips span{border:1px solid #D8E5F6;background:#fff;color:var(--v20-navy);border-radius:999px;padding:7px 10px;font-size:12px;font-weight:900;}
.ai-v20-choice-price{display:flex;align-items:end;justify-content:space-between;gap:10px;border-top:1px solid #E4ECF7;padding-top:12px;}
.ai-v20-choice-price span{font-size:10px;text-transform:uppercase;letter-spacing:.1em;color:#65758C;font-weight:950;}
.ai-v20-choice-price strong{font-size:32px;line-height:1;color:var(--v20-blue);font-weight:950;white-space:nowrap;}
.ai-v20-choice-cta{display:flex;align-items:center;justify-content:center;gap:9px;min-height:52px;border-radius:999px;background:var(--v20-navy);color:#fff!important;font-weight:950;text-align:center;padding:0 16px;}
.ai-v20-choice-card.is-secondary .ai-v20-choice-cta{background:#fff;color:var(--v20-navy)!important;border:1px solid #CFE0F7;}
.ai-v20-actions{display:flex;align-items:center;justify-content:center;gap:10px;flex-wrap:wrap;margin-top:4px;}
.ai-v20-actions button,.ai-v20-actions a{min-height:52px;border-radius:999px;border:1px solid #CFE0F7;background:#fff;color:var(--v20-navy)!important;padding:0 17px;font:950 14px/1 inherit;display:inline-flex;align-items:center;justify-content:center;gap:9px;cursor:pointer;box-shadow:0 10px 26px rgba(8,35,82,.06);}
.ai-v20-actions a{border:0;background:linear-gradient(135deg,var(--v20-blue),var(--v20-blue-2));color:#fff!important;box-shadow:0 18px 34px rgba(11,94,215,.24);}
body.diagnostic-result-mode .ai-result-v20{display:grid!important;grid-template-columns:1fr!important;}
body.diagnostic-result-mode .ai-result-v20 > *{grid-column:1 / -1!important;}
@media(max-width:900px){
  .ai-v20-hero-main{grid-template-columns:1fr;align-items:start;}
  .ai-v20-hero-main strong{font-size:clamp(46px,11vw,70px);}
  .ai-v20-pack-media{height:clamp(260px,58vw,390px);}
  .ai-v20-trust-strip,.ai-v20-proof-grid,.ai-v20-metric-grid{grid-template-columns:1fr!important;}
  .ai-v20-trust-strip>div{border-right:0;border-bottom:1px solid #E7EEF9;}
  .ai-v20-trust-strip>div:last-child{border-bottom:0;}
  .ai-v20-story-grid{grid-template-columns:repeat(2,minmax(0,1fr));}
  .ai-v20-inside-grid,.ai-v20-choice-grid{grid-template-columns:1fr;}
  .ai-v20-confidence{grid-template-columns:auto minmax(0,1fr);}
  .ai-v20-confidence-teeth{display:none;}
}
@media(max-width:620px){
  .ai-result-v20{gap:14px!important;padding-bottom:96px!important;}
  .ai-v20-assurance{grid-template-columns:1fr;gap:12px;}
  .ai-v20-assurance-icon{width:48px;height:48px;border-radius:15px;}
  .ai-v20-tabs{display:grid;grid-template-columns:1fr 1fr;gap:8px;}
  .ai-v20-tab{min-height:44px;padding:0 10px;font-size:12.5px;}
  .ai-v20-hero-card,.ai-v20-section{border-radius:24px;padding:18px;}
  .ai-v20-hero-card:after{display:none;}
  .ai-v20-rec-badge{font-size:12px;padding:9px 12px;}
  .ai-v20-hero-main h3{font-size:38px;}
  .ai-v20-main-cta{min-height:60px;border-radius:18px;font-size:17px;}
  .ai-v20-main-cta i{right:18px;font-size:25px;}
  .ai-v20-pack-media{height:235px;border-radius:18px;}
  .ai-v20-passport{grid-template-columns:1fr;}
  .ai-v20-passport article{min-height:96px;padding:16px 62px 16px 16px;border-radius:18px;}
  .ai-v20-passport i{width:42px;height:42px;right:14px;}
  .ai-v20-confidence{grid-template-columns:1fr;padding:18px;border-radius:20px;}
  .ai-v20-confidence-icon{width:48px;height:48px;border-radius:18px;}
  .ai-v20-section-head h3{font-size:28px;}
  .ai-v20-story-grid{grid-template-columns:1fr;}
  .ai-v20-story-grid article,.ai-v20-story-grid img{min-height:220px;}
  .ai-v20-inside-photo{height:220px;}
  .ai-v20-actions{display:grid;grid-template-columns:1fr;}
  .ai-v20-actions button,.ai-v20-actions a{width:100%;}
}
@media(max-width:380px){
  .ai-v20-tabs{grid-template-columns:1fr;}
  .ai-v20-hero-main h3{font-size:34px;}
  .ai-v20-hero-main strong{font-size:42px;}
  .ai-v20-choice-price{display:grid;gap:4px;}
}
@media print{
  .ai-v20-tabs,.ai-v20-actions,.ai-exp-sticky-result{display:none!important;}
  .ai-result-v20{max-width:100%!important;padding:0!important;color:#111!important;}
  .ai-v20-hero-card,.ai-v20-section,.ai-v20-passport article,.ai-v20-confidence{box-shadow:none!important;break-inside:avoid;}
}

/* =========================================================
   v21 Result polish — dominant diagnostic SVG, compact offer sidebar
   Visual-only upgrade based on selected Variant 1+2 direction.
   ========================================================= */
.ai-result-v21{
  width:min(1180px,100%)!important;
  gap:clamp(16px,2vw,24px)!important;
}
.ai-result-v21 .ai-v21-hero{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(300px,360px);
  grid-template-areas:"copy offer" "map offer";
  gap:clamp(14px,2vw,22px);
  align-items:start;
}
.ai-v21-hero-copy{
  grid-area:copy;
  position:relative;
  overflow:hidden;
  border:1px solid rgba(207,224,244,.9);
  border-radius:32px;
  padding:clamp(22px,3vw,34px);
  background:linear-gradient(135deg,rgba(255,255,255,.96),rgba(244,249,255,.94));
  box-shadow:0 24px 70px -38px rgba(7,27,69,.32);
}
.ai-v21-hero-copy:after{
  content:"";
  position:absolute;
  right:-90px;
  top:-110px;
  width:270px;
  height:270px;
  border-radius:999px;
  background:radial-gradient(circle,rgba(23,109,255,.18),rgba(23,109,255,0) 68%);
  pointer-events:none;
}
.ai-v21-kicker{
  position:relative;
  z-index:1;
  display:inline-flex;
  align-items:center;
  gap:9px;
  min-height:36px;
  border-radius:999px;
  padding:0 13px;
  background:#EEF6FF;
  border:1px solid #CDE1FF;
  color:var(--v20-blue);
  font-size:12px;
  font-weight:950;
  letter-spacing:.09em;
  text-transform:uppercase;
}
.ai-v21-kicker svg{width:17px;height:17px;stroke-width:2.4;}
.ai-v21-hero-copy h2{
  position:relative;
  z-index:1;
  margin:16px 0 0;
  color:var(--v20-navy);
  font-size:clamp(38px,5vw,64px);
  line-height:.96;
  letter-spacing:-.06em;
  font-weight:950;
}
.ai-v21-hero-copy p{
  position:relative;
  z-index:1;
  max-width:780px;
  margin:10px 0 0;
  color:var(--v20-muted);
  font-size:clamp(16px,1.35vw,19px);
  line-height:1.58;
  font-weight:650;
}
.ai-v21-tabs{position:relative;z-index:1;margin:20px 0 0!important;}
.ai-v21-action-strip{
  position:relative;
  z-index:1;
  display:flex;
  flex-wrap:wrap;
  gap:9px;
  margin-top:16px;
}
.ai-v21-action-strip button{
  min-height:42px;
  border:1px solid #D2E1F5;
  background:rgba(255,255,255,.9);
  color:var(--v20-navy);
  border-radius:999px;
  padding:0 13px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  font:950 12.5px/1 inherit;
  cursor:pointer;
  box-shadow:0 10px 24px rgba(8,35,82,.055);
  transition:transform .18s ease,box-shadow .18s ease,border-color .18s ease;
}
.ai-v21-action-strip button:hover{transform:translateY(-1px);border-color:#AFCBFF;box-shadow:0 14px 30px rgba(8,35,82,.095);}
.ai-v21-action-strip svg{width:16px;height:16px;stroke-width:2.4;}
.ai-v21-svg-stage{
  grid-area:map;
  position:relative;
  overflow:hidden;
  border-radius:34px;
  padding:clamp(18px,2.4vw,28px);
  min-height:360px;
  color:#fff;
  border:1px solid rgba(133,183,255,.38);
  background:radial-gradient(circle at 18% 16%,rgba(115,201,255,.30),transparent 30%),radial-gradient(circle at 88% 78%,rgba(54,130,255,.30),transparent 28%),linear-gradient(145deg,#071B45 0%,#0A2F72 52%,#0B5ED7 120%);
  box-shadow:0 30px 86px -36px rgba(7,27,69,.45);
}
.ai-v21-svg-stage:before{
  content:"";
  position:absolute;
  inset:0;
  background:repeating-linear-gradient(152deg,transparent 0 34px,rgba(255,255,255,.045) 35px 36px);
  mask-image:linear-gradient(90deg,transparent 0%,#000 34%,#000 78%,transparent 100%);
  pointer-events:none;
}
.ai-v21-svg-top{
  position:relative;
  z-index:1;
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:16px;
  margin-bottom:8px;
}
.ai-v21-svg-top span{
  display:inline-flex;
  width:max-content;
  max-width:100%;
  border-radius:999px;
  padding:8px 11px;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.18);
  color:#DCEBFF;
  font-size:11px;
  letter-spacing:.10em;
  text-transform:uppercase;
  font-weight:950;
}
.ai-v21-svg-top strong{
  color:#fff;
  text-align:right;
  font-size:clamp(18px,1.8vw,25px);
  line-height:1.08;
  letter-spacing:-.035em;
  font-weight:950;
}
.ai-v21-svg-stage .ai-m2-svg-wrap{
  position:relative;
  z-index:1;
  width:100%;
  max-width:none;
  margin:0 auto;
}
.ai-v21-svg-stage .ai-m2-dental-svg{filter:drop-shadow(0 18px 28px rgba(0,0,0,.22));}
.ai-v21-map-badges{
  position:relative;
  z-index:1;
  display:flex;
  flex-wrap:wrap;
  gap:9px;
  margin-top:8px;
}
.ai-v21-map-badges span{
  display:inline-flex;
  align-items:center;
  gap:7px;
  min-height:36px;
  border-radius:999px;
  padding:0 11px;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.18);
  color:#E6F1FF;
  font-size:12px;
  line-height:1.15;
  font-weight:850;
  max-width:100%;
}
.ai-v21-map-badges svg{width:16px;height:16px;stroke-width:2.4;}
.ai-v21-offer{
  grid-area:offer;
  position:sticky;
  top:88px;
  border:1px solid #CFE0F4;
  background:linear-gradient(180deg,#fff 0%,#F7FAFF 100%);
  border-radius:28px;
  padding:20px;
  box-shadow:0 24px 70px -38px rgba(7,27,69,.38);
}
.ai-v21-offer-badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  border-radius:999px;
  padding:8px 11px;
  background:#EEF6FF;
  border:1px solid #CDE1FF;
  color:var(--v20-blue);
  font-size:11px;
  letter-spacing:.06em;
  font-weight:950;
}
.ai-v21-offer-badge svg{width:16px;height:16px;stroke-width:2.4;}
.ai-v21-offer h3{
  margin:16px 0 0;
  color:var(--v20-navy);
  font-size:clamp(28px,2.6vw,38px);
  line-height:1;
  letter-spacing:-.05em;
  font-weight:950;
}
.ai-v21-offer p{
  margin:9px 0 0;
  color:var(--v20-muted);
  font-size:15.5px;
  line-height:1.5;
  font-weight:700;
}
.ai-v21-price-stack{
  display:grid;
  gap:8px;
  margin:16px 0 0;
  border:1px solid #DCE8F8;
  background:#fff;
  border-radius:20px;
  padding:14px;
}
.ai-v21-price-stack>div{
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:12px;
  color:var(--v20-muted);
}
.ai-v21-price-stack span{
  display:block;
  color:#65758C;
  font-size:10.5px;
  text-transform:uppercase;
  letter-spacing:.09em;
  font-weight:950;
}
.ai-v21-price-stack s{
  color:#94A3B8;
  font-size:17px;
  font-weight:900;
  text-decoration-thickness:2px;
}
.ai-v21-price-stack strong{
  color:var(--v20-blue);
  font-size:clamp(34px,3vw,44px);
  line-height:.95;
  letter-spacing:-.055em;
  font-weight:950;
  white-space:nowrap;
}
.ai-v21-price-stack b{
  color:var(--v20-navy);
  font-size:19px;
  line-height:1;
  font-weight:950;
  white-space:nowrap;
}
.ai-v21-price-stack .is-ai{
  padding-top:8px;
  border-top:1px solid #E5EEF9;
}
.ai-v21-offer-cta{
  position:relative;
  margin-top:14px;
  min-height:56px;
  border-radius:18px;
  background:linear-gradient(135deg,var(--v20-blue),var(--v20-blue-2));
  color:#fff!important;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:0 42px 0 16px;
  text-align:center;
  font-weight:950;
  box-shadow:0 18px 38px -18px rgba(11,94,215,.66);
  transition:transform .18s ease,box-shadow .18s ease;
}
.ai-v21-offer-cta:hover{transform:translateY(-1px);box-shadow:0 24px 48px -18px rgba(11,94,215,.76);}
.ai-v21-offer-cta svg{width:21px;height:21px;}
.ai-v21-offer-cta i{font-style:normal;position:absolute;right:18px;font-size:24px;line-height:1;}
.ai-v21-pack-thumb{
  height:132px;
  margin-top:14px;
  border-radius:20px;
  overflow:hidden;
  background:#EEF5FF;
  border:1px solid #DCE8F8;
}
.ai-v21-pack-thumb img{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center center;
  transform:scale(1.10);
}
.ai-v21-passport{grid-template-columns:repeat(4,minmax(0,1fr));}
.ai-v21-trust-strip{border-color:#CFE0F4;}
.ai-v21-confidence{
  grid-template-columns:auto minmax(0,1fr) minmax(120px,170px);
  background:linear-gradient(135deg,#FFFFFF 0%,#F3F8FF 55%,#E5F1FF 100%);
}
.ai-v21-confidence:before{display:none;}
.ai-v21-confidence-visual{
  position:relative;
  z-index:1;
  width:170px;
  max-width:100%;
  justify-self:end;
}
.ai-v21-confidence-visual svg{display:block;width:100%;height:auto;overflow:visible;}
.ai-v21-confidence-visual .v21-smile{fill:none;stroke:#0B5ED7;stroke-width:5;stroke-linecap:round;opacity:.40;}
.ai-v21-confidence-visual .v21-crowns path{fill:url(#v21crown);stroke:#BFD8FF;stroke-width:2.2;filter:drop-shadow(0 10px 16px rgba(7,27,69,.16));}
.ai-v21-confidence-visual circle{fill:#0B5ED7;filter:drop-shadow(0 10px 18px rgba(11,94,215,.22));}
.ai-v21-confidence-visual .v21-check{fill:none;stroke:#fff;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;}
.ai-v21-story-grid{grid-template-columns:repeat(3,minmax(0,1fr));}
.ai-v21-guide-note{
  margin-top:14px;
  display:inline-flex;
  align-items:center;
  gap:8px;
  min-height:42px;
  border-radius:999px;
  padding:0 14px;
  border:1px solid #CFE0F7;
  background:#fff;
  color:var(--v20-navy);
  font-size:13px;
  font-weight:950;
  box-shadow:0 10px 26px rgba(8,35,82,.05);
}
.ai-v21-guide-note svg{width:17px;height:17px;color:var(--v20-blue);stroke-width:2.4;}
.ai-v21-choice-price{
  display:grid!important;
  grid-template-columns:repeat(3,minmax(0,1fr));
  align-items:end!important;
  gap:10px!important;
}
.ai-v21-choice-price>div{display:grid;gap:3px;}
.ai-v21-choice-price s{color:#94A3B8;font-weight:900;text-decoration-thickness:2px;}
.ai-v21-choice-price b{font-size:19px;color:var(--v20-navy);font-weight:950;white-space:nowrap;}
@media(max-width:1080px){
  .ai-result-v21 .ai-v21-hero{grid-template-columns:1fr;grid-template-areas:"copy" "map" "offer";}
  .ai-v21-offer{position:relative;top:auto;display:grid;grid-template-columns:minmax(0,1fr) auto;gap:0 18px;align-items:start;}
  .ai-v21-offer-badge,.ai-v21-offer h3,.ai-v21-offer p,.ai-v21-price-stack,.ai-v21-offer-cta{grid-column:1;}
  .ai-v21-pack-thumb{grid-column:2;grid-row:1 / span 5;width:230px;height:100%;min-height:180px;margin-top:0;}
  .ai-v21-passport{grid-template-columns:repeat(2,minmax(0,1fr));}
}
@media(max-width:760px){
  .ai-v21-hero-copy,.ai-v21-svg-stage,.ai-v21-offer{border-radius:24px;padding:18px;}
  .ai-v21-action-strip{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));}
  .ai-v21-action-strip button{width:100%;}
  .ai-v21-svg-top{display:grid;gap:8px;}
  .ai-v21-svg-top strong{text-align:left;}
  .ai-v21-offer{display:block;}
  .ai-v21-pack-thumb{width:100%;height:150px;min-height:0;margin-top:14px;}
  .ai-v21-passport{grid-template-columns:1fr;}
  .ai-v21-confidence{grid-template-columns:1fr;}
  .ai-v21-confidence-visual{display:none;}
  .ai-v21-story-grid{grid-template-columns:1fr;}
  .ai-v21-choice-price{grid-template-columns:1fr!important;}
}
@media(max-width:420px){
  .ai-v21-action-strip{grid-template-columns:1fr;}
  .ai-v21-hero-copy h2{font-size:36px;}
  .ai-v21-map-badges span{width:100%;justify-content:flex-start;}
}
@media print{
  .ai-v21-action-strip,.ai-v21-offer-cta{display:none!important;}
  .ai-result-v21 .ai-v21-hero{display:block!important;}
  .ai-v21-offer{position:relative!important;top:auto!important;margin-top:14px!important;}
}

/* v21 final override: make the SVG stage the hero and keep recommendation as sidebar, not the dominant card. */
.ai-result-v21 .ai-v21-hero{
  border:0!important;
  background:transparent!important;
  box-shadow:none!important;
  padding:0!important;
  overflow:visible!important;
}
.ai-result-v21 .ai-v21-hero:before,
.ai-result-v21 .ai-v21-hero:after{display:none!important;}
.ai-result-v21 .ai-v21-offer{grid-area:offer!important;grid-column:auto!important;grid-row:auto!important;}
.ai-result-v21 .ai-v21-svg-stage{grid-area:map!important;grid-column:auto!important;grid-row:auto!important;}
.ai-result-v21 .ai-v21-hero-copy{grid-area:copy!important;}


/* ============================================
   RESULT PAGE V22 — Denticor AI result passport
   Scope: result page only
   ============================================ */
.ai-result-v22{max-width:1480px!important;margin:0 auto!important;display:flex;flex-direction:column;gap:18px;text-align:left;color:#0f172a}.ai-result-v22 *{box-sizing:border-box}.ai-v22-hero{display:grid;grid-template-columns:minmax(0,1fr) minmax(320px,390px);grid-template-areas:"copy side" "map map";gap:18px;align-items:stretch;background:linear-gradient(135deg,#fff 0%,#f5f9ff 54%,#eef6ff 100%);border:1px solid rgba(30,86,170,.16);border-radius:28px;padding:22px;box-shadow:0 24px 70px -52px rgba(7,27,69,.42)}.ai-v22-hero-copy{grid-area:copy;padding:18px 16px 10px;min-width:0}.ai-v22-kicker{display:inline-flex;align-items:center;gap:10px;margin-bottom:18px;color:#174ea6;font-weight:900}.ai-v22-kicker span{display:grid;place-items:center;width:36px;height:36px;border-radius:14px;background:linear-gradient(135deg,#071b45,#0b5ed7);color:#fff;font-size:13px}.ai-v22-kicker strong{font-size:13px;text-transform:uppercase;letter-spacing:.09em}.ai-v22-hero h2{font-size:clamp(36px,5vw,62px);line-height:1.02;letter-spacing:-.055em;color:#071b45;margin:0 0 12px}.ai-v22-hero p{font-size:17px;line-height:1.65;color:#334155;max-width:760px;margin:0 0 10px}.ai-v22-lead{font-size:20px!important;font-weight:800;color:#123b8c!important}.ai-v22-muted{color:#64748b!important}.ai-v22-progress{display:flex;gap:8px;flex-wrap:wrap;margin-top:20px}.ai-v22-progress span{display:inline-flex;align-items:center;min-height:36px;padding:0 13px;border-radius:999px;background:#fff;border:1px solid #dce7fb;color:#33517f;font-size:12px;font-weight:900}.ai-v22-progress .is-active{background:#0b5ed7;border-color:#0b5ed7;color:#fff}.ai-v22-sidebar{grid-area:side;background:#fff;border:1px solid #dbe7fb;border-radius:24px;padding:20px;box-shadow:0 18px 48px -38px rgba(7,27,69,.42);align-self:start;position:sticky;top:86px}.ai-v22-side-badge{display:inline-flex;align-items:center;gap:8px;color:#174ea6;background:#eef6ff;border:1px solid #d5e6ff;border-radius:999px;padding:8px 12px;font-size:12px;font-weight:900;margin-bottom:14px}.ai-v22-side-badge svg{width:15px;height:15px;fill:currentColor;stroke:none}.ai-v22-sidebar h3{font-size:27px;line-height:1.08;letter-spacing:-.04em;color:#071b45;margin:0 0 8px}.ai-v22-sidebar p{font-size:15px;line-height:1.58;color:#64748b;margin:0 0 14px}.ai-v22-box{border-radius:18px;background:linear-gradient(180deg,#f8fbff,#edf5ff);padding:14px;margin:14px 0;display:flex;align-items:center;justify-content:center;overflow:hidden}.ai-v22-box img{display:block;max-width:100%;height:auto;max-height:190px;object-fit:contain}.ai-v22-price-stack{display:grid;gap:8px;margin:14px 0}.ai-v22-price-stack div{display:flex;align-items:center;justify-content:space-between;gap:12px;padding:10px 0;border-bottom:1px solid #e6eefb}.ai-v22-price-stack div:last-child{border-bottom:0}.ai-v22-price-stack span{font-size:12px;font-weight:800;color:#64748b;text-transform:uppercase;letter-spacing:.06em}.ai-v22-price-stack s{color:#94a3b8;font-weight:800}.ai-v22-price-stack strong,.ai-v22-price-stack b{font-size:22px;color:#0f8a3a;font-weight:900}.ai-v22-sidebar-cta{display:flex;align-items:center;justify-content:center;gap:10px;width:100%;min-height:54px;border-radius:16px;background:linear-gradient(135deg,#071b45,#0b5ed7);color:#fff!important;font-weight:900;text-decoration:none;border-bottom:0;margin-top:14px}.ai-v22-sidebar-cta svg{width:20px;height:20px;stroke:currentColor;fill:none}.ai-v22-sidebar-cta i{font-style:normal;margin-left:auto;padding-right:4px}.ai-v22-map{grid-area:map;background:linear-gradient(135deg,#061949 0%,#0b3fae 48%,#155dd8 100%);border-radius:24px;padding:18px 18px 16px;overflow:hidden}.ai-v22-map .ai-m2-svg-wrap{width:100%;max-width:980px;margin:0 auto}.ai-v22-map .ai-m2-dental-svg{display:block;width:100%;height:auto;min-height:280px}.ai-v22-map-summary{display:flex;align-items:center;justify-content:space-between;gap:14px;flex-wrap:wrap;margin-top:10px;padding:14px 16px;border-radius:18px;background:rgba(255,255,255,.12);border:1px solid rgba(255,255,255,.18);color:#fff}.ai-v22-map-summary strong{font-size:12px;text-transform:uppercase;letter-spacing:.1em;color:#dff7ff}.ai-v22-map-summary span{font-size:19px;font-weight:900;line-height:1.2}.ai-v22-map-summary small{font-size:13px;color:rgba(255,255,255,.76);font-weight:700}.ai-v22-ai-check,.ai-v22-guide,.ai-v22-metrics,.ai-v22-options,.ai-v22-material,.ai-v22-after{background:#fff;border:1px solid #dbe7fb;border-radius:24px;box-shadow:0 18px 48px -42px rgba(7,27,69,.35);padding:24px}.ai-v22-ai-check{display:grid;grid-template-columns:76px minmax(0,1fr);gap:18px;align-items:start;background:linear-gradient(135deg,#fff,#f3fbf7);border-color:rgba(45,110,76,.18)}.ai-v22-ai-icon{width:76px;height:76px;border-radius:24px;background:#edf8f2;color:#2d6e4c;display:grid;place-items:center}.ai-v22-ai-icon svg{width:34px;height:34px;stroke:currentColor;fill:none;stroke-width:1.8}.ai-v22-ai-check h3,.ai-v22-guide h3,.ai-v22-metrics h3,.ai-v22-options h3,.ai-v22-material h3,.ai-v22-after h3{margin:0 0 10px;color:#071b45;font-size:24px;line-height:1.18;letter-spacing:-.035em}.ai-v22-ai-check p{font-size:16px;line-height:1.7;color:#334155;margin:8px 0 0}.ai-v22-ai-check small{display:block;margin-top:8px;font-size:13px;color:#64748b}.ai-v22-ai-loading{font-size:15px;color:#64748b;line-height:1.6}.ai-v22-ai-chips{display:flex;flex-wrap:wrap;gap:9px;margin:10px 0 8px}.ai-v22-ai-chips span{display:inline-flex;align-items:center;min-height:36px;padding:0 12px;border-radius:999px;background:#fff;border:1px solid rgba(45,110,76,.18);color:#2d6e4c;font-size:12px;font-weight:900}.ai-v22-guide{background:linear-gradient(135deg,#fff 0%,#f8fbff 50%,#eff7ff 100%);position:relative;overflow:hidden}.ai-v22-guide:before{content:"";position:absolute;right:-70px;top:-90px;width:220px;height:220px;border-radius:50%;background:radial-gradient(circle,rgba(11,94,215,.13),rgba(11,94,215,0))}.ai-v22-guide-head{position:relative;z-index:1}.ai-v22-guide-head>span,.ai-v22-options-head>span{display:inline-flex;margin-bottom:9px;font-size:11px;font-weight:900;text-transform:uppercase;letter-spacing:.12em;color:#174ea6}.ai-v22-guide p,.ai-v22-options p,.ai-v22-material p,.ai-v22-after p{font-size:16px;line-height:1.7;color:#334155;margin:0}.ai-v22-guide-points{position:relative;z-index:1;display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:12px;margin:18px 0}.ai-v22-guide-points div{display:flex;align-items:center;justify-content:center;min-height:62px;border-radius:18px;background:#fff;border:1px solid #dbe7fb;color:#174ea6;font-weight:900;font-size:15px;text-align:center;padding:12px}.ai-v22-guide-note{position:relative;z-index:1;color:#64748b!important;font-size:15px!important}.ai-v22-metric-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:12px;margin-top:14px}.ai-v22-metric-grid>div{border:1px solid #e1eaf8;border-radius:18px;background:#fbfdff;padding:16px;display:grid;gap:8px;min-height:112px}.ai-v22-metric-grid svg{width:24px;height:24px;color:#0b5ed7;stroke:currentColor;fill:none}.ai-v22-metric-grid span{font-size:12px;color:#64748b;font-weight:900;text-transform:uppercase;letter-spacing:.06em}.ai-v22-metric-grid strong{font-size:20px;color:#071b45;font-weight:900;line-height:1.1}.ai-v22-options-head{max-width:840px;margin-bottom:18px}.ai-v22-option-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:16px}.ai-v22-option-grid.single{grid-template-columns:minmax(0,1fr)}.ai-v22-option-card{border-radius:24px;padding:22px;border:2px solid #dbe7fb;background:#fff;display:flex;flex-direction:column;gap:14px}.ai-v22-option-card.is-primary{border-color:rgba(11,94,215,.35);background:linear-gradient(180deg,#fff 0%,#f4f9ff 100%)}.ai-v22-option-card.is-secondary{border-color:rgba(139,115,53,.35);background:linear-gradient(180deg,#fff 0%,#fff9ed 100%)}.ai-v22-option-head{display:flex;align-items:center;justify-content:space-between;gap:12px}.ai-v22-option-head span{display:inline-flex;align-items:center;min-height:34px;padding:0 12px;border-radius:999px;color:#fff;background:#0b5ed7;font-size:12px;font-weight:900;text-transform:uppercase;letter-spacing:.08em}.ai-v22-option-card.is-secondary .ai-v22-option-head span{background:#8b7335}.ai-v22-option-head small{font-size:12px;font-weight:900;color:#64748b;text-transform:uppercase;letter-spacing:.06em}.ai-v22-option-card h4{font-size:30px;line-height:1.05;letter-spacing:-.045em;color:#071b45;margin:0}.ai-v22-option-card p{font-size:15px;line-height:1.65;color:#475569;margin:0}.ai-v22-option-components{display:flex;flex-wrap:wrap;gap:8px}.ai-v22-option-components span{display:inline-flex;align-items:center;min-height:34px;padding:0 11px;border-radius:999px;background:#fff;border:1px solid #dbe7fb;color:#174ea6;font-size:12px;font-weight:900}.ai-v22-option-card.is-secondary .ai-v22-option-components span{border-color:#eadfbd;color:#8b7335}.ai-v22-option-price{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:10px;border-top:1px solid #e5edf9;padding-top:14px}.ai-v22-option-price div{border-radius:16px;background:#fff;border:1px solid #e5edf9;padding:12px}.ai-v22-option-price span{display:block;font-size:11px;color:#64748b;font-weight:900;text-transform:uppercase;letter-spacing:.06em;margin-bottom:4px}.ai-v22-option-price s{font-size:17px;color:#94a3b8;font-weight:800}.ai-v22-option-price strong,.ai-v22-option-price b{font-size:22px;color:#0f8a3a;font-weight:900}.ai-v22-option-cta{margin-top:auto;display:flex;align-items:center;justify-content:center;gap:10px;min-height:56px;border-radius:18px;background:linear-gradient(135deg,#071b45,#0b5ed7);color:#fff!important;font-weight:900;text-decoration:none;border-bottom:0}.ai-v22-option-card.is-secondary .ai-v22-option-cta{background:linear-gradient(135deg,#5d4717,#9a7b2f)}.ai-v22-option-cta svg{width:20px;height:20px;stroke:currentColor;fill:none}.ai-v22-material small{display:block;margin-top:6px;color:#64748b;font-size:13px;line-height:1.55}.ai-v22-after{display:grid;grid-template-columns:1fr repeat(3,minmax(0,1fr));gap:14px;align-items:stretch;background:linear-gradient(135deg,#fff,#f6fbff)}.ai-v22-after h3{grid-row:1 / span 1;margin-top:4px}.ai-v22-after div{border:1px solid #dbe7fb;border-radius:18px;background:#fff;padding:16px;display:flex;gap:12px;align-items:flex-start}.ai-v22-after div span{width:30px;height:30px;flex:0 0 30px;border-radius:12px;background:#0b5ed7;color:#fff;display:grid;place-items:center;font-weight:900}.ai-v22-actions{display:flex;justify-content:center;gap:10px;flex-wrap:wrap}.ai-v22-actions button{border:1.5px solid #dbe7fb;background:#fff;border-radius:16px;min-height:50px;padding:0 18px;display:inline-flex;align-items:center;gap:10px;color:#174ea6;font-family:inherit;font-weight:900;cursor:pointer}.ai-v22-actions svg{width:20px;height:20px;stroke:currentColor;fill:none}@media(max-width:1100px){.ai-v22-hero{grid-template-columns:1fr;grid-template-areas:"copy" "side" "map"}.ai-v22-sidebar{position:relative;top:auto}.ai-v22-after{grid-template-columns:1fr}}@media(max-width:760px){.ai-result-v22{gap:14px}.ai-v22-hero,.ai-v22-ai-check,.ai-v22-guide,.ai-v22-metrics,.ai-v22-options,.ai-v22-material,.ai-v22-after{border-radius:20px;padding:18px}.ai-v22-hero h2{font-size:38px}.ai-v22-hero-copy{padding:6px 2px 0}.ai-v22-progress{display:grid;grid-template-columns:1fr 1fr}.ai-v22-progress span{justify-content:center}.ai-v22-map{padding:12px;border-radius:20px}.ai-v22-map .ai-m2-dental-svg{min-height:210px}.ai-v22-map-summary{display:grid;gap:6px;text-align:left}.ai-v22-ai-check{grid-template-columns:1fr}.ai-v22-ai-icon{width:64px;height:64px;border-radius:20px}.ai-v22-guide-points{grid-template-columns:1fr}.ai-v22-metric-grid{grid-template-columns:1fr 1fr}.ai-v22-option-grid{grid-template-columns:1fr}.ai-v22-option-price{grid-template-columns:1fr}.ai-v22-option-card h4{font-size:26px}}@media(max-width:420px){.ai-v22-metric-grid{grid-template-columns:1fr}.ai-v22-hero h2{font-size:34px}.ai-v22-kicker{align-items:flex-start}}

/* Result guide visual cards - final cascade override */
.ai-v22-guide-visuals{position:relative;z-index:1;margin:0 0 16px;border:1px solid #dbe7fb;border-radius:18px;background:#fff;padding:14px}
.ai-v22-guide-visuals-head{display:flex;align-items:flex-end;justify-content:space-between;gap:12px;margin:0 0 12px}
.ai-v22-guide-visuals-head span{font-size:11px;font-weight:900;text-transform:uppercase;letter-spacing:.12em;color:#174ea6}
.ai-v22-guide-visuals-head strong{font-size:16px;line-height:1.25;color:#071b45;font-weight:900;text-align:right}
.ai-v22-guide-visual-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:10px}
.ai-v22-guide-visual-grid figure{margin:0;border:1px solid #e5edf9;border-radius:16px;background:#f8fbff;overflow:hidden}
.ai-v22-guide-visual-grid img{display:block;width:100%;height:auto;aspect-ratio:16/10;object-fit:contain;background:#f7fbff}
.ai-v22-guide-visual-grid figcaption{padding:8px 10px;color:#64748b;font-size:11px;font-weight:900;text-transform:uppercase;letter-spacing:.08em}
@media(max-width:760px){
  .ai-v22-guide-visuals-head{display:grid;gap:5px}
  .ai-v22-guide-visuals-head strong{text-align:left}
  .ai-v22-guide-visual-grid{grid-template-columns:1fr}
}

/* Result hero without duplicate offer sidebar */
.ai-v22-hero.ai-v22-hero-no-offer{grid-template-columns:1fr!important;grid-template-areas:"map" "copy"!important}
.ai-v22-hero.ai-v22-hero-no-offer .ai-v22-hero-copy{max-width:980px}

/* Result guide cards as square-style desktop grid */
.ai-v22-guide-list{grid-template-columns:repeat(4,minmax(0,1fr))!important;gap:16px!important;align-items:start}
.ai-v22-guide-card{min-width:0;border-radius:18px!important;background:linear-gradient(180deg,#fff 0%,#f7fbff 100%)!important;box-shadow:0 18px 46px -38px rgba(7,27,69,.48)!important;transition:border-color .18s ease,box-shadow .18s ease,transform .18s ease}
.ai-v22-guide-card:not(.is-open):hover{border-color:rgba(11,94,215,.35);box-shadow:0 24px 56px -42px rgba(7,27,69,.56)!important;transform:translateY(-2px)}
.ai-v22-guide-card:not(.is-open) .ai-v22-guide-card-toggle{min-height:300px;height:100%;display:flex!important;flex-direction:column;align-items:flex-start;justify-content:flex-start;gap:12px!important;padding:18px!important}
.ai-v22-guide-card:not(.is-open) .ai-v22-guide-index{width:42px;height:42px;border-radius:14px;background:linear-gradient(135deg,#071b45,#0b5ed7);color:#fff;box-shadow:0 12px 24px -18px rgba(7,27,69,.7)}
.ai-v22-guide-card:not(.is-open) .ai-v22-guide-card-main{display:grid;gap:7px;width:100%}
.ai-v22-guide-card:not(.is-open) .ai-v22-guide-card-main small{font-size:12px;letter-spacing:.08em;color:#174ea6}
.ai-v22-guide-card:not(.is-open) .ai-v22-guide-card-main strong{font-size:19px;line-height:1.22;letter-spacing:-.02em;color:#071b45}
.ai-v22-guide-card:not(.is-open) .ai-v22-guide-card-main em{font-size:13px;line-height:1.35;color:#64748b}
.ai-v22-guide-card:not(.is-open) .ai-v22-guide-card-meta{width:100%;display:grid!important;grid-template-columns:1fr;gap:7px;margin-top:2px}
.ai-v22-guide-card:not(.is-open) .ai-v22-guide-card-meta b{width:100%;min-height:29px;justify-content:center;border-radius:10px;background:#fff;color:#33517f;font-size:11px;white-space:normal;text-align:center}
.ai-v22-guide-card:not(.is-open) .ai-v22-guide-card-action{width:100%;margin-top:auto;padding-top:12px;border-top:1px solid #e5edf9;justify-content:space-between;color:#0b5ed7}
.ai-v22-guide-card:not(.is-open) .ai-v22-guide-card-action i{width:34px;height:34px;border-radius:12px}
.ai-v22-guide-card.is-open{grid-column:1/-1!important;border-radius:22px!important;background:#fff!important}
.ai-v22-guide-card.is-open .ai-v22-guide-card-toggle{min-height:auto;display:grid!important;grid-template-columns:52px minmax(0,1fr) auto;align-items:center;gap:10px 14px!important;padding:18px 20px!important;background:#fff}
.ai-v22-guide-card.is-open .ai-v22-guide-index{width:52px;height:52px;border-radius:16px}
.ai-v22-guide-card.is-open .ai-v22-guide-card-main strong{overflow-wrap:normal;word-break:normal;hyphens:manual}
.ai-v22-guide-card.is-open .ai-v22-guide-card-meta{grid-column:2/-1}
.ai-v22-guide-card.is-open .ai-v22-guide-card-action{grid-column:3;grid-row:1;justify-content:flex-end}
@media(max-width:1180px){
  .ai-v22-guide-list{grid-template-columns:repeat(3,minmax(0,1fr))!important}
}
@media(max-width:900px){
  .ai-v22-guide-list{grid-template-columns:repeat(2,minmax(0,1fr))!important}
  .ai-v22-guide-card.is-open .ai-v22-guide-card-toggle{grid-template-columns:44px minmax(0,1fr)}
  .ai-v22-guide-card.is-open .ai-v22-guide-card-meta,.ai-v22-guide-card.is-open .ai-v22-guide-card-action{grid-column:2}
  .ai-v22-guide-card.is-open .ai-v22-guide-card-action{grid-row:auto;justify-content:flex-start}
}
@media(max-width:620px){
  .ai-v22-guide-list{grid-template-columns:1fr!important}
  .ai-v22-guide-card:not(.is-open) .ai-v22-guide-card-toggle{min-height:0}
.ai-v22-guide-card.is-open .ai-v22-guide-card-toggle{grid-template-columns:1fr}
  .ai-v22-guide-card.is-open .ai-v22-guide-card-meta,.ai-v22-guide-card.is-open .ai-v22-guide-card-action{grid-column:auto}
  .ai-v22-guide-card.is-open .ai-v22-guide-card-action{grid-row:auto}
}

/* Result page cockpit headline */
.ai-exp-command-result-title{margin:6px 0 12px;color:#071b45;font-size:clamp(30px,4.2vw,52px);line-height:1.02;letter-spacing:-.05em;font-weight:950}
.ai-v22-hero.ai-v22-hero-no-offer{grid-template-areas:"map"!important}

/* Guide card count-aware desktop fill */
.ai-v22-guide-list.ai-v22-guide-list-1{grid-template-columns:1fr!important}
.ai-v22-guide-list.ai-v22-guide-list-2{grid-template-columns:repeat(2,minmax(0,1fr))!important}
.ai-v22-guide-list.ai-v22-guide-list-3{grid-template-columns:repeat(3,minmax(0,1fr))!important}
.ai-v22-guide-list.ai-v22-guide-list-4,.ai-v22-guide-list.ai-v22-guide-list-many{grid-template-columns:repeat(4,minmax(0,1fr))!important}
@media(max-width:1180px){
  .ai-v22-guide-list.ai-v22-guide-list-4,.ai-v22-guide-list.ai-v22-guide-list-many{grid-template-columns:repeat(3,minmax(0,1fr))!important}
}
@media(max-width:900px){
  .ai-v22-guide-list.ai-v22-guide-list-3,.ai-v22-guide-list.ai-v22-guide-list-4,.ai-v22-guide-list.ai-v22-guide-list-many{grid-template-columns:repeat(2,minmax(0,1fr))!important}
}
@media(max-width:620px){
  .ai-v22-guide-list.ai-v22-guide-list-1,.ai-v22-guide-list.ai-v22-guide-list-2,.ai-v22-guide-list.ai-v22-guide-list-3,.ai-v22-guide-list.ai-v22-guide-list-4,.ai-v22-guide-list.ai-v22-guide-list-many{grid-template-columns:1fr!important}
}

/* Result conversion flow: offer-first sections and optional guide preview */
.ai-v22-package,.ai-v22-faq{background:#fff;border:1px solid #dbe7fb;border-radius:24px;box-shadow:0 18px 48px -42px rgba(7,27,69,.35);padding:24px}
.ai-v22-package{background:linear-gradient(135deg,#fff 0%,#f7fbff 100%)}
.ai-v22-package-head,.ai-v22-faq-head{max-width:780px;margin-bottom:16px}
.ai-v22-package-head>span,.ai-v22-faq-head>span{display:inline-flex;margin-bottom:9px;font-size:11px;font-weight:900;text-transform:uppercase;letter-spacing:.12em;color:#174ea6}
.ai-v22-package h3,.ai-v22-faq h3{margin:0 0 10px;color:#071b45;font-size:24px;line-height:1.18;letter-spacing:-.035em}
.ai-v22-package p{font-size:16px;line-height:1.7;color:#334155;margin:0}
.ai-v22-package-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px}
.ai-v22-package-grid div{min-height:64px;border:1px solid #dbe7fb;border-radius:18px;background:#fff;padding:14px;display:grid;grid-template-columns:24px minmax(0,1fr);gap:10px;align-items:center}
.ai-v22-package-grid svg{width:22px;height:22px;color:#0f8a3a;stroke:currentColor;fill:none}
.ai-v22-package-grid span{font-size:15px;line-height:1.45;color:#334155;font-weight:850}
.ai-v22-single-offer-layout{display:grid;grid-template-columns:minmax(0,1fr) minmax(0,1fr);gap:18px;align-items:start}
.ai-v22-single-offer-side{display:grid;gap:18px;min-width:0}
.ai-v22-single-offer-layout>.ai-v22-options{min-width:0}
.ai-v22-single-offer-layout>.ai-v22-options{position:relative;border-color:rgba(11,94,215,.42);background:linear-gradient(180deg,#fff 0%,#f3f8ff 100%);box-shadow:0 28px 72px -46px rgba(7,27,69,.62),0 0 0 4px rgba(11,94,215,.055)}
.ai-v22-single-offer-layout>.ai-v22-options:before{content:"";position:absolute;left:24px;right:24px;top:-1px;height:4px;border-radius:0 0 999px 999px;background:linear-gradient(90deg,#071b45,#0b5ed7,#58a6ff)}
.ai-v22-single-offer-layout>.ai-v22-options:after{content:"ODPORÚČANÉ PRE VÁS";position:absolute;top:18px;right:18px;border:1px solid rgba(11,94,215,.18);background:#fff;color:#0b5ed7;border-radius:999px;padding:7px 10px;font-size:10px;line-height:1;font-weight:950;letter-spacing:.1em}
.ai-v22-single-offer-layout>.ai-v22-options .ai-v22-options-head{padding-right:0;padding-top:32px}
.ai-v22-single-offer-layout>.ai-v22-options .ai-v22-option-card.is-primary{border-color:rgba(11,94,215,.48);box-shadow:inset 0 0 0 1px rgba(11,94,215,.06)}
.ai-v22-guide-preview-section{background:#fff}
.ai-v22-guide-preview{position:relative;z-index:1;margin-top:16px}
.ai-v22-guide-preview summary{list-style:none;cursor:pointer;border:1px solid #dbe7fb;border-radius:18px;background:linear-gradient(135deg,#f8fbff,#eef6ff);padding:16px 18px;display:flex;align-items:center;justify-content:space-between;gap:16px;color:#071b45}
.ai-v22-guide-preview summary::-webkit-details-marker{display:none}
.ai-v22-guide-preview summary span{font-size:16px;font-weight:950}
.ai-v22-guide-preview summary small{font-size:13px;line-height:1.4;color:#64748b;font-weight:800;text-align:right}
.ai-v22-guide-preview[open] summary{border-color:rgba(11,94,215,.35);box-shadow:0 14px 34px -30px rgba(7,27,69,.45)}
.ai-v22-faq{display:grid;gap:10px}
.ai-v22-faq details{border:1px solid #dbe7fb;border-radius:16px;background:#fff;overflow:hidden;transition:border-color .16s ease,box-shadow .16s ease,background .16s ease}
.ai-v22-faq details[open]{border-color:rgba(11,94,215,.34);background:#fbfdff;box-shadow:0 14px 34px -32px rgba(7,27,69,.46)}
.ai-v22-faq summary{list-style:none;cursor:pointer;padding:13px 13px 13px 16px;color:#071b45;font-size:16px;line-height:1.35;font-weight:900;display:grid;grid-template-columns:minmax(0,1fr) 32px;gap:12px;align-items:center}
.ai-v22-faq summary::-webkit-details-marker{display:none}
.ai-v22-faq summary::after{content:"+";width:32px;height:32px;border-radius:12px;background:#eef6ff;border:1px solid #dbe7fb;color:#0b5ed7;display:grid;place-items:center;font-size:20px;line-height:1;font-weight:800}
.ai-v22-faq details[open] summary::after{content:"-";background:#0b5ed7;border-color:#0b5ed7;color:#fff}
.ai-v22-faq p{padding:0 16px 16px;margin:0;color:#475569;font-size:15px;line-height:1.65}
.ai-v22-sticky-cta{transition:opacity .18s ease,transform .18s ease}
.ai-v22-sticky-cta strong{display:block!important;font-size:15px!important;line-height:1.25!important;color:#fff!important}
.ai-v22-sticky-cta span{margin-top:2px;color:rgba(255,255,255,.72)!important;text-transform:none!important;letter-spacing:0!important}
.ai-v22-sticky-cta button{white-space:nowrap}
.ai-v22-sticky-cta.is-hidden{opacity:0!important;transform:translateY(18px)!important;pointer-events:none!important}
@media(max-width:900px){
  .ai-v22-package-grid{grid-template-columns:1fr}
  .ai-v22-single-offer-layout .ai-v22-option-price{grid-template-columns:1fr}
  .ai-v22-actions{width:100%;display:flex;justify-content:center;align-items:center;text-align:center}
  .ai-v22-actions button{margin-left:auto;margin-right:auto;justify-content:center}
}
@media(max-width:760px){
  .ai-result-v22{padding-bottom:88px!important}
  .ai-v22-single-offer-layout{grid-template-columns:1fr;gap:14px}
  .ai-v22-single-offer-side{gap:14px}
  .ai-v22-single-offer-layout>.ai-v22-options:before{left:18px;right:18px}
  .ai-v22-single-offer-layout>.ai-v22-options:after{position:static;display:inline-flex;width:max-content;margin:0 0 12px;font-size:9.5px}
  .ai-v22-single-offer-layout>.ai-v22-options .ai-v22-options-head{padding-right:0;padding-top:0}
  .ai-v22-package,.ai-v22-faq{border-radius:20px;padding:18px}
  .ai-v22-faq summary{font-size:15.5px;padding:12px 12px 12px 14px;grid-template-columns:minmax(0,1fr) 30px}
  .ai-v22-faq summary::after{width:30px;height:30px;border-radius:11px}
  .ai-v22-actions{display:grid;place-items:center;width:100%;padding:0 8px}
  .ai-v22-actions button{width:min(100%,340px);min-height:52px;text-align:center}
  .ai-v22-guide-preview summary{display:grid;gap:6px}
  .ai-v22-guide-preview summary small{text-align:left}
  .ai-v22-sticky-cta{left:12px!important;right:12px!important;bottom:12px!important;max-width:none!important;border-radius:18px!important;padding:11px 11px 11px 14px!important}
  .ai-v22-sticky-cta button{min-height:44px!important;padding:0 14px!important}
}
@media(min-width:761px){
  .ai-v22-sticky-cta{display:none!important}
}
@media print{
  .ai-v22-sticky-cta{display:none!important}
}
