/* ============================================================
   Limitless BioChem — Payment Tutorials
   Dizajn systém: navy #061735, modrá #087CF4 / #00ABFD,
   text #111827, muted #4D4D4D, border #E6E6E6, tint #F7F9FC
   Etapa 1: desktop-first (responzivita príde v Etape 5)
   ============================================================ */

:root {
  --brand-blue: #087CF4;
  --brand-blue-bright: #00ABFD;
  --brand-gradient: linear-gradient(135deg, #00ABFD 0%, #087CF4 100%);
  --navy: #061735;
  --text: #111827;
  --muted: #4D4D4D;
  --muted-light: #667085;
  --border: #E6E6E6;
  --tint: #F7F9FC;
  --tint-blue: #F0F9FF;
  --warning: #E53935;
  --success: #13B981;
  --radius-card: 16px;
  --shadow-card: 0 1px 3px rgba(16, 24, 40, 0.06);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  color: var(--text);
  background: #fff;
  font-size: 16px;
  line-height: 1.5;
}

/* ---------- Header ---------- */
.site-header {
  border-bottom: 1px solid var(--border);
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 20;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img { height: 34px; display: block; }

/* ---------- Hero ---------- */
.main-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 32px 32px;
}

.hero { text-align: center; margin-bottom: 36px; }

.hero h1 {
  font-size: 36px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.hero p { color: var(--muted); font-size: 17px; }

/* (i) vysvetlivka */
.explainer-wrap { position: relative; display: inline-block; margin-left: 6px; }

.info-btn {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1.5px solid var(--brand-blue);
  background: #fff;
  color: var(--brand-blue);
  font: italic 700 12px/1 Georgia, serif;
  cursor: pointer;
  vertical-align: middle;
  transition: all 150ms ease;
}

.info-btn:hover, .info-btn.open { background: var(--brand-blue); color: #fff; }

/* Jemné pulzovanie, nech si (i) človek všimne; po prvom kliknutí prestane */
.info-btn:not(.seen) { animation: info-pulse 2s ease-out infinite; }

@keyframes info-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(8, 124, 244, 0.45); }
  70%  { box-shadow: 0 0 0 9px rgba(8, 124, 244, 0); }
  100% { box-shadow: 0 0 0 0 rgba(8, 124, 244, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .info-btn { animation: none !important; }
}

.popover {
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 340px;
  max-width: 86vw;
  background: var(--navy);
  color: #fff;
  font-size: 13.5px;
  line-height: 1.55;
  text-align: left;
  padding: 14px 16px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(6, 23, 53, 0.25);
  z-index: 30;
}

.popover::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background: var(--navy);
}

/* ---------- Karty providerov ---------- */
.providers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 28px;
}

/* Názov, benefit a badge pod sebou — text sa nikdy neláme vedľa názvu */
.provider-name {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 3px;
}

/* ---------- FAQ ---------- */
.faq { margin-top: 36px; }

.faq h2 {
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 14px;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  margin-bottom: 10px;
  overflow: hidden;
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: transparent;
  border: 0;
  font: inherit;
  font-size: 15.5px;
  font-weight: 700;
  color: var(--navy);
  text-align: left;
  padding: 16px 18px;
  cursor: pointer;
}

.faq-chev { color: var(--brand-blue); flex: 0 0 18px; transition: transform 200ms ease; }
.faq-item.open .faq-chev { transform: rotate(180deg); }

.faq-a { padding: 0 18px 16px; }
.faq-a p { font-size: 14.5px; color: var(--muted); line-height: 1.6; }

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--border);
  margin-top: 24px;
  padding: 24px;
  text-align: center;
}

.secure-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 10px;
}

.secure-line > #icon-lock { display: inline-flex; align-items: center; }

.back-link {
  color: var(--navy);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
}

.back-link:hover { color: var(--brand-blue); }

/* ============================================================
   Stránka návodu (guide.html)
   ============================================================ */

.guide-header .header-inner { padding: 12px 24px; }

.back-nav {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.back-arrow { display: flex; align-items: center; transition: transform 150ms ease; }
.back-nav:hover .back-arrow { transform: translateX(-3px); }

.back-texts { display: flex; flex-direction: column; }

.back-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted-light);
}

.back-provider { font-size: 16px; font-weight: 700; color: var(--navy); }

.header-logo { height: 28px; }

/* Pás s progresom */
.progress-strip { background: var(--tint); border-top: 1px solid var(--border); }

