:root {
  --bg: #eef1f6;
  --bg-2: #f8fafc;
  --panel: #ffffff;
  --panel-2: #f1f5f9;
  --line: #e2e8f0;
  --text: #1e293b;
  --muted: #64748b;
  --accent: #3b82f6;
  --accent-2: #2563eb;
  --accent-soft: #eff6ff;
  --dark: #0f1d38;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow: 0 2px 10px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 10px 30px rgba(15, 23, 42, 0.10);
  --shadow-lg: 0 30px 60px rgba(15, 23, 42, 0.18);
  --max: 1140px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Roboto, system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3 {
  line-height: 1.15;
  margin: 0;
  letter-spacing: -0.02em;
}

p {
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

.grad {
  background: linear-gradient(120deg, var(--accent) 0%, var(--accent-2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-2);
  margin-bottom: 14px;
}

/* ---------------- Brand ---------------- */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--accent-soft);
  border: 1px solid #dbeafe;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex: none;
}

.brand-logo svg {
  width: 24px;
  height: 24px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-mark {
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
}

.brand-accent {
  color: var(--accent);
}

.brand-by {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.04em;
}

/* ---------------- Buttons ---------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  font-size: 15px;
  border-radius: 12px;
  padding: 12px 22px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}

.btn:active {
  transform: translateY(1px);
}

.btn-sm {
  padding: 9px 16px;
  font-size: 14px;
}

.btn-lg {
  padding: 15px 28px;
  font-size: 16px;
}

.btn-primary {
  background: linear-gradient(120deg, var(--accent) 0%, var(--accent-2) 100%);
  color: #fff;
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.35);
}

.btn-primary:hover {
  box-shadow: 0 12px 26px rgba(59, 130, 246, 0.45);
  transform: translateY(-2px);
}

.btn-ghost {
  background: var(--panel);
  color: var(--text);
  border-color: var(--line);
  box-shadow: var(--shadow);
}

.btn-ghost:hover {
  border-color: #cbd5e1;
  transform: translateY(-2px);
}

.btn-light {
  background: #fff;
  color: var(--accent-2);
}

.btn-light:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.12);
}

/* ---------------- Nav ---------------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  font-weight: 600;
  font-size: 15px;
  color: var(--muted);
  transition: color 0.15s ease;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-links a.btn-primary {
  color: #fff;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

/* ---------------- Language switcher ---------------- */
.lang-switch {
  position: relative;
}

.lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 7px 11px;
  cursor: pointer;
  font-family: inherit;
  font-weight: 700;
  font-size: 14px;
  color: var(--text);
  box-shadow: var(--shadow);
  transition: border-color 0.15s ease;
}

.lang-btn:hover {
  border-color: #cbd5e1;
}

.lang-flag {
  width: 22px;
  height: 15px;
  border-radius: 3px;
  overflow: hidden;
  display: inline-flex;
  flex: none;
  box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.08);
}

.lang-flag svg {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.lang-caret {
  font-size: 11px;
  color: var(--muted);
}

.lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 184px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  padding: 6px;
  display: none;
  z-index: 60;
}

.lang-switch.open .lang-menu {
  display: block;
}

.lang-item {
  display: flex;
  align-items: center;
  gap: 11px;
  width: 100%;
  background: none;
  border: 0;
  border-radius: 8px;
  padding: 9px 10px;
  cursor: pointer;
  font-family: inherit;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  transition: background 0.12s ease;
}

.lang-item:hover {
  background: var(--panel-2);
}

.lang-item.active {
  background: var(--accent-soft);
  color: var(--accent-2);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* ---------------- Hero ---------------- */
.hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(1200px 600px at 80% -10%, #dbeafe 0%, transparent 60%),
    linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 100%);
  padding: 80px 0 90px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
}

.hero-copy .eyebrow {
  display: block;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 7px 14px 7px 12px;
  background: var(--panel);
  border: 1px solid #bfdbfe;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--accent-2);
  box-shadow: var(--shadow);
}

.hero-tag::before {
  content: "★";
  font-size: 12px;
  color: var(--accent);
}

.hero-copy h1 {
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 900;
}

.lead {
  margin-top: 22px;
  font-size: 18px;
  color: var(--muted);
  max-width: 520px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.hero-badges {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  padding: 0;
  margin: 34px 0 0;
}

.hero-badges li {
  position: relative;
  padding-left: 22px;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
}

.hero-badges li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent-soft);
  border: 2px solid var(--accent);
}

/* ---------------- Hero mockup ---------------- */
.hero-visual {
  position: relative;
}

