/*==============================================================
  RESET AND 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%;
  vertical-align: baseline;
  box-sizing: border-box;
}

article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  min-height: 100vh;
  background: #181C1C;
  color: #F4F4F2;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
img {
  max-width: 100%;
  display: block;
}
ul, ol {
  margin-left: 24px;
  margin-bottom: 20px;
}
li {
  margin-bottom: 8px;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  background: none;
  border: none;
  outline: none;
}

/*==============================================================
  BRAND FONTS
===============================================================*/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Open+Sans:wght@400;600&display=swap');

body {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  color: #F4F4F2;
  font-size: 16px;
  letter-spacing: 0.01em;
  background: #181C1C;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #ECECEC;
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.6rem; /* 41.6px */
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #DAB964;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: #B0C9A9;
}
h4, h5, h6 {
  color: #B0C9A9;
}
p, .subheadline {
  color: #E6E6E3;
  font-size: 1.09rem;
  margin-bottom: 18px;
  line-height: 1.625;
}
strong {
  color: #DAB964;
}

/* Industrial font touches for headings */
h1, h2, h3, .btn-primary, .main-nav a, .footer-nav a {
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/*==============================================================
  COLORS
===============================================================*/
:root {
  --primary: #1D4731;
  --secondary: #B0C9A9;
  --accent: #DAB964;
  --dark: #181C1C;
  --metal: #D3D3D6;
  --offwhite: #F4F4F2;
}

/*==============================================================
  LAYOUT BASICS
===============================================================*/
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}

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

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background-color: #202625;
  border-radius: 14px;
  box-shadow: 0 2px 16px 0 rgba(0,0,0,0.11);
}


/* Spacing Util Classes */
.mb-20 { margin-bottom: 20px !important; }
.mt-20 { margin-top: 20px !important; }
.gap-30 { gap: 30px !important; }

/*==============================================================
  HEADER & NAVIGATION
===============================================================*/
header {
  background: #181C1C;
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 2.5px solid var(--primary);
  box-shadow: 0 2px 8px 0 rgba(35,33,29,0.06);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  gap: 24px;
}
.logo img {
  height: 48px;
  width: auto;
  display: block;
}

.main-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: var(--offwhite);
  letter-spacing: 0.03em;
  position: relative;
  padding: 7px 0 7px 0;
  transition: color 0.22s;
}
.main-nav a::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: 2px;
  height: 2.5px;
  background: var(--accent);
  opacity: 0;
  transition: opacity 0.22s, transform 0.22s;
  transform: scaleX(0.7);
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--accent);
}
.main-nav a:hover::after,
.main-nav a:focus::after {
  opacity: 1;
  transform: scaleX(1);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: #F4F4F2;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  padding: 13px 32px;
  border-radius: 30px;
  border: 2px solid var(--accent);
  box-shadow: 0 5px 16px 0 rgba(27,43,36,0.15);
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-left: 10px;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, border 0.2s;
  position: relative;
  z-index: 1;
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--accent);
  color: var(--primary);
  border: 2px solid #fff;
  box-shadow: 0 4px 20px 0 rgba(218,185,100,0.10), 0 0 0 3px var(--accent);
}
.btn-link {
  color: var(--accent);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-weight: 600;
  transition: color 0.2s;
  position: relative;
  padding-bottom: 2px;
}
.btn-link::after {
  content: '';
  display: block;
  height: 2px;
  width: 100%;
  background: var(--accent);
  opacity: 0.66;
  margin-top: 2px;
  transition: opacity 0.2s, transform 0.2s;
}
.btn-link:hover,
.btn-link:focus {
  color: var(--offwhite);
}
.btn-link:hover::after,
.btn-link:focus::after {
  opacity: 1;
  transform: scaleX(1.15);
}

/*==============================================================
  MOBILE NAVIGATION
===============================================================*/
.mobile-menu-toggle {
  display: none;
}
@media (max-width: 950px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
    background: var(--accent);
    color: var(--primary);
    font-size: 2rem;
    line-height: 1;
    padding: 10px 18px;
    border-radius: 7px;
    border: 2.5px solid var(--primary);
    cursor: pointer;
    margin-left: auto;
    box-shadow: 0 1.5px 6px rgba(50,37,10,0.10);
    transition: background 0.16s, color 0.16s, box-shadow 0.2s;
    z-index: 2001;
  }
}

