/* CSS RESET & BASE TYPOGRAPHY */
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;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  min-height: 100vh;
  background: #fafafa;
  color: #121212;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
*, *:before, *:after {
  box-sizing: inherit;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
strong {
  font-weight: 600;
}
em {
  font-style: italic;
}
ul, ol {
  padding-left: 25px;
  margin-bottom: 16px;
}
li + li {
  margin-top: 8px;
}

/* BRAND TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #121212;
  margin-bottom: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
h1 {
  font-size: 2.25rem;
  line-height: 1.1;
  margin-bottom: 24px;
}
h2 {
  font-size: 1.5rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}
h4, h5, h6 {
  font-size: 1rem;
  font-weight: 600;
}
p {
  margin-bottom: 16px;
  font-size: 1rem;
  color: #222;
}

/* LAYOUT UTILITIES */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  width: 100%;
  box-sizing: border-box;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 24px 4px rgba(20,20,20,0.04);
  transition: box-shadow 0.2s;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

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

.card {
  background: #fff;
  border-radius: 16px;
  margin-bottom: 20px;
  box-shadow: 0 2px 16px 0 rgba(0,0,0,0.1);
  position: relative;
  padding: 32px;
  min-width: 250px;
  flex: 1 1 300px;
  transition: box-shadow 0.18s;
}
.card:hover {
  box-shadow: 0 4px 36px 4px rgba(0,0,0,0.16);
}

.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 32px 16px 32px;
  margin-bottom: 20px;
  border-radius: 16px;
  background: #f3f3f3;
  box-shadow: 0 2px 14px 0 rgba(20,20,20,0.04);
  border-left: 5px solid #121212;
  min-width: 240px;
  max-width: 600px;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.testimonial-card:hover {
  border-left-color: #256029;
  box-shadow: 0 4px 24px 2px rgba(30,30,30,0.08);
}
.testimonial-card p {
  color: #121212;
  font-size: 1.05rem;
  font-style: italic;
  margin-bottom: 6px;
}
.testimonial-card strong {
  font-weight: 600;
  color: #222;
  font-size: 1rem;
}
.testimonial-card span {
  font-size: 1rem;
  color: #444;
  margin-left: 12px;
  letter-spacing: 1.5px;
}

.feature-grid  {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 16px;
}
.feature-grid > div {
  background: #fafafa;
  border-radius: 16px;
  box-shadow: 0 2px 16px 0 rgba(0,0,0,0.04);
  padding: 28px 22px 24px 22px;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  min-width: 220px;
  max-width: 320px;
  transition: background 0.2s, box-shadow 0.2s;
}
.feature-grid > div:hover {
  background: #eaeaea;
  box-shadow: 0 6px 28px 2px rgba(40,40,40,0.09);
}
.feature-grid img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  margin-bottom: 6px;
  filter: grayscale(100%) contrast(1.16);
}
.feature-grid h3 {
  font-size: 1.1rem;
  color: #121212;
}
.feature-grid p {
  color: #444;
  font-size: 0.97rem;
}

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

/* CONTACT CARD */
.contact-card {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 30px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 1px 13px 0 rgba(40,40,40,0.05);
  padding: 24px 28px 22px 28px;
  margin-top: 24px;
  margin-bottom: 20px;
}
.contact-card > div {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
}
.contact-card img {
  width: 28px;
  height: 28px;
  filter: grayscale(100%) brightness(0.2);
  opacity: 0.77;
}
.contact-card a {
  color: #121212;
  font-weight: 500;
  border-bottom: 1px solid #222;
  transition: color 0.2s, border-color 0.18s;
}
.contact-card a:hover {
  color: #256029;
  border-color: #256029;
}
/* BADGES */
.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 10px;
}
.badges span {
  background: #e4e4e4;
  color: #121212;
  border-radius: 12px;
  padding: 6px 18px;
  font-size: 0.97rem;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.02em;
  font-weight: 500;
}

/* BUTTONS & CTA */
.cta-primary, .cta-primary:visited {
  display: inline-block;
  background: #121212;
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  padding: 14px 32px;
  border: none;
  border-radius: 25px;
  box-shadow: 0 2px 8px 0 rgba(0,0,0,0.09);
  cursor: pointer;
  margin-top: 6px;
  margin-bottom: 8px;
  transition: background 0.18s, box-shadow 0.22s, transform 0.1s;
  letter-spacing: 0.04em;
}
.cta-primary:hover, .cta-primary:focus {
  background: #256029;
  color: #fff;
  box-shadow: 0 5px 24px 2px rgba(37,96,41,0.17);
  transform: translateY(-2px) scale(1.017);
}

button, .button, input[type="button"], input[type="submit"] {
  font-family: inherit;
  font-size: 1rem;
  border: none;
  background: #272727;
  color: #fff;
  border-radius: 22px;
  padding: 10px 26px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: background 0.2s, box-shadow 0.2s, color 0.18s;
}
button:hover, .button:hover, input[type="button"]:hover, input[type="submit"]:hover {
  background: #121212;
  color: #fff;
  box-shadow: 0 4px 18px 1px rgba(0,0,0,0.11);
}

