/* 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 {
  scroll-behavior: smooth;
}
body {
  line-height: 1.5;
  background: #1A2327;
  color: #ECECEC;
  font-family: 'Roboto', Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  min-height: 100vh;
}
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
ul, ol {
  padding-left: 22px;
  margin-bottom: 20px;
}
a {
  color: #F2F7E0;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover,
a:focus {
  color: #227C59;
}
button {
  font-family: inherit;
  font-size: 16px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  outline: none;
}

/* BRAND & INDUSTRIAL/MODERN VARIABLES */
:root {
  --color-primary: #227C59;
  --color-secondary: #154B30;
  --color-accent: #F2F7E0;
  --color-bg-dark: #1A2327;
  --color-bg-section: #22292e;
  --color-card-bg: #262B2F;
  --color-btn-hover: #2EA774;
  --color-text-light: #F2F7E0;
  --color-text-normal: #ECECEC;
  --color-text-dark: #191C1F;
  --color-metal: #7D868C;
  --color-success: #3ADA8A;
}

/* TYPOGRAPHY */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700&family=Roboto:wght@400;500;700&display=swap');
h1, h2, h3, .cta {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  letter-spacing: 0.01em;
  color: var(--color-text-light);
}
h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 10px;
}
p, li {
  font-size: 1rem;
  color: var(--color-text-normal);
  margin-bottom: 10px;
  font-family: 'Roboto', Arial, sans-serif;
}
strong {
  font-weight: 700;
}
em {
  color: var(--color-metal);
  font-style: italic;
}
.text-section li {
  line-height: 1.8;
  margin-bottom: 8px;
}

/* LAYOUT WRAPPERS */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  background: unset;
  border-radius: 8px;
  padding: 0;
}

section {
  background: var(--color-bg-section);
  border-radius: 12px;
  margin-bottom: 60px;
  padding: 40px 20px;
  box-shadow: 0 4px 24px rgba(22,25,29,0.16);
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid #232828;
}
section:first-of-type {
  margin-top: 110px;
}
@media (max-width: 900px) {
  section:first-of-type {
    margin-top: 72px;
  }
}

.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* FLEXBOX LAYOUTS */
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
}
.features-grid > div {
  background: var(--color-card-bg);
  border-radius: 10px;
  padding: 28px 24px 18px;
  min-width: 220px;
  flex: 1 1 230px;
  box-shadow: 0 6px 16px rgba(51,56,61,0.14);
  border: 1px solid #334247;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  transition: box-shadow 0.2s, border 0.2s, transform 0.15s;
  position: relative;
}
.features-grid > div:hover {
  box-shadow: 0 10px 30px rgba(34,132,89,0.19);
  border: 1.5px solid var(--color-primary);
  transform: translateY(-4px) scale(1.01);
}
.features-grid img {
  width: 36px;
  height: 36px;
  margin-bottom: 5px;
  filter: brightness(0.92) sepia(0.2) saturate(1.55);
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--color-card-bg);
  border-radius: 10px;
  margin-bottom: 20px;
  position: relative;
  box-shadow: 0 3px 15px rgba(34, 80, 53, 0.10);
  border: 1px solid #232828;
  display: flex;
  flex-direction: column;
  padding: 24px;
  transition: box-shadow 0.2s, border 0.2s, transform 0.15s;
}
.card:hover {
  box-shadow: 0 8px 24px rgba(34,124,89,0.14);
  border: 1.5px solid var(--color-primary);
  transform: translateY(-2px) scale(1.01);
}

.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) {
  .features-grid, .content-grid, .card-container, .text-image-section {
    flex-direction: column;
    gap: 20px;
  }
  .features-grid > div {
    min-width: 0;
    width: 100%;
  }
}

.testimonial-card {
  background: #F2F7E0;
  color: #14211A;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  border-radius: 9px;
  box-shadow: 0 2px 8px rgba(44,96,58,0.08);
  margin-bottom: 22px;
  font-size: 1.13rem;
  border-left: 7px solid var(--color-primary);
  border-top: 1px solid #C0D2B9;
  border-bottom: 1px solid #DDE3CB;
  transition: background 0.15s, box-shadow 0.15s;
}
.testimonial-card strong {
  color: var(--color-secondary);
  font-size: 1em;
  letter-spacing: 0.02em;
  font-weight: 600;
  margin-left: 4px;
}
.testimonial-card:hover {
  box-shadow: 0 6px 20px rgba(80,120,89,0.13);
  background: #E2ECD6;
}

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