.mobile-menu {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(29, 71, 49, 0.98);
  z-index: 3000;
  transform: translateX(100vw);
  transition: transform 0.33s cubic-bezier(.71,0,.19,1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  padding: 0;
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2.4rem;
  background: none;
  color: var(--accent);
  border: none;
  padding: 18px 24px;
  margin-top: 10px;
  margin-right: 12px;
  cursor: pointer;
  transition: color 0.2s;
  z-index: 3002;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #fff7be;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
  margin: 32px 32px 0 0;
}
.mobile-nav a {
  font-size: 1.3rem;
  color: #F4F4F2;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 13px 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s, color 0.22s;
  width: max-content;
  text-transform: uppercase;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--accent);
  border-bottom: 2px solid var(--accent);
}

@media (max-width: 600px) {
  .mobile-nav {
    margin-right: 11px;
    gap: 19px;
    padding-bottom: 32px;
  }
  .mobile-menu-close {
    padding-right: 16px;
  }
}

/* Keep CTA visible next to burger on mobile */
@media (max-width: 950px) {
  .btn-primary {
    margin-left: 0;
  }
}

/*==============================================================
  HERO SECTION & CTA BANNER
===============================================================*/
.hero {
  background: linear-gradient(110deg,#232927 60%, #232C2C 100%);
  min-height: 310px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 60px;
}
.hero h1 {
  color: var(--accent);
  font-size: 2.65rem;
  margin-bottom: 16px;
}
.hero .subheadline {
  color: #B0C9A9;
  font-size: 1.25rem;
  font-weight: 600;
}
.hero .btn-primary {
  margin-top: 20px;
}

.cta-banner {
  background: #232927;
  border-left: 7px solid var(--accent);
  border-radius: 11px;
  padding: 32px 30px;
  display: flex;
  align-items: center;
  gap: 36px;
  justify-content: flex-start;
  box-shadow: 0 2px 16px 0 rgba(35,35,30,0.06);
}
.cta-banner p {
  color: var(--offwhite);
  font-size: 1.2rem;
}
.cta-banner .btn-primary {
  font-size: 1rem;
}
@media (max-width: 600px) {
  .cta-banner {
    flex-direction: column;
    gap: 16px;
    padding: 26px 12px;
    align-items: flex-start;
  }
}

/*==============================================================
  FLEXBOX LAYOUTS & GRID-LIKE STRUCTURE
===============================================================*/
.features-grid, .brand-logos-list, .brand-grid, .card-container, .content-grid, .testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.features-grid {
  gap: 32px;
}
.brand-logos-list {
  gap: 38px;
  align-items: center;
  flex-wrap: wrap;
}
.brand-grid {
  gap: 24px;
  flex-wrap: wrap;
}
.card-container {
  gap: 24px;
  flex-wrap: wrap;
}
.content-grid {
  gap: 20px;
  justify-content: space-between;
  flex-wrap: wrap;
}
.card {
  margin-bottom: 20px;
  background: #202625;
  border-radius: 11px;
  box-shadow: 0 2px 8px 0 rgba(32,32,32,0.13);
  position: relative;
  display: flex;
  flex-direction: column;
}
.brand-card {
  background: #232927;
  padding: 28px 22px 20px 22px;
  border-radius: 13px;
  min-width: 230px;
  max-width: 275px;
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 13px;
  box-shadow: 0 3px 14px rgba(38,42,26,0.05);
  border: 1.5px solid #282d2b;
  transition: box-shadow 0.19s, border 0.19s;
}
.brand-card:hover, .brand-card:focus-within {
  border: 1.5px solid var(--accent);
  box-shadow: 0 8px 22px 0 rgba(218,185,100,0.08);
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #242927;
  padding: 22px 21px 16px 21px;
  border-radius: 11px;
  box-shadow: 0 2px 8px 0 rgba(35,35,30,0.07);
  margin-bottom: 20px;
  border-left: 4px solid var(--accent);
  transition: box-shadow 0.16s,border 0.17s;
}
.feature-item img {
  width: 36px;
  filter: grayscale(0.4) brightness(1.07) drop-shadow(0 1.5px 3px #191c19ba);
  margin-bottom: 6px;
}
.feature-item:hover, .feature-item:focus-within {
  border-left: 4px solid #fff7be;
  box-shadow: 0 3px 22px 0 rgba(218,185,100,0.07);
}

@media (max-width: 1000px) {
  .features-grid, .brand-logos-list,.brand-grid {
    gap: 14px;
    flex-wrap: wrap;
  }
}
@media (max-width: 800px) {
  .features-grid, .brand-logos-list, .brand-grid { gap: 10px; }
  .brand-card { min-width: 170px; max-width: 100%; }
}
@media (max-width: 600px) {
  .features-grid, .brand-logos-list, .brand-grid, .testimonial-slider { flex-direction: column; gap: 14px; align-items: stretch; }
}

.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: 18px; }
}

