/* =============================================================
   CSS 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, 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 { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; }
body {
  line-height: 1.5;
  background-color: #F4F6F3;
  color: #25372C;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  letter-spacing: 0;
}
img, picture, video, canvas, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; transition: color 0.2s; }
ul, ol { list-style: none; }
button, input, textarea, select { font: inherit; }
button { background: none; border: none; cursor: pointer; }
:focus { outline: 2px solid #82C0E9; outline-offset: 2px; }
code, pre { font-family: 'Fira Mono', monospace; }

/* ============ NATURE ORGANIC COLOR PALETTE ============ */
:root {
  --primary: #184A7C;
  --primary-90: #285a88;
  --primary-50: #5F8FB4;
  --secondary: #82C0E9;
  --accent: #68B06C;
  --accent-dark: #3e704a;
  --organic-green: #5ea57c;
  --organic-brown: #8a6c57;
  --organic-beige: #EFE9E0;
  --organic-sand: #e5d9cc;
  --organic-sage: #d2e3ce;
  --organic-shadow: rgba(66, 63, 52, 0.10);
  --white: #FFF;
  --black: #182311;
  --text-dark: #25372C;
  --text-light: #486556;
  --danger: #C2403A;
}

/* =============== TYPOGRAPHY =============== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}
h1 { font-size: 2.5rem; line-height: 1.13; }
h2 { font-size: 1.75rem; line-height: 1.2; }
h3 { font-size: 1.25rem; line-height: 1.25; }
h4 { font-size: 1rem; line-height: 1.3; }

@media (max-width: 600px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.3rem; }
  h3 { font-size: 1.1rem; }
}

p, li, ul, ol, a, table, th, td, label {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: var(--text-dark);
}
p {
  font-size: 1rem;
  margin-bottom: 16px;
  color: var(--text-dark);
}
.strong, strong {
  font-weight: 700;
}
.hero-subheading {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 24px;
  font-family: 'Roboto', Arial, sans-serif;
}

/* =============== LAYOUT =============== */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  width: 100%;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--organic-beige);
  border-radius: 24px;
  box-shadow: 0 4px 24px var(--organic-shadow);
}

/* =============== HEADER & NAV =============== */
header {
  background: var(--white);
  box-shadow: 0 2px 8px var(--organic-shadow);
  position: sticky; top: 0; z-index: 100;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px; padding-bottom: 16px;
  gap: 20px;
  flex-wrap: wrap;
}
header img {
  height: 46px;
  width: auto;
  border-radius: 8px 24px 16px 32px;
  background: linear-gradient(90deg, #f4f6f3 60%, #d2e3ce 100%);
  padding: 4px 12px 4px 0px;
}

nav {
  display: flex;
  align-items: center;
  gap: 22px;
}
nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: var(--primary);
  padding: 6px 12px;
  border-radius: 12px;
  transition: background 0.15s, color 0.15s;
}
nav a:hover,
nav a:focus {
  background: var(--organic-sage);
  color: var(--accent-dark);
}

.btn-primary {
  padding: 13px 28px;
  background: var(--accent);
  color: var(--white);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.12rem;
  border-radius: 99px;
  box-shadow: 0px 1px 12px rgba(46, 124, 91, 0.10);
  transition: background 0.18s, transform 0.16s, box-shadow 0.15s;
  border: none;
  outline: none;
  margin-left: 22px;
  letter-spacing: .07em;
  display: inline-block;
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--organic-green);
  color: var(--white);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 2px 24px 0 rgba(53, 106, 70, 0.16);
}


