/* =========================
   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,
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;
}
article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section {
  display: block;
}
body {
  line-height: 1;
  min-height: 100vh;
  background: #10161a;
  color: #e8f5e9;
}
ol, ul {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  background-color: transparent;
  transition: color 0.2s;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
button, input, select, textarea {
  font: inherit;
  border: none;
  outline: none;
  background: none;
}

/* =========================
   Brand Variables & Fonts
========================= */
:root {
  --primary: #254E3B;
  --primary-mid: #1d3b2c;
  --secondary: #B3C860;
  --secondary-dark: #97a349;
  --accent: #FFFFFF;
  --bg: #10161a;
  --surface: #192226;
  --surface-alt: #223036;
  --neon-green: #8aff61;
  --border: #2a3b37;
  --shadow: 0 6px 24px rgba(50,255,171,0.08), 0 1.5px 16px rgba(80,192,188,0.05);
  --radius: 16px;
  --duration: 0.23s;
}

@font-face {
  font-family: 'Montserrat';
  font-weight: 700;
  src: local('Montserrat Bold'), local('Montserrat-Bold'), url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700&display=swap');
}
@font-face {
  font-family: 'Open Sans';
  font-weight: 400;
  src: local('Open Sans Regular'), local('OpenSans-Regular'), url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&display=swap');
}

body {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  background: linear-gradient(134deg, #10161a 0%, #223036 100%);
  color: var(--accent);
  min-height: 100vh;
  font-smooth: always;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--accent);
}
h1 { font-size: 2.8rem; margin-bottom: 24px; line-height: 1.18; }
h2 { font-size: 2rem; margin-bottom: 20px; line-height: 1.22; }
h3 { font-size: 1.25rem; margin-bottom: 12px; }
h4, h5, h6 { font-size: 1rem; }
p, ul, ol, li { font-size: 1.1rem; line-height: 1.7; color: #e7f9ee; }
strong { color: var(--secondary); font-weight: 700; }

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.4rem; }
  h3 { font-size: 1.10rem; }
}

/* Container & Section Patterns */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 18px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 768px) {
  .section {
    padding: 30px 8px;
    margin-bottom: 40px;
  }
}

/* =========== HEADER =========== */
header {
  width: 100%;
  background: var(--surface);
  box-shadow: 0 2px 12px rgba(23,35,35,0.13);
  position: fixed;
  z-index: 90;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0 0;
  height: 70px;
}
header .logo {
  margin-left: 24px;
  margin-right: 30px;
  display: flex;
  align-items: center;
  height: 55px;
}
header .logo img { height: 40px; }
header nav {
  display: flex;
  flex: 1 1 auto;
  flex-direction: row;
  gap: 16px;
}
header nav a {
  color: var(--accent);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.01em;
  padding: 3px 12px;
  border-radius: 6px;
  position: relative;
  transition: color var(--duration), background var(--duration);
}
header nav a:hover,
header nav a:focus {
  color: var(--neon-green);
  background: rgba(179, 200, 96, 0.06);
}
header .cta-btn {
  /* see .cta-btn below */
}
header .mobile-menu-toggle {
  background: none;
  border: none;
  color: var(--secondary);
  font-size: 2rem;
  margin-right: 32px;
  margin-left: 16px;
  cursor: pointer;
  display: none;
  transition: color var(--duration);
}
header .mobile-menu-toggle:focus {
  color: var(--neon-green);
}

@media (max-width: 900px) {
  header nav { display: none; }
  header .cta-btn { display: none; }
  header .mobile-menu-toggle { display: block; }
  header {
    height: 62px;
    padding: 0 0;
  }
  header .logo {
    margin-left: 14px;
    margin-right: 14px;
    height: 45px;
  }
}

