.ai-chat-trigger{
  position:fixed;
  left:18px;
  bottom: calc(18px + env(safe-area-inset-bottom, 0px));
  z-index:1200;
  min-height:54px;
  padding:0 18px;
  border:none;
  border-radius:16px;
  background:linear-gradient(135deg,#ff7f3f,#f46b24);
  color:#fff;
  font-weight:900;
  display:flex;
  align-items:center;
  gap:10px;
  box-shadow:0 16px 34px rgba(255,127,63,.28);
  cursor:pointer;
}

.ai-chat-backdrop{
  position:fixed;
  inset:0;
  z-index:1998;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,127,63,.18), transparent 35%),
    radial-gradient(circle at 80% 80%, rgba(0,60,99,.18), transparent 40%),
    rgba(15,23,42,.55);
  backdrop-filter:blur(14px) saturate(140%);
  -webkit-backdrop-filter:blur(14px) saturate(140%);
  opacity:0;
  visibility:hidden;
  transition:opacity .28s ease, visibility .28s ease;
}

.ai-chat-backdrop.is-open{
  opacity:1;
  visibility:visible;
}

.ai-chat-modal{
  position:fixed;
  inset:0;
  z-index:1999;
  display:grid;
  place-items:center;
  padding:20px;
  pointer-events:none;
}

.ai-chat-modal.is-open{
  pointer-events:auto;
}

.ai-chat-modal__panel{
  width:min(760px, 100%);
  height:min(84vh, 860px);
  background:#fff;
  border-radius:28px;
  box-shadow:0 24px 80px rgba(15,23,42,.22);
  display:grid;
  grid-template-rows:auto 1fr auto;
  overflow:hidden;
  transform:translateY(22px) scale(.98);
  opacity:0;
  transition:transform .28s ease, opacity .28s ease;
}

.ai-chat-modal.is-open .ai-chat-modal__panel{
  transform:translateY(0) scale(1);
  opacity:1;
}

