/* === 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 {
  line-height: 1.15;
  scroll-behavior: smooth;
  -webkit-tap-highlight-color: transparent;
}
body {
  background: #FFF7EF;
  color: #243843;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
}
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
ul, ol {
  margin-left: 24px;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #1A2F3A;
  letter-spacing: 0.5px;
}
h1 { font-size: 2.5rem; margin-bottom: 20px; font-weight: 800; }
h2 { font-size: 2rem; margin-bottom: 18px; font-weight: 700; }
h3 { font-size: 1.5rem; margin-bottom: 14px; font-weight: 600; }
h4 { font-size: 1.15rem; margin-bottom: 10px; font-weight: 600; }
h5, h6 { font-size: 1rem; font-weight: 600; }
p, li, address {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  color: #243843;
}
strong, b { font-weight: 700; }
a {
  color: #51C5A2;
  text-decoration: none;
  transition: color .2s;
}
a:hover, a:focus { color: #F1B95C; text-decoration: underline; }


/* === LAYOUT CONTAINERS === */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
  width: 100%;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 32px rgba(241,185,92,0.07), 0 1.5px 4px rgba(81,197,162,0.07);
}
@media (max-width: 768px) {
  .section { padding: 24px 8px; margin-bottom: 32px; }
  .container { padding: 0 8px; }
}

/* === FLEX GROUPS === */
.feature-grid, .case-study-list, .team-section, .service-list, .contact-details, .faq-list, .article-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.case-study-list > div,
.team-section > div,
.service-list > div,
.contact-details > div,
.faq-list > div,
.article-list > div {
  flex: 1 1 280px;
  background: #FFFDF7;
  border-radius: 20px;
  box-shadow: 0 1px 8px rgba(241,185,92,0.07);
  padding: 24px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow .2s;
}
.case-study-list > div:hover,
.team-section > div:hover,
.service-list > div:hover,
.contact-details > div:hover,
.faq-list > div:hover,
.article-list > div:hover {
  box-shadow: 0 6px 32px rgba(241,185,92,0.18), 0 2px 8px rgba(81,197,162,0.07);
}
@media (max-width: 900px) {
  .feature-grid, .case-study-list, .team-section, .service-list, .contact-details, .faq-list, .article-list {
    flex-direction: column;
    gap: 20px;
  }
}

.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card { background: #fff; border-radius: 20px; margin-bottom: 20px; box-shadow: 0 1px 8px rgba(241,185,92,0.09); position: relative; }

.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; }
@media (max-width:768px) {
  .text-image-section { flex-direction: column; align-items: flex-start; gap: 16px; }
}
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }


/* === TESTIMONIALS === */
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-bottom: 16px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #FFF8E7;
  border-left: 6px solid #F1B95C;
  border-radius: 18px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 18px rgba(241,185,92,0.14);
  min-width: 260px;
  max-width: 360px;
  color: #1A2F3A;
  font-size: 1.05rem;
  font-family: 'Open Sans', Arial, sans-serif;
}
.testimonial-author {
  font-size: 0.95rem;
  color: #1A2F3A;
  font-weight: 600;
  font-style: italic;
  margin-top: 4px;
}
@media (max-width:600px){
  .testimonial-slider{ flex-direction: column; gap: 16px; }
  .testimonial-card{ max-width: 100%; }
}
.brand-list {
  margin-top: 12px;
  font-size: 1rem;
  opacity: .87;
  color: #888;
}


/* === BUTTONS === */
.cta-primary, .cta-secondary, button, input[type="submit"] {
  display: inline-block;
  background: #51C5A2;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.12rem;
  font-weight: 600;
  border-radius: 32px;
  border: none;
  padding: 13px 32px;
  box-shadow: 0 2px 12px rgba(81,197,162,0.13);
  cursor: pointer;
  text-decoration: none;
  transition: background .18s, box-shadow .18s, color .22s, transform .15s;
  margin-top: 8px;
}
.cta-primary:hover, .cta-primary:focus, .cta-secondary:hover, .cta-secondary:focus, button:hover, input[type="submit"]:hover {
  background: #F1B95C;
  color: #1A2F3A;
  box-shadow: 0 6px 24px rgba(241,185,92,0.21);
  transform: translateY(-2px) scale(1.03);
  outline: none;
}
.cta-secondary {
  background: #F1B95C;
  color: #1A2F3A;
  box-shadow: 0 2px 12px rgba(241,185,92,0.17);
}
.cta-secondary:hover, .cta-secondary:focus {
  background: #51C5A2;
  color: #fff;
}

