/* =============================================================
   NEMOSERVIS — Bold modern redesign 2026
   Velká typografie · silné barvy · kontrast · provázané bloky
   ============================================================= */

:root {
  /* Barvy */
  --orange:      #e2622e;
  --orange-2:    #ff7a3d;
  --orange-deep: #b94a1d;
  /* Tmavá: navy (k oranžové) */
  --ink:         #16263f;
  --ink-2:       #1d3050;
  --ink-deep:    #0e1a2c;
  --paper:       #f2efe6;
  --paper-2:     #e9e6da;
  --cream:       #faf8f1;
  --line:        #16263f;
  --muted:       #5a5e66;
  --muted-dark:  rgba(255,255,255,0.62);

  --font-body:    'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --font-display: 'Space Grotesk', 'Inter', system-ui, sans-serif;

  --r:    18px;
  --r-lg: 30px;
  --r-xl: 40px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --tr:   0.35s var(--ease);

  --header-h: 78px;
  --wrap: 1240px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 14px); -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 0.98;
}

::selection { background: var(--orange); color: #fff; }
:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 28px; }
.section { padding: clamp(72px, 10vw, 140px) 0; }

/* Oversized section intro */
.intro { max-width: 900px; margin-bottom: clamp(40px, 5vw, 72px); }
.intro--center { margin-left: auto; margin-right: auto; text-align: center; }
.kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body);
  font-size: 13px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 20px;
}
.kicker::before { content: ''; width: 28px; height: 3px; background: var(--orange); border-radius: 3px; }
.intro--center .kicker::before { display: none; }
.intro h2 {
  font-size: clamp(38px, 7vw, 86px);
  line-height: 0.94;
  margin-bottom: 18px;
}
.intro h2 em { font-style: normal; color: var(--orange); }
.intro p { font-size: clamp(17px, 2vw, 21px); color: var(--muted); max-width: 620px; }
.intro--center p { margin: 0 auto; }