/* HEADER & NAVIGATION */
header {
  background: #fff;
  box-shadow: 0 2px 18px 0 rgba(20,20,20,0.06);
  padding: 20px 0 18px 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  position: relative;
  z-index: 100;
}
header > a > img {
  height: 48px;
}
header nav {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #222;
  letter-spacing: 0.03em;
  padding: 7px 12px;
  border-radius: 6px;
  transition: background 0.18s, color 0.18s;
}
header nav a:hover, header nav a:focus {
  background: #eaeaea;
  color: #256029;
}
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #121212;
  font-size: 2rem;
  margin-left: 18px;
  cursor: pointer;
  border-radius: 8px;
  padding: 8px 12px;
  transition: background 0.18s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #eaeaea;
  color: #256029;
}

/* MOBILE NAVIGATION OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(18,18,18,0.93);
  transform: translateX(100vw);
  transition: transform 0.45s cubic-bezier(.76,.09,.45,1), opacity 0.2s;
  opacity: 0;
  z-index: 8888;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding-top: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
}
.mobile-menu .mobile-menu-close {
  background: none;
  color: #fff;
  font-size: 2.2rem;
  border: none;
  margin: 28px 42px 8px 0;
  cursor: pointer;
  padding: 6px 10px;
  transition: background 0.15s, color 0.15s;
  border-radius: 7px;
  align-self: flex-end;
  z-index: 9999;
}
.mobile-menu .mobile-menu-close:hover,
.mobile-menu .mobile-menu-close:focus {
  background: #256029;
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 100vw;
  align-items: flex-start;
  margin-top: 16px;
  padding: 28px 44px 0 48px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  padding: 12px 0;
  letter-spacing: 0.03em;
  border-radius: 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  width: 100%;
  transition: color 0.15s, background 0.15s;
  display: block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #7B7B7B;
  background: #181818;
}

/* FOOTER */
footer {
  background: #111111;
  color: #ededed;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 40px 0 20px 0;
  margin-top: 30px;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
  justify-content: center;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 7px;
}
footer nav a {
  color: #ededed;
  font-size: 1rem;
  font-weight: 400;
  border-bottom: 1px solid transparent;
  transition: color 0.17s, border-color 0.17s;
}
footer nav a:hover, footer nav a:focus {
  color: #fff;
  border-color: #ededed;
}
footer .social-links {
  display: flex;
  gap: 14px;
  margin-bottom: 6px;
}
footer .social-links img {
  width: 32px;
  height: 32px;
  filter: grayscale(100%) brightness(2.7);
  opacity: 0.85;
  transition: filter 0.18s, opacity 0.18s;
}
footer .social-links a:hover img {
  filter: grayscale(0%) brightness(1.1);
  opacity: 1;
}
footer span {
  font-size: 0.95rem;
  color: #bdbdbd;
  letter-spacing: 0.01em;
}

/* TEXT SECTIONS, LISTS, ETC. */
.text-section h2 {
  margin-top: 24px;
  color: #111;
}
.text-section h2 + p, .text-section h2 + ul {
  margin-top: 0;
}
.text-section ul {
  margin-bottom: 16px;
  color: #242424;
}
.text-section ul li {
  font-size: 1rem;
  margin-bottom: 7px;
}

