@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap");

/*----- VARIABLES CSS -----*/
/* Colors */
:root {
  --first-color: #1fb6ff; /* hlavní azurová */
  --black-color: #020617; /* hodně tmavá modročerná (příjemnější než čistě #000) */
  --white-color: #ffffff;
  --title-weight: 700;
  --subtitle-weight: 600;
  --text-weight: 400;
}

/* Font and typography */
:root {
  --body-font: "Montserrat", sans-serif;
  --h1-font-size: 2.5rem;
  --h2-font-size: 1rem;
  --normal-font-size: 0.93rem;
  --small-font-size: 0.81rem;
}

@media screen and (min-width: 768px) {
  :root {
    --h1-font-size: 4.5rem;
    --h2-font-size: 2rem;
    --normal-font-size: 1rem;
    --small-font-size: 1.37rem;
  }
}

/* z-index */
:root {
  --z-back: -10;
  --z-normal: 1;
  --z-tooltip: 10;
  --z-fixed: 100;
  --z-modal: 1000;
}

/*----- BASE -----*/
*,
::before,
::after {
  box-sizing: border-box;
}

body {
  margin: 3rem 0 0 0;
  font-family: var(--body-font);
  background-color: var(--black-color);
  color: var(--white-color);
  font-weight: 700;
}

h1,
h2 {
  margin: 0;
}

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

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

/*----- LAYOUT -----*/
.bd-grid {
  max-width: 1200px;
  margin-left: 1rem;
  margin-right: 1rem;
}

.l-header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--z-fixed);
  background-color: var(--black-color);
}

/*----- NAVIGATION -----*/
.nav {
  height: 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
}

.nav__logo {
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  color: var(--white-color) !important;
}

.nav__toggle {
  background: transparent; /* žádná šedá */
  border: none; /* bez rámečku */
  padding: 0; /* bez vnitřního odsazení */
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem; /* velikost ikonky */
  color: #f9fafb; /* nebo tvoje var(--text-color) */
}

/* volitelné – schovat modrý outline, když klikneš myší */
.nav__toggle:focus {
  outline: none;
}

/* FULLSCREEN MENU */
.nav__menu {
  position: fixed;
  inset: 0;
  background: radial-gradient(
    circle at top,
    rgba(31, 182, 255, 0.28),
    rgba(2, 6, 23, 0.96)
  );
  backdrop-filter: blur(6px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: translateY(-100%);
  transition: transform 0.5s ease;
  z-index: 9999;
}

/* Otevřené menu (.show přidává JS) */
.show {
  transform: translateY(0);
}

/* Položky menu uvnitř fullscreen overlaye */
.nav__list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  text-align: center;
  margin-bottom: 3rem;
}

.nav__item {
  display: block;
}

.nav__link {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--white-color);
  font-weight: 700;
  letter-spacing: 0.12em;
}

.nav__link:hover {
  opacity: 0.6;
}

/* Telefon v overlay menu */
.nav__phone {
  text-align: center;
  color: var(--white-color);
}

.nav__phone span {
  display: block;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  opacity: 0.75;
  margin-bottom: 0.4rem;
}

.nav__phone a {
  font-size: 2rem;
  font-weight: 700;
  color: var(--white-color);
}

/*----- HOME -----*/
.l-main {
  height: calc(100vh - 3rem);
  background-color: var(--black-color);
}

.home {
  position: relative;           /* <<< přidat */
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: max-content max-content;
  align-content: space-around;
  row-gap: 2.3rem;
  height: 100%;
  font-weight: 700;
}

.home__information {
  padding-left: 1.5rem;
  border-left: 5px solid var(--white-color);
  z-index: var(--z-tooltip);
}

.home__pressent {
  font-size: var(--small-font-size);
}

.home__title {
  font-size: var(--h1-font-size);
}

.home__skill {
  font-size: var(--h2-font-size);
}

.home__button {
  display: inline-block;
  margin-top: 1.5rem;
  font-size: 0.78rem;
  color: var(--white-color);
  padding: 0.7rem 1.3rem;
  border-radius: 999px;
  background: var(--first-color);
  box-shadow: 0 10px 30px rgba(31, 182, 255, 0.3);
}

.home__img {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 291px;
  z-index: var(--z-normal);
}

.home__social {
  position: absolute;
  left: 1.5rem;
  bottom: 2.5rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  z-index: var(--z-tooltip);
}

