/* ================= THEME VARIABLES ================= */

/* ===== LIGHT MODE (DEFAULT) ===== */
:root {
  --bg: #f4f6fa;
  --bg-soft: #ffffff;
  --panel: #ffffff;
  --text: #0f172a;
  --muted: #5b6475;
  --border: rgba(15,23,42,.08);

  /* ACCENTS */
  --blue: #009be6;
  --blue-soft: rgba(0,155,230,.12);
  --orange: #ff9f1c;

  --radius: 22px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ===== DARK MODE ===== */
.dark {
  --bg: #06070c;
  --bg-soft: #0b0d14;
  --panel: rgba(255,255,255,.035);
  --text: #eef1f7;
  --muted: #9aa4b2;
  --border: rgba(255,255,255,.08);

  --blue: #00b3ff;
  --blue-soft: rgba(0,179,255,.15);
}

/* ================= RESET ================= */

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, sans-serif;
  background: var(--bg);
  color: var(--text);
  transition: background .3s var(--ease), color .3s var(--ease);
}

img {
  max-width: 100%;
  display: block;
}

/* ================= HEADER ================= */

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--bg-soft) 85%, transparent);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.header-inner{
  max-width:1200px;
  margin:0 auto;
  padding:0.7rem 4rem;

  display:flex;
  align-items:center;
  justify-content:flex-start;
  gap:2.5rem;
}

/* BRAND */

.brand{
  display:flex;
  align-items:center;
  gap:.6rem;
  margin-right:1rem;
}

.brand img{
  display:block;
}

.logo-icon {
  height: 45px;
  transition: transform .25s ease;
}

.brand-text {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text);
}

/* NAV */

nav{
  display:flex;
  align-items:center;
  gap:1.8rem;
}

nav a {
  margin-left: 1.6rem;
  text-decoration: none;
  color: var(--muted);
  font-size: .95rem;
  position: relative;
  transition: color .25s ease;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--orange));
  transition: width .25s var(--ease);
}

nav a:hover {
  color: var(--text);
}

nav a:hover::after {
  width: 100%;
}

/* ================= MAIN ================= */

main {
  max-width: 1200px;
  margin: auto;
  padding: 1rem 2rem 5rem;
}

/* ================= HERO ================= */

.hero {
  max-width: 620px;
  padding-top: 3rem;
}

.hero h1 {
  font-size: clamp(2.6rem, 4vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 1.2rem;
}

.hero span {
  color: var(--blue);
}

.hero p {
  font-size: 1.05rem;
  max-width: 520px;
  color: var(--muted);
  line-height: 1.6;
}

/* CTA */

.cta {
  margin-top: 2rem;
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.btn {
  padding: .95rem 1.8rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: .95rem;
  transition: all .25s var(--ease);
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}

.btn-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 10px 30px var(--blue-soft);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 45px var(--blue-soft);
}

.btn-secondary {
  border: 1px solid var(--border);
  color: var(--text);
  background: transparent;
}

.btn-secondary:hover {
  background: var(--panel);
}

/* ================= CARDS ================= */

.cards {
  margin-top: 5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.2rem;
}

.card {
  padding: 2.2rem;
  border-radius: var(--radius);
  background: var(--panel);
  border: 1px solid var(--border);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(300px at top left, var(--blue-soft), transparent 60%);
  opacity: 0;
  transition: opacity .35s ease;
}

.card:hover::before {
  opacity: 1;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 60px rgba(0,0,0,.25);
}

.card h3 {
  margin-top: 0;
  margin-bottom: .6rem;
  display: flex;
  align-items: center;
  gap: .6rem;
}

.card h3::before {
  content: "●";
  color: var(--orange);
  font-size: .7rem;
}

.card p {
  color: var(--muted);
  line-height: 1.6;
}

/* ================= FOOTER ================= */

.footer {
  border-top: 1px solid var(--border);
  text-align: center;
  padding: 3rem 2rem;
  color: var(--muted);
  font-size: .9rem;
}

/* ================= MICRO ANIMATIONS ================= */

@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
  100% { transform: translateY(0); }
}

.card:hover h3 {
  animation: float 1.8s ease-in-out infinite;
}


/* ================= THEME TOGGLE ================= */

.theme-toggle {
  margin-left: 1.2rem;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--panel);
  display: grid;
  place-items: center;
  cursor: pointer;
  color: var(--text);
  transition: all .25s ease;
  position: relative;
}

