/* ===================================
   CSS RESET & NORMALIZATION
   =================================== */
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 {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  background: #F6F6F6;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: #22441F;
  line-height: 1.6;
  overflow-x: hidden;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, main, menu, nav, section {
  display: block;
}
ul, ol {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  background: none;
  transition: color 0.2s, background 0.2s;
}
button {
  font-family: inherit;
  font-size: inherit;
  background: none;
  border: none;
  cursor: pointer;
  outline: none;
}
img, svg {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  border: 0;
  display: block;
}
/* Remove tap highlight on mobile */
* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

/* ===================================
   VARIABLES (Fallback for fonts/colors)
   =================================== */
:root {
  --color-primary: #295626;
  --color-secondary: #F6F6F6;
  --color-accent: #579F4C;
  --color-accent-light: #79C26F;
  --color-text: #22441F;
  --color-bg-bright: #FFFFFF;
  --color-btn-hover: #22441F;
  --color-cta-fun: #FDC62E;

  --shadow-light: 0 4px 16px rgba(40,80,50,0.08);
  --shadow-card: 0 8px 32px rgba(87,159,76,0.15);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 10px;

  --font-display: 'Montserrat', Arial, sans-serif;
  --font-body: 'Roboto', Arial, Helvetica, sans-serif;
}

/* ===================================
   TYPOGRAPHY & HEADING HIERARCHY
   =================================== */
h1, .hero h1 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-primary);
  letter-spacing: -1px;
  margin-bottom: 20px;
  line-height: 1.13;
  text-shadow: 1px 2px 0 var(--color-accent-light);
}
h2 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-accent);
  font-size: 2rem;
  margin-bottom: 24px;
  line-height: 1.12;
  text-shadow: 0.5px 2px 0 var(--color-secondary);
}
h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 14px;
  letter-spacing: 0.5px;
}
h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--color-primary);
  font-weight: 600;
}
p, li, ul, table, td, th {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-text);
  margin-bottom: 10px;
}
strong {
  font-weight: bold;
  color: var(--color-primary);
}
.section > .container > .content-wrapper > ul,
section ul {
  margin: 16px 0 20px 0;
  padding-left: 28px;
  list-style-type: disc;
}
.section ul li,
section ul li {
  font-family: var(--font-body);
  font-size: 1rem;
  margin: 0 0 8px 0;
}
a {
  color: var(--color-accent);
  font-weight: 600;
  transition: color 0.18s, background 0.18s;
  cursor: pointer;
}
a:hover, a:focus {
  color: var(--color-cta-fun);
  background: var(--color-secondary);
}

/* Fun, Playful Font for Headlines */
.hero h1, h1 {
  font-family: 'Montserrat', var(--font-display), Arial, sans-serif;
  text-transform: none;
}

/* ===================================
   LAYOUT CONTAINERS (Flexbox only)
   =================================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 300px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}
.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;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Features/Values Grid (inner sections) */
.features-grid,
.values-list,
.benefit-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.features-grid > div,
.values-list > div,
.benefit-grid > div {
  background: var(--color-bg-bright);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-light);
  padding: 28px 22px 22px 22px;
  flex: 1 1 220px;
  min-width: 220px;
  max-width: 260px;
  transition: box-shadow 0.2s, transform 0.13s;
  position: relative;
  margin-bottom: 20px;
  animation: floatUp 0.9s cubic-bezier(.19,1,.22,1) 0.18s backwards;
}
.features-grid > div:hover,
.values-list > div:hover,
.benefit-grid > div:hover {
  box-shadow: 0 8px 24px rgba(121,194,111, 0.28);
  transform: translateY(-6px) scale(1.04) rotate(-2deg);
  z-index: 2;
}
.features-grid img, .values-list img {
  height: 45px;
  width: 45px;
  border-radius: 50%;
  margin-bottom: 10px;
  background: #E9FFE5;
  box-shadow: 0 4px 18px rgba(87,159,76,0.14);
  padding: 4px;
}

/* Service Cards */
.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.service-cards > div {
  background: var(--color-secondary);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: 28px 21px 19px 21px;
  flex: 1 1 220px;
  min-width: 230px;
  max-width: 270px;
  margin-bottom: 20px;
  transition: box-shadow 0.22s, transform 0.12s;
  position: relative;
  animation: floatUp 0.95s cubic-bezier(.14,1,.34,.94) 0.23s backwards;
}
.service-cards > div span {
  display: block;
  margin-top: 7px;
  color: var(--color-accent);
  font-weight: bold;
}
.service-cards > div:hover {
  box-shadow: 0 9px 28px rgba(41,86,38,0.22);
  transform: translateY(-7px) scale(1.045) rotate(1deg);
  z-index: 2;
  background: #fffbe6;
}