.testimonial-slider {
  gap: 20px;
  flex-wrap: wrap;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #F6F6F6;
  border-radius: 14px;
  box-shadow: 0 1.5px 7px 0 rgba(28,36,27,0.14);
  color: #181C1C;
  font-size: 1.1rem;
  min-width: 230px;
  max-width: 370px;
  margin-bottom: 20px;
}
.testimonial-card blockquote {
  margin: 0;
  color: #181C1C;
  font-style: italic;
}
.testimonial-card strong {
  display: block;
  color: var(--primary);
  font-weight: 700;
  margin-top: 13px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.quote-highlight {
  color: var(--accent);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  margin-top: 21px;
  font-size: 1.09rem;
}

/* Contact Info List */
.contact-info ul, .contact-details ul {
  list-style: none;
  padding: 0;
}
.contact-info li, .contact-details li {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 16px;
  color: #E6E6E3;
  font-size: 1.07rem;
}
.contact-info img, .contact-details img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  filter: grayscale(0.5) brightness(1.13);
}
.map-location {
  margin-top: 18px;
  color: var(--accent);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.02rem;
  display: flex;
  align-items: center;
  gap: 12px;
}
.map-location img {
  width: 22px; height: 22px;
}

@media (max-width: 680px) {
  .section, main > section, .hero {
    padding-left: 10px; padding-right: 10px;
  }
  .container {
    padding: 0 8px;
  }
}

/*==============================================================
  FOOTER
===============================================================*/
footer {
  background: #151819;
  border-top: 2px solid var(--primary);
  padding: 24px 0 11px 0;
  color: #D0E6D2;
  box-shadow: 0 -2px 8px 0 rgba(29,71,49,0.09);
}
.footer-nav {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 13px;
}
.footer-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  text-transform: uppercase;
  color: #B0C9A9;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  padding-bottom: 2px;
  border-bottom: 1.5px solid transparent;
  transition: color 0.18s, border 0.18s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--accent);
  border-bottom: 1.5px solid var(--accent);
}
footer p {
  color: #8fa48e;
  font-size: 0.99rem;
  margin-top: 2px;
}

@media (max-width: 600px) {
  .footer-nav {
    flex-direction: column;
    gap: 6px;
    align-items: flex-start;
  }
  footer {
    text-align: left;
    padding-left: 10px;
    padding-right: 10px;
  }
}

/*==============================================================
  TABLES, MISCELLANEOUS ELEMENTS
===============================================================*/
table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}
th, td {
  border: 1px solid #25372c;
  padding: 9px 12px;
  font-size: 0.93rem;
}
th {
  background: #232C2C;
  color: #DAB964;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  text-transform: uppercase;
}
td {
  background: #212625;
  color: #d9eedc;
}
@media (max-width: 700px) {
  table, th, td { font-size: 0.7rem; }
}

/*==============================================================
  RESPONSIVE HEADING & FONT SCALE
===============================================================*/
@media (max-width: 900px) {
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.4rem; }
  .cta-banner p { font-size: 1.07rem; }
  .hero h1 { font-size: 2.1rem; }
}
@media (max-width: 600px) {
  h1, .hero h1 { font-size: 1.36rem; margin-bottom: 13px; }
  h2 { font-size: 1.05rem; }
  h3 { font-size: 1rem; }
  .cta-banner p, p, .subheadline { font-size: 0.99rem; }
}

/*==============================================================
  FORMS & INPUTS
===============================================================*/
input[type="text"], input[type="email"], input[type="tel"], textarea {
  background: #202625;
  color: #F4F4F2;
  border: 1.5px solid var(--accent);
  border-radius: 8px;
  padding: 11px 15px;
  font-size: 1rem;
  margin-bottom: 17px;
  width: 100%;
  transition: border 0.2s, box-shadow 0.2s;
}
input:focus, textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px var(--primary);
}
label {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: var(--accent);
  font-weight: 600;
  font-size: 1.01rem;
}