/* =============== MOBILE MENU =============== */
.mobile-menu-toggle {
  display: none;
  background: var(--primary);
  color: var(--white);
  font-size: 2rem;
  border-radius: 12px;
  padding: 4px 14px;
  margin-left: 6px;
  transition: background 0.18s, color 0.15s;
  z-index: 202;
}
.mobile-menu-toggle:focus {
  background: var(--primary-50);
}
.mobile-menu {
  position: fixed;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(24, 74, 124, 0.97);
  box-shadow: 0 16px 48px rgba(66,63,52,0.19);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  z-index: 9999;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(.64,.04,.35,1.35);
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2rem;
  margin: 26px 24px 12px 16px;
  align-self: flex-end;
  color: var(--secondary);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  color: #cfe892;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  padding: 12px 32px;
}
.mobile-nav a {
  color: var(--white);
  font-size: 1.15rem;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 13px 0;
  border-radius: 18px;
  transition: background 0.2s, color 0.14s;
  width: 100%;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--organic-green);
  color: var(--organic-brown);
}

/* Hide desktop nav and show burger on small screens */
@media (max-width: 930px) {
  header nav, .btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
}
@media (min-width: 931px) {
  .mobile-menu { display: none !important; }
  .mobile-menu-toggle { display: none !important; }
}

/* =============== HERO SECTION =============== */
.hero {
  background: linear-gradient(160deg, var(--organic-sage) 70%, var(--white) 100%);
  border-radius: 0 0 54px 54px;
  padding-top: 36px;
  padding-bottom: 36px;
  margin-bottom: 50px;
}
.hero h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--primary);
  font-weight: 800;
  margin-bottom: 18px;
}
.hero h1 span {
  color: var(--accent);
}
.hero .btn-primary {
  margin-top: 16px;
}
/* ORGANIC EDGE (optional, for illustrative purpose) */
.hero {
  position: relative;
}
.hero:after {
  content: '';
  position: absolute; left: 0; bottom: -28px;
  width: 100%; height: 56px;
  background: radial-gradient(ellipse 55% 30% at 50% 100%, var(--organic-sand) 24%, transparent 82%);
  z-index: -1;
}

/* =============== FLEX LAYOUTS =============== */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
  margin-bottom: 16px;
}
.feature {
  background: var(--white);
  border-radius: 20px 42px 20px 32px;
  box-shadow: 0 2px 12px var(--organic-shadow);
  flex: 1 1 250px;
  min-width: 223px;
  max-width: 300px;
  padding: 32px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, transform 0.17s;
  border-left: 7px solid var(--organic-green);
}
.feature img {
  width: 38px;
  height: 38px;
  margin-bottom: 6px;
}
.feature h3 {
  margin-bottom: 4px;
  color: var(--accent-dark);
}
.feature p {
  color: var(--text-light);
}
.feature:hover, .feature:focus-within {
  box-shadow: 0 8px 32px 0 rgba(91,136,108,0.14);
  transform: translateY(-2px) scale(1.02);
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  position: relative;
  background: var(--organic-beige);
  border-radius: 18px;
  box-shadow: 0 2px 16px var(--organic-shadow);
  margin-bottom: 20px;
  padding: 32px 22px;
  flex: 1 1 300px;
  transition: box-shadow 0.17s, transform 0.17s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 10px 36px rgba(107,106,87,0.12);
  transform: translateY(-2px) scale(1.01);
}

.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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 22px;
  }
  .feature-grid {
    flex-direction: column;
    gap: 14px;
    align-items: stretch;
  }
}

/* =============== SERVICES + CARDS =============== */
.services-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 36px;
  margin-top: 18px;
}
.service-card {
  background: var(--organic-sand);
  border-radius: 24px 40px 16px 32px;
  flex: 1 1 250px;
  min-width: 220px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 11px;
  align-items: flex-start;
  padding: 32px 24px 26px 24px;
  margin-bottom: 20px;
  box-shadow: 0 2px 18px var(--organic-shadow);
  border-left: 7px solid var(--organic-brown);
  transition: box-shadow 0.18s, transform 0.17s;
}
.service-card:hover, .service-card:focus-within {
  box-shadow: 0 8px 32px 0 rgba(129,113,85,0.12);
  transform: translateY(-2px) scale(1.01);
}
.service-card h3 {
  font-size: 1.05rem;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 4px;
  color: var(--primary-90);
  letter-spacing: 0.01em;
}
.service-card p {
  font-size: 0.98rem;
}
.service-price {
  margin-top: 8px;
  font-size: 1.12rem;
  font-weight: 600;
  color: var(--accent-dark);
  background: var(--organic-green);
  border-radius: 12px;
  padding: 5px 16px;
  align-self: flex-end;
  transition: background 0.2s;
}
.service-card:hover .service-price {
  background: var(--primary-50);
  color: var(--white);
}