/* MODALS, BANNERS, COOKIES */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 99999;
  background: rgba(35,35,35,0.96);
  color: #f5f5f5;
  box-shadow: 0 -4px 16px 4px rgba(0,0,0,0.12);
  border-radius: 14px 14px 0 0;
  padding: 18px 18px 16px 18px;
  width: 100vw;
  max-width: 100vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 17px;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  animation: fadeInCookieBanner 0.6s cubic-bezier(.23,1,0.32,1);
}
@keyframes fadeInCookieBanner {
  from { transform: translateY(65px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-banner-buttons {
  display: flex;
  gap: 18px;
  margin-top: 5px;
  flex-wrap: wrap;
}
.cookie-banner-buttons button {
  background: #fff;
  color: #121212;
  border: none;
  border-radius: 20px;
  padding: 12px 26px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  box-shadow: 0 2px 8px 0 rgba(0,0,0,0.09);
  cursor: pointer;
  transition: background 0.17s, color 0.15s, box-shadow 0.15s;
}
.cookie-banner-buttons button.accept {
  background: #256029;
  color: #fff;
}
.cookie-banner-buttons button.reject {
  background: #dedede;
  color: #111;
}
.cookie-banner-buttons button.settings {
  background: #111;
  color: #fff;
}
.cookie-banner-buttons button:hover,
.cookie-banner-buttons button:focus {
  background: #7AA65B;
  color: #fff;
}

/* COOKIE PREF MODAL */
.cookie-modal-overlay {
  position: fixed;
  z-index: 10500;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(18,18,18,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeCookieModal 0.48s cubic-bezier(.23,1,0.32,1);
}
@keyframes fadeCookieModal {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  color: #121212;
  padding: 38px 32px 28px 32px;
  border-radius: 20px;
  max-width: 95vw;
  width: 420px;
  box-shadow: 0 6px 34px 0 rgba(0,0,0,0.23);
  font-family: 'Roboto', Arial, sans-serif;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.cookie-modal h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 11px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 12px;
}
.cookie-category label {
  flex: 1;
  font-size: 1rem;
  color: #111;
}
.cookie-category input[type="checkbox"],
.cookie-category input[type="radio"] {
  width: 20px; height: 20px;
  accent-color: #256029;
}
.cookie-modal-actions {
  display: flex;
  gap: 15px;
  justify-content: flex-end;
  margin-top: 9px;
}
.cookie-modal-actions button {
  background: #256029;
  color: #fff;
  border: none;
  padding: 10px 22px;
  border-radius: 17px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.16s, color 0.16s;
}
.cookie-modal-actions button.cancel {
  background: #dedede;
  color: #111;
}
.cookie-modal-actions button:hover {
  background: #111;
  color: #fff;
}

/* LISTS */
ul li, ol li {
  margin-bottom: 7px;
  font-size: 1rem;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1100px) {
  .feature-grid {
    gap: 21px;
  }
}
@media (max-width: 900px) {
  .container {
    max-width: 95vw;
  }
  .feature-grid > div {
    min-width: 180px;
    max-width: 260px;
    padding: 20px 12px 16px 12px;
  }
  .contact-card {
    padding: 14px 10px 12px 12px;
  }
}
@media (max-width: 768px) {
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }
  .section {
    padding: 24px 5px;
    margin-bottom: 36px;
    border-radius: 10px;
  }
  .content-wrapper {
    gap: 18px;
  }
  .feature-grid {
    flex-direction: column;
    gap: 20px;
  }
  .feature-grid > div {
    max-width: 100vw;
    min-width: 0;
  }
  .testimonial-card {
    padding: 15px 10px 9px 10px;
    max-width: 99vw;
    border-radius: 9px;
  }
  .contact-card {
    flex-direction: column;
    gap: 16px;
    padding: 7px 1px 7px 5px;
    border-radius: 7px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
  header {
    flex-direction: row;
    flex-wrap: wrap;
    padding: 10px 0 8px 0;
    gap: 10px;
  }
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .cta-primary {
    font-size: 0.99rem;
    padding: 10px 18px;
    border-radius: 15px;
  }
  footer .container {
    gap: 14px;
  }
  footer nav {
    gap: 12px;
    font-size: 0.93rem;
  }
  .cookie-banner {
    padding: 10px 2px 10px 4px;
    border-radius: 7px 7px 0 0;
    font-size: 0.95rem;
  }
}
@media (max-width: 500px) {
  h1 {
    font-size: 1.37rem;
  }
  h2 {
    font-size: 1.09rem;
    margin-bottom: 14px;
  }
  p, ul li {
    font-size: 0.97rem;
  }
  .feature-grid {
    gap: 13px;
  }
  .feature-grid > div {
    padding: 9px 5px 7px 6px;
    border-radius: 6px;
  }
  .testimonial-card {
    padding: 8px 4px 7px 7px;
    font-size: 0.98rem;
    border-radius: 6px;
  }
  .contact-card {
    padding: 2px 2px 2px 3px;
    border-radius: 6px;
  }
  footer {
    padding: 20px 0 10px 0;
  }
}

/* MONOCHROME SOPHISTICATED ENHANCEMENTS */
body {
  background: #fafafa;
}
.section {
  background: #fff;
  box-shadow: 0 2px 28px 2px rgba(20,20,20,0.03), 0 1.5px 8px 0 rgba(0,0,0,0.04);
  border: 1px solid #e7e7e7;
}
.card, .feature-grid > div, .testimonial-card, .contact-card {
  border: 1px solid #e2e2e2;
  background: #fafafa;
}

hr {
  border: none;
  border-top: 1px solid #e0e0e0;
  margin: 40px 0;
}

blockquote {
  padding: 18px 20px;
  background: #f1f1f1;
  border-left: 5px solid #111;
  border-radius: 10px;
  color: #161616;
  font-family: 'Montserrat', Arial, sans-serif;
  margin: 24px 0;
}

/* SMOOTH TRANSITIONS */
a, .cta-primary, button, .feature-grid > div, .testimonial-card, .card, .contact-card {
  transition: box-shadow 0.18s, color 0.19s, background 0.19s, border-color 0.17s, transform 0.14s;
}

/* VISUAL HIERARCHY & MICROINTERACTIONS */
.feature-grid > div:active, .card:active {
  transform: scale(0.98);
}
.cta-primary:active, button:active, .button:active {
  transform: scale(0.985);
}

/* Hide scrollbars in mobile nav overlay for sophistication */
.mobile-menu::-webkit-scrollbar {
  display: none;
}
.mobile-menu {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* UTILITY */
.hidden { display: none !important; }
