/* -----------------------------------------------------
   CSS RESET & NORMALIZE (Industrial Modern Setup)
----------------------------------------------------- */
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,
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 { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; }
body {
  background: #1A1B1C;
  color: #E5E5E5;
  font-family: 'Roboto', Arial, sans-serif;
  line-height: 1.6;
  font-size: 16px;
  letter-spacing: 0.01em;
  min-height: 100vh;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: #F1B8A0;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #FFF;
  text-decoration: underline;
}
ul, ol {
  padding-left: 24px;
}
table { border-collapse: collapse; width: 100%; }
th, td { padding: 12px 14px; }
th { text-align: left; }

/* Typography (Industrial Modern) */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #FFF;
  letter-spacing: 0.015em;
}
h1 { font-size: 2.5rem; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 20px; }
h3 { font-size: 1.4rem; margin-bottom: 14px; }
h4 { font-size: 1.1rem; margin-bottom: 10px; }

p, li, dt, dd, th, td {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #DEE0E2;
}

strong, b { font-weight: 700; }

/* Containers and Spacing */
.container {
  width: 100%;
  max-width: 1190px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  width: 100%;
  margin: 0 auto;
  padding: 0;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #222325;
  border-radius: 16px;
  box-shadow: 0 2px 14px rgba(15,18,20,0.11);
}
section {
  margin-bottom: 60px;
  padding: 0;
  display: flex;
  flex-direction: column;
}

