*,
*::before,
*::after {
  box-sizing: border-box;
  font-family: var(--font-piksel) !important;
}


html,
body {
  overflow-x: hidden;

}

@font-face {
  font-family: 'Gebuk';
  src:
    url('/assets/fonts/Gebuk-Regular.woff2') format('woff2'),
    url('/assets/fonts/Gebuk-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --font-piksel: 'Poppins', sans-serif;
  --font-custom: 'Gebuk', sans-serif;
  --brand: #60E3F0;
  --cardBorder: rgba(229, 231, 235, .25);
  --shine-1: #2bd8ea;
  --shine-2: #82f7fd;
  --shine-3: #2bd8ea;

}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-piksel) !important;
  background-color: #0A0A0A;
  max-width: 100vw;
  cursor: none;
  overflow-x: hidden;
  position: relative;
}



.custom-cursor {
  position: absolute;
  width: 25px;
  /* Standardní velikost kurzoru */
  height: 25px;
  background: radial-gradient(circle, #60E3F0, #0077B6);
  /* Vícebarevný gradient s tmavší a světlejší modrou */
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(96, 227, 240, 0.8), 0 0 20px rgba(0, 119, 182, 0.5);
  /* Přidání záře */
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  /* Vycentrování kurzoru */
  transition: transform 0.05s ease-out, background-color 0.3s ease, box-shadow 0.3s ease;
}

.line {
  position: absolute;
  width: 50px;
  /* Menší šířka linií */
  height: 50px;
  /* Menší výška linií */
  top: 50%;
  left: 50%;
  border: 2px solid rgba(96, 227, 240, 0.5);
  /* Linie kolem kurzoru */
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  /* Pod kurzorem */
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.5);
  /* Vycentrování a zmenšení */
  transition: transform 1s ease-out, opacity 1s ease-out;
}

.custom-cursor-container {
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  width: 0;
  height: 0;
  transform: translate(-50%, -50%);
}

.custom-cursor-container.hover .custom-cursor {
  background: radial-gradient(circle, #ADE8F4, #60E3F0);
  /* Změna barev při hoveru */
  width: 30px;
  /* Zvětšení při hoveru */
  height: 30px;
  box-shadow: 0 0 15px rgba(173, 232, 244, 0.8), 0 0 30px rgba(96, 227, 240, 0.5);
  /* Zesílení záře */
}

.custom-cursor-container.click .line {
  opacity: 1;
  transform: translate(-50%, -50%) scale(2) rotate(360deg);
  /* Linie se rozšiřují a otáčí */
  animation: line-spin 1s forwards;
}

@keyframes line-spin {
  0% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1) rotate(0deg);
  }

  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(2) rotate(360deg);
  }
}

a,
button,
.benefit-header,
.steps-cards,
.steps-timeline,
.gallery-nav,
.question {
  cursor: none !important;
  /* Zabrání zobrazení jiných kurzorů */
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  /* logo vlevo */
  margin: 20px;
  background: transparent;
  position: relative;
  z-index: 1000;
  padding: 0;
}

.hamburger-menu {
  cursor: pointer;
  display: none;
  /* Hide by default */
  flex-direction: column;
  gap: 5px;
  transition: transform 0.3s ease;
}

.hamburger-menu .linka {
  width: 30px;
  height: 5px;
  background: linear-gradient(90deg, #60E3F0 70%, #FFFFFF 100%);
  border-radius: 3px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger-menu.active .linka:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}

.hamburger-menu.active .linka:nth-child(2) {
  opacity: 0;
}

.hamburger-menu.active .linka:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  /* Initially hide the mobile menu */
  flex-direction: column;
  align-items: center;
  position: absolute;
  top: 60px;
  left: 0;
  width: 100%;
  background-color: transparent;
  border-radius: 0 0 20px 20px;
  padding: 20px 0;
  z-index: 999;
}

.mobile-menu.active {
  display: flex;
  /* Show the menu when active */
}

.mobile-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-menu ul li {
  margin: 10px 0;
  opacity: 0;
  transform: translateX(-100%);
  /* Start position off-screen */
  animation: slideIn 0.5s forwards;
  /* Trigger animation */
}

