/* =============================
   CSS RESET & NORMALIZE RULES
   ============================= */
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%; height: 100%;}
body {
  min-height: 100vh;
  background-color: #181C1E;
  color: #EFFAF0;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
}
img {  border-style: none;  max-width: 100%;  display: block; }
ul, ol { list-style: none; }
button, input, textarea, select {  font: inherit;  border: none;  background: none;  outline: none;  box-sizing: border-box; }
a { color: inherit; text-decoration: none; background: transparent; cursor: pointer;}
:focus { outline: 2px solid #48A363; outline-offset: 2px;}

/* ================
   BRAND VARIABLES
   ================ */
:root {
  --primary : #205F36;
  --secondary: #EFFAF0;
  --secondary-dark: #24282A;
  --accent: #48A363;
  --accent-dark: #277840;
  --text-dark: #181C1E;
  --text-light: #EFFAF0;
  --muted: #94AA9B;
  --metal-1: #393F44;
  --metal-2: #6e757b;
  --surface: #232628;
  --radius: 10px;
  --shadow-lg: 0 4px 28px 0 rgba(24, 28, 30, 0.36);
  --shadow-md: 0 2px 10px 0 rgba(32, 95, 54, 0.20);
  --transition: 0.25s cubic-bezier(.47,.11,.29,1.11);
  --font-display: 'Montserrat', 'Roboto', Arial, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
}

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4, h5, h6 {
  color: var(--accent);
  font-family: var(--font-display);
  font-weight: 700;
}
h1 { font-size: 2.5rem; line-height: 1.1; margin-bottom: 28px; letter-spacing: 0.02em; }
h2 { font-size: 2rem; margin-bottom: 20px; letter-spacing: 0.01em; }
h3 { font-size: 1.375rem; margin-bottom: 10px; }
h4 { font-size: 1.125rem; margin-bottom: 6px; }
h5, h6 { font-size: 1rem; }
p, li, blockquote, span, label {
  color: var(--secondary);
  font-family: var(--font-body);
  font-size: 16px;
}
strong, b { color: var(--accent); font-weight: bold; }
blockquote {
  color: var(--text-dark);
  font-size: 1.1rem;
  border-left: 4px solid var(--accent);
  padding: 0 0 0 16px;
  margin-bottom: 10px;
  font-style: italic;
}

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.125rem; }
  p, li, blockquote, label { font-size: 15px; }
}


/* ===============
   LAYOUT BASICS
   =============== */
