/* --------------------------------------------------
   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,
main, menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
  font-size: 100%;
  font: inherit;
  box-sizing: border-box;
}
html { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; }
body {
  line-height: 1.6;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  background-color: #F7F8FA;
  color: #253620; /* dark earth tone */
}
img {
  max-width: 100%;
  display: block;
  border: none;
}
ul, ol {
  margin-left: 1.2em;
  margin-bottom: 1.2em;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #16304B;
  margin-bottom: 20px;
  line-height: 1.17;
  font-weight: 700;
}
h1 { font-size: 2rem; }
h2 { font-size: 1.5rem; }
h3 { font-size: 1.2rem; font-weight: 600; }
h4, h5, h6 { font-size: 1rem; font-weight: 600; }
p, li { font-size: 1rem; color: #2A3A22; letter-spacing: 0.01em; }
a {
  color: #389EA7;
  text-decoration: underline;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #256365;
  text-decoration: none;
}
strong, b { font-weight: 700; color: #16304B; }

/* --------------------------------------------------
   COLOR PALETTE (nature_organic feelful)
-------------------------------------------------- */
:root {
  --primary: #16304B;
  --secondary: #389EA7;
  --accent: #F7F8FA;
  --earth1: #B7A97C; /* sandy/beige earth */
  --earth2: #A7A69E;
  --green1: #437A3E; /* organic accent green */
  --green2: #CEE4D0;
  --brown: #7B6042;
  --stone: #ECE8DE;
  --border: #E2E6DA;
  --shadow: 0 3px 16px 0 rgba(67,122,62,0.09);
  --radius: 20px;
}

/* --------------------------------------------------
   LAYOUT CONTAINER
-------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1176px;
  margin: 0 auto;
  padding: 0 16px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--accent);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
@media (max-width: 768px) {
  .section {
    padding: 32px 10px;
    margin-bottom: 34px;
  }
}

/* --------------------------------------------------
   HEADER & MAIN NAVIGATION
-------------------------------------------------- */
header {
  background: #F7F8FA;
  box-shadow: 0 2px 10px 0 rgba(34,50,25,0.07);
  position: sticky;
  top: 0;
  z-index: 30;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  gap: 30px;
}
.logo img {
  height: 46px;
  border-radius: 6px;
}
.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
.main-nav a {
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  background: none;
  border-radius: 12px;
  padding: 8px 16px;
  transition: background 0.18s, color 0.18s;
  text-decoration: none;
}
.main-nav a:hover,
.main-nav a:focus {
  background: var(--green2);
  color: var(--green1);
}
.cta-btn {
  display: inline-block;
  background: var(--green1);
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border-radius: 50px;
  padding: 12px 28px;
  margin-left: 20px;
  letter-spacing: 0.01em;
  border: none;
  cursor: pointer;
  transition: background 0.15s, box-shadow 0.2s, color 0.15s;
  box-shadow: 0 2px 7px 0 rgba(67,122,62,0.10);
  text-decoration: none;
  outline: none;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--secondary);
  color: #fff;
  box-shadow: 0 6px 30px 0 rgba(56,158,167,0.18);
}
.cta-link {
  display: inline-block;
  color: var(--green1);
  font-weight: 600;
  text-decoration: underline;
  transition: color 0.18s;
  font-size: 1rem;
  padding: 4px 0;
  border-radius: 8px;
}
.cta-link:hover, .cta-link:focus {
  color: var(--primary);
  background: var(--earth2);
  text-decoration: none;
}

/* Hide nav and show burger on mobile */
.mobile-menu-toggle {
  display: none;
  background: var(--green1);
  color: #fff;
  border: none;
  font-size: 2rem;
  border-radius: 50%;
  padding: 0 16px;
  height: 44px;
  width: 44px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-left: 10px;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  outline: none;
  z-index: 105;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 2px 12px 0 rgba(22,48,75,0.18);
}
@media (max-width: 1024px) {
  header .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

/* --------------------------------------------------
   MOBILE MENU OVERLAY
-------------------------------------------------- */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(244,246,241,0.95);
  box-shadow: 0 2px 28px 0 rgba(22,48,75,0.06);
  z-index: 120;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translateX(-100vw);
  transition: transform 0.33s cubic-bezier(.7,.07,.39,.99);
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  margin: 26px 18px 8px 18px;
  padding: 0 10px;
  font-size: 2rem;
  color: var(--primary);
  border: none;
  background: none;
  cursor: pointer;
  border-radius: 50%;
  height: 46px;
  width: 46px;
  align-self: flex-end;
  outline: none;
  z-index: 150;
  transition: background 0.18s, color 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--green2);
  color: var(--green1);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  padding: 0 32px;
  margin-top: 30px;
}
.mobile-nav a {
  font-size: 1.1rem;
  color: var(--green1);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  background: none;
  padding: 13px 12px;
  border-radius: 16px;
  transition: background 0.18s, color 0.18s;
  min-width: 156px;
}
.mobile-nav a:active,
.mobile-nav a:focus,
.mobile-nav a:hover {
  background: var(--earth2);
  color: var(--primary);
}

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

