/* --- CSS RESET & NORMALIZATION --- */
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%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  background: #fff;
}

body {
  font-family: 'Roboto', Arial, sans-serif;
  color: #181818;
  background: #fff;
  min-height: 100vh;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img, picture {
  max-width: 100%;
  display: block;
}

a {
  color: #181818;
  text-decoration: none;
  transition: color 0.23s;
}

a:focus {
  outline: 2px solid #000;
  outline-offset: 2px;
}

ul, ol, li, dl, dt, dd {
  list-style: none;
}

button {
  font-family: inherit;
  font-size: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #0B0B0B;
  font-weight: 600;
  letter-spacing: -0.01em;
}

hr {
  border: none;
  border-top: 1px solid #d3d3d3;
  margin: 32px 0;
}

/* --- COLORS & BRANDING VARIABLES --- */
:root {
  --color-bg: #fff;
  --color-bg-dark: #101010;
  --color-primary: #181818;
  --color-secondary: #F7F7F7;
  --color-accent: #BDB76B;
  --color-muted: #ededed;
  --color-contrast: #000;
  --color-link: #222;
  --color-link-hover: #BDB76B;
  --shadow-1: 0 3px 16px rgba(40,40,40,0.09);
  --shadow-card: 0 2px 12px rgba(0,0,0,0.08);
  --radius: 14px;
  --radius-sm: 8px;
}

/* --- TYPOGRAPHY --- */
body {
  font-size: 1rem;
  line-height: 1.7;
  color: #171717;
  background: var(--color-bg);
  font-family: 'Roboto', Arial, sans-serif;
}

h1 {
  font-size: 2.2rem;
  color: #101010;
  margin-bottom: 0.6em;
  line-height: 1.12;
}

h2 {
  font-size: 1.5rem;
  margin-bottom: 0.5em;
  color: #1a1a1a;
}

h3 {
  font-size: 1.15rem;
  margin-bottom: 0.4em;
  color: #262626;
}

.tagline {
  color: #373737;
  font-size: 1.15rem;
  margin-bottom: 2em;
  font-weight: 400;
}

strong {
  color: #0b0b0b;
  font-weight: 700;
  letter-spacing: 0.01em;
}

small {
  font-size: 0.92em;
  color: #757575;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.container {
  width: 100%;
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 25px;
  align-items: flex-start;
}

/* --- HEADER & NAVIGATION --- */
header {
  background: #fff;
  box-shadow: var(--shadow-1);
  position: sticky;
  top: 0;
  z-index: 40;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  min-height: 72px;
}
header img {
  height: 45px;
  width: auto;
  margin-right: 18px;
}

nav {
  display: flex;
  gap: 30px;
  align-items: center;
}

nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #1a1a1a;
  font-size: 1.07rem;
  font-weight: 500;
  padding: 8px 4px;
  border-radius: 4px;
  transition: color 0.2s;
}

nav a:hover,
nav a:focus {
  color: var(--color-accent);
}

nav .cta-primary {
  background: #171717;
  color: #fff !important;
  padding: 9px 22px;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: 0 1px 6px rgba(0,0,0,0.07);
  border: none;
  margin-left: 10px;
  transition: background 0.23s, color 0.23s, box-shadow 0.2s;
}
nav .cta-primary:hover,
nav .cta-primary:focus {
  background: var(--color-accent);
  color: #141414 !important;
  box-shadow: 0 4px 18px rgba(189,183,107,0.10);
}

/* --- MOBILE BURGER MENU --- */
.mobile-menu-toggle {
  display: none;
  background: #fff;
  color: #1a1a1a;
  font-size: 2rem;
  padding: 3px 12px 0px 8px;
  border-radius: var(--radius-sm);
  border: 1px solid #ececec;
  transition: background 0.22s, color 0.22s;
  z-index: 60;
}
.mobile-menu-toggle:focus {
  outline: 2px solid var(--color-contrast);
  background: #ededed;
  color: #000;
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #fff;
  box-shadow: 0 0 0 10000px rgba(0,0,0,0.30);
  transform: translateX(-100%);
  transition: transform 0.38s cubic-bezier(.55,0,.18,1.05);
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100vw;
  max-width: 360px;
  padding: 0 0 36px 0;
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateX(0);
  box-shadow: 0 0 40px 2px rgba(60,60,60,0.16);
}

