/* --- 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;
  /* Prevent font scaling in landscape */
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  background: #fff;
  color: #181818;
  min-height: 100vh;
  line-height: 1.6;
  letter-spacing: 0.002em;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color .2s;
}
ul, ol {
  list-style: none;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
button {
  border: none;
  outline: none;
  background: none;
  font: inherit;
  cursor: pointer;
  padding: 0;
}
*:focus {
  outline: 2px solid #181818;
  outline-offset: 2px;
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #181818;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
h1 {
  font-size: 2.75rem;
  margin-bottom: 24px;
  line-height: 1.15;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  line-height: 1.18;
}
h3 {
  font-size: 1.375rem;
  margin-bottom: 16px;
}
h4 {
  font-size: 1.125rem;
  margin-bottom: 8px;
}
p, li, span, a, label {
  font-size: 1rem;
  color: #2c2c2c;
}
p {
  margin-bottom: 16px;
}
strong, b {
  color: #181818;
  font-weight: 700;
}

/* --- LAYOUT CONTAINERS --- */
.container {
  width: 100%;
  max-width: 1050px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 10px;
}

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

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(24,24,24,0.09),0 1.5px 3.5px rgba(40,40,40,0.04);
  transition: box-shadow 0.2s, transform 0.2s;
  flex: 1 1 250px;
  min-width: 250px;
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.card:hover {
  box-shadow: 0 8px 32px rgba(24,24,24,0.18);
  transform: translateY(-4px) scale(1.016);
}

.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;
  width: 100%;
}

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fafafa;
  border-radius: 14px;
  box-shadow: 0 2px 14px rgba(32,32,32,.13);
  margin-bottom: 20px;
  border: 1px solid #eee;
  transition: box-shadow 0.2s, border 0.2s;
}
.testimonial-card p {
  font-size: 1.05rem;
  font-style: italic;
  color: #111;
  margin-bottom: 0;
  flex: 1 1 auto;
}
.testimonial-card span {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  color: #245B3C;
  font-size: 1rem;
  margin-left: 12px;
}
.testimonial-card:hover {
  box-shadow: 0 6px 24px rgba(18,18,18,0.15);
  border: 1.5px solid #bbb;
}

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

/* --- BADGE --- */
.badge {
  display: inline-block;
  background: #181818;
  color: #fff;
  padding: 2px 10px;
  font-size: 0.9em;
  border-radius: 10px;
  font-family: 'Montserrat',sans-serif;
  margin-left: 12px;
  letter-spacing: 0.04em;
}

/* --- BUTTONS & CTA --- */
.cta-btn {
  display: inline-block;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.12rem;
  background: #181818;
  color: #fff;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-top: 10px;
  box-shadow: 0 2px 9px rgba(32,32,32,0.08);
  transition: background 0.18s, color 0.17s, transform 0.18s, box-shadow 0.19s;
}
.cta-btn:hover, .cta-btn:focus {
  background: #2D2D2D;
  box-shadow: 0 6px 22px rgba(24,24,24,0.19);
  color: #AC8D58;
  transform: translateY(-2px) scale(1.04);
}
button.cta-btn {
  border: none;
}

nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #181818;
  padding: 8px 14px;
  margin-right: 8px;
  border-radius: 7px;
  transition: background .12s, color .17s;
}
nav a:hover, nav a:focus, .mobile-nav a:hover, .mobile-nav a:focus {
  background: #1d1d1d;
  color: #fff;
}
.mobile-nav a.active {
  color: #245B3C;
  background: #F5F5F5;
}

/* --- HEADER, NAV, MOBILE MENU --- */
header {
  background: #fff;
  border-bottom: 1px solid #ECECEC;
  box-shadow: 0 2px 10px rgba(20,20,20,0.05);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 70px;
  padding: 14px 20px;
}
header a img {
  width: 146px;
  height: auto;
  margin-right: 16px;
}
header nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
header .cta-btn {
  margin-left: 6px;
}
/* --- Hamburger menu button --- */
.mobile-menu-toggle {
  display: none;
  background: #181818;
  color: #fff;
  border: none;
  border-radius: 7px;
  font-size: 2rem;
  width: 43px;
  height: 43px;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
  z-index: 1082;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:active {
  background: #222;
}

/* --- Mobile menu overlay --- */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #fff;
  box-shadow: 0 6px 40px 12px rgba(0,0,0,0.17);
  transform: translateX(-105vw);
  transition: transform 0.36s cubic-bezier(.77,0,.18,1);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0;
  width: 100vw;
  height: 100vh;
  overflow-y: auto;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  color: #181818;
  background: none;
  font-size: 2.2rem;
  position: absolute;
  right: 24px;
  top: 22px;
  z-index: 1210;
  cursor: pointer;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0px;
  padding: 70px 32px 36px 32px;
  width: 100%;
}
.mobile-nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  color: #181818;
  font-size: 1.13rem;
  padding: 15px 0 13px 0;
  border-bottom: 1px solid #efefef;
  transition: background 0.19s, color 0.17s;
  width: 100%;
}
.mobile-nav a:last-child {
  border-bottom: none;
}

