/* =========================================
   CSS 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,
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 {
  scroll-behavior: smooth;
}
body {
  line-height: 1.6;
  background: #fff;
  color: #191919;
  font-family: 'Lato', Arial, sans-serif;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
ul, ol {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  background: transparent;
  transition: color .2s;
}
a:focus, a:hover {
  outline: none;
}
img, svg {
  max-width: 100%;
  display: block;
  vertical-align: middle;
}

/* =========================================
   BRAND TYPOGRAPHY & SCALE
   ========================================= */
:root {
  --color-bg: #fff;
  --color-black: #191919;
  --color-dark: #232323;
  --color-primary: #191919;
  --color-secondary: #fff;
  --color-accent: #a3a3a3;
  --color-border: #dddddd;
  --color-muted: #efefef;
  --brand-accent: #943827;
  --brand-green: #24694e;
  --text-secondary: #656565;
  --shadow-light: 0 2px 8px rgba(0,0,0,0.06), 0 1.5px 5px rgba(0,0,0,0.04);
  --shadow-strong: 0 5px 32px 0 rgba(0,0,0,0.12);
  --radius-soft: 10px;
  --radius-sm: 6px;
  --font-display: 'Montserrat', 'Arial', sans-serif;
  --font-body: 'Lato', 'Arial', sans-serif;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--color-primary);
}
h1 {
  font-size: 2.5rem;
  line-height: 1.15;
  margin-bottom: 16px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.35rem;
  margin-bottom: 10px;
  font-weight: 600;
}
h4, h5, h6 {
  font-size: 1rem;
  margin-bottom: 8px;
}
p, ul, ol, dl { 
  font-family: var(--font-body);
  font-size: 1.06rem;
  color: var(--color-black);
  margin-bottom: 18px;
}
strong { font-weight: 700; }
em, i { font-style: italic; }
small { font-size: .96rem; }

/* =========================================
   BASE LAYOUT
   ========================================= */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-secondary);
}
@media (max-width: 768px) {
  .section {
    padding: 28px 8px;
    margin-bottom: 36px;
  }
}

/* =========================================
   HEADER & NAVIGATION
   ========================================= */
header {
  padding: 0;
  background: var(--color-secondary);
  border-bottom: 1px solid var(--color-border);
  z-index: 40;
  position: relative;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  gap: 24px;
}
.logo {
  flex: 0 0 auto;
  padding: 8px 0;
  display: flex;
  align-items: center;
}
nav {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: center;
}
nav a {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.05rem;
  color: var(--color-primary);
  position: relative;
  padding: 4px 6px;
  transition: color .19s;
}
nav a:hover,
nav a:focus {
  color: var(--brand-accent);
}

/* Hide burger on desktop, show on mobile */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.3rem;
  color: var(--color-primary);
  cursor: pointer;
  padding: 4px 10px;
  margin-left: auto;
  transition: color .2s;
  z-index: 101;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  color: var(--brand-accent);
}

