/* =============================================================
   ORYON Power Technologies — hlavni styly webu
   Sdileno mezi index.html a aktuality.html
   ============================================================= */

/* ============================================================= RESET / BASE */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

:root {
  /* Barvy loga */
  --blue: #0077b0;
  --blue-dark: #00577f;
  --blue-deep: #023049;
  --blue-soft: #eaf4fb;
  --blue-tint: #f4f9fc;
  /* Přírodní zelený akcent */
  --green: #3ca35a;
  --green-dark: #2b7f45;
  --green-soft: #eaf6ee;
  /* Neutrály */
  --ink: #0f2733;
  --muted: #586a74;
  --line: #e4edf2;
  --bg: #ffffff;
  --bg-soft: #f5f9fc;
  /* Stíny */
  --sh-sm: 0 2px 10px rgba(3, 48, 73, .06);
  --sh-md: 0 14px 34px rgba(3, 48, 73, .10);
  --sh-lg: 0 30px 70px rgba(3, 48, 73, .16);
  --radius: 18px;
  --radius-sm: 12px;
  --container: 1180px;
  --nav-h: 74px;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

html {
  scroll-behavior: smooth
}

body {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  font-family: "Sora", "Inter", system-ui, "Segoe UI", sans-serif;
  line-height: 1.15;
  color: var(--ink);
  font-weight: 700
}

img {
  max-width: 100%;
  display: block
}

a {
  color: inherit;
  text-decoration: none
}

::selection {
  background: var(--blue);
  color: #fff
}

/* ============================================================= LAYOUT HELPERS */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px
}

section {
  scroll-margin-top: calc(var(--nav-h) + 12px)
}

.section-pad {
  padding: 104px 0
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: "Sora", sans-serif;
  font-weight: 600;
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-soft);
  padding: 7px 15px;
  border-radius: 100px
}

.eyebrow.green {
  color: var(--green-dark);
  background: var(--green-soft)
}

.eyebrow svg {
  width: 15px;
  height: 15px
}

.section-title {
  font-size: clamp(1.9rem, 3.6vw, 2.75rem);
  margin: 18px 0 14px;
  letter-spacing: -.01em
}

.section-lead {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 640px
}

.text-center {
  text-align: center
}

.text-center .section-lead {
  margin-left: auto;
  margin-right: auto
}

.grad-green {
  color: var(--green-dark)
}

/* Tlačítka */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: "Sora", sans-serif;
  font-weight: 600;
  font-size: .98rem;
  padding: 14px 26px;
  border-radius: 100px;
  cursor: pointer;
  border: 1.6px solid transparent;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, color .25s, border-color .25s;
  white-space: nowrap
}

.btn svg {
  width: 18px;
  height: 18px
}

.btn-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 10px 24px rgba(0, 119, 176, .28)
}

.btn-primary:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(0, 119, 176, .34)
}

.btn-green {
  background: var(--green);
  color: #fff;
  box-shadow: 0 10px 24px rgba(60, 163, 90, .28)
}

.btn-green:hover {
  background: var(--green-dark);
  transform: translateY(-2px)
}

.btn-outline {
  background: #fff;
  color: var(--blue-dark);
  border-color: #cfe3ef
}

.btn-outline:hover {
  border-color: var(--blue);
  color: var(--blue);
  transform: translateY(-2px);
  box-shadow: var(--sh-sm)
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  padding: 12px 18px
}

.btn-ghost:hover {
  color: var(--blue)
}

/* ============================================================= NAVBAR */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  z-index: 100;
  background: rgba(255, 255, 255, .82);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .3s, border-color .3s, background .3s
}

.nav.scrolled {
  box-shadow: var(--sh-sm);
  border-color: var(--line);
  background: rgba(255, 255, 255, .94)
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  height: 100%;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px
}

.nav-logo img {
  height: 46px;
  width: auto
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px
}

.nav-links a {
  font-family: "Sora", sans-serif;
  font-weight: 500;
  font-size: .95rem;
  color: var(--ink);
  padding: 9px 14px;
  border-radius: 100px;
  position: relative;
  transition: color .2s, background .2s
}

.nav-links a:hover {
  color: var(--blue);
  background: var(--blue-soft)
}

.nav-links a.active {
  color: var(--blue)
}

.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 2px;
  height: 2px;
  background: var(--blue);
  border-radius: 2px
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 8px
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--ink)
}

