/* 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, 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;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  min-height: 100vh;
  background: #191e23;
  color: #F3F2EF;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  background-color: #191e23;
  position: relative;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: #B79B64;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #F3F2EF;
  text-decoration: underline;
}
ul, ol {
  margin-left: 20px;
  margin-bottom: 16px;
  padding-left: 20px;
}
li {
  margin-bottom: 8px;
}

/* BRAND FONTS */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700&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: #F3F2EF;
  font-weight: 700;
  letter-spacing: 1px;
}
h1 { font-size: 2.5rem; margin-bottom: 20px; }
h2 { font-size: 2rem; margin-bottom: 16px; }
h3 { font-size: 1.25rem; margin-bottom: 12px; }
h4 { font-size: 1.1rem; }
p, li {
  color: #F3F2EF;
  font-size: 1rem;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  line-height: 1.7;
}
strong {
  color: #B79B64;
}

/* UTILITY FLEXBOX LAYOUTS */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #1f2329;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(20,21,22, 0.16), 0 1.5px 0 #222311;
  position: relative;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background-color: #22262c;
  box-shadow: 0 4px 24px rgba(0,0,0,0.13);
  border: 1.5px solid #2A323C;
  border-radius: 18px;
  margin-bottom: 20px;
  position: relative;
  padding: 24px 20px;
  transition: box-shadow .2s, border-color .2s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 8px 24px rgba(39,49,56,0.25);
  border-color: #B79B64;
  z-index: 2;
}
.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;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #F3F2EF;
  color: #22262C;
  border-radius: 14px;
  box-shadow: 0 2px 16px rgba(30,32,35,0.14);
  margin-bottom: 20px;
  border-left: 6px solid #B79B64;
}
.testimonial-card p {
  color: #22262C;
  font-size: 1.1rem;
}
.testimonial-card strong {
  color: #25364A;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* HEADER & NAVIGATION (DESKTOP) */
header {
  width: 100%;
  background: #22262C;
  box-shadow: 0 3px 12px rgba(37,54,74,0.10);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px 18px 20px;
}
header img {
  height: 48px;
  margin-right: 18px;
}
header nav {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-right: 18px;
}
header nav a {
  color: #F3F2EF;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: 500;
  padding: 6px 0 5px 0;
  position: relative;
  transition: color .2s;
}
header nav a:after {
  content: '';
  display: block;
  width: 0;
  border-bottom: 2.5px solid #B79B64;
  transition: width .18s;
  margin-top: 2px;
}
header nav a:hover:after, header nav a:focus:after {
  width: 100%;
}
.cta-btn {
  display: flex;
  align-items: center;
  background: #B79B64;
  color: #191e23;
  padding: 12px 38px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  border: none;
  border-radius: 8px;
  letter-spacing: .7px;
  box-shadow: 0 1.5px 10px rgba(183,155,100,0.09);
  text-transform: uppercase;
  cursor: pointer;
  outline: none;
  transition: background .18s, color .18s, transform .18s, box-shadow 0.18s;
  margin-left: 22px;
  text-decoration: none;
}
.cta-btn:hover, .cta-btn:focus {
  background: #FFD68C;
  color: #191e23;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 4px 18px #B79B6420;
}

/* MOBILE NAVIGATION */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 24px;
  right: 26px;
  z-index: 1400;
  background: #191e23;
  color: #B79B64;
  border: none;
  font-size: 2rem;
  width: 44px;
  height: 44px;
  border-radius: 7px;
  transition: background .2s;
  cursor: pointer;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #25364A;
  color: #F3F2EF;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right:0; bottom:0;
  width: 100vw;
  height: 100vh;
  background: #22272e;
  z-index: 1999;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.77,0,.18,1);
  opacity: 1;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
  box-shadow: 0 2px 32px 0 rgba(0,0,0,.35);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 24px 24px 0 0;
  font-size: 2.1rem;
  color: #B79B64;
  background: none;
  border: none;
  cursor: pointer;
  transition: color .18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #FFD68C;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 40px;
  gap: 24px;
  padding: 0 40px;
  width: 100%;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.25rem;
  color: #F3F2EF;
  font-weight: 600;
  padding: 12px 0;
  width: 100%;
  border-bottom: 1.5px solid #343944;
  transition: background 0.14s, color 0.2s;
  border-radius: 7px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #B79B64;
  color: #191e23;
}

