/* zitumea.com — Súkromná medzinárodná preprava */
/* Matrix #05: radikálny minimalizmus, biela/čierna/limetková */

:root {
  --biela: #ffffff;
  --cierna: #111111;
  --limet: #7fff00;
  --seda-svetla: #f5f5f5;
  --seda-stredna: #888888;
  --seda-tmava: #333333;
  --font-hlavny: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font-mono: 'Courier New', Courier, monospace;
  --priestor-s: 1rem;
  --priestor-m: 2rem;
  --priestor-l: 4rem;
  --priestor-xl: 8rem;
  --max-sirka: 1100px;
  --prechod: 200ms ease;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-hlavny);
  background: var(--biela);
  color: var(--cierna);
  line-height: 1.6;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ── Grid pattern podložka ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(127,255,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(127,255,0,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: 0;
}

/* ── Typografia ── */
h1 { font-size: clamp(2.8rem, 7vw, 6rem); font-weight: 900; letter-spacing: -0.03em; line-height: 1; }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 800; letter-spacing: -0.02em; line-height: 1.1; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 700; letter-spacing: -0.01em; }
p { font-size: 1rem; line-height: 1.7; color: var(--seda-tmava); }
.w1 { font-family: var(--font-mono); font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--seda-stredna); }

/* ── Kontajner ── */
.b1 { max-width: var(--max-sirka); margin: 0 auto; padding: 0 var(--priestor-m); position: relative; z-index: 1; }

/* ── NAVIGÁCIA — iba kotviace odkazy ── */
.b2 {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem var(--priestor-m);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.e1 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 900;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
}
.e1 span {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--limet);
  border-radius: 50%;
}
.e2 {
  display: flex;
  gap: var(--priestor-m);
  align-items: center;
}
.e2 a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--seda-tmava);
  transition: color var(--prechod);
  position: relative;
}
.e2 a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--limet);
  transition: width var(--prechod);
}
.e2 a:hover { color: var(--cierna); }
.e2 a:hover::after { width: 100%; }
.e2 .c1 {
  background: var(--cierna);
  color: var(--biela);
  padding: 0.5rem 1.25rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: background var(--prechod);
}
.e2 .c1::after { display: none; }
.e2 .c1:hover { background: var(--limet); color: var(--cierna); }

/* ── HERO — diagonálny clip-path ── */
.b3 {
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 9rem var(--priestor-m) 8rem;
  clip-path: polygon(0 0, 100% 0, 100% 92%, 0 100%);
  background: var(--cierna);
  color: var(--biela);
  position: relative;
  overflow: hidden;
}
.b3::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 55%;
  height: 100%;
  background: radial-gradient(ellipse at 80% 40%, rgba(127,255,0,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.b3 .b1 { width: 100%; }
.c2 { position: relative; z-index: 1; max-width: 760px; }
.c2--full { max-width: 760px; }
.c2 .w1 { color: var(--limet); margin-bottom: 1.5rem; display: block; }
.c2 h1 { color: var(--biela); margin-bottom: var(--priestor-m); }
.c2 h1 em {
  font-style: normal;
  color: var(--limet);
}
.b3-perex { color: rgba(255,255,255,0.6); font-size: 1.15rem; margin-bottom: var(--priestor-m); max-width: 560px; }
.c2 .b4 {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: var(--priestor-l);
}
.b3-meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding-top: var(--priestor-m);
  border-top: 1px solid rgba(255,255,255,0.1);
}
.b3-meta-item { display: flex; flex-direction: column; gap: 0.1rem; }
.b3-meta-num { font-family: var(--font-mono); font-size: 1.4rem; font-weight: 700; color: var(--biela); line-height: 1; }
.b3-meta-label { font-size: 0.7rem; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.4); }
.b3-meta-sep { width: 1px; height: 2rem; background: rgba(255,255,255,0.15); }
.b5 {
  display: inline-block;
  padding: 0.85rem 2rem;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  transition: all var(--prechod);
}
.b5.e3 { background: var(--limet); color: var(--cierna); }
.b5.e3:hover { background: var(--biela); }
.b5.e4 { border: 1px solid rgba(255,255,255,0.3); color: var(--biela); }
.b5.e4:hover { border-color: var(--limet); color: var(--limet); }

/* .w2 removed — form moved to contact.html only */

/* ── TOAST ── */
.e7 {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--cierna);
  color: var(--biela);
  padding: 1rem 2rem;
  font-size: 0.9rem;
  font-weight: 500;
  z-index: 9999;
  transition: transform 0.3s ease;
  white-space: nowrap;
}
.e7.e8 { transform: translateX(-50%) translateY(0); }
.e7.e9 { background: var(--limet); color: var(--cierna); }
.e7.b7 { background: #ff4444; }

/* ── SEKCIA: POČÍTADLÁ ── */
.b8 {
  padding: var(--priestor-xl) var(--priestor-m);
  padding-top: 8rem;
}
.b8 .b1 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--priestor-m); }
.b9 { text-align: center; padding: var(--priestor-m) 0; border-top: 2px solid var(--cierna); }
.b9 .c1 { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 900; font-family: var(--font-mono); line-height: 1; }
.b9 .c1 .e1a { color: var(--limet); }
.b9 p { font-size: 0.8rem; margin-top: 0.5rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--seda-stredna); }