/* --- MAIN & SECTIONS --- */
main section {
  margin-bottom: 60px;
  padding: 40px 0px;
}
main section .container {
  padding: 0 0px;
}

/* --- FOOTER --- */
footer {
  background: #f7f7f7;
  border-top: 1px solid #ECECEC;
  padding: 46px 0 0 0;
  margin-top: 60px;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 36px;
}
footer img {
  width: 68px;
  margin-bottom: 0;
}
footer .content-wrapper {
  display: flex;
  flex-direction: row;
  gap: 54px;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
}
footer h3 {
  font-size: 1.1rem;
  text-transform: uppercase;
  margin-bottom: 10px;
  letter-spacing: 0.04em;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
footer nav a {
  margin: 0;
  padding: 0;
  font-size: 1rem;
  color: #1b1b1b;
}
footer .footer-bottom {
  font-size: 0.98rem;
  color: #4e4e4e;
  border-top: 1px solid #e8e8e8;
  padding: 22px 0 15px 0;
  width: 100%;
  text-align: center;
}

/* --- LISTS, UL, LI --- */
ul, ol {
  margin: 0 0 16px 0;
  padding-left: 18px;
}
ul li, ol li {
  position: relative;
  margin-bottom: 11px;
  line-height: 1.65;
  color: #252525;
  padding-left: 20px;
}
ul li::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #181818;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 7px;
}
ul li strong {
  color: #245B3C;
  font-weight: 700;
}

/* --- MICROS, ACCENTS, SHADOWS --- */
hr {
  border: none;
  border-top: 1.5px solid #f0f0f0;
  margin: 30px 0;
}

::-webkit-scrollbar {
  width: 7px;
}
::-webkit-scrollbar-thumb {
  background: #ddd;
  border-radius: 6px;
}
::-webkit-scrollbar-track {
  background: transparent;
}