.mock-glow {
  position: absolute;
  inset: 10% -8% -12% 8%;
  background: radial-gradient(circle at 50% 40%, rgba(59, 130, 246, 0.35), transparent 70%);
  filter: blur(40px);
  z-index: 0;
}

.shot {
  position: relative;
  z-index: 1;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.shot img {
  display: block;
  width: 100%;
  height: auto;
}

.shot-tilt {
  transform: perspective(1600px) rotateY(-9deg) rotateX(3deg);
  transition: transform 0.45s ease;
}

.shot-tilt:hover {
  transform: perspective(1600px) rotateY(0deg) rotateX(0deg);
}

/* ---------------- Sections ---------------- */
.section {
  padding: 88px 0;
}

.section-alt {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 52px;
}

.section-head h2 {
  font-size: clamp(28px, 3.6vw, 40px);
  font-weight: 800;
}

.section-head p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 18px;
}

/* ---------------- Feature cards ---------------- */
.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: #c7d8f5;
}

.card-ico {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent-2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.card-ico svg {
  width: 24px;
  height: 24px;
}

.card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.card p {
  font-size: 15px;
  color: var(--muted);
}

/* ---------------- Steps ---------------- */
.steps {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.step {
  flex: 1 1 240px;
  max-width: 320px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow);
  text-align: center;
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-weight: 800;
  font-size: 20px;
  color: #fff;
  background: linear-gradient(120deg, var(--accent) 0%, var(--accent-2) 100%);
  margin-bottom: 16px;
}

.step h3 {
  font-size: 19px;
  margin-bottom: 8px;
}

.step p {
  color: var(--muted);
  font-size: 15px;
}

.step-arrow {
  display: flex;
  align-items: center;
  font-size: 28px;
  color: #cbd5e1;
  font-weight: 700;
}

/* ---------------- Split (mobile section) ---------------- */
.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}

.split-copy h2 {
  font-size: clamp(26px, 3.4vw, 38px);
  font-weight: 800;
  margin-bottom: 18px;
}

.split-copy p {
  color: var(--muted);
  font-size: 18px;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 26px 0 0;
  display: grid;
  gap: 14px;
}

.check-list li {
  position: relative;
  padding-left: 34px;
  font-weight: 600;
  color: var(--text);
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
}

.split-visual {
  display: flex;
  justify-content: center;
}

.qr-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 28px;
  text-align: center;
  max-width: 280px;
}

.qr-img {
  width: 220px;
  height: 220px;
  margin: 0 auto;
  display: block;
  border-radius: 12px;
  border: 8px solid #fff;
  outline: 1px solid var(--line);
}

.qr-label {
  margin-top: 18px;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
}

/* ---------------- Format chips ---------------- */
.format-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  max-width: 820px;
  margin: 0 auto;
}

.chip {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 12px 24px;
  font-weight: 700;
  font-size: 16px;
  box-shadow: var(--shadow);
}

.chip-accent {
  background: var(--accent-soft);
  border-color: #bfdbfe;
  color: var(--accent-2);
}

/* ---------------- Video ---------------- */
.video-frame {
  position: relative;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #000;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-cta {
  text-align: center;
  margin-top: 24px;
}

.video-cta .yt-ico {
  display: inline-flex;
  color: #ff0000;
}

.video-cta .yt-ico svg {
  width: 22px;
  height: 22px;
}

/* ---------------- Showcase gallery ---------------- */
.shots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.shot-card {
  margin: 0;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.shot-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: #c7d8f5;
}

.shot-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: top center;
  background: var(--panel-2);
  border-bottom: 1px solid var(--line);
}

.shot-card figcaption {
  padding: 14px 18px;
  font-weight: 700;
  font-size: 15px;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
}

.shot-card figcaption::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex: none;
}

/* ---------------- Download ---------------- */
.download-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  max-width: 1120px;
  margin: 0 auto;
}

@media (max-width: 860px) {
  .download-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
  }
}

.download-card {
  position: relative;
  text-align: center;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 44px 32px 36px;
}

.download-card-free {
  border-color: #bbf7d0;
  background: linear-gradient(180deg, #f0fdf4 0%, var(--panel) 120px);
}

.download-free-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: #16a34a;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.download-ico-free {
  background: #dcfce7;
  color: #15803d;
}