.mobile-menu ul li a {
  text-decoration: none;
  color: #FFFFFF;
  font-weight: 400;
  font-size: 18px;
  transition: color 0.3s ease;
}

.mobile-menu ul li a:hover {
  color: #60E3F0;
  /* Change color on hover */
}

.mobile-menu ul li:nth-child(1) {
  animation-delay: 0.2s;
}

.mobile-menu ul li:nth-child(2) {
  animation-delay: 0.4s;
}

.mobile-menu ul li:nth-child(3) {
  animation-delay: 0.6s;
}

.mobile-menu ul li:nth-child(4) {
  animation-delay: 0.8s;
}

@keyframes slideIn {
  to {
    opacity: 1;
    transform: translateX(0);
    /* End position at original place */
  }
}

.navbar-glow {
  position: absolute;
  top: -1200px;
  /* Move it off-screen */
  left: -1200px;
  /* Move it off-screen */
  width: 2000px;
  height: 2000px;
  background: radial-gradient(circle, rgb(96, 228, 240), #0A0A0A, transparent);
  border-radius: 50%;
  z-index: -1000;
  /* Behind the navbar content */
  opacity: 0.2;
}

.logo img {
  width: 150px;
}

.nav-container {
  display: flex;
  align-items: center;
  margin-left: auto;
  /* tlačí odkazy doprava vedle tlačítka */
  border: 1px solid #E5E7EB;
  border-radius: 50px;
  backdrop-filter: blur(20px);
  padding: 10px 31px;
}

/* Vlastní seznam odkazů */
.nav-links ul {
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links ul li a {
  position: relative;
  color: #FFFFFF;
  text-decoration: none;
  font-weight: 400;
  padding-left: 12px;
  /* prostor pro tečku */
}

.nav-links ul li a .nav-dot {
  display: none;
}

/* Aktvní tečka vlevo */
.nav-links ul li a.activated .nav-dot {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: #60E3F0;
  border-radius: 50%;
  display: inline-block;
}

/* CTA tlačítko zůstává venku */
.cta {
  margin-left: 20px;
}

.cta .button {
  padding: 10px 20px;
  border: 2px solid #60E3F0;
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 50px;
}

.clients-section {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 150px;
  margin-top: 15px;
  /* Closer to the hero text */
  margin-bottom: 0px;
  /* Margin to move it closer to the text */
}

.accepting-clients {
  backdrop-filter: blur(20px);
  border-radius: 50px;
  border: 1px solid #ffffff80;
  background: linear-gradient(134.18deg, #171717cc 9.2%, #1717170d 97.9%);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 330px;
  height: 39px;
}

.clients-announcement {
  display: flex;
  align-items: center;
}

.ellipse {
  border-radius: 50%;
  background: #60e3f0;
  width: 10px;
  height: 10px;
  margin-right: 10px;
  animation: blink 2s infinite;
}

.clients-announcement p {
  font-size: 16px;
  color: #fff;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
    box-shadow: 0 0 1px 2px #60e3f0b3;
    filter: brightness(1.5);
  }

  50% {
    opacity: 0.5;
    box-shadow: none;
    filter: brightness(1);
  }
}

.social-icons-mobile {
  display: none;
  /* Výchozí nastavení - neviditelné */
}

.hero {
  margin-top: -50px;
  text-align: center;
  padding: 50px 20px;

  position: relative;
  /* For positioning the hero glow */

}

.hero h1 {
  text-align: center;
  overflow-wrap: break-word;
  font-weight: 700;
  font-size: 68px;
  letter-spacing: -1.4px;
  line-height: 1.206;
  background: linear-gradient(90deg, #585858, #FFFFFF, #585858);
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  margin: 0 auto 30px auto;
  /* Center and margin */
  max-width: 90%;
  /* Limiting the width */
}

.hero .first-line {
  display: inline-block;
}

.hero .second-line {
  display: inline-block;
}

.hero p {
  text-align: center;
  overflow-wrap: break-word;
  font-weight: 300;
  font-size: 24px;
  letter-spacing: 0.2px;
  line-height: 1.5;
  color: #c4c4c4;
  margin: 0 auto 30px auto;
  /* Center and margin */
  max-width: 70%;
  /* Limiting the width */
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 60px;
}

.hero-buttons .primary-button {
  margin: 0;
  /* gap se dělá flexem */
}

.primary-button {
  padding: 15px 30px;
  background-color: transparent;
  color: #FFFFFF;
  border: 3px solid #60E3F0;
  /* Modrá barva borderu */
  border-radius: 50px;
  text-decoration: none;
  font-size: 500;
  font-size: 24px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.primary-button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 10px #60E3F0;

}



/* === BASE === */
.services-page {
  color: #fff;
  overflow-x: hidden;
}

.services-page .muted {
  color: #DADDDD;
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.title-gradient {
  text-align: center;
  margin: 32px 0 6px;
  font-size: 68px;
  font-weight: 800;
  background: linear-gradient(90deg, #9ca3af, #ffffff, #9ca3af);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.subtitle {
  text-align: center;
  color: #DADDDD;
  margin: 0 0 18px;
}

/* Segmented tabs */
.segmented {
  position: relative;
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  padding: 6px;
  border: 1px solid #E5E7EB40;
  border-radius: 999px;
  backdrop-filter: blur(12px);
  margin: 12px auto 0;
  width: fit-content;
  z-index: 9999;
}

.segmented [role="tab"] {
  padding: 10px 18px;
  border-radius: 999px;
  border: 0;
  background: transparent;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.segmented [aria-selected="true"] {
  border: 2px solid #60E3F0;
  box-shadow: 0 0 0 2px rgba(96, 227, 240, .12) inset;
}

.service-panel {
  padding: 32px 0 96px;
}

.service-panel[hidden] {
  display: none;
}

.service-panel.is-active {
  display: block;
}

.panel-head h2 {
  margin: 20px 0 10px;
  font-size: 36px;
  color: #fff;
  font-weight: 500;
  text-align: center;
}

.panel-head p {
  margin: 0 0 10px;
  text-align: center;
}

.chips {
  list-style: none;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding: 0;
  margin: 10px 0 0;
  justify-content: center;
}

.chips li {
  border: 1px solid #E5E7EB4d;
  border-radius: 999px;
  padding: 6px 12px;
  background: rgba(23, 23, 23, .3);
  color: #fff;
}

/* === WHY-US (emoce) === */
.why-us {
  padding: 16px 0 8px;
}

.why-title {
  text-align: center;
  margin: 50px 0 40px;
  font-size: 48px;
  font-weight: 500;
}

.why-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, minmax(180px, 1fr));
}

.why-card {
  border: 1px solid rgba(229, 231, 235, .35);
  border-radius: 16px;
  padding: 16px 18px;
  background: linear-gradient(134deg, rgba(23, 23, 23, .55), rgba(23, 23, 23, .25));
}

.why-card h3 {
  margin: 0 0 6px;
  font-size: 18px;
  color: #fff;
}

.why-card p {
  margin: 0;
  color: #DADDDD;
}

/* === Top references === */
.top-refs .eyebrow {
  margin: 50px 0 20px;
  text-align: center;
  font-size: 36px;
  font-weight: 500;
}

.top-refs-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
}

.ref-card {
  display: flex;
  gap: 12px;
  align-items: center;
  text-decoration: none;
  color: #fff;
  border: 1px solid rgba(229, 231, 235, .35);
  border-radius: 16px;
  padding: 10px 12px;
  background: rgba(23, 23, 23, .28);
  transition: transform .2s;
}

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

.ref-thumb {
  width: 92px;
  height: 64px;
  border-radius: 10px;
  background-size: cover;
  background-position: center;
  flex: 0 0 92px;
}

.ref-meta strong {
  display: block;
  margin-bottom: 6px;
}

.stats {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.stat {
  border: 1px solid #60E3F04d;
  color: #60E3F0;
  border-radius: 999px;
  padding: 3px 8px;
  font-size: 12px;
}

/* === Cards grid === */
.panel-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(260px, 1fr));
  gap: 18px;
  margin: 18px 0 28px;
  align-items: stretch;
}

.card {
  border: 1px solid rgba(229, 231, 235, .35);
  border-radius: 20px;
  padding: 16px 18px;
  height: 100%;
  background: linear-gradient(134deg, rgba(23, 23, 23, .55), rgba(23, 23, 23, .25));
}

.card h3 {
  margin: 0 0 8px;
  font-size: 20px;
  color: #fff;
}

.card p {
  margin: 0;
}

.list {
  margin: 0;
  padding-left: 18px;
  color: #DADDDD;
}

.list li {
  margin: 6px 0;
}

.list-compact li {
  margin: 4px 0;
}

.tags {
  list-style: none;
  display: flex;
  gap: 8px;
  padding: 0;
  margin: 10px 0 0;
  flex-wrap: wrap;
}

.tags li {
  border: 1px solid #60E3F04d;
  color: #60E3F0;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 12px;
}

/* CTA karta – pěkné zarovnání */
.card.cta {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px;
  min-height: 190px;
}

.card.cta .primary-button {
  margin-top: auto;
}

.del-title {
  font-size: 32px;
  font-weight: 500;
  text-align: center;
}

/* Balíčky */
.pricing-packs {
  margin: 28px 0 40px;
  color: #fff;
}

.pricing-packs .pricing-heading {
  margin: 50px 0 20px;
  font-size: 36px;
  color: #FFF;
  opacity: .95;
  font-weight: 500;
  text-align: center;
}

/* grid */
.packs-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(260px, 1fr));
  gap: 18px;
}

