:root {
  --navy: #0a1628;
  --navy-2: #10203a;
  --blue: #1d6fd6;
  --blue-light: #5da8ff;
  --green: #16794f;
  --gold: #b5892b;
  --ink: #161b22;
  --muted: #5a626d;
  --bg-light: #f7f9fb;
  --border: #e5e9ee;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--ink);
  background: #fff;
}

a { text-decoration: none; }

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 18px 32px;
  border-bottom: 1px solid var(--border);
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 10;
}

.nav .logo {
  font-weight: 800;
  letter-spacing: .4px;
  font-size: 26px;
  color: var(--navy);
  margin-right: auto;
}

.nav .logo-kom { color: var(--navy); }
.nav .logo-pact { color: var(--blue); }

.nav a.link {
  color: var(--muted);
  font-size: 16px;
  font-weight: 600;
}

.nav a.link.active,
.nav a.link:hover {
  color: var(--navy);
}

.nav .lang {
  display: flex;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 4px 4px;
}

.nav .lang span {
  padding: 3px 9px;
  border-radius: 16px;
}

.nav .lang span.on {
  background: var(--navy);
  color: #fff;
}

.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  color: #fff;
  padding: 90px 32px 100px;
  text-align: center;
}

.hero h1 {
  font-size: clamp(30px, 5vw, 46px);
  font-weight: 800;
  line-height: 1.25;
  max-width: 760px;
  margin: 0 auto 14px;
}

.hero h1 em {
  font-style: normal;
}

/* Approved Home hero copy: C2 two-line treatment. */
.hero h1.home-c2-headline {
  max-width: 740px;
  line-height: 1.15;
}

.home-c2-headline span { display: block; }
.home-c2-headline .line-one {
  font-size: clamp(30px, 4.5vw, 43px);
  font-weight: 700;
  letter-spacing: -.5px;
}
.home-c2-headline .line-two {
  margin-top: 7px;
  color: #fff;
  font-size: clamp(30px, 4.5vw, 43px);
  font-weight: 800;
  letter-spacing: -.5px;
}

.hero p {
  color: #b9cde0;
  font-size: 17px;
  max-width: 560px;
  margin: 0 auto 32px;
  line-height: 1.5;
}

.hero .hook {
  max-width: 480px;
  margin: 0 auto 32px;
  font-size: 16.5px;
}

.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: .8px;
  font-size: 11.5px;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 10px;
}

.btn {
  display: inline-block;
  background: var(--blue);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  padding: 13px 26px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
}

.btn:hover { background: #1a5fb8; }

.btn.ghost {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,.35);
  color: #fff;
}

