/* RESET & BASE TYPOGRAPHY */
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 {
  font-size: 16px;
  background: #14181a;
}

body {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  color: #F5F8FA;
  background: #181C1F;
  line-height: 1.6;
  min-height: 100vh;
}

:root {
  --primary: #25663E;
  --primary-dark: #132c1d;
  --secondary: #F5F8FA;
  --light-bg: #232728;
  --accent: #08705B;
  --brand-accent: #14B593;
  --neutral-700: #32373b;
  --metal: #7a7e85;
  --card-bg: #212323;
  --card-bg-alt: #232727;
  --shadow: 0 2px 12px 0 #14191e77;
  --radius: 12px;
}

*, *:before, *:after {
  box-sizing: inherit;
}

img {
  max-width: 100%;
  display: block;
  border: 0;
}

a {
  color: var(--brand-accent);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover, a:focus {
  color: var(--accent);
  text-decoration: underline;
}

ul, ol {
  margin-left: 1.5em;
  margin-top: 0.5em;
}


/* CONTAINER & LAYOUT */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}

.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.text-section {
  max-width: 750px;
  margin: 0 auto;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

@media (min-width: 700px) {
  .content-wrapper {
    gap: 32px;
  }
  .section {
    padding: 60px 0;
  }
}


/* TYPOGRAPHY */
h1, .h1 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-size: 2.25rem;
  letter-spacing: -1px;
  font-weight: 800;
  color: #F5F8FA;
  margin-bottom: 14px;
  line-height: 1.1;
}
h2, .h2 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
  color: #F5F8FA;
}
h3, .h3 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--brand-accent);
}
h4, .h4 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--accent);
}
p, li, ul, ol, strong {
  font-size: 1rem;
  color: #e0e3e7;
}
strong {
  color: #F5F8FA;
  font-weight: 700;
}

@media (min-width: 900px) {
  h1, .h1 { font-size: 2.8rem; }
  h2, .h2 { font-size: 2.1rem; }
  h3, .h3 { font-size: 1.32rem; }
}


/* HEADER & NAVIGATION */
header {
  background: #1b2022;
  border-bottom: 2.5px solid var(--metal);
  position: sticky;
  top: 0;
  z-index: 1002;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
}
.logo img {
  height: 44px;
  width: auto;
  display: block;
  filter: grayscale(30%) contrast(1.12);
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}
.main-nav a {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  padding: 6px 14px;
  font-weight: 600;
  border-radius: 6px;
  color: #D5DBE3;
  transition: background 0.18s, color 0.18s;
  letter-spacing: 0.05em;
}
.main-nav a.cta {
  background: var(--primary);
  color: #F5F8FA;
  border: 1.5px solid var(--brand-accent);
  font-weight: 800;
  margin-left: 14px;
  transition: background 0.19s, color 0.16s, box-shadow 0.2s;
}
.main-nav a.cta:hover, .main-nav a.cta:focus {
  background: var(--brand-accent);
  color: #14181a;
  box-shadow: 0 4px 16px 0 #14B59344;
}
.main-nav a:hover:not(.cta), .main-nav a:focus:not(.cta) {
  background: var(--metal);
  color: #F5F8FA;
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #F5F8FA;
  background: none;
  border: none;
  margin-left: 16px;
  cursor: pointer;
  z-index: 2005;
  transition: color 0.18s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  color: var(--brand-accent);
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #111415ee;
  transform: translateX(-100vw);
  transition: transform 0.36s cubic-bezier(0.7,0.2,0.2,1.1);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  padding: 0;
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  font-size: 2.1rem;
  background: none;
  border: none;
  color: #F5F8FA;
  padding: 18px 16px 8px 16px;
  align-self: flex-end;
  cursor: pointer;
  margin-top: 14px;
  transition: color 0.15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--brand-accent);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 60px 40px;
  align-items: flex-start;
}
.mobile-nav a {
  color: #F5F8FA;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  border-radius: 6px;
  padding: 8px 0;
  transition: background 0.15s, color 0.15s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #22282a;
  color: var(--brand-accent);
}
@media (max-width: 900px) {
  .main-nav { display: none; }
  .mobile-menu-toggle { display: flex; }
}
@media (min-width: 901px) {
  .mobile-menu, .mobile-menu-toggle {
    display: none!important;
  }
  .main-nav { display: flex!important; }
}