.theme-toggle:hover {
  transform: translateY(-2px);
  color: var(--blue);
}

.theme-toggle svg {
  position: absolute;
  transition: opacity .25s ease, transform .25s ease;
}

/* LIGHT */
:not(.dark) .icon-sun{
  opacity:1;
}

:not(.dark) .icon-moon{
  opacity:0;
  transform:scale(.6);
}

/* DARK */
.dark .icon-sun{
  opacity:0;
  transform:scale(.6);
}

.dark .icon-moon{
  opacity:1;
  transform:scale(0.8);
}



/* ================= ORANGE ACCENT ================= */

:root {
  --orange: #ff9f1c;
  --orange-soft: rgba(255,159,28,.18);
}

/* oranžový detail v kartách */
.card h3::before {
  content: "●";
  color: var(--orange);
  font-size: .7rem;
  margin-right: .5rem;
}

/* ================= MICRO ANIMACE ================= */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero,
.cards,
.reservation {
  animation: fadeUp .6s ease both;
}

.logo-wrap{
  position:relative;
  height:45px;
  width:auto;
  display:inline-block;
}

.logo{
  height:38px;
  width:auto;
  display:block;
}

.logo-light{
  display:inline-block;
}

.logo-dark{
  display:none !important;
}

.dark .logo-light{
  display:none !important;
}

.dark .logo-dark{
  display:inline-block !important;
}


/* ============================= */
/* RESERVATION – MODERN UI       */
/* ============================= */

.reservation {
  max-width: 900px;
  margin: 3rem auto 0;
}

/* HEADER */
.reservation-head {
  max-width: 700px;
  margin-bottom: 3rem;
}

.reservation-head h1 {
  font-size: 2.2rem;
  margin-bottom: .6rem;
}

.reservation-head p {
  color: var(--muted);
}

/* STEP */
.step {
  margin-bottom: 3.5rem;
}

.step h2 {
  font-size: 1.25rem;
  margin-bottom: 1.4rem;
}

/* OPTION GRID */
.option-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.4rem;
}

/* OPTION CARD */
.option-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.6rem;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: .4rem;
  transition: all .25s var(--ease);
  position: relative;
}

.option-card input {
  position: absolute;
  opacity: 0;
}

.option-card .icon {
  font-size: 1.6rem;
}

.option-card strong {
  font-size: 1rem;
}

.option-card small {
  color: var(--muted);
}

/* ACTIVE OPTION */
.option-card:has(input:checked) {
  border-color: var(--blue);
  background: linear-gradient(
    135deg,
    var(--blue-soft),
    transparent 60%
  );
  box-shadow: 0 12px 30px var(--blue-soft);
}

/* NOTE */
.note,
.calendar-note {
  margin-top: 1rem;
  color: var(--muted);
  font-size: .95rem;
}

/* FORM */
.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
}

.form-grid input,
.form-grid textarea {
  padding: .8rem 1rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--panel);
  color: var(--text);
  font-family: inherit;
}

.form-grid textarea {
  grid-column: 1 / -1;
  min-height: 120px;
  resize: vertical;
}

/* SUBMIT */
.btn.big {
  margin-top: 1.8rem;
  padding: 1.1rem 2.4rem;
  font-size: 1rem;
}

/* SHIPPING INFO */
.shipping-box {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
}

.shipping-box ul {
  margin: 1.2rem 0;
  padding-left: 1.2rem;
}

.shipping-box li {
  margin-bottom: .6rem;
  color: var(--muted);
}

/* TEAMVIEWER LINK */
.teamviewer-link {
  color: var(--blue);
  font-weight: 600;
  text-decoration: none;
}

.teamviewer-link:hover {
  text-decoration: underline;
}

.step-animate {
  opacity: 1;
  transform: none;
  transition: all .6s var(--ease);
}

.step-animate.visible {
  opacity: 1;
  transform: translateY(0);
}


/* LOGIKA – SOFTWARE */
body[data-service="software"] #delivery-step {
  display: none !important;
}

body[data-service="software"] #shipping-info {
  display: none !important;
}

/* ============================= */
/* SOFTWARE INFO – TEAMVIEWER    */
/* ============================= */

.software-box {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
}

.software-lead {
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 1.6rem;
}

.software-steps {
  display: grid;
  gap: 1rem;
  margin-bottom: 2rem;
}

.software-step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.software-step span {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--blue-soft);
  color: var(--blue);
  font-weight: 700;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.software-step p {
  margin: 0;
  color: var(--text);
}

