/* --- 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-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  font-family: 'Roboto', Arial, sans-serif;
}
body {
  min-height: 100vh;
  background: linear-gradient(135deg, #181d27 0%, #26323e 100%);
  color: #f2f4f4;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #48ffbf;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #43e0ee;
}

/* --- FONT IMPORTS (Google Fonts) --- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Roboto:wght@400;500;700&display=swap');

/* --- COLOR VARIABLES & FALLBACKS --- */
:root {
  --primary: #145a32;
  --secondary: #239b56;
  --accent: #f2f4f4;
  --brand-bg: #181d27;
  --brand-dark: #10151b;
  --brand-mid: #26323e;
  --neon-green: #48ffbf;
  --neon-blue: #43e0ee;
  --neon-pink: #ff42c1;
  --border-card: #283346;
  --shadow-strong: 0 8px 32px rgba(72,255,191,0.15);
  --shadow-soft: 0 2px 8px rgba(67,224,238,0.12);
  --shadow-btn: 0 0 8px 0 rgba(72,255,191,0.45);
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.7rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 18px;
  margin-top: 8px;
}
h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin: 18px 0 8px 0;
}
h4, h5 {
  font-size: 1.15rem;
  font-weight: 600;
  margin: 12px 0 6px 0;
}
p, li {
  font-size: 1rem;
  color: #f2f4f4;
  font-weight: 400;
}
strong {
  font-weight: 700;
  color: var(--neon-green);
}
ul, ol {
  padding-left: 21px;
  margin-bottom: 18px;
  list-style-type: disc;
}
ul {
  list-style-type: disc;
}
blockquote {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  background: #19212e;
  color: #11151b;
  padding: 18px 26px;
  border-left: 4px solid var(--neon-green);
  font-size: 1.15rem;
  font-style: italic;
  margin-bottom: 8px;
  border-radius: 6px;
}

/* --------------------
   GENERAL LAYOUT CONTAINERS
-------------------- */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 18px;
  box-sizing: border-box;
}
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #222a37;
  border: 1px solid var(--border-card);
  border-radius: 18px;
  margin-bottom: 20px;
  position: relative;
  box-shadow: var(--shadow-strong);
  padding: 24px 20px;
  transition: box-shadow 0.22s, border 0.2s;
}
.card:hover, .card:focus-within {
  border: 1.5px solid var(--neon-green);
  box-shadow: 0 8px 32px rgba(72,255,191,0.2), var(--shadow-soft);
  z-index: 2;
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #f2f4f4;
  color: #222a37;
  border-radius: 18px;
  box-shadow: 0 6px 18px rgba(67,224,238,0.12);
  min-width: 230px;
  max-width: 420px;
  margin-bottom: 20px;
  border: 1px solid #e0e4e8;
  font-size: 1rem;
}
.testimonial-card blockquote {
  background: transparent;
  color: #145a32;
  border-left-color: var(--neon-green);
  padding: 8px 0 8px 16px;
  font-style: italic;
}
.testimonial-card span {
  color: #239b56;
  font-weight: 500;
  font-size: 1em;
}

/* Cards in features/benefits */
.features ul, .benefits ul, .stories ul,
.product-features ul, .faq-accordion {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  flex-direction: row;
  list-style-type: none;
  padding-left: 0;
}
.features ul li, .benefits ul li,
.product-features ul li, .stories ul li {
  background: #222a37;
  padding: 22px 18px 18px 18px;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(36,255,191,0.07);
  border: 1px solid var(--border-card);
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  min-width: 220px;
  max-width: 360px;
  margin-bottom: 20px;
  transition: border 0.2s, box-shadow 0.2s;
}
.features ul li:hover, .benefits ul li:hover, .stories ul li:hover {
  border-color: var(--neon-green);
  box-shadow: 0 8px 32px rgba(72,255,191,0.10);
  z-index: 2;
}
.features ul li img, .benefits ul li img, .contact ul li img {
  width: 36px;
  height: 36px;
  display: inline-block;
  filter: drop-shadow(0 0 6px var(--neon-green));
}