/******************************
  HEADER & NAVIGATION
******************************/
header {
  background: #1C1C1D;
  border-bottom: 1.5px solid #232323;
  position: relative;
  z-index: 999;
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
}
header img {
  height: 44px;
}
nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0.04em;
  font-size: 1.05rem;
  color: #CBCED1;
  padding: 6px 0;
  position: relative;
}
nav a:hover, nav a.active {
  color: #FFF;
}
nav a.active::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  height: 2.5px;
  width: 100%;
  background: #7B1F23;
  border-radius: 2px;
}
.button-primary {
  background: linear-gradient(90deg,#7B1F23 85%, #335C43 100%);
  color: #FFF;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  border: none;
  border-radius: 6px;
  padding: 10px 32px;
  box-shadow: 0 3px 16px rgba(78,36,30,0.10);
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  margin-left: 28px;
  display: inline-block;
}
.button-primary:hover,
.button-primary:focus {
  background: linear-gradient(90deg, #335C43 10%, #7B1F23 90%);
  color: #FFF;
  box-shadow: 0 5px 14px rgba(78,36,30,0.14), 0 1px 0.9px #7B1F23;
  outline: none;
}

/******************************
  MOBILE NAVIGATION
******************************/
.mobile-menu-toggle {
  display: none;
  background: #232323;
  color: #FFF;
  font-size: 2.1rem;
  padding: 8px 12px;
  border: none;
  border-radius: 8px;
  margin-left: 16px;
  cursor: pointer;
  box-shadow: 0 1px 6px rgba(31,30,30,0.14);
  transition: background 0.15s, color 0.15s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #7B1F23;
  color: #FFF;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(31,29,28,0.97);
  z-index: 1100;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translateX(-100vw);
  transition: transform 0.35s cubic-bezier(.74,0,.35,1);
  padding-top: 22px;
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  background: none;
  color: #FFF;
  font-size: 2.5rem;
  border: none;
  position: absolute;
  top: 18px;
  right: 26px;
  cursor: pointer;
  padding: 8px 12px;
  z-index: 1201;
  transition: color 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #E15450;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin: 72px 0 0 38px;
  width: 77vw;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  color: #EDEDED;
  padding: 8px 0;
  border-radius: 0;
  transition: color 0.13s;
  outline: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #7B1F23;
}

/* Hide desktop nav/button on mobile */
@media (max-width: 980px) {
  header .container nav,
  header .button-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 981px) {
  .mobile-menu,
  .mobile-menu-toggle {
    display: none !important;
  }
}

/**********************************
   HERO SECTION
***********************************/
.hero {
  background: linear-gradient(95deg, #202223 70%, #23282a 100%);
  padding: 65px 0 56px 0;
  border-bottom: 2px solid #16171A;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-height: 260px;
}
.hero h1 {
  font-size: 2.65rem;
  color: #FFF;
  line-height: 1.12;
  margin-bottom: 20px;
  letter-spacing: 0.04em;
  text-shadow: 0 6px 24px rgba(51,51,53,.08);
}
.hero .subheadline {
  font-size: 1.2rem;
  color: #D6D8DA;
  margin-bottom: 32px;
  font-family: 'Roboto', Arial, sans-serif;
}
.hero .button-primary {
  font-size: 1.09rem;
  margin-left: 0;
  border-radius: 6px;
  padding: 12px 32px;
}

@media (max-width: 560px) {
  .hero {
    padding: 45px 0 36px 0;
  }
  .hero .container {
    min-height: 140px;
    padding: 0 8px;
  }
  .hero h1 {
    font-size: 2rem; 
  }
}

/**********************************
  FLEX SPACING & LAYOUTS
***********************************/
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 36px 28px;
  margin-bottom: 0;
  justify-content: flex-start;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #23272A;
  border-radius: 11px;
  padding: 26px 20px 20px 20px;
  min-width: 210px;
  max-width: 300px;
  box-shadow: 0 2.5px 14px rgba(25,33,38,0.13),0 0.5px 2.5px #2B2E2F;
  gap: 15px;
  flex: 1 1 230px;
  position: relative;
  margin-bottom: 20px;
  border-left: 4px solid #7B1F23;
  transition: box-shadow 0.16s, border 0.16s;
}
.feature-item:hover {
  box-shadow: 0 7px 34px 0 rgba(35,40,44,0.19), 0 1px 1.5px #7B1F23;
  border-left-color: #335C43;
}
.features-grid img {
  height: 48px;
  width: 48px;
  margin-bottom: 2px;
  filter: grayscale(65%) brightness(1.05);
}

/* --- Section Spacing --- */
.section, .content-wrapper, .features-grid, .card-container, .card, .content-grid, .text-image-section, .testimonial-card, .feature-item {
  box-sizing: border-box;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #24272A;
  border-radius: 10px;
  box-shadow: 0 1.5px 10px rgba(18,21,22,0.11);
  margin-bottom: 20px;
  padding: 22px 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;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #FAFAFA;
  color: #232325;
  border-radius: 11px;
  box-shadow: 0 1.5px 14px rgba(21,23,24,0.13);
  padding: 20px;
  margin-bottom: 24px;
  min-width: 220px;
  max-width: 470px;
  border-left: 4px solid #335C43;
  position: relative;
  transition: box-shadow 0.15s, border 0.12s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 21px 0 rgba(35,40,44,0.13), 0 1.5px 1.5px #335C43;
  border-left-color: #7B1F23;
}
.cta {
  background: linear-gradient(95deg, #232325 85%, #2a2b30 100%);
  border-radius: 12px;
  box-shadow: 0 1.5px 11px rgba(33,38,45,0.10);
  padding: 48px 14px;
  margin-bottom: 0;
}
.cta h2 {
  color: #FFF;
  margin-bottom: 17px;
}
.cta p {
  margin-bottom: 26px;
}

/*********************************
  STEP LISTS, TABLES, FAQ, ETC
**********************************/
.step-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 29px 34px;
  align-items: flex-start;
  margin-bottom: 16px;
}
.step-list li {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #23282A;
  color: #E3E3E3;
  border-radius: 7px;
  padding: 15px 18px;
  min-width: 180px;
  font-weight: 500;
  font-size: 1.02rem;
  margin-bottom: 8px;
  box-shadow: 0 1.5px 8px rgba(21,23,24,0.09);
}
.step-list li img {
  width: 34px; height: 34px;
}

.price-table {
  background: #24272A;
  color: #FFF;
  border-radius: 8px;
  overflow: hidden;
  margin: 15px 0 27px 0;
  box-shadow: 0 1px 13px rgba(41,41,41,0.08);
}
.price-table th {
  background: #335C43;
  color: #FFF;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.12rem;
}
.price-table td {
  border-top: 1px solid #343638;
  font-size: 1rem;
}
.price-notes {
  font-size: 0.96rem;
  color: #C7CBCB;
}
.benefit-list, .brand-list, .model-list, .values-list {
  margin: 15px 0 0 0;
  padding-left: 22px;
  color: #D2D2D6;
}

/**********************************
  BRAND LOGOS & ROWS
***********************************/
.brand-logo-row {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  align-items: center;
  margin-bottom: 18px;
}
.brand-logo-row img {
  height: 49px;
  width: auto;
  filter: grayscale(75%) contrast(1.03);
  opacity: 0.88;
  transition: filter 0.18s, opacity 0.17s;
}
.brand-logo-row img:hover {
  filter: grayscale(12%) brightness(1.18);
  opacity: 1;
}

/*********************************
  TESTIMONIALS
**********************************/
.testimonial-list, .testimonial-carousel {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin: 0 0 16px 0;
  align-items: stretch;
  justify-content: flex-start;
}

.star-rating {
  display: flex;
  gap: 5px;
  align-items: center;
  margin-bottom: 3px;
}
.star-rating img {
  width: 23px; height: 23px;
}
.testimonial-card p {
  color: #232325 !important;
  font-weight: 500;
}
.testimonial-card span {
  font-size: 0.99rem;
  color: #7B1F23;
  font-style: italic;
  margin-top: -10px;
}

/*********************************
   TEAM, CONTACT, MAP, ETC
*********************************/
.team-list {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-bottom: 18px;
}
.team-bio {
  background: #252729;
  color: #F3F5F7;
  border-radius: 9px;
  padding: 18px 17px 16px 18px;
  min-width: 180px;
  box-shadow: 0 1.5px 9px rgba(18,21,22,0.10);
  flex: 1 1 210px;
  margin-bottom: 10px;
}
.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
  margin-bottom: 20px;
}
.address-block {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  background: #23282A;
  color: #F4F6F8;
  border-radius: 8px;
  padding: 14px 16px;
  gap: 15px;
  min-width: 190px;
  max-width: 340px;
  box-shadow: 0 1.5px 8px rgba(21,23,24,0.08);
}
.address-block img {
  width: 28px; height: 28px;
  margin-right: 5px;
}
.location-map {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #23282A;
  color: #F4F6F8;
  border-radius: 8px;
  padding: 22px 18px;
  margin-top: 13px;
  gap: 15px;
  max-width: 480px;
  box-shadow: 0 1.5px 9px rgba(18,21,22,0.10);
}
.location-map img {
  width: 52px; height: 52px;
  margin-bottom: 5px;
}
.location-map a {
  color: #335C43;
  font-weight: 600;
  margin-top: 10px;
}
.location-map a:hover { color: #7B1F23; }

/*********************************/
  FOOTER
**********************************/
footer {
  background: #171718;
  color: #B8BCC0;
  border-top: 1.5px solid #232323;
  padding: 42px 0 18px 0;
  font-size: 0.99rem;
  flex-shrink: 0;
}
.footer-menu {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 22px;
}
.footer-menu a {
  color: #B8BCC0;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
}
.footer-menu a:hover, .footer-menu a:focus { color: #F1B8A0; }
.footer-info {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  justify-content: center;
  margin-bottom: 16px;
}
.footer-info img {
  height: 37px;
  opacity: 0.95;
}
.legal-disclaimer {
  text-align: center;
  font-size: 0.94rem;
  color: #8E9296;
  margin-top: 10px;
}

/*************************
   FAQ LAYOUT
**************************/
.faq-list {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 18px;
}
.faq-item {
  background: #23272A;
  border-radius: 9px;
  box-shadow: 0 1.5px 9px rgba(15,18,20,0.11);
  flex: 1 1 330px;
  padding: 21px 18px 14px 20px;
  margin-bottom: 12px;
  color: #EDEDED;
}
.faq-item h3 {
  color: #FFF;
  margin-bottom: 10px;
  font-size: 1.1rem;
}
.faq-item p {
  color: #D0D2D3;
  font-size: 1rem;
}

/*********************************
   COOKIE CONSENT BANNER & MODAL
**********************************/
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 2300;
  background: #232325;
  color: #EEE;
  padding: 20px 26px 22px 26px;
  border-top: 2px solid #335C43;
  box-shadow: 0 -2px 18px rgba(41,41,41,0.13);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 30px;
  justify-content: space-between;
  animation: cookiebanner-slideup 0.44s cubic-bezier(.77,0,.18,1);
}
@keyframes cookiebanner-slideup {
  from { transform: translateY(100px); opacity: 0; }
  to   { transform: translateY(0);     opacity: 1; }
}
.cookie-banner__buttons {
  display: flex;
  gap: 13px;
  flex-wrap: wrap;
}
.cookie-banner button,
.cookie-banner .button-primary {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.96rem;
  padding: 7px 18px;
  border-radius: 7px;
  border: none;
  background: #335C43;
  color: #fff;
  margin-left: 0;
  transition: background 0.18s, color 0.18s;
  cursor: pointer;
}
.cookie-banner button.accept {
  background: #335C43;
}
.cookie-banner button.reject {
  background: #7B1F23;
}
.cookie-banner button.settings {
  background: #313537;
  color: #FFF;
}
.cookie-banner button:hover, .cookie-banner .button-primary:hover {
  filter: brightness(1.08);
  background: #246F3A;
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  z-index: 2600;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%) scale(0.97);
  min-width: 320px;
  max-width: 92vw;
  background: #232325;
  color: #FFF;
  border-radius: 13px;
  box-shadow: 0 6px 36px 6px rgba(35,35,42,0.19), 0 1.5px 1.5px #7B1F23;
  padding: 44px 32px 30px 32px;
  animation: cookiemodal-fadein 0.23s cubic-bezier(.47,0,.59,1);
  display: flex;
  flex-direction: column;
  gap: 22px;
}
@keyframes cookiemodal-fadein {
  from { opacity: 0; transform: translate(-50%,-50%) scale(0.85); }
  to   { opacity: 1; transform: translate(-50%,-50%) scale(0.97); }
}
.cookie-modal__close {
  position: absolute;
  top: 14px;
  right: 24px;
  font-size: 1.7rem;
  background: none;
  color: #BBB;
  border: none;
  cursor: pointer;
  z-index: 1;
  transition: color 0.2s;
}
.cookie-modal__close:hover {
  color: #7B1F23;
}
.cookie-modal__header {
  margin-bottom: 6px;
}
.cookie-modal__categories {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 13px;
}
.cookie-modal__category {
  display: flex;
  align-items: center;
  gap: 13px;
  background: #181819;
  border-radius: 6px;
  padding: 12px 16px;
}
.cookie-modal__category label {
  color: #FFF;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.03rem;
  font-weight: 600;
  flex: 1;
  cursor: pointer;
}
.cookie-modal__category input[type="checkbox"] {
  accent-color: #335C43;
  width: 23px; height: 23px;
}
.cookie-modal__category input[disabled] {
  opacity: 0.37;
  cursor: not-allowed;
}

.cookie-modal__actions {
  display: flex;
  justify-content: flex-end;
  gap: 17px;
}
.cookie-modal button,
.cookie-modal .button-primary {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.02rem;
  padding: 7px 18px;
  border-radius: 7px;
  border: none;
  background: #335C43;
  color: #fff;
  margin-left: 0;
  transition: background 0.18s;
  cursor: pointer;
}
.cookie-modal button.accept {
  background: #335C43;
}
.cookie-modal button.reject {
  background: #7B1F23;
}
.cookie-modal button.settings {
  background: #313537;
  color: #FFF;
}
.cookie-modal button:hover, .cookie-modal .button-primary:hover {
  filter: brightness(1.08);
  background: #246F3A;
}

/*********************************
   RESPONSIVE DESIGN
**********************************/
@media (max-width: 980px) {
  .container,
  .footer-info,
  .brand-logo-row,
  .team-list,
  .testimonial-list,
  .features-grid,
  .faq-list,
  .step-list,
  .contact-details {
    flex-direction: column !important;
    gap: 18px !important;
    align-items: stretch !important;
  }
  header .container {
    flex-direction: row;
    gap: 12px;
  }
  .brand-logo-row img, .features-grid img {
    margin-bottom: 0;
    margin-top: 5px;
  }
}
@media (max-width: 800px) {
  .container {
    padding: 0 8px;
  }
  .shortcut-bar, .section, .pricing .section, .cta {
    padding: 22px 6px;
    margin-bottom: 28px;
  }
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.3rem; }
}
@media (max-width: 660px) {
  .cta, .section {
    border-radius: 6px;
    padding: 14px 2px;
  }
  .feature-item, .card, .team-bio, .testimonial-card, .faq-item {
    min-width: 0;
    max-width: unset;
  }
  .testimonial-card, .feature-item, .team-bio, .card {
    padding: 13px 8px;
  }
  .testimonial-list, .features-grid, .faq-list, .step-list {
    gap: 11px !important;
  }
  .content-grid, .brand-logo-row, .footer-info {
    gap: 8px !important;
    flex-direction: column !important;
    align-items: flex-start !important;
  }
}
@media (max-width: 480px) {
  .container {
    padding: 0 2px;
    max-width: 97vw;
  }
  .button-primary, .cookie-banner .button-primary {
    width: 100%;
    min-width: 0;
    margin-left: 0;
    padding: 9px 3px;
    font-size: 1rem;
  }
  .testimonial-card, .feature-item, .card {
    box-shadow: none;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 8px 22px 8px;
  }
  .cookie-modal {
    min-width: unset;
    max-width: 99vw;
    padding: 24px 5vw 21px 5vw;
  }
}

/*********************************
  SPECIAL UTILITIES & EFFECTS
*********************************/
::-webkit-scrollbar {
  background: #222;
  width: 11px;
}
::-webkit-scrollbar-thumb {
  background: #313336;
  border-radius: 8px;
}
::-webkit-scrollbar-thumb:hover {
  background: #7B1F23;
}

/* Selection highlight for industrial look */
::selection {
  background: #7B1F23;
  color: #fff;
}

/* Animations for micro-interactions */
.button-primary,
.cookie-banner button,
.cookie-modal button {
  transition: background 0.19s, color 0.19s, box-shadow 0.16s;
}
.feature-item,
.testimonial-card,
.team-bio,
.card,
.faq-item {
  transition: box-shadow 0.20s, border 0.21s;
}

/* Brand Accent Text Utility */
.text-accent { color: #7B1F23; }

/* Hide outline for click, retain for keyboard */
:focus:not(:focus-visible) { outline: none; }
:focus-visible {
  outline: 2px solid #7B1F23;
}

/*********************************
  BRAND FONT IMPORT (Montserrat + Roboto)
*********************************/
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,600,400&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');