/* card */
.pack-card {
  position: relative;
  border: 1px solid var(--cardBorder);
  border-radius: 22px;
  overflow: hidden;
  padding: 18px 18px 16px;
  background:
    linear-gradient(180deg, var(--cardBgA) 0%, var(--cardBgB) 55%, rgba(96, 227, 240, .06) 100%);
  backdrop-filter: blur(6px) saturate(115%);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.pack-card::after {
  /* soft bottom glow */
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 38%;

  pointer-events: none;
}

.pack-card:hover {
  transform: translateY(-2px);
  border-color: rgba(96, 227, 240, .35);
  box-shadow: 0 8px 28px rgba(0, 0, 0, .25), 0 0 0 1px rgba(96, 227, 240, .08) inset;
}

/* top block */
.pack-top {
  text-align: center;
  padding-bottom: 8px;
}

.pack-num {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--brand);
  color: var(--brand);
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 10px;
}

.pack-title {
  margin: 0 0 8px;
  line-height: 1.06;
  text-transform: uppercase;
  letter-spacing: .5px;
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 500;
}

.pack-title span {
  display: block;
}

.pack-desc {
  margin: 0 0 12px;
  color: #DADDDD;
  font-size: 14.5px;
}

/* price */
.pack-price {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 8px;
  margin: 2px 0 8px;

}

