/*! CSS RESET & BASES - normalize, reset margins/paddings, box-sizing */
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, main, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  box-sizing: border-box;
  vertical-align: baseline;
}
html {
  height: 100%;
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  background: #fff;
  color: #191919;
  font-family: 'Open Sans', Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: #191919;
  background: none;
  text-decoration: underline;
  transition: color 0.2s cubic-bezier(.4,0,.2,1);
}
a:hover, a:focus { color: #222 !important; text-decoration: none; }
strong { font-weight: 700; }
button, input, textarea, select {
  font-family: inherit;
  font-size: 1em;
  line-height: inherit;
  color: inherit;
}
button { cursor: pointer; background: none; border: none; }

/* ========== COLOR PALETTE & BRAND ========== */
:root {
  --mono-bg: #fff;
  --mono-bg-alt: #F8F8F8;
  --mono-contrast-strong: #191919;
  --mono-contrast-med: #353535;
  --mono-contrast-light: #868686;
  --mono-surface: #232323;
  --mono-border: #D3D3D3;
  --primary: #245A40; /* not used in this style but for accents if needed */
  --secondary: #B3C149; /* not used */
  --accent: #F9FAEE; /* not used */
}

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: var(--mono-contrast-strong);
  font-weight: 700;
  letter-spacing: .01em;
  line-height: 1.2;
  margin-bottom: 18px;
}
h1 { font-size: 2.2rem; margin-bottom: 22px; }
h2 { font-size: 1.65rem; margin-bottom: 20px; }
h3 { font-size: 1.2rem; margin-bottom: 15px; font-weight: 600; }
h4 { font-size: 1.08rem; font-weight: 600; }
h5, h6 { font-size: 1rem; }
p, ul, ol, blockquote, pre {
  margin-bottom: 18px;
  font-family: 'Open Sans', Arial, sans-serif;
  color: var(--mono-contrast-med);
  font-size: 1rem;
  line-height: 1.7;
}
ul, ol { padding-left: 1.5em; }
li { margin-bottom: 8px; }

.text-section ul, .text-section ol {
  margin-bottom: 18px;
}

@media (min-width: 600px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.3rem; }
}

/* ========== LAYOUT STRUCTURE ========== */
.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: 0;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--mono-bg);
  border-radius: 18px;
  box-shadow: 0 3px 22px rgba(29,29,29,0.065), 0 1.5px 4px rgba(0,0,0,0.04);
}

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

.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--mono-bg-alt);
  border-radius: 14px;
  box-shadow: 0 1px 6px rgba(29,29,29,0.06);
  padding: 24px;
  display: flex;
  flex-direction: column;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.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: #fff;
  border: 1.5px solid var(--mono-border);
  border-radius: 11px;
  margin-bottom: 20px;
  box-shadow: 0 1px 7px rgba(0,0,0,0.05);
  transition: box-shadow .3s;
}
.testimonial-card p {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--mono-contrast-strong);
}
.testimonial-card span {
  color: var(--mono-contrast-light);
  font-size: .95rem;
  margin-left: auto;
}
.testimonial-card:hover {
  box-shadow: 0 2px 14px rgba(29,29,29,.10);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.features, .feature-grid, .features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  width: 100%;
}
.feature-grid > div, .features-grid > div {
  background: var(--mono-bg-alt);
  border-radius: 10px;
  box-shadow: 0 1px 6px rgba(0,0,0,0.06);
  padding: 24px 20px;
  flex: 1 1 260px;
  min-width: 220px;
  max-width: 330px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 0;
}
.feature-grid img, .features-grid img {
  height: 36px;
  width: 36px;
  filter: grayscale(1) contrast(1.4);
  opacity: .75;
  margin-bottom: 6px;
}

.alert {
  background: #232323;
  color: #fff;
  border-radius: 9px;
  padding: 13px 17px;
  font-size: 1rem;
  margin-bottom: 18px;
}

.faq-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.faq-list > div {
  background: var(--mono-bg-alt);
  border-radius: 9px;
  padding: 18px 20px;
  flex: 1 1 275px;
  box-shadow: 0 1px 5px rgba(0,0,0,.05);
  margin-bottom: 0;
}

