/* ==========================================================
   CSS RESET & BASE
   ========================================================== */
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;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  font-family: 'Roboto', Arial, sans-serif;
  background: #F4F4F4;
  color: #273046;
  min-height: 100vh;
}
a {
  color: #273046;
  text-decoration: none;
  transition: color 0.2s cubic-bezier(.77,0,.18,1);
}
a:hover, a:focus {
  color: #698D3A;
  outline: none;
}
ul, ol {
  list-style: none;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
button {
  font-family: inherit;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}
:focus {
  outline: 2px solid #273046;
}

/* ==========================================================
   BRAND TYPOGRAPHY & SCALE
   ========================================================== */
body, p, li {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #273046;
}
h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.5rem;
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: #273046;
  margin-bottom: 20px;
}
h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2rem;
  line-height: 1.22;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: #273046;
  margin-bottom: 16px;
}
h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  line-height: 1.3;
  font-weight: 600;
  letter-spacing: 0.1px;
  color: #273046;
  margin-bottom: 10px;
}
h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  color: #273046;
}
.subheadline {
  font-size: 1.125rem;
  color: #43516B;
  font-family: 'Roboto', Arial, sans-serif;
  margin-bottom: 18px;
}
strong {
  font-weight: 700;
  color: #273046;
}

/* ======================
   LAYOUT & CONTAINERS
   ====================== */
.container {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(39,48,70,0.10);
}
@media (max-width: 768px) {
  .section {
    padding: 26px 7px;
    margin-bottom: 32px;
    border-radius: 11px;
  }
  .container {
    padding: 0 6px;
  }
}

/* =============================
   HEADER, NAVIGATION, LOGO
   ============================= */
header {
  background: #fff;
  box-shadow: 0 1px 8px rgba(39,48,70,0.06);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
header .container {
  min-height: 70px;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 22px;
}
header img {
  height: 48px;
  width: auto;
  margin-right: 10px;
}
.desktop-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 28px;
}
.desktop-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #273046;
  font-weight: 600;
  letter-spacing: .5px;
  font-size: 1rem;
  position: relative;
  padding: 7px 0;
  transition: color 0.18s cubic-bezier(.45,0,.55,1);
}
.desktop-nav a::after {
  content: "";
  display: block;
  height: 3px;
  width: 0;
  background: #698D3A;
  transition: width 0.18s;
  border-radius: 3px;
  margin-top: 2px;
}
.desktop-nav a:hover, .desktop-nav a:focus {
  color: #698D3A;
}
.desktop-nav a:hover::after, .desktop-nav a:focus::after {
  width: 100%;
}
.button-primary {
  font-family: 'Montserrat', Arial, sans-serif;
  background: #698D3A;
  color: #fff !important;
  font-size: 1.06rem;
  font-weight: 700;
  border-radius: 30px;
  padding: 10px 32px;
  margin-left: 22px;
  transition: background 0.18s cubic-bezier(.45,0,.55,1),
    transform 0.18s cubic-bezier(.45,0,.55,1),
    box-shadow 0.15s;
  border: 2px solid #698D3A;
  box-shadow: 0 3px 16px rgba(105,141,58,0.07);
  letter-spacing: 0.7px;
  cursor: pointer;
  outline: none;
  display: inline-block;
}
.button-primary:hover, .button-primary:focus {
  background: #273046;
  border-color: #273046;
  color: #fff;
  box-shadow: 0 4px 20px rgba(39,48,70,0.12);
  transform: translateY(-2px) scale(1.03);
}
.button-secondary {
  font-family: 'Montserrat', Arial, sans-serif;
  background: none;
  color: #698D3A;
  font-size: 1.06rem;
  font-weight: 700;
  border-radius: 30px;
  padding: 10px 28px;
  margin-top: 20px;
  border: 2px solid #698D3A;
  box-shadow: 0 2px 12px rgba(105,141,58,0.03);
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, border 0.18s, box-shadow 0.15s;
  outline: none;
  display: inline-block;
}
.button-secondary:hover, .button-secondary:focus {
  background: #698D3A;
  color: #fff;
  border-color: #698D3A;
  box-shadow: 0 3px 16px rgba(39,48,70,0.09);
}

