/* ═══════════════════════════════════════════
   TOKENS
═══════════════════════════════════════════ */
:root {
  --bg: #F8FAFC;
  --bg2: #EFF6FF;
  --navy: #0D3B66;
  --blue: #1a5599;
  --sky: #0D3B66;
  --sky-l: #3B82F6;
  --sky-d: #0A2D52;
  --glass: rgba(255, 255, 255, .72);
  --glass-b: rgba(13, 59, 102, .14);
  --glass-bh: rgba(13, 59, 102, .32);
  --muted: rgba(30, 41, 59, .72);
  --dim: rgba(30, 41, 59, .66);
  --text-main: #1E293B;
  --gap: clamp(80px, 10vw, 130px);
}

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

html {
  scroll-behavior: smooth
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text-main);
  overflow-x: hidden;
}

/* ═══════════════════════════════════════════
   FOCUS STATES (WCAG 2.1)
═══════════════════════════════════════════ */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid #3B82F6;
  outline-offset: 2px;
  border-radius: 4px;
}

/* Skip-to-content (klávesnice / čtečky) */
.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 1000;
  padding: 10px 18px;
  border-radius: 10px;
  background: var(--navy);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: top .2s ease;
}

.skip-link:focus {
  top: 16px;
}

/* ═══════════════════════════════════════════
   FORM CONSENT (GDPR)
═══════════════════════════════════════════ */
.form-consent {
  font-size: 12px;
  line-height: 1.6;
  color: var(--muted);
  margin: 14px 0 4px;
}

.form-consent a {
  color: var(--sky-l);
  font-weight: 600;
}

/* ═══════════════════════════════════════════
   FOOTER – identifikace firmy
═══════════════════════════════════════════ */
.foot-id {
  font-size: 12px;
  line-height: 1.7;
  color: rgba(255, 255, 255, .6);
  margin-top: 14px;
  max-width: 280px;
}

/* ═══════════════════════════════════════════
   LEGAL / TEXTOVÉ STRÁNKY
═══════════════════════════════════════════ */
.legal {
  padding: calc(var(--gap) + 70px) 0 var(--gap);
  position: relative;
  z-index: 1;
}

.legal .wrap {
  max-width: 820px;
}

.legal h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--text-main);
  margin-bottom: 10px;
}

.legal .legal-meta {
  font-size: 13px;
  color: var(--dim);
  margin-bottom: 40px;
}

.legal h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--sky);
  margin: 36px 0 12px;
  letter-spacing: -.01em;
}

.legal h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-main);
  margin: 22px 0 8px;
}

.legal p,
.legal li {
  font-size: .95rem;
  line-height: 1.85;
  color: rgba(30, 41, 59, .85);
}

.legal p {
  margin-bottom: 14px;
}

.legal ul {
  margin: 0 0 16px;
  padding-left: 22px;
}

.legal li {
  margin-bottom: 6px;
}

.legal a {
  color: var(--sky-l);
  font-weight: 600;
}

.legal .legal-todo {
  background: rgba(59, 130, 246, .08);
  border: 1px dashed rgba(59, 130, 246, .45);
  border-radius: 6px;
  padding: 1px 7px;
  font-weight: 700;
  color: var(--sky);
}

/* ═══════════════════════════════════════════
   CAD GRID (fixed full-screen)
═══════════════════════════════════════════ */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(13, 59, 102, .07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13, 59, 102, .07) 1px, transparent 1px),
    linear-gradient(rgba(13, 59, 102, .03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13, 59, 102, .03) 1px, transparent 1px);
  background-size: 80px 80px, 80px 80px, 20px 20px, 20px 20px;
}

/* ═══════════════════════════════════════════
   UTILITIES
═══════════════════════════════════════════ */
.wrap {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1
}

.glass {
  background: var(--glass);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--glass-b);
  border-radius: 24px;
}

.lbl {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--sky-l);
  margin-bottom: 14px;
}

.sec-h {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.03em;
  margin-bottom: 16px;
  color: var(--text-main);
}

.sec-p {
  font-size: .975rem;
  line-height: 1.8;
  color: var(--muted);
  max-width: 520px;
}

/* Scroll reveal */
[data-r] {
  opacity: 0;
  transform: translateY(44px);
  transition: opacity .85s cubic-bezier(.22, 1, .36, 1), transform .85s cubic-bezier(.22, 1, .36, 1)
}

[data-r="l"] {
  transform: translateX(-44px)
}

[data-r="r"] {
  transform: translateX(44px)
}

[data-r].on {
  opacity: 1;
  transform: none
}

[data-s]>* {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s cubic-bezier(.22, 1, .36, 1), transform .7s cubic-bezier(.22, 1, .36, 1)
}

[data-s].on>*:nth-child(1) {
  transition-delay: 0ms
}

[data-s].on>*:nth-child(2) {
  transition-delay: 90ms
}

[data-s].on>*:nth-child(3) {
  transition-delay: 180ms
}

[data-s].on>*:nth-child(4) {
  transition-delay: 270ms
}

[data-s].on>*:nth-child(5) {
  transition-delay: 360ms
}

[data-s].on>* {
  opacity: 1;
  transform: none
}

@media(prefers-reduced-motion:reduce) {

  [data-r],
  [data-s]>* {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important
  }
}

/* ═══════════════════════════════════════════
   HEADER
═══════════════════════════════════════════ */
.hdr {
  position: fixed;
  inset: 0 0 auto;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 40px;
  transition: background .35s, backdrop-filter .35s, border-color .35s, box-shadow .35s;
  border-bottom: 1px solid transparent;
}

.hdr.s {
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: rgba(13, 59, 102, .1);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, .08);
}

.brand {
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--text-main);
  letter-spacing: -.02em;
  text-decoration: none;
  display: block;
  line-height: 1;
}

.brand strong {
  font-weight: 800;
  color: var(--sky);
}

.hdr-nav {
  display: flex;
  align-items: center;
  gap: 30px
}

.hdr-nav a {
  font-size: 14px;
  font-weight: 600;
  color: rgba(30, 41, 59, .65);
  text-decoration: none;
  transition: color .2s;
  letter-spacing: .01em;
}

.hdr-nav a:hover {
  color: var(--text-main)
}

.hdr-nav .cta {
  padding: 9px 22px;
  background: rgba(13, 59, 102, .08);
  border: 1px solid rgba(13, 59, 102, .22);
  border-radius: 10px;
  color: var(--sky) !important;
  font-weight: 600;
  transition: all .25s;
}

.hdr-nav .cta:hover {
  background: rgba(13, 59, 102, .15);
  color: var(--sky-d) !important;
  border-color: rgba(13, 59, 102, .38)
}

.hdr-burger {
  display: none;
  background: none;
  border: 1px solid rgba(30, 41, 59, .2);
  border-radius: 8px;
  padding: 8px 11px;
  cursor: pointer;
  color: var(--text-main);
  font-size: 16px;
  transition: border-color .2s;
}

.hdr-burger:hover {
  border-color: rgba(30, 41, 59, .4)
}

@media(max-width:880px) {
  .hdr-nav {
    display: none
  }

  .hdr-burger {
    display: block
  }

  .hdr {
    padding: 14px 20px
  }
}

