/* RESET & BASE STYLES ------------------------------------------------- */
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, menu, 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,
main, 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;
}

body {
  background: #1b232d;
  color: #f5f5f5;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  display: block;
}

a {
  color: #F4CF6F;
  text-decoration: none;
  transition: color .2s;
  outline: none;
}
a:hover, a:focus {
  color: #ffffff;
}

ul, ol {
  list-style: none;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  background: none;
  border: none;
  color: inherit;
  outline: none;
  box-shadow: none;
}
button {
  cursor: pointer;
}

/* BRAND FONTS (make sure Montserrat is loaded as display, Roboto as body) */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Arial Black', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #F4CF6F;
  line-height: 1.14;
}
h1 { font-size: 2.375rem; margin-bottom: 16px; }
h2 { font-size: 1.75rem; margin-bottom: 16px; }
h3 { font-size: 1.25rem; margin-bottom: 10px; }
h4 { font-size: 1.125rem; }
.section h2 {
  color: #F4CF6F;
  margin-bottom: 20px;
}

.subheadline {
  color: #b3b8c0;
  font-size: 1.125rem;
  margin-bottom: 28px;
  font-family: 'Roboto', Arial, sans-serif;
  letter-spacing: 0.01em;
}
strong {
  color: #ffffff;
  font-weight: bold;
}

/* CONTAINER & HEADER ------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.header .container, header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
header {
  background: #212a34;
  border-bottom: 2px solid #2d3844;
  position: relative;
  z-index: 30;
}

header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
  height: 78px;
}
header a img {
  height: 42px;
  margin-right: 18px;
}
nav {
  display: flex;
  gap: 16px;
  align-items: center;
}
nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #b3b8c0;
  padding: 6px 14px;
  letter-spacing: 0.03em;
  border-radius: 6px;
  transition: background .2s, color .2s;
}
nav a:hover, nav a:focus {
  color: #212a34;
  background: #F4CF6F;
}

.cta-btn {
  background: linear-gradient(90deg, #F4CF6F, #E7B23C);
  color: #1b232d;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 12px 28px;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(40,40,40,0.14);
  margin-left: 10px;
  border: none;
  outline: none;
  display: inline-block;
  transition: background .2s, color .2s, box-shadow .18s;
  position: relative;
  z-index: 1;
}
.cta-btn:hover, .cta-btn:focus {
  background: #ffd558;
  color: #234075;
  box-shadow: 0 4px 16px rgba(255,220,100,0.10),0 2px 8px rgba(40,40,40,0.18);
}

.mobile-menu-toggle {
  background: none;
  border: none;
  color: #F4CF6F;
  font-size: 2rem;
  margin-left: 12px;
  cursor: pointer;
  display: none;
  z-index: 60;
  transition: color .18s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  color: #ffffff;
}

/* MOBILE NAVIGATION -------------------------------------------------- */
.mobile-menu {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: #1b232d;
  z-index: 120;
  transform: translateX(-100%);
  transition: transform .33s cubic-bezier(0.7,0,0.3,1);
  display: flex;
  flex-direction: column;
  gap: 0;
  box-shadow: 6px 0 34px rgba(0,0,0,0.28);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 16px 18px 12px 0;
  background: none;
  border: none;
  font-size: 2rem;
  color: #F4CF6F;
  cursor: pointer;
  z-index: 200;
  transition: color .15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 16px;
  width: 100%;
  align-items: center;
}
.mobile-nav a {
  color: #F4CF6F;
  font-size: 1.2rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  padding: 18px 8px;
  transition: background .15s, color .15s;
  border-bottom: 1px solid #283342;
  width: 100%;
  text-align: center;
  background: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F4CF6F;
  color: #1b232d;
}

/* HEADER NAV ON MOBILE */
@media (max-width: 1050px) {
  header nav { display: none; }
  .cta-btn { display: none; }
  .mobile-menu-toggle { display: block; }
}

@media (min-width: 1051px) {
  .mobile-menu { display: none !important; }
}