.software-video {
  margin-top: 1.5rem;
}

/* PLACEHOLDER PRO VIDEO */
.video-placeholder {
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  padding: 2.2rem;
  text-align: center;
  color: var(--muted);
  background: linear-gradient(
    135deg,
    var(--blue-soft),
    transparent 60%
  );
}

.video-placeholder span {
  font-size: 2rem;
  display: block;
  margin-bottom: .6rem;
}

.video-placeholder small {
  opacity: .7;
}
/* SOFTWARE – skrýt další postup */
body[data-service="software"] #step-contact-info {
  display: none !important;
}
.billing-box {
  margin-top: 2.5rem;
  padding: 2rem;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.billing-box h3 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.billing-box ul {
  margin: 1.2rem 0;
  padding-left: 1.2rem;
}

.billing-box li {
  margin-bottom: .6rem;
  color: var(--muted);
}

.billing-box .note {
  margin-top: 1rem;
  font-size: .95rem;
  color: var(--muted);
}
.hidden {
  display: none !important;
}
/* =============================== */
/* LOGIKA – NEJSEM SI JISTÝ        */
/* =============================== */

body[data-service="help"] #software-info,
body[data-service="help"] #billing-box,
body[data-service="help"] #delivery-step,
body[data-service="help"] #shipping-info,
body[data-service="help"] #step-contact-info {
  display: none !important;
}

body[data-service="help"] #contact-step {
  display: block !important;
}

/* ============================= */
/* CONTACT PAGE                  */
/* ============================= */

.contact {
  max-width: 1100px;
  margin: 3rem auto 0;
}

/* HEADER */
.contact-head {
  max-width: 700px;
  margin-bottom: 3rem;
}

.contact-head h1 {
  font-size: 2.2rem;
  margin-bottom: .6rem;
}

.contact-head p {
  color: var(--muted);
  font-size: 1.05rem;
}

/* GRID */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2.5rem;
}

/* CARD */
.contact-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.2rem;
}

/* PERSON */
.contact-person {
  text-align: center;
}

.contact-photo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.4rem;
  border: 3px solid var(--border);
}

.contact-person h3 {
  margin-top: 0;
}

.contact-person p {
  color: var(--muted);
  line-height: 1.6;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 1.4rem 0 0;
}

.contact-list li {
  margin-bottom: .6rem;
  font-size: .95rem;
}

/* INFO */
.contact-info h3 {
  margin-top: 0;
}

.contact-items {
  margin: 1.4rem 0 2rem;
  display: grid;
  gap: 1rem;
}

.contact-items a {
  color: var(--blue);
  font-weight: 600;
  text-decoration: none;
}

.contact-items a:hover {
  text-decoration: underline;
}

/* COMPANY */
.contact-company {
  margin-top: 2.2rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--border);
}

.contact-company h4 {
  margin-top: 0;
}

.contact-note {
  margin-top: .8rem;
  font-size: .9rem;
  color: var(--muted);
}


/* ============================= */
/* CONTACT – MAPA                */
/* ============================= */

.contact-map {
  margin-top: 2rem;
}

.map-wrap {
  margin-top: .8rem;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 10px 30px rgba(0,0,0,.15);
}

.map-wrap iframe {
  width: 100%;
  height: 260px;
  border: 0;
}

/* ============================= */
/* CONTACT PAGE                  */
/* ============================= */

.contact {
  max-width: 1100px;
  margin: 3rem auto;
}

.contact-head {
  max-width: 700px;
  margin-bottom: 3rem;
}

.contact-head h1 {
  font-size: 2.2rem;
  margin-bottom: .6rem;
}

.contact-head p {
  color: var(--muted);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.contact-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
}

.contact-card h2 {
  margin-bottom: 1rem;
}