/* =========== MOBILE MENU =========== */
.mobile-menu {
  position: fixed;
  left: 100vw;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(16, 22, 26, 0.96);
  box-shadow: -8px 0 40px rgba(38, 255, 186, 0.06);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 120;
  pointer-events: none;
  opacity: 0;
  transition: 
    opacity var(--duration) cubic-bezier(.57,.21,.69,.97),
    left var(--duration) cubic-bezier(.57,.21,.69,.97);
}
.mobile-menu.open {
  left: 0;
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu .mobile-menu-close {
  color: var(--neon-green);
  background: none;
  font-size: 2.3rem;
  border: none;
  align-self: flex-end;
  margin: 16px 24px 18px 0;
  cursor: pointer;
  transition: color var(--duration);
  z-index: 121;
}
.mobile-menu .mobile-menu-close:focus {
  color: var(--secondary);
}
.mobile-menu .mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  padding: 16px 32px 32px 40px;
}
.mobile-menu .mobile-nav a {
  color: var(--accent);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1.2rem;
  letter-spacing: 0.03em;
  padding: 10px 4px;
  border-radius: 7px;
  margin-right: auto;
  transition: color var(--duration), background var(--duration);
  position: relative;
}
.mobile-menu .mobile-nav a:active,
.mobile-menu .mobile-nav a:focus,
.mobile-menu .mobile-nav a:hover {
  color: var(--secondary);
  background: rgba(77, 155, 112, 0.09);
}
/* Full screen overlay/backdrop support */
@media (max-width: 900px) {
  .mobile-menu { width: 100vw; }
}

/* =========== MAIN LAYOUT =========== */
main {
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-height: 50vh;
  padding-top: 88px;
  background: none;
}
@media (max-width: 900px) {
  main { padding-top: 68px; }
}

/* =========== HERO =========== */
.hero {
  background: linear-gradient(120deg, #192226 75%, #254E3B 100%);
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: 0 4px 30px rgba(38, 255, 186, 0.07);
  margin-bottom: 48px;
  padding-top: 35px;
  padding-bottom: 35px;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 10px;
}
.hero h1 {
  color: var(--neon-green);
  font-size: 2.8rem;
  font-family: 'Montserrat', sans-serif;
  text-shadow: 0 0 10px #83ffab44;
}
.hero p {
  color: #f2fff4;
  font-size: 1.25rem;
  margin-bottom: 22px;
}
.hero .cta-btn { margin-top: 12px; }
@media (max-width: 900px) {
  .hero { margin-bottom: 32px; }
}
@media (max-width: 600px) {
  .hero h1 { font-size: 1.6rem; }
  .hero p { font-size: 1rem; }
  .hero { padding: 34px 0 24px 0; }
}

/* =========== CTA BUTTON =========== */
.cta-btn {
  appearance: none;
  background: var(--primary);
  color: var(--neon-green);
  font-family: 'Montserrat', 'Open Sans', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.01em;
  border-radius: 28px;
  padding: 13px 33px;
  border: 2px solid var(--secondary);
  box-shadow: 0 0 16px 0 #91ff8161;
  transition: all 0.23s cubic-bezier(.62,.1,.93,1.21);
  cursor: pointer;
  display: inline-block;
  margin-left: 12px;
}
.cta-btn:hover,
.cta-btn:focus {
  background: var(--secondary);
  color: var(--primary-mid);
  box-shadow: 0 0 32px #e1ff79ad, 0 2px 12px #7ceeab59;
}

/* =========== SECTION & FLEX PATTERNS =========== */
.section { margin-bottom: 60px; padding: 40px 20px; }
.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card { margin-bottom: 20px; position: relative; background: var(--surface); border-radius: var(--radius); box-shadow: var(--shadow); }
.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; }

@media (max-width: 900px) {
  .card-container, .content-grid, .feature-grid {
    flex-direction: column;
    gap: 18px;
  }  
  .text-image-section {
    flex-direction: column;
    gap: 16px;
  }
}