@media (max-width: 992px) {
  .container {
    max-width: 100%;
  }
  nav {
    gap: 16px;
  }
}
@media (max-width: 768px) {
  header .container {
    flex-direction: row;
    align-items: center;
    gap: 8px;
  }
  nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* =========================================
   MOBILE MENU OVERLAY
   ========================================= */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(25, 25, 25, 0.90);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  z-index: 200;
  transform: translateX(-100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.38s cubic-bezier(.38,.15,.24,1), opacity .29s;
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2.1rem;
  position: absolute;
  top: 20px;
  right: 24px;
  cursor: pointer;
  z-index: 205;
  transition: color .17s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  color: var(--brand-accent);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 90px;
  margin-left: 32px;
  width: 80vw;
  max-width: 340px;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: #fff;
  padding: 10px 0;
  border-radius: var(--radius-sm);
  transition: background .19s, color .19s;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  background: rgba(255,255,255,0.10);
  color: var(--brand-accent);
}

@media (min-width: 769px) {
  .mobile-menu {
    display: none !important;
  }
}

/* =========================================
   HERO & CTA BUTTONS
   ========================================= */
.cta-btn {
  background: var(--color-primary);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 600;
  border: none;
  padding: 14px 34px;
  border-radius: var(--radius-soft);
  margin-top: 6px;
  box-shadow: var(--shadow-light);
  transition: background .22s, color .14s, box-shadow .19s;
  cursor: pointer;
  display: inline-block;
}
.cta-btn:focus,
.cta-btn:hover {
  background: var(--brand-accent);
  color: #fff;
  box-shadow: 0 5px 32px 0 rgba(148, 56, 39, 0.08), var(--shadow-strong);
  letter-spacing: 0.5px;
}
@media (max-width: 400px) {
  .cta-btn {
    padding: 12px 16px;
    font-size: 0.99rem;
  }
}

/* =========================================
   CARDS, LISTS, FEATURES
   ========================================= */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: var(--radius-soft);
  box-shadow: var(--shadow-light);
  padding: 32px 28px;
  min-width: 220px;
  flex: 1 1 320px;
  transition: box-shadow .18s;
}
.card:hover {
  box-shadow: 0 6px 40px rgba(30,30,30,0.13);
}
.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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 22px;
    align-items: flex-start;
  }
  .content-grid {
    gap: 16px;
    flex-direction: column;
  }
  .card-container {
    gap: 16px;
  }
  .card {
    padding: 20px 12px;
  }
}

ul, ol {
  margin-bottom: 16px;
  padding-left: 0;
  list-style: none;
}
ul li, ol li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 9px 0 9px 0;
  font-size: 1.06rem;
  color: var(--color-black);
}
ul li img, ol li img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}
.dl, dl {
  margin-bottom: 32px;
}
dl dt {
  font-weight: bold;
  margin-top: 18px;
  margin-bottom: 2px;
}
dl dd {
  margin-left: 0;
  margin-bottom: 11px;
  color: var(--text-secondary);
}

/* =========================================
   TESTIMONIAL CARD
   ========================================= */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: var(--radius-soft);
  background: #f8f8f8;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  border-left: 4px solid var(--brand-accent);
  min-width: 220px;
  max-width: 680px;
}
.testimonial-card p {
  font-size: 1.11rem;
  color: #232323;
  font-style: italic;
  line-height: 1.5;
}
.testimonial-card strong {
  color: #191919;
  margin-top: 10px;
  font-size: .99rem;
  font-weight: 700;
}
@media (max-width: 768px) {
  .testimonial-card {
    padding: 14px 10px;
    gap: 10px;
  }
}

/* =========================================
   SPECIFIC BANNERS & USP
   ========================================= */
.usp-banners, .pricing-teasers, .guarantee-banner {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 20px;
}
.usp-banners span, .pricing-teasers span, .guarantee-banner span {
  background: #232323;
  color: #fff;
  border-radius: var(--radius-sm);
  font-size: .98rem;
  padding: 8px 18px;
  font-family: var(--font-display);
  letter-spacing: 0.1px;
  box-shadow: var(--shadow-light);
  margin-right: 6px;
  margin-bottom: 8px;
}
.guarantee-banner span {
  background: var(--brand-accent);
  color: #fff;
}

/* =========================================
   FEATURES, BENEFITS, ".feature-item"
   ========================================= */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

/* =========================================
   BRAND TAGLINE & SOCIAL
   ========================================= */
.brand-tagline {
  font-family: var(--font-display);
  color: var(--color-accent);
  font-size: 1.05rem;
  text-align: center;
  margin-top: 22px;
  font-weight: 500;
  letter-spacing: 0.15px;
  opacity: 0.9;
}
.social-icons {
  display: flex;
  flex-direction: row;
  gap: 14px;
  margin-top: 14px;
  align-items: center;
  flex: 0 0 auto;
}
.social-icons img {
  width: 26px;
  height: 26px;
  opacity: .77;
  transition: opacity .16s, filter .19s;
  cursor: pointer;
}
.social-icons img:hover {
  opacity: 1;
  filter: brightness(1.2) grayscale(25%);
}