.nav-toggle svg {
  width: 26px;
  height: 26px
}

/* ============================================================= HERO */
.hero {
  position: relative;
  padding: calc(var(--nav-h) + 60px) 0 40px;
  overflow: hidden
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(60% 55% at 88% 8%, rgba(0, 119, 176, .10), transparent 60%),
    radial-gradient(50% 45% at 5% 92%, rgba(60, 163, 90, .10), transparent 60%),
    linear-gradient(180deg, #fff 0%, var(--blue-tint) 100%)
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center
}

.hero-copy .eyebrow {
  margin-bottom: 22px
}

.hero h1 {
  font-size: clamp(2.4rem, 5.2vw, 4rem);
  font-weight: 800;
  letter-spacing: -.02em;
  margin-bottom: 22px
}

.hero h1 .hl {
  color: var(--green-dark);
  position: relative;
  white-space: nowrap
}

.hero h1 .hl::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: .06em;
  height: .14em;
  background: var(--green);
  opacity: .28;
  border-radius: 4px;
  z-index: -1
}

.hero-sub {
  font-size: 1.2rem;
  color: var(--muted);
  max-width: 540px;
  margin-bottom: 32px
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 34px
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px
}

.hero-point {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: .94rem;
  font-weight: 500;
  color: var(--ink)
}

.hero-point svg {
  width: 20px;
  height: 20px;
  color: var(--green);
  flex-shrink: 0
}

.hero-visual {
  position: relative
}

.hero-photo {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--sh-lg);
  aspect-ratio: 4/4.4
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04)
}

.hero-badge {
  position: absolute;
  left: -26px;
  bottom: 34px;
  background: #fff;
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: var(--sh-md);
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 260px;
  border: 1px solid var(--line)
}

.hero-badge .ico {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--green-soft);
  color: var(--green-dark);
  display: grid;
  place-items: center;
  flex-shrink: 0
}

.hero-badge .ico svg {
  width: 24px;
  height: 24px
}

.hero-badge b {
  font-family: "Sora", sans-serif;
  font-size: .98rem;
  display: block;
  line-height: 1.25
}

.hero-badge span {
  font-size: .82rem;
  color: var(--muted)
}

.hero-chip-top {
  position: absolute;
  right: -14px;
  top: 30px;
  background: var(--blue-deep);
  color: #fff;
  border-radius: 14px;
  padding: 12px 18px;
  box-shadow: var(--sh-md);
  font-family: "Sora", sans-serif;
  font-weight: 600;
  font-size: .92rem;
  display: flex;
  align-items: center;
  gap: 9px
}

.hero-chip-top svg {
  width: 18px;
  height: 18px;
  color: #7fd0ee
}

/* ============================================================= AKTUALITY TICKER */
.ticker {
  background: var(--blue-deep);
  color: #fff;
  position: relative;
  z-index: 2
}

.ticker-inner {
  display: flex;
  align-items: center;
  max-width: var(--container);
  margin: 0 auto
}

.ticker-label {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: var(--green);
  color: #fff;
  padding: 0 22px;
  height: 52px;
  align-self: stretch;
  display: flex;
  align-items: center
}

.ticker-label svg {
  width: 16px;
  height: 16px
}

.ticker-viewport {
  overflow: hidden;
  flex: 1;
  height: 52px;
  display: flex;
  align-items: center;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent)
}

.ticker-track {
  display: flex;
  align-items: center;
  gap: 52px;
  white-space: nowrap;
  animation: ticker 42s linear infinite;
  padding-left: 52px
}

.ticker:hover .ticker-track {
  animation-play-state: paused
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: .95rem
}

.ticker-item .date {
  font-family: "Sora", sans-serif;
  font-weight: 600;
  color: #7fd0ee;
  font-size: .85rem
}

.ticker-item .dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green)
}

@keyframes ticker {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

/* ============================================================= O NÁS */
.about {
  background: #fff
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center
}

.about-media {
  position: relative
}

.about-media .frame {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--sh-lg)
}

.about-media img {
  width: 100%;
  height: 520px;
  object-fit: cover
}

.about-media .cap {
  position: absolute;
  left: 20px;
  bottom: 20px;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(6px);
  border-radius: 12px;
  padding: 12px 16px;
  box-shadow: var(--sh-sm);
  max-width: 75%
}

.about-media .cap b {
  font-family: "Sora", sans-serif;
  font-size: .95rem;
  display: block
}