.container {
  width: 100%;
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

/* Flex-based grid patterns for required classes */
.card-container,
.case-study-list,
.knowledge-articles,
.feature-grid,
.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card,
.feature,
.service-card,
.case-study,
.news-item {
  margin-bottom: 20px;
  position: relative;
  background: var(--metal-1);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 24px;
  min-width: 240px;
  flex: 1 1 280px;
  max-width: 390px;
}
.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;
  border-radius: var(--radius);
  background: var(--secondary);
  box-shadow: var(--shadow-lg);
  margin-bottom: 20px;
  min-width: 260px;
  color: var(--text-dark);
  flex: 1 1 310px;
  max-width: 450px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

@media (max-width: 992px) {
  .card-container,
  .feature-grid,
  .service-cards,
  .case-study-list,
  .knowledge-articles {
    gap: 16px;
  }
  .card,
  .feature,
  .service-card,
  .case-study {
    min-width: 180px;
    max-width: 100%;
    flex-basis: 100%;
  }
  .testimonial-card {
    min-width: 180px;
    max-width: 100%;
    flex-basis: 100%;
  }
}

@media (max-width: 768px) {
  .section { padding: 30px 5px; margin-bottom: 32px; }
  .container { padding: 0 8px; }
  .content-wrapper,
  .card-container,
  .feature-grid,
  .service-cards,
  .case-study-list,
  .knowledge-articles {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .text-image-section { flex-direction: column; gap: 18px; }
  .content-grid { flex-direction: column; gap: 12px; }
}

/* VISUAL HIERARCHY & SPACING */
main > section, main .section {
  margin-bottom: 60px;
}
@media (max-width: 768px){
  main > section, main .section {margin-bottom: 32px;}
}

/* HEADER & NAVIGATION (INDUSTRIAL MODERN STYLE) */
header {
  background: var(--metal-1);
  border-bottom: 2px solid var(--metal-2);
  box-shadow: 0 3px 24px rgba(57,63,68,0.08);
  position: sticky; top: 0; z-index: 100;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 17px 20px;
  gap: 32px;
}
.brand-logo img {
  height: 38px;
  width: auto;
  filter: grayscale(0.2) contrast(1.2);
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 16px;
  padding: 7px 14px;
  border-radius: 5px;
  color: var(--secondary);
  transition: color .2s, background .2s, box-shadow .2s;
  letter-spacing: 0.02em;
  position: relative;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--accent);
  background: var(--surface);
  box-shadow: 0 2px 12px 0 rgba(32,95,54,0.08);
}
.main-nav .cta-btn {
  background: var(--accent);
  color: var(--secondary-dark);
  font-weight: 700;
  padding: 9px 22px;
  border-radius: 7px;
  border: none;
  margin-left: 16px;
  box-shadow: 0 2px 8px 0 rgba(72,163,99,0.11);
  transition: background .18s, color .18s, box-shadow .18s;
  text-shadow: 0 1px 2px rgba(57,63,68,0.10);
}
.main-nav .cta-btn:hover, .main-nav .cta-btn:focus {
  background: var(--accent-dark);
  color: var(--secondary);
  box-shadow: 0 4px 18px 0 rgba(72,163,99,0.21);
}
.mobile-menu-toggle {
  display: none;
  font-size: 2.1rem;
  background: var(--metal-1);
  color: var(--accent);
  border: 2px solid var(--metal-2);
  padding: 6px 15px;
  border-radius: 7px;
  transition: background .2s, color .2s;
  margin-left: 18px;
  cursor: pointer;
  z-index: 201;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: var(--accent-dark);
  color: var(--secondary);
}

@media (max-width: 1024px) {
  .main-nav {
    gap: 18px;
  }
}
@media (max-width: 912px) {
  .main-nav .cta-btn { margin-left: 6px; }
}
@media (max-width: 850px) {
  .main-nav { gap: 11px; }
}
@media (max-width: 768px) {
  .main-nav { display: none; }
  .mobile-menu-toggle {
    display: block;
  }
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: fixed;
  z-index: 9999;
  top: 0; left: 0; height: 100vh; width: 100vw;
  background: linear-gradient(97deg, #232628 0%, var(--metal-1) 80%);
  transform: translateX(-120vw);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.36s var(--transition), opacity 0.23s, visibility 0.32s;
  box-shadow: 0 8px 54px 0 rgba(24,28,30,0.28);
  padding: 0;
}
.mobile-menu.active {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 24px 22px 4px 0;
  font-size: 2.4rem;
  color: var(--accent);
  background: transparent;
  border-radius: 4px;
  border: 2px solid var(--metal-2);
  padding: 4px 15px;
  cursor: pointer;
  transition: background .2s, color .2s;
  z-index: 10011;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--accent-dark);
  color: var(--secondary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100vw;
  padding: 12px 28px 70px 36px;
}
.mobile-nav a {
  color: var(--secondary);
  background: transparent;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  padding: 10px 0 10px 0;
  border-bottom: 1px solid var(--metal-2);
  display: block;
  transition: background .18s, color .18s, padding .14s;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--accent);
  background: var(--surface);
  padding-left: 10px;
}

@media (min-width: 769px) {
  .mobile-menu { display: none !important; }
}

/* =============
   HERO SECTIONS
   ============= */
.hero {
  background: linear-gradient(115deg, #232628 35%, var(--primary) 80%);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 44px 0 44px 0;
  margin-bottom: 42px;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero .content-wrapper {
  align-items: center;
}
.hero h1, .hero p {
  color: var(--secondary);
  text-align: center;
}
.hero h1 {
  letter-spacing: 0.02em;
  font-size: 2.3rem;
  margin-bottom: 18px;
  text-shadow: 0 2px 16px rgba(32,95,54,0.13);
}
.hero p {
  font-size: 1.1rem;
  margin-bottom: 24px;
  color: #C4E0CB;
}

@media (max-width: 768px) {
  .hero { padding: 26px 0 22px 0; margin-bottom: 18px;}
  .hero .container { padding: 0 2px; }
  .hero h1 { font-size: 1.45rem; }
}

/* =============
   CARDS & GRIDS
   ============= */
.feature-grid, .service-cards, .case-study-list, .knowledge-articles {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.feature, .service-card, .case-study {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  background: var(--metal-1);
  border: 1.5px solid var(--primary);
  border-radius: var(--radius);
  padding: 26px 18px 20px 18px;
  box-shadow: var(--shadow-md);
  transition: transform .17s, box-shadow .21s, border-color .17s;
  min-width: 220px;
  flex: 1 1 250px;
  max-width: 350px;
  margin-bottom: 20px;
  overflow: hidden;
}
.feature img {
  width: 48px;
  height: 48px;
  margin-bottom: 14px;
  filter: grayscale(0.2) brightness(1.10) contrast(1.20);
}
.feature h3, .service-card h3, .case-study h3 {
  color: var(--accent);
  margin-bottom: 7px;
}
.feature p, .service-card p, .case-study p {
  color: var(--secondary);
}
.service-price {
  color: var(--accent);
  font-size: 1rem;
  font-weight: bold;
  margin-top: 11px;
  letter-spacing: 0.01em;
}
.feature:hover, .service-card:hover, .case-study:hover, .news-item:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 6px 24px 0 rgba(72,163,99,0.15), 0 1.5px 18px 0 rgba(32,95,54,0.10);
  border-color: var(--accent);
}

/* NEWS FEED CARDS */
.news-feed .news-categories { display: flex; gap: 18px; margin-bottom: 18px; align-items: center; flex-wrap: wrap; }
.news-feed .news-categories button {
  background: var(--metal-2);
  color: var(--secondary);
  border-radius: 6px;
  padding: 5px 18px;
  margin-right: 3px;
  font-size: 14px;
  border: none;
  font-family: var(--font-body);
  cursor: pointer;
  box-shadow: 0 1px 5px 0 rgba(72,163,99,0.09);
  transition: background .14s, color .14s;
}
.news-feed .news-categories button:hover, .news-feed .news-categories button:focus {
  background: var(--accent);
  color: var(--text-dark);
}
.news-item {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 20px 18px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px 0 rgba(32,95,54,0.11);
  border-left: 7px solid var(--primary);
  transition: box-shadow .18s, border-color .18s;
  flex: 1 1 320px;
  max-width: 460px;
}
.news-item.featured {
  border-left: 7px solid var(--accent);
  background: #25322A;
}
.news-item h3 { margin-bottom: 6px; }
.news-date { font-size: 13px; color: var(--muted); font-style: italic; margin-top: 3px;}

@media (max-width: 768px) {
  .feature,
  .service-card,
  .case-study,
  .news-item { max-width: 100%; min-width: 140px; }
}

/* ===============
   CTA SECTIONS
   =============== */
.cta {
  background: var(--primary);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 38px 0 38px 0;
}
.cta .content-wrapper {
  align-items: center;
}
.cta h2 {
  color: var(--secondary);
  margin-bottom: 22px;
  letter-spacing: 0.01em;
  text-align: center;
}
.cta a.cta-btn {
  margin: 0 auto;
}

/* ===============
   BUTTONS & LINKS
   =============== */
.cta-btn,
button,
input[type="submit"] {
  font-family: var(--font-display);
  background: var(--accent);
  color: var(--secondary-dark);
  font-weight: 800;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  padding: 13px 30px;
  box-shadow: 0 2px 14px 0 rgba(72,163,99,0.15);
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background .19s, color .17s, transform .19s, box-shadow .14s;
  outline: none;
  display: inline-block;
}
.cta-btn:hover, .cta-btn:focus,
button:hover, button:focus {
  background: var(--accent-dark);
  color: var(--secondary);
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 36px 0 rgba(72,163,99,0.12);
}

/* ======= TESTIMONIAL CARDS ======= */
.testimonials, .testimonial-cards {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
}
.testimonial-card {
  border-left: 6px solid var(--accent);
  background: var(--secondary);
  color: var(--text-dark);
  font-size: 1rem;
  margin-bottom: 20px;
  padding: 20px;
  border-radius: var(--radius);
  box-shadow: 0 3px 24px 0 rgba(57,63,68,0.10);
  overflow: hidden;
  flex: 1 1 350px;
  max-width: 420px;
  position: relative;
  transition: box-shadow .17s, transform .18s;
}
.testimonial-card blockquote {
  color: var(--text-dark);
  border-left: none;
  padding-left: 0; margin-bottom: 12px;
  font-size: 1.09rem;
}
.testimonial-card span {
  color: var(--metal-1);
  font-size: 0.97rem;
  font-weight: 500;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 12px 36px 0 rgba(72,163,99,0.09), 0 3px 18px 0 rgba(32,95,54,0.10);
  transform: translateY(-3px) scale(1.015);
}

@media (max-width: 768px) {
  .testimonials, .testimonial-cards {
    flex-direction: column;
    gap: 14px;
  }
  .testimonial-card {
    max-width: 100%;
    min-width: 160px;
  }
}

/* CASE STUDY LIST */
.case-study-list {
  gap: 24px;
  margin-bottom: 14px;
}
.case-study {
  background: var(--metal-2);
  color: var(--text-dark);
  border-left: 5px solid var(--primary);
}
.case-study span strong { color: var(--accent-dark); }

/* ===============
   LEGAL/INFO SECTIONS
   =============== */
.legal {
  background: var(--metal-1);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 40px 22px;
  color: var(--secondary);
}
.legal h1, .legal h2, .legal h3 { color: var(--accent-dark); }

/* EDUCATIONAL CONTENT */
.educational-content {
  background: var(--metal-1);
  border-radius: var(--radius);
  padding: 30px 18px;
  box-shadow: var(--shadow-md);
}
.knowledge-articles article {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 22px 16px;
  box-shadow: 0 1.5px 10px 0 rgba(32,95,54,0.09);
  margin-bottom: 13px;
}
.faq, .infographics-list {
  margin-top: 22px;
}
.faq ul, .infographics-list ul {
  list-style: disc inside;
  margin-top: 12px;
  color: var(--accent);
}
.faq li, .infographics-list li { color: var(--secondary); }

/* ===============
   FOOTER
   =============== */
footer {
  background: var(--metal-1);
  color: var(--secondary);
  padding: 48px 0 24px 0;
  margin-top: 40px;
  border-top: 2.5px solid var(--primary);
  font-size: 1rem;
}
.footer-content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 38px;
}
.footer-content a img { height: 30px; margin-bottom: 19px; }
.contact-info p { color: var(--secondary); font-size: 0.99rem; margin-bottom: 3px; }
.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
}
.footer-menu a {
  color: var(--secondary);
  font-family: var(--font-body);
  font-size: 1rem;
  border-radius: 6px;
  padding: 5px 0 5px 0;
  transition: color .17s, background .15s;
}
.footer-menu a:hover, .footer-menu a:focus {
  color: var(--accent);
  background: var(--surface);
}
@media (max-width: 900px) {
  .footer-content { flex-direction: column; gap: 22px; align-items: flex-start; }
}
@media (max-width: 600px) {
  .footer-content { padding: 0 0 0 0; }
  footer { padding: 30px 0 16px 0; }
}

/* ===============
   COOKIE CONSENT BANNER
   =============== */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  z-index: 9601;
  background: var(--metal-2);
  color: var(--secondary);
  box-shadow: 0 -4px 44px 0 rgba(24,28,30,0.19);
  padding: 24px 18px 18px 18px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 32px;
  font-size: 1rem;
  transition: opacity .22s, transform .29s;
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
}
.cookie-banner__text {
  flex: 2;
  color: var(--secondary);
}
.cookie-banner__buttons {
  flex: 1;
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}
.cookie-banner button {
  padding: 9px 18px;
  border-radius: 7px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  border: none;
  outline: none;
  cursor: pointer;
  box-shadow: 0 2px 12px 0 rgba(72,163,99,0.10);
  background: var(--surface);
  color: var(--secondary);
  transition: background .15s, color .15s;
}
.cookie-banner .accept-btn {
  background: var(--accent);
  color: var(--secondary-dark);
  font-weight: 800;
}
.cookie-banner .accept-btn:hover, .cookie-banner .accept-btn:focus {
  background: var(--accent-dark);
  color: #fff;
}
.cookie-banner .reject-btn {
  background: var(--metal-2);
  color: var(--secondary);
  font-weight: 700;
}
.cookie-banner .reject-btn:hover, .cookie-banner .reject-btn:focus {
  background: var(--primary);
  color: #fff;
}
.cookie-banner .settings-btn {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent);
  font-weight: 700;
}
.cookie-banner .settings-btn:hover, .cookie-banner .settings-btn:focus {
  background: var(--accent);
  color: var(--secondary-dark);
}