.mobile-menu-close {
  font-size: 1.9rem;
  color: #191919;
  background: #ededed;
  padding: 7px 18px 3px 7px;
  border-radius: var(--radius-sm);
  align-self: flex-end;
  margin: 24px 20px 2px 0;
  transition: background 0.18s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #d9d9d9;
  color: #090909;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0 24px;
  width: 100%;
}
.mobile-nav a {
  color: #181818;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1.18rem;
  padding: 18px 8px;
  border-bottom: 1px solid #ededed;
  transition: background 0.18s, color 0.16s;
  border-radius: 0;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: var(--color-accent);
  color: #181818;
}

@media (max-width: 980px) {
  header .container {
    gap: 14px;
  }
  nav {
    gap: 17px;
  }
}

@media (max-width: 768px) {
  nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .container {
    padding: 0 8px;
  }
}

/* --- SECTIONS, LAYOUT, FLEXBOX STRUCTURES --- */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: var(--radius);
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  background: #fcfcfc;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 24px 22px;
  margin-bottom: 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;
  padding: 20px;
  background: #fcfcfc;
  border-radius: var(--radius-sm);
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  margin-bottom: 20px;
  border-left: 4px solid var(--color-accent);
}
.testimonial-card p {
  margin-bottom: 0 !important;
}
.testimonial-card strong {
  color: #111;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* --- SECTIONS: SPACING & RESPONSIVE --- */
@media (max-width: 1040px) {
  .container {
    max-width: 95vw;
    padding: 0 8px;
  }
  .section {
    padding: 32px 12px;
  }
}
@media (max-width: 768px) {
  .section {
    padding: 28px 6px;
  }
  .content-wrapper {
    gap: 19px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }
}

/* --- LISTS, UL, OL --- */
ul, ol {
  margin-left: 16px;
  margin-bottom: 20px;
}
ul li, ol li {
  margin-bottom: 15px;
  padding-left: 0;
  position: relative;
  font-size: 1.02rem;
  color: #292929;
  line-height: 1.6;
}
ul li strong {
  color: #101010;
}
ul li::before {
  content: '';
  display: inline-block;
  height: 8px;
  width: 8px;
  margin-right: 12px;
  border-radius: 50%;
  background: #A2A2A2;
  vertical-align: middle;
}

/* --- BREADCRUMB --- */
nav[aria-label="breadcrumb"] span {
  color: #8e8e8e;
  font-size: 0.99em;
}
nav[aria-label="breadcrumb"] a {
  color: #404040;
  text-decoration: underline;
  font-weight: 500;
}
nav[aria-label="breadcrumb"] a:hover {
  color: var(--color-accent);
}

/* --- CTA BUTTONS --- */
.cta-primary,
.cta-secondary {
  display: inline-block;
  margin-top: 3px;
  border: none;
  outline: none;
  border-radius: var(--radius-sm);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.08rem;
  padding: 11px 30px;
  margin-right: 13px;
  margin-bottom: 12px;
  transition: background 0.17s, color 0.19s, box-shadow 0.18s, border 0.19s;
  cursor: pointer;
  box-shadow: 0 2px 11px rgba(30,30,30,0.07);
}
.cta-primary {
  background: #0B0B0B;
  color: #fff !important;
  border: 2px solid #0B0B0B;
  letter-spacing: 0.01em;
}
.cta-primary:hover, .cta-primary:focus {
  background: var(--color-accent);
  color: #101010 !important;
  border-color: var(--color-accent);
}
.cta-secondary {
  background: #fff;
  color: #181818 !important;
  border: 2px solid #151515;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: #ECECEC;
  color: #101010 !important;
  border-color: var(--color-accent);
}

/* --- CARD STYLING --- */
.card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 28px 32px 24px 28px;
  transition: box-shadow .21s, border .16s;
  border-left: 4px solid #e8e8e8;
}
.card:hover {
  box-shadow: 0 6px 28px rgba(0,0,0,0.10);
  border-left: 4px solid var(--color-accent);
}

