/* ------------------------------
   RESET & BASE STYLES
------------------------------ */
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: #1d2329;
  color: #F3F0ED;
  font-family: 'Lato', Arial, Helvetica, sans-serif;
  min-height: 100vh;
}
a {
  color: #B8935A;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #F3F0ED;
  text-decoration: underline;
  outline: none;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul, ol {
  list-style: none;
}
*, *:before, *:after {
  box-sizing: inherit;
}

/* ---------------------------------------
   TYPOGRAPHY (Industrial Modern Aesthetic)
--------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Lato:wght@400;700&display=swap');

h1, h2, h3, h4, h5 {
  font-family: 'Montserrat', 'Lato', Arial, sans-serif;
  color: #F3F0ED;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
h1 { font-size: 2.25rem; margin-bottom: 24px; }
h2 { font-size: 1.5rem; margin-bottom: 18px; }
h3 { font-size: 1.125rem; margin-bottom: 12px; }
h4, h5 { font-size: 1rem; }
p, li, blockquote, address { font-size: 1rem; line-height: 1.7; }
p, blockquote { margin-bottom: 1em; }
blockquote {
  border-left: 4px solid #B8935A;
  padding-left: 18px;
  font-style: italic;
  color: #24323D;
  background: #F3F0ED;
  margin-bottom: 10px;
}
strong { color: #B8935A; font-weight: 700; }
.text-section > h2 { color: #B8935A; }

/* -----------------------------------
   CONTAINER & LAYOUT
----------------------------------- */
.container {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
  width: 100%;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  background: rgba(43,51,59,0.90);
  border-radius: 14px;
  box-shadow: 0 3px 24px 0 rgba(36,50,61,0.17);
  padding: 32px 24px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
/* Spacing for all content cards/sections */
.content-wrapper:not(:last-child) {
  margin-bottom: 32px;
}
.card-container, .card-grid, .features, .content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.content-grid {
  justify-content: space-between;
  gap: 20px;
}
.card {
  background: #232C34;
  border-radius: 12px;
  box-shadow: 0 2px 16px 0 rgba(36,50,61,0.2);
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px;
  gap: 16px;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* -----------------------------
   NAVIGATION & HEADER
----------------------------- */
header {
  background: #232C34;
  box-shadow: 0 2px 12px 0 rgba(25,34,45,0.07);
  position: relative;
  z-index: 90;
}
header nav {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 18px 16px;
  justify-content: flex-start;
  flex-wrap: wrap;
}
header nav a {
  color: #F3F0ED;
  font-family: 'Montserrat', 'Lato', sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
  font-weight: 700;
  margin-right: 6px;
  letter-spacing: 0.04em;
  transition: color 0.2s, background 0.2s;
  position: relative;
}
header nav a:hover, header nav a:focus {
  color: #B8935A;
}
header nav img {
  margin-right: 18px;
  width: 48px;
  height: auto;
}
.cta_button, .cta_button:visited {
  background: #B8935A;
  color: #232C34;
  font-family: 'Montserrat', 'Lato', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border: none;
  border-radius: 8px;
  padding: 14px 30px;
  font-size: 1rem;
  box-shadow: 0 2px 12px 0 rgba(210,186,119,0.11);
  cursor: pointer;
  transition: background 0.25s, color 0.25s, box-shadow 0.25s;
  outline: none;
}
.cta_button:hover, .cta_button:focus {
  background: #232C34;
  color: #B8935A;
  box-shadow: 0 6px 18px 0 rgba(210,186,119,0.16),0 2px 12px 0 rgba(36,50,61,0.10);
}

/* Hide burger by default on desktop */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #B8935A;
  font-size: 2rem;
  margin-left: auto;
  cursor: pointer;
  z-index: 101;
  transition: color 0.12s;
  outline: none;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  color: #F3F0ED;
}

/* Hamburger mobile menu overlay */
.mobile-menu {
  position: fixed;
  z-index: 2000;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: #232C34;
  box-shadow: 2px 0 24px 0 rgba(36,50,61,0.38);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translateX(-100vw);
  transition: transform 0.32s cubic-bezier(0.4,0,0.2,1);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  color: #B8935A;
  font-size: 2.2rem;
  margin: 16px 28px 6px 0;
  cursor: pointer;
  transition: color 0.15s;
  outline: none;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #F3F0ED;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  margin: 36px 36px auto 36px;
  width: 85vw;
}
.mobile-nav a {
  color: #F3F0ED;
  font-family: 'Montserrat', 'Lato', sans-serif;
  font-size: 1.25rem;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 2px solid transparent;
  transition: color 0.22s, border-bottom 0.2s;
  padding: 6px 0;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #B8935A;
  border-bottom: 2px solid #B8935A;
}

/* ----------------------
   MAIN & SECTION CONTENT
---------------------- */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.text-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.text-section ul li,
.text-section ol li {
  margin-bottom: 14px;
}
.text-section a:not(.cta_button) {
  color: #B8935A;
  text-decoration: underline;
}
.text-section a:not(.cta_button):hover {
  color: #F3F0ED;
}

/* Icon lists */
ul li img, ol li img {
  vertical-align: middle;
  width: 22px;
  height: 22px;
  margin-right: 12px;
  display: inline-block;
}

/* Step lists */
ol {
  margin-left: 18px;
  color: #B8935A;
  counter-reset: step;
}
ol li {
  counter-increment: step;
  position: relative;
  margin-bottom: 14px;
  color: #F3F0ED;
  padding-left: 32px;
}
ol li::before {
  content: counter(step) ". ";
  position: absolute;
  left: 0;
  color: #B8935A;
  font-weight: bold;
}

/* Card containers */
.card-container, .card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  flex: 1 1 340px;
  margin-bottom: 20px;
  border-radius: 12px;
  overflow: hidden;
  background: #232C34;
  box-shadow: 0 2px 16px 0 rgba(36,50,61,0.18);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.23s, transform 0.23s;
}
.card:hover {
  box-shadow: 0 8px 36px 0 rgba(36,50,61,0.34);
  transform: translateY(-6px) scale(1.01);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px;
  gap: 16px;
}

/* Testimonial card styles (with dark-on-light for contrast) */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #F3F0ED;
  color: #24323D;
  border-left: 5px solid #B8935A;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 2px 12px 0 rgba(36,50,61,0.10);
  font-family: 'Lato', Arial, sans-serif;
}
.testimonial-card blockquote {
  color: #24323D;
  background: transparent;
  border-left: none;
  font-size: 1.04rem;
  margin: 0 0 2px 0;
}
.testimonial-card p strong {
  color: #24323D;
}

