/* RESET & BASE STYLES --------------------------------------------------- */
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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  font-family: 'Source Sans Pro', Arial, Helvetica, sans-serif;
  color: #e4f7ea;
  background: #172424;
  letter-spacing: 0.01em;
  min-height: 100vh;
  scroll-behavior: smooth;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
input, button, textarea, select {
  font: inherit;
  box-sizing: border-box;
}
button {
  cursor: pointer;
  background: none;
  border: none;
  outline: none;
}
ul, ol {
  list-style: none;
}
a {
  color: #7CB518;
  text-decoration: none;
  transition: color 0.25s;
}
a:hover, a:focus {
  color: #F4F7F5;
  text-shadow: 0 0 4px #97ff6e;
}

/* BRAND COLORS AND FONTS -------------------------------------------------- */
:root {
  --color-primary: #254D32;
  --color-secondary: #7CB518;
  --color-accent: #F4F7F5;
  --color-dark-bg: #172424;
  --color-light-bg: #232c1f;
  --color-neon: #97ff6e;
  --color-error: #ff4b4b;
  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Source Sans Pro', Arial, Helvetica, sans-serif;

  --transition-fast: 0.18s cubic-bezier(.46,1.48,.77,1.07);
  --transition: 0.3s cubic-bezier(.46,1.48,.77,1.07);
  --radius: 16px;
  --radius-lg: 24px;
  --shadow-main: 0 8px 32px 0 rgba(124, 181, 24, 0.08), 0 1.5px 8px 0 rgba(16,32,16,0.1);
  --shadow-neon: 0 0 12px 0 #7CB51833, 0 0 2px #7CB51899;
}

/* TYPOGRAPHY --------------------------------------------------------------- */
h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--color-accent);
}
h1 {
  font-size: 2.25rem;
  line-height: 1.16;
  margin-bottom: 20px;
  text-shadow: 0 0 12px #7CB51844;
}
h2 {
  font-size: 1.75rem;
  margin-bottom: 18px;
  line-height: 1.25;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--color-neon);
}
h4 {
  font-size: 1.05rem;
}
p, li, ul, ol {
  font-family: var(--font-body);
  font-size: 1rem;
  color: #e4f7ea;
  margin-bottom: 14px;
}
p:last-child, li:last-child {
  margin-bottom: 0;
}
strong {
  color: var(--color-neon);
}
small {
  color: #8bc17a;
}

/* UTILITY CLASSES ---------------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 18px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

/* GLOBAL SECTION SPACING (MANDATORY) -------------------------------------- */
.section, .features, .about-preview, .cta, .features-topics, .tools-overview, .community-offers, .cta-community, .cta-contact, .cta-newsletter, .privacy-policy, .gdpr-info, .cookie-policy, .terms-of-use, .thank-you, .blog-posts, .about, .testimonials, .contact-details {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: var(--radius-lg);
  background: var(--color-light-bg);
  box-shadow: var(--shadow-main);
}

