/* 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,
main, menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  box-sizing: border-box;
  vertical-align: baseline;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, main, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #141A1C;
  color: #F6F6F2;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-weight: 400;
  min-height: 100vh;
}
.selection, ::selection {background:#217A3E;color:#fff;}
ul, ol {list-style: none;}
a {color: inherit;text-decoration: none;transition: color .24s;}
img {max-width: 100%;display: block;}
table {border-collapse: collapse;width: 100%;}
th, td {padding: 12px 16px;text-align: left;}
hr {border: none; border-top: 1px solid #155226; margin: 24px 0;}

/* BRANDING & TYPOGRAPHY */
h1 {font-family: 'Montserrat', Arial, sans-serif; font-weight: 700; font-size: 2.5rem; letter-spacing: 0.5px; margin-bottom: 24px; color: #A2FFB5; text-shadow: 0 2px 16px #217A3E55;}
h2 {font-family: 'Montserrat', Arial, sans-serif; font-weight: 600; font-size: 2rem; margin-bottom: 18px; color: #00FFA6; text-shadow: 0 1px 8px #217A3E44;}
h3 {font-family: 'Montserrat', Arial, sans-serif; font-weight: 500; font-size: 1.3rem; margin-bottom: 8px; color: #92FFD0;}
h4, h5, h6 {font-family: 'Montserrat', Arial, sans-serif; color: #E0FFE2;}
p, li, td, th, dd {font-family: 'Roboto', Arial, sans-serif; font-size: 1.08rem; color: #F6F6F2; line-height: 1.7;}
strong, b {font-weight: 700;}
em, i {color: #A2FFB5;}
a:hover, a:focus {color: #3AFFC1; text-shadow: 0 0 3px #00FFA6;} /* neon-esque */

/* LAYOUT CLASSES */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {margin-bottom: 60px;padding: 40px 20px;background: transparent;}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  background: #183228;
  border-radius: 18px;
  position: relative;
  box-shadow: 0 4px 28px 0 #217A3E44, 0 0 0 2px #217A3Ee0;
  padding: 24px 18px;
  transition: transform .21s cubic-bezier(.4,1.7,.4,1), box-shadow .24s;
  border: 1px solid #217A3E;
}
.card:hover {
  transform: translateY(-6px) scale(1.017);
  box-shadow: 0 6px 36px 0 #3AFFC166, 0 0 0 3px #00FFA666;
}
.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;
}
.text-section {
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  margin-bottom: 24px;
  background: #F6F6F2;
  color: #183228;
  border-radius: 14px;
  box-shadow: 0 1px 12px #217A3E33;
  position: relative;
  border-left: 4px solid #00FFA6;
  min-width: 200px;
  max-width: 540px;
}
.testimonial-card p {
  color: #183228;
  font-size: 1.1rem;
  font-style: italic;
}
.testimonial-card span {
  color: #217A3E;
  font-size: 1rem;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* HEADER & NAVIGATION */
header {
  background: linear-gradient(90deg, #122F23 50%, #217A3E 100%);
  border-bottom: 2px solid #00FFA6;
  box-shadow: 0 2px 28px 0 #217A3E33;
  position: sticky;
  top: 0;
  z-index: 1002;
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 72px;
}
header nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #A2FFB5;
  letter-spacing: 0.03em;
  font-size: 1.07rem;
  padding: 7px 13px;
  border-radius: 8px;
  transition: background 0.19s, color 0.18s, box-shadow .18s;
  position: relative;
}
header nav a.cta-primary {
  background: #00FFA6;
  color: #183228 !important;
  font-weight: 700;
  box-shadow: 0 0 12px #00ffa7bb;
  border-radius: 11px;
  padding: 9px 20px;
  transition: box-shadow .18s, color .18s, background .18s;
}
header nav a.cta-primary:hover,
header nav a.cta-primary:focus {
  box-shadow: 0 0 24px #00ffa7ee, 0 0 0 3px #217A3E;
  background: #3AFFC1;
  color: #183228;
}
header nav a:hover,
header nav a:focus {
  background: #3AFFC126;
  color: #E0FFE2;
  box-shadow: 0 0 8px #00FFA6;
}

/* HAMBURGER MOBILE MENU */
.mobile-menu-toggle {
  background: none;
  border: none;
  color: #00FFA6;
  font-size: 2.2rem;
  cursor: pointer;
  display: none;
  z-index: 1202;
  padding: 8px 12px;
  margin-left: 16px;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: #141A1Ce6;
  backdrop-filter: blur(5px);
  transform: translateX(-110vw);
  transition: transform 0.37s cubic-bezier(.68,1,.34,.98);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #00FFA6;
  font-size: 2.4rem;
  cursor: pointer;
  padding: 22px 22px 0 22px;
  align-self: flex-end;
  transition: color .18s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {color: #217A3E;}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100vw;
  margin: 36px 0 0 0;
  align-items: flex-start;
  padding-left: 32px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.35rem;
  color: #A2FFB5;
  font-weight: 600;
  padding: 12px 10px;
  border-radius: 9px;
  transition: background .14s, color .14s, box-shadow .14s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #00FFA6;
  color: #183228;
  box-shadow:0 0 10px #00FFA6,0 0 10px #00FFA6 inset;
}

/* --- MAIN SECTIONS AND CARDS --- */
section {
  width: 100%;
  margin-bottom: 60px;
  padding: 40px 20px;
  background: linear-gradient(135deg, #122F23 65%, #217A3E 100%);
  border-radius: 22px;
  box-shadow: 0 6px 48px 0 #217A3E13;
  position: relative;
}
section:nth-of-type(even) {
  background: linear-gradient(120deg, #217A3E 60%, #183228 100%);
}
section .card, section .testimonial-card {
  margin-bottom: 20px;
}
ul, ol {margin-left: 0;margin-top: 0;margin-bottom: 16px;}
ul li, ol li {margin-bottom: 10px;display: flex;align-items: flex-start;gap: 13px;}
ul li img, ol li img {width:30px;min-width:30px;margin-right:8px;filter: drop-shadow(0 0 5px #00FFA6bb);}

/* CTA BUTTONS */
.cta-primary, .cta-secondary {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.13rem;
  padding: 10px 28px;
  border-radius: 13px;
  border: none;
  cursor: pointer;
  letter-spacing: 1px;
  text-align: center;
  background: #00FFA6;
  color: #15341e;
  margin-top: 12px;
  box-shadow: 0 0 24px #00ffa788;
  transition: background .17s, color .17s, box-shadow .19s, transform .19s;
  margin-bottom: 8px;
  position: relative;
}
.cta-primary:active, .cta-primary:focus, .cta-secondary:active, .cta-secondary:focus {
  outline: 3px solid #00FFA6BB;
  transform: scale(.98);
  box-shadow: 0 0 36px #00ffa7bb, 0 0 10px #183228; 
}
.cta-primary:hover, .cta-secondary:hover {
  color: #163622;
  background: #3AFFC1;
  box-shadow: 0 0 38px #00ffa7bb;
}
.cta-secondary {
  background: none;
  border: 2px solid #00FFA6;
  color: #00FFA6;
  font-weight: 600;
  margin-left: 4px;
  box-shadow: none;
}
.cta-secondary:hover,
.cta-secondary:focus {
  background: #00FFA6;
  color: #15341e;
  box-shadow: 0 0 20px #00FFA6;
}

/* TABLES */
table {
  width: 100%;
  background: #183228;
  color: #A2FFB5;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: 0 2px 18px #217A3E22;
}
thead th {
  background: #217A3E;
  color: #F6F6F2;
  font-weight: 700;
  font-size: 1.11rem;
  letter-spacing: 1px;
}
tbody tr:nth-child(even) {background: #155226;}
tbody tr:nth-child(odd) {background: #1e3c27;}
td, th {font-size: 1rem;}

/* DL FAQ STYLING */
dl {margin: 0 0 16px 2px;}
dt {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #00FFA6;
  font-weight: 600;
  font-size: 1.09rem;
  margin-top: 18px;
  margin-bottom: 3px;
}
dd {margin-bottom: 18px;margin-left: 0;color: #F6F6F2;}

/* FOOTER */
footer {
  background: linear-gradient(90deg,#122F23 0,#217A3E 75%);
  color: #A2FFB5;
  font-family: 'Montserrat', Arial, sans-serif;
  border-top: 2px solid #00FFA6;
  margin-top: 54px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: flex-start;
  justify-content: space-between;
  padding: 32px 10px 22px 10px;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: flex-start;
}
footer nav a {
  color: #A2FFB5;
  font-size: 1.03rem;
  letter-spacing: 0.03em;
  padding: 3px 8px;
  border-radius: 8px;
  transition: background .14s, color .12s;
}
footer nav a:hover,footer nav a:focus {
  background: #00FFA625;
  color: #183228;
}
.footer-contacts {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.footer-contacts p {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #d2ffe3;
  font-size: 1rem;
}
.footer-contacts img {width: 22px; min-width: 22px; filter: drop-shadow(0 0 3px #00FFA666);}
.footer-logo {margin-top: 0;}
.footer-logo img {width:70px; min-width:58px;filter:saturate(1.5) drop-shadow(0 0 14px #00FFA666);}

/* COOKIES BANNER STYLES */
.cookie-consent-banner {
  position: fixed;
  left: 0;right: 0;bottom: 0;
  width: 100vw;
  padding: 26px 14px 18px 14px;
  background: #222F2B;
  color: #E0FFE2;
  box-shadow: 0 -3px 38px #217A3E22;
  z-index: 1500;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  animation: banner-slideup .78s cubic-bezier(.64,1,.32,1);
}
@keyframes banner-slideup {
  from{transform:translateY(70px);opacity:0;}
  to{transform:translateY(0);opacity:1;}
}
.cookie-consent-banner p {
  font-size: 1.02rem;
  color: #E0FFE2;
}
.cookie-btn-group {
  display: flex;
  gap: 17px;
  margin-top: 10px;
}
.cookie-btn-group button {
  background: #00FFA6;
  color: #183228;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  padding: 6px 18px;
  border-radius: 8px;
  font-size: 1.05rem;
  border: none;
  margin-bottom: 0;
  cursor: pointer;
  transition: background .15s, color .15s, box-shadow .18s;
  box-shadow: 0 2px 14px #00FFA666, 0 0 1px #217A3E;
}
.cookie-btn-group button:hover, .cookie-btn-group button:focus {
  background: #3AFFC1;
  color: #217A3E;
  box-shadow: 0 4px 18px #00FFA6BB;
}
.cookie-btn-group .cookie-settings-btn {
  background: none;
  box-shadow: none;
  color: #00FFA6;
  border: 2px solid #00FFA6;
}
.cookie-btn-group .cookie-settings-btn:hover,
.cookie-btn-group .cookie-settings-btn:focus {
  background: #00FFA6;
  color: #183228;
}

/* COOKIE MODAL */
.cookie-modal-overlay {
  position: fixed;top:0;left:0;width:100vw;height:100vh;
  background:#141A1Ce6;backdrop-filter: blur(7px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1600;
  transition: opacity .29s;
}
.cookie-modal {
  background: #1e3c27;
  color: #E0FFE2;
  border-radius: 20px;
  box-shadow: 0 5px 60px #217A3Eee, 0 0 0 4px #00FFA6;
  padding: 36px 22px 18px 22px;
  min-width: 280px;
  min-height: 160px;
  display: flex;
  flex-direction: column;
  gap: 21px;
  align-items: center;
  position: relative;
  animation: modal-bounce .43s cubic-bezier(.21,1.55,.28,1);
}
@keyframes modal-bounce {
  0%{transform: scale(.85); opacity: 0;}
  70%{transform: scale(1.05); opacity: 1}
  100%{transform: scale(1);}
}
.cookie-modal h3 {
  color: #00FFA6;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 7px;
}
.cookie-category {
  display: flex;flex-direction: row;align-items: center;gap: 17px;
}
.cookie-switch {
  width: 44px; height: 24px;
  background: #155226;
  border-radius: 16px;
  margin-left: 13px;
  position: relative;
  cursor: pointer;
  transition: background .18s;
  border: 2px solid #A2FFB5;
}
.cookie-switch input {display: none;}
.cookie-switch span {
  display: block;
  width: 20px; height: 20px;
  background: #00FFA6;
  border-radius: 50%;
  position: absolute;
  top: 0; left: 0;
  transition: left .15s, background .15s;
}
.cookie-switch input:checked + span {
  left: 20px;
  background: #3AFFC1;
}
.cookie-modal .close-cookie-modal {
  position: absolute;
  top: 12px; right: 18px;
  background: none;
  border: none;
  color: #00FFA6;
  font-size: 2rem;
  cursor: pointer;
  z-index: 10;
}
.cookie-modal .close-cookie-modal:hover, .cookie-modal .close-cookie-modal:focus{color:#217A3E;}

/* UTILITY: VISIBILITY FOR MOBILE DESKTOP */
@media (max-width: 1060px) {
  .container {max-width: 98vw;}
}
@media (max-width: 900px) {
  header .container {gap:16px;}
  footer .container {flex-direction: column;gap:22px;align-items: flex-start;}
}
@media (max-width: 768px) {
  .content-wrapper, .container {
    padding-left: 7px;
    padding-right: 7px;
    gap: 13px;
  }
  section {
    padding: 22px 4vw;
    border-radius: 17px;
  }
  .content-grid, .card-container {
    flex-direction: column;
    gap: 20px;
  }
  header .container {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    min-height: 54px;
  }
  header nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
  }
  .testimonial-card {
    max-width: 100%;
    min-width: 0;
    font-size: 1rem;
  }
  .card {
    min-width: 0;
  }
  .footer-contacts, .footer-logo {
    align-items: flex-start;
  }
}
@media (max-width: 500px) {
  h1 {font-size: 1.7rem;}
  h2 {font-size: 1.2rem;}
  .cta-primary, .cta-secondary {font-size:1rem;padding:8px 14px;}
  section {padding:14px 2vw;}
}

/* ANIMATION CLASSES */
.fade-in {
  opacity: 0;
  transition: opacity .4s;
}
.fade-in.visible {
  opacity: 1;
}

/* MISC SPACING & HIERS */
main {
  margin-bottom: 60px;
}
.card + .card, .testimonial-card + .testimonial-card, .feature-item + .feature-item {
  margin-top: 20px;
}
.text-section + .cta-primary, .text-section + .cta-secondary {
  margin-top: 18px;
}

/* ACCENTED VISUALS */
::-webkit-scrollbar {
  background: #183228;
  width: 8px;
}
::-webkit-scrollbar-thumb {
  background: #155226;
  border-radius: 7px;
}
::-webkit-scrollbar-thumb:hover {
  background: #00FFA6;
}

/* NEON EFFECTS */
.neon-text {
  color: #00FFA6;
  text-shadow: 0 0 6px #00FFA6, 0 0 20px #3AFFC1, 0 0 40px #00FFA699;
}
.neon-border {
  border: 2px solid #3AFFC1;
  box-shadow: 0 0 12px #00FFA6cc;
}

/* HOVER ANIMATION FOR ICON-BASED LIS */
ul li img, ol li img {
  transition: filter .18s, transform .15s;
}
ul li:hover img, ol li:hover img {
  filter: brightness(1.2) drop-shadow(0 0 9px #00FFA6cc);
  transform: scale(1.13) rotate(-6deg);
}

/* --- END --- */