/* kruhové ikonky jako v kontaktní sekci */
.home__social-link {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(226, 232, 240, 0.95);
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.home__social-icon {
  font-size: 1.3rem;
}

.home__social-link ion-icon {
  font-size: 1.35rem;
}

.home__social-link:hover {
  border-color: var(--first-color);
  background: rgba(31, 182, 255, 0.12);
  color: var(--first-color);
}


.home__description {
  font-size: var(--normal-font-size);
  font-weight: 400;
  margin-top: 1rem;
  max-width: 520px;
  line-height: 1.6;
}

/*----- MEDIA QUERIES HERO -----*/
@media screen and (min-width: 768px) {
  body {
    margin: 0;
  }

  .l-main {
    height: 100vh;
  }

  .nav {
    height: 4rem;
  }

  .home {
    grid-template-rows: max-content 20px;
    align-content: center;
  }

  .home__information {
    margin-top: 2rem;
  }

  .home__img {
    width: 553px;
    right: 5%;
  }
}

@media screen and (min-width: 1200px) {
  .bd-grid {
    margin-left: auto;
    margin-right: auto;
  }
}

/*----- INTRO OVERLAY ANIMATION -----*/
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: var(--z-modal);
}

.first {
  background-color: var(--first-color);
}

.second {
  background-color: var(--first-color);
  left: 33.3%;
}

.third {
  background-color: var(--first-color);
  left: 66.6%;
}

/* ========== SEKCE O MNĚ ========== */

.about {
  padding: 5rem 0 4rem;
  background-color: var(--black-color);
  color: var(--white-color);
  position: relative;
  overflow: hidden; /* schová pruh, když odjede */
}

/* Základ pro všechny section wipe efekty */
.section-wipe {
  position: absolute;
  top: 0;
  left: -20%; /* posuneme doleva, aby šikmá hrana nebyla vidět */
  height: 120%; /* o něco větší, aby pokryl sekci i při natočení */
  width: 0;
  z-index: 5;
  pointer-events: none;
  background: #1fb6ff;
  transform: skewX(-18deg); /* <<< toto vytvoří krásné "/" */
  transform-origin: left top; /* kotva pro animaci */
  opacity: 0;
}

.about__wrap {
  display: grid;
  grid-template-columns: auto minmax(0, 2.4fr) minmax(0, 2fr);
  gap: 3rem;
  align-items: flex-start;
}