@media (max-width: 950px) {
  .container { max-width: 100%; }
  .feature-grid > div, .features-grid > div, .faq-list > div { min-width: 180px; max-width: 100%; }
}
@media (max-width: 768px) {
  .content-grid, .feature-grid, .features-grid, .faq-list { flex-direction: column; gap: 20px; }
  .section { padding: 28px 8px; margin-bottom: 38px; }
  .card-container { flex-direction: column; gap: 16px; }
  .text-image-section { flex-direction: column; gap: 20px; }
}

/* ========== HEADER & NAVIGATION ========== */
header {
  background: #fff;
  border-bottom: 1.5px solid var(--mono-border);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 44;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  padding: 0 20px;
  min-height: 68px;
}
.logo img, footer .logo img {
  height: 42px;
  width: auto;
}
header nav {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-left: 38px;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  color: var(--mono-contrast-strong);
  text-decoration: none;
  font-size: 1rem;
  letter-spacing: .01em;
  position: relative;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: border-color .15s, color .18s;
}
header nav a:hover,
header nav a:focus {
  color: #232323;
  border-bottom: 2px solid #232323;
}
.cta-button {
  background: #191919;
  color: #fff !important;
  border: none;
  border-radius: 7px;
  padding: 11px 32px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.03rem;
  letter-spacing: .01em;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 2px 6px rgba(0,0,0,0.07);
  margin-left: 34px;
  margin-right: 0;
  transition: background .22s, box-shadow .22s, color .16s;
  outline: 0;
  cursor: pointer;
  position: relative;
}
.cta-button:hover, .cta-button:focus {
  background: #353535;
  color: #fff !important;
  box-shadow: 0 4px 14px rgba(0,0,0,0.09);
}

.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  color: var(--mono-contrast-strong);
  margin-left: 32px;
  background: none;
  border: none;
  padding: 5px 12px;
  border-radius: 5px;
  transition: background .2s;
  z-index: 101;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #eee;
}

@media (max-width: 950px) {
  header .container { padding: 0 10px; }
  .cta-button { margin-left: 16px; padding: 10px 16px; }
  header nav { margin-left: 14px; gap: 13px; }
}
@media (max-width: 768px) {
  header .container {
    flex-direction: row;
    padding: 0 6px;
    min-height: 52px;
  }
  header nav {
    display: none;
  }
  .cta-button {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* ========== MOBILE MENU ========== */
.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1112;
  background: rgba(27, 27, 27, 0.96);
  transform: translateX(-110vw);
  opacity: 0;
  pointer-events: none;
  transition: transform .34s cubic-bezier(.55,0,.33,1), opacity .28s;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  font-size: 2rem;
  color: #fff;
  background: none;
  border: none;
  margin: 28px 0 14px 22px;
  align-self: flex-start;
  cursor: pointer;
  border-radius: 7px;
  transition: background .18s;
  padding: 6px 8px;
  z-index: 1113;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #232323;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-top: 32px;
  gap: 10px;
  padding-left: 22px;
}
.mobile-nav a {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #fff;
  font-size: 1.29rem;
  font-weight: 600;
  padding: 17px 0;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.07);
  transition: background .15s, color .15s;
  min-width: 160px;
  width: 85%;
  border-radius: 7px 7px 0 0;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #232323;
  color: #B3C149;
}

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

/* ========== HERO SECTION ========== */
.hero {
  padding: 74px 0 44px 0;
  background: var(--mono-bg-alt);
  box-shadow: 0 4px 22px rgba(0,0,0,0.04);
  border-bottom: 1.5px solid var(--mono-border);
}
.hero .container {
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hero .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 0;
}
.hero h1 {
  font-size: 2.1rem;
  margin-bottom: 13px;
  color: #101010;
}
.hero p {
  font-size: 1.23rem;
  color: #353535;
  margin-bottom: 24px;
}
.hero .cta-button {
  margin: 0 auto;
  box-shadow: 0 4px 12px rgba(40,40,40,0.13);
  padding: 13px 38px;
  font-size: 1.15rem;
}
@media (max-width: 768px) {
  .hero { padding: 38px 0 22px 0; }
  .hero h1 { font-size: 1.38rem; }
  .hero p { font-size: 1rem; }
  .hero .cta-button { padding: 11px 22px; font-size: 1rem; }
}

