:root {
      --navy: #061a2e;
      --navy-dark: #020c16;
      --navy-soft: #08233c;
      --blue: #1880cf;
      --blue-light: #27b8ff;
      --cyan: #50d6ff;
      --ice: #e6f8ff;
      --yellow: #f5d403;
      --text: #e9f8ff;
      --muted: #9fc7d9;
      --line: rgba(139, 221, 255, .22);
      --card: rgba(255, 255, 255, .075);
      --shadow: 0 24px 70px rgba(0, 0, 0, .35);
	    --header-height: 121px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: Inter, "Segoe UI", Arial, sans-serif;
      background: var(--navy-dark);
      color: var(--text);
      line-height: 1.55;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    img {
      max-width: 100%;
      display: block;
    }

    .wrap {
      width: min(1180px, 92vw);
      margin: 0 auto;
    }

    .eyebrow {
      color: var(--cyan);
      font-size: 12px;
      font-weight: 800;
      letter-spacing: .14em;
      text-transform: uppercase;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 13px 21px;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, .22);
      background: linear-gradient(135deg, var(--cyan), var(--blue));
      color: #031323;
      font-weight: 850;
      box-shadow: 0 12px 30px rgba(80, 214, 255, .18);
      transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
    }

    .btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 18px 40px rgba(80, 214, 255, .26);
    }

    .btn.alt {
      background: rgba(255, 255, 255, .08);
      color: var(--ice);
      border-color: var(--line);
      box-shadow: none;
    }

    .btn.small {
      padding: 10px 15px;
      font-size: 14px;
    }

    .section-head {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      gap: 30px;
      margin-bottom: 30px;
    }

    .section-head h2 {
      margin: 8px 0 0;
      font-size: clamp(30px, 4vw, 52px);
      line-height: 1;
      letter-spacing: -.04em;
    }

    .section-head p {
      max-width: 520px;
      margin: 0;
      color: var(--muted);
    }

    /* HEADER */

    .site-header {
      position: fixed;
      inset: 0 0 auto;
      z-index: 50;
      background: linear-gradient(180deg, rgba(3, 18, 33, .94), rgba(3, 18, 33, .52));
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(255, 255, 255, .08);
    }

    .nav {
      height: 120px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .site-logo img {
      width: 230px;
      height: auto;
    }

    .menu {
      display: flex;
      align-items: center;
      gap: 23px;
      font-size: 14px;
      font-weight: 750;
      text-transform: uppercase;
      letter-spacing: .04em;
    }

    .menu a {
      color: #d7f7ff;
      opacity: .9;
    }

    .menu a:hover {
      color: var(--cyan);
    }

    .menu-btn {
      display: none;
      background: none;
      border: 0;
      color: #fff;
      font-size: 30px;
      cursor: pointer;
    }

    /* HERO SLIDER */

    .hero {
      min-height: 760px;
      position: relative;
      overflow: hidden;
      background: #021425;
    }

    .slide {
      position: absolute;
      inset: 0;
      opacity: 0;
      transition: opacity .75s ease;
    }

    .slide.active {
      opacity: 1;
    }

  .slide::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:1;
  background:
    linear-gradient(
      90deg,
      rgba(3,20,40,.70) 0%,
      rgba(3,20,40,.35) 40%,
      rgba(3,20,40,0) 75%
    );
}
    .slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: saturate(1.18) contrast(1.08);
    }

    .hero-content {
      position: relative;
      z-index: 2;
      min-height: 760px;
      display: grid;
      align-items: center;
      padding-top: 82px;
    }

    .hero-text {
      max-width: 720px;
    }

    .hero h1 {
      margin: 14px 0 18px;
      font-size: clamp(26px, 7vw, 62px);
      line-height: .93;
      letter-spacing: -.065em;
    }

    .hero p {
      max-width: 610px;
      margin: 0;
      color: #c7e9f7;
      font-size: 20px;
    }

    .hero-actions {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      margin-top: 30px;
    }

    .hero-badges {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      margin-top: 34px;
    }

    .badge {
      padding: 10px 14px;
      border: 1px solid var(--line);
      border-radius: 999px;
      background: rgba(255, 255, 255, .07);
      color: #dff7ff;
      font-size: 14px;
    }

    .dots {
      position: absolute;
      z-index: 5;
      left: 50%;
      bottom: 34px;
      display: flex;
      gap: 10px;
      transform: translateX(-50%);
    }

    .dot {
      width: 34px;
      height: 4px;
      padding: 0;
      border: 0;
      border-radius: 20px;
      background: rgba(255, 255, 255, .35);
      cursor: pointer;
    }

    .dot.active {
      background: var(--cyan);
    }

    /* SLUŽBY */

    .services-section {
      position: relative;
      overflow: hidden;
      background: linear-gradient(180deg, #061a2e 0%, #082d4b 54%, #061a2e 100%);
    }

    .services-section::before {
      content: "";
      position: absolute;
      inset: 0;
      background: url("/images/more.webp") center bottom / cover no-repeat;
      opacity: .36;
      mix-blend-mode: screen;
    }

    .services-section::after {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 15% 0%, rgba(80, 214, 255, .22), transparent 32%),
        linear-gradient(180deg, rgba(6, 26, 46, .18), rgba(6, 26, 46, .48));
    }

    .services {
      position: relative;
      z-index: 1;
      padding: 88px 0;
    }

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

    .service-card {
      min-height: 245px;
      position: relative;
      overflow: hidden;
      padding: 24px;
      border: 1px solid var(--line);
      border-radius: 26px;
      background: linear-gradient(180deg, rgba(255, 255, 255, .13), rgba(255, 255, 255, .045));
      box-shadow: 0 18px 50px rgba(0, 0, 0, .18);
    }

    .service-card::before {
      content: "";
      position: absolute;
      top: -32px;
      right: -32px;
      width: 112px;
      height: 112px;
      border-radius: 50%;
      background: rgba(80, 214, 255, .14);
    }

    .service-card .num {
      color: var(--cyan);
      font-weight: 900;
    }

    .service-card h3 {
      position: relative;
      margin: 18px 0 8px;
      font-size: 21px;
      line-height: 1.15;
    }

    .service-card p {
      position: relative;
      margin: 0 0 18px;
      color: #bfe1ef;
      font-size: 15px;
    }

    /* REFERENCIE */

    .references {
      padding: 88px 0;
      background: linear-gradient(180deg, #061a2e, #07233c);
    }

    .ref-grid {
      display: grid;
      grid-template-columns: 1.15fr .85fr .85fr;
      gap: 18px;
    }

    .ref-card,
    .blog-card,
    .product-card {
      overflow: hidden;
      border: 1px solid var(--line);
      border-radius: 28px;
      background: rgba(255, 255, 255, .07);
      box-shadow: var(--shadow);
    }

    .ref-card img {
      width: 100%;
      height: 330px;
      object-fit: cover;
    }

    .ref-card:first-child img {
      height: 430px;
    }

    .ref-body,
    .blog-body,
    .product-body {
      padding: 22px;
    }

    .ref-body h3,
    .blog-body h3,
    .product-body h3 {
      margin: 0 0 8px;
      font-size: 22px;
      line-height: 1.15;
    }

    .ref-body p,
    .blog-body p,
    .product-body p {
      margin: 0 0 16px;
      color: #b6d8e7;
    }

    /* BLOG */

    .blog {
      padding: 88px 0;
      background: #041626;
    }

    .blog-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }

    .blog-card img {
      width: 100%;
      height: 210px;
      object-fit: cover;
    }

    /* PREDAJŇA */

    .store {
      padding: 88px 0;
      background: linear-gradient(180deg, #08233c, #061a2e);
    }

    .store-box {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
      align-items: center;
    }

    .store-info {
      padding: 34px;
      border: 1px solid var(--line);
      border-radius: 32px;
      background: rgba(255, 255, 255, .07);
    }

    .store-info h2 {
      margin: 8px 0 18px;
      font-size: 42px;
      line-height: 1;
      letter-spacing: -.04em;
    }

    .info-row {
      padding: 14px 0;
      border-top: 1px solid rgba(255, 255, 255, .1);
      color: #c5e9f5;
    }

    .store-photo {
      min-height: 430px;
      overflow: hidden;
      border-radius: 32px;
      box-shadow: var(--shadow);
    }

    .store-photo img {
      width: 100%;
      height: 430px;
      object-fit: cover;
	   object-position: top center;
	     display: block;
    }

    /* E-SHOP */

    .shop {
      position: relative;
      overflow: hidden;
      padding: 88px 0;
      background:
        radial-gradient(circle at 10% 20%, rgba(80, 214, 255, .16), transparent 30%),
        linear-gradient(135deg, #031323 0%, #07345b 55%, #061a2e 100%);
    }

    .shop-box {
      display: grid;
      grid-template-columns: .9fr 1.1fr;
      gap: 34px;
      align-items: center;
      padding: 38px;
      border: 1px solid var(--line);
      border-radius: 34px;
      background: rgba(255, 255, 255, .06);
      box-shadow: var(--shadow);
    }

    .shop h2 {
      margin: 10px 0 18px;
      font-size: clamp(34px, 5vw, 62px);
      line-height: 1;
      letter-spacing: -.05em;
    }

    .shop p {
      max-width: 520px;
      color: #bfe1ef;
    }

    .products {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
    }

    .product-card img {
      width: 100%;
      height: 170px;
      object-fit: cover;
    }

    .price {
      display: inline-block;
      margin-top: 2px;
      padding: 7px 12px;
      border-radius: 999px;
      background: var(--yellow);
      color: #031323;
      font-weight: 900;
    }

    /* FOOTER */

    .footer {
      padding: 44px 0;
      border-top: 1px solid rgba(255, 255, 255, .08);
      background: #020c16;
      color: #91b9ca;
    }

    .foot-grid {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 20px;
    }

    .foot-grid img {
      width: 100px;
      opacity: .9;
    }

    /* ANIMÁCIE */

    .reveal {
      opacity: 0;
      transform: translateY(22px);
      transition: .7s ease;
    }

    .reveal.in {
      opacity: 1;
      transform: none;
    }

    /* RESPONZÍVNE */

    @media (max-width: 980px) {
   

      .menu-btn {
        display: block;
      }

      .hero,
      .hero-content {
        min-height: 680px;
      }

      .section-head {
        display: block;
      }

      .services-grid,
      .blog-grid,
      .products {
        grid-template-columns: 1fr 1fr;
      }

      .ref-grid,
      .shop-box,
      .store-box {
        grid-template-columns: 1fr;
      }

      .ref-card img,
      .ref-card:first-child img {
        height: 290px;
      }

      .site-logo img {
        width: 165px;
      }
    }

    @media (max-width: 620px) {
      .nav {
        height: 74px;
      }

      .menu {
        top: 74px;
      }

      .hero h1 {
        font-size: 44px;
      }

      .hero p {
        font-size: 17px;
      }

      .services,
      .references,
      .blog,
      .store,
      .shop {
        padding: 60px 0;
      }

      .services-grid,
      .blog-grid,
      .products {
        grid-template-columns: 1fr;
      }

      .shop-box {
        padding: 22px;
      }

      .store-info h2 {
        font-size: 34px;
      }

      .foot-grid {
        display: block;
      }

      .foot-grid p {
        margin-top: 18px;
      }
    }



/* =========================================================
   JOOMLA 6 CLEAN TEMPLATE – MODULE POSITIONS
   ========================================================= */

body.site {
  min-height: 100vh;
}

.site-header .moduletable,
.site-header .moduletable_menu {
  margin: 0;
  padding: 0;
}

/* Joomla menu module in position menu */
.site-header ul.mod-menu,
.site-header .mod-menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 23px;
  margin: 0;
  padding: 0;
}

.site-header .mod-menu li {
  margin: 0;
  padding: 0;
}

.site-header .mod-menu a {
  color: #d7f7ff;
  opacity: .9;
  font-size: 14px;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: .04em;
  text-decoration: none;
}

.site-header .mod-menu a:hover,
.site-header .mod-menu .active > a,
.site-header .mod-menu .current > a {
  color: var(--cyan);
}

/* Main component for subpages */
.main-component {
  width: 100%;
  padding: 0;
  margin: 0;
  background: #041626;
}

.homepage .main-component {
  padding: 0;
  background: transparent;
}

.component-wrap {
  width: min(1180px, 92vw);
  margin: 0 auto;
}

/* Universal position wrappers */
.position-hero,
.position-homepage-top,
.position-homepage-services,
.position-homepage-references,
.position-homepage-blog,
.position-homepage-store,
.position-homepage-shop,
.position-homepage-contact,
.position-homepage-bottom {
  margin: 0;
}

/* When you paste the old static HTML sections as Custom HTML modules,
   the original classes still work: .hero, .services-section, .references, .blog, etc. */

.module-hidden-title .module-title {
  display: none;
}

/* Responsive Joomla menu */
@media (max-width: 980px) {
  .site-header .mod-menu {
    display: none;
    position: absolute;
    top: 82px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 4vw;
    background: #031323;
  }

  .site-header .mod-menu.open {
    display: flex;
  }
}

@media (max-width: 620px) {
  .main-component {
    padding-top:85px;
  }
}
/* JOOMLA MENU AKO PÔVODNÉ STATICKÉ MENU */

.site-header .menu {
  display: flex;
  align-items: center;
  gap: 23px;
}

/* Joomla ul menu */
.site-header .menu ul.mod-menu,
.site-header .menu ul.nav,
.site-header .menu .mod-menu {
  display: flex !important;
  align-items: center !important;
  gap: 23px !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

/* Joomla li položky */
.site-header .menu ul.mod-menu > li,
.site-header .menu ul.nav > li,
.site-header .menu .mod-menu > li {
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

/* Linky v menu */
.site-header .menu ul.mod-menu > li > a,
.site-header .menu ul.nav > li > a,
.site-header .menu .mod-menu > li > a,
.site-header .menu a {
  display: inline-flex !important;
  align-items: center !important;
  min-height: 40px;
  color: #d7f7ff !important;
  opacity: .9;
  font-size: 14px;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: .04em;
  text-decoration: none !important;
  line-height: 1.2;
  transition: color .2s ease, opacity .2s ease;
}

/* Hover a aktívna položka */
.site-header .menu ul.mod-menu > li > a:hover,
.site-header .menu ul.nav > li > a:hover,
.site-header .menu .mod-menu > li > a:hover,
.site-header .menu ul.mod-menu > li.active > a,
.site-header .menu ul.nav > li.active > a,
.site-header .menu .mod-menu > li.active > a,
.site-header .menu ul.mod-menu > li.current > a,
.site-header .menu ul.nav > li.current > a,
.site-header .menu .mod-menu > li.current > a {
  color: var(--cyan) !important;
  opacity: 1;
}

/* Ak Joomla pridá span namiesto a pri separátore */
.site-header .menu ul.mod-menu > li > span,
.site-header .menu ul.nav > li > span {
  display: inline-flex !important;
  align-items: center !important;
  min-height: 40px;
  color: #d7f7ff !important;
  opacity: .9;
  font-size: 14px;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: .04em;
}

/* Mobilné menu */
@media (max-width: 980px) {
  .site-header .menu {
    display: block;
  }

  .site-header .menu ul.mod-menu,
  .site-header .menu ul.nav,
  .site-header .menu .mod-menu {
    display: none !important;
    position: absolute;
    top: 82px;
    left: 0;
    right: 0;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 0 !important;
    padding: 20px 4vw !important;
    background: #031323;
    border-top: 1px solid rgba(255,255,255,.08);
  }

  .site-header .menu ul.mod-menu.open,
  .site-header .menu ul.nav.open,
  .site-header .menu .mod-menu.open {
    display: flex !important;
  }

  .site-header .menu ul.mod-menu > li,
  .site-header .menu ul.nav > li,
  .site-header .menu .mod-menu > li {
    width: 100%;
  }

  .site-header .menu ul.mod-menu > li > a,
  .site-header .menu ul.nav > li > a,
  .site-header .menu .mod-menu > li > a {
    width: 100%;
    min-height: 46px;
  }
}

@media (max-width: 620px) {
  .site-header .menu ul.mod-menu,
  .site-header .menu ul.nav,
  .site-header .menu .mod-menu {
    top: 74px;
  }
}

/* SLUŽBY PODSTRÁNKA */

.subhero {
  min-height: 330px;
  display: flex;
  align-items: center;
  padding: calc(var(--header-height) + 45px) 0 70px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  
}

.subhero h1 {
  max-width: 820px;
  margin: 10px 0 16px;
  font-size: clamp(38px, 5vw, 68px);
  line-height: .98;
  letter-spacing: -.055em;
  color: #fff;
}

.subhero p {
  max-width: 680px;
  margin: 0;
  color: #c7e9f7;
  font-size: 19px;
}

.services-intro,
.main-services,
.extra-services,
.process-section,
.geo-section,
.service-cta {
  padding: 82px 0;
}

.services-intro {
  background: #041626;
}

.intro-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 44px;
  align-items: start;
}

.intro-grid h2 {
  margin: 8px 0 0;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1;
  letter-spacing: -.045em;
}

.intro-grid p {
  margin: 0 0 16px;
  color: #bfe1ef;
  font-size: 17px;
}

.main-services {
  background: linear-gradient(180deg, #061a2e, #07233c);
}

.main-services-list {
  display: grid;
  gap: 26px;
}

.main-service-card {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 34px;
  background: rgba(255,255,255,.07);
  box-shadow: var(--shadow);
}

.main-service-card-reverse .main-service-image {
  order: 2;
}

.main-service-image img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.main-service-body {
  padding: 38px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-num {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--cyan);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: .12em;
}

.main-service-body h3 {
  margin: 0 0 16px;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1;
  letter-spacing: -.04em;
}

.main-service-body p {
  margin: 0 0 15px;
  color: #b6d8e7;
  font-size: 16px;
}

.main-service-body .btn {
  width: fit-content;
  margin-top: 10px;
}

.extra-services {
  background:
    radial-gradient(circle at 15% 0%, rgba(80, 214, 255, .14), transparent 30%),
    #041626;
}

.extra-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.extra-service-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255,255,255,.07);
  box-shadow: 0 18px 50px rgba(0,0,0,.22);
}

.extra-service-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.extra-service-card div {
  padding: 22px;
}

.extra-service-card h3 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.15;
}