/* =========================================
   FOOTER
   ========================================= */
footer {
  background: #191919;
  color: #fafafa;
  padding: 0 0 24px 0;
}
footer .container {
  padding-top: 32px;
  padding-bottom: 8px;
}
footer .content-wrapper {
  gap: 16px;
}
footer nav {
  gap: 16px;
}
footer nav a {
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.98rem;
  opacity: .76;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
  transition: color .14s, border-bottom .18s, opacity .12s;
}
footer nav a:hover {
  color: var(--brand-accent);
  border-bottom: 2px solid var(--brand-accent);
  opacity: 1;
}
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  font-size: .99rem;
  color: #e6e6e6;
}
.footer-contact span {
  display: flex;
  align-items: center;
  gap: 7px;
  min-width: 175px;
}
.footer-contact img {
  width: 18px;
  margin-right: 3px;
  filter: invert(0.7);
}
@media (max-width: 600px) {
  .footer-contact {
    flex-direction: column;
    gap: 4px;
    align-items: flex-start;
  }
  .brand-tagline {
    font-size: .97rem;
  }
}

/* =========================================
   TEXT SECTIONS & FAQ
   ========================================= */
.text-section {
  margin-bottom: 22px;
  padding-left: 0;
}
dt {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 2px;
}
@media (max-width: 768px) {
  .text-section {
    margin-bottom: 10px;
  }
}

/* =========================================
   FORM ELEMENTS (if present in future)
   ========================================= */
input, textarea, select {
  font-family: var(--font-body);
  font-size: 1.05rem;
  padding: 12px 14px;
  border-radius: var(--radius-soft);
  border: 1px solid var(--color-border);
  background: #fafafa;
  color: var(--color-black);
  outline: none;
  margin-bottom: 18px;
  transition: border-color .16s;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--brand-accent);
}
button {
  font-family: var(--font-display);
  font-size: 1.08rem;
  border-radius: var(--radius-soft);
  transition: box-shadow .14s, background .13s;
  cursor: pointer;
  border: none;
}

/* =========================================
   COOKIE CONSENT BANNER & MODAL
   ========================================= */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 3000;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background: #232323;
  color: #fff;
  padding: 23px 16px;
  box-shadow: 0 -4px 32px rgba(0,0,0,.21);
  gap: 32px;
  animation: cookie-slide-in .5s cubic-bezier(.38,.33,.14,1);
}
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 18px 8px 24px 8px;
  }
}
.cookie-banner__message {
  font-family: var(--font-body);
  font-size: 1rem;
  margin-bottom: 0;
  color: #fff;
}
.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.cookie-btn {
  background: #fff;
  color: #191919;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  border: none;
  border-radius: var(--radius-sm);
  padding: 8px 22px;
  margin-right: 3px;
  transition: background .21s, color .19s, box-shadow .11s;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}
.cookie-btn:focus, .cookie-btn:hover {
  background: var(--brand-accent);
  color: #fff;
}
.cookie-btn.settings {
  background: #e3e3e3;
  color: #191919;
}
.cookie-btn.settings:focus, .cookie-btn.settings:hover {
  background: #d2d2d2;
  color: #943827;
}