.cta-row {
  margin-top: 20px;
  display: flex;
  flex-direction: row;
  gap: 18px;
  align-items: center;
}
/* BUTTONS & LINKS */
.cta,
button.cta,
button[class*='cta'] {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  background: linear-gradient(90deg, var(--color-primary) 80%, var(--color-secondary) 100%);
  color: var(--color-accent);
  padding: 14px 32px;
  font-size: 1.15rem;
  border-radius: 5px;
  border: none;
  font-weight: 700;
  letter-spacing: 0.03em;
  margin-top: 12px;
  box-shadow: 0 2px 12px rgba(34,124,89,0.10);
  transition: background 0.18s, color 0.2s, transform 0.08s, box-shadow 0.15s;
  display: inline-block;
  position: relative;
  z-index: 1;
}
.cta:hover,
.cta:focus,
button.cta:hover,
button.cta:focus {
  background: linear-gradient(90deg, var(--color-btn-hover) 80%, var(--color-secondary) 100%);
  color: #fffceb;
  transform: translateY(-2px) scale(1.02);
  outline: none;
}

nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: var(--color-text-light);
  margin-right: 24px;
  padding: 2px 0;
  position: relative;
  transition: color 0.15s;
}
nav a.cta {
  margin-left: 10px;
  margin-right: 0;
  box-shadow: 0px 2px 12px rgba(34,124,89,0.06);
}
nav a:last-child {
  margin-right: 0;
}
nav a:after {
  content: '';
  display: block;
  width: 0%;
  height: 2.5px;
  border-radius: 2px;
  background: var(--color-primary);
  transition: width 0.18s cubic-bezier(.44,-0.1,.48,1.59);
  margin-top: 2.5px;
}
nav a:hover:after,
nav a:focus:after {
  width: 98%;
}
nav a:hover,
nav a:focus {
  color: var(--color-primary);
}

/* HEADER */
header {
  width: 100%;
  background: #171C1E;
  box-shadow: 0 1.5px 7px rgba(30, 40, 35, 0.20);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 49;
  padding: 0 30px;
  height: 90px;
}
header img {
  height: 37px;
  width: auto;
}
header nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0;
}
header .mobile-menu-toggle {
  display: none;
}
@media (max-width: 1020px) {
  header {
    padding: 0 12px;
  }
}
@media (max-width: 900px) {
  header nav {
    display: none;
  }
  header .mobile-menu-toggle {
    display: block;
    font-size: 2.15rem;
    color: var(--color-primary);
    background: none;
    border: none;
    margin-left: 14px;
    cursor: pointer;
    z-index: 52;
  }
  header {
    height: 60px;
    min-height: 60px;
  }
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(26,35,39,0.97);
  backdrop-filter: blur(2px);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.66,-0.23,.41,1.31);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.active {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  font-size: 2.2rem;
  color: var(--color-primary);
  background: none;
  border: none;
  margin: 26px 18px 0 0;
  align-self: flex-end;
  cursor: pointer;
  z-index: 10001;
  transition: color 0.15s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  padding-top: 35px;
  gap: 6px;
}
.mobile-nav a {
  color: var(--color-accent);
  background: #1e272b;
  font-size: 1.2rem;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 18px 0 18px 0;
  margin: 3px 0;
  text-align: center;
  width: 100vw;
  transition: background 0.14s, color 0.17s;
  border-left: 5px solid transparent;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.mobile-nav a:active, .mobile-nav a:focus, .mobile-nav a:hover {
  background: var(--color-primary);
  color: #fff;
  border-left: 5px solid #fff;
}

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

/* FOOTER */
footer {
  background: #161A1B;
  color: var(--color-metal);
  padding: 0;
  border-top: 2.5px solid var(--color-primary);
  margin-top: 60px;
}
footer .container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  padding-top: 38px;
  padding-bottom: 28px;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 9px;
  min-width: 140px;
}
footer nav a {
  color: var(--color-metal);
  font-size: 1rem;
  margin: 0 0 0 0;
  transition: color 0.16s;
  border: none;
}
footer nav a:hover,
footer nav a:focus {
  color: var(--color-primary);
}
.footer-branding {
  padding: 0 20px;
  display: flex;
  align-items: center;
  min-width: 85px;
}
.footer-branding img {
  width: 56px;
  height: auto;
  filter: grayscale(0.21) brightness(0.98);
}
.footer-contact {
  min-width: 200px;
  font-size: 0.98rem;
  color: var(--color-metal);
  font-style: normal;
  line-height: 1.55;
}
.footer-contact a {
  color: var(--color-primary);
  word-break: break-word;
}
@media (max-width: 800px) {
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    padding-top: 30px;
    padding-bottom: 20px;
  }
  .footer-branding {
    padding: 0 3px;
    margin: 10px 0;
  }
}