.about-media .cap span {
  font-size: .83rem;
  color: var(--muted)
}

.about-text p {
  color: var(--muted);
  margin-bottom: 16px;
  font-size: 1.04rem
}

.about-text p.lead {
  font-size: 1.2rem;
  color: var(--ink);
  font-weight: 500;
  line-height: 1.5
}

.about-mini {
  display: flex;
  gap: 14px;
  margin-top: 26px;
  flex-wrap: wrap
}

.about-mini .m {
  flex: 1;
  min-width: 150px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px
}

.about-mini .m b {
  font-family: "Sora", sans-serif;
  font-size: 1.55rem;
  color: var(--blue);
  display: block
}

.about-mini .m span {
  font-size: .9rem;
  color: var(--muted)
}

/* ============================================================= PROCES */
.process {
  background: linear-gradient(180deg, var(--bg-soft), #fff)
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 44px;
  margin-top: 52px
}

.step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
  position: relative;
  box-shadow: var(--sh-sm)
}

.step .num {
  font-family: "Sora", sans-serif;
  font-weight: 800;
  font-size: 2.6rem;
  color: var(--blue-soft);
  line-height: 1;
  margin-bottom: 8px
}

.step .ico {
  position: absolute;
  top: 28px;
  right: 28px;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--blue-soft);
  color: var(--blue);
  display: grid;
  place-items: center
}

.step .ico svg {
  width: 24px;
  height: 24px
}

.step h4 {
  font-size: 1.15rem;
  margin-bottom: 8px
}

.step p {
  color: var(--muted);
  font-size: .97rem
}

.step-line {
  position: absolute;
  top: 50%;
  left: 100%;
  transform: translateY(-50%);
  margin-left: 5px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--sh-sm);
  display: grid;
  place-items: center;
  color: var(--blue);
  z-index: 5
}

.step-line svg {
  width: 18px;
  height: 18px
}

/* ============================================================= SLUŽBY */
.services {
  background: #fff
}

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 70px
}

.feature-row.reverse .feature-media {
  order: 2
}

.feature-media {
  position: relative
}

.feature-media .frame {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--sh-lg);
  aspect-ratio: 16/11
}

.feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease)
}

.feature-row:hover .feature-media img {
  transform: scale(1.05)
}

.feature-media .chip {
  position: absolute;
  left: 18px;
  bottom: 18px;
  background: rgba(2, 48, 73, .86);
  color: #fff;
  backdrop-filter: blur(4px);
  padding: 9px 16px;
  border-radius: 100px;
  font-family: "Sora", sans-serif;
  font-weight: 600;
  font-size: .85rem;
  display: flex;
  align-items: center;
  gap: 8px
}

.feature-media .chip svg {
  width: 15px;
  height: 15px;
  color: #7fd0ee
}

.feature-num {
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: .85rem;
  color: var(--green);
  letter-spacing: .14em;
  margin-bottom: 12px;
  display: block
}

.feature-text h3 {
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  margin-bottom: 14px
}

.feature-text p {
  color: var(--muted);
  font-size: 1.05rem
}

.svc-head {
  margin-top: 96px;
  text-align: center
}

.svc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 44px
}

.svc-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
  position: relative;
  overflow: hidden
}

.svc-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background: linear-gradient(var(--blue), var(--green));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .35s var(--ease)
}

.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-md);
  border-color: transparent
}

.svc-card:hover::before {
  transform: scaleY(1)
}

.svc-card .ico {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: var(--blue-soft);
  color: var(--blue);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  transition: background .3s, color .3s
}

.svc-card:hover .ico {
  background: var(--blue);
  color: #fff
}

.svc-card .ico svg {
  width: 28px;
  height: 28px
}

.svc-card .n {
  font-family: "Sora", sans-serif;
  font-size: .78rem;
  font-weight: 600;
  color: var(--green);
  letter-spacing: .12em
}

.svc-card h4 {
  font-size: 1.2rem;
  margin: 4px 0 10px
}

.svc-card p {
  color: var(--muted);
  font-size: .97rem
}

/* ============================================================= CTA BAND */
.cta-band {
  position: relative;
  overflow: hidden;
  color: #fff;
  text-align: center
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-size: cover;
  background-position: center
}

.cta-band::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(120deg, rgba(2, 48, 73, .90), rgba(0, 87, 127, .78))
}

.cta-band .container {
  padding-top: 96px;
  padding-bottom: 96px
}