@keyframes cookie-slide-in {
  0% { transform: translateY(60px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

.cookie-modal-backdrop {
  content: '';
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(25,25,25,0.36);
  z-index: 3030;
}
.cookie-modal {
  position: fixed;
  left: 50%; top: 50%;
  transform: translate(-50%,-50%);
  background: #fff;
  border-radius: var(--radius-soft);
  box-shadow: 0 8px 48px rgba(0,0,0,.22);
  min-width: 340px;
  max-width: 96vw;
  z-index: 3040;
  display: flex;
  flex-direction: column;
  padding: 32px 28px 28px 28px;
  animation: cookie-modal-in .45s cubic-bezier(.38,.33,.14,1);
}
@media (max-width: 460px) {
  .cookie-modal {
    min-width: 220px;
    padding: 20px 8px 18px 8px;
  }
}
@keyframes cookie-modal-in {
  0% { opacity: 0; transform: translate(-50%,-30%) scale(0.95); }
  100% { opacity: 1; transform: translate(-50%,-50%) scale(1); }
}
.cookie-modal__title {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-primary);
  font-size: 1.35rem;
  margin-bottom: 18px;
}
.cookie-modal__category {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}
.cookie-modal__category input[type="checkbox"] {
  width: 21px;
  height: 21px;
  accent-color: var(--brand-accent);
}
.cookie-modal__category-label {
  font-size: 1rem;
  font-family: var(--font-body);
  color: var(--color-primary);
}
.cookie-modal__actions {
  display: flex;
  gap: 15px;
  margin-top: 18px;
}
.cookie-modal__description {
  font-size: .97rem;
  font-family: var(--font-body);
  color: var(--text-secondary);
  margin-bottom: 14px;
}
.cookie-modal-close {
  background: none;
  border: none;
  color: #191919;
  font-size: 1.45rem;
  position: absolute;
  right: 14px; top: 8px;
  cursor: pointer;
  opacity: .6;
  z-index: 3041;
  transition: color .13s, opacity .13s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: var(--brand-accent);
  opacity: 1;
}

/* =========================================
   RESPONSIVE FONTS & LAYOUTS
   ========================================= */
@media (max-width: 1200px) {
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.6rem; }
}
@media (max-width: 900px) {
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.2rem; }
}
@media (max-width: 440px) {
  h1, .brand-tagline { font-size:1.25rem;}
  h2 { font-size: 1.02rem; }
  .usp-banners span, .pricing-teasers span {
    font-size: .89rem;
    padding: 6px 10px;
  }
}

/* =========================================
   MISC HELPERS/UTILITIES
   ========================================= */
::-webkit-input-placeholder { color: #a8a8a8; }
::-moz-placeholder { color: #a8a8a8; }
:-ms-input-placeholder { color: #a8a8a8; }
::placeholder { color: #a8a8a8; }

hr {
  border: 0;
  border-top: 1px solid #ececec;
  margin: 36px 0 36px 0;
}

.hide {
  display: none !important;
}

/* =========================================
   MONOCHROME-SOPHISTICATED COLOR OVERRIDES
   ========================================= */
body, .section, .card, .content-wrapper, .text-section, .cookie-modal {
  background: #fff;
}
.testimonial-card, .usp-banners span, .pricing-teasers span, .guarantee-banner span {
  background: #191919;
  color: #fff;
}
.testimonial-card p, .testimonial-card strong { color: #fff; }
.testimonial-card {
  box-shadow: 0 6px 28px rgba(30,30,30,0.09);
  border-left: 5px solid var(--brand-accent);
  background: #232323;
}

.cta-btn {
  background: #191919;
  color: #fff;
}
.cta-btn:focus, .cta-btn:hover {
  background: var(--brand-accent);
  color: #fff;
}
footer {
  background: #191919;
  color: #fafafa;
}

/* Keep high contrast on all testimonials/reviews on all backgrounds */
.testimonial-card {
  background: #232323;
  color: #fff;
  border-left: 5px solid var(--brand-accent);
  box-shadow: 0 9px 32px rgba(30,30,30,0.16);
}
.testimonial-card p {
  color: #fcfcfc;
}
.testimonial-card strong {
  color: #fff;
}

/* =========================================
   FOCUS RING FOR ACCESSIBILITY
   ========================================= */
*:focus {
  outline: 2px solid var(--brand-accent);
  outline-offset: 2px;
}

/* =========================================
   ENFORCE FLEXBOX ONLY
   ========================================= */
/* No grid/columns used anywhere. All .card-grid, .content-grid, .card-container, .testimonial-card use flexbox only. */