.cta {
  background: linear-gradient(90deg, #10151b 97%, #43e0ee 100%);
  border-radius: 18px;
  margin-bottom: 60px;
}
.cta-primary {
  color: #181d27;
  background: var(--neon-green);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  padding: 13px 36px;
  border: none;
  border-radius: 32px;
  font-size: 1.15rem;
  box-shadow: var(--shadow-btn);
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  transition: background 0.18s, color 0.19s, box-shadow 0.18s, transform 0.15s;
  margin-top: 16px;
  display: inline-block;
}
.cta-primary:hover, .cta-primary:focus {
  background: var(--neon-blue);
  color: #fff;
  box-shadow: 0 0 16px 0 var(--neon-blue), var(--shadow-btn);
  transform: translateY(-3px) scale(1.03);
}

/* --- HEADER --- */
header {
  width: 100%;
  padding: 24px 0 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(24,29,39, 0.98);
  box-shadow: 0 1px 16px rgba(67,224,238,0.06);
  position: relative;
  z-index: 1010;
}
header img {
  height: 48px;
  margin-right: 22px;
}
header nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
header nav a {
  color: var(--accent);
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 5px 0px;
  border-bottom: 2.5px solid transparent;
  position: relative;
  transition: color 0.21s, border-bottom 0.18s;
}
header nav a:hover, header nav a.active {
  color: var(--neon-green);
  border-bottom: 2.5px solid var(--neon-green);
}
header .cta-primary {
  margin-left: 28px;
  box-shadow: 0 0 12px 0 var(--neon-green);
}

/* --- HERO SECTION --- */
.hero {
  min-height: 340px;
  background: linear-gradient(110deg, #181d27 55%, #239b56 135%);
  padding: 60px 20px 50px 20px;
  border-radius: 26px;
  box-shadow: 0 4px 42px rgba(67,224,238,0.10);
  margin-bottom: 50px;
  display: flex;
  align-items: center;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 620px;
}
.hero p {
  font-size: 1.18rem;
  color: #d2f9e3;
}

/* --- FOOTER --- */
footer {
  background: #0b1117;
  padding: 32px 0 14px 0;
  box-shadow: 0 -2px 28px rgba(67,224,238,0.03);
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  justify-content: center;
  margin-bottom: 12px;
}
footer nav a {
  color: #43e0ee;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.99rem;
  font-weight: 500;
  margin-bottom: 8px;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color 0.19s, border-bottom 0.19s;
}
footer nav a:hover {
  color: var(--neon-pink);
  border-bottom: 2px solid var(--neon-pink);
}
.footer-info {
  text-align: center;
  color: #acbccb;
  font-size: 0.95rem;
  line-height: 1.65;
}

/* --- MOBILE MENU --- */
.mobile-menu-toggle {
  display: none;
  border: none;
  background: var(--neon-blue);
  color: #10151b;
  font-size: 2.1rem;
  padding: 6px 20px 8px 16px;
  border-radius: 8px;
  position: fixed;
  top: 20px;
  right: 22px;
  z-index: 1105;
  cursor: pointer;
  box-shadow: var(--shadow-btn);
  transition: background 0.18s, color 0.18s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--neon-pink);
  color: #fff;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(24,29,39,0.99);
  z-index: 1200;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.6,0,0.4,1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0;
  overflow-y: auto;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2rem;
  color: var(--neon-green);
  background: none;
  border: none;
  margin: 22px 0 20px 22px;
  align-self: flex-start;
  cursor: pointer;
  transition: color 0.16s;
  z-index: 1202;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--neon-pink);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-left: 28px;
  margin-top: 18px;
  width: calc(100vw - 56px);
}
.mobile-nav a {
  color: var(--accent);
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.23rem;
  font-weight: 700;
  padding: 9px 4px;
  border-radius: 6px;
  transition: background 0.18s, color 0.15s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--neon-green);
  background: #121713;
}