/* HEADER STYLES ----------------------------------------------------------- */
header {
  width: 100%;
  background: #18321a;
  border-bottom: 2px solid var(--color-secondary);
  box-shadow: 0 4px 24px 0 #7CB51822;
  z-index: 50;
  position: relative;
}
.logo img {
  height: 48px;
  transition: filter var(--transition-fast);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding-top: 8px;
  padding-bottom: 8px;
}
nav.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
nav.main-nav a {
  color: var(--color-accent);
  font-size: 1rem;
  font-family: var(--font-display);
  font-weight: 500;
  padding: 7px 0;
  position: relative;
  transition: color var(--transition-fast), text-shadow var(--transition-fast);
}
nav.main-nav a:hover {
  color: var(--color-neon);
  text-shadow: 0 0 5px var(--color-secondary);
}
nav.main-nav .cta-primary {
  background: linear-gradient(90deg, #254D32 0%, #7CB518 100%);
  color: #111a13;
  border-radius: var(--radius);
  box-shadow: 0 2px 12px 0 #7CB51888;
  font-family: var(--font-display);
  font-weight: 900;
  padding: 8px 28px;
  margin-left: 10px;
  font-size: 1.08rem;
  transition: background var(--transition-fast), color var(--transition-fast), box-shadow var(--transition);
  border: 2px solid var(--color-neon);
}
nav.main-nav .cta-primary:hover,
.cta-primary:focus {
  background: #7CB518;
  color: #18321a;
  box-shadow: 0 0 16px 4px #7CB518bb, 0 0 5px #97ff6e;
}

/* MOBILE NAVIGATION ------------------------------------------------------- */
.mobile-menu-toggle {
  display: none;
  font-size: 2.4rem;
  color: var(--color-neon);
  background: rgba(39, 77, 53, 0.65);
  border-radius: var(--radius);
  border: 1.5px solid var(--color-secondary);
  padding: 3px 14px 3px 8px;
  height: 45px;
  align-items: center;
  justify-content: center;
  margin-left: 18px;
  transition: background var(--transition-fast), box-shadow var(--transition-fast);
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  box-shadow: 0 0 0 2px var(--color-neon);
  background: var(--color-primary);
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  height: 100vh; width: 100vw;
  z-index: 1100;
  background: rgba(24,56,30,0.97);
  backdrop-filter: blur(4px);
  box-shadow: 0 12px 32px #7CB51866;
  transform: translateX(100vw);
  transition: transform 0.38s cubic-bezier(.53,1.35,.35, .9) 0s;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  padding: 18px 0 0 0;
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  box-shadow: 0 0 38px 6px #7CB51899;
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  font-size: 2.7rem;
  color: var(--color-neon);
  margin: 0 28px 24px 0;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  align-self: flex-end;
  transition: color var(--transition-fast);
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  color: #fff;
}
nav.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  padding: 0 36px 36px 36px;
  width: 100vw;
}
nav.mobile-nav a {
  width: 100%;
  font-size: 1.17rem;
  color: var(--color-accent);
  font-family: var(--font-display);
  font-weight: 600;
  border-radius: 10px;
  padding: 14px 10px 14px 0;
  transition: background 0.2s, color 0.2s;
}
nav.mobile-nav a:hover,
nav.mobile-nav a:focus {
  color: var(--color-neon);
  background: rgba(124,181,24,.09);
  text-shadow: 0 0 8px var(--color-neon);
}

/* HERO SECTION ------------------------------------------------------------ */
.hero {
  background: linear-gradient(90deg, #254D32 0%, #18321a 70%);
  box-shadow: 0 8px 48px 0 rgba(124, 181, 24, 0.08), 0 1.5px 8px 0 rgba(16,32,16,0.1);
  border-radius: var(--radius-lg);
  padding-top: 68px;
  padding-bottom: 68px;
  margin-bottom: 64px;
  margin-top: 10px;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.hero h1 {
  font-size: 2.4rem;
  color: var(--color-accent);
  text-shadow: 0 0 8px #7CB51877;
  margin-bottom: 22px;
  line-height: 1.13;
}
.hero p {
  font-size: 1.15rem;
  color: #d4ecc8;
  margin-bottom: 36px;
  max-width: 580px;
}
.hero .cta-primary {
  margin-top: 8px;
}

/* FEATURE CARDS ------------------------------------------------------------ */
.features .feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 24px;
}
.features .feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #203523;
  border-radius: 18px;
  box-shadow: var(--shadow-main), 0 0 10px #97ff6e33;
  padding: 26px 22px;
  min-width: 220px;
  flex: 1 1 240px;
  position: relative;
  margin-bottom: 20px;
  transition: box-shadow var(--transition);
  border: 1px solid #2b6637;
}
.features .feature-item img {
  width: 38px;
  height: 38px;
  filter: drop-shadow(0 0 8px #7CB51899);
}
.features .feature-item:hover {
  box-shadow: 0 2px 28px #7CB51899, 0 0 10px #7CB51855;
  border-color: var(--color-secondary);
}

/* CARD PATTERNS ------------------------------------------------------------ */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #203523;
  border-radius: var(--radius);
  box-shadow: var(--shadow-main), 0 0 10px #7CB51833;
  padding: 24px 20px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow var(--transition), border-color var(--transition-fast);
  border: 1px solid #213c23;
}
.card:hover {
  box-shadow: 0 0 32px #7CB51899;
  border-color: var(--color-secondary);
}

.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;
}