/* ── SEKCIA: TIMELINE ── */
.b10 {
  padding: var(--priestor-xl) var(--priestor-m);
  background: var(--seda-svetla);
  position: relative;
}
.b10 .b1 { display: grid; grid-template-columns: 1fr 2fr; gap: var(--priestor-xl); }
.b10 .c2 h2 { margin-bottom: var(--priestor-s); }
.b10 .c2 p { margin-bottom: var(--priestor-m); }
.b11 { position: relative; }
.b11::before {
  content: '';
  position: absolute;
  left: 1.25rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--cierna), rgba(0,0,0,0.1));
}
.b12 {
  display: flex;
  gap: var(--priestor-m);
  padding-bottom: var(--priestor-l);
  position: relative;
}
.b12:last-child { padding-bottom: 0; }
.b13 {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  background: var(--biela);
  border: 2px solid var(--cierna);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 0.85rem;
  font-family: var(--font-mono);
  position: relative;
  z-index: 1;
  transition: all var(--prechod);
}
.b12:hover .b13 { background: var(--limet); border-color: var(--limet); }
.b14 { padding-top: 0.25rem; }
.b14 h3 { margin-bottom: 0.4rem; }
.b14 p { font-size: 0.9rem; }

/* ── SEKCIA: KARET (dôvera) ── */
.b15 {
  padding: var(--priestor-xl) var(--priestor-m);
}
.b15 .b1 { }
.b16 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--priestor-m);
  margin-top: var(--priestor-l);
}
.b17 {
  padding: var(--priestor-m);
  border: 1.5px solid #e8e8e8;
  transition: border-color var(--prechod);
}
.b17:hover { border-color: var(--limet); }
.b17 .c1 {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--limet);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.b17 .c1 svg { width: 1.2rem; height: 1.2rem; }
.b17 h3 { margin-bottom: 0.5rem; font-size: 1rem; }
.b17 p { font-size: 0.88rem; }

/* ── SEKCIA: OBRÁZKY ── */
.b18 {
  padding: 0 var(--priestor-m) var(--priestor-xl);
  background: var(--seda-svetla);
}
.b18 .b1 {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 1rem;
}
.b19 { overflow: hidden; }
.b19 img { width: 100%; height: 100%; object-fit: cover; display: block; }
.b19.e10 { grid-row: span 2; }
.b19 svg { width: 100%; display: block; }

/* ── SEKCIA: CTA ── */
.b20 {
  padding: var(--priestor-xl) var(--priestor-m);
  background: var(--cierna);
  text-align: center;
}
.b20 h2 { color: var(--biela); margin-bottom: var(--priestor-s); }
.b20 p { color: rgba(255,255,255,0.55); max-width: 500px; margin: 0 auto var(--priestor-m); }
.b20 .b5 { display: inline-block; }

/* ── FOOTER ── */
.b21 {
  padding: var(--priestor-m);
  border-top: 1px solid #e0e0e0;
}
.b21 .b1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.b22 { display: flex; gap: var(--priestor-m); flex-wrap: wrap; }
.b22 a { font-size: 0.8rem; color: var(--seda-stredna); transition: color var(--prechod); }
.b22 a:hover { color: var(--cierna); }
.b21 p { font-size: 0.8rem; color: var(--seda-stredna); }

/* ── COOKIE BANNER ── */
.c3 {
  position: fixed;
  inset: 0;
  z-index: 9998;
  display: flex;
  align-items: flex-end;
  pointer-events: none;
}
.c3.e11 { pointer-events: all; }
.c4 {
  background: var(--cierna);
  color: var(--biela);
  padding: var(--priestor-m);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--priestor-m);
  flex-wrap: wrap;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
.c3.e11 .c4 { transform: translateY(0); }
.c4 p { font-size: 0.85rem; color: rgba(255,255,255,0.75); max-width: 600px; }
.c4 p a { color: var(--limet); text-decoration: underline; }
.c5 { display: flex; gap: 0.75rem; flex-shrink: 0; }
.c5 button {
  padding: 0.6rem 1.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: all var(--prechod);
}
.c5 .e12 { background: var(--limet); color: var(--cierna); }
.c5 .e12:hover { background: var(--biela); }
.c5 .e13 { border: 1px solid rgba(255,255,255,0.3); color: var(--biela); }
.c5 .e13:hover { border-color: var(--limet); color: var(--limet); }
.c3:not(.e11) { display: none; }

