:root {
  color-scheme: light dark;
  --bg: #ffffff;
  --surface: #ffffff;
  --text: #0f172a;
  --muted: #475569;
  --brand: #059ffb;
  --brand-600: #0284c7;
  --ring: 0 0 0 3px color-mix(in srgb, var(--brand) 30%, transparent);
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
}

html {
  font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

.font-display {
  font-family: "Montserrat", system-ui, sans-serif;
}

a,
button {
  -webkit-tap-highlight-color: transparent;
}

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 0.95rem;
  border-radius: 9999px;
  font-weight: 600;
  color: #0f172a;
  transition:
    color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.nav-link:hover {
  color: var(--brand);
  background-color: rgba(5, 159, 251, 0.08);
  box-shadow: 0 12px 28px -20px rgba(5, 159, 251, 0.65);
  transform: translateY(-1px);
}

.nav-link:focus-visible {
  background-color: rgba(5, 159, 251, 0.12);
}

.nav-mobile-link {
  border-radius: 1rem;
  padding: 0.85rem 1rem;
  font-weight: 600;
  color: #0f172a;
  background: linear-gradient(180deg, rgba(5, 159, 251, 0.06), rgba(5, 159, 251, 0.03));
  border: 1px solid rgba(5, 159, 251, 0.12);
  transition:
    color 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.nav-mobile-link:hover {
  color: var(--brand);
  background: linear-gradient(180deg, rgba(5, 159, 251, 0.12), rgba(5, 159, 251, 0.06));
  border-color: rgba(5, 159, 251, 0.22);
  box-shadow: 0 14px 28px -22px rgba(5, 159, 251, 0.8);
  transform: translateY(-1px);
}

.nav-mobile-link:focus-visible {
  background: linear-gradient(180deg, rgba(5, 159, 251, 0.14), rgba(5, 159, 251, 0.08));
}

:where(a, button, input, textarea, select):focus-visible {
  box-shadow: var(--ring);
  outline: none;
}

:where(summary):focus-visible {
  box-shadow: var(--ring);
  outline: none;
  border-radius: 1rem;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  padding: 0.8rem 1rem;
  border-radius: 0.9rem;
  background: #059ffb;
  color: #ffffff;
  font-weight: 700;
  box-shadow: 0 14px 30px -20px rgba(5, 159, 251, 0.85);
  transition: top 180ms ease;
}

.skip-link:focus {
  top: 1rem;
}

body .grecaptcha-badge {
  visibility: hidden !important;
}

/* Cookiebot injects its own CSS. This fallback prevents a blocked/delayed banner from breaking layout. */
#CybotCookiebotDialog,
#CookiebotWidget {
  max-width: min(100vw - 2rem, 980px);
}

#CybotCookiebotDialog img,
#CybotCookiebotDialog svg {
  max-width: 240px;
  height: auto;
}

.hover-lift {
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
  will-change: transform;
}

.hover-lift:hover {
  transform: translateY(-2px);
}

.hero-study-link {
  border: 1px solid #059ffb;
  background-color: rgba(5, 159, 251, 0.06);
  color: #059ffb;
}

.hero-study-link:hover {
  background-color: rgba(5, 159, 251, 0.11);
  border-color: #0284c7;
  color: #0284c7;
}

.price-original {
  margin-bottom: 0.15rem;
  color: #059ffb;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: line-through;
  text-decoration-color: #059ffb;
  text-decoration-thickness: 2px;
  text-decoration-skip-ink: auto;
}

.ring-soft {
  box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.08);
}

.mmin-h-screen {
  min-height: 100vh;
}

:root {
  color-scheme: light dark;
  --bg: #ffffff;
  --surface: #ffffff;
  --text: #0f172a;
  --muted: #475569;
}

html.dark {
  --bg: #0b1220;
  --surface: #111827;
  --text: #e5e7eb;
  --muted: #94a3b8;
  --surface-soft: #0f172a;
  --surface-strong: #020617;
  --brand-glow: rgba(5, 159, 251, 0.18);
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Montserrat", sans-serif;
}

/* Whole-page entrance animation. */
body {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 420ms ease, transform 420ms ease;
}

body.page-ready {
  opacity: 1;
  transform: none;
}

/* Lightweight scroll reveal animation (JS toggles .is-visible). */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 500ms ease, transform 500ms ease;
  will-change: opacity, transform;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  body,
  body.page-ready {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .reveal-on-scroll,
  .reveal-on-scroll.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

html.dark header,
html.dark nav,
html.dark section,
html.dark article,
html.dark form,
html.dark details,
html.dark .bg-white {
  background-color: var(--surface) !important;
  color: var(--text) !important;
}

html.dark .text-black,
html.dark .text-gray-900,
html.dark .text-slate-900 {
  color: #f3f4f6 !important;
}

html.dark .text-gray-600,
html.dark .text-gray-700,
html.dark .text-slate-600,
html.dark .text-slate-700 {
  color: var(--muted) !important;
}

html.dark .border-gray-200,
html.dark .border-slate-200 {
  border-color: #334155 !important;
}

html.dark body {
  background:
    radial-gradient(circle at top, rgba(5, 159, 251, 0.08), transparent 28%),
    linear-gradient(180deg, #020617 0%, #0b1220 28%, #0b1220 100%);
}

html.dark header.sticky,
html.dark #mobileMenu {
  background-color: rgba(2, 6, 23, 0.88) !important;
  border-color: rgba(148, 163, 184, 0.14) !important;
  backdrop-filter: blur(18px);
}

html.dark header a.text-black,
html.dark #mobileMenu a.text-black {
  color: #f8fafc !important;
}