.price-label {
  color: #ADB1B1;
  font-size: 13px;
}

.price-value {
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 500;
  letter-spacing: .3px;

  /* gradient jako text */
  background: linear-gradient(90deg, var(--shine-1), var(--shine-2), var(--shine-3));
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  /* pro většinu prohlížečů */
  -webkit-text-fill-color: transparent;
  /* pro Safari */

  /* jemný glow kolem čísla */
  text-shadow: 0 0 10px rgba(96, 227, 240, .18);

  /* ANIMOVANÝ lesk (můžeš vypnout, viz poznámka níže) */
  animation: priceShine 4s ease-in-out infinite;
}

/* pokud chceš statický gradient bez animace, smaž řádek "animation" výše */

@keyframes priceShine {
  0% {
    background-position: 0% 0;
  }

  50% {
    background-position: 100% 0;
  }

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

.price-currency {
  margin-left: 2px;
  font-weight: 500;
  opacity: .95;
}

.pack-sep {
  width: 64px;
  height: 1px;
  border: 0;
  margin: 8px auto 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .35), transparent);
}

/* features list */
.pack-features {
  list-style: none;
  padding: 10px 2px 8px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 15px;
  color: #EDEDED;
}

.pack-features li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.i-check {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  margin-top: 1px;
  background-color: var(--brand);
  mask: url('/assets/vectors/check-square.svg') no-repeat center;
  -webkit-mask: url('/assets/vectors/check-square.svg') no-repeat center;
  mask-size: contain;
  -webkit-mask-size: contain;
  filter: drop-shadow(0 0 6px rgba(96, 227, 240, .35));
}

/* note */
.pack-note {
  margin: 12px 2px 0;
  font-size: 13px;
  color: #ADB1B1;
  display: flex;
  align-items: center;
  gap: 8px;
}