/* GOOGLE MAP PLACEHOLDER */
.google-map-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #242c2f;
  color: #8e9b99;
  border-radius: 8px;
  height: 160px;
  margin-top: 8px;
  margin-bottom: 12px;
  font-size: 1.26rem;
  letter-spacing: 0.008em;
  font-family: 'Roboto', Arial, sans-serif;
  box-shadow: 0 2px 8px rgba(30,36,29,0.09);
}

/* CARD ROWS */
.card-content, .author-intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}
.card-row {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: stretch;
}
@media (max-width: 650px) {
  .card-row { flex-direction: column; gap: 16px; }
}

/* ANIMATIONS & MICRO-INTERACTIONS */
.cta, .features-grid > div, .card, .testimonial-card {
  transition: box-shadow 0.23s cubic-bezier(.71,-0.55,.44,1.39), border 0.18s, transform 0.18s, background 0.21s, color 0.18s;
}
section, .cookie-banner, .cookie-modal {
  transition: box-shadow 0.22s, background 0.18s, border 0.19s;
}

/* RESPONSIVE SPACING & FLEX ADJUSTMENTS */
@media (max-width: 600px) {
  section {
    padding: 22px 6px;
    margin-bottom: 36px;
  }
  h1 {
    font-size: 2rem;
    margin-bottom: 16px;
  }
  h2 {
    font-size: 1.25rem;
    margin-bottom: 11px;
  }
}
main {
  min-height: 72vh;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 13010;
  background: rgba(34, 44, 38, 0.97);
  color: var(--color-accent);
  box-shadow: 0 -3px 15px rgba(34, 124, 89, 0.15);
  border-top: 2.5px solid var(--color-primary);
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 20px;
  justify-content: space-between;
  padding: 19px 28px 17px 18px;
  max-width: 100vw;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  transition: transform 0.31s, opacity 0.18s;
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(120%);
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 13px;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: 4px;
  border: none;
  margin-left: 0;
  font-size: 1rem;
  font-weight: 700;
  padding: 11px 25px;
  box-shadow: 0 2px 8px rgba(34,124,89,0.045);
  background: #2c4635;
  color: var(--color-accent);
  transition: background 0.13s, color 0.13s, transform 0.12s;
}
.cookie-banner button.accept {
  background: var(--color-primary);
  color: #fff;
}
.cookie-banner button.accept:hover,
.cookie-banner button.accept:focus {
  background: var(--color-btn-hover);
}
.cookie-banner button.reject {
  background: #343A19;
  color: var(--color-accent);
}
.cookie-banner button.reject:hover {
  background: #495332;
  color: #fff;
}
.cookie-banner button.settings {
  background: #262B2F;
  color: var(--color-metal);
}
.cookie-banner button.settings:hover {
  background: #374144;
  color: #F2F7E0;
}
@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 17px;
    padding: 13px 7px 9px 4px;
    font-size: 0.98rem;
  }
}