.extra-service-card p {
  margin: 0;
  color: #b6d8e7;
}

.process-section {
  background: linear-gradient(180deg, #061a2e, #08233c);
}

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

.process-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255,255,255,.07);
}

.process-card strong {
  display: block;
  margin-bottom: 18px;
  color: var(--cyan);
  font-size: 34px;
  line-height: 1;
}

.process-card h3 {
  margin: 0 0 10px;
  font-size: 21px;
}

.process-card p {
  margin: 0;
  color: #b6d8e7;
}

.geo-section {
  background: #041626;
}

.geo-box {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 34px;
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: 34px;
  background:
    radial-gradient(circle at 85% 20%, rgba(80,214,255,.13), transparent 30%),
    rgba(255,255,255,.06);
  box-shadow: var(--shadow);
}

.geo-box h2 {
  margin: 8px 0 0;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1;
  letter-spacing: -.04em;
}

.geo-box p {
  margin: 0 0 14px;
  color: #bfe1ef;
}

.service-cta {
  background: linear-gradient(135deg, #031323 0%, #07345b 55%, #061a2e 100%);
}

.cta-box {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 30px;
  align-items: center;
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: 34px;
  background: rgba(255,255,255,.07);
  box-shadow: var(--shadow);
}

.cta-box h2 {
  margin: 8px 0 14px;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1;
  letter-spacing: -.045em;
}

.cta-box p {
  max-width: 650px;
  margin: 0;
  color: #bfe1ef;
}

.cta-actions {
  display: flex;
  justify-content: flex-end;
  gap: 14px;
  flex-wrap: wrap;
}

/* RESPONZÍVNE */

@media (max-width: 980px) {
  .intro-grid,
  .main-service-card,
  .geo-box,
  .cta-box {
    grid-template-columns: 1fr;
  }

  .main-service-card-reverse .main-service-image {
    order: 0;
  }

  .extra-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  .subhero {
    min-height: 260px;
    padding: 110px 0 45px;
  }

  .services-intro,
  .main-services,
  .extra-services,
  .process-section,
  .geo-section,
  .service-cta {
    padding: 60px 0;
  }

  .main-service-body,
  .geo-box,
  .cta-box {
    padding: 24px;
  }

  .main-service-image img {
    min-height: 230px;
  }

  .extra-services-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }
}
.visually-hidden {
	
	display: none;
}