.note-dot {
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid rgba(229, 231, 235, .45);
  font-size: 12px;
  color: #DADDDD;
  line-height: 1;
}

.projects-section h3 {
  margin: 50px 0 20px;
  text-align: center;
  font-size: 36px;
  font-weight: 500;
  justify-self: center;
}

.projects-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(2, minmax(260px, 1fr));
}

.project-card {
  display: block;
  border-radius: 18px;
  overflow: hidden;
}

.card-image {
  width: 100%;
  aspect-ratio: 16/9;
  background-size: cover;
  background-position: center;
}

.project-caption {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #fff;
  margin-top: 10px;
}

.caption-arrow {
  width: 18px;
  height: 18px;
  transform: rotate(-135deg);
}

.more-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #fff;
  border: 2px solid #60E3F0;
  border-radius: 999px;
  padding: 10px 18px;
}

.more-arrow {
  width: 16px;
  height: 16px;
  transform: rotate(-135deg);
}

/* Primární button (tvůj) */
.primary-button {
  padding: 14px 26px;
  border-radius: 50px;
  border: 3px solid #60E3F0;
  background: transparent;
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  transition: transform .25s, box-shadow .25s;
}

.primary-button:hover {
  transform: translateY(-1px) scale(1.03);
  box-shadow: 0 0 12px #60E3F0;
}

/* PRIDAT MEDIA QUERRIES */

/* ===== projects-section ===== */
.projects-section {
  text-align: center;
  margin: 80px auto 120px;
  max-width: 1200px;
}

.projects-section h3 {
  font-family: var(--font-piksel);
  color: #FFFFFF;
  text-align: start;
}

/* grid karet */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 50px;
  row-gap: 50px;
}

/* wrapper jednoho projektu */
.project-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* samotná „karta“ jen obrázek */
.project-card {
  width: 100%;
  border: 1px solid #E5E7EB;
  /* přidaný border */
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
}

.card-image {
  width: 100%;
  padding-top: calc(295 / 593 * 100%);
  /* poměr 593×295 */
  background-size: cover;
  background-position: center;
}

/* nadpis + šipka pod kartou */
.project-caption {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  font-family: var(--font-piksel);
  font-size: 24px;
  color: #FFFFFF;
  text-decoration: none;
}

.caption-arrow {
  width: 24px;
  height: 24px;
  transform: rotate(-135deg);
  /* ukazuje Severovýchod */
  transition: transform 0.3s;
}

.project-caption:hover .caption-arrow {
  transform: rotate(-135deg) translate(4px, -4px);
}

/* „Další…“ tlačítko jako scroll šipka/oval */
.projects-more {
  margin-top: 40px;
}

.more-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 24px;
  border: 1px solid #FFFFFF;
  border-radius: 50px;
  font-family: var(--font-piksel);
  font-size: 18px;
  color: #FFFFFF;
  text-decoration: none;
  transition: background-color 0.3s;
}

.more-arrow {
  width: 20px;
  height: 20px;
  transform: rotate(-90deg);
  /* šipka doprava */
}

.more-button:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.faq-title {
  text-align: center;
  font-size: 48px;
  font-weight: 500;
  color: white;
  margin-bottom: 20px;
}

.faq-description {
  text-align: center;
  font-size: 18px;
  color: #ADB1B1;
  margin-bottom: 40px;
}

.faq-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 50px;
  max-width: 1100px;
  margin: 0 auto;
}

.faq-questions {
  display: flex;
  flex-direction: column;
  width: 550px;
  margin-right: 60px;
}


.faq-answers-mobile {
  display: none;
}

.desktop-faq {
  width: 500px;
}

.question {
  font-size: 20px;
  font-weight: 500;
  padding: 20px;
  margin-bottom: 10px;
  background-color: rgba(23, 23, 23, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 25px;
  cursor: pointer;
  overflow: hidden;
}

.question.active {
  border: 2px solid #60E3F0;
}

.faq-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #FFFFFF;
}

.faq-arrow {
  display: inline-block;
  transition: transform 0.3s ease;
  border: solid #fff;
  border-width: 0 3px 3px 0;
  padding: 3px;
  width: 15px;
  height: 15px;
  transform: rotate(-45deg);
  margin-bottom: 5px;
}