/* CTA BLOCKS --------------------------------------------------------------- */
.cta, .cta-contact, .cta-community, .cta-tools, .cta-newsletter {
  background: linear-gradient(90deg, #254D32 20%, #203523 95%);
  text-align: left;
  display: flex;
  align-items: center;
  border: 1.5px solid #2f5a32;
}
.cta h2, .cta-contact h2, .cta-community h2, .cta-tools h2, .cta-newsletter h2 {
  color: var(--color-neon);
  text-shadow: 0 0 6px #97ff6e44;
  margin-bottom: 16px;
}
.cta-primary {
  background: linear-gradient(90deg, #7CB518 50%, #254D32 100%);
  color: #1b2511;
  border-radius: var(--radius);
  border: 2px solid var(--color-neon);
  box-shadow: 0 0 16px 2px #7CB51899;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  padding: 10px 30px;
  margin-top: 12px;
  margin-right: 16px;
  text-shadow: 0 1.5px 1.5px #aedbd3;
  transition: background var(--transition-fast), color var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
  position: relative;
  overflow: hidden;
}
.cta-primary:hover, .cta-primary:focus {
  background: var(--color-neon);
  color: #14310c;
  border-color: #254D32;
  box-shadow: 0 0 16px 8px #7CB51888, 0 0 6px #97ff6e66;
}

/* ABOUT, LISTS, MEMBER STORIES --------------------------------------------- */
ul {
  margin-bottom: 18px;
  padding-left: 0;
}
ul li {
  margin-bottom: 14px;
  position: relative;
  padding-left: 24px;
  color: #dbf0c8;
}
ul li:before {
  content: '';
  display: inline-block;
  position: absolute;
  left: 6px;
  top: 10px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-secondary);
  box-shadow: 0 0 8px #7CB51870;
}
.member-story {
  background: #162516;
  color: #121d13;
  border-left: 4px solid var(--color-neon);
  border-radius: var(--radius);
  padding: 22px 22px 18px 26px;
  margin-bottom: 24px;
  box-shadow: 0 0 12px #7CB51833;
}
.member-story p {
  color: #e8ffe1;
}
.member-story span {
  color: #97ff6e;
  font-size: .98em;
  font-weight: 600;
}

/* BLOG POST CATEGORIES ----------------------------------------------------- */
.post-categories {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 23px;
  color: var(--color-neon);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.04rem;
}

.blog-posts ul {
  margin-top: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.blog-posts ul li {
  background: #1c2e1d;
  border-radius: var(--radius);
  padding: 17px 17px 15px 17px;
  border-left: 3px solid #7CB518;
  color: #d5eeda;
  box-shadow: 0 0 6px #7CB51822;
}
.blog-posts ul li a {
  margin-left: 6px;
  color: var(--color-neon);
  font-weight: 600;
  font-size: 1.01rem;
  text-shadow: 0 0 2.5px #aedbd3aa;
}

/* TESTIMONIAL CARDS -------------------------------------------------------- */
.testimonials .testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #f7faf5;
  color: #1d2914;
  border-radius: var(--radius);
  box-shadow: 0 0 14px #254D3266;
  margin-bottom: 28px;
  border: 1.5px solid #bfe282;
  min-width: 220px;
  max-width: 460px;
}
.testimonials .testimonial-card p {
  color: #1d2914;
  margin-bottom: 4px;
  font-size: 1.07rem;
  font-style: italic;
}
.testimonials .testimonial-card span {
  color: #254D32;
  font-family: var(--font-display);
  font-size: .99rem;
  margin-left: 9px;
}

/* CONTACT DETAILS ---------------------------------------------------------- */
.contact-details ul {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 26px;
}
.contact-details ul li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.04rem;
  background: #182b18;
  border-radius: var(--radius);
  padding: 12px 13px 11px 16px;
  color: #d2eecc;
  border-left: 3px solid #7CB518;
}
.contact-details ul li img {
  width: 27px;
  height: 27px;
  filter: drop-shadow(0 0 7px #97ff6e66);
}
.location-map img {
  margin-bottom: 6px;
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 18px #7CB51844;
}
.location-map small {
  color: #a8e892;
  font-size: .9em;
}

/* FOOTER ------------------------------------------------------------------- */
footer {
  padding: 46px 0 20px;
  background: #193217;
  border-top: 2px solid var(--color-secondary);
  box-shadow: 0 -8px 32px 0 #7CB51822;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: center;
  justify-content: center;
}
.footer-nav {
  display: flex;
  gap: 23px;
  margin-bottom: 7px;
}
.footer-nav a {
  color: #a8e892;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: color var(--transition-fast);
  border-radius: 8px;
  padding: 4px 12px;
}
.footer-nav a:hover {
  color: var(--color-neon);
  background: #254D32;
}
.footer-contact {
  color: #baf2cb;
  font-size: .99rem;
  text-align: center;
}
.footer-contact a {
  color: #7CB518;
  font-weight: 500;
}
.footer-contact a:hover {
  color: #97ff6e;
}

/* THANK YOU PAGE ----------------------------------------------------------- */
.thank-you .content-wrapper {
  align-items: center;
  text-align: center;
}

/* COOKIE CONSENT BANNER ---------------------------------------------------- */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 1400;
  background: linear-gradient(90deg, #254D32 30%, #193217 70%);
  color: #F4F7F5;
  box-shadow: 0 -2px 22px #7CB51844;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 22px 18px 18px 18px;
  transition: transform 0.34s cubic-bezier(.45,1.13,.68,1), opacity 0.23s;
  gap: 16px;
}
.cookie-banner.hide {
  transform: translateY(110vh);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner p {
  color: #F4F7F5;
  font-size: 1.03rem;
  margin-bottom: 10px;
  text-align: center;
}
.cookie-banner .cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  align-items: center;
  margin-top: 8px;
}
.cookie-btn {
  padding: 9px 22px;
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font-display);
  border-radius: 8px;
  border: 2px solid var(--color-secondary);
  margin-right: 6px;
  background: #162516;
  color: #97ff6e;
  transition: background var(--transition-fast), color var(--transition-fast), box-shadow var(--transition-fast);
}
.cookie-btn:last-child {
  margin-right: 0;
}
.cookie-btn.accept {
  background: var(--color-secondary);
  color: #142b17;
  border-color: #b4f978;
  box-shadow: 0 0 8px #97ff6e55;
}
.cookie-btn.reject {
  background: #ffebe9;
  border-color: #ff6e5e;
  color: #632218;
  box-shadow: 0 0 8px #ff6e5e33;
}
.cookie-btn.settings {
  background: #162516;
  color: #a2f1a1;
  border-color: #74b818;
  box-shadow: 0 0 7px #254D3232;
}
.cookie-btn:focus,
.cookie-btn:hover {
  background: #7CB518;
  color: #14310c;
}
/* COOKIE SETTINGS MODAL ---------------------------------------------------- */
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-48%) scale(1);
  z-index: 1500;
  background: #1d2d18;
  color: #CFFAD2;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 48px #7CB51877;
  max-width: 420px;
  width: 92vw;
  padding: 32px 28px 26px 28px;
  opacity: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
  animation: cookiePopIn var(--transition) cubic-bezier(.95,1.13,.68,1);
}
@keyframes cookiePopIn {
  from { opacity: 0; transform: translate(-50%, 0) scale(0.92); }
  to { opacity: 1; transform: translate(-50%, -48%) scale(1); }
}
.cookie-modal h3 {
  font-family: var(--font-display);
  color: var(--color-neon);
  margin-bottom: 10px;
  font-size: 1.18rem;
  text-align: left;
}
.cookie-modal .category {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 12px;
  gap: 10px;
}
.cookie-modal .category label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.10rem;
  margin-bottom: 0px;
  color: #c0fccb;
  flex: 1 1 70%;
}
.cookie-modal .category .cookie-toggle {
  width: 40px;
  height: 22px;
  background: #0f2211;
  border-radius: 17px;
  border: 2px solid #7CB518bb;
  position: relative;
  display: flex;
  align-items: center;
  transition: background var(--transition-fast), border-color var(--transition-fast);
  margin-left: 12px;
}
.cookie-modal .category input[type="checkbox"] {
  display: none;
}
.cookie-modal .category .cookie-slider {
  width: 18px;
  height: 18px;
  background: #7CB518;
  border-radius: 50%;
  box-shadow: 0 0 10px #97ff6e77, 0 2px 2px #0a1306;
  position: absolute;
  left: 2px;
  transition: left var(--transition-fast);
  top: 1px;
}
.cookie-modal .category input[type='checkbox']:checked + .cookie-slider {
  left: 20px;
  background: #198530;
  box-shadow: 0 0 10px #b6ffab;
}
.cookie-modal .category .desc {
  color: #d4eeda;
  font-size: .99em;
  font-weight: 400;
  max-width: 210px;
  margin-top: 1px;
}
.cookie-modal .modal-footer {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 22px;
}
.cookie-modal .modal-footer button {
  padding: 8px 18px;
  font-size: 1em;
  border-radius: 8px;
  border: none;
  background: var(--color-secondary);
  color: #233817;
  font-family: var(--font-display);
  font-weight: 700;
  transition: background var(--transition-fast), color var(--transition-fast);
  margin-left: 7px;
}
.cookie-modal .modal-footer button:last-child {
  background: #ffebe9;
  color: #79231b;
}
.cookie-modal .modal-footer button:hover,
.cookie-modal .modal-footer button:focus {
  background: var(--color-neon);
  color: #182516;
}