/* =========== FEATURES & FEATURE GRID =========== */
.features {
  background: var(--surface-alt);
  border-radius: var(--radius);
  margin-bottom: 54px;
  box-shadow: var(--shadow);
}
.features .feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  width: 100%;
}
.features .feature-grid > div {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: 0 3px 18px #50c0bc10;
  padding: 28px 20px 22px 20px;
  min-width: 220px;
  flex: 1 1 210px;
  max-width: 280px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
  border: 1.5px solid #29403a;
  margin-bottom: 20px;
  position: relative;
  transition: border .21s, box-shadow .21s, transform .23s;
}
.features .feature-grid > div:hover, .features .feature-grid > div:focus-within {
  border: 1.5px solid var(--neon-green);
  box-shadow: 0 6px 32px #8aff6129;
  transform: translateY(-3px) scale(1.025);
}
.features .feature-grid img {
  height: 42px;
  width: 42px;
  margin-bottom: 8px;
  filter: drop-shadow(0px 4px 16px #93ffb94e);
}
.features h3 {
  color: var(--secondary);
  font-size: 1.2rem;
  margin-bottom: 7px;
  margin-top: 0;
}
.features p {
  color: #eafff2;
  margin-bottom: 0;
  word-break: break-word;
}
@media (max-width: 900px) {
  .features .feature-grid > div { max-width: 100%; min-width: 0; }
}

/* =========== SERVICE LIST =========== */
.services {
  background: var(--surface-alt);
  border-radius: var(--radius);
  margin-bottom: 56px;
  box-shadow: 0 2px 20px #5ec1bf15;
}
.services .service-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px;
  padding: 0;
  margin-top: 14px;
}
.services .service-list li {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px 18px 18px 18px;
  min-width: 220px;
  flex: 1 1 210px;
  max-width: 270px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
  border: 1px solid #2c463b;
  margin-bottom: 20px;
  position: relative;
  transition: border .21s, box-shadow .21s, transform .23s;
}
.services .service-list li:hover,
.services .service-list li:focus-within {
  border: 1.5px solid var(--secondary);
  box-shadow: 0 6px 32px #79ffa734;
  transform: translateY(-2px) scale(1.018);
}
.services .service-list img {
  height: 38px;
  width: 38px;
  margin-bottom: 8px;
  filter: drop-shadow(0px 2px 8px #ffe66b67);
}
.services .service-list strong {
  color: var(--secondary);
  font-size: 1.08rem;
}
.services .service-list span {
  color: var(--accent);
  font-size: 1rem;
  margin-bottom: 4px;
  margin-top: -6px;
  font-family: 'Open Sans', Arial, sans-serif;
  opacity: .76;
}
.services .service-list p {
  margin-bottom: 0;
  color: #eafff2;
  font-size: 1.04rem;
}
@media (max-width: 900px) {
  .services .service-list {
    flex-direction: column;
    gap: 17px;
  }
}

/* =========== TESTIMONIALS =========== */
.testimonials {
  background: var(--surface-alt);
  border-radius: var(--radius);
  margin-bottom: 54px;
  box-shadow: 0 2px 24px #90eba912;
}
.testimonials .testimonial-card, .features .testimonial-card {
  background: #f5fbe7;
  color: #262826;
  border-radius: 12px;
  box-shadow: 0 2px 16px #27603e14;
  padding: 22px 26px;
  margin-bottom: 20px;
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  border: 1.2px solid #d1eebd;
  font-family: 'Open Sans', Arial, sans-serif;
  max-width: 510px;
  transition: box-shadow .19s, transform .21s;
}
.testimonials .testimonial-card p,
.features .testimonial-card p {
  color: #161522;
  font-size: 1.07rem;
  margin-bottom: 7px;
}
.testimonials .testimonial-card span,
.features .testimonial-card span {
  color: #6e8636;
  font-size: .98rem;
  font-style: italic;
  font-family: 'Montserrat', Arial, sans-serif;
}
.testimonials .testimonial-card:hover, .features .testimonial-card:hover,
.testimonials .testimonial-card:focus-within, .features .testimonial-card:focus-within {
  box-shadow: 0 4px 20px #5fffa55e, 0 2px 10px #1eeba933;
  transform: scale(1.03) translateY(-1px);
}

@media (max-width: 900px) {
  .testimonials .testimonial-card, .features .testimonial-card {
    max-width: 100%;
    padding: 17px 10px;
  }
}

/* =========== CTA SECTIONS =========== */
.cta {
  background: linear-gradient(92deg, var(--secondary-dark) 0%, var(--primary) 87%);
  border-radius: var(--radius);
  margin-bottom: 48px;
  box-shadow: 0 4px 30px #eaff7920;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.cta .container, .cta .content-wrapper {
  align-items: center;
  justify-content: center;
}
.cta h2 {
  color: var(--accent);
  text-shadow: 0 2px 10px #eaff7c32;
  text-align: center;
  margin-bottom: 17px;
  font-size: 2rem;
}
.cta .cta-btn {
  background: var(--neon-green);
  color: var(--primary-mid);
  border: 2px solid var(--primary);
  box-shadow: 0 0 18px #8aff6151;
  font-size: 1.12rem;
  margin: 0;
  margin-bottom: 6px;
  transition: background .18s, color .18s, box-shadow .25s;
}
.cta .cta-btn:hover { background: var(--primary); color: var(--neon-green); }


/* =========== CARD/DIVIDERS =========== */
.card {
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

/* =========== TEXT IMAGE SECTION =========== */
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
}

/* =========== LEGAL / GENERIC =========== */
.legal {
  background: var(--surface-alt);
  border-radius: var(--radius);
  margin-bottom: 56px;
  box-shadow: 0 2px 19px #62ffbd17;
  padding: 32px 18px;
}

/* =========== CONTACT PAGE =========== */
.text-section ul {
  margin-bottom: 20px;
  padding-left: 0;
}
.text-section ul li {
  margin-bottom: 10px;
}
.text-section strong { color: var(--secondary); }

/* =========== SUCCESS PAGE =========== */
.success {
  background: linear-gradient(103deg, #cceeea 0%, #b3c860 60%);
  border-radius: var(--radius);
  box-shadow: 0 7px 36px #beedbe44;
  text-align: center;
  margin-bottom: 48px;
  color: #242e24;
}
.success h1, .success p { color: #254E3B; }

/* =========== FOOTER =========== */
footer {
  width: 100%;
  background: var(--surface-alt);
  color: var(--accent);
  padding: 28px 0 16px 0;
  border-radius: var(--radius) var(--radius) 0 0;
  margin-top: 60px;
  box-shadow: 0 -2px 16px #92ffe911;
  display: flex;
  flex-direction: row;
  justify-content: center;
}
footer .container {
  display: flex;
  align-items: center;
  justify-content: center;
}
footer .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  align-items: center;
  margin-bottom: 8px;
}
footer nav a {
  color: #afd1aa;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  transition: color var(--duration);
  border-radius: 5px;
  padding: 2px 8px;
}
footer nav a:hover, footer nav a:focus {
  color: var(--neon-green);
  background: rgba(179, 200, 96, .08);
}
footer div {
  color: #dbffe4;
  font-size: .92rem;
}

/* =========== COOKIE CONSENT BANNER =========== */
.cookie-consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2000;
  background: #223036;
  color: var(--accent);
  box-shadow: 0 -2px 22px #b3c8602c;
  padding: 22px 24px 24px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  font-size: 1.02rem;
  border-radius: 22px 22px 0 0;
  opacity: 1;
  animation: cookie-fade-in .38s;
}
@keyframes cookie-fade-in {
  from { transform: translateY(70px); opacity: 0; } to { opacity: 1; transform: translateY(0); }
}
.cookie-consent-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
}
.cookie-consent-banner button,
.cookie-consent-banner .cookie-settings-btn {
  padding: 9px 20px;
  border-radius: 18px;
  font-size: .96rem;
  font-family: 'Montserrat', Arial, sans-serif;
  margin: 0 2px;
  border: 1.5px solid var(--secondary);
  background: var(--primary);
  color: var(--neon-green);
  cursor: pointer;
  box-shadow: 0 0 9px #91ff8130;
  transition: background 0.19s, color 0.19s, box-shadow 0.25s;
}
.cookie-consent-banner button.accept {
  background: var(--secondary);
  color: var(--primary);
  border-color: var(--secondary);
}
.cookie-consent-banner button.reject {
  background: #2a3b37;
  color: #fff;
  border-color: #3b4c49;
}
.cookie-consent-banner button:hover, .cookie-consent-banner button:focus {
  background: var(--neon-green);
  color: var(--primary-mid);
  box-shadow: 0 0 17px #ffe60044;
}