.cta-band h2 {
  color: #fff;
  font-size: clamp(1.9rem, 3.6vw, 2.7rem);
  margin-bottom: 16px
}

.cta-band p {
  color: rgba(255, 255, 255, .88);
  font-size: 1.15rem;
  max-width: 620px;
  margin: 0 auto 32px
}

.cta-band .btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, .5)
}

.cta-band .btn-outline:hover {
  background: #fff;
  color: var(--blue-dark);
  border-color: #fff
}

.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap
}

/* ============================================================= AKTUALITY SEKCE */
.news {
  background: var(--bg-soft)
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 44px
}

.news-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  display: flex;
  flex-direction: column
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-md)
}

.news-date {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Sora", sans-serif;
  font-weight: 600;
  font-size: .82rem;
  color: var(--green-dark);
  background: var(--green-soft);
  padding: 6px 13px;
  border-radius: 100px;
  align-self: flex-start;
  margin-bottom: 16px
}

.news-date svg {
  width: 14px;
  height: 14px
}

.news-card h4 {
  font-size: 1.18rem;
  margin-bottom: 10px;
  line-height: 1.3
}

.news-card p {
  color: var(--muted);
  font-size: .97rem
}

.news-src {
  margin-top: auto;
  padding-top: 16px;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: "Sora", sans-serif;
  font-weight: 600;
  font-size: .85rem;
  color: var(--blue)
}

.news-src svg {
  width: 14px;
  height: 14px
}

a.news-src:hover {
  color: var(--blue-dark);
  text-decoration: underline
}

/* Tlačítko "Všechny aktuality" pod výpisem na hlavní straně */
.news-more {
  display: flex;
  justify-content: center;
  margin-top: 44px
}

/* ---------- Stránka aktuality.html ---------- */
.news-featured {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 5px solid var(--green);
  border-radius: var(--radius);
  padding: 38px 40px;
  box-shadow: var(--sh-md);
  display: flex;
  flex-direction: column;
  margin-bottom: 48px
}

.news-featured h2 {
  font-size: clamp(1.5rem, 3vw, 2.05rem);
  margin-bottom: 14px;
  line-height: 1.25
}

.news-featured p {
  color: var(--muted);
  font-size: 1.06rem
}

.nf-badge {
  position: absolute;
  top: -13px;
  left: 40px;
  background: var(--green);
  color: #fff;
  font-family: "Sora", sans-serif;
  font-weight: 600;
  font-size: .76rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  box-shadow: var(--sh-sm)
}

/* Stránkování */
.pager {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 52px;
  flex-wrap: wrap
}

.pager button {
  min-width: 44px;
  height: 44px;
  padding: 0 14px;
  border: 1.5px solid var(--line);
  background: #fff;
  color: var(--ink);
  border-radius: 12px;
  font-family: "Sora", sans-serif;
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: border-color .2s, background .2s, color .2s
}

.pager button:hover:not(:disabled) {
  border-color: var(--blue);
  color: var(--blue)
}

.pager button.active {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff
}

.pager button:disabled {
  opacity: .4;
  cursor: not-allowed
}

.pager svg {
  width: 16px;
  height: 16px
}

.pager-info {
  text-align: center;
  color: var(--muted);
  font-size: .9rem;
  margin-top: 18px
}

/* Jednoduchá hlavička podstránky */
.subpage-hero {
  padding: calc(var(--nav-h) + 64px) 0 8px;
  background:
    radial-gradient(60% 60% at 85% 0%, rgba(0, 119, 176, .10), transparent 60%),
    radial-gradient(50% 50% at 0% 100%, rgba(60, 163, 90, .10), transparent 60%),
    linear-gradient(180deg, #fff, var(--blue-tint))
}

.subpage-hero h1 {
  font-size: clamp(2rem, 4.4vw, 3rem);
  font-weight: 800;
  letter-spacing: -.015em;
  margin: 16px 0 14px
}

/* ============================================================= KONTAKT */
.contact {
  background: #fff
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 52px;
  margin-top: 48px;
  align-items: start
}

.contact-company {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px
}

.contact-company .ci {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--blue);
  color: #fff;
  display: grid;
  place-items: center;
  flex-shrink: 0
}

.contact-company .ci svg {
  width: 24px;
  height: 24px
}

.contact-company b {
  font-family: "Sora", sans-serif;
  font-size: 1.12rem;
  color: var(--ink);
  display: block;
  line-height: 1.25
}

