/* CSS RESET & NORMALIZATION */
html {
  box-sizing: border-box;
  font-size: 16px;
  -webkit-tap-highlight-color: transparent;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  min-height: 100vh;
  background: #161B1D;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  color: #F5FAF6;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
a {
  color: #64ffda;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #00e67e;
  outline: none;
}
ul, ol {
  padding-left: 28px;
  margin-bottom: 20px;
}
h1, h2, h3, h4, h5, h6 {
  color: #A4C694;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  line-height: 1.22;
  margin-bottom: 18px;
}
h1 { font-size: 2.1rem; }
h2 { font-size: 1.5rem; margin-top: 16px; }
h3 { font-size: 1.1rem; margin-top: 12px; }
h4, h5, h6 { font-size: 1rem; margin-top: 10px; }
p {
  margin-bottom: 14px;
}
strong { color: #E0FFDD; font-weight: 700; }

/* --------- LAYOUT: CONTAINER & FLEX --------- */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #1c2325;
  border-radius: 18px;
  box-shadow: 0 2px 20px 0 rgba(36, 91, 54, 0.08);
}
@media (max-width: 768px) {
  .section {
    margin-bottom: 40px;
    padding: 24px 10px;
    border-radius: 8px;
  }
}

/* -------- HEADER & NAVIGATION -------- */
header {
  background: linear-gradient(90deg, #183a25 0%, #245B36 100%);
  box-shadow: 0 2px 16px 0 rgba(36,91,54,0.15);
  position: relative;
  z-index: 99;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
  gap: 20px;
}
.logo img {
  display: block;
  height: 43px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}
.main-nav a {
  color: #F5FAF6;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  letter-spacing: 0.01em;
  position: relative;
  padding: 5px 2px;
  transition: color 0.2s;
}
.main-nav a:after {
  content: '';
  display: block;
  margin: 3px auto 0 auto;
  height: 2px;
  width: 0%;
  background: #00e67e;
  transition: width 0.26s cubic-bezier(.4,0,.2,1);
  border-radius: 2px;
}
.main-nav a:hover, .main-nav a:focus {
  color: #00e67e;
}
.main-nav a:hover:after, .main-nav a:focus:after {
  width: 75%;
}
.cta-button {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  color: #161B1D;
  background: linear-gradient(90deg, #29e071 0%, #25aae1 100%);
  border-radius: 26px;
  padding: 11px 30px;
  margin-left: 12px;
  cursor: pointer;
  box-shadow: 0 2px 20px 0 rgba(36, 255, 180, 0.18);
  transition: background 0.18s, box-shadow 0.18s, color 0.18s;
  outline: none;
  text-shadow: 0 1px 5px rgba(36,91,54,0.10);
}
.cta-button:hover, .cta-button:focus {
  background: linear-gradient(90deg, #25aae1 0%, #29e071 100%);
  color: #F5FAF6;
  box-shadow: 0 6px 28px 0 rgba(42, 255, 180, 0.18);
}

/* -------- MOBILE BURGER MENU -------- */
.mobile-menu-toggle {
  display: none;
  border: none;
  background: none;
  font-size: 2.1rem;
  color: #A4C694;
  cursor: pointer;
  margin-left: 10px;
  z-index: 201;
  transition: color 0.18s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  color: #00f5a7;
}

@media (max-width: 1024px) {
  .main-nav {
    display: none;
  }
  .cta-button {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(28, 35, 37, 0.98);
  z-index: 202;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  transform: translateX(-100vw);
  transition: transform 0.36s cubic-bezier(.24,.92,.47,1.21);
  overflow-y: auto;
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 18px 20px 6px 0;
  background: none;
  color: #A4C694;
  border: none;
  font-size: 2.2rem;
  cursor: pointer;
  z-index: 210;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 20px 40px;
  width: 100vw;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.45rem;
  color: #E0FFDD;
  letter-spacing: 0.03em;
  padding: 13px 0;
  border-bottom: 1px solid #28434b33;
  transition: color 0.18s;
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #00e67e;
}

@media (min-width: 1025px) {
  .mobile-menu, .mobile-menu-toggle {
    display: none !important;
  }
}

/* ----------- FLEX COMPONENT PATTERNS ----------- */
.features-grid, .card-container, .testimonial-list, .content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
  margin-bottom: 12px;
}
.features-grid > div,
.card-container > .card {
  flex: 1 1 260px;
  min-width: 220px;
  background: #212825;
  border-radius: 16px;
  box-shadow: 0 2px 18px rgba(40,255,180,0.07), 0 1.5px 7px rgba(36,91,54,0.07);
  padding: 30px 20px 20px 20px;
  margin-bottom: 20px;
  transition: box-shadow 0.23s, border 0.19s;
  position: relative;
  border: 2px solid transparent;
}
.features-grid > div:hover, .card:hover {
  box-shadow: 0 8px 28px rgba(39, 255, 180, 0.18), 0 1.5px 7px rgba(36,91,54,0.09);
  border: 2px solid #00e67e44;
}

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


/* ----------- TESTIMONIALS ----------- */
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 12px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 20px;
  background: #F5FAF6;
  color: #213925;
  border-radius: 14px;
  box-shadow: 0 1px 14px 0 rgba(36, 91, 54, 0.17);
  min-width: 230px;
  max-width: 390px;
  margin-bottom: 24px;
  font-size: 1.08rem;
  position: relative;
  border-left: 4px solid #29e071;
  transition: box-shadow 0.18s, border-color 0.22s;
}
.testimonial-card span {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 0.98rem;
  color: #245B36;
  font-weight: 500;
  margin-top: 6px;
}
.testimonial-card:hover {
  box-shadow: 0 6px 28px 0 rgba(28, 225, 117, 0.15);
  border-left: 4px solid #25aae1;
}
@media (max-width:640px){
  .testimonial-card {
    max-width: 100%;
    min-width: 0;
  }
}

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

/* ----------- BUTTONS ----------- */
button, .cta-button, input[type="submit"], input[type="button"] {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  border: none;
  border-radius: 26px;
  padding: 12px 32px;
  cursor: pointer;
  box-shadow: 0 2px 16px 0 rgba(29,255,166,0.09);
  transition: background 0.19s, color 0.16s, box-shadow 0.18s;
  background: linear-gradient(90deg, #25aae1 0%, #29e071 100%);
  color: #181e18;
  font-weight: 700;
}
button:hover, button:focus,
.cta-button:hover, .cta-button:focus,
input[type="submit"]:hover, input[type="button"]:hover {
  background: linear-gradient(90deg, #29e071 0%, #25aae1 100%);
  color: #fff;
  box-shadow: 0 6px 28px 0 rgba(36,255,180,0.18);
}

/* SOCIAL ICONS */
.content-wrapper ul li img, .contact-details img {
  height: 1.3em;
  width: 1.3em;
  vertical-align: middle;
  margin-right: 11px;
  filter: drop-shadow(0 2px 6px #25aae188);
}

/* ----------- FOOTER ----------- */
footer {
  background: #16211d;
  color: #adcdbd;
  border-top: 2px solid #29e07144;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  padding-top: 34px;
  padding-bottom: 26px;
}
.footer-brand img {
  height: 45px;
  margin-bottom: 8px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 10px 0;
}
.footer-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #A4C694;
  font-size: 1rem;
  transition: color 0.16s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #00e67e;
}
.footer-contact p {
  color: #98ba98;
  font-size: 0.99rem;
  line-height: 1.8;
}

@media (max-width:920px) {
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
  }
}
.footer-contact {
  margin-top: 9px;
}

/* --------- CARDS & GENERIC FLEX -------- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 18px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #23281f;
  border-radius: 18px;
  box-shadow: 0 2px 18px rgba(40,255,180,0.07), 0 1.5px 7px rgba(36,91,54,0.09);
  padding: 22px 14px;
  border: 2px solid transparent;
  transition: box-shadow 0.20s, border-color 0.16s;
  min-width: 230px;
  flex: 1 1 240px;
}
.card:hover {
  border: 2px solid #00e67e55;
  box-shadow: 0 6px 22px rgba(40, 225, 170, 0.11);
}

/* ----------- MISC ----------- */
::-webkit-scrollbar { width: 8px; background: #191e1b; }
::-webkit-scrollbar-thumb { background: #29e071; border-radius: 8px; }
::-webkit-scrollbar-thumb:hover { background: #25aae1; }

hr {
  border: none;
  border-bottom: 1px solid #384444;
  margin: 32px 0;
}

/* ----------- COOKIE CONSENT BANNER ----------- */
.cookie-banner {
  position: fixed;
  left: 0; bottom: 0; width: 100%;
  z-index: 1100;
  background: #161B1Dc9;
  border-top: 2px solid #25aae1;
  box-shadow: 0 -5px 25px 0 rgba(56,255,180,0.08);
  color: #F5FAF6;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 18px 24px;
  font-size: 1rem;
  animation: cookieBannerIn .5s cubic-bezier(.54,1.65,.55,.89);
}
@keyframes cookieBannerIn {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner__text {
  flex: 1 1 350px;
  max-width: 680px;
}
.cookie-banner__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.cookie-banner__button {
  background: #25aae1;
  color: #161B1D;
  border-radius: 22px;
  padding: 8px 20px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  border: none;
  margin-right: 3px;
  font-weight: 600;
  transition: background 0.16s, color 0.12s, box-shadow 0.18s;
  cursor: pointer;
  box-shadow: 0 2px 16px 0 rgba(29,255,166,0.08);
}
.cookie-banner__button:hover, .cookie-banner__button:focus {
  background: #29e071;
  color: #fff;
}
.cookie-banner__button--secondary {
  background: transparent;
  color: #A4C694;
  border: 2px solid #29e071;
}
.cookie-banner__button--secondary:hover, .cookie-banner__button--secondary:focus {
  background: #25aae1;
  color: #fff;
}

@media (max-width:768px){
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 10px;
    gap: 12px;
    font-size: 0.95rem;
  }
  .cookie-banner__actions {
    gap: 8px;
  }
}

/* ----------- COOKIE MODAL ----------- */
.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(32,36,32,0.93);
  z-index: 1300;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cookieModalIn .42s cubic-bezier(.54,1.65,.55,.89);
}
@keyframes cookieModalIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #F5FAF6;
  color: #181e18;
  border-radius: 18px;
  padding: 38px 30px 24px 30px;
  box-shadow: 0 10px 44px 0 rgba(36,91,54,0.19);
  min-width: 320px;
  max-width: 94vw;
  max-height: 92vh;
  overflow-y: auto;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 19px;
}
.cookie-modal__close {
  position: absolute;
  top: 16px; right: 16px;
  background: none;
  border: none;
  font-size: 2.1rem;
  color: #245B36;
  cursor: pointer;
  transition: color 0.17s;
}
.cookie-modal__close:hover {
  color: #25aae1;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 17px;
}
.cookie-category {
  padding: 12px 0 5px 0;
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 1.08rem;
}
.cookie-category label {
  font-weight: 600;
  color: #245B36;
}
.cookie-category input[type="checkbox"] {
  width: 20px; height: 20px;
  accent-color: #25aae1;
  margin: 0 5px 0 0;
}
.cookie-category--essential label {
  color: #29e071;
}
.cookie-modal__actions {
  display: flex;
  gap: 14px;
  margin-top: 11px;
}
.cookie-modal__button {
  background: #25aae1;
  color: #161B1D;
  border-radius: 22px;
  padding: 10px 22px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  border: none;
  font-weight: 600;
  transition: background 0.16s, color 0.18s, box-shadow 0.18s;
  cursor: pointer;
}
.cookie-modal__button--secondary {
  background: transparent;
  color: #245B36;
  border: 2px solid #25aae1;
}
.cookie-modal__button:hover, .cookie-modal__button:focus {
  background: #29e071;
  color: #fff;
}
.cookie-modal__button--secondary:hover, .cookie-modal__button--secondary:focus {
  background: #25aae1;
  color: #fff;
}
@media (max-width:500px) {
  .cookie-modal {
    padding: 18px 6vw 14px 6vw;
    min-width: 0;
  }
}

/* -------------- TYPOGRAPHY SCALE --------------- */
html { font-size: 16px; }
@media (max-width: 600px) {
  html { font-size: 15px; }
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.18rem; }
  h3 { font-size: 1rem; }
}

/* --------------- RESPONSIVE --------------- */
@media (max-width: 900px) {
  h1 { font-size: 1.6rem; }
  .footer-nav, .footer-contact { font-size: 0.94rem; }
  .features-grid > div, .card-container > .card {
    padding: 14px 9px 13px 9px;
  }
}
@media (max-width: 480px) {
  .container {
    padding-left: 6px;
    padding-right: 6px;
  }
  .cookie-modal {
    padding: 12px 2vw 8px 2vw;
  }
}

/* ------------- MICRO-INTERACTIONS -------------- */
.card, .testimonial-card, .cta-button, .cookie-banner__button, .cookie-modal__button, .features-grid > div {
  transition: box-shadow 0.22s, border 0.17s, background 0.16s, color 0.15s, transform 0.16s;
}
.card:hover, .features-grid > div:hover {
  transform: translateY(-4px) scale(1.012);
}
.cta-button:active, .cookie-banner__button:active, .cookie-modal__button:active {
  transform: scale(0.98);
}
.testimonial-card:hover {
  transform: scale(1.017);
}
/* ----------- END ----------- */