/* ── VNÚTORNÉ STRÁNKY ── */
.w3 {
  padding-top: 6rem;
  min-height: 100vh;
}
.w4 {
  padding: var(--priestor-xl) var(--priestor-m);
  max-width: 800px;
  margin: 0 auto;
}
.w4 h1 { margin-bottom: var(--priestor-m); font-size: clamp(1.8rem, 4vw, 2.8rem); }
.w4 h2 { font-size: 1.4rem; margin: var(--priestor-m) 0 var(--priestor-s); }
.w4 h3 { font-size: 1.1rem; margin: var(--priestor-m) 0 0.5rem; }
.w4 p { margin-bottom: var(--priestor-s); }
.w4 ul { margin-bottom: var(--priestor-s); }
.w4 ul li { padding: 0.3rem 0 0.3rem 1.2rem; position: relative; font-size: 0.95rem; color: var(--seda-tmava); }
.w4 ul li::before { content: '—'; position: absolute; left: 0; color: var(--limet); font-weight: 700; }
.w4 .w1 { margin-bottom: var(--priestor-m); }
.w4 a { color: var(--cierna); border-bottom: 1px solid var(--limet); }

/* Hero vnútorná stránka */
.w5 {
  background: var(--cierna);
  clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
  padding: 8rem var(--priestor-m) 7rem;
  text-align: center;
}
.w5 h1 { color: var(--biela); }
.w5 .w1 { color: var(--limet); margin-bottom: 1rem; justify-content: center; display: block; }
.w5 p { color: rgba(255,255,255,0.6); max-width: 600px; margin: 1rem auto 0; font-size: 1.05rem; }

/* Sekcia vnútorná */
.w6 {
  padding: var(--priestor-xl) var(--priestor-m);
}
.w6 .b1 { }
.w7 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--priestor-l);
  margin-top: var(--priestor-l);
}
.w8 { border-top: 2px solid var(--cierna); padding-top: var(--priestor-m); }
.w8 h3 { margin-bottom: 0.75rem; }
.w8 p { font-size: 0.9rem; }

/* Kontakt stránka */
.w9 {
  padding: var(--priestor-xl) var(--priestor-m);
  background: var(--seda-svetla);
}
.w9 .b1 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--priestor-xl);
}
.wa { }
.wa h2 { margin-bottom: var(--priestor-m); }
.wa .wb { margin-bottom: var(--priestor-m); }
.wa .wb .w1 { margin-bottom: 0.25rem; }
.wa .wb p { font-size: 0.95rem; font-weight: 500; color: var(--cierna); }
.wc { background: var(--biela); padding: var(--priestor-m); }
.wc h3 { margin-bottom: var(--priestor-m); }
.wc .b6 { margin-bottom: 1.25rem; display: flex; flex-direction: column; }
.wc .b6 label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
  color: var(--cierna);
}
.wc .b6 input,
.wc .b6 select,
.wc .b6 textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1.5px solid #e0e0e0;
  background: var(--biela);
  font-family: var(--font-hlavny);
  font-size: 0.95rem;
  color: var(--cierna);
  transition: border-color var(--prechod);
  outline: none;
  border-radius: 0;
  -webkit-appearance: none;
  box-sizing: border-box;
}
.wc .b6 input:focus,
.wc .b6 select:focus,
.wc .b6 textarea:focus { border-color: var(--limet); }
.wc .b6 input.e5,
.wc .b6 select.e5,
.wc .b6 textarea.e5 { border-color: #ff4444; }
.wc .b6 textarea { height: 110px; resize: vertical; }
.wc .b6 .e6 { display: block; font-size: 0.75rem; color: #ff4444; margin-top: 0.25rem; min-height: 1rem; }
.wc button[type="submit"] {
  display: block;
  width: 100%;
  padding: 0.9rem;
  background: var(--cierna);
  color: var(--biela);
  font-family: var(--font-hlavny);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background var(--prechod);
}
.wc button[type="submit"]:hover { background: var(--limet); color: var(--cierna); }

/* 404 */
.wd {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--priestor-m);
}
.wd .c1 { font-size: 8rem; font-weight: 900; font-family: var(--font-mono); line-height: 1; color: var(--limet); }
.wd h1 { margin: 1rem 0; }
.wd p { color: var(--seda-stredna); margin-bottom: var(--priestor-m); }

/* Stránka trasy — tabuľka */
.we {
  padding: var(--priestor-xl) var(--priestor-m);
}
.wf {
  width: 100%;
  border-collapse: collapse;
  margin-top: var(--priestor-l);
  font-size: 0.9rem;
}
.wf th {
  text-align: left;
  padding: 0.75rem 1rem;
  background: var(--cierna);
  color: var(--biela);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: var(--font-mono);
}
.wf td { padding: 0.9rem 1rem; border-bottom: 1px solid #e8e8e8; }
.wf tr:hover td { background: var(--seda-svetla); }
.wf .e14 {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  background: var(--limet);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--cierna);
}

/* Mobil hamburger */
.wg { display: none; flex-direction: column; gap: 5px; padding: 0.5rem; }
.wg span { display: block; width: 22px; height: 2px; background: var(--cierna); transition: all var(--prechod); }

/* ── NOVÉ SEKCIE: Typy vozidiel + O nás ── */
.ix-vozidla {
  padding: var(--priestor-xl) var(--priestor-m);
  background: var(--cierna);
  color: var(--biela);
}
.ix-vozidla .w1 { color: var(--limet); margin-bottom: 0.75rem; }
.ix-vozidla h2 { color: var(--biela); margin-bottom: var(--priestor-s); }
.ix-uvod {
  color: rgba(255,255,255,0.6);
  max-width: 640px;
  margin-bottom: var(--priestor-l);
  font-size: 1rem;
}
.ix-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.1);
}
.ix-typ {
  padding: var(--priestor-m);
  background: var(--cierna);
  transition: background var(--prechod);
}
.ix-typ:hover { background: #1a1a1a; }
.ix-ikona {
  width: 3rem;
  height: 2rem;
  margin-bottom: 1.25rem;
  color: var(--limet);
}
.ix-ikona svg { width: 100%; height: 100%; }
.ix-typ h3 { color: var(--biela); font-size: 1.1rem; margin-bottom: 0.25rem; }
.ix-kapacita {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--limet);
  letter-spacing: 0.08em;
  margin-bottom: 0.85rem;
}
.ix-typ > p { color: rgba(255,255,255,0.55); font-size: 0.88rem; margin-bottom: 1rem; }
.ix-znaky { margin: 0; }
.ix-znaky li {
  padding: 0.3rem 0 0.3rem 1rem;
  position: relative;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}
