/* --- CSS 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: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  background: #122120;
}
body {
  min-height: 100vh;
  font-family: 'Open Sans', Arial, sans-serif;
  color: #F3F3E6;
  background: linear-gradient(135deg,#232839 0%, #254141 100%);
  font-size: 16px;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #7EC67B;
  text-decoration: none;
  transition: color 0.18s cubic-bezier(.4,.2,.2,1);
}
a:hover, a:focus {
  color: #F3F3E6;
  text-shadow: 0 0 3px #7EC67B;
}
ul, ol {
  list-style: none;
}

::-webkit-input-placeholder { color: #BCD8C2; }
:-moz-placeholder { color: #BCD8C2; }
::-moz-placeholder { color: #BCD8C2; }
:-ms-input-placeholder { color: #BCD8C2; }
::placeholder { color: #BCD8C2; }

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  letter-spacing: 0.01em;
  color: #F3F3E6;
  font-weight: 700;
  margin-bottom: 14px;
}
h1 { font-size: 2.5rem; line-height: 1.13; margin-bottom: 24px; }
h2 { font-size: 2rem; line-height: 1.17; margin-bottom: 16px; }
h3 { font-size: 1.3rem; line-height: 1.2; margin-bottom: 10px; }
h4, h5, h6 { font-size: 1.1rem; }
.subheadline {
  color: #7EC67B;
  font-size: 1.25rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  margin-bottom: 22px;
}
p, li, span, .author {
  color: #F3F3E6;
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 10px;
}
strong {
  color: #7EC67B;
  font-weight: bold;
}

/* --- CONTAINER & BASE LAYOUT --- */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

/* --- HEADER --- */
header {
  background: rgba(18,33,32,0.97);
  box-shadow: 0 2px 8px 0 rgba(39,83,77,0.09);
  position: relative;
  z-index: 30;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 14px;
  padding-bottom: 14px;
}
header img {
  height: 42px;
}
.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.04em;
  color: #F3F3E6;
  padding: 4px 10px;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #183032;
  color: #7EC67B;
  text-shadow: 0 0 4px #7EC67B44;
}

.cta-button {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', Arial, sans-serif;
  background: #254141;
  color: #F3F3E6;
  border: 2px solid #7EC67B;
  font-size: 1.18rem;
  font-weight: 600;
  border-radius: 30px;
  padding: 10px 32px;
  margin-left: 16px;
  box-shadow: 0 0 16px 0 #7EC67B44;
  cursor: pointer;
  text-transform: uppercase;
  transition: background 0.22s cubic-bezier(.4,.2,.2,1), color 0.15s,box-shadow 0.26s;
  white-space: nowrap;
  letter-spacing: 0.03em;
  position: relative;
}
.cta-button:hover, .cta-button:focus {
  background: #7EC67B;
  color: #254141;
  box-shadow: 0 4px 16px 1px #7EC67B99,0 0 4px #41f5bf66;
  border-color: #F3F3E6;
}

/* --- MOBILE NAVIGATION --- */
.mobile-menu-toggle {
  display: inline-flex;
  background: none;
  border: none;
  color: #7EC67B;
  font-size: 2.2rem;
  cursor: pointer;
  margin-left: auto;
  z-index: 102;
  padding: 4px 10px;
  border-radius: 9px;
  transition: background 0.16s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #193336;
}
.mobile-menu {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  display: flex;
  flex-direction: column;
  background: #1a2c2abf;
  z-index: 200;
  padding: 0;
  transform: translateX(-100%);
  transition: transform 0.32s cubic-bezier(.62,.01,.3,1);
  box-shadow: 0 6px 36px #051312cf;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #7EC67B;
  font-size: 2.1rem;
  align-self: flex-end;
  margin: 22px 30px 0 0;
  cursor: pointer;
  z-index: 240;
  transition: color 0.16s;
  padding: 2px 8px;
  border-radius: 8px;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #F3F3E6;
  background: #193336;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: center;
  align-items: center;
  flex: 1;
  margin: 26px 0 0 0;
}
.mobile-nav a {
  display: block;
  color: #7EC67B;
  background: #254141;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.18rem;
  font-weight: 500;
  padding: 16px 34px;
  border-radius: 16px;
  margin-bottom: 8px;
  width: 86vw;
  text-align: center;
  letter-spacing: 0.04em;
  transition: background .18s, color .22s;
  box-shadow: 0 0 16px #41f5bf1a;
  border: 1.5px solid #7EC67B55;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #7EC67B;
  color: #254141;
  box-shadow: 0 0 16px #7EC67B66,0 2px 4px #25414166;
}