.contact-company span {
  font-size: .9rem;
  color: var(--muted)
}

.contact-info .person {
  display: flex;
  gap: 18px;
  align-items: center;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-soft);
  margin-bottom: 22px
}

.contact-info .person .av {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  flex-shrink: 0
}

.contact-info .person b {
  font-family: "Sora", sans-serif;
  font-size: 1.15rem;
  display: block
}

.contact-info .person span {
  color: var(--muted);
  font-size: .94rem
}

.contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 24px
}

.contact-list li {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  padding: 14px 8px;
  border-bottom: 1px solid var(--line)
}

.contact-list li:last-child {
  border-bottom: none
}

.contact-list .ci {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: var(--blue-soft);
  color: var(--blue);
  display: grid;
  place-items: center;
  flex-shrink: 0
}

.contact-list .ci svg {
  width: 21px;
  height: 21px
}

.contact-list .lbl {
  font-size: .8rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .06em
}

.contact-list .val {
  font-family: "Sora", sans-serif;
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--ink)
}

.contact-list a.val:hover {
  color: var(--blue)
}

.office-photo {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--sh-md);
  position: relative
}

.office-photo img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  object-position: center 35%
}

.office-photo .cap {
  position: absolute;
  left: 16px;
  bottom: 14px;
  background: rgba(255, 255, 255, .94);
  padding: 8px 14px;
  border-radius: 100px;
  font-family: "Sora", sans-serif;
  font-weight: 600;
  font-size: .85rem;
  box-shadow: var(--sh-sm)
}

/* Formulář */
.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: var(--sh-md)
}

.form-card h3 {
  font-size: 1.35rem;
  margin-bottom: 6px
}

.form-card .fdesc {
  color: var(--muted);
  font-size: .96rem;
  margin-bottom: 24px
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px
}

.field {
  margin-bottom: 16px
}

.field label {
  display: block;
  font-size: .86rem;
  font-weight: 600;
  font-family: "Sora", sans-serif;
  margin-bottom: 7px;
  color: var(--ink)
}

.field input,
.field textarea {
  width: 100%;
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink);
  padding: 13px 15px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  background: var(--bg-soft);
  transition: border-color .2s, box-shadow .2s, background .2s
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--blue);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(0, 119, 176, .10)
}

.field textarea {
  resize: vertical;
  min-height: 120px
}

.consent {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  font-size: .86rem;
  color: var(--muted);
  margin-bottom: 22px
}

.consent a {
  color: var(--blue);
  text-decoration: underline
}

.consent input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--blue);
  flex-shrink: 0
}

.form-status {
  display: none;
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 12px;
  background: var(--green-soft);
  color: var(--green-dark);
  font-weight: 600;
  font-size: .95rem;
  align-items: center;
  gap: 10px
}

.form-status.show {
  display: flex
}

.form-status.error {
  background: #fdecec;
  color: #b3261e
}

.form-status svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0
}

/* Mapa */
.map-wrap {
  margin-top: 64px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--sh-md);
  border: 1px solid var(--line)
}

.map-wrap iframe {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
  filter: saturate(1.05)
}

/* ============================================================= FOOTER */
.footer {
  background: var(--blue-deep);
  color: rgba(255, 255, 255, .72);
  padding: 70px 0 30px
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 44px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255, 255, 255, .12)
}

.footer-logo img {
  height: 40px;
  margin-bottom: 18px
}

.footer-about {
  font-size: .95rem;
  max-width: 340px;
  line-height: 1.7
}

.footer-legal {
  margin-top: 18px;
  font-size: .9rem;
  line-height: 1.6
}

.footer-legal span {
  color: #fff;
  font-family: "Sora", sans-serif;
  font-weight: 600
}

.footer h5 {
  color: #fff;
  font-family: "Sora", sans-serif;
  font-size: 1rem;
  margin-bottom: 18px
}

.footer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px
}

.footer ul a {
  font-size: .95rem;
  transition: color .2s
}

.footer ul a:hover {
  color: #fff
}

.footer-contact li {
  font-size: .95rem;
  margin-bottom: 11px;
  display: flex;
  gap: 10px;
  align-items: flex-start
}

.footer-contact svg {
  width: 17px;
  height: 17px;
  color: var(--green);
  margin-top: 3px;
  flex-shrink: 0
}

.footer-bottom {
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px 24px;
  flex-wrap: wrap;
  font-size: .86rem
}