#mc-referencie-114 {
	margin-top: 80px;
}

/* =========================================================
   O NÁS
   ========================================================= */

.about-main {
  padding: 90px 0;
  background: #041626;
}


.about-main-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}


.about-main-text p {
  color: #b9e8f6;
  font-size: 17px;
  line-height: 1.75;
}


.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}


.about-photo-collage {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  grid-template-rows: 210px 170px;
  gap: 12px;
}


.about-photo-collage img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 24px;
  border: 1px solid rgba(120, 210, 255, 0.18);
}


.about-photo-collage img:first-child {
  grid-row: span 2;
}


.about-numbers {
  padding: 26px 0 80px;
  background: #041626;
}


.about-numbers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}


.about-number-card {
  padding: 30px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(120, 210, 255, 0.18);
}


.about-number-card strong {
  display: block;
  color: #ffffff;
  font-size: 44px;
  line-height: 1;
  margin-bottom: 12px;
}


.about-number-card span {
  color: #b9e8f6;
  font-size: 15px;
  line-height: 1.45;
}


.about-services {
  padding: 90px 0;
  background: linear-gradient(180deg, #062034, #041626);
}


.about-why {
  padding: 95px 0;
  background: #041626;
}


.about-why-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
  align-items: start;
}


.about-why-list {
  display: grid;
  gap: 16px;
}


.about-why-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(120, 210, 255, 0.16);
}


.about-why-item strong {
  color: #7be7ff;
  font-size: 20px;
}


.about-why-item p {
  margin: 0;
  color: #d7f7ff;
  line-height: 1.6;
}


.about-references {
  padding: 95px 0;
  background: linear-gradient(180deg, #041626, #062034);
}


.about-ref-box {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 45px;
  align-items: center;
  padding: 34px;
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(120, 210, 255, 0.18);
}


.about-ref-text p {
  color: #b9e8f6;
  font-size: 17px;
  line-height: 1.65;
}


.about-ref-photos {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}


.about-ref-photos img {
  width: 100%;
  height: 230px;
  display: block;
  object-fit: cover;
  border-radius: 22px;
}


.about-ref-photos img:nth-child(2),
.about-ref-photos img:nth-child(4) {
  margin-top: 34px;
}


.about-eshop {
  padding: 95px 0;
  background: #041626;
}


.about-eshop-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 50px;
  align-items: center;
}


.about-eshop-grid p {
  color: #b9e8f6;
  font-size: 17px;
  line-height: 1.65;
}


.about-eshop-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}


.about-eshop-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 15px;
  border-radius: 999px;
  color: #d7f7ff;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(120, 210, 255, 0.16);
  font-size: 14px;
  font-weight: 700;
}


@media (max-width: 980px) {

  .about-main-grid,
  .about-why-grid,
  .about-ref-box,
  .about-eshop-grid {
    grid-template-columns: 1fr;
  }


  .about-numbers-grid {
    grid-template-columns: 1fr;
  }


  .about-photo-collage {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }


  .about-photo-collage img {
    height: 220px;
  }


  .about-photo-collage img:first-child {
    grid-column: 1 / -1;
    grid-row: auto;
    height: 320px;
  }


  .about-ref-photos {
    grid-template-columns: repeat(2, 1fr);
  }


  .about-ref-photos img {
    height: 220px;
  }


  .about-ref-photos img:nth-child(2),
  .about-ref-photos img:nth-child(4) {
    margin-top: 0;
  }

}


@media (max-width: 620px) {

  .about-main,
  .about-services,
  .about-why,
  .about-references,
  .about-eshop {
    padding: 70px 0;
  }


  .about-photo-collage {
    grid-template-columns: 1fr;
  }


  .about-photo-collage img,
  .about-photo-collage img:first-child {
    height: 240px;
  }


  .about-ref-box {
    padding: 22px;
  }


  .about-ref-photos {
    grid-template-columns: 1fr;
  }


  .about-why-item {
    grid-template-columns: 1fr;
  }

}

.services-main-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 22px;
}


.service-card-main {
  min-height: 300px;
  border-color: rgba(120, 210, 255, 0.28);
  background: linear-gradient(180deg, rgba(10, 60, 90, 0.45), rgba(255, 255, 255, 0.06));
}


.services-grid-secondary {
 
    display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 0;
}


.services-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 38px;
}


