/* Geoobchod 3D — profesionální vizuální systém 2026 */
:root {
  --bg: #f3f6f3;
  --bg-soft: #e9efea;
  --bg-card: #ffffff;
  --text: #12252d;
  --muted: #5c6d73;
  --line: #d8e2dc;
  --accent: #4f9f2f;
  --accent-2: #176a8b;
  --accent-3: #76bc50;
  --shadow: 0 18px 50px rgba(20, 49, 39, .09);
  --radius: 16px;
  --max: 1240px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 96px; }

body {
  margin: 0;
  color: var(--text);
  background:
    linear-gradient(rgba(20, 54, 41, .025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 54, 41, .025) 1px, transparent 1px),
    var(--bg);
  background-size: 48px 48px;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

.utility-bar {
  color: #dce8e9;
  background: #102f39;
  font-size: 13px;
}

.utility-inner {
  width: min(var(--max), calc(100% - 48px));
  min-height: 35px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.utility-inner strong { color: #bde2ad; font-weight: 700; }
.utility-links { display: flex; gap: 18px; }
.utility-links a:hover { color: #c6e9b6; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
section { position: relative; }
.container { width: min(var(--max), calc(100% - 48px)); }
.section-pad { padding: 92px 0; }

.btn-row {
  display: flex;
  gap: 13px;
  flex-wrap: wrap;
  margin-top: 27px;
}

nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.95);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 28px rgba(20,49,39,.05);
  backdrop-filter: blur(16px);
}

.nav-shell {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
  padding: 11px 0;
}

.logo-wrap,
nav .nav-shell > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 12px;
  border: 0;
  border-radius: 10px;
  background: #fff;
  box-shadow: none;
}

.logo { height: 44px; width: auto; }

.nav-links { display: flex; align-items: center; gap: 10px; }
.nav-links ul { display: flex; align-items: center; gap: 5px; margin: 0; padding: 0; list-style: none; }
.nav-links li { position: relative; }

.nav-links a {
  padding: 11px 14px;
  color: #1c333b;
  border-radius: 9px;
  font-size: 16px;
  font-weight: 650;
}

.nav-links a:hover,
.nav-links li:hover > a {
  color: #347f20;
  background: #edf5e9;
}

.nav-links ul ul {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  display: none;
  flex-direction: column;
  align-items: stretch;
  padding: 8px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.nav-links li:hover > ul { display: flex; }

.nav-links ul ul a { color: var(--text); }

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--text);
  background: #f3f7f3;
  box-shadow: none;
  font-size: 23px;
  line-height: 1;
  cursor: pointer;
}

.menu-toggle.close-btn { display: none; }

.hero {
  position: relative;
  padding: 64px 0 44px;
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 12%, rgba(79,159,47,.15), transparent 26%),
    linear-gradient(145deg, #ffffff 0%, #f3f7f3 68%, #e7f0e8 100%);
  border-bottom: 1px solid var(--line);
}

.hero::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -210px;
  bottom: -250px;
  border: 70px solid rgba(23,106,139,.055);
  border-radius: 50%;
}

.hero-grid { gap: 54px; }
.hero-copy { padding: 26px 0; }

.hero-copy h1 {
  max-width: 760px;
  margin: 20px 0;
  color: #10262e;
  font-size: clamp(44px, 5.5vw, 72px);
  line-height: 1.02;
  letter-spacing: -.045em;
  font-weight: 780;
}

.hero-copy p {
  max-width: 700px;
  color: var(--muted);
  font-size: 19px;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 12px;
  color: #356f25;
  background: #eaf4e5;
  border-color: #cce2c2;
  border-radius: 7px;
  font-size: 12px;
  font-weight: 750;
}

.eyebrow-dot { width: 8px; height: 8px; flex: 0 0 8px; background: var(--accent); border-radius: 50%; box-shadow: none; }

.hero-btn,
.secondary-btn,
.more-info-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 50px;
  padding: 0 21px;
  border-radius: 9px;
  font-weight: 700;
  box-shadow: none;
  transition: .23s ease;
  cursor: pointer;
}

