/* RESET & NORMALIZE */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  background: #FFFFFF;
  color: #254359;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  line-height: 1.6;
  min-height: 100vh;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: #254359;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #FFB700;
}
ul, ol {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', Arial, Helvetica, sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #254359;
  margin-bottom: 16px;
  text-transform: uppercase;
}
h1 {
  font-size: 2.75rem;
  line-height: 1.1;
}
h2 {
  font-size: 2rem;
  line-height: 1.15;
}
h3 {
  font-size: 1.5rem;
  line-height: 1.20;
}
h4 {
  font-size: 1.125rem;
  line-height: 1.25;
}
p, li, dd, dt, address {
  font-size: 1rem;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
}
.lead {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 24px;
  color: #254359;
}
strong {
  font-weight: 700;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 18px;
}
.content-wrapper {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 10px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* HEADER */
header {
  background: #fff;
  border-bottom: 4px solid #FFB700;
  padding: 0.5rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header img {
  max-height: 56px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  font-family: 'Oswald', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 6px 10px;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #FFB700;
  color: #254359;
}
.main-nav .cta {
  background: #FFB700;
  color: #254359;
  padding: 8px 22px;
  margin-left: 10px;
  border-radius: 24px;
  font-size: 1.05rem;
  box-shadow: 0 2px 10px 0 rgba(255,183,0,0.11);
  transition: transform 0.2s, background 0.2s;
}
.main-nav .cta:hover, .main-nav .cta:focus {
  background: #254359;
  color: #FFB700;
  transform: translateY(-2px) scale(1.05);
}
/* MOBILE NAV TOGGLE */
.mobile-menu-toggle {
  background: none;
  border: none;
  color: #254359;
  font-size: 2rem;
  cursor: pointer;
  display: none;
  padding: 8px 12px;
  border-radius: 6px;
  transition: background 0.16s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #FFB700;
  color: #254359;
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  z-index: 10000;
  top: 0;
  left: 0;
  right: 0;
  height: 100vh;
  background: #254359;
  color: #fff;
  transform: translateX(-100vw);
  transition: transform 0.35s cubic-bezier(.49,.16,.48,1.24);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0 0 80px 0;
  width: 100vw;
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 24px 24px 10px 0;
  font-size: 2.2rem;
  background: none;
  color: #FFB700;
  border: none;
  cursor: pointer;
  transition: color 0.18s;
  z-index: 12001;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  padding: 18px 36px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Oswald', Arial, Helvetica, sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: uppercase;
  text-align: left;
  letter-spacing: 0.07em;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  transition: color 0.2s;
}
.mobile-nav a:active, .mobile-nav a:hover, .mobile-nav a:focus {
  color: #FFB700;
}

/* HERO & CTA */
.cta {
  background: #FFB700;
  color: #254359;
  font-family: 'Oswald', Arial, Helvetica, sans-serif;
  font-weight: bold;
  font-size: 1.22rem;
  letter-spacing: 0.04em;
  border: none;
  border-radius: 32px;
  padding: 14px 38px;
  margin: 12px 0 0 0;
  box-shadow: 0 4px 16px rgba(37,67,89,0.09);
  cursor: pointer;
  text-transform: uppercase;
  display: inline-block;
  transition: background 0.2s, color 0.2s, transform 0.22s cubic-bezier(.40,.16,.19,1.29);
  outline: none;
}
.cta:hover, .cta:focus {
  background: #254359;
  color: #FFB700;
  transform: scale(1.04) translateY(-2px);
}

section {
  background: #fff;
  border-radius: 18px;
  margin-bottom: 60px;
  box-shadow: 0 6px 22px 0 rgba(37,67,89,0.05);
  padding: 40px 20px;
  transition: box-shadow 0.22s;
}
section:hover {
  box-shadow: 0 12px 34px 0 rgba(37,67,89,0.11);
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 18px rgba(37,67,89,0.08);
  padding: 32px 24px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 260px;
  transition: box-shadow 0.21s, transform 0.19s;
}
.card:hover {
  box-shadow: 0 12px 22px rgba(37,67,89,0.19);
  transform: translateY(-4px) scale(1.012);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}
.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-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 11px rgba(37,67,89,0.13);
  margin-bottom: 20px;
  transition: box-shadow 0.22s, border 0.24s;
  border: 1.8px solid #FFB7000C;
}
.testimonial-card p {
  color: #254359;
  font-size: 1.08rem;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  line-height: 1.5;
}
.testimonial-card span {
  font-family: 'Oswald', Arial, Helvetica, sans-serif;
  font-size: 1.08rem;
  color: #254359;
  margin-left: 12px;
}
.testimonial-card .stars {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-left: auto;
  min-width: 110px;
}
.testimonial-card.highlighted {
  background: #254359;
  color: #FFB700;
  border: 2.5px solid #FFB700;
}
.testimonial-card.highlighted p, .testimonial-card.highlighted span, .testimonial-card.highlighted h3 {
  color: #FFB700;
}
.testimonial-card.highlighted .stars img {
  filter: grayscale(0) brightness(1.2) saturate(2.5) invert(0.6) sepia(1) hue-rotate(-60deg);
}
.stars img {
  width: 22px;
  height: 22px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

/* FAQ ACCORDION */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 20px;
}
.faq-accordion dt {
  font-family: 'Oswald', Arial, Helvetica, sans-serif;
  background: #FFB70017;
  color: #254359;
  padding: 14px 18px 14px 22px;
  border-radius: 8px;
  font-size: 1.13rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
  margin-bottom: 3px;
}
.faq-accordion dt:hover, .faq-accordion dt:focus {
  background: #FFB70049;
  color: #254359;
}
.faq-accordion dd {
  background: #fff;
  color: #254359;
  padding: 12px 20px 15px 32px;
  border-left: 3px solid #FFB700;
  border-radius: 0 8px 8px 0;
  font-size: 1rem;
  margin-bottom: 3px;
  box-shadow: 0 2px 8px rgba(37,67,89,0.09);
  transition: box-shadow 0.14s;
}

/* FORMS AND MAPS (kontakt) */
.map {
  background: #FFB70013;
  border-radius: 14px;
  padding: 18px;
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

/* FOOTER */
footer {
  background: #254359;
  color: #fff;
  padding: 48px 0 30px 0;
  border-top: 4px solid #FFB700;
  margin-top: 60px;
}
footer a {
  color: #FFB700;
  font-family: 'Oswald', Arial, Helvetica, sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
  font-size: 1.06rem;
  text-decoration: none;
}
footer a:hover, footer a:focus {
  color: #fff;
  text-decoration: underline;
}
.footer-nav {
  display: flex;
  gap: 22px;
  margin: 18px 0 18px 0;
  flex-wrap: wrap;
}
footer address {
  font-style: normal;
  color: #fff;
  font-size: 1rem;
  margin-top: 12px;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
footer img {
  max-height: 54px;
}

/* COOKIE CONSENT BANNER + MODAL */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99999;
  background: #254359;
  color: #fff;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 30px 26px 32px;
  box-shadow: 0 -8px 34px rgba(37,67,89,0.19);
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  width: 100vw;
  max-width: 100vw;
  transition: transform 0.34s cubic-bezier(.49,.16,.48,1.24);
}
.cookie-banner.hide {
  transform: translateY(130%);
}
.cookie-banner .cookie-msg {
  flex: 1 1 60%;
  font-size: 1.1rem;
  margin-right: 12px;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 16px;
}
.cookie-btn, .cookie-banner button {
  font-family: 'Oswald', Arial, Helvetica, sans-serif;
  border: none;
  border-radius: 20px;
  padding: 10px 28px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.22s, color 0.16s, transform 0.18s;
  margin-right: 0;
  margin-top: 0;
}
.cookie-btn.accept {
  background: #FFB700;
  color: #254359;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #fff;
  color: #254359;
}
.cookie-btn.reject {
  background: #fff;
  color: #254359;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #FFB700;
  color: #fff;
}
.cookie-btn.settings {
  background: none;
  color: #FFB700;
  border: 2px solid #FFB700;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  color: #254359;
  background: #FFB700;
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 100000;
  background: #fff;
  color: #254359;
  width: 94vw;
  max-width: 400px;
  border-radius: 16px;
  box-shadow: 0 14px 40px rgba(37,67,89,0.24);
  transform: translate(-50%, -50%) scale(0.98);
  opacity: 0;
  pointer-events: none;
  padding: 28px 28px 20px 30px;
  transition: opacity 0.19s cubic-bezier(.56,.04,.54,1.29), transform 0.22s cubic-bezier(.49,.16,.18,1.40);
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}
.cookie-modal h2 {
  color: #254359;
  font-size: 1.28rem;
  margin-bottom: 14px;
  text-transform: none;
}
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 18px;
}
.cookie-modal label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.04rem;
}
.cookie-modal input[type="checkbox"] {
  accent-color: #FFB700;
  width: 20px;
  height: 20px;
}
.cookie-modal .actions {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  margin-top: 14px;
}
.cookie-modal .modal-close {
  position: absolute;
  top: 10px;
  right: 18px;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #254359;
  cursor: pointer;
  padding: 2px 4px;
  transition: color 0.16s;
}
.cookie-modal .modal-close:hover, .cookie-modal .modal-close:focus {
  color: #FFB700;
}