/* --- FORMS (futureproof) --- */
input, textarea, select {
  background: #F6F6F6;
  border: 1px solid #e1e1e1;
  border-radius: var(--radius-sm);
  padding: 10px 13px;
  font-size: 1.02em;
  width: 100%;
  margin-bottom: 16px;
  font-family: inherit;
  transition: border .16s;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--color-accent);
  background: #fff;
  outline: none;
}

label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  margin-bottom: 7px;
  display: block;
  color: #222;
}

/* --- FOOTER --- */
footer {
  background: #181818;
  color: #f6f6f6;
  padding: 0;
  border-top: 1px solid #1a1a1a;
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  padding: 36px 8px 32px 8px;
}
footer img {
  height: 48px;
  width: auto;
  margin-bottom: 12px;
}
footer nav {
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}
footer nav a {
  color: #dedede;
  padding: 2px 0;
  font-size: 1.02rem;
  transition: color 0.16s;
}
footer nav a:hover,
footer nav a:focus {
  color: var(--color-accent);
}
footer .text-section p,
footer .text-section a {
  color: #e2e2e2;
  font-size: 1rem;
}
footer .text-section a:hover,
footer .text-section a:focus {
  color: var(--color-accent);
  text-decoration: underline;
}
footer .text-section strong {
  color: #fff;
}

@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
    padding: 28px 6px;
  }
}

/* --- TESTIMONIALS --- */
.testimonial-card {
  background: #fff;
  color: #171717;
  border-left: 4px solid var(--color-accent);
  border-radius: var(--radius-sm);
  box-shadow: 0 2px 14px rgba(0,0,0,0.08);
  padding: 24px 32px 18px 22px;
  margin-bottom: 20px;
  transition: box-shadow 0.19s, border 0.18s;
}
.testimonial-card:hover {
  box-shadow: 0 7px 18px rgba(190,183,107,0.085), 0 3px 24px rgba(0,0,0,0.11);
  border-left: 6px solid #282828;
}
.testimonial-card strong {
  color: #222;
  font-weight: 700;
}
.testimonial-card div {
  font-size: 1.15em;
  margin: 0 0 4px 0;
  color: #BDB76B;
}

@media (max-width: 600px) {
  .testimonial-card {
    padding: 13px 9px 11px 11px;
  }
}

/* --- FAQ --- */
dl {
  margin-bottom: 28px;
}
dt {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.10rem;
  font-weight: 600;
  margin-top: 19px;
  color: #181818;
}
dd {
  margin-left: 12px;
  font-size: 0.99rem;
  color: #444;
  margin-bottom: 6px;
}

/* --- ADDRESS & CONTACT --- */
address {
  font-style: normal;
  color: #181818;
  background: #F6F6F6;
  padding: 20px 22px;
  border-radius: var(--radius-sm);
  margin-bottom: 22px;
  box-shadow: 0 1px 7px rgba(0,0,0,0.03);
}
address a {
  color: #222;
  text-decoration: underline;
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  z-index: 9999;
  background: rgba(255,255,255,0.97);
  box-shadow: 0 -2px 20px rgba(30,30,30,0.13);
  border-top: 1px solid #E1E1E1;
  padding: 20px 16px 20px 22px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  opacity: 1;
  transform: translateY(0%);
  transition: transform .35s, opacity .25s;
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
}
.cookie-banner__text {
  color: #171717;
  font-size: 1.02em;
  line-height: 1.5;
}
.cookie-banner__buttons {
  display: flex;
  gap: 15px;
  align-items: center;
  flex-wrap: wrap;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.97em;
  padding: 9px 18px;
  border-radius: var(--radius-sm);
  border: none;
  transition: background 0.17s, color 0.18s, border 0.17s;
  font-weight: 600;
}
.cookie-btn.accept {
  background: #181818;
  color: #fff;
  border: 2px solid #181818;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: var(--color-accent);
  color: #181818;
  border-color: var(--color-accent);
}
.cookie-btn.reject {
  background: #fff;
  color: #181818;
  border: 2px solid #b3b3b3;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #ececec;
  color: #0b0b0b;
  border-color: #888;
}
.cookie-btn.settings {
  background: #e8e8e8;
  color: #161616;
  border: 2px solid #BDB76B;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: var(--color-accent);
  color: #181818;
  border-color: #BDB76B;
}

