
:root{
  --ink:#101820;
  --ink-2:#1d2937;
  --muted:#667085;
  --line:#e2e8f0;
  --paper:#ffffff;
  --cream:#f6f1e8;
  --cream-2:#efe6d6;
  --accent:#b08a2e;
  --accent-2:#d5b466;
  --green:#2c5b3a;
  --green-soft:#eef5ef;
  --shadow:0 24px 70px rgba(16,24,32,.16);
  --radius:16px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter, Arial, Helvetica, sans-serif;
  color:var(--ink);
  background:var(--cream);
  line-height:1.58;
}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
.container{width:min(1180px, calc(100% - 42px));margin:0 auto}

.topbar{background:var(--ink);color:#cfd7df;font-size:14px}
.topbar .container{display:flex;justify-content:space-between;align-items:center;gap:16px;padding:8px 0}
.topbar a{color:#fff;font-weight:800}
.header{position:sticky;top:0;z-index:50;background:rgba(246,241,232,.92);backdrop-filter:blur(14px);border-bottom:1px solid rgba(16,24,32,.08)}
.header-inner{height:86px;display:flex;align-items:center;justify-content:space-between;gap:24px}
.logo{display:flex;align-items:center;gap:12px;font-weight:900;letter-spacing:.08em;color:var(--ink)}
.logo img{width:58px;height:58px;border-radius:8px;box-shadow:0 10px 25px rgba(0,0,0,.12)}
.logo span{font-size:22px}
.nav{display:flex;align-items:center;gap:3px}
.nav a{padding:11px 13px;border-radius:999px;font-weight:800;color:#26313c}
.nav a:hover,.nav a.active{background:#fff;color:var(--green)}
.nav .cta{margin-left:8px;background:var(--ink);color:#fff;border:1px solid var(--ink)}
.nav .cta:hover{background:var(--green);color:#fff}
.menu-btn{display:none;border:0;background:var(--ink);color:#fff;border-radius:8px;padding:11px 14px;font-weight:900}

.hero{position:relative;overflow:hidden;background:var(--cream)}
.hero::before{content:"";position:absolute;inset:0;background:radial-gradient(circle at 72% 22%, rgba(176,138,46,.22), transparent 27%),radial-gradient(circle at 16% 75%, rgba(44,91,58,.12), transparent 29%);pointer-events:none}
.hero-grid{position:relative;display:grid;grid-template-columns:0.94fr 1.06fr;gap:46px;align-items:center;min-height:690px;padding:68px 0}
.eyebrow{display:inline-flex;align-items:center;gap:10px;padding:8px 13px;border-radius:999px;background:#fff;color:var(--ink-2);font-size:13px;font-weight:900;text-transform:uppercase;letter-spacing:.08em;border:1px solid rgba(16,24,32,.08)}
.eyebrow::before{content:"";width:9px;height:9px;border-radius:50%;background:var(--accent)}
h1,h2,h3{line-height:1.12;margin:0 0 16px}
h1{font-size:clamp(41px, 5.2vw, 76px);letter-spacing:-.065em}
h2{font-size:clamp(30px, 3vw, 48px);letter-spacing:-.045em}
h3{font-size:23px;letter-spacing:-.02em}
.lead{font-size:20px;color:#53606c;max-width:690px}
.hero-actions,.actions{display:flex;gap:13px;flex-wrap:wrap;margin-top:28px}
.btn{display:inline-flex;align-items:center;justify-content:center;gap:9px;min-height:52px;padding:14px 20px;border-radius:9px;font-weight:900;border:1.5px solid var(--ink);transition:.18s ease}
.btn-primary{background:var(--ink);color:#fff;box-shadow:0 16px 36px rgba(16,24,32,.22)}
.btn-primary:hover{transform:translateY(-2px);background:var(--green)}
.btn-secondary{background:#fff;color:var(--ink)}
.btn-secondary:hover{transform:translateY(-2px);border-color:var(--accent);color:#6f5315}
.hero-photo{position:relative;min-height:540px;border-radius:20px;overflow:hidden;box-shadow:0 18px 45px rgba(16,24,32,.14);background:#ddd}
.hero-photo img{width:100%;height:100%;min-height:540px;object-fit:cover;filter:saturate(.95) contrast(1.04)}
.hero-photo::after{content:"";position:absolute;inset:0;background:linear-gradient(180deg, rgba(16,24,32,.05), rgba(16,24,32,.60))}
.hero-badge{position:absolute;left:26px;right:26px;bottom:26px;z-index:2;background:rgba(255,255,255,.92);border-radius:14px;padding:20px;border:1px solid rgba(255,255,255,.6);backdrop-filter:blur(12px);display:grid;grid-template-columns:auto 1fr;gap:16px;align-items:center}
.hero-badge img{width:64px;height:64px;min-height:auto;border-radius:10px}
.hero-badge b{display:block;font-size:20px}
.hero-badge span{color:var(--muted)}
.stats{display:grid;grid-template-columns:repeat(3,1fr);gap:14px;margin-top:36px}
.stat{background:rgba(255,255,255,.72);border:1px solid rgba(16,24,32,.08);border-radius:12px;padding:17px;backdrop-filter:blur(6px)}
.stat strong{display:block;font-size:24px;color:var(--ink)}
.stat span{font-size:14px;color:var(--muted)}

.section{padding:88px 0;background:var(--paper)}
.section.alt{background:var(--cream)}
.section.dark{background:var(--ink);color:#fff}
.section.dark .lead,.section.dark p{color:#c9d1d9}
.section-head{display:flex;justify-content:space-between;align-items:flex-end;gap:28px;margin-bottom:36px}
.section-head p{max-width:660px;color:var(--muted);font-size:18px;margin:0}
.grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
.card{background:#fff;border:1px solid rgba(16,24,32,.08);border-radius:var(--radius);overflow:hidden;box-shadow:0 12px 34px rgba(16,24,32,.08);transition:.18s ease}
.card:hover{transform:translateY(-4px);box-shadow:0 18px 45px rgba(16,24,32,.14)}
.card-img{height:220px;overflow:hidden;background:#ddd}
.card-img img{width:100%;height:100%;object-fit:cover;transition:.3s ease}
.card:hover .card-img img{transform:scale(1.045)}
.card-body{padding:25px}
.card p{color:var(--muted);margin:0 0 18px}
.more{font-weight:900;color:#7a5b15}
.icon{width:54px;height:54px;border-radius:10px;background:var(--cream);display:flex;align-items:center;justify-content:center;color:#7a5b15;font-size:26px;margin-bottom:18px}
.split{display:grid;grid-template-columns:1fr 1fr;gap:42px;align-items:center}
.panel{background:#fff;border:1px solid rgba(16,24,32,.09);border-radius:18px;padding:31px;box-shadow:0 12px 34px rgba(16,24,32,.08)}
.panel.photo-panel{padding:0;overflow:hidden}
.panel.photo-panel img{width:100%;height:420px;object-fit:cover}
.panel.dark{background:#17212b;color:#fff;border-color:rgba(255,255,255,.12)}
.panel.dark p,.panel.dark li{color:#d0d8df}
.checklist{padding:0;margin:20px 0 0;list-style:none}
.checklist li{padding:10px 0 10px 34px;position:relative;color:#4f5b66}
.checklist li::before{content:"✓";position:absolute;left:0;top:9px;width:23px;height:23px;border-radius:50%;background:var(--cream-2);color:#7a5b15;display:flex;align-items:center;justify-content:center;font-weight:900;font-size:13px}
.panel.dark .checklist li::before{background:rgba(213,180,102,.18);color:var(--accent-2)}

.photo-strip{display:grid;grid-template-columns:1.1fr .9fr;gap:22px}
.big-photo,.small-photo{position:relative;border-radius:18px;overflow:hidden;min-height:390px;box-shadow:0 18px 45px rgba(16,24,32,.14)}
.small-photo{min-height:390px}
.big-photo img,.small-photo img{width:100%;height:100%;object-fit:cover}
.photo-label{position:absolute;left:20px;right:20px;bottom:20px;background:rgba(16,24,32,.78);color:#fff;border-radius:13px;padding:18px;backdrop-filter:blur(9px)}
.photo-label b{display:block;font-size:20px}
.photo-label span{color:#dce3e8}

.steps{display:grid;grid-template-columns:repeat(3,1fr);gap:22px;counter-reset:step}
.step{counter-increment:step;background:#fff;border:1px solid rgba(16,24,32,.08);border-radius:var(--radius);padding:28px;position:relative}
.step::before{content:counter(step);width:46px;height:46px;border-radius:9px;background:var(--ink);color:#fff;display:flex;align-items:center;justify-content:center;font-weight:900;margin-bottom:18px}
.step p{color:var(--muted)}

.page-hero{background:linear-gradient(135deg, #111a22, #293541);color:#fff;padding:76px 0}
.page-hero p{color:#d5dde5;font-size:20px;max-width:780px}
.breadcrumb{font-size:14px;color:#d8bf78;margin-bottom:14px;font-weight:800}
.content-grid{display:grid;grid-template-columns:2fr 1fr;gap:30px}
.sidebar{position:sticky;top:112px;align-self:start}
.service-list{display:grid;gap:14px}
.service-item{display:flex;gap:15px;align-items:flex-start;padding:16px;border-radius:12px;background:var(--cream)}
.service-item b{display:block;color:var(--ink)}
.service-item span{color:#5f6c76;font-size:14px}

.contact-grid{display:grid;grid-template-columns:1.05fr .95fr;gap:24px}
.contact-card{background:#fff;border:1px solid rgba(16,24,32,.08);border-radius:16px;padding:27px;box-shadow:0 12px 34px rgba(16,24,32,.08)}
.contact-card a{color:#7a5b15;font-weight:900}
.form{display:grid;gap:14px}
.form label{font-weight:900}
.form input,.form textarea,.form select{width:100%;padding:14px 15px;border:1px solid #cbd5df;border-radius:14px;font:inherit;background:#fff}
.form textarea{min-height:125px;resize:vertical}
.map-placeholder{min-height:340px;border-radius:16px;background:linear-gradient(90deg, rgba(16,24,32,.07) 1px, transparent 1px),linear-gradient(0deg, rgba(16,24,32,.07) 1px, transparent 1px),#f1eadc;background-size:34px 34px;display:flex;align-items:center;justify-content:center;text-align:center;color:#48535e;font-weight:900;padding:30px}
.note{padding:14px 16px;border-left:5px solid var(--accent);background:var(--cream);border-radius:14px;color:#52606c}

.footer{background:#0d141b;color:#d6dde3;padding:50px 0 26px}
.footer-grid{display:grid;grid-template-columns:1.4fr 1fr 1fr;gap:30px;margin-bottom:30px}
.footer h4{color:#fff;margin:0 0 12px}
.footer a{display:block;color:#d6dde3;margin:7px 0}
.footer .logo span{color:#fff}
.footer-bottom{border-top:1px solid rgba(255,255,255,.12);padding-top:18px;font-size:13px;color:#aab3bb}
.reveal{opacity:0;transform:translateY(22px);transition:.65s ease}
.reveal.visible{opacity:1;transform:translateY(0)}

@media(max-width:920px){
  .topbar .container{flex-direction:column;align-items:flex-start;gap:5px}
  .menu-btn{display:block}
  .nav{display:none;position:absolute;left:20px;right:20px;top:86px;background:#fff;border:1px solid var(--line);border-radius:13px;padding:12px;box-shadow:0 18px 45px rgba(16,24,32,.14);flex-direction:column;align-items:stretch}
  .nav.open{display:flex}
  .nav .cta{margin-left:0}
  .hero-grid,.split,.content-grid,.contact-grid,.photo-strip{grid-template-columns:1fr}
  .hero-grid{min-height:auto;padding:44px 0}
  .hero-photo,.hero-photo img{min-height:420px}
  .grid-3,.steps,.stats,.footer-grid{grid-template-columns:1fr}
  .section-head{display:block}
  .sidebar{position:static}
}


/* =========================
   GEOZAV v5 – modernější vzhled
   ========================= */
:root{
  --ink:#0f1722;
  --ink-2:#243142;
  --muted:#66758a;
  --line:#e6ebf2;
  --paper:#ffffff;
  --cream:#f7f8fb;
  --cream-2:#eef2f6;
  --accent:#b58d36;
  --accent-2:#d6b56a;
  --green:#2e5840;
  --green-soft:#eef5f1;
  --shadow:0 28px 80px rgba(15,23,34,.10);
  --radius:14px;
}

body{
  background:
    radial-gradient(circle at top left, rgba(46,88,64,.05), transparent 26%),
    linear-gradient(180deg, #f7f8fb 0%, #f4f6f9 100%);
  color:var(--ink);
  font-family:Inter, Arial, Helvetica, sans-serif;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}

.topbar{
  background:linear-gradient(90deg, #101924, #182330);
  color:#d9e1e8;
  border-bottom:1px solid rgba(255,255,255,.06);
}
.topbar a{color:#fff}

.header{
  background:rgba(255,255,255,.82);
  backdrop-filter:blur(18px);
  border-bottom:1px solid rgba(15,23,34,.06);
  box-shadow:0 8px 30px rgba(15,23,34,.05);
}
.logo{
  color:var(--ink);
}
.logo img{
  box-shadow:0 12px 28px rgba(15,23,34,.12);
}
.nav a{
  color:#314052;
  font-weight:800;
  transition:.18s ease;
}
.nav a:hover,.nav a.active{
  background:#f1f4f8;
  color:var(--ink);
}
.nav .cta{
  background:linear-gradient(135deg, #0f1722, #253244);
  border-color:transparent;
  box-shadow:0 12px 28px rgba(15,23,34,.18);
}
.nav .cta:hover{
  background:linear-gradient(135deg, #203049, #2e5840);
}

.hero{
  background:
    radial-gradient(circle at 80% 20%, rgba(181,141,54,.14), transparent 24%),
    radial-gradient(circle at 15% 80%, rgba(46,88,64,.08), transparent 25%),
    linear-gradient(180deg, #f8fafc 0%, #f4f6fa 100%);
}
.hero::before{
  background:none;
}
.hero-grid{
  min-height:720px;
  gap:56px;
  padding:78px 0 72px;
}
.eyebrow{
  background:rgba(255,255,255,.78);
  border:1px solid rgba(15,23,34,.08);
  box-shadow:0 8px 20px rgba(15,23,34,.04);
}
h1{
  max-width:720px;
  font-size:clamp(44px, 5.4vw, 82px);
  letter-spacing:-.075em;
}
.hero h1{
  background:linear-gradient(135deg, #0f1722 0%, #233244 68%, #42566a 100%);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
h2{
  font-size:clamp(32px, 3.2vw, 52px);
}
.lead{
  color:#5d6c80;
  font-size:20px;
  max-width:760px;
}

.btn{
  border-radius:10px;
  min-height:54px;
  padding:14px 22px;
}
.btn-primary{
  background:linear-gradient(135deg, #0f1722, #233244);
  border-color:transparent;
  box-shadow:0 18px 42px rgba(15,23,34,.18);
}
.btn-primary:hover{
  background:linear-gradient(135deg, #233244, #2e5840);
}
.btn-secondary{
  background:rgba(255,255,255,.82);
  border-color:rgba(15,23,34,.10);
  box-shadow:0 10px 24px rgba(15,23,34,.06);
}
.btn-secondary:hover{
  background:#fff;
  color:var(--ink);
  border-color:#cfd7e2;
}

.hero-photo{
  border-radius:18px;
  border:1px solid rgba(255,255,255,.65);
  box-shadow:0 36px 90px rgba(15,23,34,.16);
}
.hero-photo::before{
  content:"";
  position:absolute;
  inset:14px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.22);
  z-index:1;
  pointer-events:none;
}
.hero-photo::after{
  background:linear-gradient(180deg, rgba(15,23,34,.04), rgba(15,23,34,.58));
}
.hero-badge{
  background:rgba(255,255,255,.82);
  border:1px solid rgba(255,255,255,.55);
  box-shadow:0 18px 48px rgba(15,23,34,.14);
  backdrop-filter:blur(16px);
}
.hero-badge b{font-size:21px}
.hero-badge span{color:#5f6e81}

.stats{
  margin-top:34px;
  gap:16px;
}
.stat{
  background:rgba(255,255,255,.66);
  border:1px solid rgba(255,255,255,.7);
  box-shadow:0 12px 30px rgba(15,23,34,.06);
  backdrop-filter:blur(12px);
}
.stat strong{
  font-size:25px;
}
.stat span{
  color:#617084;
}

.section{
  padding:96px 0;
  background:transparent;
}
.section.alt{
  background:linear-gradient(180deg, rgba(255,255,255,.55), rgba(238,242,246,.72));
  border-top:1px solid rgba(15,23,34,.04);
  border-bottom:1px solid rgba(15,23,34,.04);
}
.section.dark{
  background:
    radial-gradient(circle at right top, rgba(181,141,54,.15), transparent 20%),
    linear-gradient(135deg, #101924 0%, #172230 100%);
}

.section-head{
  margin-bottom:40px;
}
.section-head p{
  color:#627287;
}

.card{
  border:1px solid rgba(15,23,34,.06);
  border-radius:16px;
  background:rgba(255,255,255,.88);
  box-shadow:0 16px 44px rgba(15,23,34,.08);
  backdrop-filter:blur(12px);
}
.card:hover{
  transform:translateY(-6px);
  box-shadow:0 28px 64px rgba(15,23,34,.12);
}
.card-img{
  height:240px;
}
.card-body{
  padding:26px;
}
.card h3{
  font-size:25px;
}
.card p{
  color:#647487;
}
.more{
  color:#8a6920;
}

.panel{
  border-radius:18px;
  border:1px solid rgba(15,23,34,.06);
  box-shadow:0 16px 44px rgba(15,23,34,.08);
  background:rgba(255,255,255,.92);
}
.panel.dark{
  background:linear-gradient(135deg, #121c27, #1d2a38);
}
.panel.photo-panel{
  box-shadow:0 28px 70px rgba(15,23,34,.12);
}
.panel.photo-panel img{
  height:440px;
}

.checklist li{
  color:#4f6172;
}
.checklist li::before{
  background:#f1e6c8;
  color:#8a6920;
}

.big-photo,.small-photo{
  border-radius:18px;
  box-shadow:0 28px 70px rgba(15,23,34,.18);
}
.photo-label{
  background:rgba(15,23,34,.72);
  border:1px solid rgba(255,255,255,.10);
  box-shadow:0 12px 30px rgba(0,0,0,.18);
}

.step{
  border:1px solid rgba(15,23,34,.06);
  background:rgba(255,255,255,.9);
  box-shadow:0 14px 34px rgba(15,23,34,.07);
}
.step::before{
  background:linear-gradient(135deg, #0f1722, #233244);
  box-shadow:0 10px 20px rgba(15,23,34,.18);
}

.page-hero{
  background:
    radial-gradient(circle at 85% 25%, rgba(181,141,54,.22), transparent 18%),
    linear-gradient(135deg, #111a22, #223041 70%, #2e5840 120%);
  padding:84px 0;
}
.page-hero p{
  color:#dde5ed;
}
.breadcrumb{
  color:#d8bc73;
}

.service-item{
  background:rgba(255,255,255,.78);
  border:1px solid rgba(15,23,34,.06);
  box-shadow:0 10px 26px rgba(15,23,34,.05);
}

.contact-card{
  background:rgba(255,255,255,.92);
  border:1px solid rgba(15,23,34,.06);
  box-shadow:0 16px 44px rgba(15,23,34,.08);
}
.contact-card a{
  color:#8a6920;
}
.form input,.form textarea,.form select{
  border:1px solid #d7dee8;
  background:#fbfcfe;
  border-radius:12px;
}
.form input:focus,.form textarea:focus,.form select:focus{
  outline:none;
  border-color:#bac7d8;
  box-shadow:0 0 0 4px rgba(35,50,68,.08);
}
.map-placeholder{
  background:
    linear-gradient(90deg, rgba(15,23,34,.06) 1px, transparent 1px),
    linear-gradient(0deg, rgba(15,23,34,.06) 1px, transparent 1px),
    #eef2f6;
  color:#4e5d70;
  border:1px solid rgba(15,23,34,.06);
  box-shadow:0 14px 34px rgba(15,23,34,.06);
}
.note{
  background:#f5f2e8;
  border-left:5px solid var(--accent);
}

.footer{
  background:linear-gradient(180deg, #0d141b 0%, #101923 100%);
}
.footer-bottom{
  color:#aeb8c2;
}

.reveal{
  transition:.7s ease;
}

@media(max-width:920px){
  .hero-grid{
    gap:28px;
    padding:46px 0 40px;
  }
  .hero-photo,.hero-photo img{
    min-height:390px;
  }
  .card-img{
    height:220px;
  }
  .panel.photo-panel img{
    height:320px;
  }
}


/* v5c – full width hero photo across the page */
.hero-full{
  position:relative;
  min-height:760px;
  display:flex;
  align-items:flex-end;
  overflow:hidden;
  background:#111;
}
.hero-full::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(90deg, rgba(12,18,28,.78) 0%, rgba(12,18,28,.55) 38%, rgba(12,18,28,.28) 64%, rgba(12,18,28,.46) 100%);
  z-index:1;
}
.hero-full::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  height:180px;
  background:linear-gradient(180deg, rgba(12,18,28,0) 0%, rgba(12,18,28,.28) 55%, rgba(247,248,251,1) 100%);
  z-index:1;
}
.hero-full-bg{
  position:absolute;
  inset:0;
}
.hero-full-bg img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center center;
  filter:saturate(.96) contrast(1.03);
}
.hero-full-inner{
  position:relative;
  z-index:2;
  width:100%;
  padding:92px 0 90px;
}
.hero-full-card{
  max-width:760px;
  padding:34px;
  border-radius:18px;
  background:rgba(255,255,255,.14);
  border:1px solid rgba(255,255,255,.18);
  box-shadow:0 28px 80px rgba(15,23,34,.18);
  backdrop-filter:blur(14px);
}
.hero-full-card .eyebrow{
  background:rgba(255,255,255,.88);
}
.hero-full-card h1{
  color:#fff;
  background:none;
  -webkit-text-fill-color:#fff;
}
.hero-full-card .lead{
  color:rgba(255,255,255,.88);
}
.hero-full-card .btn-secondary{
  background:rgba(255,255,255,.92);
}
.hero-full-card .stats{
  margin-top:30px;
}
.hero-full-card .stat{
  background:rgba(255,255,255,.18);
  border:1px solid rgba(255,255,255,.16);
  box-shadow:none;
}
.hero-full-card .stat strong{
  color:#fff;
}
.hero-full-card .stat span{
  color:rgba(255,255,255,.82);
}

@media(max-width:920px){
  .hero-full{
    min-height:640px;
    align-items:flex-end;
  }
  .hero-full::before{
    background:linear-gradient(180deg, rgba(12,18,28,.62) 0%, rgba(12,18,28,.52) 44%, rgba(12,18,28,.72) 100%);
  }
  .hero-full-card{
    max-width:none;
    padding:24px;
  }
  .hero-full-inner{
    padding:62px 0 56px;
  }
}


/* v5d – posun info boxu více od kraje a odspodu */
.hero-full-inner{
  padding:92px 0 130px;
}
.hero-full-card{
  margin-left:28px;
  margin-bottom:22px;
}

@media(max-width:920px){
  .hero-full-inner{
    padding:62px 0 88px;
  }
  .hero-full-card{
    margin-left:12px;
    margin-right:12px;
    margin-bottom:14px;
  }
}


/* v5e – hero info box více doprava a výše, aby méně překrýval měřicí přístroj */
.hero-full-inner{
  display:flex;
  justify-content:flex-end;
  align-items:flex-end;
  padding:92px 0 165px;
}
.hero-full-card{
  margin-left:auto;
  margin-right:44px;
  margin-bottom:34px;
  max-width:700px;
}

/* mobilní hamburger / křížek místo textu */
.menu-btn{
  position:relative;
  font-size:0 !important;
  line-height:0;
  width:48px;
  height:48px;
  padding:0;
  display:none;
  align-items:center;
  justify-content:center;
}
.menu-btn::before{
  content:"☰";
  font-size:24px;
  line-height:1;
  color:#fff;
}
.menu-btn.open::before{
  content:"✕";
  font-size:22px;
}

@media(max-width:920px){
  .menu-btn{
    display:flex;
  }
  .hero-full-inner{
    display:block;
    padding:62px 0 108px;
  }
  .hero-full-card{
    margin-left:12px;
    margin-right:12px;
    margin-bottom:18px;
    max-width:none;
  }
}


/* v5f – hero blok výše + přístroj více vlevo */
.hero-full-inner{
  display:flex;
  justify-content:flex-end;
  align-items:flex-start;
  padding:72px 0 120px;
}
.hero-full-card{
  margin-left:auto;
  margin-right:44px;
  margin-top:26px;
  margin-bottom:0;
  max-width:700px;
}
.hero-full-bg img{
  object-position:24% center;
}

@media(max-width:1200px){
  .hero-full-bg img{
    object-position:30% center;
  }
}

@media(max-width:920px){
  .hero-full-inner{
    display:block;
    padding:48px 0 82px;
  }
  .hero-full-card{
    margin-left:12px;
    margin-right:12px;
    margin-top:12px;
    margin-bottom:0;
    max-width:none;
  }
  .hero-full-bg img{
    object-position:34% center;
  }
}


/* v5g – skutečné posunutí hero boxu výše + foto více vlevo */
.hero-full-inner{
  display:flex !important;
  justify-content:flex-end !important;
  align-items:flex-start !important;
  padding:26px 0 150px !important; /* box jde výrazně výš */
}

.hero-full-card{
  margin-left:auto !important;
  margin-right:28px !important;
  margin-top:0 !important;
  margin-bottom:0 !important;
  max-width:660px !important;
}

.hero-full-bg img{
  object-position:16% center !important; /* přístroj více vlevo */
}

@media(max-width:1400px){
  .hero-full-card{
    margin-right:24px !important;
    max-width:640px !important;
  }
  .hero-full-bg img{
    object-position:14% center !important;
  }
}

@media(max-width:1200px){
  .hero-full-inner{
    padding:20px 0 135px !important;
  }
  .hero-full-card{
    margin-right:20px !important;
    max-width:600px !important;
  }
  .hero-full-bg img{
    object-position:12% center !important;
  }
}

@media(max-width:920px){
  .hero-full-inner{
    display:block !important;
    padding:34px 0 82px !important;
  }
  .hero-full-card{
    margin-left:12px !important;
    margin-right:12px !important;
    margin-top:0 !important;
    margin-bottom:0 !important;
    max-width:none !important;
  }
  .hero-full-bg img{
    object-position:28% center !important;
  }
}


/* v5h – hezčí ostrý přechod mezi hero a další sekcí */
.hero-full{
  margin-bottom:0 !important;
}

.hero-full::after{
  content:"" !important;
  position:absolute !important;
  left:0 !important;
  right:0 !important;
  bottom:-1px !important;
  height:120px !important;
  background:#f7f8fb !important;
  clip-path:polygon(0 62%, 100% 0, 100% 100%, 0 100%) !important;
  z-index:1 !important;
}

/* odstranění dojmu rozmazaného přechodu přes první bílou sekci */
.section{
  position:relative;
  z-index:2;
}

.overview-section,
.section:first-of-type{
  margin-top:0 !important;
  padding-top:96px !important;
}

@media(max-width:920px){
  .hero-full::after{
    height:72px !important;
    clip-path:polygon(0 68%, 100% 0, 100% 100%, 0 100%) !important;
  }
}


/* v5i – rovný přechod pod hero sekcí */
.hero-full{
  margin-bottom:0 !important;
}

.hero-full::after{
  content:"" !important;
  position:absolute !important;
  left:0 !important;
  right:0 !important;
  bottom:0 !important;
  height:36px !important;
  background:#f7f8fb !important;
  clip-path:none !important;
  z-index:1 !important;
}

.section{
  position:relative;
  z-index:2;
}

.overview-section,
.section:first-of-type{
  margin-top:0 !important;
  padding-top:96px !important;
}

@media(max-width:920px){
  .hero-full::after{
    height:24px !important;
    clip-path:none !important;
  }
}


/* v5j – v mobilním zobrazení skrýt horní topbar */
@media(max-width:920px){
  .topbar{
    display:none !important;
  }

  .header{
    top:0 !important;
  }

  .nav{
    top:86px !important;
  }
}