/* UTILITY: VISUAL PATTERNS */
@media (max-width: 1100px) {
  .container { max-width: 100vw; padding: 0 8px; }
  .content-wrapper { max-width: 100vw; }
}

@media (max-width: 900px) {
  .main-nav { gap: 20px; }
  .footer-nav { gap: 13px; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
}

@media (max-width: 768px) {
  header .container {
    flex-direction: row;
    align-items: center;
  }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .section, section {
    padding: 26px 4vw;
    margin-bottom: 40px;
  }
  .content-wrapper { gap: 16px; padding: 0; }
  .card-container, .content-grid {
    flex-direction: column;
    gap: 20px;
  }
  .testimonial-card { flex-direction: column; align-items: flex-start; }
  .feature-item {
    gap: 12px;
  }
  .text-image-section, .text-section {
    flex-direction: column;
    gap: 16px;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 21px 8vw 19px 9vw;
  }
}

@media (max-width: 600px) {
  h1 { font-size: 1.57rem; }
  h2 { font-size: 1.13rem; }
  .cta { font-size: 1.03rem; padding: 10px 20px; }
  .testimonial-card, .card, .feature-item, .map, .faq-accordion dd, .faq-accordion dt { padding: 12px; }
}

/* SPACING + FLEXBOX PATTERNS */
.section { margin-bottom: 60px; padding: 40px 20px; }
.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card { margin-bottom: 20px; position: relative; display: flex; flex-direction: column; }
.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-card { display: flex; align-items: center; gap: 20px; padding: 20px; }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }

/* GEOMETRIC DECORATIVE SHAPES (OPTIONAL) */
.decorative-shape {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  opacity: 0.03;
  border-radius: 32px;
  background: #FFB700;
  width: 200px;
  height: 140px;
  transform: rotate(-9deg);
}

/* OVERRIDES FOR BUTTONS, FORMS, INPUTS */
input, textarea, select {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #254359;
  padding: 10px 14px;
  border-radius: 8px;
  border: 2px solid #2543592F;
  margin-bottom: 18px;
  outline: none;
  transition: border 0.18s;
}
input:focus, textarea:focus, select:focus{
  border: 2px solid #FFB700;
}

button {
  font-family: inherit;
}

/* GEOMETRIC ICONS in LI */
ul li {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
  font-size: 1rem;
}
ul li img, .feature-item img {
  width: 28px;
  height: 28px;
}

/* Hide visually but keep for screen readers (for accessibility) */
.sr-only { position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); border:0;}

/* FOCUS STYLES */
a:focus, button:focus, input:focus, .cta:focus, .main-nav a:focus {
  outline: 3px solid #FFB700;
  outline-offset: 2px;
}

/* ANIMATIONS: Micro-interactions */
.cta, .main-nav .cta, .card, .testimonial-card {
  transition: box-shadow 0.22s, background 0.2s, color 0.2s, transform 0.18s;
}

/* Prevent content overlap and Z stacking */
.section, section, .card, .testimonial-card, .cookie-banner, .cookie-modal, header, footer {
  z-index: 1;
}
.mobile-menu, .cookie-banner, .cookie-modal {
  z-index: 10001;
}

/* ----- END CSS ----- */