/* =============== TESTIMONIALS =============== */
.testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 24px;
}
.testimonial-card {
  background: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px 32px 20px 32px;
  border-radius: 24px 40px 32px 24px;
  box-shadow: 0 4px 20px 0 rgba(48, 78, 57, 0.07);
  min-width: 230px;
  max-width: 360px;
  flex: 1 1 220px;
  margin-bottom: 20px;
  border-left: 5px solid var(--accent);
  color: var(--text-dark);
  transition: box-shadow 0.18s, transform 0.17s;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 12px 32px rgba(68,141,83,0.13);
  transform: translateY(-2px) scale(1.01);
}
.testimonial-stars {
  font-size: 1.45rem;
  letter-spacing: 1px;
  color: var(--organic-green);
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: -2px;
}
.testimonial-card p {
  color: var(--text-dark);
  font-size: 1.03rem;
  text-align: center;
}
.testimonial-author {
  color: var(--primary);
  font-weight: 600;
  font-size: 1rem;
}

/* =============== CTA SECTION =============== */
.cta-section, .cta {
  background: var(--organic-sage);
  border-radius: 32px;
  padding: 32px 20px;
  text-align: center;
  margin-bottom: 40px;
  box-shadow: 0 2px 18px rgba(53,106,70,0.07);
}
.cta-section h2, .cta h2 {
  color: var(--accent-dark);
  margin-bottom: 14px;
}
.cta-section p, .cta p {
  color: var(--text-light);
  margin-bottom: 20px;
  font-size: 1.08rem;
}

/* =============== FOOTER =============== */
footer {
  background: var(--organic-brown);
  padding: 44px 0 12px 0;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 38px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 14px;
}
.footer-nav a {
  color: var(--organic-sage);
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: .02em;
  border-radius: 8px;
  transition: background 0.16s, color 0.15s;
  padding: 7px 11px;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: var(--organic-sage);
  color: var(--organic-brown);
}
footer .text-section {
  color: var(--organic-beige);
  font-size: .98rem;
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: right;
}
footer .text-section div {
  margin-bottom: 0;
}

@media (max-width: 800px) {
  footer .container {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
    text-align: left;
  }
  footer .text-section { text-align: left; }
}

/* =============== FAQ ACCORDION =============== */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 20px;
}
.faq-category {
  background: var(--organic-sand);
  border-radius: 18px 32px 18px 24px;
  box-shadow: 0 2px 10px rgba(55,77,52,0.07);
  padding: 20px 20px 10px 24px;
  margin-bottom: 14px;
}
.faq-category h3 {
  color: var(--accent-dark);
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 8px;
}
.faq-item {
  margin-bottom: 9px;
  padding-left: 10px;
}
.faq-item strong {
  color: var(--primary-90);
  margin-bottom: 2px;
  display: block;
}
.faq-item p {
  color: var(--text-dark);
  font-size: .98rem;
  margin-bottom: 8px;
}

/* ============== PRODUCT LIST ============== */
.product-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 28px 0 32px 0;
}
.product-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--organic-sand);
  border-radius: 17px;
  padding: 18px 24px;
  margin-bottom: 8px;
  box-shadow: 0 1px 6px rgba(66,63,52,0.06);
}
.product-specs {
  color: var(--primary-90);
  font-size: 1rem;
}
.product-price {
  background: var(--organic-green);
  color: var(--white);
  padding: 6px 20px;
  border-radius: 11px;
  font-size: 1.1rem;
  font-weight: 700;
}
.product-list li:hover, .product-list li:focus-within {
  box-shadow: 0 4px 20px rgba(40,80,62,0.10);
}