/* ========== SECTIONS & CTA ========== */
.cta {
  background: #232323;
  color: #fff;
  border-radius: 19px;
  margin-bottom: 60px;
  text-align: center;
  box-shadow: 0 3px 29px rgba(0,0,0,0.08);
  transition: box-shadow .2s;
}
.cta .text-section { color: #fff; }
.cta h2 { color: #fff; }
.cta p { color: #eaeaea; }
.cta .cta-button {
  margin: 0 auto;
  margin-top: 18px;
  background: #fff;
  color: #191919 !important;
  border: 1.5px solid #191919;
  box-shadow: 0 1px 6px rgba(30,30,30,0.06);
}
.cta .cta-button:hover, .cta .cta-button:focus {
  background: #191919;
  color: #fff !important;
  border: 1.5px solid #fff;
}
@media (max-width: 768px) {
  .cta { border-radius: 11px; margin-bottom: 38px; }
}

.text-section {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.text-section h1,.text-section h2,.text-section h3,.text-section h4 { margin-bottom: 15px; }

/* ========== FOOTER ========== */
footer {
  background: #131313;
  color: #f8f8f8;
  padding: 46px 0 23px 0;
  border-top: 3px solid #232323;
}
footer .container {
  flex-direction: column;
  align-items: center;
  gap: 0;
}
footer .content-wrapper {
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  width: 100%;
  max-width: 1060px;
}
footer .logo img {
  filter: brightness(90%) grayscale(55%);
  margin-bottom: 0;
  height: 37px;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0 28px;
}
footer nav a {
  color: #f8f8f8;
  text-decoration: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  transition: color .17s;
}
footer nav a:hover,footer nav a:focus { color: #B3C149; }
.footer-contact, .company-info {
  display: flex;
  flex-direction: column;
  gap: 3.5px;
  font-size: .97rem;
  color: #bbb;
}
.footer-contact img {
  width: 23px;
  height: 23px;
  vertical-align: middle;
  margin-right: 6px;
  filter: grayscale(1) contrast(1.12);
}
footer span a {
  color: #B3C149;
  text-decoration: underline;
  transition: color .15s;
}
footer span a:hover,footer span a:focus { color: #f8f8f8; }
@media (max-width: 900px) {
  footer .content-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
  }
}
@media (max-width: 600px) {
  footer { padding: 32px 0 18px 0; }
  footer .content-wrapper { gap: 20px; }
}

/* ========== BUTTONS & INTERACTIVES ========== */
button {
  font-family: 'Montserrat', Arial, sans-serif;
  border: none;
  outline: none;
  transition: background .18s, color .13s;
}

/* ========== SPACING & ALIGNMENT ========== */
.section,
.card-container,
.card,
.content-grid,
.text-image-section,
.testimonial-card,
.feature-item,
.features-grid,
.feature-grid,
.faq-list {
  /* Mandated spacing rules */
}
.section { margin-bottom: 60px; padding: 40px 20px; }
.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card { 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; align-items: center; gap: 20px; padding: 20px; }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }

/* ========== MICRO-INTERACTIONS & ANIMATIONS ========== */
.cta-button, .mobile-menu-toggle, .mobile-menu-close, .feature-grid > div, .features-grid > div, .testimonial-card, .faq-list > div, .card {
  transition: box-shadow .22s, background .19s, color .17s, transform .17s;
}
.cta-button:active, .mobile-menu-toggle:active, .mobile-menu-close:active {
  transform: scale(.98);
}
.feature-grid > div:hover, .features-grid > div:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,.11);
  background: #fff;
  transform: translateY(-3px);
}
.faq-list > div:hover {
  box-shadow: 0 6px 18px rgba(0,0,0,.10);
}
.card:hover {
  box-shadow: 0 6px 18px rgba(0,0,0,.13);
  background: #fff;
  transform: translateY(-3px);
}

/* ========== FORMS if used ========== */
input, textarea, select {
  background: #fff;
  border: 1px solid #BAC1C5;
  border-radius: 7px;
  padding: 10px 14px;
  color: #111;
  font-size: 1rem;
  transition: border-color .14s, box-shadow .22s;
  margin-bottom: 16px;
}
input:focus, textarea:focus, select:focus {
  border-color: #245A40;
  box-shadow: 0 2px 6px rgba(36,90,64,0.07);
}

/* ========== COOKIE CONSENT BANNER ========== */
.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  z-index: 1500;
  background: #191919;
  color: #fff;
  box-shadow: 0 -6px 28px rgba(0,0,0,0.13);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 16px 22px 16px 18px;
  font-size: 1rem;
  animation: slideUpCookies .42s cubic-bezier(.7,.1,.47,1) 1;
}
@keyframes slideUpCookies {
  from { transform: translateY(100px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-consent-banner .cookie-consent-btn {
  background: #fff;
  color: #232323;
  border: 1.5px solid #232323;
  border-radius: 6px;
  padding: 8px 19px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.03em;
  font-weight: 600;
  margin-left: 10px;
  margin-right: 0;
  box-shadow: 0 2px 7px rgba(19,19,19,.08);
  cursor: pointer;
  transition: background .21s, color .12s;
  margin-bottom: 0;
}
.cookie-consent-banner .cookie-consent-btn:hover,
.cookie-consent-banner .cookie-consent-btn:focus {
  background: #232323;
  color: #fff;
  border-color: #fff;
}
.cookie-consent-banner .cookie-settings-btn {
  background: #353535;
  color: #fff;
  margin-left: 18px;
  border: 1.5px solid #353535;
}
@media (max-width: 700px) {
  .cookie-consent-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    font-size: .97rem;
    padding: 16px 12px 16px 12px;
  }
  .cookie-consent-banner .cookie-consent-btn, .cookie-consent-banner .cookie-settings-btn { margin-top: 6px; margin-left: 0; width: 100%; max-width: 230px; }
}

/* ========== COOKIE CONSENT MODAL ========== */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(30,30,30,0.68);
  z-index: 1510;
  display: none;
  align-items: center;
  justify-content: center;
  animation: fadeInCookieOverlay .25s cubic-bezier(.6,0,.5,1) 1;
}
.cookie-modal-overlay.open { display: flex; }
@keyframes fadeInCookieOverlay { from { opacity: 0; } to { opacity: 1; } }
.cookie-consent-modal {
  background: #fff;
  color: #222;
  border-radius: 19px;
  box-shadow: 0 12px 48px rgba(30,30,30,0.16);
  width: 96vw; max-width: 410px;
  padding: 36px 30px 32px 30px;
  z-index: 1511;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  animation: modalPopIn .39s cubic-bezier(.5,1,.45,1.2);
  position: relative;
}
@keyframes modalPopIn { from { transform: scale(.93); opacity:0; } to { transform: scale(1); opacity:1; } }
.cookie-modal-close {
  position: absolute;
  top: 10px;
  right: 13px;
  font-size: 2rem;
  color: #232323;
  border: none;
  background: none;
  border-radius: 5px;
  padding: 2px 7px;
  transition: background .14s;
  cursor: pointer;
}
.cookie-modal-close:hover, .cookie-modal-close:focus { background: #ebebeb; }
.cookie-modal-title {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.12rem;
  font-weight: 700;
  color: #232323;
  margin-bottom: 13px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 23px;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  background: #f6f6f6;
  border-radius: 7px;
  padding: 12px 13px;
  box-shadow: 0 1px 5px rgba(0,0,0,0.05);
}
.cookie-toggle {
  display: flex;
  align-items: center;
  gap: 0;
}
.cookie-toggle input[type="checkbox"] {
  width: 24px; height: 24px;
  accent-color: #232323;
  margin-right: 5px;
}
.cookie-category.essential {
  background: #EEE;
  color: #AAAAAA;
}
.cookie-category.essential .cookie-toggle input {
  pointer-events: none;
  opacity: 0.52;
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
  justify-content: flex-end;
  margin-top: 14px;
}
.cookie-modal-actions .cookie-consent-btn {
  padding: 9px 17px;
  border-radius: 6px;
}
@media (max-width: 450px) {
  .cookie-consent-modal { padding: 24px 8px 18px 8px; max-width: 99vw; }
}

/* Hide modal/overlay when not active (applies if cookies not implemented yet) */
.cookie-modal-overlay:not(.open), .cookie-consent-modal:not(.open) { display: none !important; }

/* ========== UTILITY ========== */
.visually-hidden { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0,0,0,0) !important; border: 0 !important; }

/* ========== SCROLLBAR ========== */
::-webkit-scrollbar { width: 11px; background: #ECECEC; }
::-webkit-scrollbar-thumb {
  background: #242424;
  border-radius: 7px;
  border: 2px solid #ECECEC;
}

/* ========== ACCENT FOCUS OUTLINES ========== */
a:focus, button:focus, .cta-button:focus {
  outline: 2px solid #232323;
  outline-offset: 2px;
  box-shadow: 0 0 0 4px rgba(36, 90, 64, 0.12);
}

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