::placeholder {
  color: #b2b4b1;
}

/*==============================================================
  COOKIE CONSENT BANNER
===============================================================*/
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: linear-gradient(90deg,#202625 85%, #1D4731 100%);
  color: #fffbe8;
  box-shadow: 0 -2px 18px 0 rgba(29,40,50,0.13), 0 0 0 2.5px var(--accent) inset;
  z-index: 4000;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 26px;
  padding: 27px 22px 21px 22px;
  font-size: 1rem;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  animation: cookie-slidein 0.41s cubic-bezier(.54,.11,.51,1) 1;
}
.cookie-banner .cookie-message {
  flex: 1 1 320px;
  color: #fffbe8;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 13px;
  align-items: center;
}
.cookie-banner .btn-cookie {
  padding: 9px 18px;
  border-radius: 7px;
  border: 1.5px solid var(--accent);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  background: var(--primary);
  color: var(--accent);
  cursor: pointer;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-right: 2px;
  transition: background 0.18s, color 0.17s, border 0.19s;
}
.cookie-banner .btn-cookie:hover, .cookie-banner .btn-cookie:focus {
  background: var(--accent);
  color: var(--primary);
  border-color: #fff;
}
/* Reject Button variant */
.cookie-banner .btn-cookie.reject {
  background: #232625;
  color: #ccc7b7;
  border-color: #6c775f;
}
.cookie-banner .btn-cookie.reject:hover, .cookie-banner .btn-cookie.reject:focus {
  background: #332810;
  color: #fff7b7;
}

