/* --- 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 {
  scroll-behavior: smooth;
}
body {
  line-height: 1.5;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  background: #181B21;
  color: #FAFCF5;
  min-height: 100vh;
  /* Tech-futuristic background effect */
  background-color: #181B21;
  background-image: linear-gradient(120deg, #265B36 0%, #84A98C 100%);
  background-attachment: fixed;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #90FFAF;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #0ef3a4;
}
ul, ol {
  list-style: none;
}

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Bree Serif', 'Open Sans', serif;
  font-weight: 700;
  color: #E7FBE8;
  text-shadow: 0 2px 12px #16332455;
}
h1 { font-size: 2.6rem; margin-bottom: 18px; letter-spacing: 1px; }
h2 { font-size: 2rem; margin-bottom: 16px; letter-spacing: .5px; }
h3 { font-size: 1.4rem; margin-bottom: 12px; }
h4, h5, h6 { font-size: 1.09rem; margin-bottom: 8px; }
p {
  font-size: 1.05rem; line-height: 1.7; color: #FAFCF5;
  margin-bottom: 16px;
}
strong, b { color: #0ef3a4; }
em, i { color: #84A98C; }

/* --- UTILITY CONTAINERS & LAYOUT PATTERNS --- */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}
.content-wrapper {
  width: 100%;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: rgba(34,44,46,0.70);
  border-radius: 18px;
  box-shadow: 0 4px 40px #233b2b40, 0 1.5px 2px #0ef3a440;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  background: #242929;
  border-radius: 16px;
  box-shadow: 0 2px 18px 0 #16ffb04c;
  position: relative;
  color: #FAFCF5;
  transition: transform .18s, box-shadow .25s;
}
.card:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 5px 24px #0ef3a47a;
}
.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;
  background: #F9F8E6;
  color: #222820;
  border-radius: 19px;
  box-shadow: 0 6px 44px #18271b18, 0 1.5px 2px #eed82236;
  margin-bottom: 20px;
  min-width: 0;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* --- HERO SECTION --- */