/* ============== PRICING TABLE ============== */
.pricing-table {
  width: 100%;
  border-spacing: 0;
  margin: 24px 0 14px 0;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 1px 8px var(--organic-shadow);
}
.pricing-table tr th, .pricing-table tr td {
  padding: 13px 16px;
  text-align: left;
  border-bottom: 1px solid var(--organic-sage);
  font-size: 1rem;
}
.pricing-table tr th {
  background: var(--organic-sand);
  color: var(--accent-dark);
  font-size: 1.07rem;
  font-family: 'Montserrat', Arial, sans-serif;
}
.pricing-table tr:last-child td {
  border-bottom: none;
}

/* =============== LISTS & INFOGRAPHICS =============== */
.text-section ul, .text-section ol {
  margin-left: 18px;
  margin-bottom: 18px;
}
.text-section ul li {
  position: relative;
  margin-bottom: 8px;
  padding-left: 22px;
  color: var(--text-dark);
}
.text-section ul li:before {
  content: "";
  display: inline-block;
  width: 10px; height: 10px;
  background: var(--organic-green);
  border-radius: 50%;
  position: absolute; left: 0; top: 7px;
}
.text-section ol li {
  margin-bottom: 8px;
}
.infographic-list {
  margin-left: 0px;
  margin-top: 20px;
}
.infographic-list li {
  background: var(--organic-sage);
  color: var(--primary-90);
  font-weight: 600;
  border-radius: 14px;
  padding: 13px 16px;
  margin-bottom: 4px;
}