/* Levý vertikální panel */
.about__left {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about__label {
  font-family: var(--body-font);
  font-weight: 700;
  font-size: 1.9rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: #e5e7eb;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.about__bar {
  width: 2px;
  height: 120px;
  margin-top: 1.8rem;
  background: rgba(148, 163, 184, 0.8);
}

/* Hlavní text */
.about__main {
  max-width: 640px;
}

.about__title {
  font-family: var(--body-font);
  font-weight: 600;
  font-size: 2.6rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.3rem;
}

.about__text {
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 0.9rem;
  color: rgba(226, 232, 240, 0.9);
}

.about__list {
  margin-top: 0.8rem;
  padding-left: 1.2rem;
  font-size: 1rem;
  color: rgba(226, 232, 240, 0.9);
}

.about__list li {
  margin-bottom: 0.3rem;
}

/* Pravá citace */
.about__quote {
  padding-left: 2.5rem;
  border-left: 2px solid rgba(148, 163, 184, 0.45);
}

.about__quote-mark {
  display: block;
  font-size: 3.5rem;
  line-height: 1;
  color: rgba(148, 163, 184, 0.7);
  margin-bottom: 0.4rem;
}

.about__quote-text {
  font-size: 1.25rem;
  font-weight: 400;
  font-style: italic;
  line-height: 1.8;
  color: rgba(148, 163, 184, 0.9);
  border-color: #1fb6ff; /* tvoje hlavní tyrkysová */
}

/* Responsivita O MNĚ */
@media screen and (max-width: 992px) {
  .about__wrap {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 2.5rem;
  }

  .about__quote {
    grid-column: 1 / -1;
    padding-left: 0;
    border-left: none;
    border-top: 2px solid rgba(148, 163, 184, 0.45);
    margin-top: 1rem;
    padding-top: 1.5rem;
  }
}

@media screen and (max-width: 768px) {
  .about {
    padding: 3.5rem 0 3rem;
  }

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

  .about__left {
    flex-direction: row;
    align-items: center;
    margin-bottom: 0.5rem;
  }

  .about__label {
    writing-mode: horizontal-tb;
    transform: none;
    font-size: 0.95rem;
    letter-spacing: 0.25em;
  }

  .about__bar {
    width: 60px;
    height: 2px;
    margin-top: 0;
    margin-left: 1rem;
  }

  .about__title {
    font-size: 2rem;
  }

  .about__quote-text {
    font-size: 1.05rem;
  }
}

/* ========== SEKCE SLUŽBY ========== */

.services {
  padding: 5rem 0 4rem;
  background-color: var(--black-color);
  color: var(--white-color);
}

/* SLUŽBY – wipe efekty */
/* Tady jednoduchý pravoúhlý wipe bez zkosení, aby se to na mobilech nechovalo divně */
.services {
  position: relative;
  overflow: hidden;
}

.section-wipe--services {
  position: absolute;
  inset: 0; /* top:0; right:0; bottom:0; left:0; */
  z-index: 5;
  pointer-events: none;
  background: #1fb6ff;
  opacity: 0;
  transform: translateX(100%); /* start mimo plochu, bez žádného skew */
}

/* Motto v sekci SLUŽBY ve stylu O MNĚ */
.services__quote {
  margin-top: 2rem;
  padding-left: 2rem;
  border-left: 2px solid rgba(148, 163, 184, 0.45);
}

.services__quote-mark {
  display: block;
  font-size: 3rem;
  line-height: 1;
  color: rgba(148, 163, 184, 0.7);
  margin-bottom: 0.4rem;
}

.services__quote-text {
  font-size: 1.25rem;
  font-weight: 400;
  font-style: italic;
  line-height: 1.7;
  color: rgba(148, 163, 184, 0.9);
}

/* Mobilní verze */
@media screen and (max-width: 768px) {
  .services__quote {
    padding-left: 1rem;
    border-left-width: 1px;
  }

  .services__quote-text {
    font-size: 1.05rem;
  }
}

/* Kicker SLUŽBY nad sekcí */
.services__header {
  margin-bottom: 3rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.services__kicker {
  font-family: var(--body-font);
  font-weight: 700;
  font-size: 1.35rem; /* zvětšeno pro stejný vizuální efekt */
  letter-spacing: 0.35em; /* stejné jako O MNĚ */
  text-transform: uppercase;
  color: #e5e7eb;
  margin-bottom: 0.3rem;
}

.services__line {
  flex-grow: 1;
  height: 2px;
  background: rgba(148, 163, 184, 0.55);
}

/* Grid pro obrázek + text */
.services__wrap {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 2.2fr);
  gap: 3rem;
  align-items: center;
}

/* Obrázek vlevo */
.services__image-inner {
  position: relative;
  border-radius: 1.2rem;
  overflow: hidden;
  background: transparent;
  box-shadow: 0 28px 60px rgba(15, 23, 42, 0.6);
}

.services__image-inner img {
  width: 100%;
  height: 100%; /* necháme obrázek přirozeně růst na výšku */
  display: block;
  object-fit: cover; /* ať se hezky celý vejde do boxu */
}

/* Text vpravo */
.services__content {
  max-width: 720px;
}

.services__title {
  font-family: var(--body-font);
  font-weight: 600;
  font-size: 2.3rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}

.services__intro {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  margin-bottom: 1rem;
  color: rgba(226, 232, 240, 0.9);
}

.services__list {
  margin-top: 0.5rem;
  padding-left: 1.2rem;
  font-size: 0.95rem;
  color: rgba(226, 232, 240, 0.92);
}

.services__list li {
  margin-bottom: 0.35rem;
}

/* Rolling lišta */
.services__ticker {
  margin-top: 1.8rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(148, 163, 184, 0.35);
  overflow: hidden;
}

.services__ticker-track {
  display: inline-flex;
  gap: 2.4rem;
  white-space: nowrap;
  animation: services-ticker 22s linear infinite;
}

.services__ticker-track span {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(148, 163, 184, 0.9);
}

@keyframes services-ticker {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Responsivita SLUŽBY */
@media screen and (max-width: 992px) {
  .services__wrap {
    gap: 2.5rem;
  }
}

@media screen and (max-width: 768px) {
  .services {
    padding: 3.5rem 0 3.5rem;
  }

  .services__header {
    margin-bottom: 2rem;
  }

  .services__kicker {
    font-size: 0.8rem;
    letter-spacing: 0.22em;
  }

  /* jen text, bez obrázku */
  .services__wrap {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .services__image-inner {
    display: none; /* <<< obrázek úplně pryč na mobilech */
  }

  .services__title {
    font-size: 1.8rem;
  }

  .services__content {
    max-width: 100%;
  }
}

@media screen and (max-width: 480px) {
  .bd-grid {
    margin-left: 1.2rem;
    margin-right: 1.2rem;
  }

  .services__content {
    max-width: 100%;
  }

  .services__intro,
  .services__list,
  .service-eco__text {
    font-size: 0.9rem;
    line-height: 1.6;
  }
}

/* ========== SEKCE CENÍK ========== */

.pricing {
  padding: 5rem 0 4rem;
  background-color: var(--black-color);
  color: var(--white-color);
}
/* CENÍK – wipe efekt */
.pricing {
  position: relative;
  overflow: hidden; /* ať pruh nečouhá ven, když je v animaci */
}

.section-wipe--pricing {
  position: absolute;
  top: 0;
  left: 0;
  height: 120%;
  width: 120%;
  z-index: 5;
  pointer-events: none;

  background: #1fb6ff; /* stejná tmavá barva jako intro/O MNĚ */
  transform: skewX(-18deg); /* stejné zešikmení */
  transform-origin: left top;

  opacity: 0; /* v klidu neviditelný */
}

.pricing__wrap {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 3rem;
  align-items: flex-start;
}

/* Levý vertikální panel (jako O MNĚ) */
.pricing__left {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pricing__label {
  font-family: var(--body-font);
  font-weight: 700;
  font-size: 1.9rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: #e5e7eb;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.pricing__bar {
  width: 2px;
  height: 120px;
  margin-top: 1.8rem;
  background: rgba(148, 163, 184, 0.8);
}

/* Hlavní obsah vpravo */
.pricing__main {
  max-width: 100%;
}

.pricing__title {
  font-family: var(--body-font);
  font-weight: 600;
  font-size: 2.4rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.pricing__intro {
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(226, 232, 240, 0.9);
  margin-bottom: 1.8rem;
}

/* Slider / karty */
.pricing__slider {
  position: relative;
  overflow: hidden; /* >>> přidáno – skryje druhou stránku */
}

/* schovat radio inputy */
.pricing__slider input[type="radio"] {
  display: none;
}

.pricing__slides {
  display: flex;
  width: 200%; /* dvě stránky vedle sebe */
  transition: transform 0.6s ease;
}

.pricing__page {
  width: 50%; /* každá stránka zabere půlku containeru */
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

/* Karty */
.pricing-card {
  background: transparent; /* žádná výplň */
  border-radius: 1rem;
  padding: 1.6rem 1.7rem;
  border: 1px solid rgba(31, 182, 255, 0.55); /* blankytně azurový obrys */
  box-shadow: none; /* pryč velký stín */
}

.pricing-card__title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.pricing-card__desc {
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(226, 232, 240, 0.9);
  margin-bottom: 0.4rem;
}

.pricing-card__price {
  position: relative;
  font-size: 0.98rem;
  margin-top: 0.9rem;
  margin-bottom: 0.25rem;
  padding-top: 0.7rem;
}

/* Čárka před cenou ve stylu ostatních sekcí */
.pricing-card__price::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 42px;
  height: 2px;
  background: linear-gradient(
    90deg,
    rgba(148, 163, 184, 0.4),
    var(--first-color)
  );
}

.pricing-card__price strong {
  color: var(--first-color);
  font-weight: 700;
}

.pricing-card__note {
  font-size: 0.8rem;
  color: rgba(148, 163, 184, 0.95);
}

/* Přepínání stránek (radio → transform) */
#pricing-page-1:checked ~ .pricing__slides {
  transform: translateX(0);
}

#pricing-page-2:checked ~ .pricing__slides {
  transform: translateX(-50%);
}

/* Tečky */
.pricing__dots {
  margin-top: 1.5rem;
  display: flex;
  gap: 0.5rem;
  justify-content: center;
}

.pricing__dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.9);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

/* Aktivní / hover */
#pricing-page-1:checked ~ .pricing__dots label[for="pricing-page-1"],
#pricing-page-2:checked ~ .pricing__dots label[for="pricing-page-2"] {
  background: var(--first-color);
  border-color: var(--first-color);
  transform: scale(1.1);
}

.pricing__dot:hover {
  background: rgba(148, 163, 184, 0.6);
}

/* Text pod ceníkem */
.pricing__disclaimer {
  margin-top: 1.8rem;
  font-size: 0.85rem;
  color: rgba(148, 163, 184, 0.95);
}

/* Responsivita CENÍKU */
@media screen and (max-width: 992px) {
  .pricing__page {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media screen and (max-width: 768px) {
  .pricing {
    padding: 3.5rem 0 3.5rem;
  }

  .pricing__wrap {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .pricing__left {
    flex-direction: row;
    align-items: center;
    margin-bottom: 0.5rem;
  }

  .pricing__label {
    writing-mode: horizontal-tb;
    transform: none;
    font-size: 0.95rem;
    letter-spacing: 0.25em;
  }

  .pricing__bar {
    width: 60px;
    height: 2px;
    margin-top: 0;
    margin-left: 1rem;
  }

  .pricing__page {
    width: 50%;
    grid-template-columns: 1fr; /* na mobilu 1 karta pod sebe */
  }

  .pricing-card {
    padding: 1.2rem 1.3rem;
  }
}

/* Značky pod ceníkem */
.pricing-brands {
  margin-top: 2.5rem;
}

.pricing-brands__label {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(148, 163, 184, 0.9);
  margin-bottom: 0.9rem;
}

.pricing-brands__logos {
  display: flex;
  flex-wrap: wrap;
  gap: 1.75rem;
  align-items: center;
}

.pricing-brand {
  height: 28px; /* sjednocená výška log */
  max-width: 120px;
  object-fit: contain;
  filter: grayscale(1) brightness(1.1); /* šedé loga */
  opacity: 0.7;
}

/* volitelně: NABRUŠ.MĚ může být malinko výraznější */
.pricing-brand--highlight {
  opacity: 0.9;
}

/* jemný hover efekt – není nutný, ale působí pěkně */
.pricing-brand:hover {
  opacity: 1;
}

/* ========== SEKCE KONTAKT ========== */

.contact {
  padding: 5rem 0 4rem;
  background-color: var(--black-color);
  color: var(--white-color);
}

.contact__wrap {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 3rem;
  align-items: flex-start;
}

/* Levý vertikální panel */
.contact__left {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact__label {
  font-family: var(--body-font);
  font-weight: 700;
  font-size: 1.9rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: #e5e7eb;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.contact__bar {
  width: 2px;
  height: 120px;
  margin-top: 1.8rem;
  background: rgba(148, 163, 184, 0.8);
}

/* Hlavní obsah vpravo */
.contact__main {
  max-width: 720px;
}

.contact__title {
  font-family: var(--body-font);
  font-weight: 600;
  font-size: 2.4rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.contact__intro {
  font-size: 0.98rem;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(226, 232, 240, 0.9);
  margin-bottom: 2rem;
}

/* Telefon – hlavní CTA blok */
.contact__phone-block {
  position: relative;
  margin-bottom: 1.6rem;
  padding-top: 0.8rem;
}

.contact__phone-block::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 90px;
  height: 2px;
  background: linear-gradient(
    90deg,
    rgba(148, 163, 184, 0.4),
    var(--first-color)
  );
}

.contact__phone-label {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(148, 163, 184, 0.9);
  margin-bottom: 0.3rem;
}

.contact__phone {
  display: inline-block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--white-color);
  text-decoration: none;
  letter-spacing: 0.08em;
  padding: 0.15rem 0;
  border-radius: 0.35rem;
  transition: color 0.2s ease, text-shadow 0.2s ease;
}

.contact__phone:hover {
  color: var(--first-color);
  text-shadow: 0 0 18px rgba(31, 182, 255, 0.6);
}

/* E-mail */
.contact__email {
  margin-bottom: 1.8rem;
}

.contact__email-label {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(148, 163, 184, 0.9);
  margin-bottom: 0.25rem;
}

.contact__email a {
  font-size: 0.95rem;
  color: rgba(226, 232, 240, 0.95);
}

.contact__email a:hover {
  color: var(--first-color);
}

/* Sociální sítě */
.contact__social {
  margin-bottom: 2rem;
}

.contact__social-label {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(148, 163, 184, 0.9);
  margin-bottom: 0.6rem;
}

.contact__social-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.contact__social-link {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(226, 232, 240, 0.95);
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.contact__social-link ion-icon {
  font-size: 1.3rem;
}

.contact__social-link:hover {
  border-color: var(--first-color);
  background: rgba(31, 182, 255, 0.12);
  color: var(--first-color);
}

/* Motto na závěr */
.contact__quote {
  margin-top: 1rem;
  font-size: 0.95rem;
  font-style: italic;
  color: rgba(148, 163, 184, 0.95);
}

/* Responsivita KONTAKT */
@media screen and (max-width: 768px) {
  .contact {
    padding: 3.5rem 0 3.5rem;
  }

  .contact__wrap {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .contact__left {
    flex-direction: row;
    align-items: center;
    margin-bottom: 0.5rem;
  }

  .contact__label {
    writing-mode: horizontal-tb;
    transform: none;
    font-size: 0.95rem;
    letter-spacing: 0.25em;
  }

  .contact__bar {
    width: 60px;
    height: 2px;
    margin-top: 0;
    margin-left: 1rem;
  }

  .contact__phone {
    font-size: 1.6rem;
  }
}

/* ========== PATIČKA ========== */

.footer {
  padding: 1.8rem 0 2.2rem;
  background-color: #020314;
  border-top: 1px solid rgba(15, 23, 42, 0.9);
}

.footer__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: rgba(148, 163, 184, 0.95);
}

.footer__madeby span {
  color: rgba(226, 232, 240, 0.95);
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.footer__nav a {
  color: rgba(148, 163, 184, 0.9);
}

.footer__nav a:hover {
  color: var(--first-color);
}

@media screen and (max-width: 768px) {
  .footer__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .footer__nav {
    gap: 0.8rem;
  }
}

/* ========== EKOLOGIE ========== */

.service-eco {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-top: 2.5rem;
  margin-left: 0.2rem;
}

.service-eco__icon svg {
  width: 36px;
  height: 36px;
  stroke: var(--first-color);
  opacity: 0.9;
}

.service-eco__text {
  font-size: 1rem;
  line-height: 1.55;
  color: #51b35e; /* světlejší šedá pro jemnost */
  max-width: 450px;
}
/* Extra malé displeje – cca iPhone SE apod. */
@media screen and (max-width: 480px) {
  .home {
    align-content: flex-start;
    row-gap: 1.6rem;
    padding-top: 5rem;
    padding-bottom: 2.5rem;
  }

  .home__information {
    padding-left: 1rem;
    border-left-width: 3px;
  }

  .home__title {
    font-size: 2.1rem;
  }

  .home__skill {
    font-size: 1.1rem;
  }

  .home__description {
    font-size: 0.9rem;
  }

  /* Obrázek už nebude absolutně nalepený v rohu, ale hezky pod textem */
  .home__img {
    position: static;
    width: 240px;
    margin: 1.5rem auto 0;
  }

  .home__social {
    flex-direction: row;
    gap: 1.5rem;
    padding-top: 1.5rem;
    padding-bottom: 0;
  }
}

@media screen and (max-width: 480px) {
  .pricing-brands__logos {
    gap: 1.2rem;
  }

  .pricing-brand {
    height: 24px;
    max-width: 100px;
  }
}
/* ===== FIX SLUŽEB NA MOBILECH – ticker bez animace a s zalamováním textu ===== */
@media screen and (max-width: 768px) {
  .services__ticker {
    margin-top: 1.2rem;
    padding-top: 0.8rem;
    border-top: 1px solid rgba(148, 163, 184, 0.35);
    overflow: hidden;
  }

  .services__ticker-track {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem 1.2rem;
    white-space: normal; /* << tady se to zlomí */
    animation: none; /* na mobilu bez běžící animace */
  }

  .services__ticker-track span {
    font-size: 0.7rem;
  }
}

.nav__controls {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav__lang {
  display: flex;
  align-items: center;
  font-size: 0.9rem;
  user-select: none;
}

.nav__lang-link {
  cursor: pointer;
  opacity: 0.6;
  transition: 0.2s ease;
}

.nav__lang-link--active {
  opacity: 1;
  font-weight: 600;
}

.nav__lang-separator {
  opacity: 0.6;
  margin: 0 0.2rem;
}

