/* ==== CSS RESET & NORMALIZE ==== */
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  background: #F6F8FC;
  color: #181846;
  line-height: 1.6;
  min-height: 100vh;
  font-size: 1rem;
}
img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: #14E3F1;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #181846;
  text-shadow: 0 0 2px #14E3F1;
  outline: none;
}
ul, ol {
  list-style-position: inside;
  margin-left: 1.3em;
}
table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 20px 0 rgba(20, 227, 241, 0.10);
  overflow: hidden;
}
th, td {
  font-size: 1rem;
  padding: 16px 12px;
  border-bottom: 1px solid #E8EBF2;
  text-align: left;
}
th {
  background: #F6F8FC;
  font-family: 'Oswald', Arial, sans-serif;
  letter-spacing: 0.015em;
}
tr:last-child td {
  border-bottom: none;
}

/* ==== BRAND TYPOGRAPHY ==== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', Arial, sans-serif;
  margin-bottom: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #181846;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  text-shadow: 0 6px 24px #14E3F1, 0 0px 0 transparent;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.3rem;
}
h4 {
  font-size: 1.1rem;
  margin-bottom: 6px;
}
p, li, td, th {
  font-size: 1rem;
}
small {
  font-size: 0.89rem;
}
strong {
  font-weight: 700;
}
em {
  font-style: italic;
}

/* ==== LAYOUT CONTAINERS ==== */
.container {
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
  margin: 0 auto;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}
@media (max-width: 992px) {
  .section { padding: 32px 7vw; }
}
@media (max-width: 600px) {
  .section { margin-bottom: 36px; padding: 22px 8px; }
}

/* ==== HEADER / NAVIGATION ==== */
header {
  background: #181846;
  box-shadow: 0 2px 24px 0 rgba(20, 227, 241, 0.08);
  position: sticky;
  top: 0;
  z-index: 60;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 16px 20px;
  gap: 24px;
}
header img {
  width: 156px;
  height: auto;
}
header nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
header nav a {
  color: #14E3F1;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.06rem;
  letter-spacing: 0.03em;
  position: relative;
  padding-bottom: 2px;
  transition: color 0.18s;
}
header nav a:hover, header nav a:focus {
  color: #fff;
  text-shadow: 0 0 8px #14E3F1;
}

.cta-btn {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.1rem;
  display: inline-block;
  background: #14E3F1;
  color: #181846;
  padding: 13px 34px;
  margin-left: 18px;
  border-radius: 35px;
  border: none;
  box-shadow: 0 8px 28px 0 rgba(20, 227, 241, 0.18);
  font-weight: 700;
  letter-spacing: 0.06em;
  cursor: pointer;
  position: relative;
  transition: background 0.20s, color 0.20s, box-shadow 0.30s;
}
.cta-btn:hover, .cta-btn:focus {
  background: #181846;
  color: #14E3F1;
  box-shadow: 0 4px 36px 0 rgba(20, 227, 241, 0.31);
  outline: none;
}

/* ==== HERO ==== */
.hero {
  background: #fff;
  border-radius: 32px;
  box-shadow: 0 4px 32px 0 rgba(20,227,241,0.08);
  padding: 40px 32px 44px 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 26px;
  margin-bottom: 40px;
  position: relative;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
  z-index: 1;
}
@media (max-width: 768px) {
  .hero {
    padding: 25px 14px 30px 14px;
    border-radius: 18px;
  }
}