/* Mobile overlay nav */
.mob-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 950;
  background: rgba(13, 27, 60, .98);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  flex-direction: column;
  padding: 18px 26px calc(26px + env(safe-area-inset-bottom));
  overflow-y: auto;
}

.mob-nav.open {
  display: flex
}

.mob-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 30px;
  margin-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.mob-top .brand {
  color: rgba(255, 255, 255, .92);
  font-size: 1.35rem
}

.mob-top .brand strong {
  color: #fff
}

.mob-close {
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 10px;
  width: 42px;
  height: 42px;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, border-color .2s;
}

.mob-close:hover {
  background: rgba(255, 255, 255, .14);
  border-color: rgba(255, 255, 255, .3)
}

.mob-links {
  display: flex;
  flex-direction: column;
  padding-top: 18px
}

.mob-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 4px;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -.01em;
  color: rgba(255, 255, 255, .82);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
  transition: color .2s, padding-left .25s cubic-bezier(.22, 1, .36, 1);
}

.mob-links a i {
  font-size: 14px;
  color: rgba(59, 130, 246, .55);
  transition: transform .25s, color .2s
}

.mob-links a:hover,
.mob-links a:active {
  color: #fff;
  padding-left: 12px
}

.mob-links a:hover i {
  color: var(--sky-l);
  transform: translateX(4px)
}

.mob-foot {
  margin-top: auto;
  padding-top: 34px
}

.mob-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px;
  border-radius: 14px;
  background: var(--sky-l);
  color: #fff !important;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 10px 34px -10px rgba(59, 130, 246, .6);
  transition: transform .25s, box-shadow .25s;
}

.mob-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px -10px rgba(59, 130, 246, .7)
}

.mob-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px
}

.mob-contact a {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: rgba(255, 255, 255, .6);
  text-decoration: none;
  transition: color .2s;
}

.mob-contact a i {
  width: 16px;
  color: rgba(59, 130, 246, .7)
}

.mob-contact a:hover {
  color: #fff
}

.mob-soc {
  display: flex;
  gap: 12px;
  margin-top: 24px
}

.mob-soc a {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  border: 1px solid rgba(255, 255, 255, .14);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .6);
  font-size: 16px;
  text-decoration: none;
  transition: all .25s;
}

.mob-soc a:hover {
  border-color: rgba(59, 130, 246, .6);
  color: var(--sky-l);
  background: rgba(59, 130, 246, .1)
}

/* ═══════════════════════════════════════════
   HERO (hlavní stránka – bez vlastního pozadí)
═══════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-bottom: 240px;
}

/* Pulsing ambient glows */
.hero-g {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(70px)
}

.hero-g1 {
  width: min(90vw, 800px);
  height: min(90vw, 800px);
  top: -25%;
  left: -18%;
  background: radial-gradient(circle, rgba(59, 130, 246, .12) 0%, transparent 65%);
  animation: gf1 14s ease-in-out infinite;
}

.hero-g2 {
  width: min(70vw, 600px);
  height: min(70vw, 600px);
  bottom: -15%;
  right: -12%;
  background: radial-gradient(circle, rgba(13, 59, 102, .1) 0%, transparent 65%);
  animation: gf2 18s ease-in-out infinite;
}

.hero-g3 {
  width: 200px;
  height: 200px;
  top: 38%;
  right: 22%;
  background: radial-gradient(circle, rgba(59, 130, 246, .1) 0%, transparent 70%);
  animation: gf3 10s ease-in-out infinite;
}

@keyframes gf1 {

  0%,
  100% {
    transform: translate(0, 0)
  }

  40% {
    transform: translate(70px, 50px)
  }

  70% {
    transform: translate(-30px, 90px)
  }
}

@keyframes gf2 {

  0%,
  100% {
    transform: translate(0, 0)
  }

  35% {
    transform: translate(-55px, -35px)
  }

  65% {
    transform: translate(25px, -70px)
  }
}

@keyframes gf3 {

  0%,
  100% {
    transform: scale(1)
  }

  50% {
    transform: scale(1.4) translate(-20px, 15px)
  }
}

/* Engineering circuit overlay */
.hero-svg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden
}

.hero-svg svg {
  width: 100%;
  height: 100%;
  opacity: .07
}

.hero-cnt {
  position: relative;
  z-index: 2;
  max-width: 820px;
  padding: 0 24px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 36px;
  background: rgba(13, 59, 102, .07);
  border: 1px solid rgba(13, 59, 102, .18);
  font-size: 12px;
  font-weight: 600;
  color: var(--sky);
  letter-spacing: .1em;
  text-transform: uppercase;
  animation: fu .8s cubic-bezier(.22, 1, .36, 1) .1s both;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sky-l);
  animation: dot 2s ease-in-out infinite;
}

@keyframes dot {

  0%,
  100% {
    transform: scale(1);
    opacity: 1
  }

  50% {
    transform: scale(1.6);
    opacity: .4
  }
}

.hero-h1 {
  font-size: clamp(2rem, 5.5vw, 4rem);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -.04em;
  margin-bottom: 20px;
  color: var(--text-main);
  animation: fu .9s cubic-bezier(.22, 1, .36, 1) .28s both;
}

.hero-h1 em {
  font-style: normal;
  color: var(--sky-l)
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--muted);
  line-height: 1.8;
  max-width: 500px;
  margin: 0 auto 52px;
  animation: fu .9s cubic-bezier(.22, 1, .36, 1) .44s both;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 36px;
  border-radius: 50px;
  background: var(--sky);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: .02em;
  transition: all .3s;
  box-shadow: 0 0 40px rgba(13, 59, 102, .2);
  animation: fu .9s cubic-bezier(.22, 1, .36, 1) .58s both;
}

.hero-btn:hover {
  background: var(--sky-l);
  transform: translateY(-3px);
  box-shadow: 0 10px 50px rgba(59, 130, 246, .35);
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--dim);
  text-decoration: none;
  animation: fu 1s ease 1.1s both;
  transition: color .25s, transform .25s;
}

.hero-scroll:hover {
  color: var(--sky)
}

.hero-scroll span {
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase
}

.hero-scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, rgba(13, 59, 102, .45), transparent);
  animation: sl 2.2s ease-in-out infinite;
}

@keyframes sl {
  0% {
    transform: scaleY(0);
    transform-origin: top;
    opacity: 1
  }

  55% {
    transform: scaleY(1);
    transform-origin: top
  }

  56% {
    transform-origin: bottom
  }

  100% {
    transform: scaleY(0);
    transform-origin: bottom;
    opacity: 0
  }
}

@keyframes fu {
  from {
    opacity: 0;
    transform: translateY(28px)
  }

  to {
    opacity: 1;
    transform: none
  }
}

/* ═══════════════════════════════════════════
   HERO ARC – 5 CSS 3D budov v karuselu
═══════════════════════════════════════════ */
.hero-arc {
  position: absolute;
  bottom: 56px;
  left: 0;
  right: 0;
  height: 310px;
  pointer-events: none;
  z-index: 2;
  animation: fu .9s cubic-bezier(.22, 1, .36, 1) .85s both;
}

