/* --- 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,strong,sub,sup,tt,var,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;
}
.testimonial-card p {
  color: white !important;
}
html {
  scroll-behavior: smooth;
}
body {
  line-height: 1.5;
  background: #1A1A1A;
  color: #E5E5E5;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  letter-spacing: 0.02em;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #FCA311;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus, a:hover {
  color: #E5E5E5;
  outline: none;
}
ul, ol {
  padding-left: 20px;
  margin-bottom: 1.5em;
}
strong, b {
  font-weight: 700;
}
hr {
  border: none;
  border-top: 1px solid #2B2B2B;
  margin: 32px 0;
}
/* HEADINGS */
h1,h2,h3,h4,h5,h6 {
  font-family: 'Montserrat', 'Open Sans', Arial, Helvetica, sans-serif;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.5rem; margin-bottom: 0.7em; line-height: 1.15; }
h2 { font-size: 2rem; margin-bottom: 0.6em; line-height: 1.18; }
h3 { font-size: 1.4rem; margin-bottom: 0.5em; letter-spacing: 0.04em; }
h4 { font-size: 1.1rem; margin-bottom: 0.42em; }
@media (max-width: 600px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.2rem; }
}


/* CONTAINER & SPACING */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  margin: 0 auto;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 768px) {
  .section {
    padding: 32px 10px;
    margin-bottom: 40px;
  }
}

/* HEADER & NAVIGATION */
header {
  background: #181A1B;
  border-bottom: 1px solid #23282E;
  position: relative;
  width: 100%;
  z-index: 100;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  margin-right: 24px;
  height: 48px;
}
.logo img { height: 38px; width: auto; }
.main-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', 'Open Sans', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.04em;
  color: #E5E5E5;
  padding: 7px 0;
  transition: color 0.16s;
}
.main-nav a:hover, .main-nav a:focus {
  color: #FCA311;
}
.cta.primary {
  background: #FCA311;
  color: #14213D;
  font-family: 'Montserrat', 'Open Sans', Arial, Helvetica, sans-serif;
  font-weight: 700;
  border-radius: 6px;
  padding: 13px 32px;
  font-size: 1rem;
  border: none;
  margin-left: 28px;
  transition: background .18s, color .12s, box-shadow 0.2s;
  cursor: pointer;
  box-shadow: 0 2px 10px 0 #10141e42;
  display: inline-block;
}
.cta.primary:hover, .cta.primary:focus {
  background: #14213D;
  color: #FCA311;
  outline: none;
}
.mobile-menu-toggle {
  display: none;
}
@media (max-width: 1020px) {
  .main-nav {
    gap: 18px;
  }
  .cta.primary {
    margin-left: 14px;
    padding: 11px 20px;
  }
}
@media (max-width: 900px) {
  header .container {
    flex-wrap: wrap;
  }
  .main-nav, .cta.primary {
    display: none;
  }
  .mobile-menu-toggle {
    background: none;
    border: none;
    color: #FCA311;
    font-size: 2.16rem;
    cursor: pointer;
    margin-left: auto;
    display: flex;
    align-items: center;
    z-index: 201;
    padding: 8px 12px;
  }
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  z-index: 202;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #14213D;
  transform: translateX(100vw);
  transition: transform 0.38s cubic-bezier(.77,.14,.46,1.16);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 48px;
  padding-left: 0;
  box-shadow: 0 0 36px 0 #0c0e13a8;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 22px;
  background: none;
  border: none;
  font-size: 2.4rem;
  color: #FCA311;
  cursor: pointer;
  z-index: 203;
  padding: 8px 12px;
  transition: color 0.15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #fff;
  outline: none;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin-top: 46px;
  width: 100%;
  padding-left: 42px;
}
.mobile-nav a {
  font-family: 'Montserrat', 'Open Sans', Arial, Helvetica, sans-serif;
  color: #E5E5E5;
  font-size: 1.3rem;
  font-weight: 600;
  padding: 10px 0;
  border-radius: 6px;
  transition: background 0.15s, color 0.13s;
  display: block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #FCA311;
  color: #14213D;
  outline: none;
}
@media (min-width: 900px) {
  .mobile-menu, .mobile-menu-toggle { display: none !important; }
}