/* ==== FLEXBOX LAYOUTS ==== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 20px 0 rgba(20, 227, 241, 0.10);
  padding: 24px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.22s;
}
.card:hover {
  box-shadow: 0 8px 36px 0 rgba(20, 227, 241, 0.16);
  z-index: 3;
}
.content-grid, .feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.feature-grid > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  min-width: 210px;
  flex: 1 1 245px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 18px 0 rgba(24, 24, 70, 0.10), 0 1px 0 #F0FCFB;
  padding: 22px 20px;
  transition: box-shadow 0.20s, transform 0.18s;
  margin-bottom: 20px;
}
.feature-grid img { width: 48px; height: 48px; margin-bottom: 10px; }
.feature-grid > div:hover {
  box-shadow: 0 4px 32px 0 #14E3F145;
  transform: translateY(-5px) scale(1.03);
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  .content-grid, .feature-grid {
    flex-direction: column;
    gap: 20px;
  }
}

/* ==== SECTION & SPACING ==== */
.text-section {
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.text-section ul, .text-section ol {
  padding-left: 20px;
  margin-bottom: 10px;
  margin-top: 6px;
}
.text-section ul li, .text-section ol li {
  margin-bottom: 9px;
}

/* ==== TESTIMONIALS ==== */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 24px;
  background: #fff;
  border-radius: 17px;
  box-shadow: 0 1px 12px 0 rgba(24, 24, 70, 0.08);
  color: #181846;
  flex-direction: column;
  align-items: flex-start;
  min-width: 230px;
  max-width: 640px;
  transition: box-shadow 0.16s, transform 0.17s;
}
.testimonial-card p {
  font-size: 1.1rem;
  line-height: 1.58;
  font-weight: 500;
}
.testimonial-card h4 {
  margin-top: 10px;
  color: #14E3F1;
  font-size: 1.06rem;
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 700;
}
.testimonial-card:hover {
  box-shadow: 0 4px 24px 0 #14E3F165;
  transform: scale(1.02);
}
@media (max-width: 768px) {
  .testimonial-card {
    max-width: 100%;
    margin-bottom: 18px;
  }
}

/* ==== CONTACT INFO ==== */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 17px;
  margin: 12px 0 20px 0;
}
.contact-info p {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #23234d;
}
.contact-info img {
  width: 28px; height: 28px; opacity: .93;
}

.map-placeholder {
  margin: 16px 0 12px 0;
  background: #F6F8FC;
  border-radius: 14px;
  box-shadow: 0 2px 14px 0 rgba(20, 227, 241, 0.05);
  padding: 18px;
  display: flex;
  align-items: center;
}
.map-placeholder img {
  margin-right: 12px;
  width: 32px; height: 32px;
}

/* ==== FOOTER ==== */
footer {
  background: #181846;
  color: #F6F8FC;
  padding: 40px 0 0 0;
  margin-top: 38px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-logo img {
  width: 83px;
  height: auto;
  margin-bottom: 8px;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 12px;
}
footer nav a {
  color: #14E3F1;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.01rem;
}
footer nav a:hover {
  color: #fff;
  text-shadow: 0 0 8px #14E3F1;
}
.footer-contact {
  font-size: 1rem;
  line-height: 1.48;
  margin-bottom: 16px;
  color: #F6F8FC;
}
.footer-copyright {
  width: 100%;
  text-align: center;
  color: #9fdeec;
  font-size: 0.95rem;
  margin: 18px 0 0 0;
  padding-bottom: 22px;
}
@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
  .footer-copyright {
    padding-bottom: 10px;
  }
}

/* ==== BUTTONS & MICROINTERACTIONS ==== */
button, .cta-btn {
  outline: none;
  border: none;
}
button:focus-visible, .cta-btn:focus-visible {
  outline: 2px solid #14E3F1;
  outline-offset: 2px;
}
button {
  background: transparent;
  cursor: pointer;
  color: #181846;
  font-size: 1.1rem;
}

