/* 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-family: inherit;
  font-weight: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  min-height: 100vh;
  background: #fff;
  color: #18191a;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  background-color: #fff;
}
img {
  max-width: 100%;
  height: auto;
}
a {
  color: #18191a;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover,
a:focus {
  color: #185C37;
  outline: none;
}
ul, ol {
  list-style: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
button {
  font-family: inherit;
  background: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
/* BRAND TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #18191a;
  letter-spacing: -0.5px;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
  line-height: 1.15;
}
h2 {
  font-size: 2rem;
  margin-bottom: 24px;
  line-height: 1.2;
}
h3 {
  font-size: 1.375rem;
  margin-bottom: 16px;
  line-height: 1.3;
}
h4 {
  font-size: 1.125rem;
  margin-bottom: 8px;
  line-height: 1.3;
}
p, li, dl, dd {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #232323;
}
em {
  font-style: italic;
}
strong {
  font-weight: 700;
}
/* CONTAINER */
.container {
  width: 100%;
  max-width: 1050px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* HEADER / NAVIGATION */
header {
  background-color: #fff;
  border-bottom: 1px solid #ececec;
  position: relative;
  box-shadow: 0 2px 12px rgba(40,40,40,0.03);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 20px;
}
.logo img {
  height: 44px;
  display: block;
}
.main-nav {
  display: flex;
  gap: 30px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #232323;
  padding: 4px 0 2px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s, color 0.2s;
}
.main-nav a:hover,
.main-nav a:focus {
  color: #185C37;
  border-bottom: 2px solid #18191a;
  outline: none;
}
.cta-btn {
  display: inline-block;
  padding: 11px 30px 11px 28px;
  background: #18191a;
  color: #fff;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  border-radius: 100px;
  font-size: 1rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  letter-spacing: 0.05em;
  border: 2px solid #18191a;
  transition: background 0.15s, color 0.15s, border 0.15s, box-shadow 0.2s;
  position: relative;
  z-index: 2;
}
.cta-btn:hover, .cta-btn:focus {
  background: #fff;
  color: #18191a;
  border: 2px solid #232323;
  box-shadow: 0 0 0 3px #dadada;
}
.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  color: #18191a;
  background: none;
  padding: 5px 10px;
  border-radius: 6px;
  border: 1px solid transparent;
  margin-left: 5px;
  transition: background 0.15s, border 0.15s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #ececec;
  border: 1px solid #c9c9c9;
  outline: none;
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  box-shadow: 2px 0 40px rgba(0,0,0,0.12);
  z-index: 1500;
  transform: translateX(-105%);
  transition: transform 0.36s cubic-bezier(.86,0,.07,1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 38px 0 0 0;
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 18px;
  right: 28px;
  font-size: 2.2rem;
  color: #18191a;
  background: none;
  z-index: 1510;
  line-height: 1;
  padding: 2px 10px;
  border-radius: 8px;
  border: 1px solid transparent;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #ececec;
  border-color: #c9c9c9;
  outline: none;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 16px 0 0 28px;
}
.mobile-nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.12rem;
  color: #232323;
  padding: 10px 0;
  font-weight: 600;
  border-radius: 5px;
  width: max-content;
  transition: background 0.13s, color 0.13s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #18191a;
  color: #fff;
}
/* MAIN LAYOUT & SECTION SPACING */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 16px;
}
section:not(:last-child) {
  margin-bottom: 60px;
}
.content-wrapper {
  width: 100%;
}
.text-section {
  margin-bottom: 24px;
}
/* FLEX SPACING & LAYOUTS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(36,36,36,0.07);
  padding: 28px 22px;
  flex: 1 1 315px;
  min-width: 260px;
  transition: box-shadow 0.18s, border 0.18s, transform 0.18s;
}
.card:hover {
  box-shadow: 0 8px 32px rgba(32,32,32,0.16);
  transform: translateY(-2px) scale(1.015);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}
.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;
  margin-bottom: 20px;
  background: #fafbfc;
  border: 1px solid #e2e2e2;
  border-radius: 12px;
  box-shadow: 0 2px 16px 0 rgba(30,30,30,0.05);
  max-width: 530px;
  transition: box-shadow 0.19s, border 0.15s;
}
.testimonial-card p {
  font-size: 1.09rem;
  color: #18191a;
  margin-bottom: 4px;
}
.testimonial-info {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  color: #555;
  font-size: 0.98rem;
}
.testimonial-card:hover {
  box-shadow: 0 8px 34px 0 rgba(36,36,36,0.10);
  border-color: #bebebe;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
/* FEATURE GRID / SERVICE LIST */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin: 0 0 24px 0;
  padding: 0;
}
.feature-grid li {
  flex: 1 1 260px;
  min-width: 210px;
  background: #fafbfc;
  border-radius: 12px;
  box-shadow: 0 2px 8px 0 rgba(41,41,41,0.07);
  padding: 22px 19px 18px;
  border: 1px solid #e8e8e8;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
  transition: box-shadow 0.17s, border 0.12s;
}
.feature-grid li:hover {
  box-shadow: 0 8px 32px rgba(32,32,32,0.11);
  border: 1px solid #c8c8c8;
}
.feature-grid img {
  width: 36px;
  height: 36px;
  margin-bottom: 5px;
}
.feature-grid strong {
  font-size: 1.12rem;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
}
.feature-grid p {
  font-size: 0.98rem;
}