.ix-znaky li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--limet);
  font-weight: 700;
}

/* O nás */
.ix-onas {
  padding: var(--priestor-xl) var(--priestor-m);
  background: var(--seda-svetla);
}
.ix-onas-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--priestor-xl);
  align-items: start;
}
.ix-onas-text .w1 { margin-bottom: 0.75rem; }
.ix-onas-text h2 { margin-bottom: var(--priestor-m); }
.ix-onas-text p { margin-bottom: 1rem; font-size: 0.95rem; max-width: 520px; }
.ix-onas-cta {
  display: flex;
  gap: 1rem;
  margin-top: var(--priestor-m);
  flex-wrap: wrap;
}
.ix-onas-cta .e4 {
  border-color: var(--cierna);
  color: var(--cierna);
}
.ix-onas-cta .e4:hover { border-color: var(--limet); color: var(--cierna); background: var(--limet); }
.ix-onas-boxy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: #d8d8d8;
  border: 1px solid #d8d8d8;
  align-self: start;
}
.ix-box {
  background: var(--biela);
  padding: 1.5rem;
}
.ix-box-cislo {
  display: block;
  font-size: 2.4rem;
  font-weight: 900;
  font-family: var(--font-mono);
  line-height: 1;
  color: var(--cierna);
  margin-bottom: 0.2rem;
}
.ix-box-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--seda-stredna);
  margin-bottom: 0.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--limet);
}
.ix-box p { font-size: 0.82rem; color: var(--seda-tmava); margin: 0; }

/* ── Responzívnosť ── */
@media (max-width: 900px) {
  /* hero is already single-col */
  .b8 .b1 { grid-template-columns: repeat(2, 1fr); }
  .b10 .b1 { grid-template-columns: 1fr; }
  .b16 { grid-template-columns: 1fr; }
  .b18 .b1 { grid-template-columns: 1fr 1fr; }
  .b19.e10 { grid-row: span 1; }
  .w7 { grid-template-columns: 1fr; }
  .w9 .b1 { grid-template-columns: 1fr; }
  .ix-grid { grid-template-columns: 1fr; }
  .ix-onas-grid { grid-template-columns: 1fr; }
  .ix-onas-boxy { grid-template-columns: 1fr 1fr; }
  .e2 { display: none; }
  .wg { display: flex; }
  .b2 .e2.e15 { display: flex; flex-direction: column; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: var(--cierna); justify-content: center; align-items: center; gap: 2rem; }
  .b2 .e2.e15 a { color: var(--biela); font-size: 1.5rem; font-weight: 700; }
  .b2 .e2.e15 .c1 { color: var(--biela); }
}
@media (max-width: 600px) {
  .b8 .b1 { grid-template-columns: 1fr 1fr; }
  .b18 .b1 { grid-template-columns: 1fr; }
  :root { --priestor-xl: 4rem; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