.contact-desc {
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.contact-list li {
  margin-bottom: .6rem;
}

.contact-keys {
  display: grid;
  gap: .8rem;
  margin-bottom: 1.2rem;
}

.contact-keys span {
  display: block;
  font-size: .8rem;
  color: var(--muted);
}

.contact-keys a {
  color: var(--blue);
  font-weight: 600;
  text-decoration: none;
}

.contact-keys a:hover {
  text-decoration: underline;
}

.contact-note {
  font-size: .9rem;
  color: var(--muted);
}

/* FORM */
.contact-form {
  display: grid;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  padding: .9rem 1rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--panel);
  color: var(--text);
  font-family: inherit;
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

/* MAPA */
.contact-map {
  margin-top: 3rem;
}

.contact-map h2 {
  margin-bottom: 1rem;
}

.contact-map iframe {
  width: 100%;
  height: 350px;
  border: 0;
  border-radius: var(--radius);
}

.map-note {
  margin-top: .6rem;
  font-size: .9rem;
  color: var(--muted);
}
/* ============================= */
/* LEGAL PAGES (GDPR, PODMÍNKY) */
/* ============================= */

.legal {
  max-width: 900px;
  margin: 3rem auto 0;
  padding: 0 1rem;
}

.legal h1 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.legal h2 {
  margin-top: 2.6rem;
  margin-bottom: 0.8rem;
  font-size: 1.25rem;
}

.legal p {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.legal ul {
  margin: 1rem 0 1.6rem 1.2rem;
  padding-left: 1rem;
}

.legal li {
  margin-bottom: 0.5rem;
  color: var(--muted);
  line-height: 1.6;
}

.legal strong {
  color: var(--text);
}

/* INFO BOX (např. zvýraznění) */
.legal-note {
  margin-top: 2rem;
  padding: 1.6rem;
  border-radius: var(--radius);
  background: linear-gradient(
    135deg,
    var(--blue-soft),
    transparent 65%
  );
  border: 1px solid var(--border);
}

/* LINKY */
.legal a {
  color: var(--blue);
  font-weight: 600;
  text-decoration: none;
}

.legal a:hover {
  text-decoration: underline;
}


/* ============================= */
/* HEADER – MORE MENU            */
/* ============================= */

.menu-more {
  position: relative;
}

.menu-more-btn {
  font-size: 1.6rem;
  line-height: 1;
  padding: .3rem .6rem;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--muted);
  transition: color .2s ease;
}

.menu-more-btn:hover {
  color: var(--text);
}

/* DROPDOWN */
.menu-dropdown {
  position: absolute;
  right: 0;
  top: 38px;
  min-width: 220px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: .4rem 0;
  display: none;
  z-index: 100;
  box-shadow: 0 18px 40px rgba(0,0,0,.18);
}

.menu-dropdown a {
  display: block;
  padding: .75rem 1.2rem;
  color: var(--text);
  text-decoration: none;
  font-size: .9rem;
}

.menu-dropdown a:hover {
  background: var(--blue-soft);
}

.menu-dropdown.show {
  display: block;
}
/* ============================= */
/* HOW IT WORKS – MODERN FLOW */
/* ============================= */

.how-hero {
  text-align: center;
  max-width: 700px;
  margin: 4rem auto 3rem;
}

.how-hero h1 span {
  color: var(--blue);
}

.how-sub {
  color: var(--muted);
  margin-top: .8rem;
}

/* FLOW */
.how-flow {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 2rem;
  position: relative;
}

.flow-step {
  background: var(--panel);
  border-radius: 18px;
  padding: 2.2rem 2.4rem;
  border: 1px solid var(--border);
  display: flex;
  gap: 1.6rem;
  align-items: flex-start;
  box-shadow:
    0 10px 30px rgba(0,0,0,.06),
    0 1px 0 rgba(255,255,255,.6) inset;
  transition: transform .3s ease, box-shadow .3s ease;
}

.flow-step:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,.12);
}

.flow-dot {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), #4fc3ff);
  color: #fff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0,150,255,.35);
  flex-shrink: 0;
}

.flow-content h3 {
  margin-bottom: .4rem;
}

.flow-content p {
  color: var(--muted);
}

/* VERTICAL LINE */
@media (min-width: 900px) {
  .modern-flow::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(
      to bottom,
      transparent,
      var(--blue-soft),
      transparent
    );
    opacity: .35;
    transform: translateX(-50%);
  }
}

/* BENEFITS */
.how-benefits {
  max-width: 900px;
  margin: 3rem auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
  gap: 1rem;
}

.benefit {
  background: var(--panel);
  padding: 1rem 1.4rem;
  border-radius: 999px;
  text-align: center;
  font-weight: 600;
  border: 1px solid var(--border);
}

/* FINAL CTA */
.final-step {
  margin: 4rem auto;
  max-width: 900px;
}