/* HERO SECTION */
.hero {
  background: linear-gradient(120deg, #191e20 70%, #32373b 100%);
  border-bottom: 2px solid var(--metal);
  padding-top: 16px;
  padding-bottom: 40px;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 24px;
}
.hero h1 {
  color: #fafcff;
  font-size: 2.15rem;
  font-weight: 800;
  margin-bottom: 4px;
}
.hero p {
  color: #c4d2cf;
  max-width: 460px;
}
.hero .cta {
  margin-top: 22px;
}

@media (min-width: 900px) {
  .hero {
    padding-top: 50px;
    padding-bottom: 80px;
  }
  .hero .content-wrapper {
    max-width: 630px;
  }
  .hero h1 { font-size: 3rem; }
}

/* BUTTONS */
.cta, .btn, button, input[type='submit'] {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-size: 1.05rem;
  padding: 0.75em 1.9em;
  background: var(--accent);
  color: #ffffff;
  border: none;
  border-radius: 9px;
  font-weight: 800;
  cursor: pointer;
  transition: background 0.18s, color 0.16s, box-shadow 0.22s;
  text-decoration: none;
  box-shadow: 0 1.5px 9px #14B59322, 0 1.5px 0 #1e262257;
  letter-spacing: 0.04em;
  display: inline-block;
}
.cta:hover, .cta:focus, .btn:hover, .btn:focus, button:hover, button:focus {
  background: var(--brand-accent);
  color: #181c1f;
  box-shadow: 0 2.5px 20px 0 #14B59350;
}
.cta-secondary {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  color: #e3ead7;
  background: none;
  border: 2px solid var(--brand-accent);
  padding: 0.75em 1.7em;
  border-radius: 9px;
  margin-top: 19px;
  font-weight: 700;
  transition: background 0.12s, color 0.12s, border 0.16s;
  letter-spacing: 0.04em;
  text-decoration: none;
  display: inline-block;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: var(--brand-accent);
  color: #14171b;
  border-color: var(--brand-accent);
}

/* FLEXPATTERNS */
.features { display: flex; flex-direction: column; gap: 24px; }
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 22px;
  justify-content: space-between;
}
.feature {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 30px 22px;
  flex: 1 1 280px;
  box-shadow: var(--shadow);
  border: 1.5px solid #222927;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  min-width: 240px;
  max-width: 330px;
  margin-bottom: 20px;
  position: relative;
}
.feature img {
  width: 36px;
  height: 36px;
  margin-bottom: 6px;
  filter: grayscale(30%) brightness(1.26);
}

/* Cards and Cards-Container */
.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card { margin-bottom: 20px; position: relative; }
.card-content { display: flex; flex-direction: column; justify-content: center; }
.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; }
.testimonial-card { display: flex; flex-direction: column; align-items: center; gap: 20px; padding: 25px 22px; }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }

