/* RESET & BASE STYLES */
html {box-sizing: border-box;}
*, *:before, *:after {box-sizing: inherit; margin: 0; padding: 0; border: 0;}
html {font-family: 'Open Sans', Arial, sans-serif; font-size: 16px; scroll-behavior: smooth;}
body {
  background: #181e1b; /* Deep, tech-y dark background for contrast */
  color: #F4F7F3;
  line-height: 1.6;
  min-height: 100vh;
  font-family: 'Open Sans', Arial, sans-serif;
  letter-spacing: 0.01em;
}
img {max-width: 100%; display: block;}
a {color: #ECFFD6; text-decoration: none; transition: color 0.3s; word-break: break-word;}
a:hover, a:focus {color: #A6C36F;}
ul {list-style: none;}
strong {color: #A6C36F; font-weight: 700;}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Lora', 'Georgia', serif;
  color: #F4F7F3;
  font-weight: 700;
  letter-spacing: 0.01em;
  margin-bottom: 16px;
}
h1 {font-size: 2.5rem; margin-bottom: 24px; line-height: 1.15;}
h2 {font-size: 2rem; margin-bottom: 20px;}
h3 {font-size: 1.4rem; margin-bottom: 16px;}
p, li, .footer-contact span {font-size: 1rem; margin-bottom: 12px;}

blockquote {
  font-family: 'Lora', 'Georgia', serif;   
  color: #D9FFB5;
  background: rgba(49,86,60,0.12);
  border-left: 4px solid #65ff9f;
  padding: 18px 24px;
  margin-bottom: 18px;
  border-radius: 8px;
}

/* BRAND COLORS */
:root {
  --primary: #31563C;
  --secondary: #A6C36F;
  --accent: #F4F7F3;
  --dark-bg: #181e1b;
  --card-bg: #202923;
  --neon-green: #65FF9F;
  --tech-blue: #0AE6F2;
  --alert-red: #FF477E;
  --mute-gray: #323C36;
}

/* CONTAINERS & LAYOUT */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--card-bg);
  border-radius: 16px;
  margin-bottom: 20px;
  position: relative;
  box-shadow: 0 4px 32px 0 rgba(10,230,242,0.06), 0 2px 8px 0 rgba(49,86,60,0.18);
  overflow: hidden;
}
.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;
  margin-bottom: 32px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #F4F7F3;
  color: #222;
  padding: 20px;
  border-radius: 18px;
  box-shadow: 0 3px 26px 0 rgba(0,255,100,0.08);
  min-width: 0;
  margin: 0 0 20px 0;
  transition: transform 0.22s cubic-bezier(.5,.09,.68,1.8), box-shadow 0.22s;
}
.testimonial-card:hover {transform: translateY(-5px) scale(1.02); box-shadow: 0 8px 36px 0 rgba(0,255,200,0.13);}
.testimonial-card blockquote {
  color: #196B36;
  background: transparent;
  border-left: 4px solid #0AE6F2;
  padding: 0 16px;
  margin: 0 0 10px 0;
}
.testimonial-details {
  color: #31563C;
  font-size: 1rem;
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

/* HERO SECTION */
.hero {
  background: linear-gradient(100deg, #263D2C 35%, #2b4c48 100%);
  border-bottom: 3px solid var(--neon-green);
  margin-bottom: 64px;
  padding: 56px 0 48px 0;
}
.hero h1 {
  font-size: 2.6rem;
  color: #ECFFD6;
  text-shadow: 0 2px 16px rgba(22,255,160,0.08);
}
.hero p {
  font-size: 1.26rem;
  color: #BFEAAD;
}
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.08rem;
  background-color: #31563C;
  color: #ECFFD6;
  padding: 14px 36px;
  border-radius: 40px;
  border: 2px solid #0AE6F2;
  box-shadow: 0 1px 14px 0 rgba(10,230,242,0.08);
  cursor: pointer;
  margin-top: 10px;
  margin-bottom: 8px;
  letter-spacing: 0.03em;
  transition: background 0.22s, color 0.16s, box-shadow 0.3s;
  text-shadow: 0 2px 12px rgba(10,230,242,0.07);
  position: relative;
  z-index: 1;
}
.cta-button:hover, .cta-button:focus {
  background: #0AE6F2;
  color: #222;
  border-color: #31563C;
  box-shadow: 0 8px 44px 0 rgba(165,255,126,0.19);
}

/* --- HEADER / NAVIGATION --- */
header {
  background: #181e1b;
  border-bottom: 1.5px solid #31563C;
  position: sticky; top: 0; width: 100%; z-index: 9000;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 16px;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  align-items: center;
}
.main-nav a {
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 600;
  color: #A6C36F;
  letter-spacing: 0.03em;
  font-size: 1rem;
  border-bottom: 2.5px solid transparent;
  padding: 2px 0;
  transition: border 0.16s, color 0.21s;
}
.main-nav a:hover, .main-nav a.active {
  color: #ECFFD6;
  border-bottom: 2.5px solid #0AE6F2;
}
.mobile-menu-toggle {
  background: none;
  border: none;
  color: #0AE6F2;
  font-size: 2.1rem;
  padding: 8px 10px;
  cursor: pointer;
  display: none;
  z-index: 10501;
  border-radius: 6px;
  transition: background 0.22s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #263D2C;
}
@media (max-width: 1024px) {
  .main-nav {gap: 18px;}
  header .container {gap: 10px;}
}
@media (max-width: 768px) {
  .main-nav {display: none;}
  .mobile-menu-toggle {display: block;}
}

/* --- MOBILE MENU --- */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(24,30,27,0.97);
  box-shadow: 0 0 42px 0 rgba(0,255,200,0.14);
  z-index: 11000;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  transform: translateX(-100%);
  transition: transform 0.32s cubic-bezier(.56,.01,.86,1.03);
}