.btn.ghost:hover { border-color: #fff; }

.section {
  padding: 72px 32px;
  max-width: 980px;
  margin: 0 auto;
}

.section.tight { padding-top: 48px; padding-bottom: 48px; }

.section h2 {
  font-size: 28px;
  font-weight: 800;
  text-align: center;
  margin: 0 0 10px;
}

.section > p.lead {
  text-align: center;
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto 44px;
  font-size: 15px;
}

@media (max-width: 640px) {
  .nav { gap: 14px; flex-wrap: wrap; }
}

/* ---- Hub & spoke (used on Home and Product) ---- */

body.page-product {
  background-image:
    radial-gradient(circle at 12% 8%, rgba(29,111,214,0.08), transparent 42%),
    radial-gradient(circle at 88% 26%, rgba(93,168,255,0.09), transparent 38%),
    radial-gradient(#e5e9ee 1px, transparent 1px);
  background-size: auto, auto, 24px 24px;
}

.hub-wrap { text-align: center; }

.hub-node {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 108px;
  height: 108px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  color: #fff;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -.35px;
  margin-bottom: 2px;
  box-shadow: 0 14px 30px rgba(10,22,40,.25);
}

.hub-node .hub-kom { color: #fff; }
.hub-node .hub-pact { color: var(--blue-light); }

.hub-ticks { max-width: 722px; margin: 0 auto; }
.hub-ticks svg { display: block; width: 100%; height: 52px; overflow: visible; }

.spokes-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: stretch;
  margin-top: 0;
  flex-wrap: wrap;
}

.spoke {
  flex: 1;
  min-width: 160px;
  max-width: 230px;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 20px 16px;
  cursor: pointer;
  transition: border-color .25s ease, background .25s ease, transform .15s ease;
  position: relative;
  text-align: center;
}

.spoke::before {
  position: absolute;
  top: -1px;
  right: 18px;
  left: 18px;
  height: 4px;
  border-radius: 0 0 5px 5px;
  content: "";
}

.spoke[data-spoke="kompact"]::before { background: var(--gold); }
.spoke[data-spoke="billko"]::before { background: var(--blue); }
.spoke[data-spoke="ticketko"]::before { background: var(--green); }

.spoke:hover { transform: translateY(-3px); }
.spoke .icon { font-size: 24px; margin-bottom: 8px; }
.spoke h3 { margin: 0 0 4px; font-size: 14.5px; }
.spoke .teaser { margin: 0; font-size: 11.5px; color: var(--muted); line-height: 1.45; }

.spoke.selected.kompact { border-color: var(--gold); background: #fffaf0; }
.spoke.selected.billko { border-color: var(--blue); background: #eef4fc; }
.spoke.selected.ticketko { border-color: var(--green); background: #eafaf1; }

.spoke[data-spoke="kompact"]:hover { border-color: var(--gold); box-shadow: 0 0 0 2px rgba(181, 137, 43, .72), 0 14px 30px rgba(181, 137, 43, .16); }
.spoke[data-spoke="billko"]:hover { border-color: var(--blue); box-shadow: 0 0 0 2px rgba(29, 111, 214, .72), 0 14px 30px rgba(29, 111, 214, .16); }
.spoke[data-spoke="ticketko"]:hover { border-color: var(--green); box-shadow: 0 0 0 2px rgba(22, 121, 79, .72), 0 14px 30px rgba(22, 121, 79, .16); }

.hub-detail {
  display: none;
  max-width: 640px;
  margin: 28px auto 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 40px;
  text-align: center;
  box-shadow: 0 16px 40px rgba(10,22,40,.08);
}

.hub-detail.active { display: block; animation: fadein .25s ease; }

@keyframes fadein { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }

.hub-detail .detail-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  font-size: 24px;
  margin-bottom: 12px;
}

.hub-detail .hook-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  margin: 0 auto 14px;
}

.hub-detail.kompact .detail-icon, .hub-detail.kompact .hook-icon { background: #faf3e5; }
.hub-detail.kompact h3 { color: var(--gold); }
.hub-detail.billko .detail-icon, .hub-detail.billko .hook-icon { background: #eef4fc; }
.hub-detail.billko h3 { color: var(--blue); }
.hub-detail.ticketko .detail-icon, .hub-detail.ticketko .hook-icon { background: #eafaf1; }
.hub-detail.ticketko h3 { color: var(--green); }

.hub-detail h3 { margin: 0 0 4px; font-size: 20px; }
.hub-detail .subhead { color: var(--muted); font-size: 12.5px; margin-bottom: 18px; }
.hub-detail p, .hub-detail ul {
  text-align: left;
  max-width: 460px;
  margin: 0 auto 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}
.hub-detail ul { padding-left: 20px; }

.hub-detail .hook-question {
  font-weight: 700;
  font-size: 15.5px;
  line-height: 1.4;
  color: var(--ink);
  max-width: 420px;
  margin: 0 auto 6px;
}

.hub-detail .hook-subtext {
  font-size: 12.5px;
  color: var(--muted);
  max-width: 420px;
  margin: 0 auto 18px;
}

@media (max-width: 720px) {
  .hub-ticks { display: none; }
  .spokes-row { flex-direction: column; align-items: center; margin-top: 20px; }
  .spoke { max-width: 320px; width: 100%; }
  .hub-detail { padding: 28px 22px; }
  .spokes-row > .hub-detail {
    display: none;
    width: 100%;
    max-width: 320px;
    margin: 0;
  }
  .spokes-row > .hub-detail.active { display: block; }
  .spokes-row > .hub-detail.two-col { padding: 28px 22px; }
}

/* ---- Two-column "three window" detail pattern (Product page enlarged boxes) ---- */

.hub-detail.two-col {
  max-width: 880px;
  text-align: left;
  padding: 36px 40px;
}
.hub-detail.two-col .detail-head {
  text-align: center;
  margin-bottom: 22px;
}
.detail-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: start;
}
.detail-col-left ul, .detail-col-right ul { margin: 0; }
.detail-col-left p, .detail-col-left ul { max-width: none; margin-bottom: 0; }

.benefits-block {
  border-top: 1px solid var(--border);
  padding-top: 18px;
}
.benefits-block .btitle {
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .3px;
  color: var(--green);
  margin-bottom: 10px;
}
.benefits-block ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.benefits-block li { display: flex; align-items: flex-start; gap: 8px; font-size: 14px; color: var(--ink); font-weight: 500; line-height: 1.4; }
.benefits-block li svg { flex: 0 0 auto; margin-top: 1px; }

.flow-card {
  background: var(--bg-light);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 18px 18px 16px;
  cursor: pointer;
  transition: border-color .2s ease, transform .15s ease;
  margin-top: 28px;
}
.flow-card:hover { border-color: var(--green); transform: translateY(-2px); }
.flow-card .flabel {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .3px;
  color: var(--muted);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.flow-card .flabel .hint { font-weight: 600; color: var(--blue); font-size: 12px; }

.mini-flow { display: flex; flex-direction: column; gap: 4px; }
.bar-label { font-size: 12px; font-weight: 500; margin-bottom: 6px; }
.bar-label.before { color: var(--muted); }
.bar-label.after { color: var(--green); font-weight: 600; }
.seg-bar { display: flex; gap: 4px; }
.seg-bar .seg { flex: 1; height: 6px; border-radius: 3px; background: #f3d9d9; }
.seg-bar.after .seg { background: var(--green); }
.seg-bar.after .seg.empty { background: transparent; }
.mini-divider { height: 1px; background: var(--border); margin: 14px 0 12px; }

.step-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 6px; }
.step-tile { border-radius: 7px; padding: 8px 6px; text-align: center; min-height: 56px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px; }
.step-tile.before { background: #f6dede; }
.step-tile.after { background: #d3f0dd; }
.step-tile .snum { font-size: 10px; font-weight: 900; }
.step-tile.before .snum { color: #a34a4a; }
.step-tile.after .snum { color: var(--green); }
.step-tile .stxt { font-size: 10px; font-weight: 700; line-height: 1.25; }
.step-tile.before .stxt { color: #8a4444; }
.step-tile.after .stxt { color: #0f5c3a; }
.modal-section-label { font-size: 10.5px; font-weight: 800; text-transform: uppercase; letter-spacing: .4px; margin-bottom: 8px; }
.modal-section-label.before { color: #a34a4a; }
.modal-section-label.after { color: var(--green); }

/* Modal */
.flow-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10,22,40,.55);
  align-items: center;
  justify-content: center;
  z-index: 100;
  padding: 24px;
}
.flow-modal-overlay.open { display: flex; }
.flow-modal {
  background: #fff;
  border-radius: 16px;
  max-width: 638px;
  width: 100%;
  max-height: 86vh;
  overflow-y: auto;
  padding: 35px 40px;
  position: relative;
  box-shadow: 0 30px 70px rgba(10,22,40,.35);
  animation: modalIn .18s ease;
}
@keyframes modalIn { from { opacity: 0; transform: scale(.97) translateY(6px); } to { opacity: 1; transform: scale(1) translateY(0); } }
.flow-modal .mclose {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 15px;
}
.flow-modal .mclose:hover { border-color: var(--green); color: var(--green); }
.flow-modal h4 { margin: 0 0 4px; font-size: 20px; }
.flow-modal .msub { color: var(--muted); font-size: 13px; margin-bottom: 24px; }

.full-flow-section { margin-bottom: 22px; }
.full-flow-section .flabel2 {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 12px;
}
.full-flow-section.before .flabel2 { color: var(--muted); }
.full-flow-section.after .flabel2 { color: var(--green); }
.full-steps { display: flex; flex-direction: column; }
.full-step {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 0;
}
.full-step .dot {
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
}
.full-flow-section.before .dot { background: #eceff2; color: var(--muted); }
.full-flow-section.after .dot { background: #eafaf1; color: var(--green); }
.full-step .stext { font-size: 14px; color: var(--ink); font-weight: 600; }
.full-flow-section.before .stext { color: var(--muted); font-weight: 500; }
.full-connector { width: 1.5px; height: 10px; background: var(--border); margin-left: 11.25px; }
.full-flow-section.after .full-connector { background: #bfe8d3; }

/* Moje usluge follows the same Product-detail pattern as BillKO and TicketKO. */
.service-detail .detail-col-left > p {
  max-width: none;
  margin: 0 0 14px;
  color: var(--ink);
  font-weight: 500;
}

.service-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.service-step {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 11px 9px;
  border-right: 1px solid var(--border);
  color: var(--ink);
  font-size: 12.5px;
  font-weight: 600;
  line-height: 1.35;
}

.service-step:last-child { border-right: 0; }

.service-step span {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: #faf3e5;
  color: #8a691c;
  font-size: 11px;
  font-weight: 800;
}

.service-flow-card:hover { border-color: var(--gold); }

#modal-kompact .full-flow-section.after .dot { background: #faf3e5; color: #8a691c; }
#modal-kompact .full-flow-section.after .full-connector { background: #ead7a3; }
#modal-kompact .full-step { align-items: flex-start; }
#modal-kompact .full-step p { margin: 4px 0 0; color: var(--muted); font-size: 13px; font-weight: 400; line-height: 1.45; }

.placeholder-graphic {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 30px 10px;
  text-align: center;
  color: var(--muted);
  font-size: 12.5px;
}
.placeholder-graphic .ph-title { font-weight: 700; color: var(--ink); font-size: 13.5px; }

.detail-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 24px;
}
.btn.secondary {
  background: #fff;
  color: var(--ink);
  border: 1.5px solid var(--border);
}
.btn.secondary:hover { border-color: var(--blue); color: var(--blue); }

@media (max-width: 720px) {
  .detail-body { grid-template-columns: 1fr; }
  .detail-actions { flex-direction: column-reverse; align-items: stretch; }
  .service-flow { grid-template-columns: 1fr 1fr; }
  .service-step:nth-child(2) { border-right: 0; }
  .service-step:nth-child(-n+2) { border-bottom: 1px solid var(--border); }
}

/* Product direct contact modal */
.ticketko-contact-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 110;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(10,22,40,.58);
}
.ticketko-contact-overlay.open { display: flex; }
.ticketko-contact-modal {
  position: relative;
  width: min(100%, 540px);
  padding: 34px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 30px 80px rgba(10,22,40,.35);
  animation: modalIn .18s ease;
}
.ticketko-contact-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: #fff;
  color: var(--muted);
  font-size: 18px;
  cursor: pointer;
}
.ticketko-contact-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .5px;
  text-transform: uppercase;
}
.ticketko-contact-tag #productContactDot { width: 9px; height: 9px; border-radius: 50%; background: var(--green); }
.ticketko-contact-modal h3 { margin: 0 28px 8px 0; font-size: 26px; line-height: 1.2; color: var(--ink); }
.ticketko-contact-modal > p { margin: 0 0 22px; color: var(--muted); font-size: 15px; line-height: 1.55; }
.ticketko-contact-choices { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.ticketko-contact-choice {
  display: block;
  min-height: 116px;
  padding: 18px;
  border: 1.5px solid var(--border);
  border-radius: 14px;
  background: #fff;
  color: var(--ink);
  transition: border-color .18s ease, transform .18s ease;
}
.ticketko-contact-choice:hover { border-color: var(--blue); transform: translateY(-2px); }
.ticketko-contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  margin-bottom: 11px;
  border-radius: 9px;
}
.ticketko-contact-choice.whatsapp .ticketko-contact-icon { background: #eafaf1; color: var(--green); }
.ticketko-contact-choice.email .ticketko-contact-icon { background: #eef4fc; }
.ticketko-contact-choice strong { display: block; font-size: 15px; }
.ticketko-contact-choice small { display: block; margin-top: 4px; color: var(--muted); font-size: 12px; line-height: 1.35; }
.ticketko-contact-modal > p.ticketko-contact-note { margin: 16px 0 0; font-size: 12px; line-height: 1.45; }

@media (max-width: 640px) {
  .ticketko-contact-overlay { padding: 16px; }
  .ticketko-contact-modal { padding: 28px 22px; }
  .ticketko-contact-choices { grid-template-columns: 1fr; }
}

/* Compliance before/after checklist — inside the flow modal, below the step list */
.compliance-compare { margin-top: 22px; }
.compliance-compare .cc-head {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
  font-size: 10.5px; font-weight: 800; text-transform: uppercase; letter-spacing: .4px;
  margin-bottom: 10px;
}
.compliance-compare .cc-head .before { color: #a34a4a; }
.compliance-compare .cc-head .after { color: var(--green); }
.cc-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 8px 0; border-top: 1px solid var(--border); }
.cc-row:first-of-type { border-top: none; }
.cc-item { display: flex; align-items: flex-start; gap: 7px; font-size: 13px; line-height: 1.4; }
.cc-item.before { color: var(--muted); }
.cc-item.after { color: var(--ink); font-weight: 500; }
.cc-item svg { flex: 0 0 auto; margin-top: 1px; }

@media (max-width: 720px) {
  .compliance-compare .cc-head, .cc-row { grid-template-columns: 1fr; gap: 4px; }
  .cc-row { padding: 10px 0; }
}

/* ---- Contact page ---- */

.about-photo {
  width: 108px;
  height: 108px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 30px;
  margin: 0 auto 14px;
  border: 3px solid #fff;
  box-shadow: 0 8px 24px rgba(10,22,40,.18);
  overflow: hidden;
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 24%;
}

.about-stack {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* -- name builder (horizontal) -- */

.name-builder {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 34px 32px 30px;
}

.name-builder .label {
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
  margin-bottom: 24px;
}

.name-builder .row {
  display: flex;
  align-items: stretch;
  justify-content: center;
}

.name-builder .seg {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 14px;
  border-left: 1px solid var(--border);
}

.name-builder .seg:first-child { border-left: none; }

.name-builder .seg .key {
  font-weight: 800;
  font-size: 34px;
  letter-spacing: .5px;
  color: var(--blue);
  line-height: 1;
}

.name-builder .seg .key.kom-key { color: var(--navy); }

.name-builder .seg .divider {
  width: 28px;
  height: 2px;
  background: var(--border);
  border-radius: 2px;
  margin: 14px 0;
}

.name-builder .seg .word { font-weight: 600; font-size: 15px; color: var(--ink); line-height: 1.35; }

@media (max-width: 720px) {
  .name-builder .row { flex-direction: column; }
  .name-builder .seg {
    border-left: none;
    border-top: 1px solid var(--border);
    padding: 14px 0;
  }
  .name-builder .seg:first-child { border-top: none; }
}

/* -- contact bar (horizontal) -- */

.talk-bar {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 20px 28px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.talk-bar .info { display: flex; flex-direction: column; gap: 2px; }
.talk-bar .info .title { font-weight: 700; font-size: 19px; color: var(--ink); }
.talk-bar .info .subtitle { font-size: 14px; color: var(--muted); }

.talk-bar .links { display: flex; flex-wrap: wrap; gap: 12px; }

.talk-bar .links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 11px;
  padding: 11px 20px;
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
}

.talk-bar .links a:hover { border-color: var(--blue); color: var(--blue); }

/* Contact page: WhatsApp and e-mail are the primary actions. */
.talk-bar.channel-priority {
  display: block;
  padding: 28px 30px 24px;
  text-align: center;
}

.talk-bar.channel-priority .info { align-items: center; }

.talk-bar.channel-priority .links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 560px;
  margin: 20px auto 0;
  gap: 10px;
}

.talk-bar.channel-priority .links a {
  justify-content: center;
  min-height: 52px;
  font-size: 14px;
}

.talk-bar.channel-priority .links a[href*="wa.me"] {
  border-color: #78c99e;
  background: #eafaf1;
  color: #0f5c3a;
}

.talk-bar.channel-priority .links a[href^="mailto:"] {
  border-color: #9ec5f5;
  background: #eef4fc;
  color: #175aa9;
}

/* -- bio box (two column) -- */

.bio-box {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px 44px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.bio-box .col { display: flex; flex-direction: column; gap: 20px; }
.bio-box p { margin: 0; font-size: 17px; line-height: 1.6; color: #334155; }
.bio-box p strong { color: var(--ink); font-weight: 600; }
.bio-box .note { font-size: 13px; line-height: 1.5; color: var(--gold); font-style: italic; }

.bio-box .about-link-wrap {
  grid-column: 1 / -1;
  padding-top: 22px;
  border-top: 1px solid var(--border);
  text-align: center;
}

.bio-box .about-link-wrap a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border: 1px solid #b9d5f8;
  border-radius: 10px;
  background: #eef4fc;
  color: #175aa9;
  font-size: 14px;
  font-weight: 700;
}

.bio-box .about-link-wrap a:hover { border-color: var(--blue); background: #e4effc; }

@media (max-width: 720px) {
  .bio-box { grid-template-columns: 1fr; padding: 28px 24px; }
}

@media (max-width: 560px) {
  .talk-bar.channel-priority { padding: 24px 20px 20px; }
  .talk-bar.channel-priority .links { grid-template-columns: 1fr; }
}

footer {
  text-align: center;
  padding: 32px;
  color: var(--muted);
  font-size: 13px;
  border-top: 1px solid var(--border);
}

footer.site-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 27px 32px;
  background: #fbfcfe;
}

.site-footer .footer-legal { color: var(--ink); font-weight: 700; }
.site-footer .footer-contact { color: #175aa9; font-weight: 700; }
.site-footer .footer-contact a { color: inherit; }
.site-footer .footer-contact a:hover { text-decoration: underline; text-underline-offset: 3px; }
.site-footer .footer-contact a:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; border-radius: 2px; }
.site-footer .footer-partner {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 7px;
  padding-top: 13px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}
.site-footer .footer-partner img { display: block; width: auto; max-width: 135px; max-height: 32px; object-fit: contain; }

.official-product-logo { display: block; width: auto; max-width: 138px; max-height: 29px; margin: 0 auto; object-fit: contain; }
.spoke[data-spoke="billko"] .icon, .spoke[data-spoke="ticketko"] .icon { display: block !important; height: 30px !important; }
.spoke[data-spoke="billko"] .teaser, .spoke[data-spoke="ticketko"] .teaser { margin-top: 11px; }

@media (max-width: 640px) {
  .site-footer .footer-partner { flex-direction: column; gap: 7px; }
}

.placeholder-note {
  background: #fff8ec;
  border: 1px solid #f5e3c4;
  color: #92400e;
  font-size: 12.5px;
  padding: 10px 16px;
  border-radius: 8px;
  max-width: 980px;
  margin: 14px auto 0;
  text-align: center;
}

/* Home-only direct WhatsApp path: approved as a secondary action to exploration. */
.home-whatsapp-floater {
  position: fixed;
  right: 26px;
  bottom: 28px;
  z-index: 20;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 17px 13px 14px;
  border-radius: 999px;
  background: #25D366;
  box-shadow: 0 14px 32px rgba(10, 22, 40, .25);
  color: #07351d;
  font-size: 14px;
  font-weight: 800;
  transition: background .16s ease, transform .16s ease, box-shadow .16s ease;
}

.home-whatsapp-floater svg {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  fill: #fff;
}

.home-whatsapp-floater:hover {
  background: #1ebe5d;
  box-shadow: 0 17px 34px rgba(10, 22, 40, .3);
  transform: translateY(-1px);
}

.home-whatsapp-floater:focus-visible {
  outline: 3px solid var(--blue-light);
  outline-offset: 3px;
}

@media (max-width: 640px) {
  .home-whatsapp-floater {
    right: 16px;
    bottom: 18px;
    width: 52px;
    height: 52px;
    justify-content: center;
    padding: 0;
  }

  .home-whatsapp-floater span { display: none; }
}