/* ========== MOBILE NAVIGATION ========= */
.mobile-menu-toggle {
  display: none;
  background: #273046;
  color: #fff;
  font-size: 2.4rem;
  border-radius: 10px;
  aspect-ratio: 1 / 1;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  z-index: 202;
  position: relative;
  transition: background 0.2s;
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:focus {
  background: #698D3A;
}
@media (max-width: 1110px) {
  .desktop-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
.mobile-menu {
  position: fixed;
  inset: 0;
  background: #273046;
  color: #fff;
  z-index: 2001;
  transform: translateX(100%);
  transition: transform 0.25s cubic-bezier(.77,0,.18,1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 40px 30px 20px 30px;
  width: 100vw;
  height: 100vh;
  box-shadow: -10px 0 40px rgba(39,48,70,0.05);
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  color: #fff;
  font-size: 2.1rem;
  position: absolute;
  right: 32px;
  top: 28px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 202;
  padding: 7px 14px;
  border-radius: 8px;
  transition: background 0.18s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #698D3A;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 72px;
  width: 100%;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 16px 0;
  border-bottom: 1px solid #43516B;
  transition: background 0.18s, color 0.18s;
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #698D3A;
  background: #fff2;
}
@media (min-width: 1111px) {
  .mobile-menu,
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* ========== HERO SECTION =========== */
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 390px;
  background: #273046 url('../assets/hero-shape.svg') right bottom no-repeat;
  background-size: cover;
  color: #fff;
  border-radius: 0 0 35px 35px;
  box-shadow: 0 4px 40px rgba(39,48,70,0.14);
  margin-bottom: 48px;
}
.hero .container {
  align-items: center;
  justify-content: center;
}
.hero .content-wrapper {
  max-width: 700px;
  align-items: center;
  gap: 22px;
}
.hero h1, .hero .subheadline {
  color: #fff;
  text-shadow: 0 2px 10px rgba(39,48,70,0.16);
}
.hero .button-primary {
  background: #698D3A;
  color: #fff;
  border: 2px solid #fff;
  box-shadow: 0 2px 20px rgba(121,142,60,0.13);
  margin-top: 16px;
}
.hero .button-primary:hover,
.hero .button-primary:focus {
  background: #fff;
  color: #273046 !important;
  border-color: #698D3A;
}
@media (max-width: 900px) {
  .hero {
    min-height: 260px;
    border-radius: 0 0 22px 22px;
    margin-bottom: 30px;
    padding: 38px 0;
  }
  .hero .content-wrapper {
    gap: 17px;
    text-align: center;
  }
}

/* ================================
   FEATURE / GRID / CARDS SECTIONS
   ================================ */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: space-between;
  margin-top: 10px;
}
.feature-grid li {
  background: #F4F4F4;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(39,48,70,0.05);
  padding: 28px 20px;
  flex: 1 1 220px;
  min-width: 220px;
  max-width: 330px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
  border-left: 7px solid #698D3A;
  transition: box-shadow 0.18s, border-color 0.18s, transform 0.15s;
  position: relative;
}
.feature-grid li:hover, .feature-grid li:focus-within {
  box-shadow: 0 6px 22px rgba(39,48,70,0.11);
  border-left-color: #273046;
  transform: translateY(-2px) scale(1.02);
}
.feature-grid img {
  height: 48px;
  width: 48px;
  object-fit: contain;
  border-radius: 8px;
  background: #fff;
  padding: 5px;
  box-shadow: 0 1px 6px rgba(39,48,70,0.05);
}
.feature-grid h3 {
  font-size: 1.05rem;
  margin-bottom: 3px;
  color: #273046;
}
@media (max-width: 980px) {
  .feature-grid {
    gap: 18px;
    justify-content: center;
  }
  .feature-grid li {
    min-width: 160px;
    max-width: 100%;
  }
}
@media (max-width: 650px) {
  .feature-grid {
    flex-direction: column;
    gap: 14px;
    align-items: stretch;
  }
}

/* ===================
  SERVICE HIGHLIGHTS
===================== */
.service-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.service-highlights li {
  flex: 1 1 220px;
  min-width: 200px;
  background: #fff;
  border-left: 4px solid #698D3A;
  border-radius: 14px;
  padding: 20px 14px 18px;
  box-shadow: 0 2px 12px rgba(105,141,58,0.05);
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.service-highlights h3 {
  font-size: 1.08rem;
  color: #273046;
  margin-bottom: 7px;
}
@media (max-width: 800px){
  .service-highlights {
    flex-direction: column;
    gap: 10px;
  }
}

/* =========================
   TRUST BADGES / BADGES BAR
   ========================= */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 12px 0 8px 0;
  align-items: center;
}
.trust-badges span {
  background: #F4F4F4;
  padding: 7px 18px 7px 7px;
  border-radius: 8px 24px 8px 24px;
  font-size: 0.98rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #273046;
  display: flex;
  align-items: center;
  gap: 7px;
  font-weight: 600;
  letter-spacing: .3px;
  box-shadow: 0 1px 6px rgba(39,48,70,0.03);
}
.trust-badges img {
  height: 26px;
  width: 26px;
  margin: 0;
}

/* ========== CARDS / FLEX GROUPS ========== */
.card-container, .card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 2px 12px rgba(39,48,70,0.07);
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.17s, transform 0.16s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 8px 38px rgba(39,48,70,0.11);
  transform: translateY(-2px) scale(1.01);
}
.card-content {
  display: flex;
  flex-direction: column;
  gap: 11px;
  justify-content: center;
  align-items: flex-start;
  padding: 18px 20px;
}

/* ========= TEXT-IMAGE SECTIONS =========== */
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
}

