/* CSS RESET & BASELINE ------------------- */
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 {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  background: #ffffff;
  color: #1e3440;
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  min-height: 100vh;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
}

/* TYPOGRAPHY ----------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  color: #1e3440;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}
h1 {
  font-size: 2.25rem;
  line-height: 1.15;
  margin-bottom: 18px;
}
h2 {
  font-size: 1.5rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.125rem;
  margin-bottom: 12px;
}
h4, h5, h6 {
  font-size: 1rem;
}
p, ul, ol, address {
  color: #1e3440;
  font-size: 1rem;
  margin-bottom: 12px;
}
strong, b {
  font-weight: 700;
  color: #264653;
}

/* LINK & BUTTONS ------------------------------------- */
a {
  color: #1e3440;
  text-decoration: none;
  transition: color 0.16s linear;
}
a:hover, a:focus {
  color: #f8961e;
  outline: none;
}
.cta-btn {
  background: #f8961e;
  color: #fff !important;
  border: none;
  border-radius: 24px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 12px 32px;
  margin-top: 10px;
  box-shadow: 0 2px 8px rgba(38, 70, 83, 0.07);
  transition: background 0.2s, box-shadow 0.2s, color 0.2s;
  cursor: pointer;
  display: inline-block;
  letter-spacing: 0.03em;
  text-align: center;
}
.cta-btn:hover, .cta-btn:focus {
  background: #1e3440;
  color: #fff !important;
  box-shadow: 0 4px 16px rgba(38, 70, 83, 0.12);
}
button {
  font-family: inherit;
  font-size: 1rem;
  border: none;
  background: none;
  color: inherit;
  cursor: pointer;
  transition: background 0.16s, color 0.16s;
}

/* LAYOUT --------------------------------------------- */
.container {
  width: 100%;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #264653;
  padding: 6px 8px;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #e9ecef;
  color: #f8961e;
}
.logo-link img {
  display: block;
  height: 44px;
  width: auto;
}

/* SECTION SPACING (MANDATORY) --------------------------- */
section {
  margin-bottom: 60px;
  padding: 40px 0;
  background: none;
}
.content-wrapper {
  max-width: 950px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* HERO --------------------------- */
.hero-section {
  align-items: flex-start;
  gap: 8px;
  min-height: 210px;
}
.hero-section h1,
.hero-section h2 {
  margin-bottom: 0;
}
.hero-section .cta-btn {
  margin-top: 15px;
}

/* FEATURES ---------------------- */
.features-section .feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 12px;
  margin-bottom: 20px;
}
.feature-block {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(38, 70, 83, 0.06);
  padding: 28px 20px 20px 20px;
  flex: 1 1 255px;
  min-width: 220px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  transition: box-shadow 0.2s, transform 0.18s;
}
.feature-block img {
  height: 40px;
  width: 40px;
  margin-bottom: 6px;
}
.feature-block:hover, .feature-block:focus-within {
  box-shadow: 0 4px 18px rgba(38, 70, 83, 0.12);
  transform: translateY(-2px) scale(1.025);
}
.usp-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
  margin-bottom: 0;
}
.usp-list li {
  font-size: 1rem;
  background: #e9ecef;
  color: #264653;
  border-radius: 10px;
  padding: 8px 18px;
  margin-bottom: 12px;
  font-weight: 500;
}

/* SERVICE CARDS --------------------- */
.services-overview-section .service-cards,
.services-section .service-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-bottom: 20px;
}
.service-card,
.service-tab {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 7px rgba(38, 70, 83, 0.06);
  padding: 24px 20px 16px 20px;
  flex: 1 1 250px;
  min-width: 220px;
  max-width: 310px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.18s, transform 0.18s;
}
.service-card:hover, .service-tab:hover, .service-card:focus-within, .service-tab:focus-within {
  box-shadow: 0 4px 18px rgba(38,70,83,0.10);
  transform: translateY(-1px) scale(1.015);
}
.service-card strong, .service-tab strong {
  color: #f8961e;
}

/* PROCESS STEPS --------------------- */
.process-section .step-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 18px;
}
.step {
  background: #e9ecef;
  border-radius: 10px;
  padding: 20px 18px;
  flex: 1 1 185px;
  min-width: 175px;
  margin-bottom: 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.transparency, .highlight {
  background: #fff9f2;
  border-left: 4px solid #f8961e;
  padding: 13px 22px;
  border-radius: 8px;
  color: #1e3440;
  font-weight: 500;
  margin-top: 10px;
}
.highlight strong {
  color: #f8961e;
}

/* PROJECTS & FAQ ------------------- */
.project-list, .faq-list, .why-us-section ul, .about-section ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.project-list li, .faq-list li, .why-us-section ul li, .about-section ul li {
  background: #e9ecef;
  border-radius: 10px;
  padding: 15px 18px;
  color: #1e3440;
  margin-bottom: 0;
}

/* CTA SECTION ---------------------- */
.cta-section, .cta-section .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 16px;
}
.cta-section .cta-btn {
  margin-top: 10px;
}