.final-step-card {
  background: linear-gradient(135deg, var(--blue), #4fc3ff);
  color: #fff;
  border-radius: 24px;
  padding: 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.final-step-card p {
  color: rgba(255,255,255,.85);
}

.final-step-icon {
  font-size: 2rem;
  margin-right: 1rem;
}

.final-step-card .btn {
  background: #fff;
  color: var(--blue);
  font-weight: 700;
}

/* ============================= */
/* CENÍK – sekce                */
/* ============================= */

.price-section {
  max-width: 1000px;
  margin: 4rem auto;
  padding: 0 1.5rem;
}

.price-head h1 {
  font-size: 2.2rem;
  margin-bottom: .5rem;
}

.price-head p {
  color: var(--muted);
  margin-bottom: 2rem;
}

/* Kategorie */
.price-category {
  margin-top: 3rem;
}

.price-category h2 {
  font-size: 1.6rem;
  margin-bottom: 1.2rem;
  color: var(--blue);
}

/* GRID */
.price-grid {
  display: grid;
  gap: 1.8rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

/* KARTA */
.price-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.6rem 1.8rem;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}

.price-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(0,0,0,.12);
}

.price-card h3 {
  margin-top: 0;
  margin-bottom: .4rem;
  font-size: 1.1rem;
}

.price-card .price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: .6rem;
}

.price-card p {
  color: var(--muted);
  line-height: 1.5;
  font-size: .95rem;
}

/* poznámka u repasu */
.note {
  font-size: .93rem;
  color: var(--muted);
  margin-top: .6rem;
}

/* ============================= */
/* FAQ – Často kladené otázky    */
/* ============================= */

.faq-section {
  max-width: 900px;
  margin: 4rem auto;
  padding: 0 1rem;
}

.faq-head h2 {
  font-size: 1.9rem;
  margin-bottom: .4rem;
}

.faq-head p {
  color: var(--muted);
  margin-bottom: 1.8rem;
}

.faq-item {
  margin-bottom: 2rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--border);
}

.faq-item h3 {
  font-size: 1.15rem;
  margin-bottom: .6rem;
  color: var(--blue);
}

.faq-item p {
  color: var(--text);
  line-height: 1.6;
}
/* ============================= */
/* FAQ / ČASTÉ DOTAZY            */
/* ============================= */

.faq {
  max-width: 900px;
  margin: 4rem auto;
}

.faq h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

/* ITEM */
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 1rem;
  overflow: hidden;
  background: var(--panel);
}

/* QUESTION */
.faq-question {
  width: 100%;
  padding: 1.4rem 1.6rem;
  background: none;
  border: none;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;

  display: flex;
  justify-content: space-between;
  align-items: center;

  transition: all .25s var(--ease);
}

/* HOVER */
.faq-question:hover {
  color: var(--blue);
  background: var(--blue-soft);
}

/* ICON */
.faq-icon {
  font-size: 1.2rem;
  color: var(--blue);
  transition: transform .25s ease;
}

/* ANSWER */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s var(--ease), padding .25s ease;
  padding: 0 1.6rem;
}

.faq-answer p {
  color: var(--muted);
  line-height: 1.6;
}

/* ACTIVE */
.faq-item.active .faq-question {
  background: linear-gradient(
    135deg,
    var(--blue-soft),
    transparent 60%
  );
}