@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 14px 7px 12px 7px;
    font-size: 15px;
  }
  .cookie-banner__buttons {
    gap: 8px;
    width: 100%;
    justify-content: flex-start;
  }
}

/* Cookie Settings Modal */
.cookie-modal {
  position: fixed;
  z-index: 9801;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(24,28,30,0.77);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .21s;
}
.cookie-modal.active {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal__content {
  background: var(--secondary);
  color: var(--text-dark);
  border-radius: var(--radius);
  box-shadow: 0 12px 52px 0 rgba(32,95,54,0.17);
  padding: 38px 30px 32px 30px;
  min-width: 320px; max-width: 98vw;
  min-height: 160px;
  display: flex; flex-direction: column; gap: 20px;
}
.cookie-modal__header {
  display: flex; justify-content: space-between; align-items: center;
}
.cookie-modal__header h3 {
  color: var(--accent);
  margin: 0;
}
.cookie-modal__close {
  background: transparent;
  color: var(--accent-dark);
  font-size: 2.1rem;
  border: none;
  cursor: pointer;
  border-radius: 6px;
  padding: 2px 12px;
  transition: background .14s;
}
.cookie-modal__close:hover, .cookie-modal__close:focus {
  background: var(--accent);
  color: #fff;
}
.cookie-modal__category {
  display: flex; flex-direction: row; align-items: center; gap: 24px; margin-bottom: 11px;
}
.cookie-modal__category label {
  font-weight: bold;
  color: var(--primary);
}
.cookie-modal__category input[type=checkbox] {
  accent-color: var(--accent);
  height: 19px; width: 19px;
}
.cookie-modal__category input[disabled] {
  accent-color: var(--accent-dark);
  cursor: not-allowed;
  opacity: 0.6;
}
.cookie-modal__footer {
  display: flex; gap: 15px; flex-wrap: wrap; justify-content: flex-end; margin-top: 10px;
}
.cookie-modal__footer button {
  margin-top: 0;
}

@media (max-width: 530px) {
  .cookie-modal__content { padding: 18px 4px 12px 10px; }
}

/* ============
  MISC HELPERS
  ============ */
hr {
  border: none;
  border-bottom: 1.5px solid var(--metal-2);
  margin: 34px 0;
}
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

/* ============
  ANIMATIONS
  ============ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideInLeft {
  from { transform: translateX(-100vw); }
  to { transform: translateX(0); }
}
@keyframes slideOutLeft {
  from { transform: translateX(0); }
  to { transform: translateX(-100vw); }
}
.fade-in-up {
  animation: fadeInUp 0.7s cubic-bezier(.68,-0.55,.27,1.55); 
}

/* ============
   FORMS (for newsletter/contact/future-proof)
   ============ */
input, textarea, select {
  background: var(--surface);
  border-radius: 7px;
  border: 1.5px solid var(--metal-2);
  padding: 11px 12px;
  color: var(--secondary);
  transition: border-color .17s, box-shadow .17s;
  font-size: 1em;  margin-bottom: 10px;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px var(--accent);
}
label { display: block; margin-bottom: 7px; }

/* ============
   SCROLLBARS
   ============ */
::-webkit-scrollbar {
  width: 10px;
  background: var(--surface);
}
::-webkit-scrollbar-thumb {
  background: var(--metal-2);
  border-radius: 7px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-dark);
}

/* ============
   ACCESSIBILITY
   ============ */
.sr-only { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ============
   OVERLAY/BODY-LOCK WHEN MODALS OPEN
   ============ */
body.menu-open, body.cookie-modal-open { overflow: hidden; }

/* ============
   SELECTION COLOR
   ============ */
::selection { background: var(--accent-dark); color: var(--secondary); }