/* =============== FLEX CONTENT GRID =============== */
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

/* =============== TESTIMONIALS ================ */
.testimonial-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 10px;
  justify-content: flex-start;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px 22px 20px 22px;
  background: #fff;
  border-left: 5px solid #698D3A;
  border-radius: 12px;
  box-shadow: 0 2px 18px rgba(39,48,70,0.07);
  min-width: 220px;
  max-width: 370px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.18s, border-color 0.16s, transform 0.15s;
  font-size: 1rem;
}
.testimonial-card p {
  color: #273046;
  font-size: 1.05rem;
  line-height: 1.5;
  margin-bottom: 0;
}
.testimonial-card span {
  color: #698D3A;
  font-weight: 700;
  font-size: 0.95rem;
  align-self: flex-end;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  border-left-color: #273046;
  box-shadow: 0 8px 24px rgba(39,48,70,0.17);
  transform: translateY(-2px) scale(1.025);
}
@media (max-width: 900px) {
  .testimonial-cards {
    gap: 14px;
  }
  .testimonial-card {
    max-width: 98vw;
    padding: 17px 12px 17px 16px;
  }
}
@media (max-width: 600px){
  .testimonial-cards {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .testimonial-card {
    max-width: 100%;
    min-width: 0;
  }
}

/* ========== CONTACT DETAILS/FOOTER BLOCKS ========== */
.contact-details, .footer-contact {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 8px 0;
}
.contact-details p,
.footer-contact p {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  color: #273046;
}
.contact-details img, .footer-contact img {
  width: 22px;
  height: 22px;
}

/* =============================
     ABOUT/INFORMATIVE LISTS
   ============================= */
.text-section ul {
  margin: 18px 0 10px 0;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.text-section li {
  font-size: 1.07rem;
  line-height: 1.55;
  position: relative;
  padding-left: 24px;
}
.text-section li:before {
  content: "\25B6";
  color: #698D3A;
  font-size: 0.85rem;
  position: absolute;
  left: 0;
  top: 4px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.text-section h3 {
  font-size: 1.12rem;
  margin-top: 14px;
  color: #273046;
  font-family: 'Montserrat', Arial, sans-serif;
}
.privacy-disclaimer {
  font-size: 0.93rem;
  color: #43516B;
}

/* ================================
   FOOTER
   ================================ */
footer {
  background: #273046;
  color: #fff;
  padding: 0;
  margin-top: 60px;
}
footer .container {
  padding: 32px 18px 14px 18px;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 38px;
}
footer img {
  height: 42px;
  width: auto;
  margin-bottom: 18px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 17px;
}
.footer-nav a {
  color: #fff;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: .4px;
  transition: color 0.16s;
}
.footer-nav a:hover,
.footer-nav a:focus {
  color: #698D3A;
  text-decoration: underline;
}
.footer-contact {
  gap: 10px;
  color: #fff;
  font-size: 1rem;
}
.footer-copy {
  flex-basis: 100%;
  margin-top: 17px;
  color: #fff;
  font-size: 0.94rem;
  font-family: 'Roboto', Arial, sans-serif;
  opacity: .67;
}
@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
    padding: 25px 10px 8px 10px;
  }
  .footer-copy {
    margin-top: 7px;
  }
}

/* =============================
   SPACING & FLEX PATTERN UTILS
   ============================= */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Ensure all .section, .card, etc. have correct margin and spacing (as per requirements) */
section + section {
  margin-top: 24px;
}
.content-wrapper > * + * {
  margin-top: 10px;
}

/* =============================
   COOKIES BANNER & PREFERENCES
   ============================= */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2003;
  background: #fff;
  color: #273046;
  width: 100vw;
  box-shadow: 0 -2px 18px rgba(39,48,70,0.13);
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  padding: 20px 34px;
  border-radius: 18px 18px 0 0;
  animation: slideInBottom 0.45s cubic-bezier(.55,0,.55,1);
}
@keyframes slideInBottom {
  0% { transform: translateY(75px); opacity: 0; }
  60% { opacity: 1; }
  100% { transform: translateY(0); }
}
.cookie-banner p {
  color: #273046;
  font-size: 1rem;
  margin-bottom: 0;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 15px;
  align-items: center;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 8px 20px;
  border-radius: 22px;
  border: 2px solid #698D3A;
  background: #fff;
  color: #698D3A;
  font-weight: 700;
  transition: background 0.17s, color 0.17s, border-color 0.17s;
  cursor: pointer;
  outline: none;
  box-shadow: 0 1px 6px rgba(39,48,70,0.03);
}
.cookie-btn.accept {
  background: #698D3A;
  color: #fff;
  border: 2px solid #698D3A;
}
.cookie-btn.reject {
  background: #fff;
  color: #273046;
  border: 2px solid #273046;
}
.cookie-btn.settings {
  background: #fff;
  color: #698D3A;
  border: 2px solid #698D3A;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #273046;
  color: #fff;
  border-color: #273046;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #698D3A;
  color: #fff;
  border-color: #698D3A;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #273046;
  color: #fff;
  border-color: #273046;
}
@media (max-width: 700px){
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 11px;
    padding: 15px 10px;
    font-size: 0.99rem;
  }
  .cookie-banner .cookie-actions {
    flex-wrap: wrap;
    gap: 8px;
  }
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(39,48,70,0.56);
  z-index: 2010;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeModalIn 0.35s cubic-bezier(.55,0,.55,1);
}
@keyframes fadeModalIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.cookie-modal-content {
  background: #fff;
  color: #273046;
  border-radius: 18px;
  padding: 32px 22px;
  min-width: 340px;
  max-width: 95vw;
  box-shadow: 0 8px 50px rgba(39,48,70,0.23);
  display: flex;
  flex-direction: column;
  gap: 23px;
  position: relative;
}
.cookie-modal-content h3 {
  font-size: 1.25rem;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 8px;
  color: #273046;
}
.cookie-modal-content label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.07rem;
  margin: 4px 0;
}
.cookie-category-toggle {
  appearance: none;
  width: 38px;
  height: 22px;
  background: #F4F4F4;
  border-radius: 16px;
  position: relative;
  outline: none;
  border: 2px solid #698D3A;
  transition: background 0.15s, border-color 0.13s;
}
.cookie-category-toggle:checked {
  background: #698D3A;
  border-color: #698D3A;
}
.cookie-category-toggle:before {
  content: "";
  display: block;
  position: absolute;
  left: 3px;
  top: 3px;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 4px rgba(39,48,70,0.06);
  transition: left 0.15s;
}
.cookie-category-toggle:checked:before {
  left: 19px;
}
.cookie-modal-content .cookie-btn-row {
  display: flex;
  flex-direction: row;
  gap: 15px;
  justify-content: flex-end;
  margin-top: 8px;
}
.cookie-modal-content .close-modal-btn {
  position: absolute;
  top: 8px;
  right: 11px;
  font-size: 2rem;
  color: #273046;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  padding: 3px 7px;
}
.cookie-modal-content .close-modal-btn:hover, 
.cookie-modal-content .close-modal-btn:focus {
  background: #698D3A;
  color: #fff;
}