.footer-legal-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap
}

.footer-legal-links a {
  color: rgba(255, 255, 255, .78);
  transition: color .2s
}

.footer-legal-links a:hover {
  color: #fff;
  text-decoration: underline
}

.footer-credit {
  padding-top: 18px;
  text-align: center;
  font-size: .84rem;
  color: rgba(255, 255, 255, .55)
}

.footer-credit a {
  color: rgba(255, 255, 255, .78);
  font-weight: 600;
  text-decoration: none;
  transition: color .2s
}

.footer-credit a:hover {
  color: #fff;
  text-decoration: underline
}

/* ============================================================= BACK TO TOP */
.to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  border: none;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: var(--sh-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity .3s, transform .3s, visibility .3s, background .2s;
  z-index: 90
}

.to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0)
}

.to-top:hover {
  background: var(--blue-dark)
}

.to-top svg {
  width: 22px;
  height: 22px
}

/* ============================================================= COOKIE LIŠTA */
.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 200;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--sh-lg);
  padding: 22px 26px;
  max-width: 940px;
  margin: 0 auto;
  transform: translateY(140%);
  opacity: 0;
  visibility: hidden;
  transition: transform .45s var(--ease), opacity .45s, visibility .45s
}

.cookie-banner.show {
  transform: translateY(0);
  opacity: 1;
  visibility: visible
}

.cookie-inner {
  display: flex;
  align-items: center;
  gap: 26px
}

.cookie-text b {
  font-family: "Sora", sans-serif;
  font-size: 1.05rem;
  display: block;
  margin-bottom: 4px
}

.cookie-text p {
  font-size: .92rem;
  color: var(--muted);
  line-height: 1.55
}

.cookie-text a {
  color: var(--blue);
  text-decoration: underline
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0
}

.cookie-actions .btn {
  padding: 12px 22px
}

@media(max-width:720px) {
  .cookie-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 16px
  }

  .cookie-actions .btn {
    flex: 1
  }
}

/* ============================================================= REVEAL / ANIM */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s var(--ease), transform .8s var(--ease)
}

.reveal.in {
  opacity: 1;
  transform: none
}

.reveal.from-left {
  transform: translateX(-40px)
}

.reveal.from-right {
  transform: translateX(40px)
}

.reveal.from-left.in,
.reveal.from-right.in {
  transform: none
}

[data-delay="1"] {
  transition-delay: .08s
}

[data-delay="2"] {
  transition-delay: .16s
}

[data-delay="3"] {
  transition-delay: .24s
}

[data-delay="4"] {
  transition-delay: .32s
}

[data-delay="5"] {
  transition-delay: .40s
}

@media(prefers-reduced-motion:reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none
  }

  html {
    scroll-behavior: auto
  }

  .ticker-track {
    animation: none
  }
}

/* ============================================================= RESPONSIVE */
@media(max-width:960px) {

  .hero-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 44px
  }

  .hero-visual {
    max-width: 460px;
    margin: 0 auto;
    width: 100%
  }

  .about-media {
    order: -1
  }

  .feature-row,
  .feature-row.reverse {
    grid-template-columns: 1fr;
    gap: 32px
  }

  .feature-row.reverse .feature-media {
    order: -1
  }

  .process-grid {
    grid-template-columns: 1fr
  }

  .step-line {
    display: none
  }
}

@media(max-width:768px) {
  .section-pad {
    padding: 72px 0
  }

  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    gap: 2px;
    box-shadow: var(--sh-md);
    border-top: 1px solid var(--line);
    transform: translateY(-140%);
    transition: transform .35s var(--ease);
    max-height: calc(100vh - var(--nav-h));
    overflow-y: auto
  }

  .nav-links.open {
    transform: translateY(0)
  }

  .nav-links a {
    padding: 14px 16px;
    border-radius: 10px
  }

  .nav-links a.active::after {
    display: none
  }

  .nav-links a.active {
    background: var(--blue-soft)
  }

  .nav-cta .btn-primary {
    display: none
  }

  .nav-toggle {
    display: inline-flex
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px
  }

  .form-row {
    grid-template-columns: 1fr
  }

  .hero-badge {
    left: 0
  }

  .about-mini {
    flex-direction: column
  }
}

@media(max-width:420px) {
  .hero-actions .btn {
    width: 100%
  }

  .ticker-label span {
    display: none
  }
}