/* Buttons */
.btn {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 17px 30px;
  font-family: var(--font-body); font-size: 16px; font-weight: 600; line-height: 1;
  border-radius: 999px; border: 2px solid var(--ink);
  cursor: pointer; white-space: nowrap;
  transition: transform var(--tr), background var(--tr), color var(--tr), box-shadow var(--tr);
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--orange); border-color: var(--orange); color: #fff; }
.btn--primary:hover { background: var(--ink); border-color: var(--ink); transform: translateY(-3px); }
.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { background: var(--orange); border-color: var(--orange); transform: translateY(-3px); }
.btn--ghost { background: transparent; color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: #fff; transform: translateY(-3px); }
.btn--light { background: #fff; border-color: #fff; color: var(--ink); }
.btn--light:hover { background: transparent; color: #fff; transform: translateY(-3px); }
.btn--full { width: 100%; }

/* =============================================================
   Header
   ============================================================= */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--header-h);
  display: flex; align-items: center;
  background: rgba(243, 239, 231, 0.82);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 2px solid transparent;
  transition: border-color var(--tr), background var(--tr);
}
.header--scrolled { border-color: var(--ink); }
.header__inner { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.header__brand { display: flex; align-items: center; gap: 12px; }
.header__icon { width: 40px; height: 40px; border-radius: 10px; object-fit: cover; }
.header__name { font-family: var(--font-display); font-size: 21px; font-weight: 700; letter-spacing: -0.02em; }
.header__nav { display: flex; align-items: center; gap: 6px; }
.header__nav a {
  padding: 9px 14px; font-size: 15px; font-weight: 500; border-radius: 999px;
  transition: background var(--tr), color var(--tr);
}
.header__nav a:not(.header__cta):hover { background: rgba(0,0,0,0.06); }
.header__cta { background: var(--ink); color: #fff; padding: 11px 22px !important; font-weight: 600; }
.header__cta:hover { background: var(--orange); }
.lang-switch { display: inline-flex; align-items: center; margin-left: 12px; border: 2px solid var(--ink); border-radius: 999px; overflow: hidden; flex-shrink: 0; }
.lang-switch a { padding: 6px 12px; font-size: 13px; font-weight: 700; letter-spacing: 0.02em; color: var(--ink); }
.lang-switch a.is-active { background: var(--ink); color: #fff; }
.lang-switch a:not(.is-active):hover { background: rgba(0,0,0,0.06); }

.header__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.header__toggle span { display: block; width: 26px; height: 2.5px; background: var(--ink); border-radius: 3px; transition: var(--tr); }

/* scroll progress */
.scroll-progress { position: fixed; top: 0; left: 0; height: 4px; width: 0; background: var(--orange); z-index: 1200; transition: width 0.1s linear; }

/* =============================================================
   HERO — editorial split
   ============================================================= */
.hero {
  position: relative;
  background: linear-gradient(165deg, #1e3252 0%, var(--ink) 45%, var(--ink-deep) 100%);
  color: #fff;
  padding: calc(var(--header-h) + 60px) 0 0;
  overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -20%; right: -10%;
  width: 50vw; height: 50vw; max-width: 720px; max-height: 720px;
  background: radial-gradient(circle, rgba(226,98,46,0.35), transparent 65%);
  pointer-events: none;
}
.hero__grid {
  position: relative;
  display: grid; grid-template-columns: 1.15fr 0.85fr;
  gap: 56px; align-items: center;
}
.hero__left { padding-bottom: 60px; }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 9px 18px; margin-bottom: 28px;
  border: 1.5px solid rgba(255,255,255,0.22); border-radius: 999px;
  font-size: 13.5px; font-weight: 500; color: rgba(255,255,255,0.9);
}
.hero__eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: #46d27f; box-shadow: 0 0 0 0 rgba(70,210,127,0.6); animation: pulse 2.2s infinite; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(70,210,127,0.6);} 70%{box-shadow:0 0 0 9px rgba(70,210,127,0);} 100%{box-shadow:0 0 0 0 rgba(70,210,127,0);} }
.hero__title { font-size: clamp(48px, 9.5vw, 116px); line-height: 0.9; margin-bottom: 26px; }
.hero__title em { font-style: normal; color: var(--orange); }
.hero__lead { font-size: clamp(17px, 2vw, 20px); color: rgba(255,255,255,0.78); max-width: 520px; margin-bottom: 34px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 44px; }
.hero__actions .btn--ghost { color: #fff; border-color: rgba(255,255,255,0.4); }
.hero__actions .btn--ghost:hover { background: #fff; color: var(--ink); }
.hero__mini { display: flex; flex-wrap: wrap; gap: 26px 40px; }
.hero__mini div { display: flex; flex-direction: column; }
.hero__mini b { font-family: var(--font-display); font-size: clamp(26px, 3vw, 36px); line-height: 1; }
.hero__mini span { font-size: 13.5px; color: rgba(255,255,255,0.55); margin-top: 6px; }

/* hero photo frame with bound badge */
.hero__media { position: relative; align-self: stretch; min-height: 420px; }
.hero__photo {
  position: relative; height: 100%; min-height: 460px;
  border-radius: var(--r-xl) var(--r-xl) 0 0;
  overflow: hidden;
}
.hero__photo img { width: 100%; height: 100%; object-fit: cover; }
.hero__badge {
  position: absolute; left: -28px; bottom: 48px; z-index: 2;
  display: flex; align-items: center; gap: 14px;
  padding: 18px 24px; background: var(--orange); color: #fff;
  border-radius: var(--r); box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}
.hero__badge b { font-family: var(--font-display); font-size: 40px; line-height: 1; }
.hero__badge span { font-size: 13.5px; line-height: 1.3; max-width: 120px; }

/* =============================================================
   Marquee ticker (živý prvek)
   ============================================================= */
.marquee {
  background: var(--orange); color: #fff;
  border-top: 2px solid var(--ink); border-bottom: 2px solid var(--ink);
  overflow: hidden; padding: 16px 0;
}
.marquee__track {
  display: flex; gap: 0; width: max-content;
  animation: scroll-x 32s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__track span {
  display: inline-flex; align-items: center;
  font-family: var(--font-display); font-size: clamp(18px, 2.4vw, 28px); font-weight: 600; letter-spacing: -0.02em;
  padding: 0 26px;
}
.marquee__track span::after { content: '✦'; margin-left: 52px; opacity: 0.7; font-size: 0.7em; }
@keyframes scroll-x { to { transform: translateX(-50%); } }

/* =============================================================
   SERVICES — bento
   ============================================================= */
.bento { display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px; }
.tile {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  border: 2px solid var(--ink);
  transition: transform var(--tr), box-shadow var(--tr);
}
.tile:hover { transform: translateY(-6px); box-shadow: 14px 18px 0 var(--ink); }

/* big photo service tiles — text bound in solid panel on the image */
.tile--service { grid-column: span 3; min-height: 440px; color: #fff; display: flex; flex-direction: column; }
.tile--service img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.tile--service:hover img { transform: scale(1.05); }
.tile--service .tile__panel {
  position: relative; z-index: 1; margin-top: auto; width: 100%;
  padding: 28px 30px 30px;
  background: linear-gradient(to top, var(--ink) 62%, rgba(22,19,15,0.0));
}
.tile__tag {
  position: absolute; top: 20px; left: 20px; z-index: 1;
  padding: 7px 15px; background: var(--orange); color: #fff;
  border-radius: 999px; font-size: 12px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase;
}
.tile--service h3 { font-size: 28px; margin-bottom: 10px; }
.tile--service p { font-size: 15px; color: rgba(255,255,255,0.82); line-height: 1.55; }
.tile--service .tile__hi { margin-top: 12px; font-weight: 600; color: var(--orange-2); font-size: 14.5px; }
.tile__more { display: inline-flex; align-items: center; gap: 7px; margin-top: 16px; font-weight: 600; font-size: 14.5px; color: var(--orange-2); }
.tile__more:hover { color: #fff; }
.tile__more svg { width: 16px; height: 16px; }

/* solid accent tiles */
.tile--stat { grid-column: span 2; background: var(--orange); color: #fff; padding: 34px; display: flex; flex-direction: column; justify-content: center; }
.tile--stat b { font-family: var(--font-display); font-size: clamp(44px, 6vw, 68px); line-height: 0.92; }
.tile--stat span { font-size: 16px; margin-top: 10px; max-width: 240px; }
.tile--note { grid-column: span 2; background: var(--ink); color: #fff; padding: 34px; display: flex; flex-direction: column; justify-content: center; }
.tile--note h3 { font-size: 26px; margin-bottom: 12px; }
.tile--note p { color: rgba(255,255,255,0.72); font-size: 15.5px; }
.tile--note .tile__ico { width: 46px; height: 46px; display: grid; place-items: center; background: var(--orange); border-radius: 12px; margin-bottom: 18px; }
.tile--note .tile__ico svg { width: 24px; height: 24px; color: #fff; }

/* =============================================================
   TECHNOLOGY — image frame + overlapping text card
   ============================================================= */
.feat { position: relative; margin-bottom: clamp(56px, 8vw, 110px); }
.feat:last-child { margin-bottom: 0; }
.feat__grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; }
.feat__media {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  border: 2px solid var(--ink); aspect-ratio: 4 / 3;
}
.feat__media img { width: 100%; height: 100%; object-fit: cover; }
.feat__num {
  position: absolute; top: 18px; left: 18px; z-index: 2;
  font-family: var(--font-display); font-size: 18px; font-weight: 700;
  width: 48px; height: 48px; display: grid; place-items: center;
  background: var(--orange); color: #fff; border-radius: 50%; border: 2px solid var(--ink);
}
/* the card overlaps the image so text and image are physically bound */
.feat__card {
  position: relative; z-index: 3;
  background: var(--cream); border: 2px solid var(--ink); border-radius: var(--r-lg);
  padding: clamp(28px, 3vw, 44px);
  box-shadow: 10px 12px 0 var(--ink);
}
.feat--right .feat__media { order: 2; }
.feat--right .feat__card { order: 1; margin-right: -56px; }
.feat--left .feat__card { margin-left: -56px; }
.feat__label { font-size: 12.5px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--orange); }
.feat__card h3 { font-size: clamp(28px, 3.4vw, 42px); margin: 12px 0 16px; }
.feat__card > p { color: var(--muted); margin-bottom: 22px; line-height: 1.7; }
.feat__list { display: grid; gap: 11px; margin-bottom: 24px; }
.feat__list li { position: relative; padding-left: 30px; font-size: 15.5px; line-height: 1.5; }
.feat__list li::before {
  content: ''; position: absolute; left: 0; top: 1px; width: 20px; height: 20px;
  background: var(--orange);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9 16.17 4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E") center/15px no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9 16.17 4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E") center/15px no-repeat;
}
.badges { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 22px; }
.badges span { padding: 8px 16px; border: 2px solid var(--ink); border-radius: 999px; font-size: 13px; font-weight: 600; }

/* =============================================================
   STATS — orange flooded band
   ============================================================= */
.numbers { background: var(--orange); color: #fff; border-top: 2px solid var(--ink); border-bottom: 2px solid var(--ink); }
.numbers__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.numbers__cell { padding: clamp(40px, 6vw, 80px) 28px; border-right: 2px solid rgba(255,255,255,0.25); }
.numbers__cell:last-child { border-right: none; }
.numbers__cell b { display: block; font-family: var(--font-display); font-size: clamp(46px, 8vw, 92px); line-height: 0.9; }
.numbers__cell span { font-size: 16px; margin-top: 12px; display: block; color: rgba(255,255,255,0.85); }

/* =============================================================
   ABOUT — editorial split
   ============================================================= */
.about__grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(40px, 6vw, 80px); align-items: center; }
.about__media { position: relative; }
.about__media img { width: 100%; border-radius: var(--r-lg); border: 2px solid var(--ink); aspect-ratio: 3/4; object-fit: cover; }
.about__big {
  position: absolute; right: -24px; top: -24px; z-index: 2;
  background: var(--ink); color: #fff; border-radius: var(--r);
  padding: 18px 22px; text-align: center;
}
.about__big b { display: block; font-family: var(--font-display); font-size: 48px; line-height: 0.9; color: var(--orange-2); }
.about__big span { font-size: 12.5px; color: rgba(255,255,255,0.7); }
.about__body h2 { font-size: clamp(34px, 5vw, 64px); margin-bottom: 22px; }
.about__body h2 em { font-style: normal; color: var(--orange); }
.about__body p { color: var(--muted); margin-bottom: 18px; line-height: 1.75; font-size: 17px; }
.about__body strong { color: var(--ink); }
.about__chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.about__chips li { padding: 9px 18px; border: 2px solid var(--ink); border-radius: 999px; font-size: 14px; font-weight: 600; }

/* =============================================================
   DETAILS — clean cards (no black gradient)
   ============================================================= */
.detail { background: var(--cream); border: 2px solid var(--ink); border-radius: var(--r-lg); overflow: hidden; margin-bottom: 28px; }
.detail:last-child { margin-bottom: 0; }
.detail__head { display: flex; align-items: center; gap: 24px; padding: 26px clamp(24px, 3vw, 40px); border-bottom: 2px solid var(--ink); background: var(--paper-2); }
.detail__thumb { flex-shrink: 0; width: 92px; height: 92px; border-radius: var(--r); overflow: hidden; border: 2px solid var(--ink); }
.detail__thumb img { width: 100%; height: 100%; object-fit: cover; }
.detail__thumb--wide { width: 150px; }
.detail__head h3 { font-size: clamp(24px, 3.2vw, 38px); }
.detail__head--plain h3 { position: relative; padding-left: 22px; }
.detail__head--plain h3::before { content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 6px; height: 1.05em; background: var(--orange); border-radius: 3px; }
.detail__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(24px, 3vw, 44px); padding: clamp(28px, 3vw, 44px); }
.detail__cols--4 { grid-template-columns: repeat(4, 1fr); }
.detail__cols h4 { font-size: 17px; margin-bottom: 14px; padding-bottom: 12px; border-bottom: 2px solid var(--orange); }
.detail__cols li { position: relative; padding-left: 18px; margin-bottom: 9px; font-size: 14.5px; color: var(--muted); line-height: 1.55; }
.detail__cols li::before { content: ''; position: absolute; left: 0; top: 9px; width: 7px; height: 7px; background: var(--orange); border-radius: 50%; }

/* =============================================================
   LOCATION
   ============================================================= */
.loc__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 5vw, 64px); align-items: center; }
.loc__media img { width: 100%; border-radius: var(--r-lg); border: 2px solid var(--ink); aspect-ratio: 3/4; object-fit: cover; object-position: center top; }
.loc__body h2 { font-size: clamp(34px, 5vw, 60px); margin-bottom: 18px; }
.loc__body p { color: var(--muted); font-size: 17px; line-height: 1.7; margin-bottom: 26px; }
.loc__addr { display: flex; flex-direction: column; gap: 5px; font-style: normal; margin-bottom: 24px; padding: 22px 24px; background: var(--cream); border: 2px solid var(--ink); border-radius: var(--r); }
.loc__addr strong { font-family: var(--font-display); font-size: 19px; }
.loc__addr span { color: var(--muted); }
.loc__contacts { display: flex; flex-wrap: wrap; gap: 12px; }
.loc__contacts a { display: inline-flex; align-items: center; gap: 8px; padding: 11px 18px; border: 2px solid var(--ink); border-radius: 999px; font-weight: 600; font-size: 15px; transition: background var(--tr), color var(--tr); }
.loc__contacts a:hover { background: var(--ink); color: #fff; }
.loc__contacts svg { width: 16px; height: 16px; }
.loc__map { margin-top: 28px; border: 2px solid var(--ink); border-radius: var(--r-lg); overflow: hidden; line-height: 0; }
.loc__map iframe { display: block; width: 100%; min-height: 400px; border: 0; }
.loc__map-link { padding: 16px; text-align: center; font-size: 14px; background: var(--cream); border-top: 2px solid var(--ink); line-height: 1.5; }
.loc__map-link a { font-weight: 600; color: var(--orange); }

/* =============================================================
   PROPERTIES — dark section, bound captions
   ============================================================= */
.props { background: var(--ink); color: #fff; }
.props .intro h2 { color: #fff; }
.props .intro p { color: rgba(255,255,255,0.65); }
.props__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.prop {
  position: relative; border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 4/5;
  border: 2px solid rgba(255,255,255,0.14);
}
.prop img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.prop:hover img { transform: scale(1.06); }
.prop__cap {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 1;
  padding: 22px 22px 20px;
  background: linear-gradient(to top, rgba(22,19,15,0.95) 30%, transparent);
}
.prop__cap h3 { font-size: 21px; margin-bottom: 4px; }
.prop__cap p { display: inline-flex; align-items: center; gap: 7px; font-size: 13.5px; color: var(--orange-2); font-weight: 600; }
.prop__cap svg { width: 14px; height: 14px; }

/* =============================================================
   FAQ
   ============================================================= */
.faq__list { max-width: 860px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item { background: var(--cream); border: 2px solid var(--ink); border-radius: var(--r); overflow: hidden; transition: box-shadow var(--tr); }
.faq-item[open] { box-shadow: 8px 10px 0 var(--ink); }
.faq-item summary { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 24px 28px; font-family: var(--font-display); font-size: clamp(18px, 2.2vw, 23px); font-weight: 600; letter-spacing: -0.02em; cursor: pointer; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-icon { position: relative; flex-shrink: 0; width: 28px; height: 28px; }
.faq-icon::before, .faq-icon::after { content: ''; position: absolute; top: 50%; left: 50%; background: var(--orange); border-radius: 2px; transform: translate(-50%,-50%); }
.faq-icon::before { width: 16px; height: 3px; }
.faq-icon::after { width: 3px; height: 16px; transition: transform var(--tr); }
.faq-item[open] .faq-icon::after { transform: translate(-50%,-50%) scaleY(0); }
.faq-item__body { padding: 0 28px 26px; color: var(--muted); line-height: 1.7; font-size: 16.5px; }

/* =============================================================
   CONTACT
   ============================================================= */
.contact__grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(40px, 5vw, 72px); align-items: start; }
.contact__info h2 { font-size: clamp(34px, 5vw, 64px); margin-bottom: 20px; }
.contact__info h2 em { font-style: normal; color: var(--orange); }
.contact__info > p { color: var(--muted); font-size: 17px; line-height: 1.7; margin-bottom: 32px; }
.contact__rows { display: flex; flex-direction: column; gap: 16px; font-style: normal; }
.contact__row { display: flex; align-items: center; gap: 16px; padding: 16px 20px; background: var(--cream); border: 2px solid var(--ink); border-radius: var(--r); }
.contact__row .ico { flex-shrink: 0; width: 44px; height: 44px; display: grid; place-items: center; background: var(--orange); border-radius: 12px; color: #fff; }
.contact__row .ico svg { width: 21px; height: 21px; }
.contact__row strong { display: block; font-size: 12.5px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); margin-bottom: 2px; }
.contact__row span, .contact__row a { font-size: 16.5px; font-weight: 500; }
.contact__form { background: var(--ink); color: #fff; padding: clamp(28px, 4vw, 44px); border-radius: var(--r-lg); border: 2px solid var(--ink); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.fg { margin-bottom: 18px; }
.fg label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 8px; }
.fg input, .fg textarea {
  width: 100%; padding: 15px 16px; font-family: var(--font-body); font-size: 15px;
  color: #fff; background: rgba(255,255,255,0.06);
  border: 2px solid rgba(255,255,255,0.18); border-radius: 12px; transition: border-color var(--tr), background var(--tr);
}
.fg input::placeholder, .fg textarea::placeholder { color: rgba(255,255,255,0.4); }
.fg input:focus, .fg textarea:focus { outline: none; border-color: var(--orange); background: rgba(255,255,255,0.1); }
.fg textarea { resize: vertical; min-height: 130px; }
.consent { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 22px; font-size: 13px; color: rgba(255,255,255,0.65); line-height: 1.5; }
.consent input { margin-top: 3px; accent-color: var(--orange); flex-shrink: 0; }
.form-note { margin-top: 14px; font-size: 13.5px; text-align: center; min-height: 18px; color: rgba(255,255,255,0.8); }

/* =============================================================
   FOOTER — big wordmark
   ============================================================= */
.footer { background: var(--ink-deep); color: rgba(255,255,255,0.6); padding: clamp(56px, 7vw, 90px) 0 36px; overflow: hidden; }
.footer__top { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 44px; padding-bottom: 44px; }
.footer__brand { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.footer__brand img { border-radius: 10px; }
.footer__brand span { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: #fff; }
.footer__about { font-size: 15px; line-height: 1.7; max-width: 360px; }
.footer__col h4 { font-family: var(--font-body); font-size: 12.5px; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.4); margin-bottom: 18px; }
.footer__col ul { display: flex; flex-direction: column; gap: 11px; }
.footer__col a, .footer__col span { font-size: 15px; color: rgba(255,255,255,0.72); transition: color var(--tr); }
.footer__col a:hover { color: var(--orange-2); }
.footer__contact li { display: flex; align-items: center; gap: 10px; }
.footer__contact svg { width: 16px; height: 16px; color: var(--orange); flex-shrink: 0; }
.footer__word { font-family: var(--font-display); font-weight: 700; font-size: clamp(60px, 17vw, 240px); line-height: 0.8; letter-spacing: -0.05em; color: rgba(255,255,255,0.05); margin: 10px 0 -0.1em; user-select: none; }
.footer__bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.12); font-size: 13.5px; }

/* =============================================================
   Back to top + reveal
   ============================================================= */
.to-top { position: fixed; right: 24px; bottom: 24px; z-index: 900; width: 52px; height: 52px; display: grid; place-items: center; background: var(--orange); color: #fff; border: 2px solid var(--ink); border-radius: 50%; cursor: pointer; opacity: 0; visibility: hidden; transform: translateY(12px); transition: opacity var(--tr), transform var(--tr), background var(--tr), visibility var(--tr); }
.to-top--show { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { background: var(--ink); transform: translateY(-3px); }
.to-top svg { width: 22px; height: 22px; }

.reveal--init { opacity: 0; transform: translateY(34px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal--init.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; }
  .reveal--init { opacity: 1; transform: none; transition: none; }
  .marquee__track { animation: none; }
}

/* =============================================================
   Subpages (služby)
   ============================================================= */
.subhero {
  position: relative; overflow: hidden;
  background: linear-gradient(165deg, #1e3252 0%, var(--ink) 45%, var(--ink-deep) 100%);
  color: #fff;
  padding: calc(var(--header-h) + 66px) 0 70px;
}
.subhero::before {
  content: ''; position: absolute; top: -25%; right: -8%;
  width: 42vw; height: 42vw; max-width: 580px; max-height: 580px;
  background: radial-gradient(circle, rgba(226,98,46,0.32), transparent 65%);
  pointer-events: none;
}
.subhero .wrap { position: relative; }
.breadcrumb { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; font-size: 14px; margin-bottom: 22px; color: rgba(255,255,255,0.55); }
.breadcrumb a { color: rgba(255,255,255,0.6); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb b { color: var(--orange-2); font-weight: 500; }
.subhero h1 { font-size: clamp(34px, 6.2vw, 66px); line-height: 0.98; margin-bottom: 18px; max-width: 18ch; }
.subhero h1 em { font-style: normal; color: var(--orange); }
.subhero p { font-size: clamp(17px, 2vw, 20px); color: rgba(255,255,255,0.82); max-width: 620px; margin-bottom: 30px; }

.lead-text { max-width: 800px; }
.lead-text p { font-size: 17px; line-height: 1.85; color: var(--muted); margin-bottom: 18px; }
.lead-text strong { color: var(--ink); }

.checks { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 36px; margin-top: 8px; }
.checks li { position: relative; padding-left: 34px; font-size: 16px; line-height: 1.55; }
.checks li::before {
  content: ''; position: absolute; left: 0; top: 0; width: 24px; height: 24px;
  background: var(--orange);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9 16.17 4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E") center/17px no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9 16.17 4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E") center/17px no-repeat;
}

.cta-band { background: var(--orange); color: #fff; border-top: 2px solid var(--ink); border-bottom: 2px solid var(--ink); text-align: center; }
.cta-band h2 { font-size: clamp(28px, 4.4vw, 50px); margin-bottom: 14px; }
.cta-band p { font-size: 18px; margin: 0 auto 28px; max-width: 560px; }
.cta-band .btn--dark { background: var(--ink); border-color: var(--ink); }
.cta-band .btn--dark:hover { background: #fff; color: var(--ink); border-color: #fff; }
.cta-band .btn--light:hover { background: var(--ink); color: #fff; border-color: var(--ink); }

/* use-case karty */
.usecases { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.usecase { background: var(--cream); border: 2px solid var(--ink); border-radius: var(--r-lg); padding: 32px; transition: transform var(--tr), box-shadow var(--tr); }
.usecase:hover { transform: translateY(-5px); box-shadow: 10px 12px 0 var(--ink); }
.usecase__ico { width: 54px; height: 54px; display: grid; place-items: center; background: var(--orange); border-radius: 14px; color: #fff; margin-bottom: 18px; }
.usecase__ico svg { width: 27px; height: 27px; }
.usecase h3 { font-size: 22px; margin-bottom: 10px; }
.usecase p { color: var(--muted); font-size: 15.5px; line-height: 1.65; }

/* showcase obrázek */
.showcase { position: relative; }
.showcase img { width: 100%; display: block; border: 2px solid var(--ink); border-radius: var(--r-lg); }

/* strip kompatibilních značek */
.brands { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 18px; }
.brands__logo { display: flex; align-items: center; justify-content: center; height: 92px; padding: 0 32px; background: #fff; border: 2px solid var(--ink); border-radius: 16px; }
.brands__logo img { height: 42px; width: auto; }

@media (max-width: 680px) { .checks, .usecases { grid-template-columns: 1fr; } .brands__logo { height: 76px; padding: 0 22px; } .brands__logo img { height: 34px; } }

/* =============================================================
   Responsive
   ============================================================= */
@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; gap: 0; }
  .hero__left { padding-bottom: 44px; }
  .hero__media { min-height: 360px; }
  .hero__photo { border-radius: var(--r-xl); min-height: 360px; }
  .hero__badge { left: auto; right: 20px; bottom: 20px; }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .tile--service, .tile--stat, .tile--note { grid-column: span 1; }
  .feat__grid { grid-template-columns: 1fr; }
  .feat--right .feat__media, .feat--right .feat__card { order: unset; }
  .feat__card { margin: -44px 18px 0 18px !important; }
  .feat--left .feat__card, .feat--right .feat__card { margin-left: 18px; margin-right: 18px; }
  .numbers__grid { grid-template-columns: repeat(2, 1fr); }
  .numbers__cell:nth-child(2) { border-right: none; }
  .numbers__cell:nth-child(1), .numbers__cell:nth-child(2) { border-bottom: 2px solid rgba(255,255,255,0.25); }
  .about__grid { grid-template-columns: 1fr; gap: 40px; }
  .about__media { max-width: 420px; }
  .detail__cols, .detail__cols--4 { grid-template-columns: repeat(2, 1fr); }
  .loc__grid { grid-template-columns: 1fr; gap: 36px; }
  .props__grid { grid-template-columns: repeat(2, 1fr); }
  .contact__grid { grid-template-columns: 1fr; gap: 36px; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__brand-col { grid-column: 1 / -1; }
}

@media (max-width: 680px) {
  .header__toggle { display: flex; }
  .header__nav {
    position: fixed; top: var(--header-h); left: 0; right: 0;
    background: var(--paper); flex-direction: column; align-items: stretch;
    padding: 16px 24px 24px; gap: 4px; border-bottom: 2px solid var(--ink);
    transform: translateY(-130%); opacity: 0; pointer-events: none;
    transition: transform var(--tr), opacity var(--tr);
  }
  .header__nav--open { transform: none; opacity: 1; pointer-events: all; }
  .header__nav a { padding: 14px; text-align: left; border-radius: 12px; }
  .header__cta { text-align: center; margin-top: 6px; }
  .header__toggle--active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
  .header__toggle--active span:nth-child(2) { opacity: 0; }
  .header__toggle--active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }
  .bento { grid-template-columns: 1fr; }
  .numbers__grid { grid-template-columns: 1fr; }
  .numbers__cell { border-right: none; border-bottom: 2px solid rgba(255,255,255,0.25); }
  .numbers__cell:last-child { border-bottom: none; }
  .detail__cols, .detail__cols--4 { grid-template-columns: 1fr; }
  .detail__head { flex-direction: column; align-items: flex-start; gap: 16px; }
  .props__grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .footer__top { grid-template-columns: 1fr; }
  .hero__badge b { font-size: 32px; }
}