.hero-btn {
  color: #fff;
  background: var(--accent);
  border-color: var(--accent);
}

.hero-btn:hover {
  background: #408726;
  border-color: #408726;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(79,159,47,.2);
}

.secondary-btn,
.more-info-btn {
  color: #18343e;
  background: #fff;
  border-color: #cbd9d0;
}

.secondary-btn:hover,
.more-info-btn:hover {
  color: #347f20;
  background: #f2f7ef;
  border-color: #afcda2;
}

.hero-points { gap: 10px; margin-top: 32px; }

.point-card {
  padding: 15px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 11px;
}

.point-card strong { color: #347f20; font-size: 21px; }
.point-card span { color: var(--muted); }

.hero-visual { min-height: 540px; }
.hero-visual { isolation: isolate; }
.hero-main-card {
  height: 100%;
  background: #dce6df;
  border: 0;
  border-radius: 18px 18px 54px 18px;
  box-shadow: 0 25px 65px rgba(20,49,39,.16);
}

.hero-main-card img { min-height: 540px; opacity: 1; }
.hero-main-card::after { background: linear-gradient(180deg, transparent 58%, rgba(8,30,36,.52)); }

.hero-image-caption {
  position: absolute;
  z-index: 3;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 19px;
  color: #fff;
  background: rgba(10,38,46,.88);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 11px 11px 28px 11px;
  backdrop-filter: blur(14px);
}

.hero-image-caption span {
  display: block;
  margin-bottom: 3px;
  color: #bfe5af;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero-image-caption strong { display: block; max-width: 330px; font-size: 17px; line-height: 1.35; }
.hero-image-caption a {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 13px;
  color: #17323b;
  background: #fff;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 800;
}
.hero-image-caption a:hover { color: #fff; background: var(--accent); }
.hero-image-caption b { font-size: 16px; }

.hero-model-mark {
  position: absolute;
  z-index: -1;
  right: -24px;
  top: -52px;
  color: rgba(79,159,47,.085);
  font-size: 148px;
  font-weight: 850;
  line-height: 1;
  letter-spacing: -.08em;
}

.hero-badge {
  top: 18px;
  left: 18px;
  color: #17303a;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(255,255,255,.8);
  border-radius: 8px;
  font-size: 13px;
}

.hero-floating {
  padding: 15px;
  color: #fff;
  background: rgba(16,43,52,.93);
  border: 0;
  border-radius: 12px;
  box-shadow: 0 14px 34px rgba(20,49,39,.18);
}

.hero-floating p { color: #ccdade; }

.brand-strip { padding: 30px 0 0; background: var(--bg); }
.brand-strip .container { gap: 12px; }

.brand-card {
  position: relative;
  padding: 21px 19px 19px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.brand-card::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 18px;
  width: 38px;
  height: 3px;
  background: var(--accent);
}

.brand-card h3 { color: #17323b; }
.brand-card p { color: var(--muted); }

.section-title {
  max-width: 900px;
  margin: 19px 0 15px;
  color: #10262e;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.08;
  font-weight: 760;
  letter-spacing: -.035em;
}

.section-subtitle { max-width: 780px; margin: 0; color: var(--muted); font-size: 18px; }

.product-highlight,
.service-block { gap: 36px; }

.catalog-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 34px;
}

.catalog-head .section-subtitle { max-width: 600px; }

.product-catalog {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 15px;
  box-shadow: 0 14px 40px rgba(20,49,39,.07);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  border-color: #b6d0aa;
  box-shadow: 0 24px 55px rgba(20,49,39,.12);
}

.product-card.featured::before {
  content: "DOPORUČUJEME";
  position: absolute;
  z-index: 2;
  top: 16px;
  left: 16px;
  padding: 6px 9px;
  color: #fff;
  background: var(--accent);
  border-radius: 5px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
}

.product-card-media {
  height: 300px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: linear-gradient(145deg,#f8faf8,#e9efea);
  border-bottom: 1px solid var(--line);
}

.product-card-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 24px;
}

.product-card-media.photo img { object-fit: cover; padding: 0; }
.product-card-body { display: flex; flex: 1; flex-direction: column; padding: 26px; }
.product-card-type { color: #4f7760; font-size: 12px; font-weight: 750; text-transform: uppercase; letter-spacing: .07em; }
.product-card h3 { margin: 6px 0 8px; color: #132e37; font-size: 28px; line-height: 1.15; }
.product-card p { margin: 0; color: var(--muted); }

.product-card-specs {
  display: grid;
  gap: 9px;
  margin: 20px 0 24px;
  padding: 17px 0;
  list-style: none;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.product-card-specs li { display: flex; gap: 9px; color: #41575f; font-size: 14px; }
.product-card-specs li::before { content: "●"; color: var(--accent); font-size: 8px; margin-top: 6px; }
.product-card .btn-row { margin-top: auto; }
.product-card .hero-btn, .product-card .secondary-btn { width: 100%; }
.product-detail-home { display: none; }

.extended-catalog {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.catalog-product {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 15px;
  box-shadow: 0 14px 40px rgba(20,49,39,.07);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.catalog-product:hover {
  transform: translateY(-5px);
  border-color: #b6d0aa;
  box-shadow: 0 24px 55px rgba(20,49,39,.12);
}

.catalog-product-media {
  position: relative;
  height: 245px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: radial-gradient(circle at 50% 42%, #fff 0, #eef3ef 72%);
  border-bottom: 1px solid var(--line);
}

.catalog-product-media img { width: 100%; height: 100%; object-fit: contain; padding: 22px; }
.catalog-product-media .zoom-hint {
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 7px 9px;
  color: #18343e;
  background: rgba(255,255,255,.9);
  border: 1px solid #d8e2dc;
  border-radius: 7px;
  font-size: 11px;
  font-weight: 750;
  pointer-events: none;
}

.catalog-product-body { display: flex; flex: 1; flex-direction: column; padding: 23px; }
.catalog-product-type { color: #4f7760; font-size: 11px; font-weight: 800; letter-spacing: .075em; text-transform: uppercase; }
.catalog-product h3 { margin: 7px 0 9px; color: #132e37; font-size: 23px; line-height: 1.16; }
.catalog-product p { margin: 0 0 20px; color: var(--muted); font-size: 15px; }
.catalog-product .inline-cta { margin-top: auto; color: #347f20; font-weight: 750; }

/* Zvětšení produktových fotografií */
.zoomable-image { cursor: zoom-in; }
.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 32px;
  background: rgba(5,18,24,.92);
  backdrop-filter: blur(10px);
}
.image-lightbox.open { display: flex; }
.image-lightbox figure { max-width: min(1180px, 94vw); max-height: 91vh; margin: 0; text-align: center; }
.image-lightbox img { max-width: 100%; max-height: 82vh; object-fit: contain; border-radius: 12px; box-shadow: 0 28px 80px rgba(0,0,0,.45); }
.image-lightbox figcaption { margin-top: 12px; color: #e5edef; font-size: 14px; }
.image-lightbox-close {
  position: fixed;
  top: 22px;
  right: 22px;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 50%;
  color: #fff;
  background: rgba(255,255,255,.1);
  font-size: 27px;
  cursor: pointer;
}

.media-card,
.content-card,
.contact-card,
.contact-actions,
.pricing-panel,
.page-hero-card,
.page-hero-image,
.project-detail {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.media-card { min-height: 470px; }
.media-card img { min-height: 470px; }
.content-card { padding: 38px; }

.product-photo {
  background:
    radial-gradient(circle at 50% 50%, #fff 0, #f3f6f3 70%);
  border-color: #dde6e0;
}

.product-photo img { min-height: 390px; max-height: 470px; }

.product-label span,
.card-badge {
  color: #2c6820;
  background: #edf5e9;
  border-color: #d2e5c9;
  border-radius: 6px;
}

.feature-list li { color: var(--muted); }
.feature-list .check,
.feature-list i { color: var(--accent); }

.comparison {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 13px;
  box-shadow: 0 12px 35px rgba(20,49,39,.06);
}

.comparison th {
  color: #fff;
  background: #183b45;
  border-color: #2e515b;
}

.comparison td { color: var(--muted); border-color: var(--line); }
.comparison tr:hover td { background: #f7faf7; }

.card-grid { gap: 14px; }
.card,
.stat,
.mini-card,
.project-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 12px 34px rgba(20,49,39,.06);
}

.card { padding: 26px; }
.card h3, .stat strong, .mini-card h4 { color: #17323b; }
.card p, .stat span, .mini-card p { color: var(--muted); }

.software-card {
  position: relative;
  display: flex;
  min-height: 275px;
  flex-direction: column;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.software-card:hover {
  transform: translateY(-5px);
  border-color: #b5d1a8;
  box-shadow: 0 22px 48px rgba(20,49,39,.11);
}

.software-card i { color: var(--accent); }
.software-card .inline-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 22px;
  color: #347f20;
  font-weight: 750;
}

.software-card .inline-cta::after { content: "→"; transition: transform .2s ease; }
.software-card:hover .inline-cta::after { transform: translateX(4px); }
#software .card-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.service-promo .media-card { position: relative; }
.service-promo .media-card::after {
  content: "PŘEDVEDENÍ U ZÁKAZNÍKA";
  position: absolute;
  left: 20px;
  bottom: 20px;
  padding: 8px 11px;
  color: #fff;
  background: rgba(16,47,57,.92);
  border-radius: 6px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
}

/* Detailní stránky softwaru */
.software-breadcrumb {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 24px 0 0;
  color: #63747a;
  font-size: 14px;
}

.software-breadcrumb a { color: #347f20; font-weight: 650; }

.software-hero {
  padding: 34px 0 76px;
  background: linear-gradient(145deg,#fff,#edf3ee);
  border-bottom: 1px solid var(--line);
}

.software-hero-grid {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 54px;
  align-items: center;
}

.software-hero h1 {
  margin: 18px 0;
  color: #10262e;
  font-size: clamp(44px,6vw,72px);
  line-height: 1;
  letter-spacing: -.045em;
}

.software-hero .lead { max-width: 680px; color: var(--muted); font-size: 19px; }
.software-visual {
  min-height: 490px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px 18px 52px 18px;
  box-shadow: var(--shadow);
}

.software-visual img { width: 100%; height: 100%; max-height: 520px; object-fit: contain; padding: 28px; }
.software-brand-panel {
  position: relative;
  min-height: 490px;
  align-content: center;
  padding: 50px;
  color: #fff;
  background:
    radial-gradient(circle at 84% 16%, rgba(118,188,80,.32), transparent 30%),
    linear-gradient(145deg,#153c47,#0d2832);
}
.software-brand-panel::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -90px;
  width: 260px;
  height: 260px;
  border: 48px solid rgba(255,255,255,.06);
  border-radius: 50%;
}
.software-brand-panel .brand-overline { color: #c7e9ba; font-size: 13px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.software-brand-panel strong { display: block; max-width: 520px; margin: 14px 0; font-size: clamp(38px,5vw,64px); line-height: .98; letter-spacing: -.045em; }
.software-brand-panel p { max-width: 470px; margin: 0; color: #d0dfe2; font-size: 17px; }
.software-metrics { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-top: 28px; }
.software-metric { padding: 15px; background: #fff; border: 1px solid var(--line); border-radius: 9px; }
.software-metric strong { display: block; color: #17323b; font-size: 16px; }
.software-metric span { color: var(--muted); font-size: 13px; }

.feature-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; margin-top: 34px; }
.feature-tile { padding: 26px; background: #fff; border: 1px solid var(--line); border-radius: 12px; box-shadow: 0 12px 32px rgba(20,49,39,.06); }
.feature-number { display: inline-grid; width: 34px; height: 34px; place-items: center; margin-bottom: 17px; color: #fff; background: var(--accent); border-radius: 7px; font-size: 13px; font-weight: 800; }
.feature-tile h3 { margin: 0 0 8px; color: #17323b; font-size: 20px; }
.feature-tile p { margin: 0; color: var(--muted); }

.workflow-panel { display: grid; grid-template-columns: 1fr 1fr; gap: 34px; align-items: center; }
.workflow-image { overflow: hidden; background: #fff; border: 1px solid var(--line); border-radius: 15px; box-shadow: var(--shadow); }
.workflow-image img { width: 100%; min-height: 420px; object-fit: cover; }
.workflow-copy { padding: 24px 8px; }
.workflow-list { display: grid; gap: 12px; margin: 25px 0 0; padding: 0; list-style: none; }
.workflow-list li { display: grid; grid-template-columns: 30px 1fr; gap: 12px; color: var(--muted); }
.workflow-list b { width: 28px; height: 28px; display: grid; place-items: center; color: #347f20; background: #eaf4e5; border-radius: 6px; }

.spec-panel { padding: 36px; color: #fff; background: #173b45; border-radius: 15px; }
.spec-panel h2 { margin-top: 0; color: #fff; }
.spec-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.spec-item { padding-top: 16px; border-top: 1px solid rgba(255,255,255,.16); }
.spec-item strong { display: block; color: #c6e9b6; }
.spec-item span { color: #d5e0e3; }

.related-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin-top: 30px; }
.related-card { padding: 24px; background: #fff; border: 1px solid var(--line); border-radius: 12px; }
.related-card h3 { margin: 0 0 8px; }
.related-card p { color: var(--muted); }
.related-card a { color: #347f20; font-weight: 750; }

/* SEO landing page služby 3D skenování */
.seo-intro-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 34px; align-items: start; }
.seo-copy-card { padding: 34px; background: #fff; border: 1px solid var(--line); border-radius: 15px; box-shadow: var(--shadow); }
.seo-copy-card h2 { margin-top: 0; color: #10262e; font-size: 32px; line-height: 1.15; }
.seo-copy-card p { color: var(--muted); }
.seo-gallery { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; }
.seo-gallery img { width: 100%; height: 250px; object-fit: cover; border: 1px solid var(--line); border-radius: 12px; box-shadow: 0 12px 32px rgba(20,49,39,.07); }
.process-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; margin-top: 30px; }
.process-step { padding: 24px; background: #fff; border: 1px solid var(--line); border-radius: 12px; }
.process-step b { display: block; margin-bottom: 12px; color: var(--accent); font-size: 13px; letter-spacing: .08em; }
.process-step h3 { margin: 0 0 8px; color: #17323b; }
.process-step p { margin: 0; color: var(--muted); }
.faq-list { display: grid; gap: 12px; margin-top: 28px; }
.faq-list details { padding: 19px 22px; background: #fff; border: 1px solid var(--line); border-radius: 11px; }
.faq-list summary { color: #17323b; font-weight: 750; cursor: pointer; }
.faq-list p { margin: 13px 0 0; color: var(--muted); }

.gallery-item,
.project-card {
  border-color: var(--line);
  border-radius: 13px;
  box-shadow: var(--shadow);
}

.gallery-caption { background: linear-gradient(180deg, transparent, rgba(11,35,42,.92) 75%); }

.cta-band {
  position: relative;
  overflow: hidden;
  padding: 40px;
  color: #fff;
  background: #173b45;
  border: 0;
  border-radius: 14px;
}

.cta-band::after {
  content: "";
  position: absolute;
  right: -85px;
  top: -85px;
  width: 220px;
  height: 220px;
  border: 42px solid rgba(118,188,80,.13);
  border-radius: 50%;
}

.cta-band > * { position: relative; z-index: 1; }
.cta-band h3 { color: #fff; }
.cta-band p { color: #d5e0e3; }

.contact-item span,
.contact-actions ul { color: var(--muted); }
.contact-ico,
.contact-item i { color: var(--accent); }

.footer { background: #102d36; }
.footer-inner { width: min(var(--max), calc(100% - 48px)); margin: 0 auto; padding: 26px 0 34px; color: #c5d3d7; border-top: 0; font-size: 14px; }
.footer-inner a { color: #cde9c2; }

/* Vnitřní stránky */
.page-hero {
  padding: 62px 0 38px;
  background: linear-gradient(145deg,#fff,#edf3ee);
  border-bottom: 1px solid var(--line);
}

.page-hero-grid { gap: 28px; }
.page-hero-card { padding: 42px; }
.page-hero-image { overflow: hidden; }
.page-hero-image img { height: 100%; min-height: 430px; object-fit: cover; }

.project-card .content p { color: var(--muted); }
.slider { border-radius: 13px; border-color: var(--line); background: #e7ece8; }
.prev, .next { background: rgba(16,45,54,.88); }

.product-gallery img {
  border-color: var(--line);
  border-radius: 10px;
}

@media (max-width: 1100px) {
  .software-hero-grid, .workflow-panel, .seo-intro-grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: repeat(2,1fr); }
  .process-grid { grid-template-columns: repeat(2,1fr); }
  .product-catalog, .extended-catalog { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  #software .card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero-grid { gap: 30px; }
  .hero-visual, .hero-main-card img { min-height: 460px; }
}

@media (max-width: 820px) {
  .container { width: min(var(--max), calc(100% - 32px)); }
  .nav-shell { width: calc(100% - 32px); min-height: 72px; padding: 10px 0; }
  .logo { height: 40px; }
  .menu-toggle { display: inline-flex; }
  .menu-toggle.close-btn { position: absolute; top: 17px; right: 17px; display: inline-flex; }
  .nav-links {
    position: fixed;
    top: 0;
    right: -330px;
    z-index: 1100;
    width: min(320px, 88vw);
    height: 100vh;
    display: block;
    overflow-y: auto;
    padding: 78px 24px 28px;
    background: #fff;
    border-left: 1px solid var(--line);
    box-shadow: -20px 0 50px rgba(20,49,39,.12);
    transition: right .25s ease;
  }
  .nav-links.open { right: 0; }
  .nav-links ul { flex-direction: column; align-items: stretch; gap: 4px; }
  .nav-links li, .nav-links a { width: 100%; }
  .nav-links a { color: var(--text); }
  .nav-links ul ul { position: static; display: flex; min-width: 0; padding: 2px 0 2px 13px; border: 0; box-shadow: none; }
  .hero { padding-top: 40px; }
  .hero-copy h1 { font-size: clamp(40px, 11vw, 58px); }
  .hero-visual, .hero-main-card img { min-height: 410px; }
}

@media (max-width: 640px) {
  .software-breadcrumb, .software-hero-grid { width: calc(100% - 32px); }
  .software-metrics, .feature-grid, .spec-grid, .related-grid { grid-template-columns: 1fr; }
  .software-hero h1 { font-size: 44px; }
  .software-visual { min-height: 350px; }
  .catalog-head { align-items: start; flex-direction: column; }
  .product-catalog, .extended-catalog { grid-template-columns: 1fr; }
  #software .card-grid { grid-template-columns: 1fr; }
  .image-lightbox { padding: 16px; }
  .image-lightbox-close { top: 12px; right: 12px; }
  .software-brand-panel { min-height: 360px; padding: 30px; }
  .process-grid, .seo-gallery { grid-template-columns: 1fr; }
  .seo-gallery img { height: 220px; }
  .product-card-media { height: 280px; }
  .utility-inner { width: calc(100% - 32px); justify-content: center; }
  .utility-inner > span { display: none; }
  .utility-links { width: 100%; justify-content: space-between; gap: 10px; }
  .section-pad { padding: 68px 0; }
  .hero { padding-bottom: 30px; }
  .hero-copy h1 { font-size: 42px; }
  .hero-copy p { font-size: 17px; }
  .hero-main-card { border-radius: 14px 14px 34px 14px; }
  .hero-image-caption { right: 12px; bottom: 12px; left: 12px; align-items: flex-start; flex-direction: column; gap: 13px; padding: 16px; }
  .hero-image-caption a { width: 100%; justify-content: center; }
  .content-card,
  .contact-card,
  .contact-actions,
  .page-hero-card,
  .pricing-panel { padding: 25px; }
  .cta-band { padding: 28px 24px; }
  .comparison th, .comparison td { min-width: 180px; padding: 13px; }
  .product-gallery { grid-template-columns: 1fr; }
  .footer-inner { width: calc(100% - 32px); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