.arc-slot {
  position: absolute;
  transform: translateX(-50%);
  pointer-events: auto;
  cursor: pointer;
}

.arc-slot--0 {
  left: calc(50% - 262px);
  bottom: 12px;
  z-index: 1;
  --sw: .64;
  --so: .52
}

.arc-slot--1 {
  left: calc(50% - 130px);
  bottom: 58px;
  z-index: 3;
  --sw: .81;
  --so: .74
}

.arc-slot--2 {
  left: 50%;
  bottom: 2px;
  z-index: 5;
  --sw: 1.06;
  --so: 1
}

.arc-slot--3 {
  left: calc(50% + 130px);
  bottom: 58px;
  z-index: 3;
  --sw: .81;
  --so: .74
}

.arc-slot--4 {
  left: calc(50% + 262px);
  bottom: 12px;
  z-index: 1;
  --sw: .64;
  --so: .52
}

.bld-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  transform-origin: center bottom;
  transform: scale(var(--sw, 1));
  opacity: var(--so, 1);
  transition: transform .45s cubic-bezier(.22, 1, .36, 1), opacity .45s;
}

.arc-slot:hover .bld-wrap {
  transform: scale(calc(var(--sw, 1) + .08)) translateY(-8px);
  opacity: calc(var(--so, 1) + .08)
}

.arc-label {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 9px;
  font-size: 11px;
  font-weight: 700;
  color: var(--sky);
  letter-spacing: .04em;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: .85;
}

.arc-label i {
  font-size: 10px
}

.arc-slot.arc-active .arc-label {
  color: var(--sky-l);
  font-size: 12px;
  opacity: 1
}

.arc-slot .arc-ico {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: var(--sky-l);
  box-shadow: 0 16px 36px -14px rgba(13, 59, 102, .42), inset 0 1px 0 rgba(255, 255, 255, .6);
  animation: float 5.5s ease-in-out infinite;
  transition: color .35s, box-shadow .35s, transform .35s;
}

.arc-slot:hover .arc-ico {
  color: var(--sky);
  box-shadow: 0 22px 46px -14px rgba(13, 59, 102, .5), inset 0 1px 0 rgba(255, 255, 255, .72);
}

.arc-slot.arc-active .arc-ico {
  color: var(--sky-l)
}

.arc-slot--0 .arc-ico {
  animation-delay: -.4s
}

.arc-slot--1 .arc-ico {
  animation-delay: -1.6s
}

.arc-slot--2 .arc-ico {
  animation-delay: -2.6s
}

.arc-slot--3 .arc-ico {
  animation-delay: -3.4s
}

.arc-slot--4 .arc-ico {
  animation-delay: -4.6s
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-10px)
  }
}

@media(max-width:1080px) {
  .hero-arc {
    display: none
  }

  .hero {
    padding-bottom: 0
  }

  .hero-scroll {
    display: flex
  }
}

/* ═══════════════════════════════════════════
   REVIT SECTION
═══════════════════════════════════════════ */
.revit {
  padding: var(--gap) 0;
  position: relative;
  z-index: 1
}

.revit-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  overflow: hidden;
}

.revit-txt {
  padding: 60px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}

.revit-txt .sec-h {
  margin-bottom: 18px
}

.revit-txt p {
  font-size: .95rem;
  line-height: 1.85;
  color: var(--muted);
  margin-bottom: 28px
}

.revit-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px
}

.rtag {
  padding: 5px 14px;
  border-radius: 50px;
  background: rgba(13, 59, 102, .07);
  border: 1px solid rgba(13, 59, 102, .18);
  font-size: 12px;
  font-weight: 600;
  color: var(--sky);
}

/* 3D viewer */
.revit-vis {
  position: relative;
  background: rgba(13, 59, 102, .04);
  border-left: 1px solid var(--glass-b);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 380px;
  overflow: hidden;
}

.revit-vis::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(13, 59, 102, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13, 59, 102, .05) 1px, transparent 1px);
  background-size: 24px 24px;
}

.rv-c {
  position: absolute;
  width: 18px;
  height: 18px;
  border-color: var(--sky);
  border-style: solid;
  border-width: 0
}

.rv-c.tl {
  top: 14px;
  left: 14px;
  border-top-width: 2px;
  border-left-width: 2px
}

.rv-c.tr {
  top: 14px;
  right: 14px;
  border-top-width: 2px;
  border-right-width: 2px
}

.rv-c.bl {
  bottom: 14px;
  left: 14px;
  border-bottom-width: 2px;
  border-left-width: 2px
}

.rv-c.br {
  bottom: 14px;
  right: 14px;
  border-bottom-width: 2px;
  border-right-width: 2px
}

.rv-scan {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  z-index: 10;
  background: linear-gradient(to right, transparent, rgba(13, 59, 102, .7), transparent);
  animation: scan 3.5s ease-in-out infinite;
}

@keyframes scan {
  0% {
    top: 0;
    opacity: 0
  }

  8% {
    opacity: 1
  }

  92% {
    opacity: 1
  }

  100% {
    top: 100%;
    opacity: 0
  }
}

.rv-label {
  position: absolute;
  bottom: 14px;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(13, 59, 102, .45);
}

/* CSS 3D Building */
.bld-scene {
  width: 180px;
  height: 240px;
  perspective: 900px;
  position: relative;
  z-index: 1;
}

.bld {
  width: 120px;
  height: 180px;
  position: absolute;
  left: 30px;
  top: 30px;
  transform-style: preserve-3d;
  animation: brot 16s ease-in-out infinite;
}

@keyframes brot {
  0% {
    transform: rotateX(-18deg) rotateY(-25deg)
  }

  25% {
    transform: rotateX(-18deg) rotateY(35deg)
  }

  50% {
    transform: rotateX(-18deg) rotateY(55deg)
  }

  75% {
    transform: rotateX(-18deg) rotateY(25deg)
  }

  100% {
    transform: rotateX(-18deg) rotateY(-25deg)
  }
}

.bf {
  position: absolute;
  border: 1.5px solid rgba(13, 59, 102, .55)
}

.bf::after {
  content: '';
  position: absolute;
  inset: 6px;
  background-image:
    linear-gradient(rgba(13, 59, 102, .25) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13, 59, 102, .25) 1px, transparent 1px);
  background-size: 24px 36px;
}

.b-fr {
  width: 120px;
  height: 180px;
  background: rgba(13, 59, 102, .03);
  transform: translateZ(60px)
}

.b-bk {
  width: 120px;
  height: 180px;
  background: rgba(13, 59, 102, .03);
  transform: rotateY(180deg) translateZ(60px)
}

.b-lt {
  width: 120px;
  height: 180px;
  background: rgba(13, 59, 102, .06);
  transform: rotateY(-90deg) translateZ(0px)
}

.b-rt {
  width: 120px;
  height: 180px;
  background: rgba(13, 59, 102, .06);
  transform: rotateY(90deg) translateZ(0px)
}

.b-tp {
  width: 120px;
  height: 120px;
  background: rgba(13, 59, 102, .1);
  transform: rotateX(90deg) translateZ(0px);
  top: 0
}