html.dark header a.text-black:hover,
html.dark #mobileMenu a.text-black:hover {
  color: var(--brand) !important;
}

html.dark .nav-link {
  color: #f8fafc !important;
}

html.dark .nav-link:hover,
html.dark .nav-link:focus-visible {
  color: #38bdf8 !important;
  background-color: rgba(56, 189, 248, 0.1);
  box-shadow: 0 12px 30px -18px rgba(56, 189, 248, 0.35);
}

html.dark .nav-mobile-link {
  color: #e5e7eb !important;
  background: linear-gradient(180deg, rgba(5, 159, 251, 0.14), rgba(5, 159, 251, 0.07));
  border-color: rgba(56, 189, 248, 0.22);
}

html.dark .nav-mobile-link:hover,
html.dark .nav-mobile-link:focus-visible {
  color: #ffffff !important;
  background: linear-gradient(180deg, rgba(5, 159, 251, 0.24), rgba(5, 159, 251, 0.12));
  border-color: rgba(56, 189, 248, 0.36);
  box-shadow: 0 18px 36px -24px rgba(56, 189, 248, 0.55);
}

html.dark #menuBtn,
html.dark #themeToggle {
  background-color: #0f172a;
  border-color: #334155 !important;
  color: #f8fafc;
}

html.dark #menuBtn svg path {
  stroke: #f8fafc;
}

html.dark .hero-section {
  background:
    linear-gradient(180deg, #020617 0%, #071120 74%, #0b1220 100%);
}

html.dark .hero-section__dots,
html.dark .hero-dots-fade {
  background-image: radial-gradient(rgba(255, 255, 255, 0.18) 1px, transparent 1px) !important;
}

html.dark .hero-section .bg-white,
html.dark .video-feature-section .bg-white {
  background-color: var(--surface-soft) !important;
}

html.dark #sluzby,
html.dark #porovnani,
html.dark #ukazka,
html.dark .video-feature-section,
html.dark #faq {
  background-color: var(--surface-strong) !important;
}

html.dark #cenik,
html.dark #newsletter {
  background:
    linear-gradient(180deg, rgba(5, 159, 251, 0.05) 0%, rgba(2, 6, 23, 0) 26%),
    #08101d !important;
}

html.dark .ring-soft {
  box-shadow: 0 0 0 1px rgba(5, 159, 251, 0.12);
}

html.dark .text-primary,
html.dark .text-blue-600 {
  color: #38bdf8 !important;
}

html.dark .bg-blue-600,
html.dark .bg-primary {
  background-color: #059ffb !important;
  color: #ffffff !important;
}

html.dark .shadow-sm,
html.dark .shadow-xl,
html.dark .shadow-2xl,
html.dark .shadow-lg {
  box-shadow: 0 18px 50px -28px rgba(2, 8, 23, 0.75);
}

html.dark a[class*="border-slate-300"],
html.dark button[class*="border-slate-300"],
html.dark .border-slate-300 {
  border-color: rgba(56, 189, 248, 0.28) !important;
}

html.dark .hover\:bg-slate-100:hover,
html.dark .bg-slate-50,
html.dark .bg-slate-100 {
  background-color: rgba(15, 23, 42, 0.9) !important;
}

html.dark #porovnani .bg-rose-600 {
  background-color: #334155 !important;
  color: #e2e8f0 !important;
}

html.dark #porovnani .bg-emerald-600 {
  background-color: var(--brand) !important;
  color: #ffffff !important;
}

html.dark #porovnani .bg-\[color\:var\(--brand\)\]\/5 {
  background-color: rgba(5, 159, 251, 0.08) !important;
}

html.dark .prefooter-divider {
  background-color: var(--surface-strong);
}

html.dark .prefooter-divider svg rect:first-of-type {
  fill: #020617;
}