.download-ico {
  width: 68px;
  height: 68px;
  border-radius: 18px;
  background: var(--accent-soft);
  color: var(--accent-2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.download-ico svg {
  width: 34px;
  height: 34px;
}

.download-card h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 10px;
}

.download-desc {
  color: var(--muted);
  font-size: 16px;
  margin-bottom: 26px;
}

.download-card .btn .dl-ico {
  display: inline-flex;
}

.download-card .btn .dl-ico svg {
  width: 20px;
  height: 20px;
}

.download-meta {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 20px;
  padding: 0;
  margin: 24px 0 0;
}

.download-meta li {
  position: relative;
  padding-left: 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
}

.download-meta li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent-soft);
  border: 2px solid var(--accent);
}

.download-buy {
  display: inline-block;
  margin-top: 22px;
  font-weight: 700;
  font-size: 15px;
  color: var(--accent-2);
}

.download-buy:hover {
  text-decoration: underline;
}

.download-soon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 6px 0 4px;
  padding: 12px 22px;
  background: var(--accent-soft);
  color: var(--accent-2);
  border: 1px dashed #bfdbfe;
  border-radius: 999px;
  font-weight: 700;
  font-size: 16px;
}

/* ---------------- Order form ---------------- */
.order-price {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
  gap: 8px;
  margin: 16px auto 0;
  padding: 9px 18px;
  background: var(--accent-soft);
  color: var(--accent-2);
  border: 1px solid #dbeafe;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
}

.order-price .price-old {
  text-decoration: line-through;
  font-weight: 700;
  font-size: 17px;
  color: var(--muted);
  opacity: 0.85;
}

.order-price .price-now {
  font-weight: 800;
  font-size: 20px;
  color: var(--accent);
}

.order-form {
  max-width: 760px;
  margin: 0 auto;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 34px 32px;
}

/* Prepínač Firma / Súkromná osoba */
.order-type {
  display: inline-flex;
  gap: 4px;
  padding: 5px;
  margin-bottom: 24px;
  background: var(--accent-soft);
  border: 1px solid var(--line);
  border-radius: 999px;
}

.order-type-btn {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-weight: 700;
  font-size: 14px;
  padding: 9px 20px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}

.order-type-btn.is-active {
  background: var(--panel);
  color: var(--accent-2);
  box-shadow: var(--shadow);
}

/* Skrytie firemných polí pri súkromnej osobe */
.order-form.is-osoba .company-only {
  display: none;
}

.order-secure {
  flex-basis: 100%;
  margin: 0;
  font-size: 13.5px;
  color: var(--muted);
}

.order-alt {
  flex-basis: 100%;
  margin: 0;
  font-size: 13.5px;
  color: var(--muted);
}

.order-alt a {
  color: var(--accent-2);
  font-weight: 700;
}

/* Dôveryhodnosť platby (trust badges) */
.pay-trust {
  flex-basis: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 2px;
}

.pay-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 30px;
  padding: 0 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 7px;
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.05);
}

.pay-lock svg {
  width: 15px;
  height: 15px;
  color: #16a34a;
}

.pay-visa {
  color: #1a1f71;
  font-style: italic;
  font-weight: 800;
  letter-spacing: 0.5px;
  font-size: 15px;
}

.pay-mc svg {
  width: 34px;
  height: 21px;
}

.pay-stripe {
  color: #635bff;
}

.pay-stripe .pay-stripe-pre {
  color: var(--muted);
  font-weight: 600;
}

.pay-stripe b {
  color: #635bff;
  font-weight: 800;
  letter-spacing: -0.3px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.field-full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}

.field .req {
  color: var(--accent-2);
}

.field input,
.field textarea {
  font-family: inherit;
  font-size: 15px;
  color: var(--text);
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 14px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  width: 100%;
}

.field textarea {
  resize: vertical;
  min-height: 90px;
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: #fff;
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.field input.invalid,
.field textarea.invalid {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.12);
}

.field-hint {
  font-size: 12.5px;
  color: var(--muted);
}

.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.form-actions {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.form-msg {
  font-size: 15px;
  font-weight: 600;
  margin: 0;
}

.form-msg.ok {
  color: #15803d;
}

.form-msg.err {
  color: #dc2626;
}

/* ---------------- Contact ---------------- */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 860px;
  margin: 0 auto;
}

.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 24px;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: #c7d8f5;
}