/* SECTIONS, LAYOUTS & FLEX ------------------------------------------------- */
main {
  padding-bottom: 60px;
}
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #222733;
  border-radius: 10px;
  box-shadow: 0 2px 18px 0 rgba(35,64,117,0.07);
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.feature-grid, .service-list, .testimonial-slider, .testimonial-list, .post-list, .feature-list, .contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 10px;
}
.feature-grid > div,
.service-list > div,
.testimonial-card,
.post-list article,
.feature-list li,
.contact-details > div {
  background: #232a36;
  border-radius: 8px;
  box-shadow: 0 2px 10px 1px rgba(28,34,43,0.14);
  padding: 28px 24px;
  min-width: 230px;
  min-height: 180px;
  flex: 1 1 270px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.feature-grid img, .service-list img, .feature-list img, .contact-details img {
  width: 44px;
  height: 44px;
  margin-bottom: 10px;
  filter: grayscale(10%) brightness(0.9);
}
.feature-grid h3,
.service-list h3 {
  color: #F4CF6F;
  font-size: 1.16rem;
  margin-bottom: 0.4em;
}

.text-section {
  background: #232a36;
  border-radius: 8px;
  padding: 28px 24px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(28,34,43,.10);
  font-size: 1.06rem;
}
.text-section h3 { color: #F4CF6F; font-size: 1.1rem; margin-bottom: 6px; }
.text-section ul {
  margin: 16px 0 0 16px;
  padding-left: 12px;
  list-style: disc;
}
.text-section li { margin: 6px 0; color: #d7d8da; letter-spacing: 0.01em; }

.value-statements ul, .price-benefits ul, .feature-list ul {
  list-style: disc;
  padding-left: 24px;
}

.value-statements li, .price-benefits li {
  color: #b3b8c0;
  font-size: 1rem;
  margin-bottom: 10px;
}

.feature-list ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
  align-items: flex-start;
}
.feature-list li {
  display: flex;
  align-items: center;
  gap: 20px;
  min-width: 270px;
  background: #212a34;
  border-radius: 8px;
  padding: 17px 15px 17px 17px;
  font-size: 1.06rem;
  color: #f5f5f5;
  box-shadow: 0 2px 8px rgba(20,20,20,0.08);
}

.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.contact-details > div {
  background: #232a36;
  border-radius: 8px;
  flex: 1 1 220px;
  min-width: 200px;
  padding: 22px 16px;
  margin-bottom: 20px;
}
.contact-details h3 {
  font-size: 1rem;
  color: #F4CF6F;
  margin-bottom: 6px;
}
.contact-details p, .contact-details img {
  display: inline-block;
  vertical-align: middle;
}
.contact-details img {
  width: 20px; height: 20px;
  margin-right: 7px;
}

/* CARD/SECTION FLEX UTILS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #222733;
  border-radius: 8px;
  box-shadow: 0 2px 10px 1px rgba(28,34,43,0.09);
  padding: 24px;
  margin-bottom: 20px;
  min-width: 220px;
  position: relative;
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  transition: box-shadow .19s;
}
.card:hover {
  box-shadow: 0 4px 18px rgba(255,223,110,0.12),0 2px 10px 1px rgba(28,34,43,0.12);
}

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

/* TESTIMONIALS ------------------------------------------------------ */
.testimonial-slider, .testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  background: #f8f9fa;
  color: #212a34;
  font-size: 1.08rem;
  border-radius: 10px;
  padding: 20px 24px;
  min-width: 230px;
  box-shadow: 0 2px 12px 0 rgba(37,45,60,0.12);
  margin-bottom: 20px;
  border-left: 7px solid #F4CF6F;
  transition: box-shadow .16s;
}
.testimonial-card strong {
  color: #1b232d;
  font-size: 1.01rem;
  letter-spacing: .01em;
}
.testimonial-card:hover {
  box-shadow: 0 8px 36px rgba(35,64,117,0.13);
}

/* TAGS and BADGES --------------------------------------------------- */
.tag {
  display: inline-block;
  background: #2d3844;
  color: #F4CF6F;
  font-size: 0.98rem;
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: 11px;
  padding: 3px 15px;
  margin-left: 6px;
  margin-bottom: 7px;
  letter-spacing: 0.02em;
}

.read-more {
  display: inline-block;
  margin-top: 8px;
  font-weight: 500;
  color: #F4CF6F;
  border-bottom: 2px solid #F4CF6F;
  padding-bottom: 2px;
  transition: color .18s, border-color .14s;
  font-family: 'Montserrat', Arial, sans-serif;
}
.read-more:hover,
.read-more:focus {
  color: #fff;
  border-color: #fff;
}

/* PRICING TABLE ----------------------------------------------------- */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 30px;
  background: #232a36;
  box-shadow: 0 2px 10px rgba(34, 39, 51, 0.11);
  border-radius: 9px 9px 0 0;
  overflow: hidden;
  font-family: 'Montserrat', Arial, sans-serif;
}
.pricing-table th, .pricing-table td {
  padding: 17px 14px;
  text-align: left;
  border-bottom: 1px solid #364961;
  color: #F4CF6F;
}
.pricing-table th {
  background: #234075;
  font-size: 1.07rem;
  font-weight: 700;
  color: #fff;
}
.pricing-table tr:last-child td {
  border-bottom: none;
}
.pricing-table td {
  color: #e6e7ea;
  font-size: 1.05rem;
}