html.dark .site-footer {
  background:
    linear-gradient(180deg, #020617 0%, #000000 100%) !important;
}

html.dark .site-footer .text-gray-400,
html.dark .site-footer .text-slate-500 {
  color: #94a3b8 !important;
}

html.dark .site-footer .text-gray-300,
html.dark .site-footer .text-slate-600 {
  color: #cbd5e1 !important;
}

html.dark .site-footer__social a {
  background-color: rgba(255, 255, 255, 0.08);
}

html.dark .site-footer__social a:hover {
  background-color: rgba(5, 159, 251, 0.2);
}

html.dark .site-footer__social svg {
  color: #f8fafc !important;
}

.site-footer {
  background-color: #000000 !important;
}

.site-footer a {
  color: inherit;
}

.site-footer__social a {
  color: #f8fafc;
  background-color: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.site-footer__social a:hover,
.site-footer__social a:focus-visible {
  color: #ffffff;
  background-color: rgba(5, 159, 251, 0.24);
  border-color: rgba(5, 159, 251, 0.5);
  box-shadow: 0 12px 28px -20px rgba(5, 159, 251, 0.85);
}

.site-footer__social svg {
  color: #f8fafc !important;
}

.site-footer__logo-mark {
  display: inline-flex;
  width: min(220px, 100%);
  min-height: 50px;
  align-items: center;
  justify-content: center;
  opacity: 0.92;
  transition: opacity 180ms ease, transform 180ms ease;
}

.site-footer__logo-mark:hover,
.site-footer__logo-mark:focus-visible {
  opacity: 1;
  transform: translateY(-1px);
}

.site-footer__logo-img {
  display: block;
  width: 220px;
  max-width: 100%;
  height: 50px;
  object-fit: contain;
}

.brand-soft-section {
  background-color: #f9fcff !important;
}

.process-step-card {
  border-color: rgba(5, 159, 251, 0.42) !important;
}

html.dark .process-step-card {
  border-color: rgba(56, 189, 248, 0.4) !important;
}

.team-gallery-card {
  min-height: 180px;
}

.team-gallery-stack {
  min-height: 380px;
}

.team-gallery-card--tall {
  min-height: 100%;
}

.social-section__content {
  width: 100%;
}

.social-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  min-height: 3.55rem;
  padding: 0.75rem 1.05rem;
  border-radius: 1.25rem;
  border: 1.5px solid currentColor;
  background-color: #ffffff;
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.social-pill:hover {
  transform: translateY(-1px);
}

.social-pill--facebook {
  color: #1877f2;
}

.social-pill--facebook:hover {
  background-color: rgba(24, 119, 242, 0.06);
  box-shadow: 0 18px 34px -24px rgba(24, 119, 242, 0.65);
}

.social-pill--instagram {
  color: #e1306c;
}

.social-pill--instagram:hover {
  background-color: rgba(225, 48, 108, 0.06);
  box-shadow: 0 18px 34px -24px rgba(225, 48, 108, 0.65);
}

.social-pill--youtube {
  color: #ff0000;
}

.social-pill--youtube:hover {
  background-color: rgba(255, 0, 0, 0.05);
  box-shadow: 0 18px 34px -24px rgba(255, 0, 0, 0.55);
}

.professional-portrait {
  isolation: isolate;
}

.professional-portrait__glow {
  position: absolute;
  z-index: -1;
  pointer-events: none;
  border-radius: 9999px;
  filter: blur(70px);
}

.professional-portrait__glow--main {
  left: 2%;
  right: 2%;
  top: 8%;
  bottom: 6%;
  background:
    radial-gradient(circle at 50% 34%,
    rgba(5, 159, 251, 0.24) 0%,
    rgba(5, 159, 251, 0.14) 36%,
    rgba(5, 159, 251, 0.05) 58%,
    transparent 78%);
  transform: scale(1.14);
}

.professional-portrait__glow--accent {
  left: 16%;
  right: 16%;
  top: 48%;
  bottom: 0;
  background:
    radial-gradient(circle at 50% 50%,
    rgba(5, 159, 251, 0.16) 0%,
    rgba(5, 159, 251, 0.06) 48%,
    transparent 76%);
  filter: blur(52px);
  transform: scale(1.03);
}

.contact-form-glow {
  position: absolute;
  inset: 0.75rem 1.25rem -1.5rem;
  z-index: 0;
  pointer-events: none;
  border-radius: 2rem;
  background:
    radial-gradient(circle at 50% 20%,
    rgba(5, 159, 251, 0.24) 0%,
    rgba(5, 159, 251, 0.13) 38%,
    rgba(5, 159, 251, 0.04) 60%,
    transparent 80%);
  filter: blur(44px);
}

.contact-email-chip {
  border: 2px solid #059ffb !important;
}

@media (min-width: 1024px) {
  .hero-visual-wrap {
    padding-left: 30px;
  }
}

@media (min-width: 768px) {
  .hero-house-image {
    transform: translateY(28px);
  }

  .hero-note-badge {
    top: -4px;
    right: -8px;
  }
}

@media (min-width: 1024px) {
  .hero-house-image {
    transform: translateY(56px);
  }

  .hero-note-badge {
    top: -18px;
    right: -22px;
  }
}

@media (min-width: 1280px) {
  .hero-house-image {
    transform: translateY(68px);
  }

  .hero-note-badge {
    top: -26px;
    right: -32px;
  }
}

@media (min-width: 1536px) {
  .hero-house-image {
    transform: translateY(76px);
  }
}

@media (max-width: 640px) {
  .contact-form-glow {
    inset: 0.75rem 0.5rem -0.75rem;
    filter: blur(34px);
  }
}

.training-card-image {
  width: 198px;
}

@media (min-width: 640px) {
  .training-card-image {
    width: 220px;
  }
}

@media (min-width: 768px) {
  .training-card-image {
    width: 248px;
  }
}

@media (min-width: 1024px) {
  .team-gallery-card {
    min-height: 210px;
  }

  .team-gallery-stack {
    min-height: 420px;
  }
}

@media (max-width: 1023px) {
  .social-section__content {
    max-width: 42rem;
    margin-inline: auto;
    text-align: center;
  }

  .social-section__intro,
  .social-section__note {
    max-width: 38rem;
    margin-inline: auto;
  }

  .social-section__links {
    max-width: 24rem;
    margin-inline: auto;
  }

  .social-pill {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .social-section__content h2 {
    text-align: center;
  }

  .social-section__intro,
  .social-section__note {
    text-align: center;
  }

  .social-section__links {
    gap: 0.9rem;
  }

  .social-pill {
    font-size: 1.08rem;
    min-height: 3.3rem;
    padding-inline: 0.95rem;
  }
}

#cenik {
  background-color: #f9fcff !important;
}

.prefooter-divider {
  background-color: #f5f7fa;
}

footer.site-footer {
  background-color: #000000 !important;
}




.bg-white {
  background-color: #ffffff !important;
}

.logo-nav {
  width: 168px;
  height: auto;
  max-width: 100%;
}

@media (min-width: 768px) {
  .logo-nav {
    width: 184px;
  }
}

.uvod-studie-img{
  width: 350px;
}
.navbar,
.footer-section {
  color: #ffffff;
}




.text-blue-600{ color: var(--color-primary) !important;}

.text-primary {
  color: var(--brand) !important;
}

.bg-blue-600  {
  background-color: var(--color-primary) !important;
  color: var(--color-white);
}

.bg-primary {
  background-color: var(--brand) !important;
}
.main-nav {
  background-color: #ffffff;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.navbar-toggler {
  border: none;
}

.navbar-nav {
  padding-top: 20px;
}

.navbar-nav .nav-item-link {
  padding: 10px 15px;
  font-weight: 600;
  color: #333333;
}

.navbar-nav .nav-item-link:hover {
  color: #0d6efd;
}

.nav-home {
  background-color: #0d6efd;
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: 600;
}

.nav-home:hover {
  background-color: #084298;
}

footer .container {
  max-width: 1280px;
}

.site-footer__grid {
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .site-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .site-footer__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 767.98px) {
  .gallery-mobile-extra--visible {
    display: block !important;
  }

  .site-footer .container {
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .site-footer__brand {
    margin-bottom: 1.75rem;
  }

  .site-footer__brand p {
    max-width: 18rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.55;
  }

  .site-footer__grid {
    gap: 1rem;
  }

  .site-footer__block {
    padding: 1.1rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .site-footer__block:first-child {
    padding-top: 0;
    border-top: 0;
  }

  .site-footer__block,
  .site-footer__list {
    text-align: center;
  }

  .site-footer__list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
  }

  .site-footer__social {
    justify-content: center;
    margin-top: 0.85rem;
  }

  .site-footer__social a {
    padding: 0.65rem;
  }

  .site-footer .border-t {
    margin-top: 1.75rem;
    padding-top: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

@media (max-width: 991px) {
  .navbar-collapse {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}

.contact-banner {
  max-width: 960px;
  background: linear-gradient(135deg, #007bff, #0056d2);
  border-radius: 12px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}


.contact-text h2 {
  font-size: 1.5rem;
  font-weight: 600;
}

.contact-input .form-control {
  border-radius: 8px 0 0 8px;
  border: none;
  padding: 0.5rem 1rem;
}

.contact-input .btn {
  border-radius: 0 8px 8px 0;
  padding: 0.5rem 1.5rem;
  font-weight: 600;
}



/* Timeline základ */
.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.timeline::after {
  content: '';
  position: absolute;
  width: 4px;
  background-color: #0d6efd;
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -2px;
}

/* Položky */
.timeline-item {
  padding: 20px 0;
  position: relative;
  width: 50%;
}

.timeline-item.left {
  left: 0;
}

.timeline-item.right {
  left: 50%;
}

.timeline-content {
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  position: relative;
  z-index: 2;
}

/* Zarovnání textu */
.timeline-item.left .timeline-content {
  margin-right: 30px;
  text-align: right;
}

.timeline-item.right .timeline-content {
  margin-left: 30px;
  text-align: left;
}

/* Tečky */
.timeline-item::before {
  content: '';
  position: absolute;
  top: 28px;
  width: 20px;
  height: 20px;
  background-color: #0d6efd;
  border: 4px solid #fff;
  border-radius: 50%;
  z-index: 1;
}

.timeline-item.left::before {
  right: -10px;
}

.timeline-item.right::before {
  left: -10px;
}

/* Čísla */
.circle-h {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #0d6efd;
  color: white;
  font-weight: bold;
  width: 36px;
  height: 36px;
  line-height: 36px;
  border-radius: 50%;
  text-align: center;
  z-index: 10;
  font-size: 16px;
}

/* Zvýraznění */
.highlight {
  color: #0d6efd;
  font-weight: 500;
}

/* RESPONSIVE: optimalizace pro mobilní zařízení */
@media (max-width: 767.98px) {
  .timeline::after {
    left: 20px;
  }

  .timeline-item {
    width: 100%;
    padding: 15px 0 15px 40px;
  }

  .timeline-item.left,
  .timeline-item.right {
    left: 0;
  }

  .timeline-item::before {
    left: 14px;
  }

  .timeline-content {
    text-align: left !important;
    margin: 0 0 15px 0;
    padding: 15px;
  }

  .timeline-item::before {
    display: none; /* Skryje kulaté body mezi kartami */
  }

  .circle-h {
    left: 20px;
    transform: translate(-50%, -50%);
    width: 28px;
    height: 28px;
    font-size: 14px;
    line-height: 28px;
  }
}




  
 /*time-line-horizental*/
 .timeline-horizontal {
  position: relative;
  overflow-x: auto;
}


.timeline-step {
  min-width: 200px;
  max-width: 250px;
  position: relative;
}

.circle {
  width: 50px;
  height: 50px;
  background-color: #0d6efd;
  color: white;
  font-weight: bold;
  font-size: 1.2rem;
  line-height: 50px;
  border-radius: 50%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.timeline-step::before {
  content: "";
  position: absolute;
  top: 25px;
  left: -50%;
  width: 100%;
  height: 3px;
  background-color: #0d6efd;
  z-index: 0;
}

.timeline-step:first-child::before {
  content: none;
}

/* Responsivita */
@media (max-width: 768px) {
  .timeline-wrapper {
    flex-direction: column;
    border-top: none;
    border-left: 3px solid #0d6efd;
    padding-left: 2rem;
  }

  .timeline-step {
    max-width: 100%;
    padding-left: 2rem;
    text-align: left;
  }

  .circle {
    margin-left: 0;
  }

  .timeline-step::before {
    top: -20px;
    left: -1.5rem;
    width: 3px;
    height: 100%;
  }

  .timeline-step:first-child::before {
    display: none;
  }
}
 
/*----*/

.hero-custom {
  background: linear-gradient(to bottom right, #fff 50%, #FFFAF1 100%);
  padding-top: 80px;
  padding-bottom: 80px;
}

.hero-custom h1 {
  color: #1b1b1b;
}

.hero-custom .underline {
  position: relative;
  display: inline-block;
}

.hero-custom .underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 6px;
  background-color: #059ffb;
  border-radius: 20px;
  animation: underline 1s ease-out;
}

.text-plus{
  color:#059ffb ;
}


@keyframes underline {
  from { width: 0; opacity: 0; }
  to { width: 100%; opacity: 1; }
}

.hero-custom .stats h5 {
  font-size: 1.6rem;
}

.hero-custom .btn-outline-dark {
  border: 2px solid #1b1b1b;
  transition: all 0.3s ease;
}

.hero-custom .btn-outline-dark:hover {
  background: #1b1b1b;
  color: #fff;
}

.hero-custom .hero-image {
  max-width: 100%;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  animation: float-in 0.8s ease-in-out;
}

@keyframes float-in {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (max-width: 767px) {
  .hero-custom {
    text-align: center;
  }

  .hero-custom .stats .col-4 {
    margin-bottom: 20px;
  }
}

/*projektant cards uspechy*/
.project-cards {
  border: none;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 12px;
  background-color: #fff;
}

.project-cards:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.project-icon i {
  font-size: 2.8rem;
  color: #0d6efd;
}

.project-value {
  font-size: 2rem;
  font-weight: 700;
  color: #0d6efd;
  margin: 0;
}

.project-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-top: 0.2rem;
  color: #212529;
}

.project-desc {
  color: #6c757d;
  font-size: 0.95rem;
  margin-top: 0.5rem;
}

/*FAQ*/
.faq {
  max-width: 100%;
}

.faq-item {
  border-bottom: 1px solid #eee;
  padding: 1rem 0;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 1.15rem;
  cursor: pointer;
  position: relative;
  color: #212529;
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: #198754;
  margin-left: auto;
}

.faq-item input {
  display: none;
}

.faq-item input:checked + .faq-question::after {
  content: '−';
  color: #198754;
}

.faq-answer {
  display: none;
  margin-top: 0.5rem;
  font-size: 1rem;
  color: #495057;
}

.faq-item input:checked ~ .faq-answer {
  display: block;
}
.team-avatar {
  width: 120px;
  height: 180px;
  border-radius: 0.5rem;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 12px 8px;
  color: #111;
  text-align: center;
  font-size: 0.85rem;
  background-color: #f1f5f9;
  box-shadow: 0 2px 4px rgba(0,0,0,0.06);
  transition: transform 0.3s ease;
}

.team-avatar:hover {
  transform: translateY(-4px);
}

.team-avatar img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 10px;
}

.team-avatar strong {
  display: block;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.team-avatar small {
  font-size: 0.75rem;
  color: #555;
}

.team-avatar:nth-child(even) {
  margin-top: 1rem;
}

/* CTA boxy */
.cta-box {
  padding: 1.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 0.125rem 0.25rem rgba(0,0,0,0.075);
}

.cta-box-white{
  background-color: #FFF;
}


.cta-box.bg-left {
  background-color: #059FFB;
  color: #fff;
}

/* Pravý box – bílé pozadí, tmavý text */
.cta-box.bg-right {
  background-color: #fff;
  color: #212529;
  border: 1px solid #dee2e6;
}

/* Tlačítko v levém boxu (bílé) */
.cta-box.bg-left .btn-white {
  background-color: #fff;
  color: #059FFB;
  border: none;
}

/* Tlačítko v pravém boxu (modré) */
.cta-box.bg-right .btn-primary {
  background-color: #059FFB;
  border-color: #059FFB;
  color: #fff;
}

/* Velikost nadpisu a textu */
.cta-box h2 {
  font-size: 1.75rem;
}

.cta-box p {
  font-size: 1.1rem;
  line-height: 1.5;
}

/* Responzivita pro mobil */
@media (max-width: 767.98px) {
  .cta-box h2 {
    font-size: 1.5rem;
  }
}




/*footer*/

.footer{
 background-color: #000;
}
.footer-cont {
  color: #000;
  text-transform: uppercase;
  margin-bottom: 0;
  font-size: 94px;
  font-weight: 600;
  line-height: 70%;
}

.footer-title {
  font-size: 6vw;
  font-weight: 900;
  background: url('img/dum1.png') center center / cover no-repeat;
    background-clip: border-box;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  margin-top: -115px;}  

/* Optional - padding for full effect */
@media (max-width: 768px) {
  .footer-title {
    font-size: 12vw;
  }
}

.btn-sm {
  font-size: 0.9rem;
  padding: 0.5rem 0.8rem;
}

section.bg-light {
  border-top: 1px solid #eee;
}

@media (max-width: 576px) {
  .btn-sm {
    width: 100%;
    justify-content: center;
  }
}

.star-rating i {
  font-size: 1.8rem;
  margin: 0 0.1rem;
}
  
.text-primary{
  color: #059FFB !important;
}
  




  .contact-form-section h2 {
  font-weight: 700;
}

.contact-form-section iframe {
  border: none;
  border-radius: 8px;
  box-shadow: 0 5px 25px rgba(0,0,0,0.1);
}
  


.star-rating i {
  margin-right: 4px;
}
.stat-box {
  background-color: #f8f9fa;
}
.stat-box h3 {
  font-weight: 600;
}

/* např. v style.css */
.hero-dotted {
  position: relative;

  background-image:
    linear-gradient(135deg, rgba(255,255,255,0.6), rgba(255,255,255,0)),
    /* druhá vrstva: tečky */
    radial-gradient(circle, rgba(0,0,0,0.05) 2px, transparent 1px);
  background-size:
    auto,           
    30px 30px;      /* velikost buněk tečkové sítě */
}

/* Šipka mezi sekcemi */
.section-contact {
  position: relative;
  /* pro jistotu – kdyby měl rodič overflow */
  overflow: visible;
}

/* šipka je vycentrovaná dole a mírně přesahuje do další sekce */
.arrow-down {
  position: absolute;
  left: 50%;
  bottom: -28px;                  /* kolik má přesahovat */
  transform: translateX(-50%);
  width: clamp(48px, 6vw, 96px);  /* responzivní šířka */
  height: auto;
  pointer-events: none;
  z-index: 2;
}

/* druhá sekce dostane padding nahoře, aby byl přesah "na krev" a nic se nepřekrývalo */
.section-pitch {
  margin-top: 40px;               /* prostor pro šipku (musí ≥ |bottom| z .arrow-down) */
}

/* Původní rozbíjející styly odstraníme */
.sipka-img,
.arrow-up {
  all: unset;
}


/* Oprava pro mobilní zařízení */
@media (max-width: 767.98px) {
  .arrow-up {
    margin-top: -140px; /* menší negativní posun */
  }
}



.study-offer {
  padding: 4rem 1rem;
  text-align: center;
}

.study-offer .container {
  max-width: 900px;
  margin: 0 auto;
}

.study-offer h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--color-black);
  margin-bottom: 1rem;
}

.study-offer p {
  font-size: 1.125rem;
  color: var(--color-black);
  max-width: 700px;
  margin: 0 auto 1.5rem auto;
  line-height: 1.6;
}

.study-offer .buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.study-offer .btn {
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.study-offer .btn-outline {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.study-offer .btn-outline:hover {
  border: 1px solid var(--color-primary);
  background-color: var(--color-white);
  color: var(--color-primary);
}

.study-offer .btn-brown-outline{
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
}

.study-offer .btn-brown-outline:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
}


@media (min-width: 640px) {
  .study-offer .buttons {
    flex-direction: row;
    justify-content: center;
  }
}

:root{
  --color-white:#ffffff;
  --color-black:#1B1B1B;
  --color-primary:#059FFB;
  --color-primary-dark:#856B55;
  --color-sand:#F6EEE3;
  --color-brown:#856B55;
}

.faq-cards{
  background: var(--color-white);
  padding: clamp(2rem, 5vw, 4rem) 1rem;
}

.faq-cards__title{
  text-align: center;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  margin-bottom: 2rem;
  color: var(--color-black);
}

.faq-cards__grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media(min-width:768px){
  .faq-cards__grid{
    grid-template-columns: 1fr 1fr;
  }
}

.faq-card{
  border: 1px solid #e6e8eb;
  border-radius: 12px;
  padding: 1.5rem;
  background: var(--color-white);
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
  transition: all 0.25s ease;
}

.faq-card:hover{
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}

.faq-card__icon{
  width: 42px;
  height: 42px;
  background: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.faq-card__icon img{
  width: 20px;
  height: 20px;
}

.faq-card__question{
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--color-black);
}

.faq-card__answer{
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.faq-card__link{
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: none;
}

.faq-card__link:hover{
  text-decoration: underline;
}

.luck-background{
  width: 500px;
  height: 500px;
  position: absolute;
  opacity: 0.55;
}

.bg-projektant-dark{
  background-color:  var(--color-black);
  color: var(--color-white);
}
.text-head-lead {
color: var(--color-white  );
}
.text-head-lead-h {
color: var(--color-primary);
}
.svg-q {  
margin-top: 50px;

}

.study-offer{
background-color: #eee;

}


.study-offer{
  position: relative;           
  background: #FFF;
  padding: 64px 0;
  isolation: isolate;          
}
.study-offer .container{
  max-width: 72rem;             
  margin-inline: auto;
  padding-inline: 1rem;
  text-align: center;
}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:.5rem; padding:.8rem 1.2rem; border-radius:.75rem;
  font-weight:600; text-decoration:none; transition:.2s ease;
}
.btn-outline{
  color:#111; border:2px solid var(--primary);
}
.btn-outline:hover{ background:var(--primary); color:#fff; }
.btn-brown-outline{
  color:#111; border:2px solid var(--brown);
}
.btn-brown-outline:hover{ background:var(--brown); color:#fff; }
.buttons{ display:flex; gap:.8rem; justify-content:center; margin-top:1rem; }



@media (max-width: 1024px){
  .study-offer__rocket{
    right: -24px;
    bottom: -20px;
  }
}


@media (max-width: 640px){
  .study-offer {
    padding: 48px 0;
  }
  .study-offer__rocket {
    display: none;
  }
}


@media (prefers-reduced-motion: reduce){
  .study-offer__rocket{ transition: none; }
}


.gallery {
  padding: 40px 0;
  background: #f8f8f8;
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr); /* na desktopu 6 v řádku */
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.gallery__grid img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,.1);
  transition: transform .3s ease, box-shadow .3s ease;
  object-fit: cover;
}

.gallery__grid img:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 18px rgba(0,0,0,.2);
}

/* tablet */
@media (max-width: 1024px) {
  .gallery__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* mobil */
@media (max-width: 640px) {
  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}


:root{
  --primary: #059FFB;   /* modrá */
  --brown:   #878179;   /* hnědá */
}

/* Layout sekce */
.team-split{
  padding: clamp(40px, 6vw, 80px) 0;
  background: #fff;
}
.team-split__inner{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 26px;
  display: grid;
  grid-template-columns: 1.1fr 1fr; 
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
}







.team-media__frame{
  position: relative;
  z-index: 1;
  width: min(600px, 100%);
  margin: 0 auto;
  transform: rotate(2deg);           
  transform-origin: 50% 60%;
  border-radius: 20px;
  box-shadow: 0 16px 40px rgba(0,0,0,.18);
  outline-offset: -6px;
  background: #fff;
}


.team-media__img{
  display: block;
  width: 100%;
  height: auto;
  border-radius: 14px;
  object-fit: cover;
}


.team-copy h2{
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.15;
  margin: 0 0 32px;
  color: #1b1b1b;
}
.team-copy p{
  font-size: clamp(16px, 1.6vw, 18px);
  color: #424242;
  margin: 0;
}
.team-copy p + p{
  margin-top: 20px;
}
.team-copy__accent{
  border-left: 4px solid var(--primary);
  padding-left: 12px;
  color: #2b2b2b;
}
.team-list{
  margin: 16px 0 0; padding: 0;
  list-style: none;
  display: grid; gap: 8px;
}


/* Responsivita */
@media (max-width: 1024px){
  .team-split__inner{
    grid-template-columns: 1fr;      /* pod sebe */
  }
  .team-media{
    order: -1;                        /* fotka nad textem */
  }
  .team-media__frame{
    transform: rotate(9deg);          /* menší náklon na tabletu */
  }
}
@media (max-width: 640px){
  .team-media::before,
  .team-media::after{ inset: -12px; border-radius: 18px; }
  .team-media__frame{
    transform: rotate(6deg);          /* ještě menší náklon na mobilu */
    outline-width: 4px;
  }
}

.wave-between {
  position: relative;
  width: 100%;
  height: 550px;
  overflow: hidden;
}

.wave-between::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 0%,
    color-mix(in srgb, var(--color-primary) 10%, white) 25%,
    color-mix(in srgb, var(--color-primary) 50%, white) 75%,
    color-mix(in srgb, var(--color-primary) 70%, white) 100%
  );
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg width='1920' height='1280' viewBox='0 0 1920 1280' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 130C170 15 430 0 600 0C820 0 970 55 1070 95C1170 135 1330 200 1520 200C1710 200 1920 60 1920 60V1020C1820 1130 1580 1280 1310 1280C880 1280 530 1040 320 1030C110 1020 30 1090 0 1110V130Z' fill='black'/%3E%3C/svg%3E");
  -webkit-mask-size: cover;
  mask-image: url("data:image/svg+xml,%3Csvg width='1920' height='1280' viewBox='0 0 1920 1280' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 130C170 15 430 0 600 0C820 0 970 55 1070 95C1170 135 1330 200 1520 200C1710 200 1920 60 1920 60V1020C1820 1130 1580 1280 1310 1280C880 1280 530 1040 320 1030C110 1020 30 1090 0 1110V130Z' fill='black'/%3E%3C/svg%3E");
  mask-size: cover;
  opacity: 0.5;
}

.noscript-banner {
  padding: 1rem;
  background: #f8d7da;
  color: #721c24;
}

.hero-dots-fade {
  -webkit-mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.95),
    rgba(0, 0, 0, 0.55),
    transparent
  );
  mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.95),
    rgba(0, 0, 0, 0.55),
    transparent
  );
}

.video-section-title {
  line-height: 1.26;
}

.fab-call {
  margin-bottom: env(safe-area-inset-bottom);
}

.gallery-bg {
  background-repeat: no-repeat;
}

.gallery-bg-dum1 {
  background-image: url("../../photo/dum1.webp");
}

.gallery-bg-dum2 {
  background-image: url("../../photo/dum2.webp");
}

.gallery-bg-dum3 {
  background-image: url("../../photo/dum3.webp");
}

.gallery-bg-dum4 {
  background-image: url("../../photo/dum4.webp");
}

.gallery-bg-viz1 {
  background-image: url("../../photo/vizualizace1.webp");
}

.gallery-bg-viz2 {
  background-image: url("../../photo/vizualizace2.webp");
}

.gallery-bg-dum7 {
  background-image: url("../../img/dum7.jpg");
}

.gallery-bg-dum8 {
  background-image: url("../../img/dum8.jpg");
}

.gallery-bg-dum9 {
  background-image: url("../../img/dum9.jpg");
}

.gallery-bg-dum10 {
  background-image: url("../../img/dum10.jpg");
}

.download-card {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.download-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: inherit;
  background:
    radial-gradient(circle at 50% 100%, rgba(5, 159, 251, 0.22), transparent 58%),
    radial-gradient(circle at 10% 0%, rgba(5, 159, 251, 0.12), transparent 45%);
  opacity: 0;
  transition: opacity 180ms ease;
  pointer-events: none;
}

.download-card:hover,
.download-card:focus-within {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.12), 0 0 34px rgba(5, 159, 251, 0.16);
}