/* MAIN & FLEX LAYOUTS */
main {
  margin: 0 0 60px 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: start;
}
.feature-grid > div {
  background: #232a31;
  border-radius: 13px;
  padding: 24px 18px 18px 18px;
  box-shadow: 0 4px 18px rgba(37,54,74,0.12);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  max-width: 340px;
  border-left: 4px solid #B79B64;
  transition: box-shadow .18s;
}
.feature-grid > div:hover {
  box-shadow: 0 8px 32px rgba(37,54,74,0.19);
}
.feature-grid img {
  height: 40px;
  margin-bottom: 15px;
}
.step-timeline {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.step-timeline > div {
  background: #232a31;
  border-radius: 10px;
  padding: 20px;
  color: #F3F2EF;
  min-width: 180px;
  max-width: 220px;
  flex: 1 1 180px;
  box-shadow: 0 2px 12px 0 rgba(37,54,74,0.13);
  margin-bottom: 20px;
}
.section ul li a {
  color: #B79B64;
  transition: color .16s,text-decoration-color .16s;
}
.section ul li a:hover,
.section ul li a:focus {
  color: #FFD68C;
  text-decoration: underline;
}
.text-section {
  margin-bottom: 20px;
}

/* FOOTER */
footer {
  background: #232a31;
  color: #F3F2EF;
  padding: 0;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
  justify-content: space-between;
  padding: 40px 20px;
}
.footer-links nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links nav a {
  color: #F3F2EF;
  font-weight: 500;
  margin-bottom: 5px;
  font-size: 0.96rem;
}
.footer-links nav a:hover, .footer-links nav a:focus {
  color: #B79B64;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.99rem;
}
.footer-contact img {
  height: 17px;
  width: 17px;
  margin-right: 7px;
  vertical-align: middle;
}
.footer-contact div {
  display: flex;
  align-items: center;
  gap: 7px;
}
.footer-brand {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: bold;
  display: flex;
  flex-direction: column;
  gap: 5px;
  color: #B79B64;
  font-size: 1rem;
}
.footer-brand > div {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: #F3F2EF;
  font-weight: 400;
}

/* COOKIES BANNER */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #191e23cf;
  color: #F3F2EF;
  z-index: 2500;
  display: flex;
  align-items: center;
  gap: 28px;
  justify-content: space-between;
  padding: 22px 28px;
  box-shadow: 0 -1.5px 18px #13182240;
  font-size: 1rem;
  transition: transform .3s;
}
#cookie-banner.hide {
  transform: translateY(120%);
  pointer-events: none;
  opacity: 0;
}
#cookie-banner-message {
  flex: 1;
  color: #F3F2EF;
}
#cookie-banner-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.cookie-btn {
  padding: 10px 22px;
  border: none;
  border-radius: 7px;
  background: #B79B64;
  color: #191e23;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
  cursor: pointer;
  transition: background .16s, color .14s, transform .14s;
}
.cookie-btn:active { transform: scale(.98); }
.cookie-btn:hover, .cookie-btn:focus {
  background: #FFD68C;
}
.cookie-btn.secondary {
  background: #22262C;
  color: #F3F2EF;
  border: 1.4px solid #B79B64;
}
.cookie-btn.secondary:hover, .cookie-btn.secondary:focus {
  background: #232a31;
  color: #FFD68C;
}