/* Blog & Service cards */
.blog-list, .service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.blog-list article, .service-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px 0 rgba(34,34,34,0.08);
  border: 1px solid #e4e4e4;
  padding: 22px 19px;
  flex: 1 1 295px;
  min-width: 220px;
  margin-bottom: 0;
  transition: box-shadow 0.15s, border 0.15s, transform 0.18s;
  display: flex;
  flex-direction: column;
  gap: 13px;
  position: relative;
}
.blog-list article:hover, .service-card:hover {
  box-shadow: 0 8px 32px rgba(44,44,44,0.11);
  border: 1px solid #b7b7b7;
  transform: translateY(-2px) scale(1.012);
}
.service-card img {
  width: 44px;
  height: 44px;
  margin-bottom: 2px;
}
.service-card h3 {
  font-size: 1.1rem;
}
.service-card div {
  font-family: 'Montserrat','Roboto',sans-serif;
  font-size: 0.98rem;
  font-style: italic;
  color: #434343;
}
.categories-list {
  margin-top: 20px;
}
.categories-list ul {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.categories-list li {
  background: #18191a;
  color: #fff;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  border-radius: 7px;
  padding: 5px 15px;
  font-size: 0.98rem;
  margin-bottom: 0;
}
/* COOKIE BANNER */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #18191a;
  color: #fff;
  padding: 25px 18px 22px;
  box-shadow: 0 -2px 36px rgba(30,30,30,0.14);
  display: flex;
  flex-direction: column;
  z-index: 3000;
  gap: 18px;
  font-size: 1rem;
  align-items: center;
  animation: cookie-slide-in 0.45s cubic-bezier(.8,.6,.4,1.03);
}
@keyframes cookie-slide-in {
  from { transform: translateY(112px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 5px;
}
.cookie-banner button {
  padding: 8px 22px;
  font-size: 1rem;
  border-radius: 32px;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  border: none;
  margin: 0;
  color: #18191a;
  background: #fff;
  box-shadow: 0 2px 11px rgba(23,23,23,0.06);
  transition: background 0.13s, color 0.13s;
}
.cookie-banner button:not(:first-child) {
  background: #ececec;
}
.cookie-banner button:hover,
.cookie-banner button:focus {
  background: #185C37;
  color: #fff;
}

/* Cookie Banner Modal */
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  width: 96vw;
  max-width: 410px;
  background: #fff;
  color: #18191a;
  border-radius: 14px;
  box-shadow: 0 8px 56px 0 rgba(15,15,15,0.19);
  transform: translate(-50%, -55%) scale(0.97);
  z-index: 4000;
  padding: 34px 28px 25px;
  opacity: 1;
  animation: cookie-modal-in 0.38s cubic-bezier(.86,0,.07,1);
  display: flex;
  flex-direction: column;
  gap: 22px;
}
@keyframes cookie-modal-in {
  from { opacity: 0; transform: translate(-50%, -65%) scale(0.89); }
  to   { opacity: 1; transform: translate(-50%, -55%) scale(1); }
}
.cookie-modal-close {
  position: absolute;
  right: 19px;
  top: 16px;
  font-size: 1.7rem;
  color: #18191a;
  background: none;
  border: 1px solid transparent;
  border-radius: 7px;
  padding: 3px 10px;
  line-height: 1;
  z-index: 4100;
}
.cookie-modal-close:hover,
.cookie-modal-close:focus {
  background: #ececec;
  border: 1px solid #c9c9c9;
  outline: none;
}
.cookie-modal h3{
  font-size: 1.25rem;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #18191a;
  margin-bottom: 1px;
  margin-top: 0;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
  font-family: 'Roboto', Arial, sans-serif;
}
.cookie-category input[type="checkbox"] {
  width: 22px;
  height: 22px;
  accent-color: #18191a;
  cursor: pointer;
}
.cookie-category label {
  font-weight: 500;
}
.cookie-category.essential input[type="checkbox"]:checked {
  accent-color: #0099B5;
}
/* MODAL OVERLAY */
.modal-overlay {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(27,27,27,0.46);
  z-index: 3999;
  animation: modal-fadein 0.18s;
}
@keyframes modal-fadein {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* FOOTER */
footer {
  background: #18191a;
  color: #fff;
  border-top: 1px solid #ececec;
  padding: 40px 0 34px;
}
footer .container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.12rem;
}
.footer-brand img {
  height: 38px;
}
.footer-nav {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}
.footer-nav a {
  color: #fff;
  font-size: 1rem;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  opacity: 0.98;
  transition: color 0.17s, opacity 0.13s;
  text-decoration: underline transparent 1.5px;
}
.footer-nav a:hover,
.footer-nav a:focus {
  color: #0099B5;
  text-decoration-color: #0099B5;
  opacity: 1;
  outline: none;
}

/* FORMS & LISTS */
dt {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  color: #232323;
  margin-top: 10px;
}
dd {
  margin-bottom: 7px;
}
.content-wrapper ul, .content-wrapper ol {
  line-height: 1.8;
  padding-left: 0;
  margin-bottom: 18px;
  list-style: none;
}
.content-wrapper ul li,
.content-wrapper ol li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 7px;
  font-size: 1rem;
}
.content-wrapper ul li:before {
  content: '\2022';
  position: absolute;
  left: 0;
  color: #0099B5;
  font-size: 1.14em;
}
.content-wrapper ol li {
  counter-increment: step-counter;
}
.content-wrapper ol {
  counter-reset: step-counter;
}
.content-wrapper ol li:before {
  content: counter(step-counter)'.';
  position: absolute;
  left: 0;
  color: #18191a;
  font-weight: 700;
  font-size: 1.03em;
}
.text-section ul li:before {
  color: #18191a;
}
dl {
  margin-bottom: 16px;
}
dt {
  margin-bottom: 2px;
}
/* MISC */
.text-section h2, .text-section h3, .text-section h4 {
  margin-top: 22px;
  margin-bottom: 10px;
  color: #18191a;
}
.text-section ul {
  margin-bottom: 16px;
}
.text-section p {
  margin-bottom: 9px;
}
/* PAGE SPECIFIC */
.content-wrapper > *:not(:last-child) {
  margin-bottom: 20px;
}
/* --------- ANIMATIONS & TRANSITIONS --------- */
.card, .feature-grid li, .testimonial-card, .service-card, .blog-list article {
  transition: box-shadow 0.19s, border 0.18s, transform 0.19s;
}
.cta-btn, .cookie-banner button, .mobile-menu-toggle, .mobile-menu-close {
  transition: background 0.13s, color 0.13s, border 0.13s;
}
/* --------- MONOCHROME ELEGANT EFFECTS --------- */
.card, .feature-grid li, .testimonial-card, .service-card, .blog-list article {
  background: #fff;
  color: #232323;
  border-radius: 12px;
  border: 1px solid #ececec;
}
.card:hover, .feature-grid li:hover, .testimonial-card:hover, .service-card:hover, .blog-list article:hover {
  box-shadow: 0 8px 40px rgba(16,16,16,0.10);
  border: 1.5px solid #b2b2b2;
}
/**** RESPONSIVE DESIGN ****/
@media (max-width: 980px) {
  .container {
    max-width: 92vw;
  }
  .main-nav {
    gap: 16px;
  }
  .card, .service-card, .blog-list article {
    flex: 1 1 270px;
  }
  .feature-grid {
    gap: 18px;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  .container {
    padding-left: 12px; padding-right: 12px;
  }
  header .container {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 14px;
    min-height: 54px;
  }
  .main-nav {
    display: none;
  }
  .cta-btn {
    padding: 10px 18px;
    font-size: 1rem;
  }
  .mobile-menu-toggle {
    display: block;
    z-index: 2000;
  }
  .mobile-menu {
    display: flex;
    padding-top: 34px;
  }
  .section {
    padding: 26px 5px;
    margin-bottom: 40px;
    border-radius: 8px;
  }
  .content-wrapper {
    padding: 0;
  }
  .feature-grid,
  .blog-list,
  .service-list,
  .content-grid,
  .card-container {
    flex-direction: column;
    gap: 18px;
  }
  .testimonial-card, .card, .service-card, .blog-list article, .feature-grid li {
    width: 100%;
    min-width: 0;
  }
  .footer-nav {
    gap: 14px;
  }
  .footer-brand {
    gap: 7px;
    font-size: 1rem;
  }
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .categories-list ul {
    flex-wrap: wrap;
    gap: 9px;
  }
}
@media (max-width: 530px) {
  html {
    font-size: 14px;
  }
  h1 { font-size: 1.68rem; }
  h2 { font-size: 1.23rem; }
  .card, .service-card, .blog-list article, .feature-grid li, .testimonial-card {
    padding: 12px 8px;
  }
  .cookie-modal {
    padding: 22px 7px 18px;
    font-size: 0.96rem;
  }
}
/****** EXTRAS ******/
::-webkit-scrollbar {
  width: 8px;
  background: #f3f3f3;
}
::-webkit-scrollbar-thumb {
  background: #e0e0e0;
  border-radius: 8px;
}
::-webkit-scrollbar-thumb:hover {
  background: #b7b7b7;
}
/**** PRINT REDUCED ****/
@media print {
  header, footer, .mobile-menu, .cookie-banner, .modal-overlay, .cookie-modal { display: none !important; }
}
