/* =====================
   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: inherit;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  height: 100%;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  background: #10181A;
  color: #F6F4ED;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}
ul, ol {
  margin-left: 24px;
  margin-bottom: 16px;
}
li {
  margin-bottom: 8px;
}
button, input, select, textarea {
  font: inherit;
  outline: none;
  background: none;
  border: none;
}
button:focus {
  outline: 2px solid #348C57;
}

/* =====================
   BRAND FONTS & SCALE
======================== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700&family=Roboto:wght@400;500;700&display=swap');
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  color: #F6F4ED;
  letter-spacing: 0.01em;
  line-height: 1.15;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}
h4 {
  font-size: 1.1rem;
}
section h1, section h2 {
  color: #fff;
  filter: drop-shadow(0 2px 10px #144B2F33);
}
strong {
  font-weight: 700;
}

/* =====================
   FLEX LAYOUTS & UTILITY
======================== */
.container {
  width: 100%;
  max-width: 1170px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #171F23;
  border-radius: 18px;
  box-shadow: 0 4px 32px 0 #144B2F33;
  margin-bottom: 20px;
  position: relative;
  color: #F6F4ED;
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 8px 40px 0 #348C5733, 0 0 0 2px #348C5799;
}
.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;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #F6F4ED;
  color: #10181A;
  border-radius: 16px;
  box-shadow: 0 2px 20px 0 #348C5722;
  min-width: 260px;
  flex: 1 1 250px;
  margin-bottom: 20px;
  transition: box-shadow 0.2s, transform 0.2s;
  border: 2px solid #348C5744;
}
.testimonial-card:hover {
  box-shadow: 0 6px 32px 0 #144B2F44, 0 0 0 2px #348C5733;
  transform: translateY(-2px) scale(1.01);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #171F23;
  border-radius: 16px;
  box-shadow: 0 2px 16px 0 #348C5733;
  padding: 24px;
  min-width: 220px;
  flex: 1 1 200px;
  margin-bottom: 20px;
  transition: border 0.2s, box-shadow 0.2s;
  border: 2px solid transparent;
}
.feature-item:hover {
  border: 2px solid #46E695;
  box-shadow: 0 4px 32px 0 #46E69533, 0 0 8px 1px #46E69544;
}
.feature-item img {
  width: 38px;
  height: 38px;
  filter: drop-shadow(0 0 8px #46E69599);
  margin-bottom: 6px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 20px;
}
.trust-badges {
  color: #46E695;
  font-size: 1rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  margin-top: 12px;
}

/* =========================
   GENERAL ELEMENT STYLES
=========================== */
main {
  flex: 1 1 auto;
}
section {
  margin-bottom: 60px;
  padding: 40px 0;
  background: linear-gradient(101deg, #144B2F 0%, #10181A 100%);
}
section:nth-of-type(even) {
  background: #171F23;
}
table {
  width: 100%;
  border-collapse: collapse;
  background: #171F23;
  color: #F6F4ED;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 24px;
  box-shadow: 0 2px 16px #348C5733;
}
thead {
  background: #144B2F;
}
th, td {
  padding: 16px;
  text-align: left;
  font-size: 1rem;
  border-bottom: 1px solid #348C5744;
}
th {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  background: #144B2F;
}
tr:last-child td {
  border-bottom: none;
}

blockquote {
  background: #10261d;
  border-left: 4px solid #46E695;
  padding: 16px 20px;
  color: #F6F4ED;
  border-radius: 14px;
  margin: 20px 0;
}

.text-section {
  margin-bottom: 20px;
}
.text-section img {
  vertical-align: middle;
  margin-right: 10px;
}

/* =========================
   BUTTONS
=========================== */
.btn-primary {
  background: linear-gradient(90deg, #348C57 0%, #46E695 100%);
  color: #10181A;
  font-family: 'Montserrat', 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 1.09rem;
  border-radius: 24px;
  padding: 13px 38px;
  box-shadow: 0 2px 12px 0 #46E69533;
  border: none;
  letter-spacing: 0.02em;
  margin-top: 10px;
  margin-bottom: 10px;
  transition: background 0.2s, box-shadow 0.2s, color 0.2s, transform 0.15s;
  cursor: pointer;
  display: inline-block;
  position: relative;
  overflow: hidden;
}
.btn-primary:hover, .btn-primary:focus {
  background: linear-gradient(90deg, #46E695 0%, #348C57 100%);
  box-shadow: 0 4px 32px 0 #46E69555;
  color: #144B2F;
  transform: translateY(-2px) scale(1.02);
}
.btn-primary:active {
  transform: scale(0.97);
}

/* =========================
   HEADER & NAVIGATION
=========================== */
header {
  background: #144B2F;
  box-shadow: 0 2px 24px #144B2F33;
  padding: 0;
  z-index: 101;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
}
header img {
  height: 48px;
}
nav {
  display: flex;
  align-items: center;
  gap: 26px;
}
nav a {
  color: #F6F4ED;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  padding: 8px 5px;
  position: relative;
  transition: color 0.18s;
  border-radius: 10px;
}
nav a:not(.btn-primary):hover,
nav a:not(.btn-primary):focus {
  color: #46E695;
  background: #171F23;
}
nav .btn-primary {
  margin-left: 14px;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #46E695;
  font-size: 2rem;
  padding: 6px 14px;
  cursor: pointer;
  border-radius: 8px;
  z-index: 120;
  transition: background 0.2s, color 0.2s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #171F23;
  color: #fff;
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: #10181Aee;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  z-index: 1500;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  padding: 0;
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: none;
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #ffffff;
  font-size: 2.2rem;
  padding: 18px 24px;
  margin-top: 9px;
  margin-right: 17px;
  align-self: flex-end;
  cursor: pointer;
  border-radius: 32px;
  transition: background 0.2s, color 0.2s;
  z-index: 1510;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #46E695;
  background: #144B2F;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
  padding-top: 20px;
  gap: 28px;
}
.mobile-nav a {
  color: #F6F4ED;
  font-size: 1.15rem;
  padding: 15px 30px;
  border-radius: 15px;
  text-align: center;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  width: 80%;
  transition: background 0.18s, color 0.17s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #348C57;
  color: #10181A;
}
.mobile-nav .btn-primary {
  width: 90%;
  margin-top: 8px;
}

@media (max-width: 1024px) {
  nav {
    gap: 16px;
  }
}

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

@media (max-width: 768px) {
  .container {
    max-width: 96vw;
    padding-left: 12px;
    padding-right: 12px;
  }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.3rem; }
  .section, section {
    padding: 25px 0 25px 0;
    margin-bottom: 36px;
  }
  .content-wrapper {
    gap: 12px;
  }
  .feature-grid, .card-container, .content-grid {
    flex-direction: column;
    gap: 18px;
  }
  .feature-item, .card, .testimonial-card {
    min-width: 0;
    width: 100%;
  }
  .testimonial-list {
    flex-direction: column;
    gap: 18px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
}

@media (max-width: 540px) {
  html {
    font-size: 15px;
  }
  header .container, footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .footer-main {
    flex-direction: column;
    gap: 18px;
  }
}

/* =========================
   TESTIMONIAL LISTS
=========================== */
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-top: 18px;
}
.testimonial-card p {
  color: #10181A;
}
.testimonial-card strong {
  color: #144B2F;
}

/* =========================
   FAQ ACCORDION
=========================== */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-item {
  background: #171F23;
  border: 1.5px solid #348C5755;
  border-radius: 12px;
  transition: border 0.2s, box-shadow 0.2s;
  box-shadow: 0 1.5px 8px #144B2F17;
  padding: 14px 18px;
}
.faq-item h3 {
  font-size: 1.08rem;
  color: #46E695;
  margin-bottom: 12px;
  cursor: pointer;
  user-select: none;
}
.faq-answer {
  color: #F6F4ED;
  font-size: 0.98rem;
  padding-left: 4px;
}
.faq-item.active, .faq-item:hover {
  border: 1.5px solid #46E695;
  box-shadow: 0 3px 16px #46E69522;
}

/* =========================
   OL & STEPS-LIST STYLES
=========================== */
ol.steps-list {
  list-style: none;
  counter-reset: numbered;
  padding-left: 0;
}
ol.steps-list li {
  display: flex;
  align-items: center;
  background: #171F23;
  color: #F6F4ED;
  border-radius: 14px;
  margin-bottom: 20px;
  padding: 18px 18px;
  gap: 24px;
  font-size: 1.07rem;
  position: relative;
}
ol.steps-list li::before {
  counter-increment: numbered;
  content: counter(numbered);
  background: #46E695;
  color: #10181A;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  border-radius: 50%;
  width: 34px; height: 34px;
  line-height: 34px;
  text-align: center;
  margin-right: 20px;
  font-size: 1.16rem;
  display: inline-block;
}
ol.steps-list li img {
  width: 34px; height: 34px;
  margin-right: 12px;
  filter: drop-shadow(0 0 6px #46E69590);
}

@media (max-width: 640px) {
  ol.steps-list li {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
    padding: 13px 9px;
  }
  ol.steps-list li img {
    margin-right: 0;
  }
}

/* =========================
   FOOTER STYLES
=========================== */
footer {
  background: #144B2F;
  color: #F6F4ED;
  margin-top: 36px;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  box-shadow: 0 -2px 24px #144B2F33;
  padding: 0;
  font-size: 1rem;
}
.footer-main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 28px;
  padding: 44px 0 23px 0;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 220px;
}
.footer-contact img {
  height: 38px; margin-bottom: 8px;
}
.footer-contact p img {
  height: 16px;
  margin-right: 7px;
  vertical-align: text-bottom;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.footer-nav a {
  color: #F6F4ED;
  opacity: 0.85;
  font-size: 1rem;
  transition: color 0.2s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #46E695;
}
.footer-social {
  display: flex;
  flex-direction: row;
  gap: 18px;
  align-items: center;
  margin-top: 8px;
}
.footer-social a img {
  height: 28px; width: 28px;
  transition: filter 0.2s;
}
.footer-social a:hover img {
  filter: drop-shadow(0 0 12px #46E695);
}
.footer-copy {
  padding: 8px 0;
  text-align: center;
  font-size: 0.95rem;
  opacity: 0.6;
}
@media (max-width: 992px) {
  .footer-main {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    padding: 34px 0 15px 0;
  }
  .footer-social {
    margin-top: 12px;
  }
}

/* =========================
   COOKIE CONSENT BANNER
=========================== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #171F23cc;
  color: #F6F4ED;
  box-shadow: 0 -2px 24px #348C5733;
  width: 100vw;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 38px;
  padding: 24px 18px;
  z-index: 3000;
  font-size: 1rem;
  transition: transform 0.3s, opacity 0.28s;
  opacity: 1;
  transform: translateY(0);
}
.cookie-banner.hidden {
  transform: translateY(200px);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner__buttons {
  display: flex;
  flex-direction: row;
  gap: 14px;
}
.cookie-btn, .cookie-banner button {
  padding: 10px 24px;
  font-size: 1rem;
  border-radius: 20px;
  border: none;
  cursor: pointer;
  font-family: 'Montserrat', Arial, sans-serif;
  background: #348C57;
  color: #F6F4ED;
  transition: background 0.18s, color 0.16s, box-shadow 0.18s;
  box-shadow: 0 1.5px 6px #46E69522;
  font-weight: 600;
}
.cookie-btn.accept-all {
  background: linear-gradient(90deg,#46E695 0%,#348C57 100%);
  color: #10181A;
}
.cookie-btn.accept-all:hover, .cookie-btn.accept-all:focus {
  background: #46E695;
  color: #144B2F;
}
.cookie-btn.reject-all {
  background: #171F23;
  color: #F6F4ED;
  border: 1.5px solid #348C57;
}
.cookie-btn.reject-all:hover, .cookie-btn.reject-all:focus {
  background: #10181A;
  color: #46E695;
}
.cookie-btn.settings {
  background: #10181A;
  color: #46E695;
  border: 1.5px solid #46E695cc;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #144B2F;
  color: #fff;
}

@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
    padding: 17px 8px;
  }
  .cookie-banner__buttons {
    flex-direction: column;
    gap: 10px;
  }
}

/* COOKIE MODAL */
.cookie-modal-overlay {
  position: fixed;
  z-index: 4000;
  left:0;top:0;right:0;bottom:0;
  width: 100vw;
  height: 100vh;
  background: #10181Acc;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.28s;
}
.cookie-modal-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #171F23;
  border-radius: 22px;
  max-width: 96vw;
  width: 450px;
  color: #F6F4ED;
  box-shadow: 0 4px 42px #144B2Fe0;
  padding: 32px 28px 22px 28px;
  text-align: left;
  position: relative;
}
.cookie-modal-close {
  position: absolute;
  right: 20px; top: 16px;
  color: #F6F4ED;
  background: none;
  border: none;
  font-size: 1.5rem;
  border-radius: 18px;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #46E69533;
  color: #46E695;
}
.cookie-modal h2 {
  font-size: 1.3em;
  margin-bottom: 16px;
  color: #46E695;
}
.cookie-modal-category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.cookie-modal-category input {
  width: 22px; height: 22px;
  accent-color: #46E695;
  cursor: pointer;
  margin-right: 8px;
}
.cookie-modal-category label {
  font-size: 0.97rem;
  color: #F6F4ED;
  opacity: 0.85;
  font-weight: 500;
}
.cookie-modal .always-on {
  color: #46E695;
  font-weight: 700;
  font-size: 0.91em;
  margin-left: 5px;
}
.cookie-modal-footer {
  margin-top: 25px;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  gap: 12px;
}
@media (max-width: 520px) {
  .cookie-modal {
    padding: 19px 8px 13px 8px;
    width: 97vw;
  }
}

/* =========================
   MISCELLANEOUS
=========================== */
::-webkit-scrollbar { width: 8px; background: #171F23; }
::-webkit-scrollbar-thumb { background: #144B2F; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #348C57; }

a:focus-visible, button:focus-visible {
  outline: 2px dashed #46E695;
  outline-offset: 2px;
  background: #144B2F33;
}

/* =========================
   NEON & FUTURISTIC EFFECTS
=========================== */
.card, .feature-item, .testimonial-card, .faq-item {
  /* subtle neon glow */
  box-shadow: 0 0 0 #0000, 0 0 8px 0 #46E69522;
}
.card:hover, .feature-item:hover, .testimonial-card:hover, .faq-item.active {
  box-shadow: 0 2px 28px 0 #46E69555, 0 0 0 2px #46E69544;
}

@media (hover: hover) and (pointer: fine) {
  .btn-primary, .feature-item, .card, .testimonial-card {
    transition: transform 0.25s cubic-bezier(0.28,1.4,0.7,0.98), 
      box-shadow 0.2s, background 0.2s, color 0.2s;
  }
}

/* Futuristic divider accent for sections */
section:not(:last-child)::after {
  content: '';
  display: block;
  margin: 38px auto 0 auto;
  width: 64px;
  height: 3px;
  background: linear-gradient(90deg, #144B2F 0%, #46E695 50%, #348C57 100%);
  border-radius: 3px;
  opacity: 0.6;
}

/* Neon focus ring utility */
.neon-focus:focus {
  box-shadow: 0 0 0 3px #46E69588, 0 2px 24px #46E69533;
}

/* =========================
   CONSISTENT SPACING
=========================== */
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card, .feature-item, .testimonial-card {
  margin-bottom: 20px;
}
.card-container, .content-grid, .feature-grid, .testimonial-list {
  gap: 24px;
  display: flex;
  flex-wrap: wrap;
}
.text-image-section, .feature-item {
  gap: 15px;
}
.testimonial-card {
  gap: 20px;
  padding: 20px;
}

/* =========================
   FOCUS ON CONTRAST
=========================== */

section, .card, .feature-item {
  color: #F6F4ED;
}
.testimonial-card, .testimonial-card p, .testimonial-card strong {
  color: #10181A;
}

/* =========================
   ANIMATIONS & TRANSITIONS
=========================== */
@keyframes fade-in {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
section, .card, .feature-item, .testimonial-card, .faq-item {
  animation: fade-in 0.6s cubic-bezier(0.17,0.67,0.83,0.67) both;
}

/* =========================
   PRINT CORRECTION
=========================== */
@media print {
  header, .mobile-menu, footer, .footer-main, .cookie-banner, .cookie-modal-overlay {
    display: none !important;
  }
  section {
    background: none !important;
    color: #000 !important;
  }
}