.mobile-menu.open {
  transform: translateX(0);
  box-shadow: 0 0 80px 0 rgba(0,255,170,0.17);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #0AE6F2;
  font-size: 2.7rem;
  position: absolute;
  top: 20px;
  right: 24px;
  padding: 10px;
  cursor: pointer;
  z-index: 11001;
  border-radius: 6px;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {background: #263D2C;}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 70px;
  width: 100vw;
  align-items: flex-start;
  padding: 28px 30px 0 30px;
}
.mobile-nav a {
  font-size: 1.4rem;
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 600;
  color: #ECFFD6;
  transition: color 0.18s;
  padding: 13px 0 9px 8px;
  border-radius: 8px;
  width: 100%;
  display: block;
}
.mobile-nav a:hover, .mobile-nav a:focus {background: #31563C; color: #0AE6F2;}
@media (max-width: 768px) {
  .mobile-menu {padding-top: 14px;}
}

/* --- FOOTER --- */
footer {
  background: #161b19;
  border-top: 2px solid #31563C;
  padding: 36px 0 28px 0;
  color: #BFEAAD;
  font-size: 1rem;
}
footer .container {
  flex-direction: column;
  gap: 18px;
  align-items: center;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}
.footer-nav a {
  color: #A6C36F;
  border-bottom: 1.5px solid transparent;
  padding: 2px 2px 1px 2px;
  font-size: 1rem;
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 500;
  transition: border .13s, color .17s;
}
.footer-nav a:hover, .footer-nav a:focus {color: #0AE6F2; border-bottom: 1.5px solid #0AE6F2;}
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: center;
  color: #A6C36F;
  font-size: 1rem;
}

/* --- FEATURES & CARDS --- */
.features, .about-teaser, .services-overview, .about, .values, .team, .services, .process,
.product-intro, .product-categories, .workshops-hero, .workshop-list, .inspiration-intro, .testimonial-spotlight, .contact, .call-to-action, .thank-you, .legal, .section {
  background: #202923;
  border-radius: 20px;
  box-shadow: 0 4px 32px 0 rgba(10,230,242,0.05);
  margin-bottom: 40px;
  padding: 44px 0 38px 0;
}
.features ul, .about-teaser ul, .services-overview ul, .values ul, .product-intro ul, .product-categories ul, .workshop-list ul, .team ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-left: 0;
}
.features ul li, .about-teaser ul li, .services-overview ul li, .values ul li, .product-intro ul li, .product-categories ul li, .workshop-list ul li, .team ul li {
  padding-left: 22px;
  position: relative;
  color: #A6C36F;
}
.features ul li::before, .about-teaser ul li::before, .services-overview ul li::before, .values ul li::before, .product-intro ul li::before, .product-categories ul li::before, .workshop-list ul li::before, .team ul li::before {
  content: '\2022';
  color: #0AE6F2;
  position: absolute;
  left: 0;
  font-size: 1.1em;
  top: 0;
}
.cards, .card-container, .content-grid {
  margin-bottom: 28px;
}
.card {
  background: #242c27;
  border-radius: 16px;
  box-shadow: 0 2px 26px 0 rgba(49,86,60,0.10);
  color: #ECFFD6;
  padding: 32px 20px 27px 24px;
  min-width: 280px;
  flex: 1 1 320px;
  transition: box-shadow 0.16s, transform 0.17s;
}
.card:hover, .card:focus {
  box-shadow: 0 6px 32px 0 #0AE6F2;
  transform: translateY(-7px) scale(1.02);
}

/* --- TESTIMONIALS APPEARANCE --- */
.testimonials, .testimonial-spotlight {
  background: #181e1b;
  border-radius: 18px;
  margin-bottom: 48px;
  padding: 44px 0 36px 0;
}
.testimonials h2, .testimonial-spotlight h2 {color: #65FF9F;}
.testimonials .content-wrapper, .testimonial-spotlight .content-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
  margin: 28px 0 0 0;
}
.testimonials .testimonial-card, .testimonial-spotlight .testimonial-card {
  flex: 1 1 280px;
  min-width: 0;
  margin-bottom: 0;
}

/* --- MODALS & BANNERS (COOKIE CONSENT) --- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #202923;
  color: #ECFFD6;
  box-shadow: 0 -2px 28px 0 rgba(10,230,242,0.15);
  padding: 22px 18px 18px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 25000;
  gap: 14px;
  transition: transform 0.22s cubic-bezier(.4,1.05,.58,.99), opacity 0.22s;
  border-top: 2px solid #0AE6F2;
}
.cookie-banner.hide {transform: translateY(110%); opacity: 0; pointer-events: none;}
.cookie-banner-content {font-size: 1rem;}
.cookie-banner-actions {
  display: flex;
  flex-direction: row;
  gap: 18px;
  margin-top: 8px;
}
.cookie-banner .cookie-settings-btn {
  background: none;
  color: #0AE6F2;
  border: 2px solid #0AE6F2;
}
.cookie-banner .cookie-accept-btn, .cookie-banner .cookie-reject-btn {
  color: #FFF;
  border: 2px solid #31563C;
  font-weight: 700;
}
.cookie-banner .cookie-accept-btn {background: #31563C;}
.cookie-banner .cookie-accept-btn:hover, .cookie-banner .cookie-accept-btn:focus {background: #0AE6F2; color:#222;}
.cookie-banner .cookie-reject-btn {background: #FF477E;}
.cookie-banner .cookie-reject-btn:hover, .cookie-banner .cookie-reject-btn:focus {background: #31563C; color:#FF477E;}

/* Cookie preferences modal */
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  width: 92vw;
  max-width: 420px;
  background: #202923;
  color: #ECFFD6;
  border-radius: 14px;
  box-shadow: 0 5px 60px 0 rgba(10,230,242,0.16);
  transform: translate(-50%,-50%) scale(1);
  z-index: 30000;
  padding: 28px 22px 18px 22px;
  display: none;
  flex-direction: column;
}
.cookie-modal.open {display: flex;}
.cookie-modal h2 {margin-bottom: 18px; color: #0AE6F2;}
.cookie-pref-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 22px;
}
.cookie-pref-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
}
.cookie-pref-item label {flex: 1 1 auto; font-size: 1rem; color: #A6C36F;}
.cookie-pref-item input[type='checkbox'] {accent-color: #0AE6F2; width: 22px; height: 22px;}
.cookie-modal .modal-actions {display: flex; flex-direction: row; gap: 16px;}
.cookie-modal .modal-confirm-btn {background: #0AE6F2; color: #222; font-weight: 700; padding: 10px 24px; border-radius: 6px; border: none; cursor: pointer;}
.cookie-modal .modal-cancel-btn {background: #31563C; color: #fff; border-radius: 6px; padding: 10px 24px; border: none; cursor: pointer;}
.cookie-modal .modal-confirm-btn:hover, .cookie-modal .modal-confirm-btn:focus {background: #31563C;color:#0AE6F2;}
.cookie-modal .modal-cancel-btn:hover, .cookie-modal .modal-cancel-btn:focus {background: #0AE6F2; color:#222;}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 1024px) {
  .container {
    max-width: 98vw;
    padding: 0 10px;
  }
  .testimonial-card, .card {padding: 22px 12px 19px 14px;}
}
@media (max-width: 800px) {
  .container {max-width: 100vw; padding-left: 2vw; padding-right: 2vw;}
  .content-wrapper {gap: 14px;}
  .hero h1 {font-size: 2.15rem;}
  h2 {font-size: 1.5rem;}
  h1 {font-size: 2.1rem;}
  .section, .features, .about-teaser, .services-overview, .about, .values, .team, .services, .process, .product-intro, .product-categories, .workshops-hero, .workshop-list, .inspiration-intro, .testimonial-spotlight, .contact, .call-to-action, .thank-you, .legal {
    padding: 28px 0 24px 0;
    border-radius: 9px;
  }
  .testimonial-card, .card {border-radius: 12px;}
}
@media (max-width: 768px) {
  .container {padding: 0 3vw;}
  .content-wrapper {
    gap: 14px;
    flex-direction: column;
  }
  .content-grid, .card-container {
    flex-direction: column;
    gap: 20px;
  }
  .testimonial-card, .card {
    flex: 1 1 100%;
    min-width: 0;
  }
  .section, .features, .about-teaser, .services-overview, .about, .values, .team, .services, .process, .product-intro, .product-categories, .workshops-hero, .workshop-list, .inspiration-intro, .testimonial-spotlight, .contact, .call-to-action, .thank-you, .legal {
    padding: 22px 0 12px 0;
    margin-bottom: 32px;
  }
  .footer-contact, .footer-nav {gap: 12px;}
  .text-image-section {flex-direction: column; gap: 16px;}
}
@media (max-width: 460px) {
  html {font-size: 15px;}
  h1, h2, h3 {word-break: break-word;}
  .cta-button {padding: 10px 18px; font-size: 0.98rem;}
}

/* --- ANIMATIONS & MICROINTERACTIONS --- */
.cta-button, .card, .testimonial-card, .feature-item, .main-nav a, .footer-nav a {
  transition: box-shadow .22s, color .15s, background .17s, border .19s, transform .2s;
}
.card:active, .testimonial-card:active {
  transform: scale(.97);
}

/* --- FORMATTING FOR LEGAL/INFORMATION --- */
.legal .text-section {
  background: #242c27;
  color: #A6C36F;
  padding: 18px 24px;
  border-radius: 10px;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 24px;
}
.legal ul {
  margin-left: 18px;
  padding-left: 8px;
  list-style-type: disc;
}

/* --- UTILITIES --- */
.hide {display:none !important;}
.visible {display:block;}

/* --- END --- */