/* Services Cards */
.services-preview .service-cards, .services-list ul {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.services-preview .service-cards {
  flex-wrap: wrap;
  gap: 24px;
}
.service-card {
  background: var(--card-bg-alt);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  border: 1.5px solid #252e29;
  padding: 24px 20px;
  flex: 1 1 260px;
  min-width: 220px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.17s, border 0.15s;
}
.service-card:hover, .service-card:focus {
  border: 1.5px solid var(--brand-accent);
  box-shadow: 0 6px 28px 0 #14B59333;
}
@media (min-width: 700px) {
  .services-preview .service-cards {
    flex-direction: row;
  }
  .services-list ul {
    flex-direction: column;
  }
}

/* TESTIMONIALS & SLIDER */
.testimonials { background: #232727; padding: 60px 0; }
.testimonials h2, .testimonials h1 { color: #F5F8FA; }
.testimonials .testimonial-slider, .testimonials .testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 30px;
  justify-content: flex-start;
}
.testimonial-card {
  background: #f7fafc;
  color: #1b2020;
  border-radius: var(--radius);
  box-shadow: 0 1.5px 16px 0 #14191e2f, 0 1px 0 #bbb4a477;
  border-left: 6px solid var(--brand-accent);
  max-width: 340px;
  flex: 1 1 240px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  font-size: 1.08rem;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  gap: 12px;
  min-width: 220px;
  transition: box-shadow 0.15s, border 0.14s;
}
.testimonial-card p {
  font-size: 1.04rem;
  color: #171d1c;
}
.testimonial-card .client-info {
  color: var(--brand-accent);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  margin-bottom: 2px;
}
.testimonial-card span:last-child {
  color: var(--primary);
  margin-top: 1px;
  font-size: 1.2rem;
}
.testimonial-card:hover, .testimonial-card:focus {
  box-shadow: 0 4px 18px 0 #14B59325, 0 2px 0 #b2c1b177;
  border-left: 6px solid var(--primary);
}

/* Call-to-Action Sections */
.call-to-action, .service-cta, .contact-cta {
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius);
  box-shadow: 0 2.5px 16px #14191e33;
  margin-bottom: 60px;
  padding: 40px 18px;
}
.call-to-action h2, .service-cta h2, .contact-cta h2 {
  color: #fff;
}
.call-to-action .phone-highlight, .service-cta .contact-highlight, .contact-cta .phone-emphasis {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 22px 0 12px 0;
  color: #f8ffee;
}
.call-to-action .phone-highlight img, .service-cta .contact-highlight img, .contact-cta .phone-emphasis img {
  width: 23px;
  height: 23px;
}

/* PRICING TABLE */
.pricing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--light-bg);
  color: #f7fcf9;
  border-radius: var(--radius);
  margin: 24px 0 14px 0;
  box-shadow: 0 1px 10px #232c2555;
  overflow: hidden;
}
.pricing-table th, .pricing-table td {
  padding: 15px 12px;
  text-align: left;
  border-bottom: 1.5px solid #222;
}
.pricing-table th {
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
}
.pricing-table tr:last-child td {
  border-bottom: none;
}
.pricing-table tr:hover td {
  background: var(--card-bg-alt);
}
@media(max-width: 600px) {
  .pricing-table thead { display: none; }
  .pricing-table, .pricing-table tbody, .pricing-table tr, .pricing-table td { display: block; width: 100%; }
  .pricing-table tr { margin-bottom: 22px; }
  .pricing-table td { padding-left: 42%; position: relative; }
  .pricing-table td:before { content: attr(data-label); position: absolute; left: 12px; font-weight: bold; color: #97be98; }
}

/* CASE STUDIES */
.case-studies {
  background: #181b1d;
  border-top: 2.5px solid var(--metal);
}
.project-summary {
  background: var(--card-bg-alt);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1.5px solid #222;
  padding: 30px 22px;
  margin-bottom: 24px;
  position: relative;
}

/* CONTACT DETAILS */
.contact-details ul, .contact-summary {
  list-style: none;
  padding-left: 0;
  margin-top: 9px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.contact-details li, .contact-summary li {
  color: #d7ede6;
  font-size: 1rem;
  letter-spacing: 0.02em;
}

/* MAP & ADDRESS */
.map-section .address {
  background: var(--card-bg-alt);
  padding: 19px 14px;
  border-radius: 10px;
  color: var(--brand-accent);
  font-weight: 700;
  margin-bottom: 10px;
}
.visit-us-note p {
  font-size: 0.97rem;
  color: #a2b2b2;
}

/* FOOTER */
footer {
  background: #14191e;
  color: #b1c3b2;
  border-top: 2px solid var(--metal);
  padding: 32px 0 24px 0;
  font-size: 0.97rem;
  margin-top: 40px;
}
footer .container {
  flex-direction: column;
  gap: 18px;
  align-items: center;
}
.footer-nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 6px;
}
.footer-nav a {
  color: #c1cdc2;
  font-weight: 600;
  letter-spacing: 0.04em;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  transition: color 0.13s;
  font-size: 1rem;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--brand-accent);
}
.footer-contact {
  display: flex;
  gap: 10px;
  color: #b2c5b5;
  font-size: 0.98rem;
  align-items: center;
}
.footer-contact span {
  margin-right: 12px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  color: #8e998e;
}
.footer-brand img {
  height: 26px;
  width: auto;
  filter: grayscale(75%);
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #161a1b;
  color: #fff;
  box-shadow: 0 -2px 12px #11181e88;
  padding: 24px 16px;
  z-index: 2200;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
  transition: transform 0.3s cubic-bezier(0.40,0.9,0.2,1.1);
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner.active {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.cookie-banner .cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.cookie-banner button {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  padding: 0.65em 1.4em;
  border-radius: 9px;
  border: none;
  box-shadow: 0 1.5px 8px #14B59311;
  font-weight: 800;
  cursor: pointer;
  transition: background 0.15s, color 0.13s;
  margin-right: 6px;
}
.cookie-banner .accept-all {
  background: var(--brand-accent);
  color: #181c1f;
}
.cookie-banner .accept-all:hover, .cookie-banner .accept-all:focus {
  background: var(--accent);
  color: #fff;
}
.cookie-banner .reject-all {
  background: #232728;
  color: #fff;
  border: 1.5px solid var(--metal);
}
.cookie-banner .reject-all:hover, .cookie-banner .reject-all:focus {
  background: #383d3e;
  color: var(--brand-accent);
}
.cookie-banner .settings {
  background: none;
  color: #fff;
  border: 1.5px solid var(--brand-accent);
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: var(--brand-accent);
  color: #121615;
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: #11181eE6;
  z-index: 2300;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.24s;
}
.cookie-modal.active {
  pointer-events: all;
  opacity: 1;
}
.cookie-modal-dialog {
  background: #f7fafc;
  color: #1b2020;
  border-radius: var(--radius);
  min-width: 320px;
  max-width: 95vw;
  padding: 38px 28px 28px 28px;
  box-shadow: 0 5px 30px #22303744;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-modal-header {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  color: var(--primary);
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 14px;
}
.cookie-modal-close {
  position: absolute;
  top: 14px; right: 18px;
  background: none;
  border: none;
  font-size: 1.75rem;
  color: #262f36;
  cursor: pointer;
  transition: color 0.15s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: var(--brand-accent);
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 8px;
}
.cookie-category input[type='checkbox'] {
  width: 20px;
  height: 20px;
  accent-color: var(--brand-accent);
}
.cookie-category label {
  font-weight: 700;
  color: var(--primary);
}
.cookie-modal-footer {
  display: flex;
  gap: 18px;
  margin-top: 18px;
  flex-wrap: wrap;
}
.cookie-modal-footer button {
  font-size: 1rem;
  border-radius: 9px;
  padding: 0.62em 1.2em;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 700;
  cursor: pointer;
  border: none;
}
.cookie-modal-footer .modal-save {
  background: var(--brand-accent);
  color: #181c1f;
  box-shadow: 0 1.5px 4px #14B59310;
}
.cookie-modal-footer .modal-save:hover, .cookie-modal-footer .modal-save:focus {
  background: var(--accent);
  color: #fff;
}
.cookie-modal-footer .modal-cancel {
  background: #e3e6e8;
  color: #1b2020;
}
.cookie-modal-footer .modal-cancel:hover, .cookie-modal-footer .modal-cancel:focus {
  background: #b2b8b5;
  color: #fff;
}

/* MISC & UTILS */
::-webkit-scrollbar {
  width: 9px;
  background: #181b1d;
}
::-webkit-scrollbar-thumb {
  background: #232828;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #25663E;
}

hr {
  border: none;
  height: 2px;
  background: #252f2b;
  margin: 24px 0;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* RESPONSIVE LAYOUT */
@media (max-width: 900px) {
  .feature-grid,.features-preview .service-cards,.testimonials .testimonial-slider,.testimonials .testimonial-list {
    flex-direction: column;
    align-items: stretch;
  }
  .card-container, .content-grid {
    flex-direction: column!important;
    gap: 20px;
  }
  .call-to-action, .service-cta, .contact-cta, .section {
    padding: 32px 8px;
  }
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 23px;
  }
  .content-wrapper {
    gap: 18px;
  }
}

@media (max-width: 550px) {
  .footer-nav { gap: 12px; font-size: 0.96rem; flex-wrap: wrap; }
  .container {
    padding-left: 8px;
    padding-right: 8px;
  }
  .section {
    padding: 24px 0;
  }
}

/* INDUSTRIAL MODERN STYLE ENHANCEMENTS */
body, header, .section, .content-wrapper, .card, .service-card, .feature, .project-summary {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  background-clip: padding-box;
}
h1, h2, h3 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  text-transform: none;
  letter-spacing: 0.01em;
  font-smooth: always;
}
/* Metallic/industrial accents and urban details */
.card, .feature, .service-card, .project-summary {
  border-left: 4.5px solid var(--metal);
}
.feature h3, .service-card h3, .project-summary h3 {
  color: var(--primary);
  letter-spacing: 0.03em;
  text-shadow: 0 1px 0 #14191E22;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
}
h1, h2, .hero h1 {
  text-shadow: 0 2px 10px #171d1c66;
}
.testimonial-card, .service-card, .feature {
  transition: box-shadow 0.18s, border 0.17s, transform 0.18s;
}
.testimonial-card:hover, .service-card:hover, .feature:hover, .testimonial-card:focus, .service-card:focus, .feature:focus {
  box-shadow: 0 4px 30px 0 #87ffa141;
  transform: translateY(-4px) scale(1.018);
  border-left: 4.5px solid var(--brand-accent);
}

/* Satisfaction Guarantee Icon badge (example) */
.feature[data-title*="Zufriedenheit"]:before {
  content: '✔';
  font-size: 1.23em;
  color: #2be37b;
  margin-right: 9px;
  vertical-align: middle;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
}

/* Success/Error highlights */
.success-message, .alert-success {
  background: #183c22;
  color: var(--brand-accent);
  border-left: 5px solid var(--primary);
  padding: 14px 22px;
  border-radius: 8px;
  margin: 12px 0;
}
.error-message, .alert-error {
  background: #332626;
  color: #c12a3a;
  border-left: 5px solid #bf413c;
  padding: 14px 22px;
  border-radius: 8px;
  margin: 12px 0;
}

/* Accessibility focus visible */
:focus {
  outline: 2px solid var(--brand-accent);
  outline-offset: 0.5px;
  z-index: 3010;
}

/* Hide visually but accessible alt-text (e.g. for icons) */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  border: 0; clip: rect(0,0,0,0); clip-path: inset(50%);
}