/* COOKIES PREFERENCES MODAL */
#cookie-modal {
  position: fixed;
  left: 0; right:0; top:0; bottom:0;
  width: 100vw;
  height: 100vh;
  background: rgba(30,33,38,0.88);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2550;
  transition: opacity .18s;
}
#cookie-modal.open {
  display: flex;
}
#cookie-modal .cookie-modal-content {
  background: #25364A;
  color: #F3F2EF;
  border-radius: 13px;
  padding: 32px 26px 28px 26px;
  min-width: 320px;
  max-width: 98vw;
  box-shadow: 0 8px 60px rgba(23,32,37,0.29);
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  animation: fadeInModal .27s cubic-bezier(.32,0,.44,1);
}
@keyframes fadeInModal { from { transform:scale(.94); opacity:.4 } to {transform:scale(1); opacity:1;} }
.cookie-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#cookie-modal-close {
  font-size: 1.7rem;
  background: none;
  border: none;
  color: #B79B64;
  cursor: pointer;
  transition: color .14s;
}
#cookie-modal-close:hover { color: #FFD68C; }
.cookie-category {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 15px;
}
.cookie-category input[type="checkbox"] {
  accent-color: #B79B64;
  width: 22px; height: 22px;
}
.cookie-category label {
  font-size: 1.04rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.cookie-category .cookie-essential {
  color: #FFD68C;
  font-size: 0.97rem;
  padding-left: 6px;
}

/* FORMATTING AND COMPONENTS */
.text-section {
  margin-bottom: 20px;
}
.text-section h2 {
  margin-bottom: 10px;
}
.section ul li {
  margin-bottom: 8px;
  font-size: 1rem;
  color: #F3F2EF;
}
.section ul li strong {
  color: #FFD68C;
}

/* SPACING FOR TIGHT FLEX ITEMS */
.card, .feature-grid > div, .step-timeline > div, .testimonial-card {
  margin-right: 0;
  margin-bottom: 20px;
}

/* STATUS, BADGE, METALLIC EFFECT */
.status-badge, .badge {
  background: linear-gradient(90deg, #655c46 30%, #B79B64 70%);
  color: #191e23;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: .91rem;
  padding: 5px 16px;
  border-radius: 13px;
  display: inline-block;
  margin-bottom: 14px;
  letter-spacing: 0.4px;
  box-shadow: 0 1.5px 8px rgba(183,155,100,0.12);
}

/* MICRO-INTERACTIONS */
.card,
.feature-grid > div,
.cta-btn,
.cookie-btn,
.mobile-menu {
  transition: box-shadow .18s, border-color .18s, transform .14s, background .16s, color .18s;
}
.card:active,
.feature-grid > div:active {
  transform: scale(.98);
}


/* RESPONSIVE LAYOUTS */
@media (max-width: 1100px) {
  .footer-contact, .footer-brand {font-size: 0.88rem;}
}
@media (max-width: 900px) {
  header .container {flex-direction: column; align-items: flex-start;}
  header nav {margin: 12px 0;}
  footer .container {
    flex-direction: column;
    gap: 22px;
    align-items: flex-start;
    padding: 40px 8px;
  }
}
@media (max-width: 768px) {
  header nav, .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  header {
    padding: 0 0 0 0;
  }
  .section {
    padding: 26px 8px;
    margin-bottom: 40px;
  }
  .card-container,
  .content-grid,
  .footer-links nav {
    flex-direction: column;
    gap: 14px;
  }
  .step-timeline, .feature-grid {
    flex-direction: column;
    gap: 16px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
  }
  .footer-contact, .footer-brand {
    font-size: 0.97rem;
  }
}
@media (max-width: 540px) {
  body { font-size: 15px; }
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.18rem; }
  .container { padding: 0 5px; }
  #cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 18px 10px;
    font-size: 0.97rem;
  }
  .card, .feature-grid > div, .step-timeline > div {
    padding: 17px 9px;
  }
}

/* ACCESSIBILITY & FOCUS STATES */
a:focus, button:focus, .cta-btn:focus, .cookie-btn:focus {
  outline: 2.5px solid #FFD68C;
  outline-offset: 1.5px;
}

::-webkit-scrollbar {
  width: 10px;
  background: #22262C;
}
::-webkit-scrollbar-thumb {
  background: #2A323C;
  border-radius: 6px;
}

/* HIDE SCROLL when mobile menu open */
body.modal-open, body.menu-open {
  overflow: hidden !important;
}

/* INDUSTRIAL MODERN DECORATIONS */
.section {
  border: 1.5px solid #2A323C;
  box-shadow: 0 .5px 22px #232a3144;
}
.card {
  border: 1.5px solid #343944;
}
.section,.card,.feature-grid > div {
  box-shadow: 0 2.5px 22px #2A323C20, 0 1.5px 0 #191e2390;
}

/* END CSS */