button,
.mobile-menu-toggle,
.mobile-menu-close {
  font-family: 'Montserrat', Arial, sans-serif;
  background: none;
  border: none;
  color: #1A2F3A;
  font-size: 1.8rem;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: none;
  transition: background .14s;
}
.mobile-menu-toggle:hover, .mobile-menu-close:hover, .mobile-menu-toggle:focus, .mobile-menu-close:focus {
  background: #FFF3D7;
  outline: 2px solid #F1B95C;
}

/* === HEADER & NAVIGATION === */
header {
  background: #fff;
  box-shadow: 0 2px 10px rgba(26,47,58,0.04);
  position: relative;
  z-index: 1010;
  width: 100%;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
  position: relative;
}
header nav {
  display: flex;
  gap: 18px;
  align-items: center;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #1A2F3A;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 8px;
  transition: background .18s, color .18s;
}
header nav a:hover, header nav a:focus {
  background: #FFF2DA;
  color: #51C5A2;
}
header nav .cta-primary {
  margin-left: 18px;
  background: #F1B95C;
  color: #1A2F3A;
  box-shadow: 0 1.5px 7px rgba(241,185,92,0.10);
}
header nav .cta-primary:hover, header nav .cta-primary:focus {
  background: #51C5A2;
  color: #fff;
}
.mobile-menu-toggle {
  display: none;
}

/* MOBILE NAVIGATION CSS */
@media (max-width: 1024px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
    z-index: 1101;
  }
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: #fff;
  z-index: 1200;
  transform: translateX(-105vw);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 32px 22px 32px 22px;
  transition: transform .36s cubic-bezier(.62,.01,.41,1.01);
  box-shadow: 0 0 50px 0 rgba(26,47,58,0.10);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 24px;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 60px;
  width: 100%;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  background: #FFF7EF;
  color: #243843;
  padding: 13px 18px;
  border-radius: 14px;
  transition: background .15s, color .16s;
  width: 100%;
  text-align: left;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F1B95C;
  color: #fff;
}

/* Hide mobile menu on desktop */
@media (min-width:1025px) {
  .mobile-menu, .mobile-menu-toggle { display: none !important; }
}
@media (max-width: 700px) {
  .mobile-menu { padding: 24px 10px 24px 10px; }
  .mobile-nav a { font-size: 1.055rem; }
}