.ai-chat-modal__header{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:16px;
  padding:22px 22px 18px;
  border-bottom:1px solid #eef2f7;
  background:linear-gradient(180deg,#fff,#fcfcfd);
}

.ai-chat-modal__eyebrow{
  display:inline-flex;
  align-items:center;
  padding:7px 11px;
  border-radius:999px;
  background:#fff7f2;
  border:1px solid rgba(255,127,63,.16);
  color:#8a4319;
  font-size:12px;
  font-weight:800;
  letter-spacing:.05em;
  text-transform:uppercase;
  margin-bottom:8px;
}

.ai-chat-modal__header h3{
  margin:0;
  font-size:24px;
  color:#111827;
}

.ai-chat-modal__close{
  width:42px;
  height:42px;
  border:none;
  border-radius:12px;
  background:#f8fafc;
  color:#111827;
  cursor:pointer;
  display:grid;
  place-items:center;
}

.ai-chat-modal__body{
  padding:18px;
  overflow:auto;
  background:#f7f8fb;
  display:grid;
  gap:14px;
  align-content:start;
}

.ai-msg{
  display:flex;
  gap:10px;
  align-items:flex-start;
}

.ai-msg--user{
  justify-content:flex-end;
}

.ai-msg__avatar{
  width:38px;
  height:38px;
  border-radius:12px;
  display:grid;
  place-items:center;
  flex:0 0 38px;
  font-size:18px;
}

.ai-msg--bot .ai-msg__avatar{
  background:linear-gradient(135deg,#ff7f3f,#f46b24);
  color:#fff;
}

.ai-msg--user .ai-msg__avatar{
  background:#003c63;
  color:#fff;
  order:2;
}

.ai-msg__bubble{
  max-width:min(82%, 560px);
  padding:14px 16px;
  border-radius:18px;
  line-height:1.55;
  box-shadow:0 6px 18px rgba(17,24,39,.04);
}

.ai-msg--bot .ai-msg__bubble{
  background:#fff;
  border:1px solid #e5e7eb;
  color:#1f2937;
}

.ai-msg--user .ai-msg__bubble{
  background:linear-gradient(135deg,#003c63,#0b4e7d);
  color:#fff;
}

.ai-msg__bubble h4{
  margin:0 0 8px;
  font-size:18px;
}

.ai-msg__bubble p{
  margin:0 0 8px;
}

.ai-msg__bubble p:last-child{
  margin-bottom:0;
}

.ai-msg__choices{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:10px;
}

.ai-choice{
  min-height:42px;
  border:1px solid #e5e7eb;
  border-radius:999px;
  background:#fff;
  padding:0 14px;
  font-weight:700;
  color:#1f2937;
  cursor:pointer;
}

.ai-choice:hover{
  border-color:rgba(255,127,63,.35);
  box-shadow:0 8px 18px rgba(17,24,39,.05);
}

.ai-result-card{
  display:grid;
  gap:12px;
}

.ai-result-card__head{
  padding:16px;
  border-radius:18px;
  background:linear-gradient(145deg, rgba(255,127,63,.08), rgba(255,255,255,1) 38%, rgba(0,60,99,.03));
  border:1px solid rgba(255,127,63,.22);
}

.ai-result-card__head strong{
  display:block;
  font-size:22px;
  color:#111827;
  margin-bottom:6px;
}

.ai-result-card__head span{
  color:#6b7280;
}

.ai-result-card__notes{
  display:grid;
  gap:10px;
}

.ai-result-note{
  padding:12px 14px;
  border-radius:14px;
  background:#f8fafc;
  border:1px solid #e2e8f0;
  color:#334155;
}

.ai-result-card__actions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:4px;
}

.ai-result-card__actions .btn{
  min-width:210px;
}

.adv-progress {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 2px;
}
.adv-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #e5e7eb;
  flex-shrink: 0;
  transition: width .2s, background .2s;
}
.adv-dot--done    { background: #ff7f3f; }
.adv-dot--active  { background: #ff7f3f; width: 18px; }
.adv-progress__label {
  margin-left: auto;
  font-size: 11px;
  font-weight: 700;
  color: #9ca3af;
  letter-spacing: .03em;
}

.adv-question { display: grid; gap: 12px; }
.adv-question__text {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: #111827;
  line-height: 1.3;
}

.adv-choices { display: grid; gap: 8px; }
.adv-choices--grid { grid-template-columns: 1fr 1fr; }
.adv-choices--list { grid-template-columns: 1fr; }

.adv-choice {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border: 1.5px solid #e5e7eb;
  border-radius: 14px;
  background: #fff;
  cursor: pointer;
  text-align: left;
  transition: border-color .15s, background .15s, box-shadow .15s;
}
.adv-choices--grid .adv-choice {
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding: 14px;
}
.adv-choice:hover {
  border-color: #ff7f3f;
  background: #fff7f2;
  box-shadow: 0 4px 14px rgba(255,127,63,.1);
}
.adv-choice__icon {
  font-size: 22px;
  color: #ff7f3f;
  flex-shrink: 0;
}
.adv-choice__body { display: flex; flex-direction: column; gap: 2px; }
.adv-choice__label { font-size: 14px; font-weight: 700; color: #111827; }
.adv-choice__hint  { font-size: 12px; color: #9ca3af; line-height: 1.3; }

.adv-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.adv-result { display: grid; gap: 14px; }

.adv-result__head {
  padding: 18px;
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(255,127,63,.07), #fff 45%);
  border: 1px solid rgba(255,127,63,.22);
}
.adv-result__badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255,127,63,.12);
  color: #c2410c;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.adv-result__title {
  display: block;
  font-size: 20px;
  font-weight: 800;
  color: #111827;
  line-height: 1.25;
  margin-bottom: 6px;
}
.adv-result__desc {
  margin: 0 0 14px;
  font-size: 14px;
  color: #6b7280;
  line-height: 1.5;
}
.adv-result__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.adv-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #f1f5f9;
  font-size: 12px;
  font-weight: 600;
  color: #374151;
}
.adv-chip .ph { color: #6b7280; font-size: 13px; }

.adv-result__notes { display: grid; gap: 8px; }
.adv-note {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  padding: 10px 12px;
  border-radius: 12px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  font-size: 13px;
  color: #334155;
  line-height: 1.45;
}
.adv-note__icon { color: #16a34a; font-size: 16px; flex-shrink: 0; margin-top: 1px; }

.adv-result__actions { display: grid; gap: 8px; }
.adv-result__btn { text-align: center; }
.adv-result__restart {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: transparent;
  font-size: 13px;
  font-weight: 600;
  color: #9ca3af;
  cursor: pointer;
  transition: color .12s, border-color .12s;
}
.adv-result__restart:hover { color: #6b7280; border-color: #d1d5db; }

.ai-chat-modal__footer {
  border-top: 1px solid #eef2f7;
  background: #fff;
  display: grid;
  gap: 10px;
  padding: 14px 16px 18px;
}

.footer-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

.footer-tab {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 8px 6px;
  border: 1.5px solid #e5e7eb;
  border-radius: 12px;
  background: transparent;
  font-size: 12px;
  font-weight: 700;
  color: #6b7280;
  cursor: pointer;
  white-space: nowrap;
  transition: background .15s, border-color .15s, color .15s;
}

.footer-tab .ph { font-size: 14px; }

.footer-tab:hover {
  background: #f9fafb;
  border-color: #d1d5db;
  color: #374151;
}

.footer-tab.is-active {
  background: #fff7f2;
  border-color: #ff7f3f;
  color: #c2410c;
}

.footer-panel {
  display: grid;
  gap: 8px;
}
.footer-panel[hidden] { display: none; }

.footer-action {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid #e5e7eb;
  border-radius: 14px;
  background: #fff;
  text-align: left;
  cursor: pointer;
  transition: border-color .15s, background .15s, box-shadow .15s;
}

.footer-action--primary:hover {
  border-color: #ff7f3f;
  background: #fff7f2;
  box-shadow: 0 4px 12px rgba(255,127,63,.1);
}

.footer-action .ph {
  font-size: 20px;
  color: #ff7f3f;
  flex-shrink: 0;
}

.footer-action span {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.footer-action strong {
  font-size: 13px;
  font-weight: 700;
  color: #111827;
}

.footer-action small {
  font-size: 11px;
  color: #9ca3af;
}

.footer-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.footer-pill {
  padding: 7px 13px;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  background: #fff;
  font-size: 12px;
  font-weight: 600;
  color: #374151;
  cursor: pointer;
  transition: border-color .12s, color .12s;
}

.footer-pill:hover {
  border-color: rgba(255,127,63,.4);
  color: #c2410c;
}

.footer-activate {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border: 1.5px solid #e5e7eb;
  border-radius: 14px;
  background: #fff;
  text-decoration: none;
  cursor: pointer;
  transition: border-color .15s, background .15s;
}

.footer-activate:hover {
  border-color: #ff7f3f;
  background: #fff7f2;
}

.footer-activate__icon {
  font-size: 20px;
  color: #ff7f3f;
  flex-shrink: 0;
}

.footer-activate__body {
  display: flex;
  flex-direction: column;
  gap: 1px;
  flex: 1;
}

.footer-activate__body strong {
  font-size: 13px;
  font-weight: 700;
  color: #111827;
}

.footer-activate__body small {
  font-size: 11px;
  color: #9ca3af;
}

.footer-activate__arrow {
  color: #d1d5db;
  font-size: 16px;
  flex-shrink: 0;
  transition: transform .15s, color .15s;
}

.footer-activate:hover .footer-activate__arrow {
  color: #ff7f3f;
  transform: translateX(2px);
}

.footer-section { display: grid; gap: 6px; }
.footer-section__label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #9ca3af;
  padding: 0 2px;
}
.footer-section + .footer-section {
  padding-top: 8px;
  border-top: 1px solid #f1f5f9;
  margin-top: 2px;
}

.footer-coris-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}
.footer-coris-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px;
  border: 1.5px solid #e5e7eb;
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  text-align: left;
  transition: border-color .15s, background .15s;
}
.footer-coris-btn:hover { border-color: #ff7f3f; background: #fff7f2; }
.footer-coris-btn .ph { font-size: 18px; color: #ff7f3f; flex-shrink: 0; }
.footer-coris-btn span { display: flex; flex-direction: column; gap: 1px; }
.footer-coris-btn strong { font-size: 12px; font-weight: 700; color: #111827; line-height: 1.2; }
.footer-coris-btn small { font-size: 11px; color: #6b7280; }

.coris-panel { display: grid; gap: 14px; }

.coris-panel__head { display: grid; gap: 4px; }
.coris-panel__eyebrow {
  font-size: 11px; font-weight: 800;
  letter-spacing: .05em; text-transform: uppercase; color: #ff7f3f;
}
.coris-panel__title { font-size: 17px; font-weight: 800; color: #111827; line-height: 1.25; }
.coris-panel__desc { margin: 0; font-size: 13px; color: #6b7280; line-height: 1.5; }

.coris-panel__body { display: flex; gap: 14px; align-items: flex-start; }
.coris-panel__info { display: grid; gap: 10px; flex: 1; min-width: 0; }

.coris-label {
  display: block; font-size: 11px; font-weight: 700;
  letter-spacing: .04em; text-transform: uppercase; color: #9ca3af; margin-bottom: 3px;
}
.coris-phone { display: grid; }
.coris-phone__number {
  font-size: 22px; font-weight: 800; color: #111827;
  text-decoration: none; letter-spacing: -.5px; line-height: 1.2;
}
.coris-phone__number:hover { color: #ff7f3f; }
.coris-phone__hint { font-size: 11px; color: #9ca3af; margin-top: 2px; }

.coris-viber {
  display: grid; gap: 6px;
  padding: 10px 12px;
  border: 1.5px solid #e5e7eb;
  border-radius: 12px;
  background: #fafafa;
  cursor: pointer; text-align: left; width: 100%;
  transition: border-color .15s, background .15s;
}
.coris-viber:hover, .coris-viber:focus-visible {
  border-color: #7c3aed; background: #f5f3ff; outline: none;
}
.coris-viber.is-copied { border-color: #16a34a; background: #f0fdf4; }
.coris-viber__top { display: flex; align-items: center; justify-content: space-between; }
.coris-viber__hint { font-size: 11px; color: #9ca3af; font-weight: 500; }
.coris-viber.is-copied .coris-viber__hint { color: #16a34a; }
.coris-viber__row { display: flex; align-items: center; gap: 8px; }
.coris-viber__icon { font-size: 20px; color: #7c3aed; }
.coris-viber.is-copied .coris-viber__icon { color: #16a34a; }
.coris-viber__name { font-size: 15px; font-weight: 700; color: #111827; flex: 1; }
.coris-viber__copy { font-size: 16px; color: #9ca3af; }
.coris-viber.is-copied .coris-viber__copy { color: #16a34a; }

.coris-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.coris-btn { flex: 1; min-width: 0; justify-content: center; font-size: 13px; }

.coris-panel__qr { display: none; flex-direction: column; align-items: center; gap: 6px; flex-shrink: 0; }
.coris-panel__qr img { border-radius: 10px; border: 1px solid #e5e7eb; display: block; }
.coris-panel__qr p { margin: 0; font-size: 11px; color: #9ca3af; text-align: center; line-height: 1.3; }
@media (min-width: 540px) { .coris-panel__qr { display: flex; } }

.faq-intro {
  margin: 0 0 12px;
  font-size: 14px;
  color: #6b7280;
}

.faq-cats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.faq-cat:last-child:nth-child(odd) {
  grid-column: 1 / -1;
}

.faq-cat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  padding: 14px;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  background: #fff;
  cursor: pointer;
  text-align: left;
  transition: border-color .15s, box-shadow .15s, background .15s;
}

.faq-cat:hover {
  border-color: #ff7f3f;
  background: #fff7f2;
  box-shadow: 0 4px 14px rgba(255,127,63,.12);
}

.faq-cat__icon {
  font-size: 22px;
  color: #ff7f3f;
}

.faq-cat__label {
  font-size: 14px;
  font-weight: 700;
  color: #111827;
  line-height: 1.2;
}

.faq-cat__desc {
  font-size: 12px;
  color: #9ca3af;
  line-height: 1.3;
}

.faq-qlist {
  display: grid;
  gap: 0;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
}

.faq-qlist__head {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 14px;
  background: #f8fafc;
  border-bottom: 1px solid #e5e7eb;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #374151;
}

.faq-qlist__head .ph {
  color: #ff7f3f;
  font-size: 15px;
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 13px 14px;
  border: none;
  border-bottom: 1px solid #f1f5f9;
  background: transparent;
  text-align: left;
  font-size: 14px;
  font-weight: 600;
  color: #1f2937;
  cursor: pointer;
  transition: background .12s, color .12s;
  line-height: 1.35;
}

.faq-q:hover {
  background: #fff7f2;
  color: #ff7f3f;
}

.faq-q:hover .faq-q__arrow {
  color: #ff7f3f;
  transform: translateX(2px);
}

.faq-q__arrow {
  flex-shrink: 0;
  font-size: 13px;
  color: #d1d5db;
  transition: transform .12s, color .12s;
}

.faq-ans {
  display: grid;
  gap: 12px;
}

.faq-ans__text {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: #1f2937;
}

.faq-ans__note {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  padding: 11px 13px;
  border-radius: 12px;
  background: #f0f9ff;
  border: 1px solid #bae6fd;
  font-size: 13px;
  color: #0369a1;
  line-height: 1.45;
}

.faq-ans__note .ph {
  flex-shrink: 0;
  font-size: 16px;
  margin-top: 1px;
}

.faq-ans__cta {
  width: fit-content;
}

.faq-packages {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin: 10px 0 10px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e5e7eb;
}
.faq-pkg {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
}
.faq-pkg__name {
  font-size: 13px;
  font-weight: 600;
  color: #374151;
}
.faq-pkg__price {
  font-size: 13px;
  font-weight: 700;
  color: #ff7f3f;
}

.pomoc-intro {
  margin: 0 0 10px;
  font-size: 13px;
  color: #6b7280;
  line-height: 1.5;
}
.pomoc-table-wrap {
  overflow-x: auto;
  margin: 0 -4px 4px;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  -webkit-overflow-scrolling: touch;
}
.pomoc-table {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
  font-size: 11.5px;
}
.pomoc-table thead th {
  background: #003c63;
  color: #fff;
  font-weight: 700;
  padding: 9px 7px;
  text-align: center;
  white-space: nowrap;
  border-right: 1px solid #00507f;
}
.pomoc-table thead th:first-child {
  background: #002a47;
  text-align: left;
  min-width: 110px;
}
.pomoc-table thead th:last-child { border-right: none; }
.pomoc-table tbody tr:nth-child(even) { background: #f9fafb; }
.pomoc-table tbody tr:hover           { background: #fff7f2; }
.pomoc-table tbody td {
  padding: 7px 7px;
  text-align: center;
  border-bottom: 1px solid #f0f0f0;
  border-right: 1px solid #f0f0f0;
  color: #374151;
  vertical-align: middle;
  line-height: 1.4;
}
.pomoc-table tbody td:first-child {
  text-align: left;
  font-weight: 600;
  color: #1f2937;
  font-size: 11px;
  background: #f8fafc;
  min-width: 110px;
}
.pomoc-table tbody td:last-child { border-right: none; }
.pomoc-no {
  color: #d1d5db;
  font-size: 16px;
}
.pomoc-yes {
  color: #22c55e;
  font-size: 14px;
}
.pomoc-tr--price td {
  font-weight: 700;
  color: #ff7f3f !important;
  background: #fff7f2 !important;
  border-top: 2px solid #ffe0cc;
}
.pomoc-tr--price td:first-child {
  color: #1f2937 !important;
}

.pomoc-table--putno {
  min-width: 340px;
}
.pomoc-table--putno thead th:first-child {
  min-width: 160px;
}
.pomoc-table--putno thead th:not(:first-child) {
  min-width: 80px;
  white-space: nowrap;
}
.putno-section-hd td {
  background: #003c63 !important;
  color: #fff !important;
  font-weight: 700 !important;
  font-size: 11px !important;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  padding: 7px 8px !important;
  text-align: left !important;
}
.putno-sum {
  color: #9ca3af;
  font-size: 10.5px;
  font-style: italic;
}

.faq-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  background: transparent;
  font-size: 13px;
  font-weight: 600;
  color: #6b7280;
  cursor: pointer;
  width: fit-content;
  transition: border-color .12s, color .12s;
}

.faq-back:hover {
  border-color: #9ca3af;
  color: #374151;
}

@media (max-width: 640px){
  
  .ai-chat-trigger{
    left:12px;
    right:12px;
    bottom: calc(12px + env(safe-area-inset-bottom, 0px));
    justify-content:center;
  }

  .ai-chat-modal{
    padding:8px;
    align-items:end;
  }

  .ai-chat-modal__panel{
    width:100%;
    
    height:min(88vh, 100%);
    height:min(88dvh, 100%);
    border-radius:24px 24px 0 0;
  }

  .ai-chat-modal__header{
    padding:18px 16px 14px;
  }

  .ai-chat-modal__header h3{
    font-size:21px;
  }

  .ai-chat-modal__body{
    padding:14px;
  }

  .ai-msg__bubble{
    max-width:88%;
  }

  .ai-result-card__actions{
    flex-direction:column;
  }

  .ai-result-card__actions .btn{
    width:100%;
    min-width:unset;
  }

  
  .ai-chat-modal__footer {
    padding: 12px 14px calc(16px + env(safe-area-inset-bottom, 0px));
  }

  .footer-tab {
    font-size: 11px;
    padding: 7px 4px;
  }
}

@media (max-width: 400px){
  .adv-choices--grid {
    grid-template-columns: 1fr;
  }

  
  .faq-packages {
    grid-template-columns: 1fr;
  }
}