/* COOKIE SETTINGS MODAL */
.cookie-modal {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  z-index: 2100;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(37, 78, 59, 0.65);
  pointer-events: auto;
  animation: cookie-modal-in .27s cubic-bezier(.65,.25,.89,1.2);
}
@keyframes cookie-modal-in {
  from { opacity: 0; } to { opacity: 1; }
}
.cookie-modal .cookie-modal-content {
  background: #f8fff3;
  color: #192226;
  border-radius: 14px;
  box-shadow: 0 13px 44px #0b0b1a32;
  min-width: 300px;
  max-width: 96vw;
  width: 420px;
  padding: 36px 34px 20px 34px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  font-size: 1.03rem;
  position: relative;
  animation: cookie-in .42s cubic-bezier(.63,.21,.82,1.23);
}
@keyframes cookie-in {
  from { transform: scale(.93) translateY(30px); opacity:0.12; } to { transform: scale(1) translateY(0); opacity:1; }
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  border: none;
  color: var(--primary);
  font-size: 1.55rem;
  cursor: pointer;
  transition: color 0.18s;
}
.cookie-modal .cookie-modal-close:hover { color: var(--secondary-dark); }
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 8px;
}
.cookie-modal .cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
  background: #dbf7e6;
  border-radius: 6px;
  padding: 11px 14px;
  font-size: 1.01rem;
}
.cookie-modal .category-label {
  flex: 1 1 auto;
  color: #254E3B;
  font-weight: 600;
}
.cookie-modal .cookie-toggle {
  appearance: none;
  width: 38px;
  height: 21px;
  background: #b3c860;
  outline: none;
  border-radius: 11px;
  border: 1.2px solid #c9eebc;
  position: relative;
  cursor: pointer;
  margin-right: 4px;
  transition: background 0.17s;
}
.cookie-modal .cookie-toggle:checked {
  background: var(--neon-green);
}
.cookie-modal .cookie-toggle::after {
  content: '';
  display: block;
  position: absolute;
  left: 2px;
  top: 2px;
  width: 17px;
  height: 17px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 6px #b3c8602a;
  transition: left 0.19s;
}
.cookie-modal .cookie-toggle:checked::after {
  left: 19px;
}
.cookie-modal .cookie-toggle[disabled], .cookie-modal .cookie-toggle[readonly] {
  opacity: .4;
  cursor: not-allowed;
}
.cookie-modal .cookie-category.desc {
  background: none;
  padding: 0;
  font-size: .95em;
  color: #143d1e;
}
.cookie-modal .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 15px;
  justify-content: flex-end;
  margin-top: 16px;
}
.cookie-modal .cookie-actions button {
  padding: 10px 22px;
  border-radius: 15px;
  font-size: 1rem;
  border: 1.5px solid var(--secondary);
  background: var(--primary);
  color: var(--neon-green);
  font-family: 'Montserrat', Arial, sans-serif;
  cursor: pointer;
  box-shadow: 0 0 8px #caff4918;
  transition: background 0.19s, color 0.18s, box-shadow 0.23s;
}
.cookie-modal .cookie-actions button.accept {
  background: var(--secondary);
  color: var(--primary);
  border-color: var(--secondary);
}
.cookie-modal .cookie-actions button.reject {
  background: #2a3b37;
  color: #254E3B;
  border-color: #5b6c63;
}
.cookie-modal .cookie-actions button:hover,
.cookie-modal .cookie-actions button:focus { background: var(--neon-green); color: var(--primary-mid); box-shadow: 0 0 17px #eaff7b23; }


/* =========== RESPOND TO SMALL VIEWPORTS =========== */
@media (max-width: 700px) {
  .container {
    max-width: 100vw;
    padding: 0 6px;
  }
  .section, .features, .services, .cta, .testimonials, .legal, .success {
    border-radius: 7px;
    margin-bottom: 17px;
    padding: 22px 5px 16px 5px;
  }
}

@media (max-width: 500px) {
  .cookie-modal .cookie-modal-content { min-width: 0; width: 98vw; padding: 12px 6vw 16px 6vw; }
}

/* =========== MICRO-INTERACTIONS & HOVERS =========== */
.card, .features .feature-grid > div, .services .service-list li, .testimonial-card {
  transition: box-shadow .21s, transform .17s, border .2s;
}
.card:hover, .features .feature-grid > div:hover, .services .service-list li:hover {
  transform: translateY(-4px) scale(1.035);
  box-shadow: 0 2px 28px #8aff6137, 0 1.5px 7px #2bff7448;
  border-color: var(--neon-green);
}

/* Ensure no element overlap, consistent gaps*/
.section > *, .container > .content-wrapper, .content-wrapper > * {
  margin-bottom: 20px;
}
.section > *:last-child, .content-wrapper > *:last-child, footer .content-wrapper > *:last-child { margin-bottom: 0; }


/* =========================
   END AXONENTDECKEN STYLE
========================= */