/* == CSS RESET & NORMALIZATION == */
html { box-sizing: border-box; }
*, *::before, *::after { box-sizing: inherit; margin: 0; padding: 0; border: 0; }
body, h1, h2, h3, h4, h5, h6, p, ul, ol, li, a, figure, figcaption, blockquote, dl, dd {
  margin: 0;
  padding: 0;
  font-weight: inherit;
}
body {
  background: #F7F4EF;
  color: #222F3E;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
ul, ol { list-style: none; }
a { color: #00A86B; text-decoration: none; transition: color 0.2s; }
a:hover, a:focus { color: #222F3E; }
img { max-width: 100%; display: block; height: auto; }
button { font-family: inherit; background: none; border: none; cursor: pointer; outline: none; }

/* === BRAND FONTS === */
@import url('https://fonts.googleapis.com/css?family=Montserrat:800,700,600,500,400&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');
h1, h2, h3, h4, h5, h6, .cta-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
}
h1 { font-size: 2.3rem; margin-bottom: 32px; line-height: 1.15; }
h2 { font-size: 1.8rem; margin-bottom: 24px; line-height: 1.18; }
h3 { font-size: 1.2rem; margin-bottom: 16px; line-height: 1.2; }
h4, h5, h6 { font-size: 1rem; margin-bottom: 10px; }
.subtitle { font-size: 1.1rem; color: #00A86B; font-weight: 500; letter-spacing: 0.03em; margin-bottom: 20px; }
p, li, ul, ol, blockquote { font-size: 1rem; }
blockquote {
  font-size: 1.1rem; 
  border-left: 4px solid #00A86B;
  padding-left: 14px;
  color: #222F3E;
  margin: 20px 0;
  font-style: italic;
}

/* Visual Hierarchy via Color & Size */
h1, .cta-btn { color: #222F3E; }
h2 { color: #00A86B; }

/* === LAYOUT CONTAINERS === */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 18px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px 0 rgba(34,47,62,0.05);
}

@media (max-width: 900px) { .container { max-width: 98vw; } }
@media (max-width: 768px) { .section { padding: 26px 6px; margin-bottom: 40px; } }

/* === MAIN NAV STYLES === */
header {
  background: #222F3E;
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 1100;
  box-shadow: 0 4px 14px rgba(34,47,62,0.05);
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 10px 0;
  justify-content: flex-start;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.025em;
  padding: 8px 14px;
  border-radius: 8px;
  transition: background 0.18s, color 0.18s;
}
.main-nav a:not(.cta-btn):hover, .main-nav a:not(.cta-btn):focus {
  background: #00A86B;
  color: #fff;
}
.main-nav a.cta-btn {
  background: #00A86B;
  color: #fff;
  font-weight: 800;
  font-size: 1.04rem;
  padding: 10px 22px;
  border-radius: 21px;
  margin-left: 18px;
  box-shadow: 0 2px 9px 0 rgba(0,168,107,0.13);
  transition: background 0.18s, box-shadow .22s;
}
.main-nav a.cta-btn:hover, .main-nav a.cta-btn:focus {
  background: #fff;
  color: #00A86B;
  box-shadow: 0 5px 18px 0 rgba(0,168,107,0.16);
}

/* === MOBILE MENU BUTTON === */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 28px;
  top: 18px;
  width: 44px;
  height: 44px;
  font-size: 2.2rem;
  background: #00A86B;
  color: #fff;
  border-radius: 10px;
  z-index: 1201;
  box-shadow: 0 1px 8px rgba(0,168,107,0.09);
  transition: background 0.15s;
}
.mobile-menu-toggle:active { background: #03704a; }

/* === MOBILE MENU === */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: #222F3E;
  box-shadow: 2px 0 16px rgba(34,47,62,0.14);
  transform: translateX(-105vw);
  transition: transform 0.34s cubic-bezier(0.8,0,0.2,1);
  z-index: 1300;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 44px 0 0 0;
  will-change: transform;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-close {
  position: absolute;
  right: 28px;
  top: 18px;
  font-size: 2rem;
  background: none;
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  transition: background 0.12s;
}
.mobile-menu-close:active { background: #00A86B; }
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding-top: 44px;
  width: 100vw;
  align-items: center;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #fff;
  font-size: 1.16rem;
  font-weight: 600;
  padding: 12px 0;
  border-radius: 7px;
  width: 85vw;
  text-align: center;
  transition: background .16s, color .16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #00A86B;
  color: #fff;
}

@media (max-width: 1050px) {
  .main-nav {
    gap: 18px;
    font-size: 0.98rem;
  }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 12px;
    font-size: 0.94rem;
  }
}
@media (max-width: 860px) {
  .main-nav a.cta-btn { margin-left: 8px; }
}
@media (max-width: 800px) {
  .main-nav a { padding: 7px 8px; }
  .main-nav a.cta-btn { padding: 9px 14px; font-size: 1rem; }
}
@media (max-width: 700px) {
  .main-nav { display: none; }
  .mobile-menu-toggle { display: block; }
}

/* == HERO & PAGE SECTION STYLES == */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
@media (max-width: 700px) {
  section { margin-bottom: 40px; padding: 26px 7px; }
  .content-wrapper { gap: 14px; }
  .text-section { gap: 10px; }
}

/* == BUTTONS == */
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', Arial, sans-serif;
  background: #00A86B;
  color: #fff;
  font-weight: 800;
  font-size: 1.09rem;
  letter-spacing: 0.02em;
  padding: 12px 30px;
  border-radius: 20px;
  margin-top: 8px;
  box-shadow: 0 1px 6px 0 rgba(0,168,107,0.11);
  border: none;
  cursor: pointer;
  transition: background 0.18s, color 0.17s, box-shadow 0.18s, transform 0.14s;
}
.cta-btn:hover, .cta-btn:focus {
  background: #222F3E;
  color: #fff;
  box-shadow: 0 6px 18px 0 rgba(34,47,62,0.11);
  transform: translateY(-2px) scale(1.04);
}

/* == FEATURES, CARDS, LAYOUT FLEX == */
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 20px;
}
.feature {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 2px 14px 0 rgba(34,47,62,0.07);
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  min-width: 225px;
  flex: 1 1 240px;
  transition: box-shadow 0.22s, transform 0.22s;
  margin-bottom: 20px;
  position: relative;
}
.feature img {
  width: 44px;
  height: 44px;
  filter: drop-shadow(0 2px 5px #00A86B33);
}
.feature h3 {
  font-size: 1.14rem;
  color: #222F3E;
}
.feature p {
  margin-bottom: 0;
  font-size: 0.98rem;
  color: #555;
}
.feature:hover, .feature:focus-within {
  box-shadow: 0 10px 24px 0 rgba(0,168,107,0.13);
  transform: translateY(-5px) scale(1.03);
}
.features-list ul, .features-list li {
  list-style: none;
  color: #222F3E;
  font-size: 0.97rem;
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}
.features-list ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left: 5px;
}
.features-list li:before {
  content: '';
  display: inline-block;
  width: 12px; height: 12px;
  background: #00A86B;
  border-radius: 3px;
  margin-right: 8px;
  vertical-align: middle;
}

@media (max-width: 900px) {
  .features-grid { gap: 18px; }
}
@media (max-width: 700px) {
  .features-grid { flex-direction: column; gap: 16px; }
  .feature { min-width: unset; align-items: flex-start; }
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 2px 10px 0 rgba(34,47,62,0.07);
  margin-bottom: 20px;
  position: relative;
  padding: 22px 20px 16px 20px;
  width: 100%;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
@media (max-width: 700px) {
  .content-grid { flex-direction: column; gap: 14px; }
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) { 
  .text-image-section { flex-direction: column; align-items: flex-start; gap: 20px; } 
}

.testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #F7F4EF;
  border-radius: 13px;
  box-shadow: 0 2px 10px 0 rgba(34,47,62,0.07);
  border-left: 6px solid #00A86B;
  min-width: 240px;
  flex: 1 1 260px;
}
.testimonial-card p { color: #222F3E; font-size: 1.06rem; }
.testimonial-card span, .testimonial-card strong { color: #222F3E; font-size: 0.97rem; }
.testimonial-card h3 { color: #00A86B; font-size: 1.01rem; }
@media (max-width: 900px) { .testimonials { gap: 18px; } }
@media (max-width: 700px) { .testimonials { flex-direction: column; gap: 12px; } }

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.card-container .card { min-width: 220px; flex: 1 1 260px; }

/* Case Studies and Stat Counters */
.case-studies ul, .stat-counters ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.case-studies li, .stat-counters li {
  background: #00A86B18;
  border-radius: 10px;
  padding: 10px 18px;
  font-weight: 600;
  color: #222F3E;
}
.stat-counters strong { font-size: 1.25rem; color: #00A86B; margin-right: 5px; font-family: 'Montserrat', Arial, sans-serif; }
@media (max-width: 700px) {
  .case-studies ul,.stat-counters ul { flex-direction: column; gap: 12px; }
}

/* == NAV HIGHLIGHTING - Optically geometric tab-like == */
footer nav a, .footer-menu a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #fff;
  background: #00A86B;
  border-radius: 9px;
  padding: 8px 16px;
  margin: 0 6px 6px 0;
  font-size: 0.97rem;
  font-weight: 600;
  display: inline-block;
  transition: background .15s, color .15s;
}
footer nav a:hover, .footer-menu a:hover {
  background: #fff;
  color: #00A86B;
}

/* == FOOTER == */
footer {
  background: #222F3E;
  color: #fff;
  padding: 40px 0 22px 0;
  letter-spacing: 0.01em;
  font-size: 1rem;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 34px;
  justify-content: space-between;
}
.footer-logo img {
  height: 48px;
  width: auto;
  display: block;
  margin-bottom: 12px;
}
.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer-contact ul, .footer-contact li {
  color: #fff;
  font-size: 0.97rem;
  margin-bottom: 7px;
  list-style: none;
}
.footer-social {
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  width: 36px;
  background: #00A86B;
  border-radius: 50%;
  transition: background 0.14s;
}
.footer-social a:hover, .footer-social a:focus {
  background: #fff;
  box-shadow: 0 2px 10px #00A86B44;
}
.footer-social img {
  width: 18px;
  height: 18px;
}

@media (max-width: 900px) {
  footer .container { gap: 16px; }
}
@media (max-width: 700px) {
  footer .container {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
    padding: 0 8px;
  }
  .footer-menu { flex-direction: row; gap: 11px; flex-wrap: wrap; }
}

/* == CONTACT INFO == */
.contact-info ul {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.contact-info li {
  font-size: 1rem;
  color: #222F3E;
  display: flex;
  align-items: center;
  gap: 10px;
}
.contact-info img { width: 22px; height: 22px; display: inline-block; }
.contact-info a {
  color: #00A86B;
  font-weight: 600;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  margin-left: 2px;
  text-underline-offset: 3px;
}
.contact-cta { margin-top: 18px; }

/* == POSTS LIST, GENERAL LISTS == */
.posts-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 14px;
  margin-top: 12px;
}
.posts-list li {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px 0 rgba(34,47,62,0.06);
  padding: 20px 18px 18px 18px;
}
.posts-list h3 { color: #00A86B; font-size: 1.13rem; }

/* == PROCESS ICONS == */
.process-icons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin-top: 12px;
}
.process-icons img {
  width: 42px;
  height: 42px;
  background: #F7F4EF;
  border-radius: 10px;
  box-shadow: 0 1px 4px #00A86B22;
  padding: 6px;
}
@media (max-width: 700px) {
  .process-icons { gap: 10px; }
}

/* == COOKIE CONSENT BANNER == */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  width: 100vw;
  background: #222F3E;
  color: #fff;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  z-index: 1500;
  box-shadow: 0 -4px 28px #222F3E22;
  padding: 16px 18px;
  font-size: 1rem;
  animation: cookieSlideIn 0.6s cubic-bezier(.68,-0.55,.27,1.55);
}
@keyframes cookieSlideIn {
  from { transform: translateY(120%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner__msg {
  flex: 2;
  max-width: 740px;
  color: #fff;
}
.cookie-banner__actions {
  flex: 1;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.99rem;
  border-radius: 8px;
  padding: 8px 20px;
  margin-right: 6px;
  font-weight: 700;
  border: none;
  transition: background 0.17s, color .16s;
  cursor: pointer;
}
.cookie-btn--accept {
  background: #00A86B;
  color: #fff;
}
.cookie-btn--accept:hover {
  background: #fff;
  color: #00A86B;
}
.cookie-btn--reject {
  background: #fff;
  color: #222F3E;
}
.cookie-btn--reject:hover {
  background: #F7F4EF;
  color: #00A86B;
}
.cookie-btn--settings {
  background: #222F3E;
  color: #fff;
  border: 2px solid #00A86B;
}
.cookie-btn--settings:hover {
  background: #00A86B;
  color: #fff;
}
@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 14px 7px 12px 7px;
    gap: 8px;
  }
  .cookie-banner__actions { gap: 8px; }
}

/* == COOKIE MODAL == */
.cookie-modal {
  position: fixed;
  left: 50%; top: 50%;
  transform: translate(-50%, -55%);
  z-index: 1600;
  width: 95vw;
  max-width: 420px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 12px 40px 0 #222F3E26;
  color: #222F3E;
  padding: 30px 26px 26px 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s cubic-bezier(.71,0,.13,1.02);
}
.cookie-modal.open { opacity: 1; pointer-events: auto; }
.cookie-modal__close {
  position: absolute;
  right: 18px;
  top: 18px;
  font-size: 1.6rem;
  background: none;
  color: #222F3E;
  border: none;
  padding: 6px;
  border-radius: 9px;
  cursor: pointer;
  transition: background .13s;
}
.cookie-modal__close:active, .cookie-modal__close:focus { background: #F7F4EF; }
.cookie-modal__title {
  font-size: 1.17rem;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 10px;
  color: #222F3E;
  font-weight: 700;
}
.cookie-modal__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cookie-modal__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #F7F4EF;
  padding: 10px 15px;
  border-radius: 10px;
  font-size: 0.97rem;
}
.cookie-modal__toggle {
  width: 36px;
  height: 20px;
  background: #ddd;
  border-radius: 10px;
  position: relative;
  transition: background .18s;
  cursor: pointer;
}
.cookie-modal__toggle[data-checked="true"] { background: #00A86B; }
.cookie-modal__toggle-inner {
  position: absolute;
  top: 2px; left: 2px;
  width: 16px; height: 16px;
  background: #fff;
  border-radius: 50%;
  transition: transform .19s cubic-bezier(.71,0,.13,1.02);
}
.cookie-modal__toggle[data-checked="true"] .cookie-modal__toggle-inner {
  transform: translateX(16px);
}
.cookie-modal__note { font-size: 0.93rem; color: #555; font-style: italic; margin-bottom: 6px; }
@media (max-width: 600px) {
  .cookie-modal { padding: 16px 7px 16px 7px; max-width: 98vw; }
}

/* == UTILITY CLASSES == */
.text-center { text-align: center; }
.align-center { display: flex; align-items: center; justify-content: center; }
.px-2 { padding-left: 16px; padding-right: 16px; }
.mt-2 { margin-top: 16px; }
.mb-2 { margin-bottom: 16px; }

/* == FOCUS STATES == */
:focus { outline: 2px solid #00A86B55; outline-offset: 2px; }

/* == ANIMATIONS & INTERACTIONS == */
.card, .feature, .testimonial-card, .cta-btn {
  transition: box-shadow 0.21s, transform 0.20s, background 0.21s, color 0.21s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 8px 24px 0 #00A86B26;
  transform: translateY(-3px) scale(1.03);
}

/* == SPACING PATTERNS == */
.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; }

/* == RESPONSIVE ALIGNMENT == */
@media (max-width: 768px) {
  .text-image-section { flex-direction: column; align-items: flex-start; gap: 15px; }
  .features-grid { flex-direction: column; }
  .testimonial-card { flex-direction: column; align-items: flex-start; }
}

/* == PREVENTING OVERLAPS == */
.card, .testimonial-card, .feature {
  box-sizing: border-box;
  min-width: 0;
  word-break: break-word;
}

/* == GEOMETRIC ANGULAR ACCENTS == */
.section {
  position: relative;
  overflow: visible;
}
.section:before {
  content: '';
  position: absolute;
  right: -46px; top: 22px;
  width: 80px; height: 80px;
  background: #00A86B18;
  clip-path: polygon(0 0, 100% 0, 70% 100%, 0 63%);
  z-index: 0;
  border-radius: 18px;
  opacity: 0.15;
  pointer-events: none;
}
@media (max-width: 700px) { .section:before { display: none; } }

/* == MISC == */
::-webkit-scrollbar { width: 10px; background: #F7F4EF; }
::-webkit-scrollbar-thumb { background: #00A86B55; border-radius: 6px; }
::-webkit-input-placeholder, ::placeholder { color: #222F3E99; }

/* == END OF STYLE.CSS == */