/* Hide desktop nav on mobile, show hamburger */
@media (max-width: 1050px) {
  .main-nav {
    display: none;
  }
  .cta-button {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-flex;
  }
}
@media (min-width: 1051px) {
  .mobile-menu-toggle,
  .mobile-menu {
    display: none !important;
  }
}

/* --- BANNER, SECTIONS, HERO --- */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
  position: relative;
}
main section {
  width: 100%;
}
.text-section {
  margin: 20px 0 12px 0;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  width: 100%;
  margin: 18px 0;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
}

/* --- CARD LAYOUTS --- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #183032cc;
  border: 1.5px solid #7EC67B33;
  border-radius: 22px;
  box-shadow: 0 2px 18px #1d312266, 0 1.5px 3px #7EC67B22;
  padding: 22px 24px;
  min-width: 240px;
  transition: box-shadow 0.21s, border-color 0.23s, background 0.24s;
}
.card:hover, .card:focus-within {
  border-color: #7EC67B;
  box-shadow: 0 4px 22px #7EC67B33, 0 2px 6px #25414144;
  background: #254141cc;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

/* --- FEATURES & SERVICES --- */
.feature-grid, .service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 20px 0 6px 0;
}
.feature, .service {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #193633d5;
  border-radius: 18px;
  padding: 18px 18px 16px 18px;
  min-width: 200px;
  max-width: 340px;
  flex: 1 0 250px;
  box-shadow: 0px 6px 24px #25414113, 0 2px 4px #7EC67B12;
  transition: box-shadow .18s, background .17s;
  border: 1.3px solid #7EC67B33;
}
.feature:hover, .service:hover {
  background: #224B43d0;
  box-shadow: 0 6px 32px #7EC67B22,0 2px 6px #25414144;
}
.service strong {
  margin-top: 13px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.05rem;
}
.feature img, .service img {
  width: 42px;
  height: 42px;
  margin-bottom: 2px;
  filter: drop-shadow(0 0 7px #7EC67B55);
}

@media (max-width: 960px) {
  .feature-grid, .service-list {
    gap: 14px;
  }
}
@media (max-width: 700px) {
  .feature, .service {
    min-width: 160px;
    max-width: 100%;
    padding: 14px 13px 12px 13px;
  }
}
@media (max-width: 500px) {
  .feature, .service {
    padding: 12px 6px 9px 7px;
    font-size: 0.95rem;
  }
}

/* --- TESTIMONIALS --- */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #F3F3E6;
  color: #254141;
  border-radius: 18px;
  box-shadow: 0px 4px 24px #25414118;
  margin-bottom: 22px;
  padding: 20px 32px;
  gap: 20px;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1.1rem;
  position: relative;
  border: 1.5px solid #7EC67B44;
  transition: box-shadow .19s, border-color .17s, background .2s;
}
.testimonial-card p, .testimonial-card span {
  color: #254141;
  margin: 0;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 6px 32px #25414133,0 2px 6px #25414111;
  border-color: #7EC67B;
}

@media (max-width: 600px) {
  .testimonial-card {
    padding: 14px 10px 14px 13px;
    font-size: 0.98rem;
    gap: 10px;
  }
}