/* TESTIMONIAL CARDS ---------------- */
.testimonial-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 18px;
}
.testimonial-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(38,70,83,0.07);
  padding: 20px 24px;
  flex: 1 1 250px;
  min-width: 220px;
  max-width: 350px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  transition: box-shadow 0.2s, transform 0.18s;
  color: #1e3440;
}
.testimonial-card p {
  font-size: 1.05rem;
  margin-bottom: 0;
  color: #1e3440;
}
.testimonial-card strong {
  color: #264653;
  margin-top: 6px;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 7px 22px rgba(38,70,83,0.11);
  transform: translateY(-2px) scale(1.01);
}
.average-rating {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.18rem;
  color: #264653;
  font-weight: 500;
  display: flex;
  gap: 15px;
  align-items: center;
  justify-content: flex-start;
}

/* ABOUT/INFO SECTIONS ------------- */
.about-preview-section a,
.services-overview-section a,
.cta-section a:not(.cta-btn) {
  color: #264653;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  text-decoration: underline;
  font-size: 1rem;
  margin-top: 7px;
  transition: color 0.15s;
}
.about-preview-section a:hover,
.services-overview-section a:hover { color: #f8961e; }

/* CONTACT SECTION / ADDRESS -------- */
.contact-section address {
  font-style: normal;
  background: #e9ecef;
  border-radius: 10px;
  padding: 18px 22px;
  margin-bottom: 22px;
  color: #1e3440;
  font-size: 1rem;
}
.map-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.map-wrapper img {
  max-width: 230px;
  height: auto;
}
.info-note {
  margin-top: 15px;
  color: #1e3440;
  font-size: 0.98rem;
}

/* FOOTER -------------------------- */
footer {
  background: #e9ecef;
  color: #1e3440;
  padding-top: 40px;
  padding-bottom: 30px;
}
.footer-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.footer-menu {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-bottom: 12px;
}
.footer-menu a {
  color: #264653;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  transition: color 0.18s;
}
.footer-menu a:hover { color: #f8961e; }
.brand-footer {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 36px;
  flex-wrap: wrap;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.08rem;
}
.footer-brand img {
  height: 36px;
  width: auto;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 0.97rem;
}
.footer-contact a {
  color: #264653;
  text-decoration: underline;
}
.social-icons {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 10px;
}
.social-icons img {
  display: block;
  height: 28px;
  width: 28px;
  opacity: 0.45;
  filter: grayscale(80%);
  transition: opacity 0.15s, filter 0.2s;
}
.social-icons img:hover {
  opacity: 0.68;
  filter: none;
}

/* MOBILE MENU --------------------- */
.mobile-menu-toggle {
  display: none;
  background: #1e3440;
  color: #fff;
  border-radius: 6px;
  font-size: 2rem;
  padding: 8px 18px 8px 13px;
  position: absolute;
  right: 22px;
  top: 22px;
  z-index: 100;
  transition: background 0.2s, color 0.18s;
  border: none;
  line-height: 1;
}
.mobile-menu-toggle:focus {
  background: #f8961e;
  outline: 2px solid #f8961e;
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(38,70,83,0.96);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  transform: translateX(-100vw);
  transition: transform 0.35s cubic-bezier(.64,.09,.08,1);
  z-index: 2000;
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2.2rem;
  color: #fff;
  background: none;
  border: none;
  padding: 18px 16px;
  margin-bottom: 8px;
  cursor: pointer;
  align-self: flex-end;
  transition: color 0.18s;
  z-index: 2010;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #f8961e;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  width: 100%;
  padding-left: 32px;
  padding-top: 18px;
  align-items: flex-start;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.22rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  transition: color 0.15s;
  padding: 6px 0;
  border-radius: 6px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #f8961e;
  outline: none;
  background: #e9ecef22;
}

/* COOKIE CONSENT BANNER ------------------- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  z-index: 3000;
  background: #1e3440;
  color: #fff;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 18px 22px;
  box-shadow: 0 -3px 14px rgba(38,70,83,0.10);
  font-size: 1rem;
  transition: transform 0.32s;
}
.cookie-banner.hide {
  transform: translateY(100%);
}
.cookie-banner-message {
  flex: 1 1 60%;
  color: #fff;
}
.cookie-banner-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border-radius: 999px;
  padding: 8px 22px;
  border: none;
  font-size: 1rem;
  background: #f8961e;
  color: #fff;
  transition: background 0.18s, color 0.18s;
  box-shadow: 0 1px 6px rgba(38,70,83,0.07);
}
.cookie-btn.cookie-settings {
  background: #e9ecef;
  color: #1e3440;
}
.cookie-btn.cookie-reject {
  background: #fff;
  color: #264653;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #1e3440;
  color: #fff;
}
.cookie-btn.cookie-settings:hover, .cookie-btn.cookie-settings:focus {
  background: #f8961e;
  color: #fff;
}
.cookie-btn.cookie-reject:hover, .cookie-btn.cookie-reject:focus {
  background: #f8961e;
  color: #fff;
}

/* COOKIE SETTINGS MODAL ------------- */
.cookie-settings-modal {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(30,52,64,0.80);
  z-index: 3100;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.25s;
  opacity: 0;
  pointer-events: none;
}
.cookie-settings-modal.open {
  opacity: 1;
  pointer-events: all;
}
.cookie-settings-content {
  background: #fff;
  color: #1e3440;
  border-radius: 16px;
  box-shadow: 0 6px 36px rgba(38,70,83,0.18);
  padding: 38px 28px 28px 28px;
  max-width: 410px;
  width: 94vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}
.cookie-settings-content h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.27rem;
  margin-bottom: 6px;
}
.cookie-settings-content .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  font-size: 1rem;
}
.cookie-category input[type="checkbox"] {
  width: 22px;
  height: 22px;
  accent-color: #f8961e;
  margin-right: 7px;
}
.cookie-category .cookie-essential {
  font-weight: 600;
  color: #1e3440;
}
.cookie-settings-close {
  position: absolute;
  top: 16px;
  right: 24px;
  background: none;
  color: #1e3440;
  font-size: 2rem;
  border: none;
  cursor: pointer;
}
.cookie-settings-actions {
  display: flex;
  gap: 10px;
  margin-top: 8px;
  justify-content: flex-end;
}