.progress-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 8px 24px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 700;
  color: var(--brand-blue);
}

.progress-inner #estimated { color: var(--muted-light); font-weight: 600; }

.progress-track { height: 3px; background: #E3EDF7; }

.progress-fill {
  height: 100%;
  background: var(--brand-gradient);
  width: 0;
  transition: width 300ms ease;
}

/* Obsah návodu */
.guide-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 40px 24px 56px;
}

.gstep { display: flex; gap: 18px; }

.gstep-rail {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 0 0 36px;
}

.gstep-num {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--brand-gradient);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

/* zvislá linka časovej osi */
.gstep-rail::after {
  content: "";
  flex: 1;
  width: 2px;
  background: #DCEBFA;
  margin-top: 6px;
}

.gstep:last-of-type .gstep-rail::after { display: none; }

.gstep-body { flex: 1; padding-bottom: 36px; min-width: 0; }

.gstep-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.4;
  margin: 5px 0 16px;
}

/* Screenshot */
.shot-wrap { position: relative; max-width: 320px; }

.shot {
  width: 100%;
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  display: block;
}

/* Placeholder telefónu, kým nemáme reálny screenshot */
.shot.placeholder {
  height: 380px;
  background: #F2F2F2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.ph-circle { width: 52px; height: 52px; border-radius: 50%; background: #fff; }
.ph-input { width: 70%; height: 38px; border-radius: 8px; background: #fff; }
.ph-btn { width: 70%; height: 40px; border-radius: 8px; background: var(--brand-blue); opacity: 0.85; }

/* Červená inštrukčná bublina na screenshote */
.shot-bubble {
  position: absolute;
  transform: translate(-50%, -50%);
  background: var(--warning);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 7px 12px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(229, 57, 53, 0.4);
  white-space: nowrap;
  z-index: 2;
}

.shot-bubble::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
  background: var(--warning);
}

/* Šípka bubliny smerom HORE (bublina je pod prvkom, na ktorý ukazuje) */
.shot-bubble.arrow-up::after { bottom: auto; top: -5px; }

/* Výstraha / poznámka medzi krokmi */
.callout {
  border-radius: var(--radius-card);
  padding: 16px 18px;
  font-size: 14.5px;
  font-weight: 700;
  line-height: 1.5;
  margin: 0 0 36px 54px;
}

.callout.warning { background: var(--warning); color: #fff; }
.callout.info { background: var(--tint-blue); color: var(--navy); }

/* Úvodná výstraha nad návodom — oranžová s výkričníkom, plná šírka stĺpca */
.callout.intro-callout {
  margin: 0 0 32px 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: #FFF3E0;
  color: #9A4D00;
  font-weight: 600;
}

.callout.intro-callout svg { flex: 0 0 20px; margin-top: 2px; }

/* Záverečná karta */
.done-card {
  text-align: center;
  background: #F0FDF7;
  border: 1px solid #C6F0DC;
  border-radius: var(--radius-card);
  padding: 32px 24px;
  margin-left: 54px;
}

.done-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--success);
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
}

.done-card h2 { color: var(--navy); font-size: 20px; margin-bottom: 6px; }
.done-card p { color: var(--muted); font-size: 14.5px; margin-bottom: 18px; }

.btn-secondary {
  display: inline-block;
  border: 1.5px solid var(--brand-blue);
  color: var(--brand-blue);
  font-weight: 700;
  font-size: 14.5px;
  text-decoration: none;
  padding: 10px 22px;
  border-radius: 10px;
  transition: all 150ms ease;
}