@keyframes cookie-slidein {
  0% { transform: translateY(100%); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

/* Cookie Preferences Modal */
.cookie-modal {
  display: none; /* Will be set to flex when open */
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  z-index: 4100;
  background: rgba(16,19,10,0.84);
  align-items: center;
  justify-content: center;
  animation: cookie-modal-appear 0.33s cubic-bezier(.58,.13,.66,1);
}
.cookie-modal.open {
  display: flex;
}
@keyframes cookie-modal-appear {
  from { opacity:0; }
  to { opacity:1; }
}
.cookie-modal .modal-box {
  background: #232927;
  color: var(--offwhite);
  border-radius: 14px;
  box-shadow: 0 6px 32px 0 rgba(29,70,49,0.17);
  max-width: 370px;
  width: 96vw;
  padding: 34px 28px 28px 31px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 17px;
  animation: modalbox-popin 0.32s cubic-bezier(.57,.11,.47,1);
}
@keyframes modalbox-popin {
  0% { transform: scale(.82) translateY(20px); opacity: 0; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal .modal-close {
  position: absolute;
  top: 16px; right: 13px;
  font-size: 2.1rem;
  background: none;
  color: var(--accent);
  border: none;
  cursor: pointer;
  transition: color 0.22s;
}
.cookie-modal .modal-close:hover, .cookie-modal .modal-close:focus {
  color: #fff7b7;
}

.cookie-modal .modal-title {
  font-size: 1.22rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: var(--accent);
  font-weight: 700;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 9px 0;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
}
.cookie-modal label {
  font-size: 1rem;
  color: #ECECEC;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  margin-bottom: 0;
}
.cookie-modal input[type="checkbox"] {
  accent-color: var(--accent);
  width: 17px;
  height: 17px;
  border-radius: 4px;
}
.cookie-modal .essential-label {
  color: #bab7a1;
  font-style: italic;
  background: transparent;
  border: none;
  font-size: 0.96rem;
}
.cookie-modal .modal-footer {
  display: flex;
  gap: 18px;
  justify-content: flex-end;
  margin-top: 14px;
}
.cookie-modal .btn-cookie {
  margin: 0;
}

@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 17px 9px 18px 11px;
    font-size: 0.90rem;
    gap: 13px;
  }
  .cookie-modal .modal-box {
    padding: 18px 7px 13px 14px;
  }
}

/*==============================================================
  MICRO-INTERACTIONS & FINE DETAILS
===============================================================*/
.card, .brand-card, .feature-item, .cta-banner, .testimonial-card {
  transition: box-shadow 0.19s, border-left 0.16s;
}
.card:hover, .brand-card:hover, .feature-item:hover, .testimonial-card:hover {
  box-shadow: 0 4px 22px 0 rgba(218,185,100,0.09), 0 0 0 3px var(--accent);
}

a, .btn-primary, .btn-link, .footer-nav a, .main-nav a, .mobile-nav a {
  transition: color 0.22s, background 0.2s, border 0.18s;
}

/* Metal accent underlines */
h2 {
  position: relative;
  padding-left: 0.2em;
}
h2::before {
  content: '';
  position: absolute;
  left: 0; bottom: -5px;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #C7B888 0%, #D3D3D6 100%);
  border-radius: 2.5px;
  opacity: 0.6;
  z-index: 1;
}
@media (max-width: 600px) {
  h2::before { width: 25px; height: 2px; }
}

/* Buttons: Focus Ring */
.btn-primary:focus, .btn-link:focus, .btn-cookie:focus {
  outline: none;
  box-shadow: 0 0 0 2.5px var(--accent);
}

/* Disabled Button */
.btn-primary:disabled, .btn-cookie:disabled {
  background: #49554a !important;
  color: #c0c5b8 !important;
  border-color: #787373 !important;
  cursor: not-allowed !important;
  box-shadow: none !important;
}

/*==============================================================
  INDUSTRIAL MODERN TOUCHES
===============================================================*/
.card, .brand-card, .cta-banner, .feature-item {
  border-radius: 11px;
  box-shadow: 0 2px 11px 0 rgba(32,32,32,0.12);
  border: 1.3px solid #232C2C;
}
h1, h2, .btn-primary {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  letter-spacing: 0.04em;
}
h1, h2 {
  text-shadow: 1.5px 1.5px 0 #282c27, 0 2px 20px #1a1d1811;
}

hr {
  border: none;
  border-top: 2.5px solid var(--metal);
  margin: 32px 0;
}

/* Metallic accent bar for cards */
.card::before, .brand-card::before, .feature-item::before {
  content: '';
  display: block;
  width: 32px;
  height: 3px;
  background: linear-gradient(90deg, #C7B888 0%, #D3D3D6 100%);
  border-radius: 2.5px;
  margin-bottom: 14px;
  opacity: 0.37;
}

.brand-card::before { width: 47px; margin-bottom: 7px; }
@media (max-width:600px) {
  .card::before, .brand-card::before, .feature-item::before { width: 19px; }
}

/* Icon hover metallic shine (SVG fallback, real filter applied in SVG files for best results) */
.feature-item img, .brand-logos-list img, .contact-info img, .contact-details img {
  transition: filter 0.22s;
}
.feature-item:hover img, .brand-logos-list img:hover, .brand-logos-list img:focus {
  filter: grayscale(0.2) brightness(1.25) drop-shadow(0 3px 8px #DAB96488);
}

/*==============================================================
  UTILITY/HELPER CLASSES
===============================================================*/
.text-section { margin-bottom: 16px; }
.text-section p { margin-bottom: 11px; }
.client-focus { color: var(--secondary); font-weight: 600; }
.gratitude { color: var(--secondary); }
.cta-next { color: var(--accent); margin-top: 16px; }

/*==============================================================
  RESPONSIVE ADJUSTMENTS
===============================================================*/
@media (max-width: 1200px) {
  .container { max-width: 98vw; }
}
@media (max-width: 900px) {
  .container { max-width: 98vw; }
}
@media (max-width: 600px) {
  .content-wrapper { gap: 12px; }
  .brand-card, .feature-item, .card { padding-left: 13px; padding-right: 11px; }
}

/* Ensure all content sections/cards do not overlap, enforcing proper spacing */
section, .section, .card, .feature-item, .testimonial-card, .brand-card, .cta-banner {
  margin-bottom: 20px;
  min-width: 0;
}
section:last-child, .section:last-child, .card:last-child, .feature-item:last-child, .testimonial-card:last-child, .cta-banner:last-child {
  margin-bottom: 0;
}

/* Ensure focus styles on touch */
*:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

::-webkit-scrollbar {
  width: 8px;
  background: #202625;
}
::-webkit-scrollbar-thumb {
  background: #353931;
  border-radius: 6px;
}

/*==============================================================
  PRINTING OPTIMIZATION
===============================================================*/
@media print {
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal { display: none !important; }
  body { background: #fff; color: #181C1C; }
}
