/* 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;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #F5F7F9;
  color: #2A3E4C;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}
a { color: inherit; text-decoration: none; transition: color 0.22s; }
img, picture { max-width: 100%; display: block; border: 0; }
ul, ol { list-style: none; }
button, input, select, textarea {
  font: inherit;
  border: none;
  background: none;
  color: inherit;
  outline: none;
  transition: background 0.18s, color 0.18s;
}
::-webkit-input-placeholder { color: #60706D; }
::-moz-placeholder { color: #60706D; }
:-ms-input-placeholder { color: #60706D; }
::placeholder { color: #60706D; }

:root {
  --brand-primary: #2A3E4C;
  --brand-secondary: #7DAF86;
  --brand-accent: #F5F7F9;
  --brand-brown: #A5917A;
  --brand-light-green: #CBE1C7;
  --brand-dark: #1e2b33;
  --radius: 16px;
  --shadow: 0 2px 16px 0 rgba(90,110,74,0.10);
  --shadow-dark: 0 3px 14px 0 rgba(70,70,60,0.13);
}

/* LAYOUT BASICS */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  width: 100%;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  padding: 28px 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s;
}
.card:hover {
  box-shadow: 0 6px 26px 0 rgba(90,110,74,0.18);
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  width: 100%;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  width: 100%;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 18px 34px 24px 20px;
  box-shadow: var(--shadow);
  margin-bottom: 24px;
  min-width: 260px;
  max-width: 420px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}

/* TYPOGRAPHY */
h1, h2, h3, h4, .cta-btn, .logo, .main-nav > a, .mobile-nav > a, .footer-brand span {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
}
h1 {
  font-size: 2.8rem;
  color: var(--brand-primary);
  letter-spacing: -1px;
  line-height: 1.17;
}
h2 {
  font-size: 2.1rem;
  color: var(--brand-secondary);
  margin-bottom: 12px;
  line-height: 1.08;
}
h3 {
  font-size: 1.3rem;
  color: #415447;
  font-weight: 600;
  line-height: 1.2;
}
p, li, ul, ol {
  font-size: 1rem;
  color: #31423A;
  line-height: 1.7;
}
strong {
  font-weight: 700;
  color: var(--brand-primary);
}
.cta-link {
  color: var(--brand-secondary);
  font-weight: 600;
  text-decoration: underline;
  transition: color 0.21s;
  border-radius: 8px;
}
.cta-link:hover, .cta-link:focus {
  color: #598465;
  background: #E8F4EA;
}