@media (max-width: 500px) {
  .cookie-modal-content {
    min-width: 90vw;
    padding: 18px 7px;
    border-radius: 7px;
  }
  .cookie-modal-content .cookie-btn-row {
    flex-direction: column;
    gap: 8px;
    justify-content: stretch;
  }
}

/* =============================
   GEOMETRIC DECORATIVE ELEMENTS
   ============================= */
.hero::after {
  content: "";
  display: block;
  position: absolute;
  left: 0; bottom: 0;
  width: 180px; height: 60px;
  background: #698D3A;
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
  opacity: 0.18;
  pointer-events: none;
}
@media (max-width: 800px){
  .hero::after {
    width: 90px; height: 30px;
  }
}
.feature-grid li::before {
  content: "";
  display: block;
  position: absolute;
  top: 0; right: 0;
  width: 44px; height: 44px;
  background: #698D3A;
  opacity: .07;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}
.card::before {
  content: "";
  display: block;
  position: absolute;
  top: 0; left: 0;
  width: 40px; height: 40px;
  background: #698D3A;
  opacity: .07;
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

/* =============================
   MISCELLANEOUS & OVERRIDES
   ============================= */
main {
  min-height: 66vh;
  width: 100%;
  margin: 0 auto 30px auto;
}
.text-section a {
  color: #698D3A;
  font-weight: 600;
  text-decoration: underline;
  transition: color 0.17s;
}
.text-section a:hover, .text-section a:focus {
  color: #273046;
}
.liability {
  color: #ba2626;
  font-weight: bold;
}

/* Responsive utility classes */
@media (max-width: 700px){
  h1 { font-size: 2rem; }
  h2 { font-size: 1.45rem; }
  h3 { font-size: 1.1rem; }
}

/* ================ MICRO-ANIMATIONS ================ */
.button-primary, .button-secondary, .cookie-btn {
  transition: background .14s, color .14s, transform .13s, box-shadow .13s;
}
.button-primary:active, .button-secondary:active, .cookie-btn:active {
  transform: scale(0.97);
}
.card, .feature-grid li, .testimonial-card {
  transition: box-shadow .14s, transform .13s;
}

/* =============================
   SCROLLBAR STYLES (optional)
   ============================= */
::-webkit-scrollbar { width: 9px; background: #F4F4F4; }
::-webkit-scrollbar-thumb { background: #27304633; border-radius: 8px; }
::-webkit-scrollbar-thumb:hover { background: #698D3A66; }

