/* =========================================================
   Gopass – Landing page migrácia / odstávka 12.–16.10.2026
   Čistý CSS, bez externých závislostí (FTP friendly).
   Striktná paleta: navy #393562 · pink #E0166E · biela · sivá #EEF1F6
   Zelená (--ok) VÝHRADNE pre „čo bude fungovať“.
   ========================================================= */

:root {
  /* Značka (brand škála) */
  --navy:        #393562;   /* 01 Tmavomodrá (brand) */
  --navy-900:    #2b2749;   /* tmavší odtieň navy pre hĺbku */
  --pink:        #e0166e;   /* 02 Sýta ružová */
  --pink-700:    #b81059;   /* hover odtieň */
  --pink-050:    #fdecf3;   /* jemný pink tint */

  /* Neutrály / pozadia */
  --card:        #ffffff;   /* 03 Biela */
  --gray:        #eef1f6;   /* 04 Svetlosivá */
  --line:        #e2e6ee;   /* jemná linka (odvodené zo sivej) */
  --ink:         #222a38;   /* text (tmavý navy) */
  --muted:       #5b6472;   /* sekundárny text (neutrál) */
  --hero-tint:   #bacee866; /* jemný modrý nádych hero (dodané klientom) */

  /* Stav – IBA „funguje“ */
  --ok:          #12a06a;
  --ok-050:      #e7f6ef;

  /* Systém */
  --radius:      18px;
  --radius-sm:   12px;
  --shadow:      0 10px 30px rgba(28, 35, 49, .08);
  --shadow-lg:   0 24px 60px rgba(28, 35, 49, .18);
  --maxw:        1120px;
  --font: "Inter", "Outfit", "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, Arial, sans-serif;
  --font-head: "Montserrat", "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  line-height: 1.6;
  font-family: var(--font) !important;
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 96px; /* priestor pre fixnú lištu „Nič sa nestratí" */
}
/* Horný hero gradient – jemný modrý tint miznúci do #f8fafc */
.hero {
  background: linear-gradient(180deg, #f8fafc00 33%, #f8fafc 90.68%), var(--hero-tint, #bacee866);
}

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }

h1, h2, h3 { font-family: var(--font-head) !important; color: var(--navy); line-height: 1.2; margin: 0 0 .4em; }
.tl-main__date, .tl-side__date, .after-hero__date, .support__contact a { font-family: var(--font-head) !important; }
h2 { font-size: clamp(1.5rem, 3.2vw, 2.15rem); font-weight: 700; letter-spacing: -.01em; }
h3 { font-size: 1.15rem; font-weight: 700; }
p  { margin: 0 0 1em; }
a  { color: var(--pink); }