/* --- FAQ ACCORDION STYLE --- */
.faq-accordion {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  flex-direction: column;
  list-style-type: none;
  margin-bottom: 12px;
  padding-left: 0px;
}
.faq-accordion li {
  background: #232d38;
  padding: 20px 15px 16px 15px;
  border-radius: 14px;
  border: 1px solid #283346;
  font-size: 1.03rem;
  margin-bottom: 0;
  box-shadow: 0 2px 10px rgba(36,255,191,0.03);
}
.faq-accordion li strong {
  color: var(--neon-blue);
}

/* --- CONTACT ICON LIST --- */
.contact ul {
  list-style-type: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding-left: 0px;
}
.contact ul li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.05rem;
  color: #f2f4f4;
}
.contact ul li img {
  width: 26px; height: 26px; filter: drop-shadow(0 0 3px var(--neon-blue));
}

/* --- Form/Confirmation Section --- */
.confirmation, .legal {
  background: #222a37;
  border-radius: 20px;
  box-shadow: 0 4px 32px rgba(72,255,191,0.08);
  margin-bottom: 60px;
  padding: 56px 20px 36px 20px;
}
.confirmation h1, .legal h1 {
  color: var(--neon-green);
}

/* --- COOKIES CONSENT BANNER --- */
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: rgba(30,40,52,0.98);
  color: #f2f4f4;
  z-index: 1900;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 22px 4vw 22px 6vw;
  box-shadow: 0 0 20px 0 rgba(67,224,238,0.14);
  font-size: 1rem;
  transition: transform 0.35s cubic-bezier(0.7,0,0.3,1);
  gap: 16px;
}
.cookie-consent-banner.hide {
  transform: translateY(110%);
}
.cookie-consent-banner .cookie-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.cookie-btn {
  background: var(--neon-green);
  color: #222a37;
  border: none;
  border-radius: 22px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  padding: 9px 23px;
  font-size: 1.04rem;
  cursor: pointer;
  box-shadow: 0 0 8px 0 var(--neon-green);
  margin-right: 5px;
  transition: background 0.16s, color 0.16s, box-shadow 0.18s, transform 0.14s;
}
.cookie-btn.reject {
  background: var(--neon-pink);
  color: #fff;
  box-shadow: 0 0 8px 0 var(--neon-pink);
}
.cookie-btn.settings {
  background: var(--neon-blue);
  color: #181d27;
  box-shadow: 0 0 8px 0 var(--neon-blue);
}
.cookie-btn:hover, .cookie-btn:focus {
  transform: scale(1.04) translateY(-1px);
  background: var(--neon-blue);
  color: #fff;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #145a32;
  color: #fff;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: var(--neon-green);
  color: #181d27;
}