.hero {
  background: linear-gradient(114deg, #182B17 0%, #376343 80%);
  color: #F9F8E6;
  text-align: left;
  border-radius: 0 0 24px 24px;
  box-shadow: 0 3px 36px #0ef3a433, 0 1.5px 2px #84A98C33;
  margin-bottom: 44px;
  padding: 64px 0 50px 0;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 26px;
}
.hero h1 {
  font-size: 2.5rem;
  color: #f9fde6;
  text-shadow: 0 3px 22px #1efdb05c;
}
.hero p {
  color: #efefe2;
  font-size: 1.2rem;
}

/* --- HEADER & NAVIGATION --- */
header {
  background: transparent;
  position: relative;
  z-index: 50;
  box-shadow: none;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
}
header nav {
  display: flex;
  align-items: center;
  gap: 22px;
}
header nav a {
  font-size: 1rem;
  color: #F9F8E6;
  padding: 9px 12px;
  border-radius: 7px;
  letter-spacing: 0.02em;
  transition: background .18s, color .25s;
}
header nav .cta-primary {
  color: #181B21;
  background: linear-gradient(92deg, #0ef3a4 0%, #84A98C 100%);
  box-shadow: 0 0 18px #0ef3a466;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 10px;
  margin-left: 14px;
  letter-spacing: 0.06em;
  transition: background 0.18s, color 0.18s;
}
header nav .cta-primary:hover, .cta-primary:focus {
  background: #0ef3a4;
  color: #222;
  box-shadow: 0 0 32px #41ffc466;
  text-shadow: 0 2px 8px #88ffeb12;
}

.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  font-size: 2.1rem;
  color: #0ef3a4;
  cursor: pointer;
  margin-left: 18px;
  transition: color 0.15s;
  z-index: 201;
}
.mobile-menu-toggle:focus {
  color: #84A98C;
}

/* --- MOBILE MENU --- */
.mobile-menu {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 210;
  background: rgba(22, 27, 32, 0.95);
  backdrop-filter: blur(7px);
  transform: translateX(100vw);
  transition: transform 0.32s cubic-bezier(.6,.11,.44,1.36);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding: 0 0 0 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: transparent;
  border: none;
  color: #0ef3a4;
  font-size: 2.2rem;
  margin: 28px 28px 0 0;
  cursor: pointer;
  z-index: 215;
  transition: color 0.15s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  color: #84A98C;
}
.mobile-nav {
  margin-top: 43px;
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0 36px;
  gap: 22px;
}
.mobile-nav a {
  font-size: 1.25rem;
  color: #E7FBE8;
  padding: 18px 8px;
  border-radius: 8px;
  background: transparent;
  width: 100%;
  transition: background 0.22s, color 0.18s;
  font-weight: 700;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: linear-gradient(98deg, #0ef3a4 0%, #84A98C 100%);
  color: #181B21;
}

@media (max-width: 980px) {
  header .container {
    flex-direction: row;
    gap: 0;
    padding: 14px 10px 14px 14px;
  }
  header nav {
    gap: 12px;
  }
}
@media (max-width: 768px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .hero {
    padding: 34px 0 33px 0;
  }
}

/* --- CTAs --- */
.cta-primary, .cta-secondary {
  display: inline-block;
  font-family: 'Bree Serif', serif;
  font-size: 1.12rem;
  padding: 12px 28px;
  border-radius: 11px;
  font-weight: 700;
  box-shadow: 0 2px 16px #0ef3a433;
  transition: background 0.17s, color 0.13s, transform 0.12s;
  cursor: pointer;
  margin: 10px 4px 0 0;
  border: none;
  outline: none;
}
.cta-primary {
  color: #181B21;
  background: linear-gradient(88deg, #0ef3a4 0%, #84A98C 100%);
  text-shadow: none;
}
.cta-primary:hover, .cta-primary:focus {
  background: #0ef3a4;
  color: #222;
  transform: scale(1.04);
  box-shadow: 0 4px 22px #90FFAF66;
}
.cta-secondary {
  color: #0ef3a4;
  background: #1E2C24;
  border: 2px solid #0ef3a4;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: #0ef3a4;
  color: #222;
  transform: scale(1.04);
  border-color: #0ef3a4;
}

/* --- FEATURES --- */
.feature-grid, .principle-list, .tips-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.feature, .principle, .tip {
  background: #212922;
  border-radius: 15px;
  padding: 26px 22px;
  box-shadow: 0 2px 15px #0ef3a417;
  width: 100%;
  max-width: 330px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 200px;
  transition: transform 0.19s, box-shadow 0.18s;
}
.feature:hover, .principle:hover, .tip:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 5px 28px #0ef3a47a;
}
.feature img, .tip img, .principle img {
  width: 37px;
  height: 37px;
  margin-bottom: 11px;
  filter: drop-shadow(0 0 6px #0ef3a4a1);
}
.feature h3, .tip h3, .principle h3 {
  color: #0ef3a4;
  font-size: 1.18rem;
}

@media (max-width: 980px) {
  .feature-grid, .principle-list, .tips-grid {
    flex-direction: column;
    gap: 20px;
  }
  .feature, .principle, .tip {
    max-width: 100%;
  }
}

/* --- TESTIMONIALS --- */
.testimonial-card blockquote {
  color: #232e1d;
  font-style: italic;
  font-weight: 500;
  margin-bottom: 12px;
  font-size: 1.11rem;
}
.testimonial-card strong {
  color: #0ba873;
}
.testimonial-card img {
  width: 24px;
  height: 24px;
  margin-right: 1px;
  display: inline-block;
}

/* --- STORY BLOCKS (Galerie) --- */
.story-block {
  background: #21251b;
  border-radius: 14px;
  box-shadow: 0 2px 10px #0ef3a424;
  padding: 24px;
  margin-bottom: 22px;
  color: #F9F8E6;
}
.story-block h3 {
  color: #90FFAF;
}
.story-block em {
  display: block;
  margin-top: 9px;
  color: #84A98C;
  font-style: italic;
}

/* --- LISTS (Contact + FAQ) --- */
.contact-snippet, .contact-details, .faq-list {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  color: #F9F8E6;
}
.contact-snippet li, .contact-details li, .contact-snippet span {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 1.01rem;
  color: #0ef3a4;
}
.contact-snippet img, .contact-details img {
  width: 18px;
  height: 18px;
}
.faq-list {
  gap: 18px;
  color: #F9F8E6;
}
.faq-list strong {
  color: #0ef3a4;
}

/* --- FOOTER --- */
footer {
  background: #19241e;
  padding: 30px 0 25px 0;
  border-radius: 20px 20px 0 0;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}
.footer-brand {
  display: flex;
  align-items: center;
}
footer nav {
  display: flex;
  flex-direction: row;
  gap: 18px;
  align-items: center;
}
footer nav a {
  color: #a3ffc8;
  font-size: 1rem;
  padding: 8px 10px;
  border-radius: 4px;
  transition: background 0.15s, color 0.15s;
}
footer nav a:hover, footer nav a:focus {
  background: #0ef3a4;
  color: #222;
}
footer .contact-snippet {
  color: #c7f3dc;
  font-size: .99rem;
  gap: 10px;
  flex-direction: column;
}

/* --- LEGAL PAGES --- */
.legal {
  background: #1e2225;
  border-radius: 18px;
  color: #e6fff5;
  box-shadow: 0 3px 26px #0ef3a427;
  margin-bottom: 46px;
  padding: 32px 24px !important;
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  z-index: 3200;
  background: linear-gradient(92deg, #242e24 73%, #0ef3a4 100%);
  color: #F9F8E6;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
  padding: 24px 18px;
  box-shadow: 0 -2px 20px #2ae19e32;
  font-size: 1.07rem;
  transition: transform 0.28s;
}
.cookie-banner.hide {
  transform: translateY(120%);
}
.cookie-banner__actions {
  display: flex;
  gap: 12px;
}
.cookie-btn {
  padding: 9px 22px;
  border-radius: 8px;
  border: none;
  font-family: 'Bree Serif', serif;
  font-size: 1rem;
  margin-left: 0;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 2px 11px #0ef3a430;
  transition: background 0.17s, color 0.13s, transform 0.13s;
}
.cookie-btn.accept {
  background: #0ef3a4;
  color: #181B21;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #84A98C;
  color: #181B21;
}
.cookie-btn.reject {
  background: #19241e;
  color: #0ef3a4;
  border: 1.5px solid #0ef3a4;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #0ef3a4;
  color: #181B21;
}
.cookie-btn.settings {
  background: transparent;
  color: #0ef3a4;
  border: 1.5px dashed #0ef3a4;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #222b26;
  color: #84A98C;
}

/* --- COOKIE SETTINGS MODAL --- */
.cookie-modal {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 3400;
  width: 100vw;
  height: 100vh;
  background: rgba(28,34,28,0.93);
  align-items: center;
  justify-content: center;
  animation: cookieFadeIn 0.29s;
}
.cookie-modal.open {
  display: flex;
}
@keyframes cookieFadeIn {
  from { opacity: 0; } to { opacity: 1; }
}
.cookie-modal-content {
  min-width: 330px;
  max-width: 420px;
  width: 98vw;
  background: #F9F8E6;
  color: #181B21;
  padding: 36px 32px 26px 32px;
  border-radius: 17px;
  box-shadow: 0 7px 44px #0ef3a466;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  animation: cookieModalPop 0.34s;
}
@keyframes cookieModalPop {
  from { transform: scale(0.92); opacity: 0.2; } to { transform: scale(1); }
}
.cookie-modal-content h3 {
  color: #265B36;
  font-size: 1.25rem;
  margin-bottom: 10px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 12px;
  font-size: 1.05rem;
}
.cookie-toggle {
  appearance: none;
  width: 37px;
  height: 20px;
  background: #aaa;
  border-radius: 10px;
  position: relative;
  outline: none;
  cursor: pointer;
  transition: background .22s;
}
.cookie-toggle:checked {
  background: #0ef3a4;
}
.cookie-toggle:before {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff;
  transition: left .2s;
}
.cookie-toggle:checked:before {
  left: 20px;
}
.cookie-modal-close {
  position: absolute;
  right: 20px;
  top: 18px;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: #0ef3a4;
  cursor: pointer;
  z-index: 10;
}
.cookie-modal-actions {
  display: flex;
  gap: 14px;
  margin-top: 14px;
  flex-wrap: wrap;
}

/* --- BUTTONS --- */
button, .button {
  cursor: pointer;
  font-family: 'Bree Serif', 'Open Sans', serif;
  border-radius: 10px;
  border: none;
  outline: none;
  transition: background 0.14s, color 0.14s, box-shadow 0.13s, transform 0.09s;
}

/* --- RESPONSIVE RULES --- */
@media (max-width: 700px) {
  .container {
    max-width: 100vw;
    padding: 0 10px;
  }
  .section {
    margin-bottom: 38px;
    padding: 30px 6px;
  }
  .card-container, .content-grid, .footer .container {
    flex-direction: column;
    gap: 14px;
  }
  .testimonial-card {
    flex-direction: column;
    gap: 13px;
    padding: 17px 10px;
  }
  .story-block {
    padding: 17px 7px;
  }
  .footer .container, footer .container {
    flex-direction: column;
    gap: 21px;
    align-items: flex-start;
  }
}
@media (max-width: 640px) {
  .hero h1 {
    font-size: 1.45rem;
  }
  .hero {
    padding: 19px 0;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 20px 7px 27px;
    font-size: .98rem;
    min-width: 0;
  }
  .cookie-modal-content {
    padding: 19px 7px 15px 13px;
    min-width: 0;
    max-width: 99vw;
  }
}
@media (max-width: 481px) {
  h1 { font-size: 1.1rem; }
  h2 { font-size: 1.03rem; }
  .section { padding: 19px 2px; }
}

/* --- MICRO-INTERACTIONS --- */
.card, .feature, .principle, .tip {
  transition: box-shadow 0.18s, transform 0.18s;
}
.card:hover, .feature:hover, .tip:hover, .principle:hover {
  box-shadow: 0 10px 45px #0ef3a46c;
  transform: translateY(-4px) scale(1.013);
}
.testimonial-card:hover {
  box-shadow: 0 8px 38px #79ffa56e;
  transform: scale(1.012);
}

/* --- VISUAL EFFECTS FOR TECH FUTURISTIC --- */
.section, .hero, .feature, .card, .testimonial-card, .story-block {
  border: 1.5px solid #0ef3a422;
  box-shadow: 0 4px 44px #0ef3a41d, 0 1.5px 2px #84A98C15;
}

/* --- MISC --- */
::-webkit-scrollbar {
  width: 10px;
  background: #181B21;
}
::-webkit-scrollbar-thumb {
  background: #0ef3a499;
  border-radius: 6px;
}

/* --- ICONS --- */
img[alt*="icon-"] {
  background: #204a2b;
  border-radius: 100%;
  padding: 4px;
  box-shadow: 0 2px 15px #0ef3a46c;
}

/* --- VISUAL A11Y --- */
:focus {
  outline: 2px solid #0ef3a4;
  outline-offset: 2px;
  box-shadow: 0 0 0 2px #84A98C33;
}

/* --- PRINT STYLES (basic) --- */
@media print {
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal, .cta-primary, .cta-secondary, .mobile-menu-toggle { display: none !important; }
  .container { max-width: 100vw; padding: 0 8px; }
  .section { padding: 8px 2px; margin-bottom: 24px; background: #fff; color: #000; }
  body { background: #fff; color: #000; }
}

/* ------ END ------ */