@media (max-width: 980px) {

  .services-main-grid {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 980px) {

  .services-grid-secondary {
    grid-template-columns: repeat(2, 1fr);
  }

}
/* =========================================================
   PREDAJŇA / KONTAKT / E-SHOP
   ========================================================= */

.store-page-intro {
  padding: 170px 0 90px;
  background: #041626;
}


.store-page-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 58px;
  align-items: center;
}


.store-page-text p {
  color: #b9e8f6;
  font-size: 17px;
  line-height: 1.75;
}


.store-page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}


.store-page-photo img {
  width: 100%;
  height: 520px;
  display: block;
  object-fit: cover;
  border-radius: 34px;
  border: 1px solid rgba(120, 210, 255, 0.18);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
}


.store-page-info {
  padding: 30px 0 90px;
  background: #041626;
}


.store-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}


.store-info-card {
  padding: 30px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(120, 210, 255, 0.18);
}


.store-info-card h2 {
  margin-top: 8px;
}


.store-info-card p,
.store-info-card a {
  color: #b9e8f6;
  font-size: 16px;
  line-height: 1.65;
}


.opening-hours {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}


.opening-hours div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(120, 210, 255, 0.14);
}


.opening-hours span {
  color: #b9e8f6;
}


.opening-hours strong {
  color: #ffffff;
}


.store-page-eshop {
  padding: 95px 0;
  background: linear-gradient(180deg, #062034, #041626);
}


.store-eshop-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 50px;
  align-items: center;
}


.store-eshop-text p {
  color: #b9e8f6;
  font-size: 17px;
  line-height: 1.7;
}


.store-eshop-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}


.store-eshop-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 15px;
  border-radius: 999px;
  color: #d7f7ff;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(120, 210, 255, 0.16);
  font-size: 14px;
  font-weight: 700;
}


.store-page-services {
  padding: 95px 0;
  background: #041626;
}


@media (max-width: 980px) {

  .store-page-grid,
  .store-info-grid,
  .store-eshop-grid {
    grid-template-columns: 1fr;
  }


  .store-page-photo img {
    height: 380px;
  }

}


@media (max-width: 620px) {

  .store-page-intro {
    padding: 130px 0 70px;
  }


  .store-page-info,
  .store-page-eshop,
  .store-page-services {
    padding: 70px 0;
  }


  .store-page-photo img {
    height: 280px;
    border-radius: 24px;
  }


  .store-info-card {
    padding: 24px;
  }


  .opening-hours div {
    display: grid;
    gap: 4px;
  }

}
.store-page-sortiment {
  padding: 95px 0;
  background: linear-gradient(180deg, #041626, #062034);
}


.store-contact-strip {
  padding: 70px 0 95px;
  background: #041626;
}


.store-contact-strip-box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
  padding: 34px;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(120, 210, 255, 0.18);
}


.store-contact-strip-box p {
  margin: 0;
  color: #b9e8f6;
  line-height: 1.6;
}


@media (max-width: 780px) {

  .store-contact-strip-box {
    grid-template-columns: 1fr;
  }

}
/* =========================================================
   KONTAKT
   ========================================================= */

.contact-hero {
  min-height: 420px;
  padding: calc(var(--header-height) + 70px) 0 90px;
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
}


.contact-main {
  padding: 95px 0 40px;
  background: #041626;
}


.contact-main-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: stretch;
}


.contact-primary {
  padding: 42px;
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(10, 60, 90, 0.48), rgba(255, 255, 255, 0.06));
  border: 1px solid rgba(120, 210, 255, 0.2);
}


.contact-primary p {
  color: #b9e8f6;
  font-size: 17px;
  line-height: 1.7;
}


.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}


.contact-card {
  padding: 30px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(120, 210, 255, 0.18);
}


.contact-card h3 {
  margin-top: 0;
}


.contact-card p {
  color: #b9e8f6;
  line-height: 1.65;
}


.contact-line {
  display: grid;
  gap: 5px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(120, 210, 255, 0.14);
}


.contact-line:last-child {
  border-bottom: 0;
}


.contact-line span {
  color: #7be7ff;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}


.contact-line strong {
  color: #ffffff;
  line-height: 1.5;
}


.contact-details {
  padding: 40px 0 90px;
  background: #041626;
}


.contact-details-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}


.contact-big-link {
  display: inline-block;
  margin-top: 12px;
  color: #ffffff;
  font-size: 20px;
  font-weight: 900;
  text-decoration: none;
}


.contact-big-link:hover {
  color: #7be7ff;
}


.contact-hours {
  padding: 95px 0;
  background: linear-gradient(180deg, #062034, #041626);
}


.contact-hours-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 50px;
  align-items: center;
}


.contact-hours p {
  color: #b9e8f6;
  font-size: 17px;
  line-height: 1.65;
}


.opening-box {
  display: grid;
  gap: 12px;
  padding: 32px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(120, 210, 255, 0.18);
}


.opening-box div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(120, 210, 255, 0.14);
}


.opening-box div:last-child {
  border-bottom: 0;
}


.opening-box span {
  color: #b9e8f6;
}


.opening-box strong {
  color: #ffffff;
}


.contact-map-section {
  padding: 95px 0;
  background: #041626;
}


.contact-map-grid {
  display: grid;
  grid-template-columns: 0.45fr 0.55fr;
  gap: 24px;
  align-items: stretch;
}


.map-consent-box {
  min-height: 420px;
  overflow: hidden;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(4, 22, 38, 0.72), rgba(4, 22, 38, 0.92)),
    url('images/kontakt/mapa-placeholder.jpg');
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(120, 210, 255, 0.18);
}


.map-consent-box iframe {
  display: block;
  width: 100%;
  height: 420px;
}


.map-consent-overlay {
  min-height: 420px;
  display: grid;
  place-content: center;
  justify-items: center;
  text-align: center;
  padding: 32px;
}


.map-consent-overlay h3 {
  margin: 0 0 10px;
  color: #ffffff;
}


.map-consent-overlay p {
  max-width: 520px;
  margin: 0 0 22px;
  color: #b9e8f6;
  line-height: 1.65;
}


.contact-register {
  padding: 50px 0 95px;
  background: #041626;
}


.contact-register-box {
  display: grid;
  grid-template-columns: 0.45fr 0.55fr;
  gap: 28px;
  align-items: center;
  padding: 34px;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(120, 210, 255, 0.18);
}


.contact-register-box p {
  margin: 0;
  color: #b9e8f6;
  line-height: 1.65;
}


.contact-form-section {
  padding: 95px 0;
  background: linear-gradient(180deg, #062034, #041626);
}


.contact-form-grid {
  display: grid;
  grid-template-columns: 0.45fr 0.55fr;
  gap: 40px;
  align-items: start;
}


.contact-form-grid p {
  color: #b9e8f6;
  line-height: 1.65;
}


.contact-form-placeholder {
  min-height: 260px;
  display: grid;
  place-items: center;
  padding: 30px;
  border-radius: 28px;
  border: 1px dashed rgba(120, 210, 255, 0.32);
  background: rgba(255, 255, 255, 0.05);
}


.contact-form-placeholder p {
  margin: 0;
  color: #d7f7ff;
  font-weight: 800;
}


@media (max-width: 980px) {

  .contact-main-grid,
  .contact-details-grid,
  .contact-hours-grid,
  .contact-map-grid,
  .contact-register-box,
  .contact-form-grid {
    grid-template-columns: 1fr;
  }

}


@media (max-width: 620px) {

  .contact-hero {
    min-height: 360px;
    padding: calc(var(--header-height) + 45px) 0 70px;
  }


  .contact-main,
  .contact-hours,
  .contact-map-section,
  .contact-form-section {
    padding: 70px 0;
  }


  .contact-details {
    padding: 30px 0 70px;
  }


  .contact-primary,
  .contact-card,
  .opening-box,
  .contact-register-box {
    padding: 24px;
  }


  .opening-box div {
    display: grid;
    gap: 4px;
  }


  .map-consent-box,
  .map-consent-overlay,
  .map-consent-box iframe {
    min-height: 340px;
    height: 340px;
  }

}
.contact-phone-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 30px;
}


.contact-phone-chip {
  display: grid;
  gap: 6px;
  padding: 18px 20px;
  border-radius: 22px;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(120, 210, 255, 0.2);
}