.b-bt {
  width: 120px;
  height: 120px;
  background: rgba(13, 59, 102, .02);
  transform: rotateX(-90deg) translateZ(-180px);
  top: 0
}

.bld-roof {
  width: 80px;
  height: 60px;
  position: absolute;
  left: 50px;
  top: 0;
  transform-style: preserve-3d;
  animation: brot 16s ease-in-out infinite;
}

.bld-roof .bf {
  border-color: rgba(13, 59, 102, .35)
}

.bld-roof .bf::after {
  background-size: 16px 16px;
  opacity: .5
}

.r-fr {
  width: 80px;
  height: 60px;
  background: rgba(13, 59, 102, .04);
  transform: translateZ(40px)
}

.r-bk {
  width: 80px;
  height: 60px;
  background: rgba(13, 59, 102, .04);
  transform: rotateY(180deg) translateZ(40px)
}

.r-lt {
  width: 80px;
  height: 60px;
  background: rgba(13, 59, 102, .07);
  transform: rotateY(-90deg) translateZ(0)
}

.r-rt {
  width: 80px;
  height: 60px;
  background: rgba(13, 59, 102, .07);
  transform: rotateY(90deg) translateZ(0)
}

.r-tp {
  width: 80px;
  height: 80px;
  background: rgba(13, 59, 102, .1);
  transform: rotateX(90deg) translateZ(0);
  top: 0
}

@media(max-width:800px) {
  .revit-card {
    grid-template-columns: 1fr
  }

  .revit-txt {
    padding: 40px 28px
  }

  .revit-vis {
    min-height: 280px;
    border-left: none;
    border-top: 1px solid var(--glass-b)
  }
}

/* ═══════════════════════════════════════════
   PROFESE
═══════════════════════════════════════════ */
.profese {
  padding: var(--gap) 0;
  position: relative;
  z-index: 1;
  overflow: hidden
}

/* Pulsing ambient glows – stejný nádech jako hero */
.profese::before,
.profese::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(70px);
  z-index: 0;
}

.profese::before {
  width: min(70vw, 620px);
  height: min(70vw, 620px);
  top: -22%;
  left: -16%;
  background: radial-gradient(circle, rgba(59, 130, 246, .1) 0%, transparent 65%);
  animation: gf1 16s ease-in-out infinite;
}

.profese::after {
  width: min(60vw, 520px);
  height: min(60vw, 520px);
  bottom: -24%;
  right: -12%;
  background: radial-gradient(circle, rgba(13, 59, 102, .09) 0%, transparent 65%);
  animation: gf2 20s ease-in-out infinite;
}

.profese .wrap {
  position: relative;
  z-index: 1
}

.profese-hdr {
  margin-bottom: 56px
}

.profese-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

@media(max-width:1000px) {
  .profese-grid {
    grid-template-columns: repeat(3, 1fr)
  }

  .profese-grid>.pc:nth-child(4) {
    grid-column: 1/span 1
  }

  .profese-grid>.pc:nth-child(5) {
    grid-column: 2/span 1
  }
}

@media(max-width:600px) {
  .profese-grid {
    grid-template-columns: 1fr
  }

  .profese-grid>.pc:nth-child(5) {
    grid-column: 1/-1;
    margin: 0 auto
  }
}

.pc {
  min-height: 200px;
  padding: 38px 20px 30px;
  border-radius: 22px;
  background: rgba(255, 255, 255, .6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  cursor: default;
  box-shadow: 0 20px 52px rgba(13, 59, 102, .14);
  border-color: rgba(59, 130, 246, .32);
  transition: transform .35s cubic-bezier(.22, 1, .36, 1),
    box-shadow .35s cubic-bezier(.22, 1, .36, 1),
    border-color .35s ease;
}

@media(min-width:768px) {
  .pc:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 52px rgba(13, 59, 102, .14);
    border-color: rgba(59, 130, 246, .32);
  }
}

/* Plovoucí prosvětlené kruhové ikony – jako hero arc-ico */
.pc-ico {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .72);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: var(--sky-l);
  box-shadow: 0 16px 36px -14px rgba(13, 59, 102, .42), inset 0 1px 0 rgba(255, 255, 255, .6);
  animation: float 5.5s ease-in-out infinite;
  transition: color .35s, box-shadow .35s, transform .35s;
}

.profese-grid>.pc:nth-child(1) .pc-ico {
  animation-delay: -.4s
}

.profese-grid>.pc:nth-child(2) .pc-ico {
  animation-delay: -1.6s
}

.profese-grid>.pc:nth-child(3) .pc-ico {
  animation-delay: -2.6s
}

.profese-grid>.pc:nth-child(4) .pc-ico {
  animation-delay: -3.4s
}

.profese-grid>.pc:nth-child(5) .pc-ico {
  animation-delay: -4.6s
}

.pc:hover .pc-ico {
  color: var(--sky);
  box-shadow: 0 22px 46px -14px rgba(13, 59, 102, .5), inset 0 1px 0 rgba(255, 255, 255, .72);
}

.pc h3 {
  font-size: 13px;
  font-weight: 700;
  color: var(--sky);
  letter-spacing: .05em;
  text-transform: uppercase
}

.pc p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6
}

.profese-more {
  text-align: center;
  margin-top: 48px
}

.profese-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 32px;
  border-radius: 50px;
  background: rgba(255, 255, 255, .6);
  border: 1px solid rgba(13, 59, 102, .16);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-size: 14px;
  font-weight: 700;
  color: var(--sky);
  text-decoration: none;
  letter-spacing: .02em;
  box-shadow: 0 8px 30px -12px rgba(13, 59, 102, .3);
  transition: all .3s cubic-bezier(.22, 1, .36, 1);
}

.profese-more-btn i {
  font-size: 12px;
  transition: transform .3s
}

.profese-more-btn:hover {
  background: var(--sky);
  color: #fff;
  border-color: var(--sky);
  transform: translateY(-3px);
  box-shadow: 0 14px 44px -12px rgba(59, 130, 246, .45);
}

.profese-more-btn:hover i {
  transform: translateX(4px)
}

/* ═══════════════════════════════════════════
   REFERENCE
═══════════════════════════════════════════ */
.ref {
  padding: var(--gap) 0;
  position: relative;
  z-index: 1
}

.ref-hdr {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 36px;
  gap: 16px;
}

.ref-all {
  padding: 9px 22px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: var(--sky);
  text-decoration: none;
  border: 1px solid rgba(13, 59, 102, .22);
  transition: all .25s;
  white-space: nowrap;
}

.ref-all:hover {
  background: rgba(13, 59, 102, .07);
  border-color: rgba(13, 59, 102, .38)
}

.ref-grid {
  column-count: 3;
  column-gap: 16px;
}

@media(max-width:640px) {
  .ref-grid {
    column-count: 2
  }
}

.ri-skel {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, #E2E8F0 25%, #F1F7FD 50%, #E2E8F0 75%);
  background-size: 200% 100%;
  animation: skel-pulse 1.5s ease-in-out infinite;
}

@keyframes skel-pulse {
  0% {
    background-position: 200% 0
  }

  100% {
    background-position: -200% 0
  }
}