/* Feature List Styles */
.features, .feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* -------------------------------------
   FOOTER
------------------------------------- */
footer {
  background: #232C34;
  padding: 38px 16px 22px 16px;
  text-align: center;
  color: #B8935A;
  font-size: 0.98rem;
  margin-top: 60px;
  border-top: 1px solid #2f3e4c;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  justify-content: center;
  align-items: center;
  margin-bottom: 16px;
}
footer nav a {
  color: #B8935A;
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.98rem;
  font-weight: 700;
  transition: color 0.16s;
}
footer nav a:hover, footer nav a:focus {
  color: #F3F0ED;
}
footer p {
  margin: 0;
  color: #F3F0ED;
  opacity: 0.84;
  font-size: 0.92rem;
}

/* -----------------------------------
   COOKIE CONSENT BANNER + MODAL
----------------------------------- */
.cookie-banner {
  position: fixed;
  z-index: 3000;
  left: 0;
  right: 0;
  bottom: 0;
  background: #1d2329;
  color: #F3F0ED;
  border-top: 2px solid #B8935A;
  box-shadow: 0 -2px 16px rgba(36,50,61,0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  padding: 22px 28px;
  font-size: 1rem;
  animation: fadein-banner 0.9s cubic-bezier(.7,0,.3,1);
}
@keyframes fadein-banner {
  from { opacity: 0; transform: translateY(60px); }
  to { opacity: 1; transform: translateY(0); }
}
.cookie-banner p {
  margin: 0;
  flex: 1 1 250px;
}
.cookie-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.cookie-banner button {
  font-family: 'Montserrat', 'Lato', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 7px;
  border: none;
  padding: 10px 26px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.16s, color 0.16s, box-shadow 0.19s;
  margin-bottom: 0;
}
.cookie-banner .accept {
  background: #B8935A;
  color: #232C34;
}
.cookie-banner .accept:hover {
  background: #867148;
  color: #F3F0ED;
}
.cookie-banner .reject {
  background: #24323D;
  color: #F3F0ED;
  border: 1px solid #B8935A;
}
.cookie-banner .reject:hover {
  background: #3e4b57;
}
.cookie-banner .settings {
  background: transparent;
  color: #B8935A;
  border: 1px solid #B8935A;
}
.cookie-banner .settings:hover {
  background: #B8935A;
  color: #232C34;
}

/* Cookie Settings Modal */
.cookie-modal-overlay {
  position: fixed;
  z-index: 4000;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(36,50,61,0.76);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadein-modal 0.23s cubic-bezier(.47,.23,.71,.97);
}
@keyframes fadein-modal {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #F3F0ED;
  color: #24323D;
  max-width: 420px;
  width: 94vw;
  border-radius: 14px;
  box-shadow: 0 6px 36px 0 rgba(36,50,61,0.19);
  padding: 32px 26px 22px 26px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
}
.cookie-modal h2 {
  color: #B8935A;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.30rem;
  margin-bottom: 14px;
}
.cookie-modal .modal-close {
  position: absolute;
  top: 16px; right: 18px;
  background: none;
  border: none;
  font-size: 1.4rem;
  color: #B8935A;
  cursor: pointer;
  outline: none;
}
.cookie-modal .category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 13px;
  font-size: 1rem;
}
.cookie-modal .category label {
  font-weight: bold;
  color: #24323D;
}
.cookie-modal .toggle {
  position: relative;
  width: 38px;
  height: 22px;
  display: inline-block;
}
.cookie-modal .toggle input {
  opacity: 0;
  width: 0; height: 0;
}
.cookie-modal .toggle span {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0;
  right: 0; bottom: 0;
  background: #B8935A;
  border-radius: 16px;
  transition: background 0.17s;
}
.cookie-modal .toggle span:before {
  content: "";
  position: absolute;
  left: 4px; top: 3px;
  width: 14px; height: 14px;
  background: #F3F0ED;
  border-radius: 50%;
  transition: transform 0.19s;
}
.cookie-modal .toggle input:checked + span {
  background: #24323D;
}
.cookie-modal .toggle input:checked + span:before {
  transform: translateX(14px);
  background: #B8935A;
}
.cookie-modal .info {
  font-size: 0.97rem;
  color: #343a42;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 14px;
  margin-top: 18px;
}
.cookie-modal button {
  padding: 9px 18px;
  font-size: 1rem;
  font-family: 'Montserrat', sans-serif;
  border-radius: 7px;
  border: none;
  text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.16s;
}
.cookie-modal .save {
  background: #B8935A;
  color: #232C34;
}
.cookie-modal .save:hover {
  background: #867148;
  color: #F3F0ED;
}
.cookie-modal .cancel {
  background: #24323D;
  color: #F3F0ED;
  border: 1px solid #B8935A;
}
.cookie-modal .cancel:hover {
  background: #3e4b57;
}