/* Quick Facts & Company Info Cards */
.quick-facts, .certifications, .company-history, .mission-statement, .values-brief {
  background: #e7f9ed;
  border-radius: var(--radius-sm);
  padding: 13px 19px;
  font-size: 1rem;
  font-family: var(--font-body);
  box-shadow: 0 2px 6px rgba(89,159,76,0.07);
  margin-bottom: 20px;
  color: var(--color-primary);
  font-weight: bold;
}

/* Team Profiles */
.team-profiles ul {
  list-style-type: disc;
  padding-left: 22px;
  margin-top: 12px;
}
.team-profiles li {
  margin-bottom: 7px;
}

/* Testimonials & Case Studies */
.testimonial-card {
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: 0 6px 26px rgba(41,86,38,0.09);
  margin-bottom: 24px;
  min-width: 300px;
  max-width: 600px;
  border-left: 9px solid var(--color-accent-light);
  color: #222;
  transition: box-shadow 0.22s, border-color 0.22s;
  font-family: var(--font-body);
  font-size: 1.1rem;
  animation: floatUp 0.9s cubic-bezier(.15,1,.22,1) 0.26s backwards;
}
.testimonial-card strong {
  color: var(--color-primary);
  font-size: 1rem;
  font-weight: bold;
}
.testimonial-card span {
  font-size: 1.1rem;
  color: #FDC62E;
}
.testimonial-card:hover {
  box-shadow: 0 9px 34px rgba(41,86,38,0.14);
  border-left: 9px solid var(--color-cta-fun);
}

/* Case Studies, Solutions Highlight */
.case-study-teaser, .case-study-summary, .solutions-highlight {
  background: #f8ffe6;
  border-radius: var(--radius-sm);
  box-shadow: 0 2px 12px rgba(249,222,44,0.08);
  padding: 22px 17px;
  margin-bottom: 20px;
  color: var(--color-accent);
  font-size: 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 14px;
  animation: popSlight 0.65s cubic-bezier(.54,.21,.25,1.11) 0.15s backwards;
}
.case-study-teaser a {
  color: var(--color-accent);
  font-weight: bold;
  margin-top: 6px;
  font-size: 1rem;
  transition: color 0.15s;
}
.case-study-teaser a:hover {
  color: var(--color-cta-fun);
  text-decoration: underline wavy 2px var(--color-cta-fun);
}

/* ===================================
   HEADER & NAVIGATION (responsive)
   =================================== */
header {
  background: #fff;
  box-shadow: 0 4px 17px rgba(41,86,38,0.09);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  position: sticky;
  top: 0;
  z-index: 30;
  min-height: 65px;
  width: 100vw;
}
header a img {
  height: 40px;
}
header nav {
  display: flex;
  flex-direction: row;
  gap: 26px;
  align-items: center;
}
header nav a {
  font-family: var(--font-display);
  color: var(--color-primary);
  font-size: 1.04rem;
  padding: 6px 2px;
  border-radius: 6px;
  font-weight: 600;
  transition: color 0.2s, background 0.2s;
}
header nav a:hover, header nav a:focus {
  color: var(--color-accent);
  background: #eafeef;
}
.cta-button {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  background: linear-gradient(90deg, var(--color-accent), var(--color-cta-fun));
  color: #295626;
  border-radius: var(--radius-lg);
  padding: 12px 34px;
  margin-left: 18px;
  box-shadow: 0 5px 32px rgba(250,208,38,0.19);
  border: none;
  outline: none;
  transition: background 0.22s, color 0.17s, transform 0.18s, box-shadow 0.12s;
  text-shadow: 1px 1px 0px #f8ffe6;
  position: relative;
  z-index: 1;
}
.cta-button:hover, .cta-button:focus {
  background: linear-gradient(90deg, var(--color-cta-fun), var(--color-accent));
  color: var(--color-btn-hover);
  box-shadow: 0 9px 28px rgba(249,222,44,0.19);
  transform: scale(1.06) rotate(-2deg);
}
button.cta-button {
  cursor: pointer;
}