/* HEADER & NAVIGATION */
header {
  background: linear-gradient(90deg, #F5F7F9 75%, #E7F0EA 100%);
  box-shadow: 0 2px 16px 0 rgba(105,132,104,0.06);
  padding: 0;
  position: relative;
  z-index: 500;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 0 20px;
  min-height: 78px;
}
.logo img {
  height: 45px;
  width: auto;
  border-radius: 10px;
  display: block;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}
.main-nav > a {
  padding: 8px 16px;
  color: var(--brand-primary);
  font-weight: 600;
  border-radius: 8px;
  font-size: 1rem;
  position: relative;
  transition: background 0.18s, color 0.18s;
}
.main-nav > a:not(.cta-btn):hover, .main-nav > a:not(.cta-btn):focus {
  background: #E8F4EA;
  color: var(--brand-secondary);
}
.main-nav > a.cta-btn.primary {
  background: var(--brand-secondary);
  color: #fff;
  margin-left: 16px;
  border-radius: 22px;
  padding: 10px 22px;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 8px 0 rgba(130, 172, 122, 0.08);
  transition: background 0.16s, color 0.17s;
}
.main-nav > a.cta-btn.primary:hover, .main-nav > a.cta-btn.primary:focus {
  background: #64966B;
  color: #fff;
}
.mobile-menu-toggle {
  display: none;
  background: #E9EEE6;
  color: var(--brand-primary);
  font-size: 2rem;
  border-radius: 16px;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  z-index: 800;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, outline 0.17s;
}
.mobile-menu-toggle:focus {
  outline: 2px solid #7DAF86;
}

/* Mobile menu overlay */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(42,62,76,0.91);
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(.72,0,.36,1);
  z-index: 990;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu-close {
  margin: 30px 24px 0 0;
  background: #fff;
  color: var(--brand-primary);
  border-radius: 36px;
  width: 48px; height: 48px;
  font-size: 2rem;
  align-items: center;
  justify-content: center;
  display: flex;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  z-index: 1001;
  box-shadow: var(--shadow-dark);
}
.mobile-menu-close:focus {
  background: #E8F4EA;
  color: var(--brand-secondary);
  outline: 2px solid #7DAF86;
}
.mobile-nav {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  align-items: flex-start;
  padding: 0 38px;
  z-index: 1000;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.15rem;
  font-weight: 600;
  border-radius: 12px;
  padding: 14px 18px;
  width: 100%;
  transition: background 0.13s, color 0.17s;
  display: block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #7DAF86;
  color: #fff;
}

@media (max-width: 1024px) {
  .main-nav { gap: 10px; }
}
@media (max-width: 880px) {
  .main-nav { display: none; }
  .mobile-menu-toggle { display: flex; }
}

/* HERO SECTIONS */
.hero {
  padding: 48px 0 20px 0;
  background: linear-gradient(125deg, #F5F7F9 60%, #E8F4EA 110%);
  min-height: 220px;
  border-radius: 0px 0px 56px 8px;
  box-shadow: 0 1.5px 8px rgba(110,140,100,0.06);
}
.hero h1 {
  font-size: 2.6rem;
  color: var(--brand-primary);
  margin-bottom: 12px;
}
.hero p {
  font-size: 1.19rem;
  color: #415447;
  margin-bottom: 18px;
}

/* FEATURE SECTIONS */
.features, .usp, .services {
  background: #FFF;
  border-radius: 32px;
  box-shadow: var(--shadow);
  margin-bottom: 60px;
  padding: 32px 0 16px 0;
}
.features h2, .services h2, .usp h2 { color: var(--brand-secondary); }
.feature-grid, .usp-grid, .service-grid, .values-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 12px;
}
.feature, .usp, .service, .value {
  flex: 1 1 220px;
  min-width: 220px;
  max-width: 290px;
  background: #F7FDF8;
  border-radius: 18px 32px 22px 20px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 22px 18px 18px 18px;
  transition: box-shadow 0.19s;
  margin-bottom: 20px;
  position: relative;
}
.feature:hover, .usp:hover, .service:hover, .value:hover {
  box-shadow: 0 6px 22px 0 rgba(90,110,74,0.16);
}
.feature img, .usp img, .service img, .value img {
  height: 42px;
  width: 42px;
  background: #E8F4EA;
  padding: 5px;
  border-radius: 12px 20px 14px 10px;
  margin-bottom: 5px;
}

/* ABOUT, VALUES, USP */
.values-list {
  gap: 30px;
  justify-content: flex-start;
}
.value {
  min-width: 230px; max-width: 320px;
}
.usp-grid {
  gap: 30px;
}

/* SERVICES PAGE */
.service-grid {
  gap: 28px;
}
.service {
  min-width: 230px;
  max-width: 330px;
}
.process-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 22px;
}
.process-list li {
  background: #F5F7F9;
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 20px 18px 18px 18px;
  flex: 1 1 210px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 180px;
  max-width: 270px;
}
.process-list li img {
  width: 34px; height: 34px;
  margin-bottom: 4px;
}
.process-list strong { color: var(--brand-secondary); }

/* CASE STUDY & PROJECT LISTS */
.case-study-list,
.project-list,
.blog-list ul,
.services-preview ul {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.case-study-list li, .project-list li, .blog-list ul li, .services-preview ul li {
  padding: 16px 18px;
  background: #fff;
  border-radius: 12px 28px 16px 10px;
  box-shadow: var(--shadow);
  margin-bottom: 14px;
}
.case-study-list h3, .project-list h3, .blog-list ul h3, .services-preview ul h3 {
  margin-bottom: 3px;
}

/* TESTIMONIALS */
.testimonials {
  background: #F6F9F4;
  border-radius: 32px;
  padding: 38px 0 26px 0;
  margin-bottom: 60px;
  box-shadow: var(--shadow);
}
.testimonial-slider, .testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: flex-start;
  margin-top: 18px;
}
.testimonial-card {
  background: #fff;
  border-radius: 18px 34px 24px 20px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  min-width: 260px;
  max-width: 420px;
  padding: 22px 20px;
  margin-bottom: 24px;
  transition: box-shadow 0.17s;
  color: #253A25;
}
.testimonial-card p {
  color: #283425;
  font-size: 1.05rem;
  font-style: italic;
}
.testimonial-card strong {
  font-size: 0.96rem;
  color: #567851;
}
.testimonial-card:hover {
  box-shadow: 0 8px 32px 0 rgba(90,110,74,0.13);
}