/* =============== CONTACT INFO =============== */
.contact-information {
  background: var(--organic-sand);
  border-radius: 20px;
  box-shadow: 0 1px 8px var(--organic-shadow);
  padding: 32px 28px;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-information ul li {
  margin-bottom: 6px;
  color: var(--text-dark);
  font-size: 1rem;
}

/* =============== RESPONSIVE LAYOUTS =============== */
@media (max-width: 900px) {
  .services-cards, .testimonials, .feature-grid, .card-container, .content-grid {
    flex-direction: column;
    gap: 16px;
  }
  .product-list li {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
    padding: 18px 10px;
  }
  .service-card, .feature {
    min-width: 0;
    max-width: 100%;
  }
}
@media (max-width: 750px) {
  .container {
    padding: 0 8px;
  }
}
@media (max-width: 600px) {
  .container {
    padding: 0 3vw;
  }
  .section, .cta-section, .cta {
    margin-bottom: 34px;
    padding: 22px 6px;
    border-radius: 17px;
  }
  .service-card, .feature, .testimonial-card, .card {
    padding: 22px 9px 19px 9px;
    border-radius: 14px 22px 14px 16px;
  }
  .contact-information {
    padding: 20px 7px;
    border-radius: 15px;
  }
}

/* =============== COOKIE CONSENT BANNER =============== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 99999;
  background: var(--organic-beige);
  box-shadow: 0 -4px 38px rgba(49,88,62,0.10);
  padding: 22px 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  font-size: 1rem;
  border-radius: 20px 20px 0 0;
  animation: bannerUp 0.41s cubic-bezier(.76,-0.11,.31,1.33);
}
@keyframes bannerUp {
  from { opacity: 0; transform: translateY(60px); }
  to   { opacity: 1; transform: translateY(0); }
}
.cookie-banner p {
  color: var(--primary-90);
  margin-bottom: 0;
  font-size: 0.99rem;
}
.cookie-btn, .cookie-settings-btn {
  padding: 10px 18px;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 99px;
  border: none;
  margin-left: 5px;
  margin-right: 5px;
  cursor: pointer;
  transition: background 0.18s, color 0.14s, box-shadow 0.13s;
  outline: none;
}
.cookie-btn.accept {
  background: var(--organic-green);
  color: var(--white);
  box-shadow: 0 2px 12px rgba(53,106,70,0.08);
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: var(--primary-50);
  color: #FFF;
}
.cookie-btn.reject {
  background: var(--danger);
  color: var(--white);
  box-shadow: 0 2px 12px rgba(167,54,40,0.08);
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #7e1e16;
}
.cookie-settings-btn {
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--primary-50);
  font-weight: 600;
}
.cookie-settings-btn:hover, .cookie-settings-btn:focus {
  background: var(--organic-sage);
  color: var(--accent-dark);
}

/* =============== COOKIE MODAL =============== */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(39,70,33,0.28);
  z-index: 100000;
  justify-content: center;
  align-items: center;
  animation: fadeInBg 0.3s;
}
@keyframes fadeInBg {
  from { opacity: 0; } to { opacity: 1; }
}
.cookie-modal-overlay.open {
  display: flex;
}
.cookie-modal {
  background: var(--white);
  border-radius: 18px 28px 18px 28px;
  padding: 38px 24px 28px 24px;
  min-width: 310px;
  max-width: 90vw;
  box-shadow: 0 8px 42px 0 rgba(44, 90, 55, 0.19);
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  animation: modalPop 0.44s cubic-bezier(.16,1.07,.45,.97);
}
@keyframes modalPop {
  from { opacity: 0; transform: scale(0.85); }
  to { opacity: 1; transform: scale(1); }
}
.cookie-modal h2 {
  color: var(--accent-dark);
  margin-bottom: 5px;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 3px;
  padding: 8px 0;
}
.cookie-category label {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: var(--primary-90);
  font-weight: 500;
}
.cookie-modal input[type="checkbox"]:disabled+label {
  opacity: 0.55;
}
.cookie-modal .modal-btn-row {
  display: flex;
  gap: 15px;
  justify-content: flex-end;
}
.cookie-modal .modal-btn {
  padding: 10px 18px;
  border-radius: 99px;
  background: var(--organic-green);
  color: var(--white);
  font-weight: 700;
  border: none;
  outline: none;
  font-size: 1rem;
  transition: background 0.15s, color 0.12s, box-shadow 0.13s;
  cursor: pointer;
}
.cookie-modal .modal-btn:hover, .cookie-modal .modal-btn:focus {
  background: var(--primary-50);
}
.cookie-modal .modal-btn.reject {
  background: var(--danger);
}
.cookie-modal .modal-btn.reject:hover {
  background: #891d13;
}
.cookie-modal-close {
  position: absolute;
  top: 12px;
  right: 18px;
  font-size: 1.65rem;
  background: none;
  border: none;
  color: var(--primary-90);
  cursor: pointer;
  padding: 0 6px;
  transition: color 0.2s;
}
.cookie-modal-close:focus,.cookie-modal-close:hover{color:var(--organic-green);}

@media (max-width: 600px) {
  .cookie-modal {
    min-width: 0;
    padding: 24px 7px 20px 7px;
    border-radius: 13px 18px 13px 18px;
  }
}

/* =============== MICRO-INTERACTIONS & HOVERS =============== */
.card, .feature, .testimonial-card, .service-card, .product-list li {
  transition: box-shadow 0.16s, transform 0.11s;
}
a, .btn-primary, .cookie-btn, .cookie-settings-btn, .footer-nav a, .mobile-nav a {
  transition: background 0.18s, color 0.14s, box-shadow 0.13s, border 0.14s;
}
a:active, .btn-primary:active, .service-card:active, .cookie-btn:active {
  transform: scale(0.99) translateY(1px);
  box-shadow: none !important;
}

/* =============== UTILITY & MISC =============== */
.text-center { text-align: center; }
.text-section { margin-bottom: 22px; }

/* Hide scroll when modal/menu open (to be toggled via JS) */
html.menu-open, html.cookie-modal-open { overflow: hidden; }

/* =============== PRINT STYLES =============== */
@media print {
  header, footer, .cookie-banner, .mobile-menu { display: none !important; }
}