/* --- COOKIE MODAL --- */
.cookie-modal-backdrop {
  position: fixed;
  z-index: 2000;
  left:0; top:0; bottom:0; right:0;
  background: rgba(24,29,39,0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
}
.cookie-modal {
  background: #f2f4f4;
  color: #11151b;
  border-radius: 16px;
  box-shadow: 0 6px 32px 0 rgba(72,255,191,0.18);
  padding: 36px 26px 28px 26px;
  min-width: 330px;
  max-width: 95vw;
  z-index: 2100;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cookie-modal h2 {
  color: #145a32;
  font-size: 1.5rem;
  margin-bottom: 12px;
  font-weight: 700;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 14px 0;
}
.cookie-modal .cookie-switch {
  width: 34px; height: 20px;
  background: #e6e6e6;
  border-radius: 11px;
  position: relative;
  margin-left: 8px;
  transition: background 0.15s;
}
.cookie-modal .cookie-switch input {
  display:none;
}
.cookie-modal .cookie-switch .slider {
  position: absolute;
  cursor: pointer;
  top:2px; left:2px;
  right:2px; bottom:2px;
  background: #fff;
  border-radius: 50%;
  width: 16px; height: 16px;
  transition: left 0.15s, background 0.12s;
}
.cookie-modal .cookie-switch input:checked + .slider {
  background: var(--neon-blue);
  left: 16px;
}
.cookie-modal .cookie-category.essential .cookie-switch {
  background: #b2e3d6;
}
.cookie-modal .cookie-category.essential .slider {
  background: var(--neon-green);
}
.cookie-modal .cookie-desc {
  font-size: 0.98rem;
  color: #333;
  margin-bottom: 4px;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 14px;
  margin-top: 10px;
}
.cookie-modal .cookie-modal-close {
  background: transparent;
  color: #145a32;
  border: none;
  font-size: 1.46rem;
  margin-left: auto;
  cursor: pointer;
  position: absolute;
  top: 24px; right: 28px;
  z-index: 2102;
  transition: color 0.15s;
}
.cookie-modal .cookie-modal-close:hover{
  color: var(--neon-pink);
}

/* --- RESPONSIVE DESIGN (Mobile First) --- */
@media (max-width: 1024px) {
  .container {
    max-width: 98vw;
    padding-left: 7vw; padding-right: 7vw;
  }
  .card, .card-container, .features ul li, .benefits ul li, .stories ul li {
    font-size: 0.97rem;
  }
}
@media (max-width: 900px) {
  header nav {
    gap: 16px;
  }
  .container, .section, section {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (max-width: 768px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  header .cta-primary {
    margin-left: 0;
    position: absolute;
    right: 20px;
    top: 18px;
    font-size: 1rem;
    padding: 8px 18px;
  }
  .hero {
    padding: 36px 10px 30px 10px;
    border-radius: 16px;
    min-height: 220px;
  }
  .footer-info {
    font-size: 0.92rem;
    padding-bottom: 8px;
  }
  .features ul, .benefits ul, .stories ul, .product-features ul {
    flex-direction: column;
    gap: 17px;
  }
  .features ul li, .benefits ul li, .stories ul li, .product-features ul li {
    min-width: unset;
    max-width: unset;
  }
  .testimonial-card {
    min-width: 160px;
    max-width: 99vw;
    box-sizing: border-box;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
  .content-grid, .card-container {
    flex-direction: column;
    gap: 13px;
  }
  .section, section, .confirmation, .legal {
    margin-bottom: 32px;
    padding: 12vw 4vw 6vw 4vw;
  }
  .cookie-consent-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 5vw 13px 5vw;
    gap: 13px;
    font-size: 0.97rem;
  }
  .cookie-modal {
    min-width: unset;
    max-width: 100vw;
    padding: 26px 5vw 20px 5vw;
  }
}
@media (max-width: 500px) {
  h1 {font-size: 1.46rem;}
  h2 {font-size: 1.13rem;}
  .section, section, .confirmation, .legal {
    padding: 7vw 2vw 4vw 2vw;
  }
  .hero {
    border-radius: 9px;
    padding: 14vw 2vw 8vw 2vw;
  }
}

/* --- VISUAL ACCENTS & SELECTION --- */
::-webkit-selection { background: var(--neon-blue); color: #181d27; }
::selection { background: var(--neon-blue); color: #181d27; }

/* --- SCROLLBAR --- */
::-webkit-scrollbar { width: 11px; background: #1b222c; }
::-webkit-scrollbar-thumb { background: var(--neon-green); border-radius: 7px; }

/* --- FOCUS RINGS --- */
:focus, button:focus, .cta-primary:focus, .cookie-btn:focus {
  outline: 2px solid var(--neon-blue);
  outline-offset: 1.5px;
}

/* --- MICRO-ANIMATION KEYFRAMES --- */
@keyframes neonPulse {
  0% { box-shadow: 0 0 8px 2px var(--neon-blue); }
  50% { box-shadow: 0 0 18px 5px var(--neon-green); }
  100% { box-shadow: 0 0 8px 2px var(--neon-blue); }
}
.cta-primary, .cookie-btn {
  animation: neonPulse 3.5s infinite linear alternate;
}

/* --- HIDE STYLES ON PRINT --- */
@media print {
  .mobile-menu-toggle, .mobile-menu, .cookie-consent-banner, .cookie-modal, .cookie-modal-backdrop { display: none !important; }
}