/* MISC: FORMS, ERRORS, ETC ------------------------------------------------- */
input, textarea, select {
  border-radius: var(--radius);
  border: 1.5px solid #324e38;
  background: #213823;
  color: #f4f7f5;
  padding: 10px 16px;
  font-size: 1em;
  margin-bottom: 16px;
  transition: border var(--transition-fast), box-shadow var(--transition-fast);
}
input:focus, textarea:focus, select:focus {
  border: 1.5px solid var(--color-neon);
  outline: none;
  box-shadow: 0 0 8px #7CB518;
}
.error-message {
  color: var(--color-error);
  background: #360a11;
  padding: 8px 14px;
  border-radius: 7px;
  margin-bottom: 16px;
}

/* RESPONSIVE DESIGN: MOBILE-FIRST ------------------------------------------ */
@media (max-width: 1100px) {
  .container {
    max-width: 94vw;
  }
  nav.main-nav { gap: 20px; }
}
@media (max-width: 900px) {
  .footer-nav { flex-direction: column; gap: 11px; }
  .features .feature-grid { gap: 18px; }
  .member-story { padding-left: 12px; }
}
@media (max-width: 768px) {
  .hero, .section, .features,
  .about-preview, .cta, .features-topics, .about, .testimonials,
  .blog-posts, .cta-newsletter, .cta-contact, .cta-community, .tools-overview, .community-offers, .thank-you {
    padding: 24px 8px;
    margin-bottom: 43px;
    border-radius: var(--radius);
  }
  .hero { padding-top: 38px; padding-bottom: 38px; }
  .features .feature-grid { flex-direction: column; gap: 22px; }
  .card-container, .content-grid { flex-direction: column; gap: 16px; }
  .text-image-section { flex-direction: column; gap: 20px; }
  .container { padding: 0 7px; }
  .footer-contact { font-size: .97rem; }
  .about-preview, .about, .tools-overview, .community-offers { padding-top: 20px; padding-bottom: 20px; }
  .post-categories { flex-direction: column; gap: 4px; }
}
@media (max-width: 600px) {
  h1 { font-size: 1.48rem; }
  h2 { font-size: 1.18rem; }
  .hero p { font-size: .99rem; }
  nav.main-nav, nav.footer-nav { display: none !important; }
  .mobile-menu-toggle { display: flex; }
  header .container { flex-direction: row; flex-wrap: nowrap; justify-content: space-between; }
  .footer-contact { font-size: .95rem; }
}