/* --------------------------------------------------
   HERO SECTION (Index Page)
-------------------------------------------------- */
.hero {
  display: flex;
  align-items: center;
  min-height: 340px;
  background: linear-gradient(98deg, #CEE4D0 0%, #F7F8FA 100%);
  margin-bottom: 60px;
  border-bottom-left-radius: 62px 40px;
  border-bottom-right-radius: 62px 50px;
  box-shadow: var(--shadow);
}
.hero .container {
  display: flex;
  align-items: center;
  min-height: 320px;
  padding-top: 36px;
  padding-bottom: 36px;
}
.hero h1 {
  font-size: 2.1rem;
  color: var(--green1);
  margin-bottom: 16px;
}
.hero .content-wrapper {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.hero p {
  font-size: 1.15rem;
  color: #2A3A22;
}
@media (max-width: 768px) {
  .hero {
    min-height: unset;
    padding-bottom: 0;
    border-bottom-left-radius: 34px 28px;
    border-bottom-right-radius: 34px 24px;
  }
  .hero .container {
    min-height: unset;
    padding-top: 20px;
    padding-bottom: 16px;
  }
  .hero h1 { font-size: 1.3rem; }
  .hero p { font-size: 1rem; }
}

/* --------------------------------------------------
   FLEX CARD/PANEL PATTERNS
-------------------------------------------------- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  margin-bottom: 20px;
  position: relative;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 26px 22px;
  flex: 1 1 240px;
  min-width: 260px;
  max-width: 330px;
  display: flex;
  flex-direction: column;
  gap: 17px;
  border: 1px solid var(--border);
  transition: box-shadow 0.18s, border 0.18s, transform 0.18s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 7px 36px 0 rgba(67,122,62,0.14);
  border-color: var(--green2);
  transform: translateY(-3px) scale(1.018);
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
@media (max-width: 890px) {
  .card-container, .content-grid {
    flex-direction: column;
    gap: 18px;
  }
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 22px;
    align-items: flex-start;
  }
}

.testimonial-card {
  background: #FFFFFF;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 2px 18px 0 rgba(56,158,167,0.07);
  border: 1px solid #CEE4D0;
  max-width: 440px;
  margin-bottom: 20px;
  transition: box-shadow 0.18s;
}
.testimonial-card p {
  color: #253620;
  font-size: 1rem;
  margin-bottom: 8px;
}
.testimonial-details strong {
  color: var(--green1);
  font-weight: 700;
  font-size: 14px;
}
.testimonial-card:hover,
.testimonial-card:focus-within {
  box-shadow: 0 4px 26px 0 rgba(56,158,167,0.13);
  border-color: var(--secondary);
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #FFF;
  border-radius: 16px;
  box-shadow: 0 2px 12px 0 rgba(67,122,62,0.06);
  border: 1px solid #E2E6DA;
  padding: 22px 19px 22px 19px;
  min-width: 202px;
  margin-bottom: 20px;
  flex: 1 1 0;
  transition: box-shadow 0.15s, border 0.18s;
}
.feature-item:hover, .feature-item:focus-within {
  box-shadow: 0 6px 24px 0 rgba(67,122,62,0.12);
  border-color: var(--green2);
}
.feature-item img {
  width: 42px; height: 42px;
  border-radius: 10px;
}
.feature-item h3 {
  color: var(--green1);
  font-size: 1.1rem;
  margin-bottom: 0;
}

/* --------------------------------------------------
   PRODUCT- AND VALUE-GRID PATTERNS
-------------------------------------------------- */
.feature-grid, .value-grid, .product-range, .product-categories-grid, .team-list, .reference-list, .testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
  margin-bottom: 16px;
}
.product-range > div, .product-categories-grid > div, .value-item, .team-member, .reference-list > div {
  background: #FFF;
  border-radius: 14px;
  box-shadow: 0 2px 14px 0 rgba(122,167,98,0.06);
  border: 1px solid var(--border);
  padding: 18px 18px 16px 18px;
  flex: 1 1 260px;
  min-width: 200px;
  transition: box-shadow 0.18s, border 0.18s;
}
.value-item img {
  width: 38px;
  height: 38px;
  margin-bottom: 6px;
}
.value-item h3 {
  color: var(--primary);
  margin-bottom: 4px;
}
@media (max-width: 950px) {
  .feature-grid, .value-grid, .product-range, .product-categories-grid, .team-list, .reference-list, .testimonial-list {
    flex-direction: column;
    gap: 18px;
  }
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.service-item {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: 13px;
  box-shadow: 0 2px 12px 0 rgba(56,158,167,0.08);
  padding: 22px 17px;
  flex: 1 1 220px;
  min-width: 195px;
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 20px;
  transition: box-shadow 0.15s, border 0.18s;
}
.service-item:hover, .service-item:focus-within {
  box-shadow: 0 7px 24px 0 rgba(67,122,62,0.13);
  border-color: var(--green2);
}
.service-item img {
  width: 36px; height: 36px; border-radius: 8px;
}

.team-list {
  gap: 17px;
}
.team-member {
  border-left: 6px solid var(--green2);
  background: var(--accent);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.faq-item{
  background: #FFF;
  border-radius: 15px;
  border: 1px solid var(--green2);
  box-shadow: 0 2px 7px 0 rgba(67,122,62,0.06);
  padding: 22px 20px 20px 20px;
  margin-bottom: 5px;
}
.faq-item h3 { margin-bottom: 10px; color: var(--primary); font-size: 1.05rem; }
.faq-item p { color: #2A3A22; }

.cert-list ul, .benefits-list ul, .technical-specs ul, .key-features ul, .services-list {
  list-style: disc;
  color: var(--green1);
  margin-left: 20px;
  margin-bottom: 16px;
}

.services-list li, .benefits-list li, .key-features li, .cert-list li {
  margin-bottom: 8px;
  font-size: 1rem;
}

/* Map placeholder */
.map-placeholder {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 0 5px 0;
}
.map-placeholder img {
  width: 32px;
  height: 32px;
}

/* --------------------------------------------------
   CTA- & FOOTER SECTIONS
-------------------------------------------------- */
.cta-section {
  background: linear-gradient(98deg, #CEE4D0 0%, #F7F8FA 100%);
  border-radius: 32px 42px 30px 18px / 36px 30px 34px 38px;
  padding: 40px 22px;
  box-shadow: 0 3px 22px 0 rgba(67,122,62,0.10);
  margin-bottom: 58px;
}
.cta-section h2 {
  color: var(--green1);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}
.cta-section p {
  margin-bottom: 18px;
  color: #2A3A22;
  font-size: 1.08rem;
}

footer {
  background: #ECE8DE;
  padding: 32px 0 10px 0;
  border-top-left-radius: 40px 22px;
  border-top-right-radius: 20px 20px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  gap: 20px;
  margin-bottom: 18px;
  flex: 1 1 0;
}
.footer-nav a {
  color: var(--primary);
  font-weight: 500;
  font-size: 1rem;
  text-decoration: underline;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--green1);
  text-decoration: none;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 13px;
  align-items: flex-start;
  flex: 1 1 260px;
  font-size: 1rem;
}
.footer-contact img {
  width: 48px;
  margin-bottom: 5px;
}
footer address { font-style: normal; color: #2A3A22; letter-spacing: 0.01em; }
footer address a { color: var(--green1); text-decoration: none; }
footer address a:hover, 
footer address a:focus { text-decoration: underline; color: var(--primary); }

@media (max-width: 850px) {
  footer .container {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .footer-contact {
    margin-top: 10px;
  }
}

/* --------------------------------------------------
   TESTIMONIAL SLIDERS AND CLIENT LOGOS
-------------------------------------------------- */
.testimonial-slider, .testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 18px;
}
.client-logos {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-top: 16px;
}
.client-logos img {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: var(--accent);
  box-shadow: 0 2px 10px 0 rgba(67,122,62,0.04);
  padding: 4px;
}

/* --------------------------------------------------
   UTILITY CLASSES & GENERAL EFFECTS
-------------------------------------------------- */
.text-section, .thank-you-message, .support-section .content-wrapper {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 2px 10px 0 rgba(67,122,62,0.07);
  border: 1px solid var(--border);
  padding: 22px 18px 18px 18px;
}
.text-section ul {
  margin-top: 8px;
  margin-bottom: 0;
}
ol {
  margin-left: 1.4em;
  margin-bottom: 1em;
}

.privacy-policy, .terms-text, .cookie-policy, .gdpr-info {
  background: #fff;
  padding: 24px 18px 18px 18px;
  border-radius: 18px;
  box-shadow: 0 2px 9px 0 rgba(67,122,62,0.07);
  border: 1px solid var(--border);
  font-size: 1rem;
}

.next-steps ul {
  margin-left: 18px;
  margin-bottom: 10px;
}

/* --------------------------------------------------
   SPACING & FLEX RESPONSIVE PATTERNS
-------------------------------------------------- */
@media (max-width: 850px) {
  .card-container, .content-grid,
  .feature-grid, .value-grid, .product-range,
  .product-categories-grid, .team-list, .reference-list,
  .testimonial-slider, .testimonial-list {
    flex-direction: column;
    gap: 16px;
  }
}
/* Make conditional section titles smaller on tiny screens */
@media (max-width: 480px) {
  h1 { font-size: 1.1rem; }
  h2 { font-size: 1rem; }
  h3 { font-size: 0.98rem; }
}

/* --------------------------------------------------
   BUTTONS / MICRO-INTERACTIONS
-------------------------------------------------- */
button, .cta-btn {
  transition: background 0.18s, color 0.12s, box-shadow 0.18s, transform 0.19s;
  outline: none;
  cursor: pointer;
}
button:focus {
  outline: 3px solid var(--secondary);
  outline-offset: 2px;
}

/* --------------------------------------------------
   COOKIE CONSENT BANNER
-------------------------------------------------- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #edf6ed;
  color: #253620;
  box-shadow: 0 -4px 32px 0 rgba(67,122,62,0.12);
  padding: 22px 16px 22px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  z-index: 9999;
  border-top-left-radius: 44px 22px;
  border-top-right-radius: 22px 18px;
  transition: transform 0.24s cubic-bezier(.6,.3,.4,1) 0s, opacity 0.2s;
}
.cookie-banner.hide {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner .cookie-message {
  font-size: 0.99rem;
  line-height: 1.5;
  max-width: 550px;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.cookie-btn, .cookie-setting-btn {
  appearance: none;
  border: none;
  border-radius: 36px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 10px 23px;
  font-weight: 600;
  background: var(--green1);
  color: #FFF;
  margin-left: 0;
  margin-right: 0;
  box-shadow: 0 1px 6px 0 rgba(67,122,62,0.09);
  cursor: pointer;
  transition: background 0.15s, color 0.15s, box-shadow 0.15s, border 0.12s;
}
.cookie-btn.reject {
  background: #fff;
  color: var(--green1);
  border: 1.5px solid var(--green1);
}
.cookie-btn.reject:hover { background: var(--earth2); }
.cookie-btn.accept:hover, .cookie-setting-btn:hover {
  background: var(--secondary);
}
.cookie-setting-btn {
  background: var(--earth1);
  color: var(--primary);
}
.cookie-setting-btn:hover {
  background: var(--secondary);
  color: #fff;
}
@media (max-width: 500px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 20px 8px 20px 14px;
  }
  .cookie-banner .cookie-actions {
    gap: 10px;
  }
}

/* COOKIE SETTINGS MODAL POPUP */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  z-index: 12001;
  background: rgba(38,67,34,0.18);
  justify-content: center;
  align-items: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.23s;
}
.cookie-modal-overlay.open {
  display: flex;
  pointer-events: all;
  opacity: 1;
}
.cookie-modal {
  background: #fff;
  border-radius: 34px;
  box-shadow: 0 12px 56px 0 rgba(67,122,62,0.19);
  max-width: 380px;
  width: 94vw;
  padding: 36px 24px 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 19px;
  position: relative;
}
.cookie-modal h3 {
  font-size: 1.19rem;
  margin-bottom: 8px;
  color: var(--green1);
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  top: 18px; right: 18px;
  background: none;
  border: none;
  font-size: 1.4rem;
  color: var(--primary);
  cursor: pointer;
  border-radius: 50%;
  padding: 0 3px;
  height: 33px; width: 33px;
  transition: background 0.15s;
}
.cookie-modal .cookie-modal-close:hover,
.cookie-modal .cookie-modal-close:focus {
  background: var(--green2);
  color: var(--green1);
}
.cookie-modal .cookie-category-list {
  display: flex;
  flex-direction: column;
  gap: 17px;
}
.cookie-modal .cookie-toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.cookie-modal label {
  font-size: 1rem;
  color: var(--primary);
  font-weight: 500;
  margin-bottom: 0;
}
.cookie-modal input[type="checkbox"] {
  accent-color: var(--green1);
  width: 20px; height: 20px;
}
.cookie-modal .cookie-toggle-row.essential label {
  color: #A7A69E;
  font-weight: 600;
}
.cookie-modal .cookie-toggle-row.essential input[type="checkbox"] {
  pointer-events: none;
}
.cookie-modal .cookie-modal-actions {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}
.cookie-modal .cookie-btn,
.cookie-modal .cookie-setting-btn {
  padding: 9px 18px;
  font-size: 0.97rem;
}

/* --------------------------------------------------
   MISC: CARD SPACING, TITLE, ANIMATION
-------------------------------------------------- */
.card, .testimonial-card, .feature-item, .team-member, .value-item, .service-item, .faq-item {
  transition: box-shadow 0.15s, border 0.18s, transform 0.14s;
}

/* Wire up subtle micro-animations for interactivity */
.card:hover, .feature-item:hover, .service-item:hover, .value-item:hover {
  transform: translateY(-2px) scale(1.012);
  box-shadow: 0 9px 38px 0 rgba(56,158,167,0.15);
}

@media (max-width: 430px) {
  .card,
  .testimonial-card,
  .feature-item, .service-item, .value-item, .team-member {
    padding: 12px 8px;
  }
}

/* --------------------------------------------------
   MEDIA QUERIES FOR RESPONSIVENESS
-------------------------------------------------- */
@media (max-width: 1024px) {
  .container { max-width: 96vw; }
  .main-nav { display: none; }
  .cta-btn { margin-left: 0; }
  header .container { gap: 15px; }
}
@media (max-width: 700px) {
  .hero {
    min-height: initial;
    box-shadow: none;
  }
  .cta-section {
    padding: 24px 6px;
  }
  .feature-grid, .value-grid, .product-range, .product-categories-grid, .team-list, .reference-list, .testimonial-list { gap: 12px; }
}
@media (max-width: 500px) {
  .card,
  .testimonial-card,
  .feature-item, .service-item, .value-item, .team-member, .text-section, .thank-you-message {
    min-width: unset;
    font-size: 0.97rem;
    padding-left: 7px; padding-right: 7px;
  }
}

/* --------------------------------------------------
   SCROLLBEHAVIOR & SELECTION
-------------------------------------------------- */
html { scroll-behavior: smooth; }
::selection { background: #CEE4D0; color: var(--primary); }

/* Hide elements visually only */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  border: 0;
}