@media (max-width: 640px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    padding: 18px 5px;
  }
  .cookie-banner__buttons {
    justify-content: flex-end;
    width: 100%;
  }
}

/* --- COOKIE CONSENT MODAL --- */
.cookie-modal-backdrop {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(40,40,40,0.23);
  z-index: 10001;
  opacity: 1;
  pointer-events: all;
  transition: opacity 0.3s;
}
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-55%) scale(1);
  z-index: 10010;
  min-width: 310px;
  max-width: 96vw;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 4px 38px 0 rgba(40,40,40,0.14);
  padding: 32px 24px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  opacity: 1;
  pointer-events: all;
  transition: opacity 0.27s, transform 0.27s;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%,-40%) scale(0.98);
}
.cookie-modal__header {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.2rem;
  color: #1a1a1a;
  font-weight: 700;
}
.cookie-modal__close {
  position: absolute;
  top: 12px; right: 17px;
  font-size: 1.5rem;
  background: none;
  border: none;
  color: #9a9a9a;
  cursor: pointer;
  transition: color 0.13s;
}
.cookie-modal__close:hover {
  color: #181818;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 17px;
}
.cookie-category {
  background: #f7f7f7;
  border-radius: var(--radius-sm);
  padding: 13px 13px 10px 14px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
}
.cookie-category .cookie-switch {
  margin-left: auto;
}
.cookie-switch input[type=checkbox] {
  display: none;
}
.cookie-switch label {
  position: relative;
  width: 34px;
  height: 18px;
  background: #dbdbdb;
  border-radius: 18px;
  transition: background 0.22s;
  display: block;
  cursor: pointer;
}
.cookie-switch label::before {
  content: '';
  position: absolute;
  left: 2px;
  top: 2px;
  width: 14px;
  height: 14px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 2px rgba(40,40,40,0.12);
  transition: left 0.23s;
}
.cookie-switch input[type=checkbox]:checked + label {
  background: var(--color-accent);
}
.cookie-switch input[type=checkbox]:checked + label::before {
  left: 18px;
}
.cookie-category .always-on {
  font-size: 0.98em;
  color: #898989;
  margin-left: 14px;
}
.cookie-modal__actions {
  margin-top: 18px;
  display: flex;
  gap: 13px;
  justify-content: flex-end;
}
.cookie-modal .cookie-btn {
  min-width: 100px;
  font-size: 1em;
}

/* --- MONOCHROME SOPHISTICATED ACCENTS --- */
.section, .card, .testimonial-card, .cookie-modal {
  background: #fff;
}

/* --- SHADOWS & ROUNDED CORNERS --- */
.section, .card, .testimonial-card, .cookie-modal {
  box-shadow: 0 2px 14px rgba(20,20,20,0.06);
  border-radius: var(--radius);
}

/* --- ANIMATIONS & MICRO-INTERACTIONS --- */
.cta-primary, .cta-secondary, .cookie-btn {
  transition: background 0.17s, color 0.19s, border 0.18s, box-shadow .18s;
}
.card, .testimonial-card {
  transition: box-shadow .2s, border .19s;
}
.card:hover, .testimonial-card:hover {
  box-shadow: 0 7px 28px rgba(60,60,60,0.12), 0 3px 14px rgba(190,183,107,0.13);
}

/* --- CUSTOM SCROLLBAR (Webkit) --- */
::-webkit-scrollbar {
  width: 9px;
  background: #f2f2f2;
  border-radius: 6px;
}
::-webkit-scrollbar-thumb {
  background: #ddd;
  border-radius: 6px;
}
::-webkit-scrollbar-thumb:hover {
  background: #bbb;
}

/* --- RESPONSIVE HEADINGS, SPACING --- */
@media (max-width: 480px) {
  h1 {
    font-size: 1.32rem;
  }
  h2 {
    font-size: 1.07rem;
  }
  .section {
    padding: 14px 3px;
    margin-bottom: 40px;
  }
  .footer .container {
    gap: 10px;
    padding: 18px 2px;
  }
}

/* --- Z-INDEX LAYERS --- */
.mobile-menu,
.cookie-modal-backdrop,
.cookie-modal,
.cookie-banner {
  z-index: 10001;
}

/* --- END --- */