.ri {
  break-inside: avoid;
  width: 100%;
  margin-bottom: 16px;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  border: 1px solid rgba(13, 59, 102, .08);
}

.ri img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform .55s ease;
  position: relative;
  z-index: 2;
}

.ri:hover img {
  transform: scale(1.08)
}

.ri-ov {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: linear-gradient(to top, rgba(13, 27, 60, .72) 0%, rgba(13, 27, 60, 0) 50%);
  transition: background .35s;
  display: flex;
  align-items: flex-end;
  padding: 18px;
}

.ri:hover .ri-ov {
  background: linear-gradient(to top, rgba(13, 27, 60, .9) 0%, rgba(13, 27, 60, .05) 70%)
}

.ri-ov span {
  font-size: 13.5px;
  font-weight: 600;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
  transform: translateY(2px);
  transition: transform .35s;
}

.ri-ov span::before {
  content: '';
  width: 16px;
  height: 2px;
  border-radius: 2px;
  background: var(--sky-l);
  flex-shrink: 0;
  transition: width .35s cubic-bezier(.22, 1, .36, 1);
}

.ri:hover .ri-ov span {
  transform: none
}

.ri:hover .ri-ov span::before {
  width: 26px
}

/* ═══════════════════════════════════════════
   NÁBOR
═══════════════════════════════════════════ */
.nabor {
  padding: var(--gap) 0;
  position: relative;
  z-index: 1
}

.nabor-in {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  overflow: hidden;
}

.nabor-txt {
  padding: 60px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}

.nabor-txt .sec-h {
  margin-bottom: 0
}

.nabor-txt p {
  font-size: .95rem;
  line-height: 1.8;
  color: var(--muted)
}

.nabor-perks {
  display: flex;
  flex-direction: column;
  gap: 10px
}

.np {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(30, 41, 59, .72);
}

.np i {
  color: var(--sky-l);
  width: 16px;
  flex-shrink: 0
}

.nabor-form {
  padding: 60px 56px;
  border-left: 1px solid var(--glass-b);
  background: rgba(248, 250, 252, .5);
}

@media(max-width:800px) {
  .nabor-in {
    grid-template-columns: 1fr
  }

  .nabor-txt {
    padding: 40px 28px;
    gap: 18px
  }

  .nabor-form {
    padding: 32px 28px;
    border-left: none;
    border-top: 1px solid var(--glass-b)
  }
}

/* ═══════════════════════════════════════════
   KONTAKT
═══════════════════════════════════════════ */
.kontakt {
  padding: var(--gap) 0;
  position: relative;
  z-index: 1
}

.kontakt-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 56px;
  align-items: start;
  margin-top: 48px;
}

@media(max-width:768px) {
  .kontakt-grid {
    grid-template-columns: 1fr;
    gap: 36px
  }
}

.ki-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 8px
}

.ki {
  display: flex;
  align-items: flex-start;
  gap: 16px
}

.ki-ico {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  border-radius: 12px;
  background: rgba(13, 59, 102, .07);
  border: 1px solid rgba(13, 59, 102, .14);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  color: var(--sky);
  transition: all .3s;
}

.ki:hover .ki-ico {
  background: rgba(59, 130, 246, .1);
  box-shadow: 0 0 16px rgba(59, 130, 246, .18)
}

.ki-tx small {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--dim);
  display: block;
  margin-bottom: 3px;
}

.ki-tx a,
.ki-tx span {
  font-size: 15px;
  font-weight: 600;
  color: rgba(30, 41, 59, .82);
  text-decoration: none;
  transition: color .2s;
}

.ki-tx a:hover {
  color: var(--sky-l)
}

/* ═══════════════════════════════════════════
   FORMS
═══════════════════════════════════════════ */
.fg {
  margin-bottom: 16px
}

.fg label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(30, 41, 59, .72);
  margin-bottom: 7px;
}

.fc {
  width: 100%;
  background: rgba(255, 255, 255, .9);
  border: 1px solid rgba(13, 59, 102, .18);
  padding: 12px 16px;
  border-radius: 12px;
  color: var(--text-main);
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: all .25s;
}

.fc:focus {
  border-color: #3B82F6;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, .1);
}

.fc::placeholder {
  color: rgba(30, 41, 59, .32)
}

textarea.fc {
  resize: vertical;
  min-height: 116px
}

select.fc {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%230D3B66' stroke-width='2' stroke-linecap='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}

select.fc option {
  background: #fff;
  color: var(--text-main)
}

.btn-s {
  width: 100%;
  padding: 13px;
  margin-top: 8px;
  background: var(--sky);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  letter-spacing: .025em;
  transition: all .3s;
}

.btn-s:hover {
  background: var(--sky-l);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(59, 130, 246, .35);
}

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
footer {
  background: #0D3B66;
  border-top: none;
  position: relative;
  z-index: 1;
  padding: 64px 0 0;
}

.foot-main {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 52px;
}

@media(max-width:768px) {
  .foot-main {
    grid-template-columns: 1fr;
    gap: 32px
  }
}

.foot-brand p {
  font-size: 14px;
  color: rgba(255, 255, 255, .7);
  line-height: 1.75;
  max-width: 260px
}

.foot-brand .brand {
  color: rgba(255, 255, 255, .9);
  margin-bottom: 14px;
  display: block
}

.foot-brand .brand strong {
  color: #fff
}

.foot-soc {
  display: flex;
  gap: 10px;
  margin-top: 22px
}

.foot-soc a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, .15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .5);
  font-size: 15px;
  text-decoration: none;
  transition: all .25s;
}

.foot-soc a:hover {
  border-color: rgba(59, 130, 246, .6);
  color: var(--sky-l);
  background: rgba(59, 130, 246, .1)
}

.foot-col h4 {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: rgba(255, 255, 255, .62);
  margin-bottom: 18px;
}

.foot-col a {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, .66);
  text-decoration: none;
  margin-bottom: 10px;
  transition: color .2s;
}

.foot-col a:hover {
  color: #fff
}

.foot-bt {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.foot-bt p,
.foot-lg a {
  font-size: 13px;
  color: rgba(255, 255, 255, .6)
}

.foot-lg {
  display: flex;
  gap: 20px
}

.foot-lg a {
  text-decoration: none;
  transition: color .2s
}

.foot-lg a:hover {
  color: rgba(255, 255, 255, .75)
}

/* ═══════════════════════════════════════════
   TOAST
═══════════════════════════════════════════ */
.toast {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  padding: 14px 20px;
  border-radius: 14px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  max-width: 360px;
  opacity: 0;
  transform: translateY(16px);
  transition: all .4s cubic-bezier(.22, 1, .36, 1);
  pointer-events: none;
}

.toast.show {
  opacity: 1;
  transform: none;
  pointer-events: auto
}

.toast.ok {
  background: rgba(240, 253, 244, .97);
  border: 1px solid rgba(34, 197, 94, .4);
  color: #166534;
}

.toast.err {
  background: rgba(255, 241, 242, .97);
  border: 1px solid rgba(239, 68, 68, .4);
  color: #991b1b;
}

/* ═══════════════════════════════════════════
   DIVIDER
═══════════════════════════════════════════ */
.divider {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(13, 59, 102, .15), transparent);
  margin: 0 auto;
  max-width: 800px;
  position: relative;
  z-index: 1;
}

