/* =======================
   CSS RESET & NORMALIZE
   ======================= */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  background: #fff;
  line-height: 1.55;
  font-family: 'Roboto', Arial, sans-serif;
  color: #21453B;
  min-height: 100vh;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
*, *:before, *:after {
  box-sizing: inherit;
}
a {
  color: #21453B;
  text-decoration: none;
  transition: color 0.2s;
  word-break: break-word;
}
a:hover, a:focus {
  color: #01455a;
  text-decoration: underline;
}
ul, ol {
  list-style: none;
}
img {
  max-width: 100%;
  display: block;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #21453B;
  letter-spacing: -0.01em;
}
h1 {
  font-size: 2.25rem;
  margin-bottom: 24px;
}
h2 {
  font-size: 1.5rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.125rem;
  margin-bottom: 14px;
  font-weight: 600;
}
h4, h5, h6 {
  font-size: 1rem;
}
p, .subheadline {
  color: #2B434F;
  font-size: 1rem;
  margin-bottom: 16px;
  font-family: 'Roboto', Arial, sans-serif;
}
strong {
  font-weight: 700;
}
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  /* override gap as needed for structure */
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(33,69,59,0.06);
  margin-bottom: 20px;
  position: relative;
  padding: 32px 24px 24px 24px;
  flex: 1 1 260px;
  min-width: 260px;
  box-sizing: border-box;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 12px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 24px 20px 24px;
  background: #F4ECE2;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(33,69,59,0.11);
  min-width: 300px;
  max-width: 380px;
  margin-bottom: 20px;
}
.testimonial-card p {
  color: #21303a;
  font-size: 1rem;
  font-style: italic;
}
.testimonial-info {
  font-size: 0.98rem;
  color: #21453B;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 12px;
  justify-content: flex-start;
}
.feature-grid li {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(33,69,59,0.06);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 24px 18px;
  min-width: 220px;
  flex: 1 1 220px;
  margin-bottom: 20px;
}
.feature-grid img {
  width: 38px;
  height: 38px;
}
.product-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.product-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(33,69,59,0.06);
  margin-bottom: 20px;
  min-width: 240px;
  padding: 28px 20px 18px 20px;
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.product-card h3 {
  font-size: 1.1rem;
  margin-bottom: 6px;
}
.services-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.service-highlight {
  background: #F4ECE2;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(33,69,59,0.08);
  padding: 22px 18px 16px 18px;
  flex: 1 1 220px;
  min-width: 220px;
  margin-bottom: 20px;
}
.article-previews {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 18px;
}
.article-preview {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(33,69,59,0.06);
  padding: 24px 18px 16px 18px;
  flex: 1 1 220px;
  min-width: 220px;
}
.category-list,
.benefit-list,
.service-benefits-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 10px;
}
.category-list li, .benefit-list li, .service-benefits-list li {
  background: #F4ECE2;
  color: #21453B;
  padding: 10px 18px;
  border-radius: 20px;
  font-size: 1rem;
  margin-bottom: 10px;
}
.benefit-list img,
.benefit-list svg {
  vertical-align: middle;
  width: 24px;
  height: 24px;
  margin-right: 0.5em;
}
/* Service details grid (sluzby) */
.service-details-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.service-detail {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(33,69,59,0.06);
  padding: 24px 18px 16px 18px;
  min-width: 240px;
  flex: 1 1 240px;
  margin-bottom: 20px;
}
/* ============ Buttons ============ */
.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 8px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.18s, color 0.18s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(33,69,59,0.06);
}
.btn-primary {
  background: #21453B;
  color: #fff;
  border: 1.5px solid #21453B;
}
.btn-primary:hover, .btn-primary:focus {
  background: #295f4f;
  color: #fff;
}
.btn-secondary {
  background: #fff;
  color: #21453B;
  border: 1.5px solid #21453B;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #AED6C3;
}
/* ============ Header & Nav ============ */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 14px rgba(41,69,59,0.06);
  position: sticky;
  top: 0;
  z-index: 100;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
}
.logo img {
  height: 48px;
  width: auto;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #21453B;
  opacity: 0.92;
  font-weight: 500;
  letter-spacing: 0.008em;
  transition: opacity 0.18s, color 0.18s;
  position: relative;
  padding: 4px 6px;
}
.main-nav a:hover, .main-nav a:focus {
  opacity: 1;
  color: #295f4f;
}
.header .btn-primary {
  margin-left: 20px;
}
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #21453B;
  cursor: pointer;
  padding: 6px 14px;
  border-radius: 6px;
  transition: background 0.14s;
  line-height: 1;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #AED6C3;
}
/* ============ Mobile Nav ============ */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #21453B;
  color: #fff;
  z-index: 2000;
  transform: translateX(-100%);
  transition: transform 0.33s cubic-bezier(.7,.1,.24,1);
  display: flex;
  flex-direction: column;
  padding: 0;
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.2rem;
  padding: 14px 24px 12px 0;
  cursor: pointer;
  margin-top: 12px;
  margin-bottom: 18px;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 0 34px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 11px 0;
  font-weight: 500;
  border-radius: 5px;
  transition: background 0.18s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #AED6C3;
  color: #18392f;
}
@media (max-width: 980px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 981px) {
  .mobile-menu {
    display: none !important;
  }
}
/* ========== Footer ========== */
footer {
  background: #F4ECE2;
  color: #2B434F;
  font-size: 0.98rem;
  margin-top: 60px;
  padding-top: 38px;
  padding-bottom: 20px;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 48px;
  align-items: flex-start;
  justify-content: flex-start;
  padding-bottom: 10px;
}
.footer-nav {
  display: flex;
  gap: 18px;
  margin-top: 10px;
  flex-wrap: wrap;
}
.footer-nav a {
  color: #21453B;
  opacity: 0.9;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  text-decoration: none;
  transition: color 0.2s, opacity 0.18s;
  position: relative;
  padding: 2px 4px;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #295f4f;
  opacity: 1;
}
.brand-contact {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 8px;
}
.brand-contact a {
  color: #21453B;
  text-decoration: underline;
  margin-left: 2px;
}
.copyright {
  margin-top: 8px;
  color: #54606d;
  font-size: 0.96rem;
  width: 100%;
}
/* =========== Cookie Banner =========== */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #21453B;
  color: #fff;
  padding: 26px 18px 18px 20px;
  box-shadow: 0 -2px 16px rgba(41,69,59,0.09);
  z-index: 10500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 22px;
  width: 100vw;
  max-width: 100vw;
  font-size: 1rem;
  opacity: 1;
  transform: translateY(0);
  transition: transform 0.4s, opacity 0.3s;
}
.cookie-banner.hide {
  opacity: 0;
  transform: translateY(100%);
  pointer-events: none;
}
.cookie-banner__message {
  max-width: 540px;
  line-height: 1.5;
}
.cookie-banner__actions {
  display: flex;
  gap: 14px;
  align-items: center;
}
.cookie-btn,
.cookie-btn-secondary {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  padding: 9px 22px;
  border: none;
  border-radius: 8px;
  outline: none;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
}
.cookie-btn {
  background: #AED6C3;
  color: #21453B;
}
.cookie-btn:hover,.cookie-btn:focus {
  background: #fff;
}
.cookie-btn-secondary {
  background: #F4ECE2;
  color: #21453B;
  margin-left: 2px;
}
.cookie-btn-secondary:hover, .cookie-btn-secondary:focus {
  background: #AED6C3;
}
/* Cookie Settings Modal */
.cookie-modal {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(33,69,59,0.6);
  z-index: 10700;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal__content {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 32px rgba(33,69,59,0.14);
  padding: 36px 28px 28px 28px;
  width: 95%;
  max-width: 420px;
  color: #21453B;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 22px;
  animation: fadeInModal 0.34s cubic-bezier(.7,.1,.24,1);
}
@keyframes fadeInModal {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}
.cookie-modal__header {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.32rem;
  margin-bottom: 5px;
  font-weight: 600;
}
.cookie-modal__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 0;
  border-bottom: 1px solid #F4ECE2;
}
.cookie-modal__category {
  font-size: 1rem;
}
/* switch-style toggles */
.cookie-switch {
  width: 44px;
  height: 22px;
  background: #F4ECE2;
  border-radius: 11px;
  position: relative;
  display: inline-block;
  transition: background 0.16s;
  vertical-align: middle;
}
.cookie-switch input[type=checkbox] {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-switch-label {
  display: flex;
  gap: 7px;
  align-items: center;
}
.cookie-switch-slider {
  position: absolute;
  cursor: pointer;
  top: 3px;
  left: 3px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #21453B;
  transition: left 0.21s;
}
.cookie-switch input:checked + .cookie-switch-slider {
  left: 25px;
  background: #AED6C3;
}
.cookie-modal__footer {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 16px;
}
.cookie-modal__close-btn {
  background: none;
  color: #21453B;
  border: none;
  font-size: 1.3rem;
  position: absolute;
  top: 22px;
  right: 22px;
  cursor: pointer;
}
/* ========== Responsive Typography & Layout ========== */
@media (max-width: 1200px) {
  .container {
    max-width: 1000px;
  }
}
@media (max-width: 980px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.28rem; }
  .container {
    max-width: 99vw;
    padding-left: 10px;
    padding-right: 10px;
  }
  .content-wrapper, .footer .content-wrapper {
    gap: 16px;
  }
  .main-nav {
    gap: 12px;
  }
}
@media (max-width: 768px) {
  .container {
    padding-left: 7px;
    padding-right: 7px;
  }
  h1 {
    font-size: 1.5rem;
    margin-bottom: 18px;
  }
  h2 {
    font-size: 1.09rem;
    margin-bottom: 13px;
  }
  .section, section {
    padding: 26px 7px;
    margin-bottom: 40px;
  }
  .content-wrapper, .footer .content-wrapper {
    gap: 14px;
  }
  .feature-grid, .product-cards, .services-highlights,
  .testimonial-slider, .article-previews, .card-container,
  .service-details-grid {
    flex-direction: column;
    gap: 16px;
  }
  .footer .content-wrapper {
    flex-direction: column;
    gap: 8px;
  }
  .footer-nav {
    gap: 9px;
  }
  .testimonial-card, .product-card, .feature-grid li, .article-preview, .service-highlight, .service-detail {
    min-width: 0;
    width: 100%;
    max-width: 100%;
    flex: 1 1 100%;
    padding: 16px 7px 14px 12px;
  }
  .card {
    min-width: 0;
    width: 100%;
    padding: 22px 7px 14px 12px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .testimonial-slider {
    gap: 14px;
  }
  .cookie-banner {
    flex-direction: column;
    gap: 12px 0;
    align-items: flex-start;
    padding: 18px 5px 10px 7px;
    font-size: 0.98rem;
  }
  .cookie-banner__actions {
    gap: 9px;
  }
  .cookie-modal__content {
    width: 99vw;
    padding: 24px 5vw 20px 6vw;
  }
}
@media (max-width: 460px) {
  h1 { font-size: 1.18rem; }
  h2 { font-size: 1.01rem; }
}
/* Misc other adjustments */
ol {
  list-style: decimal inside;
  padding-left: 1.1em;
  margin-bottom: 8px;
}
ul {
  list-style: disc inside;
  padding-left: 1.1em;
  margin-bottom: 8px;
}
/* ========== Misc Components ========== */
.subheadline {
  font-size: 1.06rem;
  color: #295f4f;
  margin-bottom: 18px;
  font-family: 'Roboto', Arial, sans-serif;
}
section {
  width: 100%;
  background: #fff;
  border-radius: 0;
}
/* ============ Forms & Inputs ============ */
input, textarea, select {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #21453B;
  border: 1px solid #AED6C3;
  border-radius: 7px;
  padding: 10px 9px;
  margin-bottom: 12px;
  background: #fff;
  outline: none;
  transition: border-color 0.16s, box-shadow 0.15s;
}
input:focus, textarea:focus, select:focus {
  border-color: #21453B;
  box-shadow: 0 0 0 2px #AED6C340;
}
button, [type=button], [type=submit] {
  font-family: inherit;
}
/* ========== Scrollbar Styling ========== */
::-webkit-scrollbar {
  width: 10px;
  background: #F4ECE2;
}
::-webkit-scrollbar-thumb {
  background: #AED6C3;
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: #295f4f;
}
/* ======= Utility classes ======= */
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.text-center {
  text-align: center;
}
.d-block { display: block !important; }
.flex {
  display: flex;
}
.flex-column { flex-direction: column; }
/* ===================
   TRANSITIONS/HOVERS
   =================== */
.card,
.product-card,
.feature-grid li,
.service-highlight,
.article-preview,
.service-detail,
.testimonial-card {
  transition: box-shadow 0.23s, transform 0.16s;
}
.card:hover, .product-card:hover, .feature-grid li:hover,
.article-preview:hover, .service-highlight:hover,
.service-detail:hover, .testimonial-card:hover {
  box-shadow: 0 4px 18px rgba(33,69,59,0.17);
  transform: translateY(-2px) scale(1.0125);
}
/* ===============
   Z-INDEX LAYERS
   =============== */
header { z-index: 100; }
footer { z-index: 20; }
.mobile-menu { z-index: 2000; }
.cookie-banner { z-index: 10500; }
.cookie-modal { z-index: 10700; }

/* ============== END ============== */