.contact-phone-chip span {
  color: #7be7ff;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}


.contact-phone-chip strong {
  color: #ffffff;
  font-size: 21px;
  line-height: 1.2;
}


.contact-phone-chip small {
  color: #b9e8f6;
  font-size: 13px;
  line-height: 1.4;
}


.contact-phone-chip:hover {
  border-color: rgba(123, 231, 255, 0.55);
}


@media (max-width: 620px) {

  .contact-phone-row {
    grid-template-columns: 1fr;
  }

}


/* =========================================================
   RADY A TIPY – JOOMLA BLOG + DETAIL ČLÁNKU
   Aktivuje sa iba ak BODY obsahuje triedu .rady-page
   ========================================================= */

body.rady-page .main-component {
  background: #041626;
  color: #fff;
  padding: 150px 0 90px;
}

body.rady-page .main-component > .blog,
body.rady-page .main-component > .item-page,
body.rady-page .main-component > article,
body.rady-page .main-component > .com-content-article,
body.rady-page .main-component > .com-content-category-blog {
  width: min(1180px, 92vw);
  margin-left: auto;
  margin-right: auto;
}

body.rady-page .main-component > .item-page,
body.rady-page .main-component > article,
body.rady-page .main-component > .com-content-article {
  max-width: 900px;
}

body.rady-page .main-component h1 {
  margin: 0 0 28px;
  color: #fff;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

body.rady-page .main-component h2,
body.rady-page .main-component h3 {
  color: #fff;
  line-height: 1.18;
}

body.rady-page .main-component p,
body.rady-page .main-component li {
  color: #b9e8f6;
  font-size: 17px;
  line-height: 1.75;
}

body.rady-page .main-component ul,
body.rady-page .main-component ol {
  padding-left: 22px;
  margin: 20px 0;
}

body.rady-page .main-component a {
  color: #7be7ff;
}

body.rady-page .article-info,
body.rady-page .article-info-term,
body.rady-page dd.category-name,
body.rady-page dd.createdby,
body.rady-page dd.published {
  color: #7be7ff;
  font-size: 13px;
}

body.rady-page .cat-children {
  display: none !important;
}

body.rady-page .category-desc {
  margin: 0 0 55px;
}

body.rady-page .tips-intro {
  margin: 0 0 60px;
}

body.rady-page .tips-intro-head {
  max-width: 860px;
  margin: 0 0 38px;
}

body.rady-page .tips-intro-head .eyebrow {
  margin-bottom: 14px;
}

body.rady-page .tips-intro-head h1 {
  margin: 0 0 18px;
  color: #fff;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

body.rady-page .tips-intro-head p {
  margin: 0;
  color: #b9e8f6;
  font-size: 18px;
  line-height: 1.75;
}

body.rady-page .tips-cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

body.rady-page .tips-cat-card {
  display: flex;
  flex-direction: column;
  min-height: 270px;
  padding: 30px;
  border-radius: 30px;
  text-decoration: none;
  background: linear-gradient(180deg, rgba(10, 60, 90, 0.55), rgba(255,255,255,0.06));
  border: 1px solid rgba(120, 210, 255, 0.18);
  transition: transform .2s ease, border-color .2s ease;
}

body.rady-page .tips-cat-card span {
  display: inline-flex;
  margin-bottom: 34px;
  color: #7be7ff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

body.rady-page .tips-cat-card h2 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 26px;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

body.rady-page .tips-cat-card p {
  margin: 0;
  color: #b9e8f6;
  font-size: 15px;
  line-height: 1.65;
}

body.rady-page .tips-cat-card:hover {
  border-color: rgba(123, 231, 255, 0.55);
  transform: translateY(-2px);
}

body.rady-page .blog-items,
body.rady-page .items-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

body.rady-page .items-row::before,
body.rady-page .items-row::after {
  display: none;
}

body.rady-page .blog-item,
body.rady-page .items-row .item,
body.rady-page .blog-items .item {
  width: auto !important;
  float: none !important;
  margin: 0 !important;
}

body.rady-page .blog-item,
body.rady-page .items-row .item,
body.rady-page .blog-items .item {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 28px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(10, 60, 90, 0.45), rgba(255,255,255,0.06));
  border: 1px solid rgba(120, 210, 255, 0.18);
  overflow: hidden;
}

body.rady-page .blog-item:hover,
body.rady-page .items-row .item:hover,
body.rady-page .blog-items .item:hover {
  border-color: rgba(123, 231, 255, 0.5);
}

body.rady-page .item-image,
body.rady-page .blog-item .item-image {
  margin: -28px -28px 24px;
}

body.rady-page .item-image img,
body.rady-page .blog-item .item-image img {
  display: block;
  width: 100%;
  height: 230px;
  object-fit: cover;
}

body.rady-page .blog-item h2,
body.rady-page .blog-item h3,
body.rady-page .items-row .item h2,
body.rady-page .items-row .item h3,
body.rady-page .item-title {
  margin: 0 0 14px;
  color: #fff;
  font-size: 23px;
  line-height: 1.22;
  letter-spacing: -0.02em;
}

body.rady-page .blog-item h2 a,
body.rady-page .blog-item h3 a,
body.rady-page .items-row .item h2 a,
body.rady-page .items-row .item h3 a,
body.rady-page .item-title a {
  color: #fff;
  text-decoration: none;
}

body.rady-page .blog-item h2 a:hover,
body.rady-page .blog-item h3 a:hover,
body.rady-page .items-row .item h2 a:hover,
body.rady-page .items-row .item h3 a:hover,
body.rady-page .item-title a:hover {
  color: #7be7ff;
}

body.rady-page .blog-item p,
body.rady-page .items-row .item p {
  color: #b9e8f6;
  font-size: 15px;
  line-height: 1.7;
}

body.rady-page .readmore,
body.rady-page p.readmore {
  margin-top: auto;
}

body.rady-page .readmore a,
body.rady-page p.readmore a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 44px;
  margin-top: 18px;
  padding: 12px 18px;
  border-radius: 999px;
  background: #7be7ff;
  color: #061522 !important;
  font-weight: 800;
  text-decoration: none;
}

body.rady-page .readmore a:hover,
body.rady-page p.readmore a:hover {
  background: #fff;
}

body.rady-page .pagination {
  margin-top: 50px;
  justify-content: center;
}

body.rady-page .pagination ul {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

body.rady-page .pagination li a,
body.rady-page .pagination li span {
  display: inline-flex;
  min-width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #fff;
  text-decoration: none;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(120,210,255,0.16);
}

body.rady-page .pagination li.active span,
body.rady-page .pagination li a:hover {
  color: #061522;
  background: #7be7ff;
}

@media (max-width: 1100px) {
  body.rady-page .blog-items,
  body.rady-page .items-row,
  body.rady-page .tips-cat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  body.rady-page .main-component {
    padding: 125px 0 70px;
  }

  body.rady-page .main-component > .blog,
  body.rady-page .main-component > .item-page,
  body.rady-page .main-component > article,
  body.rady-page .main-component > .com-content-article,
  body.rady-page .main-component > .com-content-category-blog {
    width: min(100% - 28px, 1180px);
  }

  body.rady-page .blog-items,
  body.rady-page .items-row,
  body.rady-page .tips-cat-grid {
    grid-template-columns: 1fr;
  }

  body.rady-page .blog-item,
  body.rady-page .items-row .item,
  body.rady-page .blog-items .item,
  body.rady-page .tips-cat-card {
    border-radius: 24px;
    padding: 24px;
  }

  body.rady-page .item-image,
  body.rady-page .blog-item .item-image {
    margin: -24px -24px 20px;
  }

  body.rady-page .item-image img,
  body.rady-page .blog-item .item-image img {
    height: 210px;
  }
}

/* =========================================================
   DETAIL SLUŽBY – VÝROBA, REALIZÁCIA A SERVIS MORSKÝCH AKVÁRIÍ
   ========================================================= */

.subhero-marine-realization {
  min-height: 430px;
}

.marine-detail-intro {
  padding-top: 95px;
}

.marine-detail-main .main-services-list {
  gap: 34px;
}

.marine-detail-main .main-service-body p:last-child {
  margin-bottom: 0;
}

.marine-detail-personal .geo-box {
  align-items: center;
}

.marine-detail-summary .process-card {
  min-height: 230px;
}

.marine-detail-cta .cta-box {
  align-items: center;
}


/* =========================================================
   DETAIL SLUŽBY - MORSKÉ AKVÁRIÁ
   jednoduchý široký článkový layout
   ========================================================= */

.article-section {
  padding: 90px 0;
  background: #041626;
}

.article-wrap {
  width: min(1180px, 92vw);
  margin: 0 auto;
  max-width: none;
}

.article-intro {
  margin-bottom: 58px;
}

.article-intro h2,
.article-block h2,
.article-highlight h2 {
  margin: 0 0 22px;
  color: #fff;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.article-intro p,
.article-block p,
.article-highlight p {
  width: 100%;
  max-width: none;
  margin: 0 0 18px;
  color: #b9e8f6;
  font-size: 18px;
  line-height: 1.75;
}

.article-block {
  width: 100%;
  padding: 0 0 54px;
  margin: 0 0 54px;
  border-bottom: 1px solid rgba(120, 210, 255, 0.16);
}

.article-highlight {
  width: 100%;
  margin: 0 0 58px;
  padding: 42px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(10, 60, 90, 0.36), rgba(255,255,255,0.055));
  border: 1px solid rgba(120, 210, 255, 0.18);
}

.article-highlight h2 {
  font-size: clamp(30px, 4vw, 46px);
}

.article-highlight p:last-child,
.article-block p:last-child,
.article-intro p:last-child {
  margin-bottom: 0;
}

@media (max-width: 700px) {
  .article-section {
    padding: 65px 0;
  }

  .article-intro h2,
  .article-block h2,
  .article-highlight h2 {
    font-size: 32px;
  }

  .article-intro p,
  .article-block p,
  .article-highlight p {
    font-size: 16px;
  }

  .article-highlight {
    padding: 24px;
    border-radius: 24px;
  }

  .article-block {
    padding-bottom: 42px;
    margin-bottom: 42px;
  }
}

/* Obrázkové bloky v článkoch služieb */

.article-image-block {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 0;
  overflow: hidden;
  margin: 0 0 58px;
  border-radius: 30px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(120, 210, 255, 0.18);
}

.article-image-block-reverse .article-image-block-media {
  order: 2;
}

.article-image-block-media img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
}

.article-image-block-text {
  padding: 42px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.article-image-block-text h2 {
  margin: 0 0 22px;
  color: #fff;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.article-image-block-text p {
  width: 100%;
  max-width: none;
  margin: 0 0 18px;
  color: #b9e8f6;
  font-size: 18px;
  line-height: 1.75;
}

.article-image-block-text p:last-child {
  margin-bottom: 0;
}

.article-list-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 38px;
  margin: 22px 0 26px;
}

.article-list-grid ul {
  margin: 0;
  padding-left: 22px;
}

.article-list-grid li {
  margin-bottom: 10px;
  color: #b9e8f6;
  font-size: 17px;
  line-height: 1.6;
}

.article-highlight h3 {
  margin: 28px 0 16px;
  color: #fff;
  font-size: 24px;
  line-height: 1.2;
}

@media (max-width: 900px) {
  .article-image-block {
    grid-template-columns: 1fr;
  }

  .article-image-block-reverse .article-image-block-media {
    order: 0;
  }

  .article-image-block-media img {
    min-height: 280px;
  }

  .article-image-block-text {
    padding: 28px;
  }

  .article-list-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .article-image-block {
    border-radius: 24px;
  }

  .article-image-block-text {
    padding: 24px;
  }

  .article-image-block-text p,
  .article-list-grid li {
    font-size: 16px;
  }
}

/* =========================================================
   SLUŽBY - JEDNODUCHÝ ROZCESTNÍK 4 KARTY
   ========================================================= */

.services-simple {
  padding: 88px 0;
  background:
    radial-gradient(circle at 15% 0%, rgba(80, 214, 255, .12), transparent 32%),
    #041626;
}

.services-simple-head {
  margin-bottom: 34px;
}

.services-simple-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.services-simple-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(10, 60, 90, 0.38), rgba(255,255,255,0.055));
  border: 1px solid rgba(120, 210, 255, 0.18);
}

