/* ---- CSS RESET & BASE ---- */
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 {
  height: 100%;
  scroll-behavior: smooth;
}
body {
  background: #F9F9F3;
  color: #182F39;
  font-family: 'Arial', sans-serif;
  font-size: 16px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #2684A3;
  text-decoration: none;
  transition: color .2s;
}
a:hover, a:focus {
  color: #195167;
  text-decoration: underline;
}

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #182F39;
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.18;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 14px;
}
h4 {
  font-size: 1.08rem;
  margin-bottom: 10px;
}
p, ul, ol, dl {
  color: #182F39;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  margin-bottom: 14px;
}
strong, b {
  font-weight: 700;
  color: #195167;
}
ul, ol {
  padding-left: 22px;
}
li {
  margin-bottom: 8px;
}
table {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 28px;
}
th, td {
  border: 1.5px solid #2684A3;
  padding: 12px;
  text-align: left;
  font-family: 'Montserrat', Arial, sans-serif;
}
th {
  background: #E1ECF2;
  font-weight: 700;
}

/* ---- GEOMETRIC/STRUCTURED BASE ---- */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #FFF;
  border-radius: 24px;
  box-shadow: 0 2px 12px rgba(38,132,163,.06), 0 0.5px 2px rgba(24,47,57,.03);
}

/* ---- HEADER & NAV ---- */
header {
  background: #FFF;
  border-bottom: 3px solid #2684A3;
  box-shadow: 0 2px 12px rgba(38,132,163,.07);
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 80px;
}
header img[alt="GlanzMeister"] {
  height: 46px;
  width: auto;
  margin-right: 36px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  padding: 6px 0;
  border-bottom: 2.5px solid transparent;
  transition: border-color .2s, color .2s;
}
.main-nav a:hover, .main-nav a:focus {
  color: #195167;
  border-color: #195167;
}
.cta-btn {
  background: #2684A3;
  color: #FFF;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  border-radius: 32px;
  padding: 10px 28px;
  margin-left: 18px;
  box-shadow: 0 2px 8px rgba(38,132,163,.13);
  letter-spacing: 0.4px;
  cursor: pointer;
  transition: background .2s, box-shadow .2s, color .2s, transform .2s;
  outline: none;
  display: inline-block;
}
.cta-btn:hover, .cta-btn:focus {
  background: #195167;
  color: #FFF;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 4px 16px rgba(24,47,57,.10);
}

/* ---- MOBILE NAVIGATION ---- */
.mobile-menu-toggle {
  background: none;
  border: none;
  color: #2684A3;
  font-size: 2.3rem;
  display: none;
  cursor: pointer;
  margin-left: 14px;
  transition: color .2s;
  z-index: 1102;
}
.mobile-menu-toggle:focus {
  outline: 2px solid #195167;
  outline-offset: 2px;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(38,132,163,0.97);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  transform: translateX(-100%);
  transition: transform .4s cubic-bezier(0.7,0,0.3,1);
  z-index: 1100;
  padding: 0 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #FFF;
  font-size: 2.5rem;
  align-self: flex-end;
  margin: 26px 24px 16px 0;
  cursor: pointer;
  z-index: 1103;
  padding: 0 8px;
  transition: color .2s;
}
.mobile-menu-close:focus {
  color: #FFD91A;
  outline: 2px solid #FFF;
  outline-offset: 4px;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  gap: 16px;
  padding: 24px 34px 0 34px;
}
.mobile-nav a {
  color: #FFF;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  padding: 13px 0;
  margin-bottom: 4px;
  border-bottom: 2px solid transparent;
  width: 100%;
  transition: color .2s, border-color .2s, background .18s;
  border-radius: 4px;
  display: block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #195167;
  color: #FFD91A;
  border-bottom: 2px solid #FFD91A;
}

/* ---- HERO SECTION ----*/
.hero {
  min-height: 390px;
  background: #E1ECF2;
  border-radius: 0 0 80px 0;
  display: flex;
  align-items: center;
  padding: 46px 0;
  margin-bottom: 60px;
}
.hero .container {
  flex-direction: column;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 22px;
}
.hero h1 {
  font-size: 2.65rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #195167;
}
.hero p {
  font-size: 1.25rem;
  color: #182F39;
}
.hero .cta-btn {
  margin-top: 16px;
}