.section { padding: 56px 0; }
.section--tight { padding: 32px 0; }
.section__head { max-width: 760px; margin-bottom: 28px; }
.section__head p { color: var(--muted); font-size: 1.05rem; margin: 0; }
.eyebrow { display: inline-block; font-size: .8rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; color: var(--pink); margin-bottom: 10px; }
.eyebrow--light { color: #ff9ec4; }

/* ---------- SVG ikony (mask, dedia farbu z .i--*) ----------
   data-URI musia byť percent-enkódované (%3C, %3E). */
.i { width: 20px; height: 20px; flex: 0 0 auto; display: inline-block; background: currentColor;
     -webkit-mask: center/contain no-repeat; mask: center/contain no-repeat; }
.i--on  { color: var(--ok);
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M10 1a9 9 0 100 18 9 9 0 000-18zm-1.2 13L4.7 9.9l1.4-1.4 2.7 2.7 5.1-5.1 1.4 1.4z'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M10 1a9 9 0 100 18 9 9 0 000-18zm-1.2 13L4.7 9.9l1.4-1.4 2.7 2.7 5.1-5.1 1.4 1.4z'/%3E%3C/svg%3E"); }
.i--off { color: var(--pink);
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M10 1a9 9 0 100 18 9 9 0 000-18zm3.5 11.1-1.4 1.4L10 11.4l-2.1 2.1-1.4-1.4L8.6 10 6.5 7.9l1.4-1.4L10 8.6l2.1-2.1 1.4 1.4L11.4 10z'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M10 1a9 9 0 100 18 9 9 0 000-18zm3.5 11.1-1.4 1.4L10 11.4l-2.1 2.1-1.4-1.4L8.6 10 6.5 7.9l1.4-1.4L10 8.6l2.1-2.1 1.4 1.4L11.4 10z'/%3E%3C/svg%3E"); }
.i--warn { color: var(--pink);
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M10 1 1 18h18zm-1 6h2v5H9zm0 6h2v2H9z'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M10 1 1 18h18zm-1 6h2v5H9zm0 6h2v2H9z'/%3E%3C/svg%3E"); }
.i--info { color: var(--navy);
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M10 1a9 9 0 100 18 9 9 0 000-18zm1 13H9V9h2zm0-7H9V5h2z'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M10 1a9 9 0 100 18 9 9 0 000-18zm1 13H9V9h2zm0-7H9V5h2z'/%3E%3C/svg%3E"); }
.i--shield { color: var(--pink);
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2 4 5v6c0 5 3.4 8.4 8 10 4.6-1.6 8-5 8-10V5z'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2 4 5v6c0 5 3.4 8.4 8 10 4.6-1.6 8-5 8-10V5z'/%3E%3C/svg%3E"); }
.i--lock { width: 26px; height: 26px; color: var(--navy);
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 1a5 5 0 00-5 5v3H5v13h14V9h-2V6a5 5 0 00-5-5zm3 8H9V6a3 3 0 016 0z'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 1a5 5 0 00-5 5v3H5v13h14V9h-2V6a5 5 0 00-5-5zm3 8H9V6a3 3 0 016 0z'/%3E%3C/svg%3E"); }

/* ---------- Header ---------- */
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.9); backdrop-filter: saturate(140%) blur(10px); border-bottom: 1px solid var(--line); }
.site-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 12px 20px; max-width: var(--maxw); margin: 0 auto; }
.logo { display: inline-flex; align-items: center; text-decoration: none; }
.logo-img { display: block; height: 30px; width: auto; }
.lang { display: flex; gap: 4px; }
.lang button { border: 1px solid var(--line); background: #fff; color: var(--navy); font: inherit; font-size: .82rem; font-weight: 700; padding: 6px 10px; border-radius: 8px; cursor: pointer; transition: .15s; }
.lang button:hover:not(:disabled) { border-color: var(--navy); background: var(--gray); }
.lang button[aria-pressed="true"] { background: var(--navy); color: #fff; border-color: var(--navy); }
.lang button:disabled { opacity: .4; cursor: not-allowed; }

/* ---------- Hero ---------- */
.hero { padding: 56px 0 48px; }
.hero__inner { text-align: center; }
.hero h1 { font-size: clamp(2.1rem, 5.2vw, 3.3rem); font-weight: 700; max-width: 18ch; margin: 0 auto .4em; letter-spacing: -.02em; }
.hero__lead { font-size: 1.18rem; color: var(--muted); max-width: 60ch; margin: 0 auto; }
.hero__dates { display: inline-flex; align-items: center; flex-wrap: wrap; gap: 6px 16px; margin-top: 12px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 14px 22px; box-shadow: var(--shadow); color: var(--navy); }
.hero__dates-label { font-size: .8rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.hero__dates .big { font-size: 1.35rem; font-weight: 800; color: var(--pink); }
.hero__dates-live { width: 100%; font-size: .92rem; color: var(--muted); font-weight: 600; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.hero .timeline { margin-top: 30px; }

/* 3D app ikona v hero */
.hero__visual { display: flex; justify-content: center; align-items: center; perspective: 1100px; }
.hero__app { position: relative; }
.hero__app::after { content: ""; position: absolute; left: 8%; right: 8%; top: 20%; bottom: -6%; z-index: 0; background: radial-gradient(closest-side, rgba(224,22,110,.38), rgba(224,22,110,0) 72%); filter: blur(26px); }
.hero__app-tile {
  position: relative; z-index: 1;
  width: clamp(180px, 24vw, 260px); aspect-ratio: 1; border-radius: 26%;
  overflow: hidden; transform-style: preserve-3d;
  transform: rotateY(-19deg) rotateX(10deg) rotate(-2deg);
  box-shadow: 0 2px 1px rgba(255,255,255,.5) inset, -22px 26px 44px rgba(28,35,49,.32), -8px 12px 18px rgba(28,35,49,.24);
  animation: float 6s ease-in-out infinite;
}
.hero__app-tile img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero__app-tile::before { content: ""; position: absolute; inset: 0; z-index: 2; background: linear-gradient(135deg, rgba(255,255,255,.35) 0%, rgba(255,255,255,0) 42%); pointer-events: none; }
@keyframes float { 0%,100% { transform: rotateY(-19deg) rotateX(10deg) rotate(-2deg) translateY(0); } 50% { transform: rotateY(-19deg) rotateX(10deg) rotate(-2deg) translateY(-12px); } }

/* ---------- Tlačidlá ---------- */
.btn { display: inline-flex; align-items: center; gap: 8px; text-decoration: none; font: inherit; font-weight: 700; border-radius: 999px; padding: 13px 24px; cursor: pointer; border: 1px solid transparent; transition: .18s; font-size: .95rem; }
.btn--primary { background: var(--pink); color: #fff; box-shadow: 0 8px 20px rgba(224,22,110,.28); }
.btn--primary:hover { background: var(--pink-700); transform: translateY(-1px); }
.btn--ghost { background: #fff; color: var(--navy); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--navy); }

/* ---------- ČASOVÁ OS (kreatívna) ---------- */
.timeline { position: relative; display: grid; grid-template-columns: 1fr 1.5fr 1fr; align-items: center; gap: 18px; padding: 24px 0; }
.timeline::before { content: ""; position: absolute; top: 50%; left: 7%; right: 7%; height: 4px; transform: translateY(-50%); z-index: 0; border-radius: 4px; background: linear-gradient(90deg, var(--navy) 0%, var(--pink) 50%, var(--navy) 100%); }
.tl-side, .tl-main { position: relative; z-index: 1; }

/* bočné míľniky */
.tl-side { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; box-shadow: var(--shadow); text-align: center; }
.tl-side__label { display: block; font-size: .74rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--pink); margin-bottom: 6px; }
.tl-side__date { display: block; font-size: 1.35rem; font-weight: 800; color: var(--navy); letter-spacing: -.01em; }
.tl-side p { color: var(--muted); font-size: .9rem; margin: 8px 0 0; }

/* stredný, dominantný blok – ODSTÁVKA */
.tl-main { background: var(--navy); color: #fff; border-radius: 22px; padding: 30px 26px; text-align: center; box-shadow: 0 22px 50px rgba(28,35,49,.32); transform: translateY(-6px); }
.tl-main__label { display: block; font-size: .84rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.72); margin-bottom: 6px; }
.tl-main__date { display: block; font-size: clamp(2.6rem, 6.5vw, 4.4rem); font-weight: 800; line-height: .98; letter-spacing: -.02em; }
.tl-main__month { display: block; font-size: 1.25rem; font-weight: 700; margin-top: 4px; }
.tl-main p { color: rgba(255,255,255,.92); font-size: .95rem; margin: 14px 0 0; }
.tl-main__cta { display: inline-flex; align-items: center; gap: 8px; margin-top: 16px; background: var(--pink); color: #fff; text-decoration: none; font-weight: 800; font-size: .92rem; padding: 11px 20px; border-radius: 999px; transition: .16s; box-shadow: 0 8px 20px rgba(224,22,110,.28); }
.tl-main__cta::after { content: "\2192"; font-weight: 700; }
.tl-main__cta:hover { background: var(--pink-700); transform: translateY(-1px); }

/* ---------- Karty / mriežky ---------- */
.grid { display: grid; gap: 18px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); }
.card--safe { background: var(--gray); border: 1px solid var(--line); }
.card h3 { margin-bottom: 14px; }

/* Stavové štítky */
.tag { display: inline-flex; align-items: center; gap: 7px; border-radius: 999px; padding: 5px 13px; font-size: .82rem; font-weight: 700; }
.tag--off { background: var(--pink-050); color: var(--pink); }
.tag--on  { background: var(--ok-050);  color: var(--ok); }
.tag::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: currentColor; }

.stack-list { list-style: none; margin: 0; padding: 0; }
.stack-list li { display: flex; gap: 11px; padding: 10px 0; border-top: 1px solid var(--line); align-items: flex-start; }
.stack-list li:first-child { border-top: 0; }
.stack-list .i { margin-top: 1px; }

/* Poznámky (bez ľavého borderu) */
.note { display: flex; gap: 11px; border-radius: var(--radius-sm); padding: 13px 15px; margin: 14px 0 0; font-size: .94rem; align-items: flex-start; }
.note .i { margin-top: 1px; }
.note--warn { background: var(--pink-050); border: 1px solid #f6cede; color: var(--navy); }
.note--info { background: var(--gray); border: 1px solid var(--line); color: var(--navy); }
.tab-intro { max-width: 72ch; color: var(--muted); margin-bottom: 18px; }

/* ---------- Tabs ---------- */
.tabs { margin-top: 6px; }
.tablist { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.tab { border: 1px solid var(--line); background: #fff; color: var(--navy); font: inherit; font-weight: 700; font-size: .92rem; padding: 7px 16px; border-radius: 999px; cursor: pointer; transition: .15s; }
.tab:hover:not([aria-selected="true"]) { border-color: var(--navy); background: var(--gray); }
.tab[aria-selected="true"] { background: var(--navy); color: #fff; border-color: var(--navy); }
.tabpanel { display: none; }
.tabpanel.is-active { display: block; animation: fade .25s ease; }
@keyframes fade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }

/* ---------- Dve aplikácie ---------- */
.apps { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.app-card { display: flex; flex-direction: column; }
.app-card__top { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.app-card__name { margin: 6px 0 0; }
.app-icon-img { width: 54px; height: 54px; border-radius: 14px; flex: 0 0 auto; box-shadow: var(--shadow); }
.app-icon { width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center; color: #fff; font-weight: 800; font-size: 1.15rem; flex: 0 0 auto; background: var(--navy); }
.app-icon--gox { background: #fff; border: 1px solid var(--line); padding: 9px; }
.app-icon--gox img { width: 100%; height: 100%; object-fit: contain; display: block; }
.badge { display: inline-block; font-size: .72rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; padding: 4px 9px; border-radius: 6px; }
.badge--must { background: var(--pink); color: #fff; }
.badge--soon { background: var(--gray); color: var(--muted); }

/* Mockup aplikácie – rámik telefónu so screenshotom (alebo placeholder) */
.app-mockup { margin: 8px auto 4px; width: 200px; max-width: 100%; }
.app-phone { position: relative; aspect-ratio: 9 / 18; border: 8px solid var(--navy); border-radius: 32px; background: var(--gray); display: grid; place-items: center; text-align: center; overflow: hidden; box-shadow: var(--shadow); }
.app-phone__shot { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }
.app-phone > span { color: var(--muted); font-size: .82rem; font-weight: 600; line-height: 1.4; padding: 18px; }
.app-phone__mark { display: block; font-size: 1.6rem; font-weight: 800; color: var(--navy); margin-bottom: 6px; opacity: .35; }

.store-row { display: flex; gap: 10px; margin-top: auto; padding-top: 18px; flex-wrap: wrap; }
.store-btn { display: inline-flex; align-items: center; gap: 10px; background: var(--navy); color: #fff; text-decoration: none; padding: 9px 16px; border-radius: 12px; transition: .15s; }
.store-btn:hover { background: var(--navy-900); }
.store-btn .store-ic { width: 22px; height: 22px; flex: 0 0 auto; }
.store-btn .store-ic svg { width: 100%; height: 100%; display: block; }
.store-btn > span:last-child { display: flex; flex-direction: column; line-height: 1.1; }
.store-btn small { font-size: .62rem; opacity: .8; text-transform: uppercase; letter-spacing: .04em; }
.store-btn b { font-size: .92rem; font-weight: 800; }
.store-btn--disabled { background: var(--gray); color: var(--muted); cursor: default; }
.store-btn--disabled:hover { background: var(--gray); }
.gox-caption { font-size: .86rem; color: var(--muted); margin: 12px 0 0; }

/* ---------- Inline dynamický formulár ---------- */
.configurator { background: #fff; color: var(--ink); border: 1px solid var(--line); border-radius: 24px; padding: 44px; box-shadow: 0 14px 40px rgba(28,35,49,.08); }
.configurator h2 { color: var(--navy); }
.configurator .section__head p { color: var(--muted); }
.cfg-alert { display: flex; gap: 12px; align-items: flex-start; background: rgba(224,22,110,.16); border: 1px solid rgba(224,22,110,.5); border-radius: var(--radius-sm); padding: 15px 18px; margin-bottom: 26px; color: #fff; font-size: 1rem; line-height: 1.5; }
.cfg-alert .i { margin-top: 2px; }
.cfg-alert .i--warn { color: #ff9ec4; }
.inline-form { font-size: clamp(1.15rem, 2.6vw, 1.5rem); font-weight: 600; line-height: 2.3; color: var(--navy); max-width: 62ch; }
.inline-select { display: inline-block; position: relative; margin: 0 3px; vertical-align: baseline; }
.inline-select select { appearance: none; -webkit-appearance: none; font: inherit; font-weight: 800; color: #fff; background: var(--navy); border: 1.5px solid var(--navy); padding: 4px 40px 6px 16px; border-radius: 999px; cursor: pointer; transition: .16s; line-height: 1.2; }
.inline-select select:hover { background: var(--navy-900); border-color: var(--navy-900); }
.inline-select select:focus { outline: none; border-color: var(--pink); box-shadow: 0 0 0 4px rgba(224,22,110,.25); }
.inline-select select option { color: var(--ink); font-weight: 600; background: #fff; }
.inline-select::after { content: ""; position: absolute; right: 16px; top: 50%; transform: translateY(-50%); width: 12px; height: 12px; pointer-events: none; background: var(--pink);
  -webkit-mask: center/contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M5 7l5 6 5-6z'/%3E%3C/svg%3E");
          mask: center/contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M5 7l5 6 5-6z'/%3E%3C/svg%3E"); }

/* výsledok – bez ľavého borderu, oddelený hornou linkou */
.cfg-result { margin-top: 30px; background: var(--gray); border: 1px solid var(--line); border-radius: var(--radius); padding: 8px 26px 22px; animation: fade .3s ease; }
.cfg-result h3 { color: var(--navy); margin: 18px 0 4px; font-size: 1.05rem; }
.cfg-result .r-block { padding: 14px 0; border-top: 1px solid #dfe4ee; }
.cfg-result .r-block:first-of-type { border-top: 0; }
.cfg-result .r-block--safe { background: var(--pink-050); border: 1px solid #f4c9dd; border-radius: 12px; padding: 14px 16px; border-top: 0; margin-top: 8px; }
.cfg-result .r-txt { color: var(--ink); font-size: .98rem; font-weight: 400; line-height: 1.55; }
.cfg-result .r-txt strong { color: var(--navy); }
.cfg-result .r-block--safe .r-txt strong { color: var(--pink); }
.go-note { max-width: 760px; margin-top: 18px; }
.go-card-note { margin: 14px 0 0; padding-top: 13px; border-top: 1px solid var(--line); font-size: .9rem; color: var(--muted); }
.go-card-note b { color: var(--navy); }
.visit-storno { max-width: 820px; margin: 22px 0 0; }

/* Konfigurátor na mobile – selecty na celú šírku, prehľadne stacknuté */
@media (max-width: 600px) {
  .inline-form { font-size: 1.1rem; line-height: 1.7; }
  .inline-select { display: block; margin: 10px 0; }
  .inline-select select { width: 100%; padding: 11px 42px 11px 16px; }
}

/* ---------- Po 17.10. – prvé kroky ---------- */
.after-hero { text-align: center; margin-bottom: 34px; }
.after-hero__eyebrow { display: inline-block; font-size: .82rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--pink); margin-bottom: 8px; }
.after-hero__date { display: block; font-size: clamp(2.4rem, 7vw, 4.6rem); font-weight: 800; line-height: 1; letter-spacing: -.02em; color: var(--navy); }
.after-hero__date b { color: var(--pink); }
.after-hero__sub { max-width: 60ch; margin: 14px auto 0; color: var(--muted); font-size: 1.08rem; }

.steps { list-style: none; margin: 0 0 20px; padding: 0; display: grid; gap: 14px; }
.step { display: flex; gap: 18px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 20px 22px; box-shadow: var(--shadow); align-items: flex-start; }
.step__num { flex: 0 0 auto; width: 40px; height: 40px; border-radius: 50%; background: var(--navy); color: #fff; font-weight: 800; display: grid; place-items: center; font-size: 1.05rem; }
.step h3 { margin: 4px 0 4px; }
.step p { margin: 0; color: var(--muted); }
.step p b { color: var(--navy); }

/* ---------- Infolinka ---------- */
.support { background: var(--navy); color: #fff; border-radius: 24px; padding: 44px; }
.support h2 { color: #fff; }
.support p { color: rgba(255,255,255,.82); }
.support__grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: 34px; align-items: center; }
.support__contact { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16); border-radius: var(--radius); padding: 24px; }
.support__contact-label { margin: 0 0 6px; font-size: .8rem; text-transform: uppercase; letter-spacing: .06em; opacity: .7; }
.support__contact a { color: #fff; font-weight: 800; font-size: 1.7rem; text-decoration: none; letter-spacing: .02em; }
.support__contact-hours { margin: 14px 0 0; font-size: .9rem; opacity: .85; }

/* ---------- Sticky lišta „Nič sa nestratí" ---------- */
.safe-bar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 60; background: var(--pink-050); color: var(--ink); border-top: 1px solid #f4c9dd; box-shadow: 0 -6px 22px rgba(28,35,49,.10); }
.safe-bar__inner { display: flex; align-items: center; gap: 14px; padding: 14px 20px; }
.safe-bar .i { width: 28px; height: 28px; flex: 0 0 auto; }
.safe-bar .i--shield { color: var(--pink); }
.safe-bar p { margin: 0; font-size: .96rem; line-height: 1.45; color: var(--ink); }
.safe-bar b { color: var(--navy); }

/* ---------- Footer ---------- */
.site-footer { padding: 40px 0; text-align: center; color: var(--muted); font-size: .9rem; }
.site-footer .logo { justify-content: center; margin-bottom: 12px; }
.site-footer .logo-img { height: 34px; }

/* ---------- Responsívne ---------- */
@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; gap: 28px; }
  .hero__visual { order: -1; }
  .hero__app-tile { width: clamp(150px, 44vw, 210px); }
}
@media (max-width: 860px) {
  .grid--2, .grid--3, .apps, .support__grid { grid-template-columns: 1fr; }
  .configurator, .support { padding: 26px; }
  .inline-form { line-height: 2.6; }

  /* časová os → vertikálne, stred zostáva dominantný */
  .timeline { grid-template-columns: 1fr; gap: 14px; padding: 8px 0; }
  .timeline::before { top: 4%; bottom: 4%; left: 50%; right: auto; width: 4px; height: auto; transform: translateX(-50%); background: linear-gradient(180deg, var(--navy) 0%, var(--pink) 50%, var(--navy) 100%); }
  .tl-main { transform: none; }
}
@media (max-width: 520px) {
  .section { padding: 40px 0; }
  .hero { padding: 36px 0 30px; }
  body { padding-bottom: 150px; }
  .safe-bar__inner { padding: 12px 16px; gap: 11px; }
  .safe-bar p { font-size: .84rem; }
  .safe-bar .i { width: 24px; height: 24px; }
}