@media (max-width: 480px) {
  .hero, .section,
  .features, .about-preview, .about, .testimonials, .cta, .cta-newsletter, .cta-contact, .cta-tools, .community-offers, .tools-overview, .thank-you {
    padding: 14px 3px;
  }
  .cookie-banner { padding: 14px 5px 9px 5px; }
  .cookie-modal { padding: 14px 8px 8px 8px; }
  footer .container { gap: 12px; }
  .footer-contact { font-size: .93rem; }
}

/* ENSURE ADEQUATE SPACING BETWEEN ELEMENTS AND MOBILE NAVIGATION ---------- */
.section > *, .features > *, .about-preview > *, .about > *, .tools-overview > *, .community-offers > * {
  margin-bottom: 20px;
}
.section > *:last-child, .features > *:last-child, .about-preview > *:last-child, .about > *:last-child, .tools-overview > *:last-child, .community-offers > *:last-child {
  margin-bottom: 0;
}

/* Z-INDEX ------------------------------------------------------------ */
header { z-index: 100; }
.mobile-menu { z-index: 1100; }
.cookie-banner { z-index: 1400; }
.cookie-modal { z-index: 1500; }

/* MICRO-INTERACTIONS: SOFT HOVER SHADOWS ----------------------------------- */
.card, .features .feature-item, .cta-primary, .testimonial-card, .cookie-btn {
  transition: box-shadow var(--transition-fast), border-color var(--transition-fast), background var(--transition-fast), color var(--transition-fast);
}
.card:hover, .features .feature-item:hover, .testimonial-card:hover {
  box-shadow: 0 2px 28px 0 #7CB51888, 0 0 10px #97ff6e55;
  border-color: var(--color-neon);
}

/* CUSTOM SCROLLBAR FOR TECH FEEL ------------------------------------------- */
body::-webkit-scrollbar {
  width: 12px;
  background: #203523;
}
body::-webkit-scrollbar-thumb {
  background: #7CB51877;
  border-radius: 8px;
}
body::-webkit-scrollbar-thumb:hover {
  background: #97ff6e99;
}

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