.services-simple-card span {
  display: inline-flex;
  margin-bottom: 22px;
  color: #7be7ff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .12em;
}

.services-simple-card h3 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 24px;
  line-height: 1.15;
  letter-spacing: -.03em;
}

.services-simple-card p {
  margin: 0 0 22px;
  color: #b9e8f6;
  font-size: 15px;
  line-height: 1.65;
}

.services-simple-card .btn {
  width: fit-content;
  margin-top: auto;
}

@media (max-width: 760px) {
  .services-simple {
    padding: 65px 0;
  }

  .services-simple-grid {
    grid-template-columns: 1fr;
  }

  .services-simple-card {
    min-height: auto;
    padding: 24px;
    border-radius: 24px;
  }
}

/* =========================================================
   DETAIL SLUŽBY - AKÉ SLUŽBY POSKYTUJEME ZÁKAZNÍKOM
   ========================================================= */

.article-clean-list {
  margin: 24px 0 0;
  padding-left: 22px;
}

.article-clean-list li {
  margin-bottom: 10px;
  color: #b9e8f6;
  font-size: 17px;
  line-height: 1.65;
}

.article-two-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin: 0 0 58px;
}

.article-small-card {
  padding: 34px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(10, 60, 90, 0.34), rgba(255,255,255,0.055));
  border: 1px solid rgba(120, 210, 255, 0.18);
}

.article-small-card h2 {
  margin: 0 0 20px;
  color: #fff;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.article-small-card p {
  margin: 0 0 18px;
  color: #b9e8f6;
  font-size: 17px;
  line-height: 1.75;
}

.article-small-card p:last-child {
  margin-bottom: 0;
}

@media (max-width: 850px) {
  .article-two-grid {
    grid-template-columns: 1fr;
  }

  .article-small-card {
    padding: 26px;
    border-radius: 24px;
  }
}

/* =========================================================
   DETAIL SLUŽBY - PRAVIDELNÝ SERVIS MORSKÉHO AKVÁRIA
   ========================================================= */

.article-clean-list {
  margin: 24px 0 0;
  padding-left: 22px;
}

.article-clean-list li {
  margin-bottom: 10px;
  color: #b9e8f6;
  font-size: 17px;
  line-height: 1.65;
}

.article-two-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin: 0 0 58px;
}

.article-small-card {
  padding: 34px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(10, 60, 90, 0.34), rgba(255,255,255,0.055));
  border: 1px solid rgba(120, 210, 255, 0.18);
}

.article-small-card h2 {
  margin: 0 0 20px;
  color: #fff;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.article-small-card p {
  margin: 0 0 18px;
  color: #b9e8f6;
  font-size: 17px;
  line-height: 1.75;
}

.article-small-card p:last-child {
  margin-bottom: 0;
}

.article-service-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 36px;
  padding-left: 22px;
}

.article-service-list li {
  margin-bottom: 0;
}

@media (max-width: 850px) {
  .article-two-grid,
  .article-service-list {
    grid-template-columns: 1fr;
  }

  .article-small-card {
    padding: 26px;
    border-radius: 24px;
  }
}
/* =========================================================
   O NÁS - NOVÁ ČLÁNKOVÁ VERZIA
   ========================================================= */

.about-article {
  padding: 95px 0;
  background: #041626;
}

.about-article-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 58px;
  align-items: center;
}

.about-article-text h2,
.about-responsible-text h2,
.about-shop-current h2 {
  margin: 8px 0 22px;
  color: #fff;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1;
  letter-spacing: -0.045em;
}

.about-article-text p,
.about-responsible-text p,
.about-shop-current p {
  margin: 0 0 17px;
  color: #b9e8f6;
  font-size: 17px;
  line-height: 1.75;
}

.about-slogan {
  margin-top: 24px !important;
  color: #fff !important;
  font-weight: 850;
}