/* Burger Menu Button - mobile only */
.mobile-menu-toggle {
  display: none;
  background: var(--color-accent);
  color: #fff;
  font-size: 2.1rem;
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 11px rgba(41,86,38,0.13);
  transition: background 0.17s, transform 0.19s;
  z-index: 70;
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:focus {
  background: var(--color-cta-fun);
  color: var(--color-primary);
  transform: scale(1.08);
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0; right: 0; left: 0; bottom: 0;
  background: rgba(254, 255, 245, .97);
  transform: translateX(100vw);
  transition: transform 0.42s cubic-bezier(.85,.12,.12,1.25);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding: 28px 18px 18px 32px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: var(--color-primary);
  color: #fff;
  font-size: 2.2rem;
  border: none;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  margin-right: 5px;
  box-shadow: 0 2px 11px rgba(41,86,38,0.15);
  cursor: pointer;
  transition: background 0.18s, color 0.19s, transform 0.14s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: var(--color-cta-fun);
  color: var(--color-primary);
  transform: scale(1.09);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  margin-top: 24px;
}
.mobile-nav a {
  font-size: 1.25rem;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-primary);
  background: var(--color-accent-light);
  border-radius: 12px;
  padding: 13px 20px;
  margin-bottom: 2px;
  transition: background 0.12s, color 0.16s, transform 0.16s;
  box-shadow: 0 4px 12px rgba(87,159,76,0.09);
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: var(--color-cta-fun);
  color: var(--color-btn-hover);
  transform: scale(1.05) rotate(-1deg);
}

/* ===================================
   HERO SECTION & PROMOS
   =================================== */
.hero {
  background: linear-gradient(120deg,#eaffed 75%, #fdfcb8 120%);
  padding: 70px 0 50px 0;
  width: 100vw;
  box-shadow: 0 4px 25px rgba(121,194,111,0.09);
  margin-bottom: 42px;
  border-radius: 0 0 48px 48px;
  position: relative;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero .content-wrapper {
  max-width: 700px;
  gap: 18px;
}
.hero p {
  font-size: 1.2rem;
  color: var(--color-text);
  margin-bottom: 10px;
}

/* ===================================
   BLOG, NEWS, CASES
   =================================== */
.blog-list, .cta-newsletter, .cta {
  margin-bottom: 56px;
}
.blog-post-teaser {
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-light);
  padding: 24px 17px 17px 17px;
  margin-bottom: 18px;
  transition: box-shadow 0.2s, transform 0.13s;
  position: relative;
  font-family: var(--font-body);
  animation: popSlight 0.63s cubic-bezier(.19,1,.22,1) 0.26s backwards;
}
.blog-post-teaser:hover {
  box-shadow: 0 8px 24px rgba(250,208,38,0.12);
  transform: scale(1.016) rotate(1.5deg);
  z-index: 2;
}
.blog-post-teaser span {
  background: var(--color-accent-light);
  color: var(--color-primary);
  border-radius: 9px;
  padding: 4px 12px;
  font-size: 0.92rem;
  margin-top: 10px;
  display: inline-block;
}

/* Newsletter, CTA
-----------------------------------*/
.cta, .cta-newsletter {
  background: linear-gradient(99deg, #eaffed 60%, #fffbe8 100%);
  border-radius: 32px;
  box-shadow: 0 4px 14px rgba(121,194,111,0.08);
  margin-bottom: 54px;
}
.cta .content-wrapper, .cta-newsletter .content-wrapper {
  align-items: center;
  text-align: center;
}
.cta h2, .cta-newsletter h2 {
  margin-bottom: 14px;
}

/* Thank you Page */
.thank-you {
  background: #f8ffe6;
  border-radius: 36px;
  box-shadow: 0 4px 14px rgba(121,194,111,0.08);
  margin-top: 34px;
  margin-bottom: 64px;
}

/* Contact Section */
.contact-section .contact-fields {
  background: #e7f9ed;
  border-radius: var(--radius-md);
  box-shadow: 0 2px 12px rgba(89,159,76,0.07);
  padding: 18px 25px;
  margin-bottom: 32px;
  font-size: 1rem;
  color: var(--color-primary);
  line-height: 1.72;
}
.contact-section a {
  color: var(--color-accent);
  text-decoration: underline dotted;
}

/* Privacy Policy, Terms, Cookie Policy */
.privacy-policy, .gdpr-section, .terms-section, .cookie-policy {
  margin-bottom: 49px;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-light);
  padding: 38px 20px 28px 20px;
}
.privacy-policy h1, .gdpr-section h1, .terms-section h1, .cookie-policy h1 {
  margin-bottom: 22px;
}

/* ===================================
   FOOTER
   =================================== */
footer {
  background: var(--color-primary);
  color: #fff;
  padding: 44px 0 20px 0;
  border-radius: 50px 50px 0 0;
  box-shadow: 0 -4px 18px rgba(70,88,72,0.067);
}
.footer-logo img {
  height: 38px;
  margin-bottom: 18px;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  gap: 22px;
  margin-bottom: 12px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.footer-nav a {
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  opacity: 0.9;
  font-size: 1.05rem;
  background: rgba(87,159,76,0.22);
  border-radius: 9px;
  padding: 7px 14px;
  transition: background 0.17s, color 0.13s;
}
.footer-nav a:hover,
.footer-nav a:focus {
  color: var(--color-cta-fun);
  background: rgba(255,255,200,0.12);
}
.footer-contact {
  text-align: center;
  font-size: 1rem;
  opacity: 0.82;
  margin-top: 9px;
}

/* ===================================
   COOKIE CONSENT BANNER (BASIC)
   =================================== */
.cookie-consent-banner {
  position: fixed;
  bottom: 0; left: 0; width: 100vw;
  background: #fffbe9;
  color: var(--color-primary);
  padding: 20px 16px 18px 16px;
  box-shadow: 0 -2px 16px rgba(250,208,38,0.19);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  font-size: 1rem;
  transition: transform 0.35s cubic-bezier(.45,1,.28,1), opacity 0.19s;
  animation: slideUp 0.55s 0.1s backwards;
}
.cookie-consent-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(100px);
}
.cookie-consent-banner .cookie-text {
  max-width: 520px;
}
.cookie-consent-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 12px;
}
.cookie-consent-banner button {
  background: var(--color-cta-fun);
  color: var(--color-primary);
  border: none;
  border-radius: 16px;
  padding: 10px 22px;
  font-weight: bold;
  margin: 0;
  font-family: var(--font-display);
  box-shadow: 0 2px 6px rgba(249,222,44,0.07);
  transition: background 0.14s, color 0.16s, transform 0.15s;
  cursor: pointer;
  font-size: 1rem;
  outline: none;
}
.cookie-consent-banner .cookie-actions button:hover, .cookie-consent-banner .cookie-actions button:focus {
  background: var(--color-accent);
  color: #fff;
  transform: scale(1.05);
}
.cookie-consent-banner .cookie-settings-btn {
  background: none;
  color: var(--color-accent);
  border: 2px dashed var(--color-accent);
  padding: 10px 18px;
  border-radius: 16px;
  font-weight: 600;
}
.cookie-consent-banner .cookie-settings-btn:hover,
.cookie-consent-banner .cookie-settings-btn:focus {
  background: #fffbe6;
  color: var(--color-primary);
  border: 2px solid var(--color-accent);
}