/* GENERIC CARD CONTAINERS ---------- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 7px rgba(38,70,83,0.06);
  padding: 24px 20px 14px 20px;
  min-width: 220px;
  max-width: 330px;
  margin-bottom: 20px;
  position: relative;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

/* FLEX BASED CONTENT GRIDS --------- */
.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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
}

/* SPACING/SECTION MANDATORY ------------- */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* CODE/ADDRESS (PRIVACY/LEGAL) ------ */
.privacy-section, .gdpr-section, .cookie-section, .terms-section {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(38,70,83,0.051);
  padding: 40px 22px 38px 22px;
  margin-bottom: 38px;
}
.privacy-section h2,
.gdpr-section h2,
.cookie-section h2,
.terms-section h2 {
  margin-top: 28px;
}
address {
  font-style: normal;
}

/* UTILITIES ------------------------ */
.hidden { display: none !important; }
.danke-section {
  align-items: center;
  text-align: center;
  justify-content: center;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* TRANSITIONS & MICRO-INTERACTIONS ------------- */
.card, .service-card, .service-tab, .feature-block, .testimonial-card {
  transition: box-shadow 0.18s, transform 0.18s;
}
a, .cta-btn, .main-nav a, .footer-menu a, .mobile-nav a, .cookie-btn {
  transition: color 0.16s, background 0.16s, box-shadow 0.18s;
}


/* RESPONSIVE DESIGN ======================= */
@media (max-width: 1024px) {
  .container {
    max-width: 94vw;
    padding-left: 12px;
    padding-right: 12px;
  }
  .content-wrapper {
    max-width: 98vw;
    padding-left: 0;
    padding-right: 0;
  }
  .footer-content {
    flex-direction: column;
    gap: 20px;
  }
}
@media (max-width: 850px) {
  .header-flex {
    gap: 13px;
  }
  .main-nav {
    gap: 10px;
  }
  .services-overview-section .service-cards,
  .services-section .service-tabs,
  .testimonial-cards,
  .project-list,
  .feature-grid {
    gap: 14px;
  }
  .card-container, .content-grid {
    gap: 12px;
  }
  .brand-footer {
    flex-direction: column;
    gap: 13px;
  }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .header-flex .cta-btn {
    display: none;
  }
  .footer-content,
  .brand-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .feature-grid, .service-cards, .service-tabs, .testimonial-cards, .step-grid {
    flex-direction: column;
    gap: 18px;
  }
  .feature-block, .service-card, .service-tab, .testimonial-card, .step {
    width: 100%;
    min-width: unset;
    max-width: none;
  }
  .usp-list {
    flex-direction: column;
    gap: 12px;
  }
  .about-preview-section, .cta-section, .services-overview-section {
    align-items: flex-start;
    text-align: left;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.98rem;
  }
}
@media (max-width: 540px) {
  section {
    padding: 26px 0;
  }
  .privacy-section, .gdpr-section, .cookie-section, .terms-section {
    padding: 20px 8px 18px 8px;
    border-radius: 8px;
  }
  .card, .service-card, .service-tab, .testimonial-card, .feature-block {
    padding: 14px 8px;
    border-radius: 8px;
  }
  .cookie-settings-content {
    padding: 22px 8px 15px 8px;
    border-radius: 7px;
    min-width: 0;
    width: 95vw;
  }
  .map-wrapper img {
    max-width: 97vw;
  }
  .mobile-nav {
    padding-left: 14px;
  }
  .footer-menu {
    gap: 12px;
  }
}
/* END OF CSS */