/* ═══════════════════════════════════════════
   DARK PAGE HERO (podstránky – nový styl)
═══════════════════════════════════════════ */
.dph {
  background: var(--navy);
  padding-top: calc(var(--gap) + 86px);
  padding-bottom: 72px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.dph::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
  background-size: 80px 80px;
}

.dph::after {
  content: '';
  position: absolute;
  pointer-events: none;
  z-index: 1;
  top: -35%;
  right: -8%;
  width: min(62vw, 660px);
  height: min(62vw, 660px);
  background: radial-gradient(circle, rgba(59, 130, 246, .2) 0%, transparent 62%);
  filter: blur(40px);
}

.dph-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 56px;
  align-items: center;
}

@media(max-width:900px) {
  .dph-inner {
    grid-template-columns: 1fr
  }

  .dph-photo {
    display: none
  }
}

.dph-photo {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .1);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .45);
  aspect-ratio: 3/4;
}

.dph-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}

.dph .brd {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255, 255, 255, .32);
  margin-bottom: 22px;
}

.dph .brd a {
  color: rgba(59, 130, 246, .7);
  text-decoration: none
}

.dph .brd a:hover {
  color: var(--sky-l);
  text-decoration: underline
}

.dph .brd i {
  font-size: 8px
}

.dph .lbl {
  color: rgba(59, 130, 246, .85)
}

.dph h1 {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 800;
  letter-spacing: -.04em;
  color: #fff;
  line-height: 1.0;
  margin-bottom: 22px;
}

.dph h1 em {
  font-style: normal;
  color: var(--sky-l)
}

.dph .sub {
  font-size: clamp(.95rem, 1.5vw, 1.08rem);
  color: rgba(255, 255, 255, .68);
  line-height: 1.8;
  max-width: 540px;
}

/* ═══════════════════════════════════════════
   STAT STRIP
═══════════════════════════════════════════ */
.stat-strip {
  background: var(--sky-d);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, .07);
  border-bottom: 1px solid rgba(255, 255, 255, .07);
  position: relative;
  z-index: 1;
}

.stat {
  padding: 38px 28px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, .07);
}

.stat:last-child {
  border-right: none
}

.stat strong {
  display: block;
  font-size: 2.6rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -.04em;
  line-height: 1;
}

.stat em {
  font-style: normal;
  color: var(--sky-l);
  font-size: 2rem
}

.stat span {
  font-size: 12px;
  color: rgba(255, 255, 255, .66);
  display: block;
  margin-top: 7px;
  letter-spacing: .03em
}

@media(max-width:680px) {
  .stat-strip {
    grid-template-columns: repeat(2, 1fr)
  }

  .stat:nth-child(2) {
    border-right: none
  }
}

/* ═══════════════════════════════════════════
   DARK SECTION
═══════════════════════════════════════════ */
.sec-dark {
  background: var(--navy);
  padding: var(--gap) 0;
  position: relative;
  z-index: 1;
}

.sec-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
  background-size: 80px 80px;
}

.sec-dark .sec-h {
  color: #fff
}

.sec-dark .lbl {
  color: rgba(59, 130, 246, .9)
}

.sec-dark .sec-p {
  color: rgba(255, 255, 255, .52)
}

/* ═══════════════════════════════════════════
   LIGHT SECTION (obecná sekce na podstránkách)
═══════════════════════════════════════════ */
.page-sec {
  padding: var(--gap) 0;
  position: relative;
  z-index: 1
}

/* ═══════════════════════════════════════════
   PROFESE EXPLORER (podstránka – světlý, interaktivní)
═══════════════════════════════════════════ */
.pe-sec {
  padding: var(--gap) 0;
  position: relative;
  z-index: 1;
  overflow: hidden
}

/* Pulsing ambient glows – stejný nádech jako hero */
.pe-sec::before,
.pe-sec::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(70px);
  z-index: 0;
}

.pe-sec::before {
  width: min(75vw, 680px);
  height: min(75vw, 680px);
  top: -18%;
  left: -16%;
  background: radial-gradient(circle, rgba(59, 130, 246, .1) 0%, transparent 65%);
  animation: gf1 16s ease-in-out infinite;
}

.pe-sec::after {
  width: min(60vw, 520px);
  height: min(60vw, 520px);
  bottom: -22%;
  right: -12%;
  background: radial-gradient(circle, rgba(13, 59, 102, .09) 0%, transparent 65%);
  animation: gf2 20s ease-in-out infinite;
}

.pe-sec .wrap {
  position: relative;
  z-index: 1
}

.pe-intro {
  text-align: center;
  margin-bottom: 52px
}

.pe-intro .sec-p {
  margin: 0 auto
}

/* Tab navigation */
.pe-nav {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-bottom: 24px;
}

.pe-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid rgba(13, 59, 102, .12);
  background: rgba(255, 255, 255, .82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor: pointer;
  text-align: left;
  font-family: 'Inter', sans-serif;
  transition: all .28s cubic-bezier(.22, 1, .36, 1);
}

.pe-btn:hover:not(.active) {
  border-color: rgba(59, 130, 246, .3);
  background: #fff;
  box-shadow: 0 6px 24px rgba(13, 59, 102, .09);
  transform: translateY(-3px);
}

.pe-btn.active {
  background: var(--navy);
  border-color: var(--navy);
  box-shadow: 0 10px 36px rgba(13, 59, 102, .22);
}

.pe-btn-ico {
  width: 44px;
  height: 44px;
  border-radius: 13px;
  flex-shrink: 0;
  background: rgba(13, 59, 102, .07);
  border: 1px solid rgba(13, 59, 102, .14);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--sky);
  transition: background .28s, border-color .28s, color .28s;
}

.pe-btn.active .pe-btn-ico {
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .18);
  color: #fff;
}

.pe-btn-txt {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  overflow: hidden
}

.pe-btn-txt strong {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-main);
  transition: color .28s;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}

.pe-btn.active .pe-btn-txt strong {
  color: #fff
}

.pe-btn-txt em {
  font-size: 11px;
  color: var(--muted);
  font-style: normal;
  transition: color .28s;
  white-space: nowrap;
}

.pe-btn.active .pe-btn-txt em {
  color: rgba(255, 255, 255, .5)
}

/* Content panels */
.pe-panels {
  position: relative
}

.pe-panel {
  display: none;
  grid-template-columns: 1fr 1fr;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(13, 59, 102, .08);
  background: #fff;
  box-shadow: 0 20px 70px rgba(13, 59, 102, .1);
  animation: pe-in .4s cubic-bezier(.22, 1, .36, 1) both;
}

.pe-panel.active {
  display: grid
}

@keyframes pe-in {
  from {
    opacity: 0;
    transform: translateY(14px)
  }

  to {
    opacity: 1;
    transform: none
  }
}

.pe-panel-img {
  position: relative;
  min-height: 460px;
  overflow: hidden
}