/* FOOTER ------------------------------------------------------------ */
footer {
  background: #171b21;
  border-top: 2px solid #2d3844;
  color: #d7d8da;
  font-size: 1rem;
  letter-spacing: 0.015em;
  padding-top: 34px;
  padding-bottom: 16px;
  margin-top: 30px;
}
footer .container {
  flex-direction: column;
  gap: 20px;
}
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 25px;
  margin-bottom: 16px;
}
.footer-menu a {
  color: #e6e7ea;
  font-size: 1em;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 5px 9px;
  border-radius: 5px;
  transition: color .13s, background .13s;
}
.footer-menu a:hover, .footer-menu a:focus {
  color: #212a34;
  background: #F4CF6F;
}
.footer-contact {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.footer-contact img {
  width: 42px; height: 42px;
  margin-right: 18px;
}
.footer-contact > div {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.footer-contact p, .footer-contact img {
  display: inline-block;
  vertical-align: middle;
}
.footer-contact img[alt="Telefon"], .footer-contact img[alt="E-Mail"] {
  width: 20px; height: 20px;
  margin-right: 7px;
}
.footer-bottom {
  text-align: right;
  font-size: 0.97rem;
  margin-top: 18px;
  color: #b3bac2;
}

/* COOKIES CONSENT BANNER & MODAL ----------------------------------------- */
.cookie-consent-banner {
  position: fixed;
  left: 0; bottom: 0; right: 0;
  background: #232a36;
  color: #fff;
  z-index: 5000;
  box-shadow: 0 -10px 30px rgba(30,38,44,0.12);
  padding: 22px 11px 22px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  animation: slideUpCookie .55s cubic-bezier(0.67,0.09,0.44,1.07);
}
@keyframes slideUpCookie {
  from { transform: translateY(100%); }
  to   { transform: none; }
}
.cookie-banner-actions {
  display: flex;
  gap: 13px;
  flex-wrap: wrap;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 7px;
  padding: 10px 22px;
  margin: 0;
  background: #F4CF6F;
  color: #1b232d;
  border: none;
  transition: background .2s, color .2s, box-shadow .17s;
  box-shadow: 0 2px 8px rgba(255,223,110,0.10);  
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #ffd558;
  color: #234075;
}
.cookie-btn.reject {
  background: #232a36;
  color: #F4CF6F;
  border: 1.5px solid #F4CF6F;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #353d49;
  color: #ffd558;
}
.cookie-btn.settings {
  background: #fff;
  color: #234075;
  border: 1.5px solid #F4CF6F;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #F4CF6F;
  color: #232a36;
}

.cookie-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(27,35,45,0.78);
  z-index: 5100;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInCookie .33s;
}
@keyframes fadeInCookie {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #232a36;
  color: #fff;
  border-radius: 13px;
  padding: 36px 30px 28px 30px;
  box-shadow: 0 14px 44px 6px rgba(30,38,44,0.14);
  max-width: 370px;
  width: 96vw;
  font-family: 'Roboto', Arial, sans-serif;
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: popupCookie .28s cubic-bezier(0.65,0.,0.3,1.13);
}
@keyframes popupCookie {
  from { transform: scale(0.91); opacity: 0; }
  to   { transform: none; opacity: 1; }
}
.cookie-modal h2 {
  color: #F4CF6F;
  margin-bottom: 9px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.3rem;
}

.cookie-options {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.cookie-option {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  font-size: 1.06rem;
}
.cookie-option label {
  flex: 1 1 auto;
}
.cookie-option input[type=checkbox] {
  accent-color: #F4CF6F;
  width: 19px; height: 19px;
  margin-top: 2px;
  margin-right: 5px;
  cursor: pointer;
}
.cookie-option.essential label {
  color: #F4CF6F;
  font-weight: bold;
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-top: 10px;
}

.cookie-modal-close {
  position: absolute;
  right: 30px; top: 19px;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.6rem;
  cursor: pointer;
  transition: color .13s;
  padding: 0;
  line-height: 1em;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #F4CF6F;
}

/* RESPONSIVE -------------------------------------------------------- */
@media (max-width: 1050px) {
  .container {
    max-width: 100vw;
    padding: 0 7px;
  }
  .feature-grid, .service-list, .testimonial-slider, .testimonial-list, .post-list, .feature-list ul, .contact-details {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .feature-list li, .feature-grid > div, .service-list > div {
    min-width: 0;
    width: 100%;
    flex: 1 1 100%;
  }
  .testimonial-card {
    min-width: 0;
    width: 100%;
  }
}
@media (max-width: 768px) {
  section, .section {
    padding: 22px 7px;
  }
  .content-wrapper { gap: 26px; }
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.25rem; }
  h3 { font-size: 1.03rem; }
  .subheadline { font-size: 1rem; }
  .testimonial-card {
    padding: 17px 12px;
    font-size: .98rem;
  }
  .feature-grid > div, .service-list > div, .feature-list li {
    padding: 17px 10px;
    font-size: 1rem;
  }
  .card {
    min-width: 0;
    width: 100%;
    padding: 16px 12px;
  }
  .content-grid, .card-container {
    flex-direction: column;
    gap: 12px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }
  .footer-contact img {
    margin-bottom: 10px;
  }
  .footer-menu, .footer-contact {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .footer-bottom {
    text-align: left;
    font-size: 0.93rem;
  }
  
}

@media (max-width: 480px) {
  header .container { height: 56px; }
  .footer-bottom { font-size: 0.87rem; }
  .tag { font-size: 0.92rem; padding: 2px 9px; }
}

/* MICROINTERACTIONS, SHADOWS, ELEVATION ---------------------------- */
.card, .feature-grid > div, .service-list > div, .testimonial-card, .text-section, .feature-list li {
  transition: box-shadow .16s, background .15s;
}
.card:hover, .feature-grid > div:hover, .service-list > div:hover, .feature-list li:hover {
  box-shadow: 0 6px 32px rgba(244,207,111,0.09),0 2px 8px rgba(30,38,44,0.16),0 2px 12px rgba(67,78,93,0.15);
  background: #262d39;
}

/* ACCESSIBILITY --------------------------- */
:focus-visible {
  outline: 2px solid #F4CF6F;
  outline-offset: 1px;
}

/* UTILITY CLASSES & GENERAL --------------- */
.hide-for-mobile { display: block; }
@media (max-width: 1050px) {
  .hide-for-mobile { display: none !important; }
}
.mt-24 { margin-top: 24px !important; }
.mt-40 { margin-top: 40px !important; }
.mb-24 { margin-bottom: 24px !important; }
.mb-40 { margin-bottom: 40px !important; }
.text-center { text-align: center !important; }
.bordered {
  border-left: 4px solid #F4CF6F;
  padding-left: 12px;
}

/* INDUSTRIAL MODERN VISUAL ACCENTS ------- */
section, .card, .testimonial-card, .feature-grid > div, .service-list > div, .feature-list li, .text-section, .contact-details > div {
  box-shadow: 0 2px 18px 0 rgba(45,52,69,0.04), 0 1px 2px rgba(40,40,40,.06);
  border: 1.7px solid #232a36;
  border-bottom: 4px solid #2d3844;
}

/* METALLIC EFFECTS ON ICONS */
.feature-grid img, .service-list img, .feature-list img {
  filter: grayscale(25%) brightness(0.93) drop-shadow(0 3px 1px #2a2c34);
}

/* TABLES */
table {
  border-collapse: collapse;
  width: 100%;
}
td, th {
  padding: 8px;
}

::selection {
  background: #F4CF6F;
  color: #212a34;
}

/* END CSS */