.download-card:hover::before,
.download-card:focus-within::before {
  opacity: 1;
}

.download-card__action {
  margin-top: auto;
  padding-top: 1.5rem;
}

.pricing-card {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.pricing-card:hover,
.pricing-card:focus-within {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.12), 0 0 34px rgba(5, 159, 251, 0.14);
}

.pricing-card--featured {
  border: 1px solid rgba(5, 159, 251, 0.32);
  box-shadow: 0 22px 55px -34px rgba(5, 159, 251, 0.45), 0 16px 34px -30px rgba(15, 23, 42, 0.32);
}

.pricing-card--featured:hover,
.pricing-card--featured:focus-within {
  border-color: rgba(5, 159, 251, 0.58);
  box-shadow: 0 24px 58px -32px rgba(5, 159, 251, 0.55), 0 18px 42px rgba(15, 23, 42, 0.12);
}

#faq details {
  transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

#faq details:hover,
#faq details:focus-within {
  background-color: #eef7ff;
  border-color: rgba(5, 159, 251, 0.7);
  box-shadow: 0 14px 32px -26px rgba(5, 159, 251, 0.55);
}

.legal-content {
  line-height: 1.75;
}

.legal-content > section + section {
  margin-top: 3rem;
}

.legal-content h2 {
  margin-bottom: 1.15rem;
}

.legal-content h3 {
  margin-top: 1.45rem;
  margin-bottom: 0.45rem;
}

.legal-content p + p,
.legal-content p + ul,
.legal-content ul + p {
  margin-top: 1rem;
}

.legal-content li + li {
  margin-top: 0.45rem;
}

@media (min-width: 768px) {
  #cenik .card {
    min-height: 100%;
  }

  #cenik .card .mt-auto {
    padding-top: 2.75rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .download-card,
  .download-card::before,
  .pricing-card {
    transition: none;
  }

  .download-card:hover,
  .download-card:focus-within,
  .pricing-card:hover,
  .pricing-card:focus-within {
    transform: none;
  }
}



  