.faq-item.active .faq-answer {
  max-height: 400px;
  padding: 0 1.6rem 1.6rem;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

/* Desktop */
@media (min-width: 769px) {
  .menu-toggle {
    display: none;
  }

  .nav {
    display: flex !important;
    position: static;
    flex-direction: row;
    gap: 1.5rem;
    box-shadow: none;
  }
}


/* =========================
   DESKTOP – BEZ ZMĚN
========================= */
@media (min-width: 769px) {
  .menu-toggle {
    display: none;
  }

  header nav {
    display: flex !important;
    position: static;
    flex-direction: row;
    gap: 1.5rem;
  }
}
/* pouze mobil odkazy */
.mobile-only{
  display:none !important;
}
/* =========================
   MOBILE HEADER
========================= */

@media (max-width:768px){

.header-inner{
  padding:0.6rem 1rem;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.logo{
  height:30px;
}

.menu-toggle{
  margin-left: auto;
  margin-right: -30px;
  display:block;
  font-size:1.5rem;
  background:none;
  border:none;
  cursor:pointer;
  color:var(--text);
}

.theme-toggle{
  width:38px;
  height:38px;
}

/* schovat desktop menu */
header nav{
  display:none;
}

/* otevřené menu */
header nav.mobile-open{
  display:flex;
  flex-direction:column;
  position:absolute;
  top:64px;
  left:0;
  right:0;

  background: color-mix(in srgb, var(--bg-soft) 95%, transparent);
  backdrop-filter: blur(16px);

  padding:1rem;
  border-top:1px solid var(--border);
  z-index:999;
}

header nav a{
  margin:0;
  padding:.8rem 0;
  font-size:1rem;
}

/* zobrazit mobil-only odkazy */
.mobile-only{
  display:block !important;
}

/* schovat tři tečky */
.menu-more{
  display:none;
}

}
.price-card.premium{
  border:2px solid #ffd700;

  background:
  linear-gradient(
    145deg,
    rgba(255,215,0,.18),
    rgba(255,215,0,.03) 60%,
    transparent
  );

  box-shadow:
  0 0 0 1px rgba(255,215,0,.25),
  0 20px 60px rgba(255,215,0,.18);

  transform:scale(1.04);
  position:relative;
}

.premium-badge{
  position:absolute;
  top:-14px;
  right:24px;

  background:linear-gradient(90deg,#ffd700,#ffb300);
  color:#000;

  font-weight:700;
  font-size:.72rem;

  padding:.4rem .9rem;
  border-radius:999px;

  box-shadow:0 6px 20px rgba(255,215,0,.4);
}
.premium-btn{
  margin-top:1.2rem;
  width:100%;

  background:linear-gradient(90deg,#ffd700,#ffb300);
  color:#000;

  font-weight:700;
  justify-content:center;

  box-shadow:
  0 8px 25px rgba(255,215,0,.35),
  0 0 0 1px rgba(255,215,0,.4);

  transition:.25s;
}

.premium-btn:hover{
  transform:translateY(-3px) scale(1.02);

  box-shadow:
  0 15px 45px rgba(255,215,0,.5),
  0 0 0 1px rgba(255,215,0,.7);
}
.dark .premium-btn{
  box-shadow:
  0 0 25px rgba(255,215,0,.25),
  0 10px 35px rgba(255,215,0,.35);
}
.trust{
margin-top:5rem;
}

.trust-head{
max-width:600px;
margin-bottom:2.5rem;
}

.trust-head h2{
font-size:2rem;
margin-bottom:.6rem;
}

.trust-head p{
color:var(--muted);
}

.trust-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:1.6rem;
}

.trust-card{
background:var(--panel);
border:1px solid var(--border);
border-radius:var(--radius);
padding:1.8rem;
transition:.3s;
}

.trust-card:hover{
transform:translateY(-6px);
box-shadow:0 20px 50px rgba(0,0,0,.2);
}

.stars{
color:#ffd700;
font-size:1.1rem;
margin-bottom:.8rem;
}

.trust-card p{
color:var(--muted);
line-height:1.6;
margin-bottom:1rem;
}

.software-video{
  margin-top:30px;
  text-align:center;
}

.video-title{
  font-weight:600;
  margin-bottom:12px;
  color:#cfe7ff;
}

.video-player{
  width:100%;
  max-width:720px;
  border-radius:16px;
  box-shadow:0 10px 30px rgba(0,0,0,.4);
}

.video-wrapper{
  position:relative;
  max-width:720px;
  margin:auto;
  border-radius:18px;
  overflow:hidden;
  background:linear-gradient(135deg,#0b1625,#05080f);
  box-shadow:0 20px 50px rgba(0,0,0,.6);
  cursor:pointer;
}

.video-player{
  width:100%;
  display:block;
}

.video-overlay{
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:70px;
  color:white;
  background:rgba(0,0,0,.35);
  transition:.3s;
}

.video-wrapper:hover .video-overlay{
  background:rgba(0,0,0,.55);
  transform:scale(1.05);
}


/* Tlačítko odkaz na mapu (náhrada za iframe) */
.map-link-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .9rem 1.6rem;
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--blue);
  font-weight: 600;
  text-decoration: none;
  font-size: .95rem;
  transition: .2s;
  margin-bottom: 1rem;
}
.map-link-btn:hover {
  background: var(--blue);
  color: #fff;
}

/* ============================= */
/* PREMIUM KARTA – oprava kliků  */
/* ============================= */

.price-card.premium {
  overflow: visible;
  z-index: 1;
}

.premium-btn {
  position: relative;
  z-index: 2;
  display: block;
  text-align: center;
  cursor: pointer;
}

.premium-badge {
  z-index: 3;
}