.question.active .faq-arrow {
  transform: rotate(320deg);
}

.answer {
  margin-top: 30px;
  text-align: left;
  display: none;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  color: #FFFFFF;
  overflow-wrap: break-word;
}

.answer.active {
  display: block;
}

.arrow {
  display: inline-block;
  transition: transform 0.3s;
  border: solid #fff;
  border-width: 0 3px 3px 0;
  padding: 3px;
  width: 15px;
  height: 15px;
  transform: rotate(45deg);
  margin-bottom: 5px;
}

/*GLOWS*/
.glow-1 {
  position: absolute;
  top: 600px;
  /* Move it off-screen */
  right: -1000px;
  /* Move it off-screen */
  width: 2000px;
  height: 2000px;
  background: radial-gradient(circle in lch, rgb(96, 228, 240), #0A0A0A, transparent);
  border-radius: 50%;
  z-index: -1;
  /* Behind the navbar content */
  opacity: 0.2;
}

/*CALL RSERVE*/

.reserve-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 120px auto 100px auto;
  text-align: left;
  max-width: 900px;
  /* Maximální šířka celé sekce */
  padding: 0 0px 0 0px;
  /* Přidání marginů ze stran */
}

.reserve-section-text {
  max-width: 383px;
}

.reserve-section-text h2 {
  display: inline-block;
  text-align: center;
  overflow-wrap: break-word;
  font-weight: 500;
  font-size: 48px;
  line-height: 1.2;
  color: #FFFFFF;
  margin-bottom: 0px;
}

.reserve-section-text p {
  text-align: center;
  overflow-wrap: break-word;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: #ADB1B1;
}

.reserve-section-image-button {
  display: flex;
  flex-direction: column;
  /* Obrázek nad tlačítkem */
  align-items: center;
  gap: 20px;

}

.reserve-section-image {
  width: 80px;
  height: 60px;
  filter: grayscale(100%);
}

.reserve-section-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.reserve-section-button {
  text-align: center;
  padding: 15px 30px;
  border-radius: 50px;
  border: 2px solid #60E3F0;
  text-decoration: none;
  width: 300px;
  overflow-wrap: break-word;
  font-weight: 700;
  font-size: 35px;
  line-height: 1;
  color: #FFFFFF;

}

/*SHAPING*/

.highlight-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px 0;

}

.highlight-content {
  text-align: center;
}

.highlight-text h2 {
  font-weight: 400;
  font-size: 72px;
  line-height: 1.333;
  color: #fff;
  margin: 0;
  font-family: var(--font-custom) !important;
}

.highlight-text h2 .blue {
  font-family: var(--font-custom) !important;
  color: #05DCF1;

}

.action-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
}

.scroll-to-top {
  backdrop-filter: blur(24.8px);
  border-radius: 50px;
  border: 3.2px solid #60E3F0;
  background: linear-gradient(90deg, rgba(23, 23, 23, 0.5), rgba(23, 23, 23, 0.5));
  width: 210px;
  padding: 10px 20px 10px 20px;
  box-sizing: border-box;
  color: #fff;
  font-weight: 500;
  font-size: 15px;
}


.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons img {
  width: 30px;
  height: 30px;
}

.social-icons img:hover {
  opacity: 0.7;
}

/*FOOTER*/
footer {
  position: relative;
}

.footer-section {
  margin-top: 180px;

  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  width: 100%;
  padding: 0 40px;
}

.footer-logo img {
  height: 30px;
  /* Nastavení velikosti loga */
}

.footer-copyright p {
  font-weight: 400;
  font-size: 14px;
  color: #DADDDD;
}

@media (max-width: 1200px) {
  .why-grid {
    grid-template-columns: repeat(2, minmax(180px, 1fr));
  }

  .top-refs-grid {
    grid-template-columns: 1fr;
  }

  .panel-grid {
    grid-template-columns: repeat(2, minmax(260px, 1fr));
  }

  .packages {
    grid-template-columns: repeat(2, minmax(220px, 1fr));
  }

  .timeline {
    grid-template-columns: repeat(3, minmax(160px, 1fr));
  }
}