.about-sea-life {
  padding: 95px 0;
  background:
    radial-gradient(circle at 15% 0%, rgba(80,214,255,.12), transparent 32%),
    linear-gradient(180deg, #061a2e, #041626);
}

.about-sea-life-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.about-sea-life-card {
  overflow: hidden;
  border-radius: 30px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(120, 210, 255, 0.18);
  box-shadow: 0 18px 50px rgba(0,0,0,.22);
}

.about-sea-life-card img {
  width: 100%;
  height: 330px;
  object-fit: cover;
}

.about-sea-life-card div {
  padding: 30px;
}

.about-sea-life-card h3 {
  margin: 0 0 16px;
  color: #fff;
  font-size: 28px;
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.about-sea-life-card p {
  margin: 0 0 16px;
  color: #b9e8f6;
  font-size: 16px;
  line-height: 1.72;
}

.about-sea-life-card p:last-child {
  margin-bottom: 0;
}

.about-responsible {
  padding: 95px 0;
  background: #041626;
}

.about-responsible-box {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: start;
  padding: 42px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 90% 0%, rgba(80,214,255,.14), transparent 34%),
    rgba(255,255,255,.06);
  border: 1px solid rgba(120, 210, 255, 0.18);
  box-shadow: var(--shadow);
}

.about-responsible-list {
  padding: 30px;
  border-radius: 28px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(120, 210, 255, 0.16);
}

.about-responsible-list h3 {
  margin: 0 0 20px;
  color: #fff;
  font-size: 25px;
  line-height: 1.2;
}

.about-responsible-list ul {
  margin: 0;
  padding-left: 22px;
}

.about-responsible-list li {
  margin-bottom: 12px;
  color: #b9e8f6;
  font-size: 17px;
  line-height: 1.6;
}

.about-shop-current {
  padding: 95px 0;
  background: linear-gradient(180deg, #061a2e, #08233c);
}

.about-shop-current-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 50px;
  align-items: center;
}

.about-shop-current a:not(.btn) {
  color: #7be7ff;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.about-shop-current-visual {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  border-radius: 34px;
  border: 1px solid rgba(120, 210, 255, 0.18);
  box-shadow: var(--shadow);
}

.about-shop-current-visual img {
  width: 100%;
  height: 430px;
  object-fit: cover;
}

.about-shop-current-note {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  padding: 22px;
  border-radius: 24px;
  background: rgba(2, 12, 22, .78);
  border: 1px solid rgba(120, 210, 255, 0.24);
}

.about-shop-current-note strong,
.about-shop-current-note span {
  display: block;
}

.about-shop-current-note strong {
  margin-bottom: 5px;
  color: #fff;
  font-size: 21px;
}

.about-shop-current-note span {
  color: #b9e8f6;
}

@media (max-width: 980px) {
  .about-article-grid,
  .about-sea-life-grid,
  .about-responsible-box,
  .about-shop-current-grid {
    grid-template-columns: 1fr;
  }

  .about-sea-life-card img,
  .about-shop-current-visual img {
    height: 280px;
  }

  .about-shop-current-visual {
    min-height: 280px;
  }
}

@media (max-width: 620px) {
  .about-article,
  .about-sea-life,
  .about-responsible,
  .about-shop-current {
    padding: 65px 0;
  }

  .about-responsible-box {
    padding: 24px;
    border-radius: 26px;
  }

  .about-responsible-list {
    padding: 24px;
    border-radius: 22px;
  }

  .about-sea-life-card,
  .about-shop-current-visual {
    border-radius: 24px;
  }

  .about-sea-life-card div {
    padding: 24px;
  }

  .about-article-text h2,
  .about-responsible-text h2,
  .about-shop-current h2 {
    font-size: 34px;
  }
}
/* =========================================================
   O NÁS - OPRAVENÁ VERZIA
   ========================================================= */

.about-clean-intro {
  padding: 95px 0;
  background: #041626;
}

.about-clean-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 58px;
  align-items: center;
}

.about-clean-text h2 {
  margin: 8px 0 24px;
  color: #fff;
  font-size: clamp(36px, 4.5vw, 62px);
  line-height: .98;
  letter-spacing: -0.055em;
}

.about-clean-text p {
  margin: 0 0 18px;
  color: #b9e8f6;
  font-size: 18px;
  line-height: 1.75;
}

.about-clean-photo {
  overflow: hidden;
  min-height: 520px;
  border-radius: 36px;
  border: 1px solid rgba(120, 210, 255, 0.18);
  box-shadow: var(--shadow);
}

.about-clean-photo img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.about-clean-statement {
  padding: 40px 0 95px;
  background: #041626;
}

.about-statement-box {
  padding: 46px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 90% 0%, rgba(80,214,255,.15), transparent 32%),
    linear-gradient(180deg, rgba(10,60,90,.38), rgba(255,255,255,.055));
  border: 1px solid rgba(120, 210, 255, 0.18);
  box-shadow: var(--shadow);
}

.about-statement-box h2 {
  max-width: 850px;
  margin: 8px 0 20px;
  color: #fff;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1;
  letter-spacing: -0.045em;
}

.about-statement-box p {
  max-width: 920px;
  margin: 0;
  color: #b9e8f6;
  font-size: 18px;
  line-height: 1.75;
}

.about-clean-help {
  padding: 90px 0;
  background: linear-gradient(180deg, #061a2e, #041626);
}

.about-help-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 50px;
  align-items: start;
}

.about-help-grid h2 {
  margin: 8px 0 0;
  color: #fff;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1;
  letter-spacing: -0.045em;
}

.about-help-grid p {
  margin: 0 0 18px;
  color: #b9e8f6;
  font-size: 18px;
  line-height: 1.75;
}

.about-slogan {
  color: #fff !important;
  font-weight: 850;
  font-size: 20px !important;
}

.about-sea-life {
  padding: 95px 0;
  background:
    radial-gradient(circle at 15% 0%, rgba(80,214,255,.12), transparent 32%),
    linear-gradient(180deg, #061a2e, #041626);
}

.about-sea-life-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.about-sea-life-card {
  overflow: hidden;
  border-radius: 30px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(120, 210, 255, 0.18);
  box-shadow: 0 18px 50px rgba(0,0,0,.22);
}

.about-sea-life-card img {
  width: 100%;
  height: 330px;
  object-fit: cover;
}

.about-sea-life-card div {
  padding: 30px;
}

.about-sea-life-card h3 {
  margin: 0 0 16px;
  color: #fff;
  font-size: 28px;
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.about-sea-life-card p {
  margin: 0 0 16px;
  color: #b9e8f6;
  font-size: 16px;
  line-height: 1.72;
}

.about-sea-life-card p:last-child {
  margin-bottom: 0;
}

.about-responsible {
  padding: 95px 0;
  background: #041626;
}

.about-responsible-box {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: start;
  padding: 42px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 90% 0%, rgba(80,214,255,.14), transparent 34%),
    rgba(255,255,255,.06);
  border: 1px solid rgba(120, 210, 255, 0.18);
  box-shadow: var(--shadow);
}

.about-responsible-text h2,
.about-shop-current h2 {
  margin: 8px 0 22px;
  color: #fff;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1;
  letter-spacing: -0.045em;
}

.about-responsible-text p,
.about-shop-current p {
  margin: 0 0 17px;
  color: #b9e8f6;
  font-size: 17px;
  line-height: 1.75;
}

.about-responsible-list {
  padding: 30px;
  border-radius: 28px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(120, 210, 255, 0.16);
}

.about-responsible-list h3 {
  margin: 0 0 20px;
  color: #fff;
  font-size: 25px;
  line-height: 1.2;
}

.about-responsible-list ul {
  margin: 0;
  padding-left: 22px;
}

.about-responsible-list li {
  margin-bottom: 12px;
  color: #b9e8f6;
  font-size: 17px;
  line-height: 1.6;
}

.about-shop-current {
  padding: 95px 0;
  background: linear-gradient(180deg, #061a2e, #08233c);
}

.about-shop-current-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 50px;
  align-items: center;
}

.about-shop-current a:not(.btn) {
  color: #7be7ff;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.about-shop-current-visual {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  border-radius: 34px;
  border: 1px solid rgba(120, 210, 255, 0.18);
  box-shadow: var(--shadow);
}

.about-shop-current-visual img {
  width: 100%;
  height: 430px;
  object-fit: cover;
}

.about-shop-current-note {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  padding: 22px;
  border-radius: 24px;
  background: rgba(2, 12, 22, .78);
  border: 1px solid rgba(120, 210, 255, 0.24);
}

.about-shop-current-note strong,
.about-shop-current-note span {
  display: block;
}

.about-shop-current-note strong {
  margin-bottom: 5px;
  color: #fff;
  font-size: 21px;
}

.about-shop-current-note span {
  color: #b9e8f6;
}

@media (max-width: 980px) {
  .about-clean-grid,
  .about-help-grid,
  .about-sea-life-grid,
  .about-responsible-box,
  .about-shop-current-grid {
    grid-template-columns: 1fr;
  }

  .about-clean-photo,
  .about-clean-photo img {
    min-height: 360px;
    height: 360px;
  }

  .about-sea-life-card img,
  .about-shop-current-visual img {
    height: 280px;
  }

  .about-shop-current-visual {
    min-height: 280px;
  }
}

@media (max-width: 620px) {
  .about-clean-intro,
  .about-clean-help,
  .about-sea-life,
  .about-responsible,
  .about-shop-current {
    padding: 65px 0;
  }

  .about-clean-statement {
    padding: 20px 0 65px;
  }

  .about-statement-box,
  .about-responsible-box {
    padding: 26px;
    border-radius: 26px;
  }

  .about-clean-photo,
  .about-clean-photo img {
    min-height: 280px;
    height: 280px;
    border-radius: 24px;
  }

  .about-sea-life-card,
  .about-shop-current-visual {
    border-radius: 24px;
  }

  .about-sea-life-card div,
  .about-responsible-list {
    padding: 24px;
  }
}

/* =========================================================
   HOMEPAGE – VYBERÁME Z BLOGU / Articles - Category Legacy
   ========================================================= */

.position-homepage-blog {
  padding: 88px 0;
 background: #041626;
}

.position-homepage-blog > .moduletable,
.position-homepage-blog > div {
  
}
.position-homepage-blog .moduletable  h3 {
	  width: min(1180px, 92vw);
  margin: 0 auto;
  margin-bottom: 50px;
	
}
/* Nadpis modulu, ak ho máš zapnutý */
.position-homepage-blog .module-title,
.position-homepage-blog h3 {
  margin: 0 0 30px;
  color: #fff;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1;
  letter-spacing: -.04em;
}

/* Joomla UL z modulu */
.position-homepage-blog ul.mod-articlescategory,
.position-homepage-blog ul.category-module,
.position-homepage-blog ul.mod-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
   
  width: min(1180px, 92vw);
  margin: 0 auto;
}