/* HERO SECTION */
.hero {
  background: linear-gradient(80deg, #181A1B 82%, #21262e 100%);
  border-bottom: 1px solid #23282E;
  padding: 56px 0 46px 0;
}
.hero .container { align-items: stretch; }
.hero .content-wrapper {
  align-items: flex-start;
}
.hero h1 {
  font-family: 'Montserrat', 'Open Sans', Arial, Helvetica, sans-serif;
  color: #fff;
  font-size: 2.6rem;
  margin-bottom: 18px;
  letter-spacing: 0.012em;
  max-width: 650px;
}
.hero p {
  color: #FCA311;
  font-size: 1.25rem;
  margin-bottom: 36px;
  margin-top: 0;
  font-weight: 500;
  text-shadow: 0 1px 3px #0005;
}
@media (max-width: 600px) {
  .hero { padding: 32px 0 28px 0; }
  .hero h1 { font-size: 1.65rem; }
  .hero p { font-size: 1rem; }
}

/* FEATURES SECTION */
.features {
  background: #23282E;
  border-radius: 12px;
  margin: 44px 0;
  box-shadow: 0 2px 18px 0 #21242e34;
}
.features .container {
  padding: 0;
}
.features .content-wrapper {
  align-items: flex-start;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 24px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #1A1A1A;
  border-radius: 9px;
  padding: 26px 22px 20px 22px;
  width: 235px;
  min-width: 220px;
  margin-bottom: 20px;
  box-shadow: 0 2px 12px 0 #23272d1e, 0 1px 8px 0 #23272d17;
  border: 1.5px solid #14213D;
  transition: box-shadow 0.22s,border .18s;
}
.feature-item img {
  width: 36px;
  height: 36px;
  filter: brightness(1.3) grayscale(0.06) drop-shadow(0 2px 4px #06070b25);
}
.feature-item h3 {
  font-size: 1.18rem;
  color: #FCA311;
  margin-bottom: 0.25em;
}
.feature-item p {
  color: #E5E5E5;
  font-size: 1rem;
  line-height: 1.58;
}
.feature-item:hover, .feature-item:focus-within {
  box-shadow: 0 6px 32px 0 #11141e48;
  border-color: #FCA311;
  outline: none;
}
@media (max-width: 1100px) {
  .feature-grid { gap: 18px; }
  .feature-item { width: 100%; min-width: 0; }
}
@media (max-width: 800px) {
  .feature-grid {
    flex-direction: column;
    gap: 16px;
  }
  .feature-item {
    width: 100%;
    max-width: 100%;
  }
}

/* USP LIST */
.usp {
  background: #181A1B;
  border-left: 6px solid #FCA311;
  border-radius: 12px;
  box-shadow: 0 2px 12px 0 #14132541;
  margin: 46px 0 56px 0;
}
.usp ul {
  margin-top: 6px;
  margin-bottom: 0;
}
.usp li {
  font-size: 1.1rem;
  color: #E5E5E5;
  margin-bottom: 12px;
  padding-left: 2px;
  line-height: 1.65;
}

/* TESTIMONIALS */
.testimonials {
  background: #23282E;
  border-radius: 12px;
  margin: 48px 0;
  box-shadow: 0 2px 10px 0 #23282e43;
}
.testimonial-slider, .testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  background: #fff;
  color: #23282E;
  border-radius: 9px;
  padding: 26px 24px 18px 24px;
  margin-bottom: 20px;
  min-width: 260px;
  box-shadow: 0 2px 18px 0 #10141e12, 0 1px 8px 0 #10141e0c;
  border-left: 4.5px solid #FCA311;
  transition: box-shadow .2s, border .16s;
  position: relative;
}
.testimonial-card:before {
  content: '\201C';
  color: #FCA311;
  font-size: 3.1rem;
  position: absolute;
  top: 11px;
  left: 14px;
  opacity: 0.18;
  pointer-events: none;
}
.testimonial-card .person {
  font-family: 'Montserrat', 'Open Sans', Arial, Helvetica, sans-serif;
  font-weight: 600;
  color: #14213D;
  font-size: 1.04rem;
  margin-top: 12px;
}
.testimonial-card p {
  color: #23282E;
  font-size: 1.06rem;
  font-weight: 500;
  letter-spacing: 0.006em;
  margin-bottom: 0;
  z-index: 1;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 6px 32px 0 #11141e34;
  border-left: 4.5px solid #FA8805;
}
@media (max-width: 850px) {
  .testimonial-slider,.testimonial-grid {
    flex-direction: column;
    gap: 18px;
  }
  .testimonial-card { width: 100%; min-width: 0; }
}

/* CTA SECTION */
.cta {
  background: #14213D;
  color: #fff;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 1px 7px 0 #080a1122;
  margin: 50px 0 0 0;
  padding: 44px 0 36px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cta h2 {
  color: #fff;
  font-size: 1.75rem;
  margin-bottom: 1.2em;
}
.cta .cta.primary {
  margin-left: 0;
  margin-top: 18px;
}

/* FOOTER */
footer {
  background: #181A1B;
  border-top: 1px solid #23282E;
  padding: 32px 0 18px 0;
  margin-top: 44px;
}
footer .container {
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
footer img {
  height: 34px;
}
.footer-nav {
  display: flex;
  gap: 20px;
  align-items: center;
}
.footer-nav a {
  color: #FCA311;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.12s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #fff;
  outline: none;
}
.footer-contact {
  color: #c0c0c0;
  font-size: 0.98rem;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.footer-contact a {
  color: #FCA311;
  transition: color 0.13s;
}
.footer-contact a:hover { color: #fff; }
@media (max-width: 600px) {
  .footer-nav { gap: 10px; flex-direction: column; align-items: center; }
  .footer-contact { text-align: center; justify-content: center; }
}

/* COMMON CARD & FLEX LAYOUTS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  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;
    gap: 18px;
    align-items: flex-start;
  }
  .card-container, .content-grid { gap: 12px; }
}
.feature-item,
.card-content,
.service-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* SERVICE CARDS (LEISTUNGEN) */
.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 20px 0 32px 0;
  justify-content: flex-start;
}
.service-card {
  background: #1A1A1A;
  border-radius: 8px;
  width: 250px;
  min-width: 220px;
  margin-bottom: 20px;
  box-shadow: 0 2px 12px 0 #23272d14, 0 1px 4px 0 #23272d14;
  padding: 22px 18px 16px 18px;
  border-left: 4px solid #FCA311;
  transition: box-shadow .17s, border .12s;
}
.service-card h2 {
  font-size: 1.13rem;
  color: #FCA311;
  margin-bottom: 0.5em;
}
.service-card .sample {
  font-size: 0.97rem;
  color: #FCA311;
  margin-top: 8px;
  font-style: italic;
}
.service-card:hover, .service-card:focus-within {
  box-shadow: 0 6px 32px 0 #11141e33;
  border-color: #FA8805;
  outline: none;
}
@media (max-width: 1000px) {
  .service-cards {
    flex-direction: column;
    gap: 18px;
  }
  .service-card {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }
}

/* PRICING TABLE */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0 22px 0;
  background: #23282E;
  border-radius: 9px;
  overflow: hidden;
}
.pricing-table th, .pricing-table td {
  padding: 16px 12px;
  font-size: 1.07rem;
  text-align: left;
  color: #E5E5E5;
}
.pricing-table th {
  background: #14213D;
  color: #FCA311;
  font-family: 'Montserrat', 'Open Sans', Arial, Helvetica, sans-serif;
  font-weight: 600;
}
.pricing-table tr:nth-child(odd) td {
  background: #23282E;
}
.pricing-table tr:nth-child(even) td {
  background: #181A1B;
}
.pricing-table td:last-child {
  color: #FCA311;
  font-weight: 700;
  text-align: right;
}
.pricing-table strong {
  color: #FCA311;
}
@media (max-width: 600px) {
  .pricing-table th, .pricing-table td { padding: 11px 6px; font-size: 0.99rem; }
}

/* BLOG ARTICLE GRID */
.article-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 15px 0 26px 0;
}
.article-grid article {
  background: #23282E;
  border-radius: 7px;
  box-shadow: 0 2px 8px 0 #10141e1a;
  padding: 18px 16px 12px 16px;
  flex: 0 1 320px;
  min-width: 220px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow 0.18s, background .14s;
}
.article-grid article h3 {
  color: #FCA311;
  font-size: 1.16rem;
}
.article-grid article p {
  color: #E5E5E5;
  font-size: 1rem;
}
.article-grid article a {
  color: #FCA311;
  font-family: 'Montserrat', 'Open Sans', Arial, Helvetica, sans-serif;
  font-weight: 600;
  transition: color 0.13s;
  margin-top: 8px;
}
.article-grid article a:hover, .article-grid article a:focus {
  color: #fff;
  outline: none;
}
.article-grid article:hover, .article-grid article:focus-within {
  background: #181A1B;
  box-shadow: 0 8px 22px 0 #11141e18;
  outline: none;
}
@media (max-width: 900px) {
  .article-grid {
    flex-direction: column;
    gap: 15px;
  }
}

.categories {
  margin-bottom: 24px;
  font-size: 1rem;
  color: #FCA311;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}
.categories strong {
  color: #fff;
}
.categories span {
  background: #23282E;
  color: #fff;
  border-radius: 4px;
  padding: 4px 12px;
  font-size: 0.99rem;
  font-weight: 600;
  margin-right: 4px;
  margin-top: 5px;
}

/* GENERIC TEXT SECTIONS */
.text-section {
  margin-bottom: 32px;
}
.text-section h2, .text-section h3 {
  margin-top: 20px;
}
.text-section ul, .text-section ol { margin-bottom: 16px; }

/* CONTACT DETAILS */
.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin: 24px 0;
}
.contact-details .text-section { flex: 1 1 260px; min-width: 200px; }
@media (max-width: 900px) {
  .contact-details {
    flex-direction: column;
    gap: 22px;
  }
  .contact-details .text-section {
    min-width: 0;
  }
}

/* TABLES GENERIC */
table {
  border-collapse: collapse;
  width: 100%;
}
th, td {
  padding: 10px 6px;
  text-align: left;
}

/* BUTTONS */
button, .button, .cta.primary {
  font-family: 'Montserrat', 'Open Sans', Arial, Helvetica, sans-serif;
  border-radius: 6px;
  transition: background .18s, color .12s, box-shadow .18s;
  outline: none;
  cursor: pointer;
}
button:focus, .button:focus, .cta.primary:focus {
  outline: 2px solid #FCA311;
}

/* ========== COOKIE CONSENT BANNER ========== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #23282E;
  color: #FCA311;
  z-index: 9999;
  box-shadow: 0 -4px 18px #10141e6e;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 20px 16px 18px 16px;
  gap: 32px;
  transition: transform 0.38s cubic-bezier(.7,0,.42,1.28);
}
.cookie-banner.hide {
  transform: translateY(120%);
}
.cookie-banner__content {
  font-size: 1.05rem;
  max-width: 620px;
}
.cookie-banner__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.cookie-banner__button, .cookie-modal__button {
  background: #FCA311;
  border: none;
  color: #14213D;
  padding: 10px 22px;
  border-radius: 5px;
  font-family: 'Montserrat', 'Open Sans', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  margin-right: 7px;
  transition: background 0.16s, color 0.09s;
  cursor: pointer;
}
.cookie-banner__button.settings {
  background: #23282E;
  color: #FCA311;
  border: 1.5px solid #FCA311;
}
.cookie-banner__button:hover, .cookie-banner__button:focus, .cookie-modal__button:hover, .cookie-modal__button:focus {
  background: #14213D;
  color: #FCA311;
  outline: none;
}
.cookie-banner__button.settings:hover, .cookie-banner__button.settings:focus {
  background: #FCA311;
  color: #14213D;
}
@media (max-width: 650px) {
  .cookie-banner {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
    padding: 14px 8px 12px 8px;
    font-size: .99rem;
  }
  .cookie-banner__actions {
    gap: 8px;
  }
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  width: 92vw;
  max-width: 430px;
  background: #23282E;
  color: #fff;
  border-radius: 16px;
  padding: 38px 24px 28px 24px;
  z-index: 10001;
  transform: translate(-50%, -50%) scale(1.05);
  box-shadow: 0 8px 38px 0 #10141e4a;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s, transform 0.18s;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}
.cookie-modal__close {
  position: absolute;
  top: 16px; right: 16px;
  background: none;
  border: none;
  color: #FCA311;
  font-size: 1.6rem;
  cursor: pointer;
  transition: color 0.15s;
  z-index: 2;
}
.cookie-modal__close:hover, .cookie-modal__close:focus {
  color: #fff;
  outline: none;
}
.cookie-modal h3 {
  color: #FCA311;
  font-size: 1.2rem;
}
.cookie-modal__category {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 6px;
  font-size: 1.04rem;
}
.cookie-modal__toggle {
  display: flex;
  align-items: center;
  gap: 12px;
}
.cookie-modal__toggle label {
  font-size: 1rem;
  color: #FCA311;
  font-weight: 600;
  cursor: pointer;
}
.cookie-modal__switch {
  width: 44px;
  height: 22px;
  position: relative;
  display: inline-block;
}
.cookie-modal__switch input { display: none; }
.cookie-modal__slider {
  position: absolute;
  cursor: pointer;
  background: #14213D;
  border-radius: 34px;
  top: 0; left: 0;
  right: 0; bottom: 0;
  transition: background 0.22s;
}
.cookie-modal__slider::before {
  content: '';
  position: absolute;
  height: 18px;
  width: 18px;
  left: 2px;
  bottom: 2px;
  background: #FCA311;
  border-radius: 50%;
  transition: transform 0.22s;
}
.cookie-modal__switch input:checked + .cookie-modal__slider {
  background: #FCA311;
}
.cookie-modal__switch input:checked + .cookie-modal__slider::before {
  background: #14213D;
  transform: translateX(22px);
}
.cookie-modal__button {
  background: #FCA311;
  color: #14213D;
  border-radius: 6px;
  padding: 10px 22px;
  font-family: 'Montserrat', 'Open Sans', Arial, Helvetica, sans-serif;
  font-weight: 700;
  border: none;
  transition: background .17s, color .14s;
  cursor: pointer;
}

/* ========== ANIMATION UTILITIES ========== */
.fade-in {
  opacity: 0;
  transform: translateY(18px);
  animation: fadeInUp .6s forwards;
}
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* MICRO-INTERACTIONS */
.card, .service-card, .feature-item, .testimonial-card, .article-grid article {
  transition: box-shadow 0.18s, border-color 0.14s, background 0.16s;
}
.card:hover, .card:focus-within,
.service-card:hover, .service-card:focus-within,
.feature-item:hover, .feature-item:focus-within,
.testimonial-card:hover, .testimonial-card:focus-within,
.article-grid article:hover, .article-grid article:focus-within {
  box-shadow: 0 8px 30px 0 #0a0C22a8;
  outline: none;
}
button:active, .cta.primary:active {
  box-shadow: 0 2px 8px 0 #11141e2a inset;
}

/* ========== FORM ELEMENTS GENERIC ========== */
input, select, textarea {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  padding: 10px;
  border: 1.5px solid #23282E;
  border-radius: 5px;
  background: #1A1A1A;
  color: #fff;
  margin-bottom: 18px;
  outline: none;
  transition: border .14s, background .12s;
}
input:focus, textarea:focus, select:focus {
  border: 1.5px solid #FCA311;
  background: #181A1B;
}
label { font-weight: 600; color: #FCA311; }

/* ===================== RESPONSIVE BREAKPOINTS =================== */
@media (max-width: 1200px) {
  .container { max-width: 1000px; }
}
@media (max-width: 1000px) {
  .container { max-width: 95vw; }
}
@media (max-width: 600px) {
  .container { max-width: 100vw; padding: 0 7px; }
  .footer-contact, .footer-nav { font-size: .95rem; }
  .text-section { margin-bottom: 18px; }
}

/* =================== INDUSTRIAL MODERN EXTRAS =================== */
body {
  background: #181A1B; /* cement dark gray */
}
.card, .service-card, .feature-item, .testimonial-card, .article-grid article {
  border-radius: 8px;
  box-shadow: 0 1px 8px 0 #31354a14, 0 1.5px 16px 0 #1a1e3223;
}
.card, .service-card, .feature-item {
  border: 1.5px solid #292D37;
}
/* Faux metal accents */
.feature-item, .service-card, .testimonial-card {
  background: linear-gradient(120deg, #23282E 88%, #23282e38 100%);
  box-shadow: 0 2px 12px 0 #23282e2e, 0 1px 8px 0 #23272d18;
  border-bottom: 3px solid #6A6A6A44;
  border-right: 3px solid #6A6A6A40;
}
.cta.primary, .cookie-banner__button, .cookie-modal__button {
  /* metallic button effect */
  box-shadow: 0 2px 9px 0 #10141e38, 0 0.5px 2px 0 #FCA3114c;
  border-bottom: 2.2px solid #c570018f;
  border-right: 2.1px solid #c570018f;
}

/* --- PRINT STYLES --- */
@media print {
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal, .cta { display: none !important; }
  .container, body { background: #fff !important; color: #23282E !important; }
}