/* COOKIE MODAL POPUP */
.cookie-modal {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(59,100,40,0.17);
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.23s;
  opacity: 1;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal .cookie-dialog {
  background: #fff;
  border-radius: 28px;
  max-width: 480px;
  width: 95vw;
  box-shadow: 0 8px 38px rgba(121,194,111,0.19);
  padding: 30px 30px 18px 30px;
  text-align: left;
  position: relative;
  animation: popSlight 0.45s cubic-bezier(.44,.49,.39,1.33) backwards;
}
.cookie-modal h2 {
  color: var(--color-accent);
  font-size: 1.5rem;
  margin-bottom: 14px;
}
.cookie-modal .cookie-categories {
  margin-bottom: 18px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  font-family: var(--font-body);
}
.cookie-modal .cookie-category label {
  font-weight: 500;
}
.cookie-modal .cookie-switch {
  width: 46px;
  height: 25px;
  border-radius: 20px;
  background: var(--color-accent-light);
  position: relative;
  margin-left: 15px;
  cursor: pointer;
  transition: background 0.17s;
  box-shadow: 0 2px 6px rgba(87,159,76,0.13);
}
.cookie-modal .cookie-switch input[type="checkbox"] {
  display: none;
}
.cookie-modal .cookie-slider {
  position: absolute;
  left: 2px; top: 2px;
  width: 21px; height: 21px;
  background: #fff;
  border-radius: 50%;
  transition: left 0.16s, background 0.12s, box-shadow 0.12s;
  box-shadow: 0 2px 8px rgba(87,159,76,0.12);
}
.cookie-modal .cookie-switch input:checked + .cookie-slider {
  left: 23px;
  background: var(--color-accent);
  box-shadow: 0 2px 8px rgba(87,159,76,0.20);
}
.cookie-modal .cookie-category.disabled label,
.cookie-modal .cookie-category.disabled {
  color: #b7bcb8;
  opacity: 0.6;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 14px;
  margin-top: 17px;
  justify-content: flex-end;
}
.cookie-modal .cookie-modal-actions button {
  background: var(--color-cta-fun);
  color: var(--color-primary);
  border-radius: 12px;
  padding: 10px 18px;
  font-weight: 700;
  font-family: var(--font-display);
  font-size: 1rem;
  border: none;
  transition: background 0.15s, color 0.14s, transform 0.13s;
  cursor: pointer;
}
.cookie-modal .cookie-modal-actions button:hover {
  background: var(--color-accent);
  color: #fff;
  transform: scale(1.05);
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  top: 15px; right: 15px;
  background: #e7f9ed;
  color: var(--color-primary);
  font-size: 1.4rem;
  border: none;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.cookie-modal .cookie-modal-close:hover {
  background: var(--color-cta-fun);
  color: var(--color-accent);
}

/* ===================================
   ANIMATIONS
   =================================== */
@keyframes floatUp {
  from { opacity: 0; transform: translateY(30px) scale(0.94); }
  to { opacity: 1; transform: none; }
}
@keyframes popSlight {
  from { opacity: 0; transform: scale(0.95) translateY(18px); }
  to { opacity: 1; transform: none; }
}
@keyframes slideUp {
  from { transform: translateY(100px); opacity: 0; }
  to { transform: none; opacity: 1; }
}

/* Micro-interactions */
.button-bouncy:active,
.cta-button:active {
  transform: scale(0.98) rotate(-2deg);
  box-shadow: 0 2px 8px rgba(87,159,76,0.07);
}

/* ===================================
   RESPONSIVE DESIGN (MOBILE-FIRST)
   =================================== */
/* Breakpoints: 600px, 768px, 992px, 1200px */

@media (max-width: 1200px) {
  .container {
    max-width: 1000px;
  }
}
@media (max-width: 992px) {
  .container {
    max-width: 800px;
  }
  .features-grid > div,
  .values-list > div,
  .benefit-grid > div,
  .service-cards > div {
    min-width: 180px;
    max-width: 340px;
  }
}
@media (max-width: 900px) {
  .features-grid, .values-list, .benefit-grid, .service-cards {
    justify-content: center;
    gap: 16px;
  }
  footer {
    padding: 34px 0 12px 0;
    font-size: 0.97rem;
  }
}
@media (max-width: 768px) {
  .container {
    max-width: 99vw;
    padding: 0 10px;
  }
  header nav {
    display: none;
  }
  .cta-button {
    margin-left: 0;
    min-width: 0;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .features-grid, .values-list, .benefit-grid, .service-cards {
    flex-direction: column;
    gap: 13px;
  }
  .features-grid > div,
  .service-cards > div,
  .values-list > div,
  .benefit-grid > div {
    min-width: unset;
    max-width: unset;
  }
  .content-wrapper,
  .section .content-wrapper {
    gap: 18px;
    padding: 0 2px;
  }
  .hero {
    padding: 44px 0 30px 0;
  }
  .hero .container {
    padding: 0 7px;
  }
  .footer-nav {
    gap: 12px;
    flex-wrap: wrap;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  .testimonial-card {
    min-width: unset;
    max-width: unset;
  }
}
@media (max-width: 600px) {
  header {
    padding: 8px 7px;
    min-height: 52px;
  }
  .cta-button {
    padding: 10px 16px;
    font-size: 0.99rem;
  }
  h1, .hero h1 {
    font-size: 1.67rem;
  }
  h2 {
    font-size: 1.17rem;
  }
  .case-study-teaser, .case-study-summary, .solutions-highlight, .testimonial-card, .blog-post-teaser {
    padding: 15px 8px;
  }
  .privacy-policy, .gdpr-section, .terms-section, .cookie-policy {
    padding: 19px 4px 12px 4px;
  }
  .cookie-consent-banner {
    flex-direction: column;
    gap: 14px;
    font-size: 0.99rem;
    align-items: flex-start;
    padding: 13px 4px 11px 10px;
  }
  .cookie-consent-banner .cookie-actions {
    gap: 9px;
  }
}

/* ===================================
   PRINT FRIENDLY
   =================================== */
@media print {
  *, *:before, *:after { background: #fff !important; color: #000 !important; }
  header, footer, .cookie-consent-banner, .mobile-menu { display: none !important; }
  .cta-button { display: none !important; }
}