/* CTA BANNERS */
.cta-banner {
  background: linear-gradient(92deg, #7DAF86 70%, #A5917A 105%);
  color: #fff;
  border-radius: 38px;
  box-shadow: 0 2px 18px 0 rgba(70,95,80,0.13);
  min-height: 140px;
  display: flex;
  align-items: center;
  margin-bottom: 50px;
  padding: 30px 0 30px 0;
}
.cta-banner h2, .cta-banner p {
  color: #fff;
}
.cta-banner .cta-btn.primary {
  background: #fff;
  color: var(--brand-secondary);
  margin-top: 12px;
}
.cta-banner .cta-btn.primary:hover, .cta-banner .cta-btn.primary:focus {
  background: #DDEEE1;
  color: var(--brand-primary);
}

/* BUTTONS */
.cta-btn {
  display: inline-block;
  background: var(--brand-secondary);
  color: #fff;
  border-radius: 28px;
  padding: 12px 28px;
  font-size: 1.08rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 8px 0 rgba(80,121,83,0.13);
  border: none;
  cursor: pointer;
  transition: background 0.18s, color 0.14s, box-shadow 0.17s, transform 0.12s;
}
.cta-btn.primary {
  background: var(--brand-secondary);
}
.cta-btn.primary:hover, .cta-btn.primary:focus {
  background: #619972;
  color: #fff;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 4px 24px 0 rgba(80,121,83,0.21);
}

/* BLOG, GENERAL CTA LINKS */
.blog-list .cta-link {
  color: var(--brand-primary);
  text-decoration: underline;
  margin-top: 6px;
}
.blog-list .cta-link:hover, .blog-list .cta-link:focus {
  color: #64966B;
  background: #E8F4EA;
}

/* ABOUT, CONTACT INFO */
.about-details .content-wrapper, .contact-info .content-wrapper {
  gap: 10px;
}
.text-section div, .footer-contact div {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 4px 0;
  color: #415447;
  font-size: 1rem;
}
.text-section img, .footer-contact img {
  width: 20px;
  height: 20px;
  background: #F1F6F3;
  border-radius: 6px;
  margin-right: 4px;
}

/* LEGAL PAGE */
.legal {
  background: #fff;
  border-radius: 24px;
  box-shadow: var(--shadow);
  margin-bottom: 60px;
  padding: 40px 0 36px 0;
}
.legal h1 {
  font-size: 2.1rem;
  color: var(--brand-primary);
  margin-bottom: 19px;
}
.legal h2 {
  font-size: 1.12rem;
  margin: 18px 0 6px 0;
  color: #567851;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.legal .text-section {
  display: flex;
  flex-direction: column;
  gap: 13px;
  font-size: 1rem;
  color: #2A3E4C;
}
.legal ul {
  list-style: disc inside;
  padding-left: 14px;
  color: #415447;
  margin-bottom: 13px;
}

/* FOOTER */
footer {
  background: #21302C;
  color: #fff;
  padding: 43px 0 18px 0;
  border-radius: 32px 32px 0 0;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.16rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #7DAF86;
}
.footer-brand img {
  width: 41px; height: 41px;
  border-radius: 12px;
  background: #F4FBF2;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin: 8px 0 8px 0;
}
.footer-nav a {
  color: #C1DDC9;
  font-size: 1rem;
  transition: color 0.14s;
  padding: 3px 4px;
  border-radius: 8px;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #fff;
  background: #598465;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer-contact div {
  color: #F5F7F9;
}
.footer-contact img {
  background: #E8F4EA;
}

/* THANK YOU PAGE */
.thank-you .content-wrapper {
  align-items: flex-start;
  gap: 10px;
}
.thank-you h1 {  color: var(--brand-secondary); }
.thank-you .cta-btn {
  margin-top: 22px;
}

/**********************************
* RESPONSIVE STYLES (Mobile-First)
***********************************/
@media (max-width: 900px) {
  .feature-grid, .usp-grid, .service-grid, .values-list, .case-study-list, .testimonial-list, .testimonial-slider {
    gap: 18px;
  }
  .card, .feature, .usp, .service, .value, .card-content {
    min-width: 180px; max-width: initial;
  }
}
@media (max-width: 768px) {
  .container {
    max-width: 98vw;
    padding-left: 14px;
    padding-right: 14px;
  }
  h1 { font-size: 2rem; }
  h2 {font-size:1.32rem;}
  .hero { padding: 38px 0 7px 0; border-radius: 0 0 28px 0; }
  .features, .usp, .services, .cta-banner, .testimonials, .legal { border-radius: 20px; padding: 18px 0; }
  .content-wrapper { gap: 14px; }
  .feature-grid, .usp-grid, .service-grid, .values-list {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
  .feature, .usp, .service, .value, .process-list li {
    min-width: 96px;
    max-width: 100%;
    padding: 18px 13px 13px 13px;
  }
  .process-list {
    flex-direction: column;
    gap: 13px;
  }
  .testimonial-slider, .testimonial-list {
    flex-direction: column;
    gap: 13px;
    align-items: flex-start;
  }
  .footer-brand img { width: 34px; height: 34px; }
  footer .container {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .main-nav { display: none; }
  .mobile-menu-toggle { display: flex; }
  .text-image-section { flex-direction: column; gap: 18px; align-items: flex-start; }
}
@media (max-width: 520px) {
  h1 { font-size: 1.20rem; }
  .section, .legal, .hero {
    padding-left: 0; padding-right: 0;
  }
  .footer-brand span {
    font-size: 0.99rem;
  }
  .cta-btn { font-size: 0.97rem; padding: 11px 16px; }
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 1200;
  background: #F7F1E5;
  color: #39341F;
  box-shadow: 0 -2px 18px rgba(50,70,45,0.14);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 20px 22px 24px;
  font-size: 1rem;
  border-radius: 18px 18px 0 0;
  animation: cookieSlideIn 0.8s cubic-bezier(.72,0,.2,1);
}
@keyframes cookieSlideIn {
  from { transform: translateY(120%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  flex: 1 1 300px;
  margin-right: 16px;
}
.cookie-actions {
  display: flex;
  gap: 10px;
}
.cookie-btn {
  padding: 8px 18px;
  border-radius: 18px;
  border: none;
  background: #7DAF86;
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  margin-right: 3px;
  transition: background 0.18s, color 0.13s, transform 0.1s;
  cursor: pointer;
}
.cookie-btn.reject {
  background: #A5917A;
}
.cookie-btn.settings {
  background: #fff;
  color: #7DAF86;
  border: 1.5px solid #7DAF86;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #598465;
  color: #fff;
  transform: translateY(-2px) scale(1.04);
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #8c7658;
  color: #fff;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #E1E8DF;
  color: #2A3E4C;
}

@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 9px;
    font-size: 0.98rem;
  }
  .cookie-actions {
    width: 100%;
    gap: 7px;
  }
}

/* Cookie MODAL Popup */
.cookie-modal {
  display: none;
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  z-index: 1300;
  align-items: center;
  justify-content: center;
  background: rgba(42,62,76,0.55);
  animation: fadeIn 0.2s;
}
@keyframes fadeIn {
  from {opacity:0;} to {opacity:1;}
}
.cookie-modal.open {
  display: flex;
}
.cookie-modal-content {
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 6px 42px 0 rgba(60,70,50,0.17);
  max-width: 410px;
  min-width: 300px;
  width: 96vw;
  padding: 30px 16px 20px 16px;
  position: relative;
  animation: slideModal 0.2s;
}
@keyframes slideModal {
  from {transform: translateY(40px); opacity:0;}
  to {transform: translateY(0); opacity:1;}
}
.cookie-modal-content h3 {
  font-size: 1.2rem;
  color: var(--brand-secondary);
  margin-bottom: 18px;
}
.cookie-settings-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}
.cookie-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #F5F7F9;
  padding: 11px 13px;
  border-radius: 14px;
  color: #253A25;
  font-size:0.99rem;
}
.cookie-toggle input[type=checkbox] {
  accent-color: #7DAF86;
  width: 22px; height: 22px;
  margin-left: 5px;
}
.cookie-modal-actionbar {
  display: flex;
  justify-content: flex-end;
  gap: 11px;
  margin-top: 8px;
}
.cookie-modal .cookie-btn {
  margin: 0 0 5px 0;
}
.cookie-modal-close {
  position: absolute;
  top: 12px; right: 14px;
  background: none;
  border: none;
  font-size: 1.4rem;
  color: #7DAF86;
  cursor: pointer;
  border-radius: 50%;
  width: 38px; height: 38px;
  line-height: 40px;
  text-align: center;
  transition: background 0.14s;
  z-index: 10;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #E8F4EA;
  color: #3F5036;
}

/***************************************
* MICRO-INTERACTIONS & ORGANIC TEXTURES
****************************************/
.card, .feature, .usp, .service, .value, .testimonial-card, .footer-brand img {
  /* Subtle organic shadow & shape feel */
  box-shadow: 0 2px 16px 0 rgba(90,110,74,0.11),0 0.5px 1.5px 0 rgba(120,170,100,0.06);
}
.feature, .usp, .value, .testimonial-card {
  /* Subtle waving bottom border mask effect for organic feel */
  position: relative;
  overflow: hidden;
}
.feature:after, .usp:after, .testimonial-card:after, .value:after {
  content: '';
  position: absolute;
  left: -28px; right: -28px; bottom: -18px;
  height: 24px;
  background: #E8F4EA;
  border-radius: 45% 55% 45% 55% / 60% 40% 50% 50%;
  opacity: 0.09;
  pointer-events: none;
  transition: opacity 0.18s;
  z-index: 1;
}
.feature:hover:after,
.usp:hover:after,
.value:hover:after,
.testimonial-card:hover:after {
  opacity: 0.17;
}

/****************************************/
/* Miscellaneous */
/****************************************/
::-webkit-scrollbar {
  width: 10px;
  background: #F5F7F9;
}
::-webkit-scrollbar-thumb {
  background: #CBE1C7;
  border-radius: 7px;
}
::-webkit-scrollbar-thumb:hover { background: #A5917A; }

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