@media (max-width: 1020px) {
  .panel-grid {
    grid-template-columns: 1fr;
  }

  .packages {
    grid-template-columns: 1fr;
  }

  .cases {
    grid-template-columns: 1fr;
  }

  .packs-grid {
    grid-template-columns: repeat(2, minmax(260px, 1fr));
  }
}

@media screen and (max-width: 768px) {
  body {
    cursor: auto;

  }

  .glow-1 {
    position: absolute;
    top: 600px;
    /* Move it off-screen */
    right: -533px;
    /* Move it off-screen */


  }


  .custom-cursor-container {
    display: none !important;
    /* Skryje celý custom cursor */
  }

  /*NAVBAR*/

  .nav-container {
    border: none;
  }

  .nav-links,
  .cta {
    display: none;
  }

  .hamburger-menu {
    display: flex;
    background-color: transparent;
  }

  .mobile-menu ul li {
    opacity: 0;
    transform: translateX(-100%);
    animation: slideIn 0.5s forwards;
  }

  .navbar {
    border: none;
    margin: 20px;

  }

  .social-icons-mobile {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
    z-index: 1000;
    position: relative;
  }


  /* Move content when mobile menu is active */
  .content {
    transition: margin-top 0.3s ease;
  }

  .content.shifted {
    margin-top: 200px;
    /* Dynamically adjusted with JavaScript */
  }

  .first-line,
  .second-line {
    font-size: 40px;
    display: inline;
    line-height: 1.2;
  }

  .hero p {
    max-width: 95%;
    font-size: 16px;
  }

  /*SERVICES DETAIL*/



  .panel-grid,
  .packages,
  .projects-grid {
    grid-template-columns: 1fr;
  }

  .why-title {
    font-size: 36px;
  }

  .projects-section h3 {
    font-weight: 500;
    font-size: 25px;
    text-align: center;
  }

  .projects-section span {
    font-size: 18px;

  }

  .timeline,
  .timeline.small {
    grid-template-columns: repeat(2, minmax(150px, 1fr));
  }

  .panel-head h2,
  .top-refs .eyebrow,
  .pricing-packs .pricing-heading,
  .projects-section h3, .del-title {
    font-size: 28px;
  }

  /*FAQ*/
  .faq-container {
    flex-direction: column;
    padding: 20px;
    margin-top: 0px;
    width: 100%;
  }

  .faq-title {
    font-size: 36px;
  }

  .faq-questions {
    width: 100%;
  }

  .desktop-faq {
    display: none;
  }

  .faq-answers-mobile {
    display: block;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .faq-answers-mobile .question.active .answer {
    display: block;
  }

  .question {
    font-size: 16px;
  }

  .answer {
    font-size: 14px;
  }

  .arrow {
    transform: rotate(45deg);

  }

  .faq-answers-mobile .question.active .arrow {
    transform: rotate(-135deg);
  }

  /*CALL RESERVE*/

  .reserve-section {
    flex-direction: column;
    text-align: center;
    padding: 0 20px;
    /* Zmenšení marginů pro mobilní verzi */
  }

  .reserve-section-text h2 {
    font-size: 36px;
  }

  .reserve-section-image-button {
    gap: 10px;
  }


  /*Shaping*/

  .highlight-section {
    margin-bottom: 80px;
    margin-top: 100px;
    padding: 20px 0;
    font-family: var(--font-custom) !important;
  }

  .highlight-text h2 {
    font-size: 36px;
  }

  .action-row {
    flex-direction: column;
    gap: 10px;
  }

  .scroll-to-top {
    font-size: 14px;
    padding: 8px 16px;
  }

  .social-icons img {
    width: 24px;
    height: 24px;
  }

  /*FOOTER*/
  .footer-section {
    padding: 0;
    margin-top: 80px;
  }

  .footer-content {
    flex-direction: column;
    justify-content: center;
  }

  .footer-logo {
    margin-bottom: 10px;

  }

  .footer-copyright p {
    text-align: center;

  }
}

@media (max-width: 680px) {
  .packs-grid {
    grid-template-columns: 1fr;
  }

  .pack-card {
    padding: 16px;
  }
}

@media (max-width: 520px) {
  .why-grid {
    grid-template-columns: 1fr;
  }

  .timeline,
  .timeline.small {
    grid-template-columns: 1fr;
  }
}