/* --- BLOG PREVIEW --- */
.blog-preview {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #183032b2;
  border-radius: 14px;
  padding: 20px 20px;
  margin: 0 0 20px 0;
  border-left: 5px solid #7EC67B;
  box-shadow: 0 3px 12px #7EC67B1a;
  transition: background .17s;
}
.blog-preview h2 {
  font-size: 1.2rem;
  margin-bottom: 7px;
}
.author {
  font-size: 0.98rem;
  color: #c9ecc7;
}

/* --- FOOTER --- */
footer {
  background: #162826;
  padding: 34px 0 0 0;
}
footer .container {
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  gap: 20px;
  justify-content: center;
  padding: 10px 0;
}
.footer-nav a {
  color: #7EC67B;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  transition: color .15s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #F3F3E6;
}
.footer-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  font-size: 0.94rem;
  color: #baf2d3;
  padding-bottom: 15px;
  text-align: center;
}
.footer-info a {
  color: #baf2d3;
  text-decoration: underline;
  transition: color 0.18s;
}
.footer-info a:hover {
  color: #7EC67B;
}

/* --- COOKIES BANNER & MODAL --- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw; max-width: 100vw;
  background: #254141;
  color: #F3F3E6;
  border-top: 3px solid #7EC67B;
  box-shadow: 0 -2px 22px #25414195;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  padding: 18px 11vw 18px 32px;
  font-family: 'Open Sans',Arial,sans-serif;
  font-size: 1rem;
  animation: cookies-show .7s cubic-bezier(.4,.12,.2,1);
}
@keyframes cookies-show {
  from { transform: translateY(100%); opacity:0; }
  to   { transform: translateY(0); opacity:1; }
}
.cookie-banner p {
  flex: 1;
  margin: 0;
  color: #F3F3E6;
}
.cookie-banner .cookie-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', Arial, sans-serif;
  background: #7EC67B;
  color: #254141;
  border: none;
  border-radius: 23px;
  font-size: 1rem;
  font-weight: 600;
  padding: 9px 27px;
  margin-left: 13px;
  margin-bottom: 0;
  box-shadow: 0 0 10px #7EC67B51;
  transition: background 0.19s, color 0.13s, box-shadow 0.23s;
  cursor: pointer;
}
.cookie-banner .cookie-btn:hover, .cookie-banner .cookie-btn:focus {
  background: #254141;
  color: #7EC67B;
  border: 1.2px solid #7EC67B;
}
.cookie-banner .cookie-btn.secondary {
  background: #183032;
  color: #7EC67B;
  border: 1.2px solid #7EC67B;
}

@media(max-width: 680px){
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 13px 7vw 13px 10px;
    font-size: 0.95rem;
    gap: 12px;
  }
  .cookie-banner .cookie-btn {
    width: 100%;
    margin-left: 0; margin-bottom: 5px;
  }
}

.cookie-modal {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(18, 33, 32, 0.89);
  z-index: 10020;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  animation: cookies-modal .33s cubic-bezier(.5,.13,.2,1);
}
@keyframes cookies-modal {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.cookie-modal-content {
  background: #F3F3E6;
  color: #254141;
  border-radius: 19px;
  padding: 42px 30px 32px 30px;
  width: 95vw; max-width: 410px;
  box-shadow: 0 20px 42px #25414144,0 2px 9px #25414122;
  font-family: "Open Sans", sans-serif;
}
.cookie-modal-content h2 {
  color: #254141;
  margin-bottom: 10px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-modal-content ul {
  margin-bottom: 16px;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 6px 0;
  padding: 7px 0;
  font-size: 1rem;
}
.cookie-toggle {
  appearance: none;
  display: inline-block;
  width: 44px; height: 24px;
  background: #d3e9db;
  border-radius: 13px;
  position: relative;
  outline: none;
  border: none;
  vertical-align: middle;
  transition: background .14s;
  margin-left: 10px;
}
.cookie-toggle:checked {
  background: #7EC67B;
}
.cookie-toggle:before {
  content: '';
  display: block;
  width: 21px; height: 21px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  top: 1.5px; left: 2px;
  transition: transform .14s;
  box-shadow: 0 2px 7px #7EC67B22;
}
.cookie-toggle:checked:before {
  transform: translateX(20px);
}
.cookie-modal-content .action-btns {
  display: flex;
  gap: 14px;
  margin-top: 18px;
  justify-content: flex-end;
}
.cookie-modal-content button {
  background: #254141;
  color: #7EC67B;
  border: none;
  padding: 8px 22px;
  border-radius: 18px;
  font-weight: bold;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  transition: background 0.12s, color 0.13s;
}
.cookie-modal-content button:hover, .cookie-modal-content button:focus {
  background: #7EC67B;
  color: #254141;
}

/* --- RESPONSIVE SETTINGS --- */
@media (max-width: 900px) {
  .container {
    max-width: 99vw;
    padding-left: 10px;
    padding-right: 10px;
  }
  .main-nav,
  .footer-nav {
    gap: 12px;
  }
}
@media (max-width: 680px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.23rem; }
  .subheadline { font-size: 1.1rem; }
  .footer-info { font-size: 0.91rem; }
  .feature, .service {
    min-width: 90vw;
    max-width: 99vw;
  }
}
@media (max-width: 520px) {
  .container {padding: 0 3vw;}
  h1 { font-size: 1.44rem; margin-bottom: 12px; }
  .cta-button {padding: 8px 10vw; font-size: 0.96rem;}
  .blog-preview, .testimonial-card {padding: 11px 4vw;}
}