/* --- COOKIES BANNER --- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #181818;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  z-index: 2001;
  box-shadow: 0 -2px 18px rgba(10,10,10,0.25);
  padding: 18px 14px 18px 24px;
  font-size: 1rem;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.27s, transform 0.27s;
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(120px);
}
.cookie-banner .cookie-banner-text {
  flex: 1 1 auto;
  color: #fff;
  font-size: 1.01rem;
  font-family: 'Roboto',sans-serif;
}
.cookie-banner .cookie-btn {
  background: #fff;
  color: #181818;
  border-radius: 18px;
  margin-left: 7px;
  padding: 7px 16px;
  font-family: 'Montserrat',sans-serif;
  font-weight: 700;
  font-size: 0.93rem;
  box-shadow: 0 1px 6px rgba(19,19,19,0.09);
  transition: background .15s, color .15s;
  border: 1px solid #ececec;
}
.cookie-banner .cookie-btn:hover, .cookie-banner .cookie-btn:focus {
  background: #2D2D2D;
  color: #fff;
}
.cookie-banner .cookie-btn.cookie-settings {
  background: #F2F2F2;
  color: #181818;
  margin-left: 10px;
  border: 1.5px solid #e3e3e3;
}
.cookie-banner .cookie-btn.cookie-settings:hover {
  background: #e3e3e3;
  color: #181818;
}

/* --- Cookie Modal --- */
.cookie-modal {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 2400;
  background: rgba(24,24,24,0.25);
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.cookie-modal.open {
  display: flex;
}
.cookie-modal .cookie-modal-content {
  background: #fff;
  color: #1d1d1d;
  border-radius: 18px;
  box-shadow: 0 10px 36px rgba(18,18,18,0.19);
  min-width: 320px;
  max-width: 90vw;
  padding: 32px 26px 18px 26px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: fadeInCookieModal .32s cubic-bezier(.59,.12,.43,1.1);
}
@keyframes fadeInCookieModal {
  from { opacity: 0; transform: translateY(40px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.cookie-modal-close-btn {
  position: absolute;
  top: 18px;
  right: 19px;
  color: #181818;
  background: none;
  font-size: 1.5rem;
  cursor: pointer;
  border: none;
}
.cookie-modal-title {
  font-size: 1.23rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  margin-bottom: 14px;
}
.cookie-toggle-row {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 11px;
  padding: 7px 0;
}
.cookie-toggle-label {
  font-size: 1rem;
  flex: 1 1 auto;
  color: #181818;
}
/* Custom toggle switch */
.cookie-switch {
  position: relative;
  display: inline-block;
  width: 42px;
  height: 23px;
}
.cookie-switch input {
  opacity: 0;
  width: 0; height: 0;
}
.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: #E8E8E8;
  border-radius: 22px;
  transition: background .18s;
}
.cookie-switch input:checked + .cookie-slider {
  background-color: #245B3C;
}
.cookie-slider:before {
  content: "";
  position: absolute;
  left: 3px;
  bottom: 4px;
  height: 15px; width: 15px;
  background-color: #fff;
  border-radius: 50%;
  transition: transform .19s;
}
.cookie-switch input:checked + .cookie-slider:before {
  transform: translateX(17px);
}
.cookie-modal-bottom {
  margin-top: 20px;
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}
.cookie-modal .cookie-btn {
  border-radius: 16px;
  font-size: 0.99rem;
  background: #181818;
  color: #fff;
  padding: 9px 18px;
  transition: background .14s, color .17s;
  font-family: 'Montserrat',sans-serif;
  font-weight: 700;
}
.cookie-modal .cookie-btn.cookie-cancel {
  background: #e5e5e5;
  color: #2c2c2c;
}
.cookie-modal .cookie-btn.cookie-cancel:hover {
  background: #cecece;
}
.cookie-modal .cookie-btn:hover {
  background: #2d2d2d;
  color: #AC8D58;
}

/* --- MONOCHROME SOPHISTICATED EFFECTS (SHADOWS, EDGES, CONTRAST) --- */
.card, .testimonial-card {
  border-radius: 13px;
  background: #fff;
  box-shadow: 0 2px 14px #d5d5d570;
}
.section, main section {
  background: #fff;
  box-shadow: 0 1.2px 5px rgba(36,36,36,0.03);
  border-radius: 20px;
}
h1,h2,h3 {
  color: #181818;
  font-family: 'Montserrat', sans-serif;
}

/* --- VISUAL HIERARCHY & ELEMENT SPACING --- */
.section:not(:last-child),
main section:not(:last-child) {
  margin-bottom: 60px;
}
.testimonial-card:not(:last-child) {
  margin-bottom: 20px;
}

.card:not(:last-child) {
  margin-bottom: 20px;
}

.content-wrapper > *:not(:last-child) {
  margin-bottom: 8px;
}

/* --- FORMS, LABELS, INPUTS --- */
input[type="text"],
input[type="email"],
input[type="password"],
textarea, select {
  border: 1.5px solid #E4E4E4;
  background: #fafafa;
  padding: 10px 13px;
  border-radius: 7px;
  font-size: 1rem;
  margin-bottom: 16px;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  transition: border 0.16s;
}
input:focus, textarea:focus, select:focus {
  border: 1.5px solid #245B3C;
  background: #fff;
}

label {
  font-size: 1rem;
  font-family: 'Montserrat',sans-serif;
  font-weight: 600;
  margin-bottom: 5px;
  color: #1b1b1b;
  display: block;
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 850px) {
  .container {
    max-width: 96vw;
    padding: 0 10px;
  }
  header .container {
    padding: 10px 8px;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  h1 {
    font-size: 2.08rem;
  }
  h2 {
    font-size: 1.44rem;
  }
  .section, main section {
    padding: 28px 6px;
    margin-bottom: 40px;
    border-radius: 15px;
  }
  footer .content-wrapper {
    flex-direction: column;
    gap: 22px;
  }
}
@media (max-width: 650px) {
  html {
    font-size: 14px;
  }
  header .container {
    gap: 9px;
    padding: 7px 3vw;
  }
  .footer-bottom {
    padding: 14px 0 9px 0;
    font-size: 0.93rem;
  }
}
@media (max-width: 560px) {
  .container {
    max-width: 99vw;
    padding: 0 4px;
  }
  .card-container, .content-grid {
    flex-direction: column;
    gap: 13px;
  }
  .card {
    min-width: 0;
    width: 100%;
    padding: 16px 11px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 14px 8px;
  }
}

/* --- MOBILE NAVIGATION SHOW/HIDE --- */
@media (max-width: 1000px) {
  header nav,
  header .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 1000px) {
  .mobile-menu, .mobile-menu-toggle { display: none !important; }
}

/* --- PRINT --- */
@media print {
  header, .mobile-menu, .cookie-banner, .cookie-modal, footer {
    display: none !important;
  }
  body {
    background: #fff;
    color: #000;
  }
}

/* --- MISCELLANEOUS & HELPERS --- */
::-webkit-input-placeholder { color: #A0A0A0; }
::-moz-placeholder { color: #A0A0A0; }
:-ms-input-placeholder { color: #A0A0A0; }
::placeholder { color: #A0A0A0; }

/* --- VISUAL CLARITY (Z-index stacking for overlays) --- */
.mobile-menu { z-index: 1200; }
.cookie-banner { z-index: 2001; }
.cookie-modal { z-index: 2400; }

/* PASS: Color scheme is monochrome with brand accent, professional typography, all containers use flexbox; no grid,columns, nor clamp(). */