.pe-panel-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  animation: pe-zoom .9s cubic-bezier(.22, 1, .36, 1) both;
}

@keyframes pe-zoom {
  from {
    transform: scale(1.07)
  }

  to {
    transform: scale(1)
  }
}

.pe-panel-body {
  padding: 52px 44px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
}

.pe-panel-ico {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .72);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--sky-l);
  box-shadow: 0 16px 36px -14px rgba(13, 59, 102, .42), inset 0 1px 0 rgba(255, 255, 255, .6);
  animation: float 5.5s ease-in-out infinite;
}

.pe-panel-body h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.65rem);
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--text-main);
  line-height: 1.1;
}

.pe-panel-body p {
  font-size: .92rem;
  line-height: 1.8;
  color: var(--muted)
}

.pe-panel-body ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0;
  margin: 0
}

.pe-panel-body li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: rgba(30, 41, 59, .72);
}

.pe-panel-body li i {
  color: var(--sky-l);
  font-size: 10px;
  flex-shrink: 0;
  margin-top: 4px
}

.pe-ref-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  align-self: flex-start;
  margin-top: 8px;
  padding: 11px 22px;
  border-radius: 50px;
  background: rgba(13, 59, 102, .05);
  border: 1px solid rgba(13, 59, 102, .14);
  font-size: 13px;
  font-weight: 600;
  color: var(--sky);
  text-decoration: none;
  transition: all .28s cubic-bezier(.22, 1, .36, 1);
}

.pe-ref-link i {
  font-size: 11px;
  transition: transform .28s
}

.pe-ref-link:hover {
  background: var(--sky);
  color: #fff;
  border-color: var(--sky);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px -12px rgba(59, 130, 246, .5);
}

.pe-ref-link:hover i {
  transform: translateX(4px)
}

@media(max-width:1060px) {
  .pe-nav {
    grid-template-columns: repeat(3, 1fr)
  }
}

@media(max-width:760px) {
  .pe-nav {
    grid-template-columns: 1fr 1fr
  }

  .pe-panel {
    grid-template-columns: 1fr
  }

  .pe-panel-img {
    min-height: 220px
  }

  .pe-panel-body {
    padding: 32px 24px
  }
}

@media(max-width:400px) {
  .pe-nav {
    grid-template-columns: 1fr
  }
}

/* ═══════════════════════════════════════════
   REFERENCE FULL GRID
═══════════════════════════════════════════ */
.rf-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 36px;
}

.rf-chip {
  padding: 9px 20px;
  border-radius: 50px;
  background: rgba(255, 255, 255, .6);
  border: 1px solid rgba(13, 59, 102, .14);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--sky);
  cursor: pointer;
  transition: all .25s cubic-bezier(.22, 1, .36, 1);
}

.rf-chip:hover {
  border-color: rgba(59, 130, 246, .32);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px -10px rgba(13, 59, 102, .3);
}

.rf-chip.active {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
  box-shadow: 0 10px 30px -10px rgba(13, 59, 102, .4);
}

.rfg {
  column-count: 3;
  column-gap: 18px;
  margin-top: 32px;
}

.rfg-item.rf-hide {
  display: none
}

@media(max-width:900px) {
  .rfg {
    column-count: 2
  }
}

@media(max-width:560px) {
  .rfg {
    column-count: 1
  }
}

.rfg-item {
  break-inside: avoid;
  width: 100%;
  margin-bottom: 18px;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(13, 59, 102, .08);
  cursor: pointer;
}

.rfg-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform .55s ease;
}

.rfg-item:hover img {
  transform: scale(1.07)
}

.rfg-ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 27, 60, .74) 0%, rgba(13, 27, 60, 0) 52%);
  transition: background .35s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px 20px;
}

.rfg-item:hover .rfg-ov {
  background: linear-gradient(to top, rgba(13, 27, 60, .92) 0%, rgba(13, 27, 60, .1) 72%)
}

.rfg-ov h3 {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  transform: translateY(7px);
  transition: transform .35s;
}

.rfg-item:hover .rfg-ov h3 {
  transform: none
}

.rfg-ov span {
  font-size: 12px;
  color: rgba(255, 255, 255, .72);
  margin-top: 4px;
  opacity: 0;
  max-height: 0;
  transform: translateY(7px);
  overflow: hidden;
  transition: opacity .35s, transform .35s, max-height .35s;
}

.rfg-item:hover .rfg-ov span {
  opacity: 1;
  max-height: 40px;
  transform: none
}

.rfg-item .ri-skel {
  border-radius: 0
}

/* ═══════════════════════════════════════════
   JOB LIST (dark varianta)
═══════════════════════════════════════════ */
.job-dark {
  padding: 28px 32px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  transition: background .3s, border-color .3s;
}

.job-dark:hover {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(59, 130, 246, .28)
}

.job-dark .job-info h3 {
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 6px
}

.job-dark .job-info p {
  font-size: 13px;
  color: rgba(255, 255, 255, .66)
}

.job-dark .job-tags {
  display: flex;
  gap: 6px;
  margin-top: 10px;
  flex-wrap: wrap
}

.job-dark .job-tag {
  padding: 3px 10px;
  border-radius: 50px;
  background: rgba(59, 130, 246, .12);
  border: 1px solid rgba(59, 130, 246, .2);
  font-size: 11px;
  font-weight: 600;
  color: rgba(59, 130, 246, .9);
}

.job-dark .job-btn {
  padding: 10px 22px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .15);
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, .8);
  text-decoration: none;
  white-space: nowrap;
  transition: all .25s;
}

.job-dark .job-btn:hover {
  background: var(--sky-l);
  color: #fff;
  border-color: var(--sky-l)
}

@media(max-width:640px) {
  .job-dark {
    flex-direction: column;
    align-items: flex-start
  }

  .job-dark .job-btn {
    width: 100%;
    text-align: center
  }
}

/* ═══════════════════════════════════════════
   PERKS GRID (kariéra)
═══════════════════════════════════════════ */
.perk-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 52px;
}

@media(max-width:800px) {
  .perk-grid {
    grid-template-columns: 1fr 1fr
  }
}

@media(max-width:500px) {
  .perk-grid {
    grid-template-columns: 1fr
  }
}

.perk {
  padding: 30px 26px;
  border-radius: 20px;
  background: rgba(255, 255, 255, .82);
  border: 1px solid rgba(13, 59, 102, .1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform .3s, box-shadow .3s;
}

.perk:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 40px rgba(13, 59, 102, .11)
}

.perk-ico {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: rgba(13, 59, 102, .07);
  border: 1px solid rgba(13, 59, 102, .14);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--sky);
}

.perk h3 {
  font-size: .95rem;
  font-weight: 700;
  color: var(--text-main)
}

.perk p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65
}

/* ═══════════════════════════════════════════
   CTA SECTION
═══════════════════════════════════════════ */
.cta-sec {
  padding: var(--gap) 0;
  position: relative;
  z-index: 1
}

.cta-box {
  padding: 64px 48px;
  border-radius: 28px;
  text-align: center
}

.cta-box h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--text-main);
  margin-bottom: 16px;
}

.cta-box p {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.8;
  max-width: 480px;
  margin: 0 auto 36px;
}

.cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap
}

.cta-btn-p {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 50px;
  background: var(--sky);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: all .3s;
  box-shadow: 0 0 40px rgba(13, 59, 102, .2);
}

.cta-btn-p:hover {
  background: var(--sky-l);
  transform: translateY(-3px);
  box-shadow: 0 10px 50px rgba(59, 130, 246, .35)
}

.cta-btn-s {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 50px;
  border: 1px solid rgba(13, 59, 102, .22);
  color: var(--sky);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all .3s;
}

.cta-btn-s:hover {
  background: rgba(13, 59, 102, .06);
  border-color: rgba(13, 59, 102, .38)
}

/* ═══════════════════════════════════════════
   PAGE BANNER – starý styl (zachován pro zpětnou kompatibilitu)
═══════════════════════════════════════════ */
.page-banner {
  padding-top: calc(var(--gap) + 90px);
  padding-bottom: var(--gap);
  position: relative;
  z-index: 1;
  text-align: center;
}

.page-banner h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -.04em;
  margin-bottom: 20px;
  color: var(--text-main);
}

.page-banner h1 em {
  font-style: normal;
  color: var(--sky-l)
}

.page-banner .sub {
  font-size: clamp(.95rem, 1.8vw, 1.1rem);
  color: var(--muted);
  line-height: 1.8;
  max-width: 580px;
  margin: 0 auto 36px;
}

.page-banner .brd {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--dim);
  margin-bottom: 28px;
}

.page-banner .brd a {
  color: var(--sky-l);
  text-decoration: none
}

.page-banner .brd a:hover {
  text-decoration: underline
}

/* ═══════════════════════════════════════════
   SERVICE BLOCKS (projektovani, dotace)
═══════════════════════════════════════════ */
.page-sec {
  padding: var(--gap) 0;
  position: relative;
  z-index: 1
}

.serv-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  overflow: hidden;
  margin-bottom: 24px;
}

.serv-block.rev {
  direction: rtl
}

.serv-block.rev>* {
  direction: ltr
}

.serv-img {
  position: relative;
  min-height: 340px;
  overflow: hidden;
}

.serv-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.serv-block:hover .serv-img img {
  transform: scale(1.04)
}

.serv-txt {
  padding: 56px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  background: var(--glass);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--glass-b);
}

.serv-txt h3 {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--text-main);
}

.serv-txt p {
  font-size: .95rem;
  line-height: 1.85;
  color: var(--muted)
}

.serv-txt ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0;
  list-style: none;
}

.serv-txt ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: rgba(30, 41, 59, .72);
}

.serv-txt ul li i {
  color: var(--sky-l);
  font-size: 12px;
  margin-top: 3px;
  flex-shrink: 0
}

@media(max-width:800px) {

  .serv-block,
  .serv-block.rev {
    grid-template-columns: 1fr;
    direction: ltr
  }

  .serv-img {
    min-height: 240px
  }

  .serv-txt {
    padding: 36px 28px
  }
}

/* Dotace cards */
.dotace-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media(max-width:800px) {
  .dotace-grid {
    grid-template-columns: 1fr
  }
}

.dot-card {
  padding: 36px 28px;
  border-radius: 22px;
  background: rgba(255, 255, 255, .82);
  border: 1px solid rgba(13, 59, 102, .1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform .3s, box-shadow .3s;
}

.dot-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(13, 59, 102, .12)
}

.dot-ico {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(13, 59, 102, .07);
  border: 1px solid rgba(13, 59, 102, .14);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--sky);
}

.dot-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-main)
}

.dot-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7
}

.dot-card .badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 50px;
  background: rgba(59, 130, 246, .08);
  border: 1px solid rgba(59, 130, 246, .2);
  font-size: 11px;
  font-weight: 700;
  color: var(--sky-l);
  letter-spacing: .06em;
}

/* Aplikace page */
.app-hero-img {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--glass-b);
  box-shadow: 0 32px 80px rgba(13, 59, 102, .14);
  margin-top: 52px;
}

.app-hero-img img {
  width: 100%;
  display: block
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}

@media(max-width:800px) {
  .feature-grid {
    grid-template-columns: 1fr
  }
}

.feat {
  padding: 32px 24px;
  border-radius: 20px;
  background: rgba(255, 255, 255, .82);
  border: 1px solid rgba(13, 59, 102, .1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform .3s, box-shadow .3s;
}

.feat:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 40px rgba(13, 59, 102, .11)
}

.feat-ico {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: rgba(13, 59, 102, .07);
  border: 1px solid rgba(13, 59, 102, .14);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--sky);
}

.feat h3 {
  font-size: .95rem;
  font-weight: 700;
  color: var(--text-main)
}

.feat p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65
}

/* Kariéra page */
.job-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 56px
}

.job {
  padding: 28px 32px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .82);
  border: 1px solid rgba(13, 59, 102, .1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  transition: transform .3s, box-shadow .3s, border-color .3s;
}

.job:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(13, 59, 102, .1);
  border-color: rgba(59, 130, 246, .25)
}

.job-info {
  flex: 1
}

.job-info h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 6px
}

.job-info p {
  font-size: 13px;
  color: var(--muted)
}

.job-tags {
  display: flex;
  gap: 6px;
  margin-top: 10px;
  flex-wrap: wrap
}

.job-tag {
  padding: 3px 10px;
  border-radius: 50px;
  background: rgba(13, 59, 102, .06);
  border: 1px solid rgba(13, 59, 102, .14);
  font-size: 11px;
  font-weight: 600;
  color: var(--sky);
}

.job-btn {
  padding: 10px 20px;
  border-radius: 10px;
  background: rgba(13, 59, 102, .08);
  border: 1px solid rgba(13, 59, 102, .22);
  font-size: 13px;
  font-weight: 600;
  color: var(--sky);
  text-decoration: none;
  white-space: nowrap;
  transition: all .25s;
}

.job-btn:hover {
  background: var(--sky);
  color: #fff;
  border-color: var(--sky)
}

@media(max-width:640px) {
  .job {
    flex-direction: column;
    align-items: flex-start
  }

  .job-btn {
    width: 100%;
    text-align: center
  }
}

/* CTA section */
.cta-sec {
  padding: var(--gap) 0;
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta-box {
  padding: 64px 48px;
  border-radius: 28px;
}

.cta-box h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--text-main);
  margin-bottom: 16px;
}

.cta-box p {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.8;
  max-width: 480px;
  margin: 0 auto 36px;
}

.cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap
}

.cta-btn-p {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 50px;
  background: var(--sky);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: all .3s;
  box-shadow: 0 0 40px rgba(13, 59, 102, .2);
}

.cta-btn-p:hover {
  background: var(--sky-l);
  transform: translateY(-3px);
  box-shadow: 0 10px 50px rgba(59, 130, 246, .35)
}

.cta-btn-s {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 50px;
  border: 1px solid rgba(13, 59, 102, .22);
  color: var(--sky);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all .3s;
}

.cta-btn-s:hover {
  background: rgba(13, 59, 102, .06);
  border-color: rgba(13, 59, 102, .38)
}