/* COOKIE SETTINGS MODAL */
.cookie-modal {
  display: none;
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(21,22,26,0.79);
  z-index: 13120;
  align-items: center;
  justify-content: center;
  justify-items: center;
  transition: background 0.21s;
}
.cookie-modal.active {
  display: flex;
}
.cookie-modal-content {
  background: #262B2F;
  color: var(--color-accent);
  border-radius: 16px;
  box-shadow: 0 16px 42px rgba(40,80,50,0.31);
  min-width: 310px;
  max-width: 96vw;
  padding: 36px 27px 28px 27px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
}
.cookie-modal-content h2 {
  color: var(--color-primary);
  font-size: 1.45rem;
  margin-bottom: 2px;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 13px;
  margin-bottom: 14px;
}
.cookie-category label {
  color: var(--color-accent);
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.07rem;
  cursor: pointer;
}
.cookie-category input[type='checkbox'] {
  margin-right: 5px;
  accent-color: var(--color-primary);
  width: 18px;
  height: 18px;
  border-radius: 2px;
  border: 1.5px solid #63676A;
}
.cookie-category input[type='checkbox'][disabled] {
  accent-color: #63676A;
}
.cookie-modal-content .buttons {
  display: flex;
  flex-direction: row;
  gap: 17px;
  margin-top: 18px;
  align-items: center;
  justify-content: flex-end;
}
.cookie-modal-content .buttons button {
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 11px 25px;
  border-radius: 6px;
  border: none;
  font-size: 1rem;
  font-weight: 700;
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 2px 8px rgba(34,124,89,0.045);
  transition: background 0.15s, color 0.16s;
}
.cookie-modal-content .buttons button.reject {
  background: #343A19;
  color: var(--color-accent);
}
.cookie-modal-content .buttons button.reject:hover {
  background: #495332;
  color: #fff;
}
.cookie-modal-content .buttons button.accept:hover {
  background: var(--color-btn-hover);
}
.cookie-modal-content .modal-close {
  position: absolute;
  top: 15px; right: 19px;
  background: none;
  border: none;
  font-size: 1.45rem;
  color: var(--color-accent);
  cursor: pointer;
  z-index: 13170;
  transition: color 0.13s;
}
.cookie-modal-content .modal-close:hover {
  color: #fff;
}
@media (max-width: 480px) {
  .cookie-modal-content {
    min-width: 0;
    max-width: 98vw;
    padding: 20px 8px 14px 11px;
  }
  .cookie-modal-content h2 {
    font-size: 1.12rem;
    margin-bottom: 1px;
  }
}

/* UTILS */
.mb-20 { margin-bottom: 20px !important; }
.mt-24 { margin-top: 24px !important; }

/* ACCESSIBILITY FOCUS VISIBLE */
:focus-visible {
  outline: 2.5px solid var(--color-primary);
  outline-offset: 2px;
}

/* SCROLLBAR (Industrial feel) */
::-webkit-scrollbar {
  width: 13px;
  background: #22292e;
}
::-webkit-scrollbar-thumb {
  background: #343F44;
  border-radius: 8px;
  border: 3px solid #22292e;
}
::-webkit-scrollbar-thumb:hover {
  background: #495B60;
}

/* INDUSTRIAL VISUAL TOUCHES */
.features-grid > div, .card, .testimonial-card {
  border-radius: 10px;
  box-shadow: 0 2px 14px rgba(22,28,34,0.12);
  border: 1.5px solid #303739;
}

/* METAL DIVIDERS */
hr {
  border: none;
  border-bottom: 1.5px solid #464E56;
  margin: 16px 0;
}

/* RESPONSIVE FINE TUNE */
@media (max-width: 680px) {
  h1 { font-size: 1.33rem; margin-bottom: 12px; }
  h2 { font-size: 1.2rem; margin-bottom: 8px; }
  .cta, .features-grid > div, .card, .testimonial-card { font-size: 0.98rem; }
  .container { padding: 0 4px; }
}

/* PRINT STYLES */
@media print {
  body, html {
    background: #fff !important;
    color: #000 !important;
  }
  header, .mobile-menu, footer, .cookie-banner, .cookie-modal, .cta {display:none !important;}
  section, .container, .content-wrapper {box-shadow: none !important;}
}