/* ---- GEOMETRIC FEATURE GRID ---- */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: flex-start;
  margin-top: 18px;
}
.feature {
  background: #FFF;
  border-radius: 24px;
  box-shadow: 0 1.5px 6px rgba(38,132,163,.08);
  padding: 28px 22px;
  flex: 1 1 270px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 220px;
  max-width: 340px;
  gap: 10px;
  transition: box-shadow .18s, border-color .2s, transform .15s;
  margin-bottom: 20px;
  border: 2px solid transparent;
  position: relative;
}
.feature img {
  height: 48px;
  width: 48px;
  margin-bottom: 6px;
}
.feature h3 {
  font-size: 1.18rem;
  color: #2684A3;
}
.feature:hover, .feature:focus-within {
  box-shadow: 0 6px 24px rgba(38,132,163,.17);
  border: 2px solid #2684A3;
  transform: translateY(-2px) scale(1.025);
}

/* ---- CARDS & FLEX CONTAINERS ---- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #FFF;
  border-radius: 20px;
  box-shadow: 0 2px 10px rgba(38,132,163,.09);
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 26px 20px;
}

.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;
}

/* --- SERVICE OVERVIEW/ITEMS --- */
.service-overview {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.service-overview > div {
  background: #FFF;
  border-radius: 20px;
  box-shadow: 0 1.5px 7px rgba(24,47,57,0.07);
  padding: 20px 16px;
  flex: 1 1 230px;
  min-width: 200px;
  margin-bottom: 20px;
}
.service-overview h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #2684A3;
  margin-bottom: 10px;
}
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.service-item {
  background: #FFF;
  border-radius: 16px;
  box-shadow: 0 1.5px 6px rgba(24,47,57,0.08);
  padding: 22px 16px;
  flex: 1 1 250px;
  min-width: 210px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  border: 2px solid #E1ECF2;
  transition: border-color .15s, box-shadow .18s;
}
.service-item img {
  height: 44px;
  width: 44px;
}
.service-item h2 {
  font-size: 1.13rem;
  color: #195167;
}
.service-item:hover, .service-item:focus-within {
  border: 2px solid #2684A3;
  box-shadow: 0 5px 18px rgba(38,132,163,.12);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ---- TESTIMONIALS ---- */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #F9F9F3;
  border-radius: 20px;
  box-shadow: 0 2px 12px rgba(38,132,163,.07);
  border: 2px solid #2684A3;
  margin-bottom: 20px;
  min-width: 0;
}
.testimonial-card p {
  font-size: 1.13rem;
  color: #182F39;
  font-family: 'Montserrat', Arial, sans-serif;
  font-style: italic;
  margin-bottom: 6px;
}
.testimonial-card span {
  font-weight: 700;
  color: #195167;
  font-size: 0.98rem;
}
.stars {
  display: flex;
  gap: 7px;
}
.stars img {
  height: 22px; width: 22px;
}

.client-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin: 18px 0 0 0;
}
.case-study-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.case-study {
  background: #FFF;
  border-radius: 20px;
  box-shadow: 0 1px 6px rgba(24,47,57,0.07);
  padding: 20px 16px;
  flex: 1 1 290px;
  min-width: 210px;
  margin-bottom: 20px;
}

/* ---- PRICING TABLE ---- */
.pricing-table {
  width: 100%;
  margin-bottom: 28px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(38,132,163,.10);
}
.pricing-table th, .pricing-table td {
  padding: 18px 14px;
  font-size: 1rem;
}
.pricing-table th {
  background: #E1ECF2;
  color: #195167;
}
.pricing-table tr:nth-child(even) td {
  background: #F5F7F9;
}

