/* --- CSS RESET & BASE --- */
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,
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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #181A1B;
  color: #EAEAEA;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: #F2AE72;
  text-decoration: none;
  transition: color .18s linear;
}
a:hover, a:focus {
  color: #FFF;
  text-decoration: underline;
  outline: none;
}
ul, ol {
  list-style: disc inside;
  margin-bottom: 1em;
}
table {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 1.5em;
}
th, td {
  padding: 12px 16px;
  border-bottom: 1px solid #2A2D32;
  font-size: 16px;
  font-family: 'Roboto', Arial, sans-serif;
}
th {
  background: #23252A;
  color: #F2AE72;
  text-align: left;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #FFF;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.5rem; line-height: 1.14; }
h2 { font-size: 2rem; line-height: 1.16; }
h3 { font-size: 1.375rem; line-height: 1.18; }
h4 { font-size: 1.125rem; }
p, ul, ol, li {
  font-size: 1rem;
  color: #EAEAEA;
}
blockquote {
  color: #23272F;
  background: #ECECEC;
  font-style: italic;
  border-left: 4px solid #F2AE72;
  margin: 16px 0;
  padding: 12px 24px 12px 20px;
  border-radius: 6px;
  font-size: 1.125rem;
  font-family: 'Roboto', Arial, sans-serif;
}
strong { font-weight: bold; }

/* --- CONTAINER & GLOBAL LAYOUT --- */
.container {
  width: 100%;
  max-width: 1216px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #202326;
  border-radius: 18px;
  box-shadow: 0 2px 32px 0 rgba(0,0,0,0.18), 0 1.5px 8px 0 #222e3e33;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

/* --- HEADER --- */
header {
  background: #21242A;
  border-bottom: 2.5px solid #31363f;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  position: sticky;
  top: 0;
  z-index: 100;
}
header .container {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 0 20px;
}
header img {
  height: 52px;
  width: auto;
  filter: grayscale(30%) contrast(130%);
}
header nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
header nav a {
  color: #EAEAEA;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 6px 10px;
  border-radius: 4px;
  position: relative;
  transition: background 0.18s linear, color 0.18s linear;
}
header nav a:hover,
header nav a.active {
  background: #F2AE72;
  color: #23262E;
}
.cta-btn {
  background: #F2AE72;
  color: #23262E;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 12px 28px;
  border: none;
  border-radius: 6px;
  box-shadow: 0 2px 12px 0 rgba(70,67,62,0.08);
  cursor: pointer;
  transition: background 0.2s cubic-bezier(.42,0,.58,1), color 0.2s cubic-bezier(.42,0,.58,1), box-shadow 0.2s cubic-bezier(.42,0,.58,1);
  display: inline-block;
}
.cta-btn:hover, .cta-btn:focus {
  background: #FFD9B3;
  color: #14161B;
  box-shadow: 0 4px 24px 0 #f2ae7260;
  outline: none;
}

/* --- HERO SECTION --- */
.hero {
  background: #25272d url('../assets/hero-industrial-bg.jpg') center center/cover no-repeat;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0 0 32px 32px;
  margin-bottom: 60px;
  box-shadow: 0 6px 22px #10142044;
  position: relative;
}
.hero .container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
  text-align: left;
}
.hero .content-wrapper {
  max-width: 620px;
  align-items: flex-start;
  gap: 24px;
}
.hero h1 {
  color: #F2AE72;
  font-size: 2.7rem;
  letter-spacing: 1px;
  text-shadow: 0 3px 32px #000d1c84;
  line-height: 1.1;
}
.hero p {
  margin-bottom: 12px;
  font-size: 1.18rem;
  color: #ECD2B7;
}
.hero .cta-btn {
  margin-top: 16px;
}

/* --- FLEX UTILITY --- */
.feature_grid, .card-container, .card-grid, .content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.card-container {
  margin-bottom: 30px;
}
.card {
  background: #23262E;
  margin-bottom: 20px;
  position: relative;
  border-radius: 14px;
  box-shadow: 0 2px 10px #13162022;
  padding: 28px 20px 20px 20px;
  transition: transform .17s cubic-bezier(.48,.08,.39,1),box-shadow .18s linear;
}
.card:hover {
  transform: translateY(-8px) scale(1.025);
  box-shadow: 0 8px 36px 0 #23293152, 0 2px 8px #24282F44;
}

/* --- FEATURE GRID --- */
.feature_grid {
  gap: 24px;
  width: 100%;
  margin-top: 18px;
}
.feature_grid > div {
  flex: 1 1 240px;
  min-width: 200px;
  max-width: 320px;
  padding: 22px 16px 20px 16px;
  background: #202226;
  border-radius: 12px;
  box-shadow: 0 2px 18px #1a202838;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  border: 1.5px solid #333a46;
  transition: box-shadow .22s cubic-bezier(.48,.08,.39,1);
}
.feature_grid > div img {
  width: 42px;
  height: 42px;
  filter: grayscale(55%) brightness(1.08) drop-shadow(0 6px 22px #1a1c2070);
}
.feature_grid > div h3 {
  color: #F2AE72;
  font-size: 1.2rem;
  margin-bottom: 6px;
}
.feature_grid > div p {
  font-size: .98rem;
  color: #EAEAEA;
}
.feature_grid > div:hover {
  box-shadow: 0 8px 24px #23293265;
  border-color: #F2AE72;
}

/* --- TESTIMONIALS --- */
.testimonial-card {
  background: #F9F9F9;
  color: #242628;
  border-radius: 13px;
  box-shadow: 0 2px 28px #2329311a, 0 1px 5px #C7B29925;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  min-height: 110px;
  flex: 1 1 320px;
  transition: box-shadow .18s;
}
.testimonial-card img {
  min-width: 34px;
  width: 34px;
  height: 34px;
  filter: grayscale(70%) brightness(1.4);
  margin-right: 8px;
}
.testimonial-card blockquote {
  background: none;
  color: #23272F;
  border: none;
  padding: 0 4px;
  font-size: 1.13rem;
  margin: 0;
}
.testimonial-card footer {
  margin-left: auto;
  font-family: 'Roboto', Arial, sans-serif;
  color: #274690;
  font-size: 0.99rem;
  letter-spacing: .01em;
}
.testimonial-card footer span {
  color: #F2AE72;
  font-weight: bold;
  margin-left: 3px;
  letter-spacing: .07em;
}

/* --- TEXT-IMAGE SECTION --- */
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.text-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}
.success-message {
  background: #E1FFD7;
  color: #1c3225;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  border-left: 4px solid #25b04b;
  border-radius: 5px;
  padding: 10px 18px;
  margin: 12px 0;
}

/* --- CARDS & FEATURE LISTS --- */
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* --- BUTTONS --- */
button,
input[type=button],
input[type=submit] {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  padding: 10px 24px;
  background: #F2AE72;
  color: #23262E;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background .2s cubic-bezier(.42,0,.58,1), color 0.18s linear, box-shadow .18s;
}
button:hover, button:focus,
input[type=button]:hover, input[type=submit]:hover, input[type=button]:focus, input[type=submit]:focus {
  background: #FFD9B3;
  color: #142141;
  box-shadow: 0 4px 24px #f2ae7260;
}

/* --- FOOTER --- */
footer {
  background: #21242A;
  color: #C8C8C8;
  padding: 35px 0 0 0;
  border-top: 1px solid #23262F;
  margin-top: 60px;
  font-size: 1rem;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: flex-start;
  justify-content: space-between;
}
footer nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
footer nav a {
  color: #F2AE72;
  font-size: .97rem;
  opacity: .95;
  transition: color .18s;
  letter-spacing: .05em;
}
footer nav a:hover {
  color: #fff;
}
footer div:last-child {
  font-size: .99rem;
  color: #CCD4E0;
}

/* --- TABLES --- */
table {
  background: #181A1B;
  border-radius: 8px;
  box-shadow: 0 1px 8px #23293133;
  overflow: hidden;
}
th {
  background: #22243B;
  color: #F2AE72;
  font-size: 1.12rem;
}
td {
  background: #1E2024;
  color: #DBDBDB;
  border-bottom: 1px solid #32353C;
}
tr:last-child td {
  border-bottom: none;
}

/* --- FAQ (details/summary) --- */
details {
  background: #23252A;
  color: #F2F2F2;
  border-radius: 8px;
  margin-bottom: 16px;
  padding: 18px 18px 8px 18px;
  box-shadow: 0 1px 10px #191a1a1a;
  border-left: 3.5px solid #F2AE72;
}
details summary {
  cursor: pointer;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #FFD9B3;
  margin-bottom: 6px;
  outline: none;
  transition: color 0.17s;
}
details[open] summary {
  color: #F2AE72;
}
details p {
  font-size: .98rem;
  color: #ddd;
}

/* --- MOBILE NAVIGATION --- */
.mobile-menu-toggle {
  display: none;
}
@media (max-width: 980px) {
  header .container nav {
    display: none;
  }
  .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
    position: fixed;
    top: 22px;
    right: 22px;
    z-index: 210;
    background: #23262E;
    color: #F2AE72;
    font-size: 2rem;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 2px solid #F2AE72;
    box-shadow: 0 4px 10px #1a1c20aa;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .15s, color .15s, border .15s;
  }
  .mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
    background: #F2AE72;
    color: #23262E;
    border-color: #FFD9B3;
    outline: none;
  }
  .mobile-menu {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0;
    width: 100vw;
    height: 100vh;
    background: #202225ee;
    z-index: 3000;
    transition: transform 0.34s cubic-bezier(.52,.04,.37,1.09), opacity .2s;
    transform: translateX(-100vw);
    opacity: 0;
    pointer-events: none;
  }
  .mobile-menu.open {
    transform: translateX(0);
    opacity: 1;
    pointer-events: all;
  }
  .mobile-menu-close {
    background: #F2AE72;
    color: #191B24;
    border: none;
    font-size: 2.1rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    position: absolute;
    top: 20px;
    right: 24px;
    z-index: 3200;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .16s, color .16s;
  }
  .mobile-menu-close:hover, .mobile-menu-close:focus {
    background: #23262E;
    color: #F2AE72;
    outline: none;
  }
  .mobile-nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    margin-top: 108px;
    padding: 36px 34px 24px 44px;
  }
  .mobile-nav a {
    color: #F2AE72;
    font-size: 1.23rem;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 8px 0;
    border-radius: 4px;
    width: 100%;
    display: block;
    transition: background .15s, color .12s;
  }
  .mobile-nav a:hover, .mobile-nav a:focus {
    background: #F2AE72;
    color: #131826;
    outline: none;
  }
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5000;
  background: #24272c;
  color: #EAEAEA;
  box-shadow: 0 -2px 32px #2329313a;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 24px 30px 20px 30px;
  border-top: 3px solid #31363f;
  font-family: 'Montserrat', Arial, sans-serif;
  animation: cookieSlideIn .4s cubic-bezier(.42,0,.58,1);
}
@keyframes cookieSlideIn {
  from { transform: translateY(120%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner__text {
  margin-bottom: 6px;
  font-size: 1rem;
}
.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 6px;
}
.cookie-banner__btn, .cookie-banner [data-cookie-settings] {
  background: #F2AE72;
  color: #23262E;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border: none;
  border-radius: 5px;
  padding: 9px 18px;
  cursor: pointer;
  margin-right: 6px;
  box-shadow: 0 1.5px 7px #23293117;
  transition: background .18s, color .14s;
}
.cookie-banner__btn:hover, .cookie-banner__btn:focus, .cookie-banner [data-cookie-settings]:hover, .cookie-banner [data-cookie-settings]:focus {
  background: #FFD9B3;
  color: #13181e;
  outline: none;
}

@media (max-width: 600px) {
  .cookie-banner {
    padding: 14px 8px 16px 8px;
    font-size: .99rem;
  }
  .cookie-banner__actions {
    gap: 10px;
  }
}

/* --- COOKIE SETTINGS MODAL --- */
.cookie-modal {
  position: fixed;
  z-index: 7000;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(24,26,27,.89);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity .24s cubic-bezier(.52,0,.4,1.2);
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal__inner {
  background: #23252A;
  color: #EAEAEA;
  border-radius: 18px;
  width: 94vw;
  max-width: 410px;
  box-shadow: 0 4px 34px #2329318c, 0 1.5px 8px #232e3c30;
  padding: 34px 24px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: modalPopIn .22s cubic-bezier(.62,0,.48,1.2);
}
@keyframes modalPopIn {
  0% { opacity: 0; transform: scale(0.89) translateY(14px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}
.cookie-modal__close {
  background: #F2AE72;
  color: #191B24;
  border: none;
  font-size: 1.35rem;
  width: 36px; height: 36px;
  border-radius: 50%;
  position: absolute;
  top: 17px; right: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .14s, color .11s;
}
.cookie-modal__close:hover, .cookie-modal__close:focus {
  background: #23262E;
  color: #F2AE72;
  outline: none;
}
.cookie-modal__title {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.12rem;
  color: #FFD9B3;
  margin-bottom: 5px;
}
.cookie-modal__list {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.cookie-modal__option {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1rem;
  color: #EAEAEA;
  background: #22242e;
  border-radius: 6px;
  padding: 8px 14px 8px 10px;
}
.cookie-modal__option label {
  cursor: pointer;
}
.cookie-modal__option input[type='checkbox'], .cookie-modal__option input[type='radio'] {
  accent-color: #F2AE72;
  width: 18px;
  height: 18px;
  margin-right: 7px;
}
.cookie-modal__option .is-essential {
  color: #F2AE72;
  font-size: .95rem;
  font-weight: 700;
  margin-left: auto;
}
.cookie-modal__actions {
  display: flex;
  gap: 18px;
  margin-top: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cookie-modal__actions button {
  background: #F2AE72;
  color: #23262E;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 9px 18px;
  border-radius: 6px;
  border: none;
  font-size: 1rem;
}
.cookie-modal__actions button:hover, .cookie-modal__actions button:focus {
  background: #FFD9B3;
  color: #191B24;
  outline: none;
}

/* --- RESPONSIVE & FLEX LAYOUTS --- */
@media (max-width: 980px) {
  .container {
    padding: 0 10px;
  }
  .section {
    padding: 30px 10px;
    margin-bottom: 36px;
  }
  .feature_grid, .card-container, .card-grid, .content-grid {
    gap: 16px;
  }
  .content-wrapper {
    gap: 13px;
  }
}
@media (max-width: 768px) {
  .hero {
    min-height: 210px;
    border-radius: 0 0 20px 20px;
    margin-bottom: 36px;
  }
  .hero h1 {
    font-size: 2rem;
    text-align: left;
  }
  .feature_grid > div {
    flex: 1 1 100%;
    max-width: 100%;
    min-width: 0;
  }
  .testimonial-card,
  .feature_grid,
  .content-grid,
  .card-container, .card-grid {
    flex-direction: column;
    gap: 16px;
  }
  .section, .card {
    margin-bottom: 20px;
    padding: 18px 6px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
  }
}
@media (max-width: 520px) {
  h1 { font-size: 1.37rem; }
  h2 { font-size: 1.17rem; }
  .container { padding: 0 4px; }
}

/* --- ANIMATIONS & MICROINTERACTIONS --- */
.card, .feature_grid > div, .testimonial-card, .section, .cta-btn, button, .mobile-menu-toggle, .mobile-menu-close {
  transition: box-shadow .19s cubic-bezier(.55,.07,.39,1), background .18s, color .12s, transform .16s;
}
.card:hover, .feature_grid > div:hover {
  box-shadow: 0 8px 46px #101a2730, 0 3px 12px #23293130;
}
.cta-btn:active, button:active {
  transform: scale(0.96);
}
.mobile-menu, .cookie-modal {
  will-change: transform, opacity;
}

/* --- FORM CONTROLS --- */
input,
select,
textarea {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  background: #202226;
  color: #EAEAEA;
  border: 1.5px solid #333a46;
  border-radius: 6px;
  padding: 10px 12px;
  box-sizing: border-box;
  margin-bottom: 16px;
  width: 100%;
  outline: none;
  transition: border-color .17s, box-shadow .14s;
}
input:focus, textarea:focus, select:focus {
  border-color: #F2AE72;
  box-shadow: 0 2px 12px #f2ae7240;
}

::selection {
  background: #F2AE72;
  color: #131826;
}

/* --- SCROLLBAR (Chromium) --- */
::-webkit-scrollbar {
  width: 9px;
  background: #1E2024;
}
::-webkit-scrollbar-thumb {
  background: #2d3344;
  border-radius: 7px;
}
::-webkit-scrollbar-thumb:hover { background: #F2AE72; }

/* --- UTILITY CLASSES --- */
.mb-20 { margin-bottom: 20px; }
.mb-32 { margin-bottom: 32px; }
.mt-32 { margin-top: 32px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }

/* --- INDUSTRIAL MODERN METALLIC EFFECTS --- */
.card, .feature_grid > div {
  border: 1.5px solid #333a46;
  background-image: linear-gradient(120deg, #22252b 70%, #232323 100%);
}
.card::before, .feature_grid > div::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; height: 8px;
  border-radius: 13px 13px 0 0;
  background: linear-gradient(90deg, #F2AE72cc 2%, #27469000 90%);
  opacity: .11;
  pointer-events: none;
  z-index: 2;
}
.card {
  overflow: hidden;
}

@media (max-width: 410px) {
  .mobile-nav {
    padding: 14px 8px;
    gap: 16px;
  }
}

/* --- PRINT OPTIMIZATION --- */
@media print { 
  header, nav, .mobile-menu, .mobile-menu-toggle, .cta-btn, .cookie-banner, .cookie-modal, footer {display:none!important;} 
  body {background: #fff;color:#191b22;}
}