.contact-ico {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: var(--accent-soft);
  color: var(--accent-2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.contact-ico svg {
  width: 26px;
  height: 26px;
}

.contact-label {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.contact-value {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  word-break: break-word;
}

/* ---------------- Lightbox ---------------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(15, 23, 42, 0.86);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.lightbox.open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-img {
  max-width: min(1100px, 92vw);
  max-height: 82vh;
  width: auto;
  border-radius: 12px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.lightbox-caption {
  position: absolute;
  bottom: 26px;
  left: 0;
  right: 0;
  text-align: center;
  color: #e2e8f0;
  font-weight: 600;
  font-size: 15px;
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease, transform 0.15s ease;
}

.lightbox-close:hover,
.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.25);
}

.lightbox-close {
  top: 22px;
  right: 26px;
  width: 46px;
  height: 46px;
  font-size: 28px;
  line-height: 1;
}

.lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  font-size: 32px;
  line-height: 1;
}

.lightbox-nav:hover {
  transform: translateY(-50%) scale(1.06);
}

.lightbox-prev {
  left: 26px;
}

.lightbox-next {
  right: 26px;
}

/* ---------------- CTA ---------------- */
.cta {
  background: linear-gradient(120deg, var(--accent-2) 0%, #1d4ed8 60%, #1e3a8a 100%);
  color: #fff;
  padding: 84px 0;
  text-align: center;
}

.cta-inner h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
}

.cta-inner p {
  margin: 18px auto 0;
  max-width: 560px;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
}

.cta .hero-cta {
  justify-content: center;
  margin-top: 32px;
}

.cta-note {
  margin-top: 24px !important;
  font-size: 14px !important;
  color: rgba(255, 255, 255, 0.75) !important;
}

/* ---------------- Footer ---------------- */
.footer {
  background: var(--dark);
  color: #cbd5e1;
  padding: 44px 0;
}

.footer .brand-mark {
  color: #fff;
}

.footer .brand-by {
  color: #94a3b8;
}

.footer .brand-logo {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  color: #93c5fd;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-links a {
  color: #cbd5e1;
  font-weight: 600;
  font-size: 15px;
  transition: color 0.15s ease;
}

.footer-links a:hover {
  color: #fff;
}

.footer-ident {
  font-size: 12.5px;
  line-height: 1.6;
  color: #94a3b8;
  width: 100%;
  text-align: center;
  margin: 0;
}

.footer-copy {
  font-size: 13px;
  color: #94a3b8;
  width: 100%;
  text-align: center;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 4px;
}

/* ---------------- Súhlasy vo formulári ---------------- */
.order-consents {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--muted);
  cursor: pointer;
}

.consent input[type="checkbox"] {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 1px;
  accent-color: var(--accent-2);
  cursor: pointer;
}

.consent a {
  color: var(--accent-2);
  font-weight: 600;
}

.consent.invalid {
  color: #dc2626;
}

.consent.invalid input[type="checkbox"] {
  outline: 2px solid #dc2626;
  outline-offset: 2px;
  border-radius: 3px;
}

/* ---------------- Cookie info banner ---------------- */
.cookie-bar {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 200;
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 14px 18px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
}

.cookie-bar[hidden] { display: none; }

.cookie-text {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--muted);
}

.cookie-text a {
  color: var(--accent-2);
  font-weight: 600;
}

.cookie-ok {
  flex-shrink: 0;
  padding: 10px 22px;
  font-size: 14px;
}

@media (max-width: 560px) {
  .cookie-bar {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
}

/* ---------------- Reveal animation ---------------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ---------------- Responsive ---------------- */
@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .lead {
    max-width: none;
  }
  .hero-visual {
    max-width: 460px;
  }
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .shots {
    grid-template-columns: repeat(2, 1fr);
  }
  .split {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .split-visual {
    order: -1;
  }
}

@media (max-width: 720px) {
  .nav-links {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--panel);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    padding: 8px 0;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }
  .nav-links.open {
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }
  .nav-links a {
    padding: 14px 24px;
  }
  .nav-links a.btn-primary {
    margin: 8px 24px;
    justify-content: center;
  }
  .nav-toggle {
    display: flex;
  }
  .nav-right {
    gap: 10px;
  }
  .step-arrow {
    transform: rotate(90deg);
  }
}

@media (max-width: 540px) {
  .cards {
    grid-template-columns: 1fr;
  }
  .shots {
    grid-template-columns: 1fr;
  }
  .contact-cards {
    grid-template-columns: 1fr;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .section {
    padding: 64px 0;
  }
  .hero {
    padding: 56px 0 64px;
  }
  .shot-tilt {
    transform: none;
  }
  .lightbox-nav {
    width: 42px;
    height: 42px;
    font-size: 26px;
  }
  .lightbox-prev {
    left: 10px;
  }
  .lightbox-next {
    right: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