/* ==== MOBILE NAVIGATION ==== */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 22px;
  right: 20px;
  z-index: 102;
  background: #14E3F1;
  border-radius: 50%;
  width: 52px;
  height: 52px;
  font-size: 2rem;
  color: #181846;
  box-shadow: 0 2px 16px rgba(20,227,241,0.10);
  transition: background 0.20s, color 0.14s, transform 0.16s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #fff;
  color: #14E3F1;
  transform: scale(1.09);
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  z-index: 130;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  max-width: 380px;
  background: #181846;
  box-shadow: -8px 0 40px 0 #14E3F1A0;
  transform: translateX(100%);
  transition: transform 0.33s cubic-bezier(0.45,0,0.55,1);
  will-change: transform;
}
.mobile-menu.open {
  transform: translateX(0%);
}
.mobile-menu-close {
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: #14E3F1;
  color: #181846;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.7rem;
  position: absolute;
  top: 22px;
  right: 20px;
  z-index: 141;
  box-shadow: 0 2px 24px #14E3F1A0;
  transition: background 0.19s, color 0.21s, transform 0.15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #fff;
  color: #14E3F1;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 90px;
  padding: 0 32px;
}
.mobile-nav a {
  color: #14E3F1;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.06em;
  line-height: 1.8;
  padding: 14px 0;
  border-bottom: 1px solid #22224d33;
  transition: color 0.17s, text-shadow 0.16s;
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #fff;
  text-shadow: 0 0 10px #14E3F1;
}
@media (max-width: 900px) {
  header nav, header .cta-btn {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 901px) {
  .mobile-menu, .mobile-menu-toggle {
    display: none !important;
  }
}

/* ==== CARDS ==== */
.card {
  border-left: 5px solid #14E3F1;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
@media (max-width: 600px) {
  .card { padding: 15px; }
}

/* ==== PRICES ==== */
.price {
  color: #14E3F1;
  font-weight: 700;
  background: #EAFEFF;
  padding: 2px 12px;
  border-radius: 30px;
  margin-left: 12px;
  letter-spacing: 0.02em;
  font-size: 0.98rem;
}

/* ==== COOKIES BANNER ==== */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 250;
  background: #181846;
  color: #F6F8FC;
  padding: 24px 12px 18px 12px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 36px;
  box-shadow: 0 -2px 37px 0 #14E3F180;
  font-size: 1.04rem;
  animation: slideInBanner 0.6s cubic-bezier(0.22,1,0.36,1);
}
@keyframes slideInBanner {
  0% { transform: translateY(120%); opacity: 0; }
  100% { transform: none; opacity: 1; }
}
.cookie-banner .cookie-btns {
  display: flex;
  gap: 18px;
  margin-left: 20px;
}
.cookie-btn {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1rem;
  padding: 10px 22px;
  border-radius: 30px;
  border: none;
  font-weight: 700;
  letter-spacing: 0.03em;
  cursor: pointer;
  margin-right: 2px;
  background: #14E3F1;
  color: #181846;
  transition: background 0.20s, color 0.20s, transform 0.17s;
}
.cookie-btn.reject {
  background: #F6F8FC;
  color: #181846;
}
.cookie-btn.settings {
  background: #fff;
  color: #181846;
  border: 1px solid #14E3F1;
  margin-right: 4px;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #181846;
  color: #14E3F1;
  transform: scale(1.03);
}
@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    font-size: 0.95rem;
    gap: 12px;
    padding: 15px 7px 12px 7px;
  }
  .cookie-banner .cookie-btns { margin-left: 0; }
}