/* --------------------------
   UTILITIES
-------------------------- */
.center {
  display: flex; justify-content: center; align-items: center;
}
.flex-row {
  display: flex; flex-direction: row; flex-wrap: wrap;
}
.flex-col {
  display: flex; flex-direction: column;
}
.gap-20 { gap: 20px; }
.gap-24 { gap: 24px; }
.gap-32 { gap: 32px; }
.text-light { color: #F3F0ED; }
.text-accent { color: #B8935A; }

/* Legal and Privacy Sections */
.legal-section {
  background: rgba(43,51,59,0.93);
  border-radius: 14px;
  color: #F3F0ED;
  box-shadow: 0 3px 24px 0 rgba(36,50,61,0.16);
  padding: 36px 22px;
}
.legal-section a {
  color: #B8935A;
  text-decoration: underline;
}
.legal-section a:hover, .legal-section a:focus {
  color: #F3F0ED;
}

/* --------------------------
   MEDIA QUERIES (RESPONSIVE)
-------------------------- */
@media (max-width: 1020px) {
  .container {
    max-width: 94vw;
    padding-left: 6vw;
    padding-right: 6vw;
  }
  header nav {
    gap: 16px;
    padding: 14px 8px;
  }
}
@media (max-width: 830px) {
  .section,
  section {
    padding: 32px 5vw;
  }
  .content-wrapper, .legal-section {
    padding: 26px 8px;
  }
}
@media (max-width: 768px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
    position: absolute;
    top: 20px;
    right: 26px;
  }
  .container {
    padding-left: 3vw;
    padding-right: 3vw;
    max-width: 100vw;
  }
  .content-wrapper {
    padding: 22px 3vw;
    gap: 16px;
  }
  .testimonial-card {
    padding: 16px 10px;
  }
  .card-container, .card-grid, .features, .content-grid {
    flex-direction: column;
    gap: 20px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
  .section, section {
    padding: 26px 8px;
    margin-bottom: 36px;
  }
}
@media (max-width: 540px) {
  h1 { font-size: 1.45rem; }
  h2 { font-size: 1.13rem; }
  h3 { font-size: 1rem; }
  section, .section {
    padding: 18px 2vw;
  }
  .content-wrapper {
    padding: 10px 0;
  }
  .testimonial-card {
    padding: 13px 5px;
    font-size: 0.98rem;
  }
}

/* --------------------------
   ANIMATIONS & INTERACTIONS
-------------------------- */
.card, .testimonial-card, .cta_button, .cookie-banner button, .cookie-modal button {
  transition: box-shadow 0.22s, background 0.18s, color 0.18s, transform 0.24s;
}
.card:hover, .testimonial-card:hover {
  box-shadow: 0 6px 36px 0 rgba(36,50,61,0.25); 
  transform: translateY(-2px) scale(1.01)
}
.cta_button:active, .cookie-banner button:active {
  transform: scale(0.97);
}

/* ------------------------------
   FORMS (if/when present)
------------------------------ */
input, textarea, select, button {
  font-family: inherit;
  font-size: 1em;
}
input, textarea, select {
  background: #232C34;
  color: #F3F0ED;
  border: 1.2px solid #B8935A;
  border-radius: 7px;
  padding: 10px 14px;
  margin-bottom: 12px;
  outline: none;
  transition: border 0.18s, box-shadow 0.18s;
  box-shadow: 0 0 0 rgba(0,0,0,0);
}
input:focus, textarea:focus, select:focus {
  border-color: #867148;
  box-shadow: 0 2px 10px 0 rgba(184,147,90,0.09);
}
button:focus {
  outline: 2px solid #B8935A;
  outline-offset: 2px;
}

/* -------------
   SCROLLBAR
------------- */
::-webkit-scrollbar {
  width: 10px;
  background: #232C34;
}
::-webkit-scrollbar-thumb {
  background: #B8935A;
  border-radius: 9px;
}

/* Hide scrollbars visually but preserve function for cookie/banner overlays on mobile */
@media (max-width: 600px) {
  .cookie-modal {
    max-width: 98vw;
    padding: 22px 6vw 14px 6vw;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 4vw;
  }
}