/* --- GENERAL UTILITIES --- */
@media (max-width: 900px) {
  .feature-grid, .service-list, .content-grid, .card-container {
    flex-direction: column;
    gap: 16px;
  }
}
.section:not(:last-child) {
  margin-bottom: 60px;
}

/* --- 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; }

/* --- BRAND NEON SHADOWS & HIGHLIGHTS --- */
.cta-button, .feature, .service, .main-nav a, .mobile-nav a {
  box-shadow: 0 0 0 #7EC67B00,0 0 8px #7EC67B21, 0 0 4px #25414105;
}
.cta-button:hover, .cta-button:focus {
  box-shadow: 0 0 14px #7EC67B, 0 0 16px #7EC67B77;
}

/* --- ICON EFFECTS --- */
.feature img, .service img, .text-section ul img, .text-section li img {
  filter: drop-shadow(0 0 7px #7EC67B44);
  margin-right: 9px;
}

/* --- MISC --- */
.text-section ul {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 10px;
}
ul li {
  margin-bottom: 7px;
}
.text-section ul li {
  color: #F3F3E6;
  line-height: 1.7;
}
h2 + ul, h3 + ul {
  margin-bottom: 12px !important;
}

@media (max-width: 745px) {
  footer .container, .footer-nav {flex-direction: column; gap: 8px;}
}

/* --- FORM FIELDS (OPTIONAL, PREPARED) --- */
input, textarea, select {
  border-radius: 12px;
  border: 1.5px solid #7EC67B55;
  padding: 10px 13px;
  background: #122120;
  color: #F3F3E6;
  outline: none;
  font-size: 1rem;
  font-family: 'Open Sans', Arial, sans-serif;
  margin-bottom: 13px;
  transition: box-shadow .18s, border-color .16s, background .14s;
}
input:focus, textarea:focus, select:focus {
  border-color: #7EC67B;
  background: #183032;
  box-shadow: 0 1.5px 9px #7EC67B33;
}

/* Remove Chrome autofill bg */
input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 100px #183032 inset;
  -webkit-text-fill-color: #F3F3E6 !important;
}

/* --- HIDE/SHOW UTILS --- */
.hide {display: none!important;}

/* --- ANIMATIONS --- */
@media (prefers-reduced-motion: no-preference) {
  .cta-button,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal,
  .card,
  .feature,
  .service,
  .testimonial-card,
  .blog-preview {
    transition: all 0.2s cubic-bezier(.4,.2,.2,1);
  }
}