.btn-secondary:hover { background: var(--brand-blue); color: #fff; }

.coming-soon { text-align: center; padding: 60px 0; }
.coming-soon p { color: var(--muted); margin-bottom: 20px; }

/* ============================================================
   Responzivita — tablet a mobil (podľa schválených návrhov)
   ============================================================ */

@media (max-width: 1024px) {
  .main-content { padding: 36px 24px 28px; }
}

@media (max-width: 640px) {
  /* (i) bublina na šírku obsahu — nejde mimo displej */
  .hero p { position: relative; }
  .explainer-wrap { position: static; }
  .popover {
    left: 0;
    right: 0;
    top: calc(100% + 10px);
    transform: none;
    width: auto;
    max-width: none;
  }
  .popover::before { left: auto; right: 22px; }
  .provider-name { font-size: 15px; }

  .header-inner { padding: 12px 16px; }
  .logo img { height: 28px; }

  .main-content { padding: 28px 16px 24px; }
  .hero h1 { font-size: 26px; }
  .hero p { font-size: 15px; }
  .hero { margin-bottom: 26px; }

  .providers-grid { grid-template-columns: 1fr; gap: 14px; }
  .provider-name { font-size: 16px; }

  /* Návod */
  .guide-content { padding: 24px 16px 40px; }
  .gstep { gap: 12px; }
  .gstep-rail { flex: 0 0 30px; }
  .gstep-num { width: 28px; height: 28px; font-size: 13px; }
  .gstep-title { font-size: 16px; margin-top: 3px; }
  .gstep-body { padding-bottom: 28px; }
  .shot-wrap { max-width: 100%; }
  .shot { max-width: 320px; margin: 0 auto; }
  .shot.placeholder { max-width: 320px; margin: 0 auto; }
  .callout { margin-left: 0; font-size: 13.5px; }
  .done-card { margin-left: 0; }
  .progress-inner { padding: 7px 16px; }
  .guide-header .header-inner { padding: 10px 16px; }
  .header-logo { height: 24px; }
  .back-provider { font-size: 15px; }
}
/* ============================================================
   V2 — dizajn podľa Claude Design mockupu (biele pozadie,
   brandové gradient bandy, Plus Jakarta Sans)
   ============================================================ */

:root { --pc: #087CF4; --pc-dark: #0568c9; }

body { font-family: "Plus Jakarta Sans", "Inter", system-ui, sans-serif; background: #fff; color: #0F172A; }

.hero h1 { font-size: 46px; font-weight: 800; letter-spacing: -1px; color: #0F172A; }
.hero p { font-size: 19px; color: #475569; }

/* ---------- Karta providera ---------- */
.pc-card {
  position: relative;
  background: #fff;
  border: 1.5px solid #D8E0EA;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 22px rgba(16, 24, 40, 0.10);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pc-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 48px -16px color-mix(in srgb, var(--pc) 45%, transparent);
}

.pc-icon {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 46px;
}

.pc-band-text { display: flex; flex-direction: column; gap: 6px; flex: 1; min-width: 0; }

.pc-name-row { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }

.pc-name { font-size: 20px; font-weight: 800; color: #fff; letter-spacing: -0.4px; }

.pc-mica {
  position: relative;
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.pc-benefit { font-size: 13.5px; font-weight: 500; color: rgba(255, 255, 255, 0.85); }

.header-tools { display: flex; align-items: center; gap: 10px; }

/* ---------- Jazykovy dropdown s vlajkami ---------- */
.lang-dd { position: relative; }

.lang-dd-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid var(--border);
  background: #F2F4F7;
  border-radius: 999px;
  padding: 6px 12px;
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  transition: border-color 150ms ease, background 150ms ease;
}

.lang-dd-btn:hover { background: #fff; border-color: var(--brand-blue); }

.lang-dd-chev { color: var(--muted-light); }

.lang-dd-flag { display: inline-flex; align-items: center; }
.lang-dd-flag svg { display: block; border-radius: 2px; }

.lang-dd-list {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  min-width: 190px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 12px 32px rgba(6, 23, 53, 0.14);
  list-style: none;
  padding: 6px;
  margin: 0;
  z-index: 40;
  max-height: 70vh;
  overflow-y: auto;
}

.lang-dd-list [role="option"] {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 9px;
  font-size: 14px;
  color: var(--text);
  cursor: pointer;
}

.lang-dd-list [role="option"]:hover { background: var(--tint); }

.lang-dd-list [role="option"][aria-selected="true"] {
  background: var(--tint-blue);
  font-weight: 700;
  color: var(--navy);
}

.lang-dd-name { flex: 1; }

.lang-dd-abbr { font-size: 11.5px; font-weight: 700; color: var(--muted-light); letter-spacing: 0.4px; }
.faq h2 { font-size: 30px; font-weight: 800; letter-spacing: -0.5px; color: #0F172A; }
.faq-item { border: 1px solid #E6EAF0; border-radius: 16px; box-shadow: none; }
.faq-q { font-size: 17px; }
.faq-chev { color: #24324D; }

/* ---------- Návod — brandová farba providera ---------- */
.back-provider { color: var(--pc); }
.progress-inner #step-indicator { color: var(--pc); }
.progress-fill { background: var(--pc); }
.gstep-num { background: var(--pc); }
.gstep-rail::after { background: color-mix(in srgb, var(--pc) 22%, white); }
.btn-secondary { border-color: var(--pc); color: var(--pc); }
.btn-secondary:hover { background: var(--pc); color: #fff; }

/* ---------- Mobil ---------- */
@media (max-width: 640px) {
  .hero h1 { font-size: 30px; }
  .hero p { font-size: 15px; }
  .pc-icon { width: 44px; height: 44px; flex-basis: 44px; border-radius: 12px; }
  .pc-name { font-size: 18px; }
  .pc-benefit { font-size: 13px; }
}

/* ============================================================
   V2.1 — karty ako farebné pásy s Open guide tlačidlom
   ============================================================ */

.pc-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  padding: 20px 22px;
  border: none;
  border-radius: 18px;
  overflow: visible;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 10px 26px rgba(16, 24, 40, 0.22);
}

.pc-band-text { display: flex; flex-direction: column; min-width: 0; }

.pc-card:hover { transform: translateY(-4px); }

.pc-band-text { gap: 4px; }
.pc-name { font-size: 20px; }
.pc-benefit { font-size: 13.5px; }

.pc-open {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--pc-dark);
  font-size: 14px;
  font-weight: 800;
  padding: 10px 16px;
  border-radius: 12px;
  white-space: nowrap;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.22);
  transition: transform 0.15s ease;
}

.pc-card:hover .pc-open { transform: scale(1.05); }

.pc-open-min { font-weight: 700; font-size: 12px; opacity: 0.7; }

@media (max-width: 899px) {
  .providers-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .pc-card { flex-wrap: wrap; padding: 16px; gap: 12px; }
  .pc-open { margin-left: 0; width: 100%; justify-content: center; margin-top: 2px; }
}

/* MiCA kompaktne vedľa názvu + EÚ vlajka — karta ostane nízka */
.pc-name-row { flex-wrap: nowrap; white-space: nowrap; }

.pc-mica {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 9.5px;
  padding: 2px 8px;
  letter-spacing: 0.3px;
}

.pc-mica > svg { width: 14px; height: 10px; flex: 0 0 14px; }

@media (max-width: 640px) {
  .pc-name-row { flex-wrap: wrap; white-space: normal; }
}

/* ============================================================
   Návod vo farbe providera — plná lišta + jemný prechod pozadia
   ============================================================ */

.guide-themed { background: linear-gradient(180deg, color-mix(in srgb, var(--pc) 7%, #fff) 0%, #fff 340px); }

.guide-themed .progress-strip {
  background: linear-gradient(90deg, var(--pc), color-mix(in srgb, var(--pc) 72%, #fff));
  border-top: none;
}

.guide-themed .progress-inner #step-indicator { color: #fff; }
.guide-themed .progress-inner #estimated { color: rgba(255, 255, 255, 0.85); }
.guide-themed .progress-track { background: rgba(255, 255, 255, 0.28); }
.guide-themed .progress-fill { background: #fff; }

.guide-themed .gstep-num { background: var(--pc); }
.guide-themed .gstep-rail::after { background: color-mix(in srgb, var(--pc) 25%, white); }
.guide-themed .shot { border-color: color-mix(in srgb, var(--pc) 30%, white); }
.guide-themed .callout.info { background: color-mix(in srgb, var(--pc) 9%, white); color: color-mix(in srgb, var(--pc) 75%, black); }

/* ============================================================
   V3 AURORA — žiary, gradient nadpis, číslované FAQ
   ============================================================ */

.hub-aurora { background: #f4f5fd; }

.aurora-blob { position: fixed; border-radius: 50%; pointer-events: none; z-index: 0; }
.ab-1 { top: -200px; left: -140px; width: 660px; height: 660px; background: radial-gradient(circle, rgba(59,130,246,0.4), transparent 68%); opacity: 0.85; }
.ab-2 { top: -160px; right: -120px; width: 600px; height: 600px; background: radial-gradient(circle, rgba(168,85,247,0.35), transparent 68%); opacity: 0.7; }
.ab-3 { top: 340px; left: 44%; width: 520px; height: 520px; background: radial-gradient(circle, rgba(16,185,129,0.28), transparent 68%); opacity: 0.6; }

.hub-aurora .main-content, .hub-aurora .site-header, .hub-aurora .site-footer { position: relative; z-index: 1; }

.hub-aurora .hero h1 {
  background: linear-gradient(92deg, #0d9d6e, #2f7ef0 55%, #9b4df0);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.faq-q { gap: 16px; }
.faq-a { padding-left: 18px; }

/* Záver návodu — dve tlačidlá */
.done-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

.btn-pay {
  display: inline-block;
  background: var(--pc, var(--brand-blue));
  color: #fff;
  font-weight: 800;
  font-size: 14.5px;
  text-decoration: none;
  padding: 11px 24px;
  border-radius: 10px;
  transition: filter 150ms ease;
}

.btn-pay:hover { filter: brightness(1.1); }
.faq-qtext { flex: 1; text-align: left; }
.faq-chev { color: #24324D; }

/* Jemnejšie FAQ vo svetlom režime — bez tvrdej čiernej */
.faq h2 { color: #24324D; }
.faq-q { color: #24324D; }

/* Mobil: aurora preč spoza nadpisu — horné žiary skryté, zelená nižšie */
@media (max-width: 640px) {
  .ab-1, .ab-2 { display: none; }
  .ab-3 { top: auto; bottom: 5%; left: 20%; opacity: 0.4; }
}

/* ============================================================
   Návod v3 — svetlá lišta, farebný progres s gradientom (obrátený režim)
   ============================================================ */

.guide-themed .back-arrow svg { stroke: var(--pc); }

.guide-themed .progress-strip {
  background: color-mix(in srgb, var(--pc) 8%, #fff);
  border-top: none;
}

.guide-themed .progress-inner #step-indicator { color: var(--pc); }
.guide-themed .progress-inner #estimated { color: color-mix(in srgb, var(--pc) 55%, #64748B); }
.guide-themed .progress-track { background: color-mix(in srgb, var(--pc) 16%, #fff); height: 4px; }

.guide-themed .progress-fill {
  background: linear-gradient(90deg,
    color-mix(in srgb, var(--pc) 85%, #000) 0%,
    var(--pc) 55%,
    color-mix(in srgb, var(--pc) 55%, #fff) 100%);
}

/* Rovnaká výška všetkých kariet providerov */
.providers-grid { grid-auto-rows: 1fr; }
.pc-card { height: 100%; }

/* Vlajka EÚ vo FAQ otázke */
.faq-qtext svg { vertical-align: -1px; margin-right: 4px; }

/* Levitujúce tlačidlo platby */
.pay-fab {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--pc, var(--brand-blue));
  color: #fff;
  font-weight: 800;
  font-size: 15px;
  padding: 14px 22px;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 12px 30px color-mix(in srgb, var(--pc, #087CF4) 45%, rgba(0,0,0,0.3));
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity 250ms ease, transform 250ms ease, filter 150ms ease;
}

.pay-fab.show { opacity: 1; transform: none; pointer-events: auto; }
.pay-fab:hover { filter: brightness(1.1); }

@media (max-width: 640px) {
  .pay-fab { left: 14px; right: 14px; bottom: 14px; justify-content: center; }
}

/* Kontakt v pätičke */
.foot-dot { color: var(--muted-light); margin: 0 4px; }
.foot-mail { color: var(--muted); font-size: 14px; text-decoration: none; font-weight: 400; display: inline-flex; align-items: center; gap: 6px; }
.foot-mail:hover { color: var(--brand-blue); }
@media (max-width: 640px) { .secure-line { flex-wrap: wrap; } }

/* Záverečná karta vo farbe providera */
.guide-themed .done-card {
  background: color-mix(in srgb, var(--pc) 7%, #fff);
  border-color: color-mix(in srgb, var(--pc) 25%, #fff);
}
.guide-themed .done-check { background: var(--pc); }

/* Keď je zobrazená Pay pilulka, pätička sa na mobile odsunie, nech nič neprekrýva */
@media (max-width: 640px) {
  .has-pay .site-footer { padding-bottom: 88px; }
}

/* TEST: reset platby */
.pay-reset {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1.5px solid #D8E0EA;
  background: #fff;
  color: #94A3B8;
  font-size: 15px;
  line-height: 1;
  cursor: pointer;
  margin-left: 8px;
}
.pay-reset:hover { color: #E53935; border-color: #E53935; }

/* Banxa: fajka na záverečnej karte zelená (tmavá brand farba nevyzerá ako úspech) */
.guide-themed.guide-banxa .done-check { background: var(--success); }