/* === FOOTER === */
footer {
  background: #fff;
  padding: 38px 0 18px 0;
  margin-top: 48px;
  border-top: 4px solid #F1B95C;
  box-shadow: 0 -3px 12px rgba(241,185,92,0.06);
  font-size: 1rem;
  color: #243843;
}
footer .container {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: flex-start;
  flex-wrap: wrap;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
footer nav a {
  color: #243843;
  padding: 2px 0;
  opacity: .84;
  transition: color .18s;
}
footer nav a:hover,footer nav a:focus{color:#51C5A2;opacity:1;}
footer strong { font-weight: 700; }
footer a { color: #51C5A2; }
footer a:hover,footer a:focus {text-decoration: underline;}
@media (max-width: 900px) {
  footer .container { flex-direction: column; gap: 20px; align-items: flex-start; }
}

/* === PRICING TABLE === */
.pricing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #FFF7EF;
  border-radius: 20px;
  box-shadow: 0 1.5px 7px rgba(241,185,92,0.10);
  margin-bottom: 30px;
}
.pricing-table th, .pricing-table td {
  padding: 18px 14px;
  text-align: left;
}
.pricing-table th {
  background: #F1B95C;
  color: #1A2F3A;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.03rem;
}
.pricing-table tr {
  border-bottom: 2px solid #F7E9C9;
}
.pricing-table .most-popular {
  background: #51C5A2;
  color: #fff;
  font-weight: 700;
  border-radius: 12px;
}
.most-popular-badge {
  display: inline-block;
  background: #F1B95C;
  color: #1A2F3A;
  font-weight: 800;
  font-size: 0.88rem;
  border-radius: 10px;
  padding: 3px 10px;
  margin-bottom: 4px;
}
@media (max-width: 600px) {
  .pricing-table th, .pricing-table td { font-size: 0.96rem; padding: 9px 6px; }
}

/* === CATEGORIES FILTER & BLOG === */
.categories-filter {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.categories-filter span {
  color: #1A2F3A;
  font-weight: 600;
  opacity: .88;
}
.categories-filter a {
  background: #F7E9C9;
  color: #243843;
  border-radius: 8px;
  padding: 4px 12px;
  font-size: .98rem;
  transition: background .18s, color .18s;
}
.categories-filter a:hover, .categories-filter a:focus {
  background: #51C5A2;
  color: #fff;
  text-decoration: none;
}
.featured-article {
  background: #FFF8E7;
  border-radius: 16px;
  padding: 22px 18px;
  box-shadow: 0 2px 14px rgba(241,185,92,0.13);
  margin-bottom: 16px;
}
.featured-article h3 { margin-bottom: 8px; }
.featured-article a {
  margin-top: 6px;
  text-decoration: underline;
  color: #51C5A2;
  font-weight: 600;
  transition: color .17s;
}
.featured-article a:hover, .featured-article a:focus { color: #F1B95C; }

.article-list > div {background: #FFFDF7;box-shadow: 0 1px 8px rgba(51,197,162,0.07);}
.article-list h4 {margin-bottom:7px; font-family:'Montserrat';color:#1A2F3A; font-size:1.08rem;}

/* === FAQ === */
.faq-list > div {
  background: #FFFDF7;
  box-shadow: 0 1px 8px rgba(241,185,92,0.09);
  padding: 18px;
  border-radius: 18px;
  margin-bottom: 18px;
}
.faq-list h3 { color: #F1B95C; font-size:1.2rem; margin-bottom: 7px; }

/* === LOCATION MAP (KONTAKT) === */
.location-map { background: #FFF8E7; border-radius: 16px; padding: 18px; color: #243843; box-shadow: 0 1px 10px rgba(241,185,92,0.09); margin-top: 10px; }


/* === COOKIE CONSENT BANNER === */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #FFF7EF;
  color: #1A2F3A;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 -3px 20px rgba(241,185,92,0.15);
  padding: 28px 12px 14px 12px;
  border-radius: 24px 24px 0 0;
  animation: slideUp .71s cubic-bezier(.46,.01,.41,1.02);
  gap: 14px;
}
@keyframes slideUp {
  from { transform: translateY(120%); opacity:0; }
  to { transform: translateY(0); opacity:1; }
}
.cookie-banner p { color: #1A2F3A; font-size:1rem; margin-bottom:0; }
.cookie-banner .cookie-actions { display: flex; gap: 16px; margin-top: 10px; flex-wrap: wrap; }
.cookie-banner .cta-primary, .cookie-banner .cta-secondary, .cookie-banner .cookie-settings-btn {
  border-radius: 18px;
  min-width: 135px;
  text-align: center;
  font-size: 1rem;
  margin:0;
}
.cookie-banner .cta-primary { background:#51C5A2; color:#fff; }
.cookie-banner .cta-primary:hover { background:#F1B95C;color:#1A2F3A; }
.cookie-banner .cta-secondary { background:#F1B95C;color:#1A2F3A; }
.cookie-banner .cta-secondary:hover { background:#51C5A2;color:#fff; }
.cookie-banner .cookie-settings-btn { background:#fff; color:#1A2F3A; border:1.5px solid #F1B95C; }
.cookie-banner .cookie-settings-btn:hover { background:#F1B95C; color:#1A2F3A; }

/* Cookie settings modal */
.cookie-modal {
  position: fixed;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(26,47,58,0.58);
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn .2s;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.cookie-modal-content {
  background: #fff;
  border-radius: 18px;
  padding: 34px 28px 24px 28px;
  min-width: 320px;
  max-width: 95vw;
  box-shadow: 0 2px 32px rgba(81,197,162,0.18);
  color: #1A2F3A;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position:relative;
}
.cookie-modal-content h2 { font-size: 1.3rem; color:#51C5A2; margin-bottom: 12px; }
.cookie-modal-content .cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  margin: 8px 0;
}
.cookie-modal-content label { cursor: pointer;}
.cookie-modal-content input[type="checkbox"] {
  accent-color: #51C5A2;
  width: 20px;
  height: 20px;
  border-radius: 4px;
  border: 1.5px solid #F1B95C;
  margin-right:6px;
}
.cookie-modal-content .category-desc {
  font-size: .97rem;
  opacity:.78;
}
.cookie-modal-content .cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
  margin-top: 14px;
  justify-content: flex-end;
}
.cookie-modal-close {
  position: absolute;
  top: 13px; right: 18px;
  font-size: 1.8rem;
  background: none;
  border: none;
  color: #F1B95C;
  border-radius: 50%;
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background .14s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #FFF7EF;
  outline: 2px solid #F1B95C;
}

@media (max-width:500px){
  .cookie-modal-content { padding:19px 7px; }
  .cookie-banner { padding: 18px 2px; }
}

/* === MICRO-INTERACTIONS & HOVER STATES === */
.card:hover, .case-study-list > div:hover, .team-section > div:hover, .service-list > div:hover, .contact-details > div:hover, .faq-list > div:hover, .article-list > div:hover {
  box-shadow: 0 12px 45px rgba(81,197,162,0.16), 0 2px 8px rgba(241,185,92,0.13);
  transition: box-shadow .22s, transform .13s;
  transform: translateY(-3px) scale(1.015);
}
.pricing-table tr.most-popular:hover, .pricing-table tr.most-popular:focus {
  background: #243843; color: #fff;
}

/* === VISUAL HIERARCHY AND SPACING === */
main {
  width: 100%;
}
section + section {
  margin-top: 40px;
}
@media (max-width: 700px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.1rem; }
  .content-wrapper { gap: 14px; }
  section + section { margin-top: 16px; }
}

/* === BRAND COLORS: CLASSES FOR FLEXIBLE MARKUP === */
.text-primary { color: #1A2F3A; }
.text-secondary { color: #F1B95C; }
.text-accent { color: #51C5A2; }
.bg-primary { background: #1A2F3A; color: #fff; }
.bg-secondary { background: #F1B95C; color: #1A2F3A; }
.bg-accent { background: #51C5A2; color: #fff; }

/* === MISC. === */
::-webkit-input-placeholder{color:#bfa869;opacity:1;}
::-moz-placeholder{color:#bfa869;opacity:1;}
:-ms-input-placeholder{color:#bfa869;opacity:1;}
::placeholder{color:#bfa869;opacity:1;}

hr {
  border: none;
  border-top: 2px solid #F1B95C;
  margin: 32px 0;
}

/* === TABLES === */
table {
  width: 100%;
  border-spacing: 0;
}
th, td {
  padding: 8px;
  text-align: left;
}

/* === ACCESSIBILITY === */
a:focus, button:focus, .cta-primary:focus, .cta-secondary:focus, input:focus {
  outline: 2px solid #51C5A2;
  outline-offset: 2px;
}

/* === SCROLLBAR STYLE (OPTIONAL) === */
::-webkit-scrollbar { width: 10px; background: #FFFDF7; }
::-webkit-scrollbar-thumb { background: #F1B95C; border-radius: 8px; }

/* === SPECIAL DECORATIVE CLASSES === */
.brand-highlight, .solution-approach {
  display: inline-block;
  background: #F1B95C;
  color: #1A2F3A;
  border-radius: 8px;
  padding: 2px 11px;
  font-size: .92rem;
  margin-top: 5px;
  margin-bottom: 0px;
}
.solution-approach {
  background: #51C5A2;
  color: #fff;
  margin-left: 4px;
}

/* === FORMS (if any, for kontakt etc.) === */
input, textarea, select {
  font-size: 1rem;
  border-radius: 12px;
  border: 1.5px solid #DFDFDF;
  padding: 10px 14px;
  margin-bottom: 14px;
  background: #fff;
  transition: border .2s;
}
input:focus, textarea:focus, select:focus {
  border-color: #51C5A2;
}
label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  color: #1A2F3A;
  margin-bottom: 6px;
}

/* === UTILITY CLASSES === */
.mt-20 { margin-top: 20px; }
.mb-24 { margin-bottom: 24px; }
.pt-16 { padding-top: 16px; }
.pb-16 { padding-bottom: 16px; }

/* === END OF FILE === */