/* ==== COOKIE PREFERENCES MODAL ==== */
.cookie-modal-overlay {
  position: fixed;
  z-index: 300;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(24, 24, 70, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInModalBg 0.25s;
}
@keyframes fadeInModalBg {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  max-width: 420px;
  width: 96vw;
  border-radius: 24px;
  padding: 32px 22px 24px 22px;
  box-shadow: 0 5px 44px 0 #14E3F1A0;
  color: #181846;
  display: flex;
  flex-direction: column;
  gap: 22px;
  animation: fadeInModal 0.25s;
}
@keyframes fadeInModal {
  0% { opacity: 0; transform: scale(0.86) translateY(46px); }
  100% { opacity: 1; transform: none; }
}
.cookie-modal h3 {
  font-size: 1.25rem;
  color: #181846;
  margin-bottom: 3px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 13px;
}
.cookie-modal label {
  font-size: 1.06rem;
  font-family: 'Roboto', Arial, sans-serif;
}
.cookie-toggle {
  width: 44px;
  height: 24px;
  border-radius: 16px;
  background: #E8EBF2;
  position: relative;
  transition: background 0.18s;
  margin-right: 6px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
}
.cookie-toggle input {
  display: none;
}
.cookie-toggle .cookie-knob {
  width: 22px;
  height: 22px;
  background: #14E3F1;
  border-radius: 50%;
  position: absolute;
  left: 1px; top: 1px;
  transition: left 0.19s;
  box-shadow: 0 1px 7px #14E3F1A0;
}
.cookie-toggle input:checked + .cookie-knob {
  left: 21px;
  background: #181846;
}
.cookie-modal .modal-btns {
  display: flex;
  gap: 16px;
  margin-top: 10px;
  justify-content: flex-end;
}
.cookie-modal .modal-btns .cookie-btn {
  padding: 10px 20px;
}
.cookie-modal .close-modal {
  position: absolute;
  top: 12px; right: 12px;
  background: #14E3F1;
  color: #181846;
  border-radius: 50%;
  width: 32px; height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  border: none;
}
.cookie-modal .close-modal:hover {
  background: #181846;
  color: #14E3F1;
}

/* ==== MISC / ARTISTIC ACCENTS ==== */
.hero:before {
  content: '';
  display: block;
  position: absolute;
  top: -32px;
  right: -22px;
  width: 110px;
  height: 110px;
  background: #14E3F1;
  opacity: 0.12;
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}
.feature-grid > div:after {
  content: '';
  position: absolute;
  right: -18px;
  top: 5px;
  width: 36px; height: 36px;
  background: #14E3F1;
  border-radius: 23px 9px 27px 11px / 17px 21px 18px 13px;
  opacity: 0.11;
  z-index: 0;
  pointer-events: none;
}

/* ==== RESPONSIVE ==== */
@media (max-width: 1140px) {
  .container { max-width: 1000px; }
}
@media (max-width: 900px) {
  .container { max-width: 96vw; padding: 0 6vw; }
  footer .container { padding: 0 6vw; }
}
@media (max-width: 600px) {
  h1 { font-size: 1.56rem; }
  h2 { font-size: 1.22rem; }
  h3 { font-size: 1.09rem; }
  .hero, .card, .feature-grid > div {
    border-radius: 11px;
    padding: 13px 8px;
  }
  .card {
    border-left-width: 3px;
  }
  form input, form textarea {
    font-size: 1rem;
    padding: 7px 11px;
  }
}

/* ==== UTILS ==== */
.gap-top{ margin-top:22px; }
.gap-bottom{ margin-bottom:22px; }
.text-center{ text-align:center; }
.w-100{ width:100%; }

/* ==== FOR ARTISTIC FLAIR ON HIGHLIGHTS ==== */
::selection {
  background: #14E3F1;
  color: #181846;
}

/* ==== FORM BASICS (for kontakt.html) ==== */
form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 28px 0;
}
form input, form textarea {
  background: #fff;
  border-radius: 11px;
  border: 1px solid #14E3F1;
  font-size: 1.03rem;
  padding: 10px 17px;
  color: #181846;
  font-family: 'Roboto', Arial, sans-serif;
  resize: vertical;
  transition: border 0.16s, box-shadow 0.17s;
}
form input:focus, form textarea:focus {
  border-color: #181846;
  box-shadow: 0 0 0 2px #14E3F180;
}
form label { color: #181846; font-weight: 500; }

/* ==== THANK-YOU PAGE ==== */
.thank-you {
  text-align: center;
  margin: 0 auto;
  max-width: 630px;
  padding: 44px 0 44px 0;
}

/* ==== Misc fixes for accessibility ==== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition: none !important;
    animation: none !important;
  }
}