/* Jedna karta článku */
.position-homepage-blog ul.mod-articlescategory > li,
.position-homepage-blog ul.category-module > li,
.position-homepage-blog ul.mod-list > li {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(10, 60, 90, 0.45), rgba(255,255,255,0.06));
  border: 1px solid rgba(120, 210, 255, 0.18);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .28);
  transition: border-color .2s ease, transform .2s ease;
}

.position-homepage-blog ul.mod-articlescategory > li:hover,
.position-homepage-blog ul.category-module > li:hover,
.position-homepage-blog ul.mod-list > li:hover {
  border-color: rgba(123, 231, 255, 0.5);
  transform: translateY(-2px);
}

/* Názov článku */
.position-homepage-blog .mod-articles-category-title {
  display: block;
  margin: 0 0 14px;
  color: #fff;
  font-size: 23px;
  font-weight: 850;
  line-height: 1.22;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.position-homepage-blog .mod-articles-category-title:hover {
  color: #7be7ff;
}

/* Perex */
.position-homepage-blog .mod-articles-category-introtext {
  margin: 0 0 22px;
  color: #b9e8f6;
  font-size: 15px;
  line-height: 1.7;
}

/* Read more drží tlačidlo dole v rovnakej výške */
.position-homepage-blog .mod-articles-category-readmore {
  margin: auto 0 0;
  padding-top: 18px;
}

/* Tlačidlo */
.position-homepage-blog .mod-articles-category-readmore a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 44px;
  padding: 12px 18px;
  border-radius: 999px;
  background: #7be7ff;
  color: #061522 !important;
  font-size: 14px;
  font-weight: 850;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(80, 214, 255, .16);
  transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
}

.position-homepage-blog .mod-articles-category-readmore a:hover {
  background: #fff;
  color: #061522 !important;
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(80, 214, 255, .24);
}

/* Keby Joomla pridala prázdne odseky alebo divné medzery */
.position-homepage-blog li > p:empty {
  display: none;
}

/* Tablet */
@media (max-width: 980px) {
  .position-homepage-blog ul.mod-articlescategory,
  .position-homepage-blog ul.category-module,
  .position-homepage-blog ul.mod-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobil */
@media (max-width: 620px) {
  .position-homepage-blog {
    padding: 60px 0;
  }

  .position-homepage-blog ul.mod-articlescategory,
  .position-homepage-blog ul.category-module,
  .position-homepage-blog ul.mod-list {
    grid-template-columns: 1fr;
  }

  .position-homepage-blog ul.mod-articlescategory > li,
  .position-homepage-blog ul.category-module > li,
  .position-homepage-blog ul.mod-list > li {
    padding: 24px;
    border-radius: 24px;
  }

  .position-homepage-blog .mod-articles-category-title {
    font-size: 21px;
  }
}

/* =========================================================
   MOBIL MENU – tvrdý fix: otvorené menu ako overlay
   ========================================================= */

@media (max-width: 980px) {

  .site-header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 999999 !important;
    background: #020c16 !important;
    overflow: visible !important;
  }

  .site-header .nav {
    height: 84px !important;
    position: relative !important;
    z-index: 1000000 !important;
  }

  .site-logo img {
    width: 135px !important;
    height: auto !important;
  }

  .menu-btn {
    display: block !important;
    position: relative !important;
    z-index: 1000001 !important;
  }

  /* zatvorené menu */
  .site-header .menu ul.mod-menu,
  .site-header .menu ul.nav {
    display: none !important;
  }

  /* otvorené menu – trieda open na UL */
  .site-header .menu ul.mod-menu.open,
  .site-header .menu ul.nav.open {
    display: block !important;
    position: fixed !important;
    top: 84px !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    height: calc(100vh - 84px) !important;

    margin: 0 !important;
    padding: 22px 0 !important;
    list-style: none !important;

    background: #020c16 !important;
    z-index: 999998 !important;
    overflow-y: auto !important;

    border-top: 1px solid rgba(255,255,255,.08) !important;
    box-shadow: 0 30px 80px rgba(0,0,0,.65) !important;
  }

  .site-header .menu ul.mod-menu.open > li,
  .site-header .menu ul.nav.open > li {
    display: block !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .site-header .menu ul.mod-menu.open > li > a,
  .site-header .menu ul.nav.open > li > a {
    display: block !important;
    width: 100% !important;
    padding: 17px 28px !important;

    background: transparent !important;
    color: #d7f7ff !important;
    font-size: 14px !important;
    font-weight: 850 !important;
    line-height: 1.2 !important;
    text-transform: uppercase !important;
    letter-spacing: .06em !important;
    text-decoration: none !important;
    opacity: 1 !important;
  }

  .site-header .menu ul.mod-menu.open > li.active > a,
  .site-header .menu ul.nav.open > li.active > a,
  .site-header .menu ul.mod-menu.open > li.current > a,
  .site-header .menu ul.nav.open > li.current > a,
  .site-header .menu ul.mod-menu.open > li > a:hover,
  .site-header .menu ul.nav.open > li > a:hover {
    background: #06233a !important;
    color: #50d6ff !important;
  }
}

.hero .eyebrow {
  color: var(--cyan);
  font-size: 21px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.mc-video-section {
  padding: 80px 20px;
  background: linear-gradient(180deg, #031423 0%, #06243a 100%);
  color: #ffffff;
}

.mc-video-wrap {
  max-width: 1180px;
  margin: 0 auto;
}

.mc-video-head {
  max-width: 760px;
  margin-bottom: 42px;
}

.mc-video-head span {
  display: inline-block;
  margin-bottom: 12px;
  color: #58d5ff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.mc-video-head h2 {
  margin: 0 0 18px;
  color: #ffffff;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  font-weight: 800;
}

.mc-video-head p {
  margin: 0;
  color: rgba(255,255,255,0.78);
  font-size: 17px;
  line-height: 1.7;
}

.mc-video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.mc-video-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(120,220,255,0.18);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 22px 60px rgba(0,0,0,0.28);
}

.mc-video-box {
  background: #000;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.mc-video-box video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.mc-video-content {
  padding: 24px 26px 28px;
}

.mc-video-content h3 {
  margin: 0 0 12px;
  color: #ffffff;
  font-size: 22px;
  line-height: 1.25;
}

.mc-video-content p {
  margin: 0;
  color: rgba(255,255,255,0.74);
  font-size: 15.5px;
  line-height: 1.65;
}

@media (max-width: 760px) {
  .mc-video-section {
    padding: 56px 16px;
  }
.hero-badges {
  display: none;
   
}
  .mc-video-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .mc-video-content {
    padding: 20px;
  }
}