/* ---- BLOG ---- */
.search-bar {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.search-bar input[type="text"] {
  flex: 1 1 180px;
  border-radius: 8px;
  border: 2px solid #E1ECF2;
  padding: 8px 16px;
  font-size: 1rem;
  font-family: Arial, sans-serif;
  transition: border-color .18s, box-shadow .18s;
}
.search-bar input[type="text"]:focus {
  border-color: #2684A3;
  box-shadow: 0 1.5px 8px rgba(38,132,163,.12);
  outline: none;
}
.search-bar button {
  background: #2684A3;
  color: #FFF;
  border: none;
  border-radius: 8px;
  padding: 8px 24px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background .18s, box-shadow .18s;
}
.search-bar button:hover, .search-bar button:focus {
  background: #195167;
  box-shadow: 0 3px 10px rgba(38,132,163,.14);
}
.blog-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.blog-list article {
  background: #FFF;
  border-radius: 16px;
  box-shadow: 0 1.5px 6px rgba(24,47,57,0.07);
  padding: 22px 18px;
  flex: 1 1 290px;
  min-width: 190px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 20px;
}
.categories {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.categories span {
  background: #E1ECF2;
  color: #195167;
  border-radius: 10px;
  padding: 3px 12px;
  font-size: 0.97rem;
  font-weight: 600;
  margin-right: 3px;
}
.newsletter-signup {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #E1ECF2;
  border-radius: 16px;
  padding: 18px 16px;
  margin-top: 17px;
  font-size: .98rem;
}

/* ---- FOOTER ---- */
footer {
  background: #195167;
  color: #FFF;
  padding: 36px 0 18px 0;
  border-top: 4px solid #2684A3;
  font-size: 1rem;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 10px;
}
.footer-nav a {
  color: #FFF;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  transition: color .13s;
}
.footer-nav a:hover {
  color: #FFD91A;
}
.footer-contact {
  margin-bottom: 7px;
  font-size: .98rem;
}
.footer-brand {
  font-size: .92rem;
  color: #E1ECF2;
}

/* ---- CONTACT ---- */
dl {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
dl dt {
  font-weight: bold;
  margin-bottom: 2px;
  display: flex;
  gap: 10px;
  align-items: center;
}
dl dd {
  margin-bottom: 6px;
  color: #2684A3;
}
dl a {
  color: #2684A3;
  font-weight: 600;
}

/* ---- TRUST SIGNALS ---- */
.trust-signals {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  background: #E1ECF2;
  padding: 13px 17px;
  border-radius: 10px;
  color: #195167;
  font-size: 1rem;
  margin-top: 6px;
}

/* ---- FAQ, FAQ-SNIPPET, BENEFITS ---- */
.faq-snippet {
  background: #F9F9F3;
  border-radius: 12px;
  padding: 14px 12px;
  margin-top: 16px;
  font-size: 1rem;
}
.service-benefits ul, .faq-snippet ul {
  gap: 10px;
}
.service-benefits ul {
  margin-bottom: 6px;
}

/* ---- RESPONSIVE DESIGN ---- */
@media (max-width:1200px) {
  .container {
    max-width: 97vw;
  }
}
@media (max-width: 992px) {
  .main-nav {
    gap: 19px;
  }
  .feature-grid, .service-overview, .blog-list, .card-container, .service-list, .case-study-list, .content-grid {
    gap: 14px;
  }
}
@media (max-width: 900px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  header .container {
    flex-direction: row;
    justify-content: space-between;
    gap: 6vw;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.46rem;
  }
  .section {
    padding: 24px 6px;
    margin-bottom: 36px;
  }
  .hero {
    min-height: 220px;
    padding: 28px 0 28px 0;
    border-radius: 0 0 40px 0;
  }
  .feature-grid, .service-overview, .blog-list, .card-container, .service-list, .case-study-list, .content-grid {
    flex-direction: column;
    flex-wrap: wrap;
    gap: 10px;
    align-items: stretch;
  }
  .feature, .service-item, .card, .case-study, .blog-list article, .service-overview>div {
    min-width: unset;
    max-width: 97vw;
  }
  .testimonial-card {
    min-width: 0;
    font-size: 0.95rem;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}
@media (max-width: 540px) {
  .container {
    padding: 0 6px;
  }
  .hero h1 {
    font-size: 1.21rem;
  }
  .footer-nav {
    flex-direction: column;
    gap: 7px;
    font-size: .94rem;
  }
  .footer-contact, .footer-brand {
    font-size: .85rem;
  }
}

/* ---- INTERACTIONS & EFFECTS ---- */
.card, .feature, .testimonial-card, .service-item, .case-study, .blog-list article {
  transition: box-shadow .20s, border-color .20s, transform .14s;
}
.card:hover, .feature:hover, .service-item:hover, .case-study:hover, .testimonial-card:hover, .blog-list article:hover {
  box-shadow: 0 8px 24px rgba(38,132,163,0.14);
  border-color: #195167;
  transform: translateY(-3px) scale(1.025);
  z-index: 2;
}
input, button, select, textarea {
  font-family: inherit;
  font-size: 1rem;
}
button:active {
  transform: scale(.98) !important;
}

/* ---- COOKIE CONSENT BANNER ---- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #195167;
  color: #FFF;
  box-shadow: 0px -2px 24px rgba(24,47,57,.11);
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  gap: 32px;
  z-index: 1200;
  padding: 32px 5vw 24px 5vw;
  font-size: 1.1rem;
  transition: transform .37s cubic-bezier(0.7,0,0.3,1);
}
.cookie-banner.hide {
  transform: translateY(120%);
}
.cookie-banner .cookie-text {
  flex: 2 1 320px;
  max-width: 480px;
  margin-right: 24px;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: center;
}
.cookie-btn {
  border: none;
  border-radius: 18px;
  padding: 10px 19px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  margin-right: 5px;
  cursor: pointer;
  transition: background .18s, color .18s, transform .14s;
  outline: none;
  box-shadow: 0 1.5px 10px rgba(24,47,57,.1);
}
.cookie-btn.accept {
  background: #2684A3; color: #FFF;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #195167;
  color: #FFD91A;
}
.cookie-btn.reject {
  background: #FFF;
  color: #195167;
  border: 2px solid #195167;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #FFD91A;
  color: #195167;
}
.cookie-btn.settings {
  background: #E1ECF2;
  color: #2684A3;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #195167; color: #FFD91A;
}

@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 18px;
    font-size: 1rem;
    padding: 24px 6vw;
  }
  .cookie-banner .cookie-text {
    margin-right: 0;
    max-width: 100vw;
  }
  .cookie-banner .cookie-actions {
    gap: 9px;
  }
}

/* ---- COOKIE MODAL ---- */
.cookie-modal-overlay {
  position: fixed;
  z-index: 1201;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(24,47,57,0.60);
  display: none;
  align-items: center;
  justify-content: center;
  transition: background .15s;
}
.cookie-modal-overlay.open {
  display: flex;
}
.cookie-modal {
  background: #FFF;
  border-radius: 24px;
  max-width: 400px;
  width: 93vw;
  box-shadow: 0 5px 32px rgba(24,47,57,.19);
  padding: 30px 25px 22px 30px;
  position: relative;
}
.cookie-modal h2 {
  font-size: 1.34rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #195167;
  margin-bottom: 17px;
}
.cookie-modal section {
  margin-bottom: 13px;
}
.cookie-modal label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  margin-left: 7px;
  color: #182F39;
}
.cookie-modal input[type="checkbox"] {
  accent-color: #2684A3;
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  border: none;
  color: #2684A3;
  font-size: 1.7rem;
  cursor: pointer;
  outline: none;
}
.cookie-modal .cookie-modal-actions {
  margin-top: 22px;
  display: flex;
  gap: 12px;
}
.cookie-modal .cookie-btn {
  width: 100%;
  border-radius: 15px;
}

/* ---- ACCESSIBILITY FOCUS SHADOWS ---- */
a:focus, button:focus, .cta-btn:focus, input:focus, textarea:focus {
  outline: 2px solid #2684A3;
  outline-offset: 2px;
  box-shadow: 0 0 0 2.5px #E1ECF2;
}

/* ---- UTILITIES ---- */
.hide {
  display: none !important;
}
.flx-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* END OF CSS */
