/* OPERA GORGO IMMOBILIARE --- CSS RESET & NORMALIZE */
html {
  box-sizing: border-box;
  font-size: 100%;
  height: 100%;
  background: #F9F6F1;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
  border: 0;
}
body {
  font-family: 'Nunito', Arial, sans-serif;
  color: #222;
  background: #F9F6F1;
  line-height: 1.6;
  min-height: 100vh;
}
img {
  max-width: 100%;
  display: block;
}
ul, ol {
  list-style: none;
  padding-left: 0;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
button, .cta-primary, .cta-secondary {
  font-family: 'Montserrat', Arial, sans-serif;
  cursor: pointer;
  border: none;
}

/* --- TYPOGRAPHY SCALE and STRUCTURE --- */
h1, h2, h3, h4 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #004D40;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.2;
  margin-bottom: 16px;
}
h1 {
  font-size: 2.4rem;
  margin-bottom: 18px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  letter-spacing: 0.03em;
}
h4 {
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  margin-bottom: 6px;
}
p, li, span, small {
  font-family: 'Nunito', Arial, sans-serif;
  color: #222;
  font-size: 1rem;
  font-weight: 400;
}
small {
  font-size: 0.9rem;
}

/* --- CONTAINER & SECTIONS --- */
.container {
  width: 100%;
  max-width: 1200px;
  padding-left: 20px;
  padding-right: 20px;
  margin: 0 auto;
}
section, .section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

/* --- HEADER & NAV --- */
header {
  width: 100%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 20px;
  min-height: 68px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.07);
  position: relative;
  z-index: 1003;
}
.logo {
  margin-right: 30px;
  padding: 10px 0;
  display: flex;
  align-items: center;
}
header .main-nav {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
  margin-right: auto;
}
header .main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.02em;
  color: #004D40;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.16s, border-bottom 0.22s;
  position: relative;
}
header .main-nav a:hover,
header .main-nav a:focus {
  color: #A38659;
  border-bottom: 2px solid #A38659;
}

.cta-primary {
  background: #004D40;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 11px 30px 11px 28px;
  border-radius: 6px 22px 6px 22px;
  margin-left: 22px;
  margin-right: 8px;
  letter-spacing: 0.06em;
  box-shadow: 0 2px 8px rgba(0,77,64,0.08);
  border: 2px solid #004D40;
  transition: background 0.13s, color 0.13s, border 0.17s, box-shadow 0.19s;
}
.cta-primary:hover, .cta-primary:focus {
  background: #A38659;
  color: #004D40;
  border-color: #A38659;
  box-shadow: 0 6px 12px rgba(186,160,122,0.10);
}

.cta-secondary {
  background: none;
  color: #004D40;
  border: 2px solid #004D40;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 10px 28px;
  border-radius: 18px;
  margin-top: 18px;
  letter-spacing: 0.04em;
  transition: background 0.13s, color 0.13s, border 0.15s, box-shadow 0.17s;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: #004D40;
  color: #fff;
  border-color: #004D40;
  box-shadow: 0 2px 10px rgba(0,77,64,0.13);
}
.button, button {
  background: #A38659;
  color: #fff;
  border-radius: 12px;
  padding: 10px 20px;
  border: none;
  font-weight: 600;
  letter-spacing: 0.02em;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  transition: background 0.13s, box-shadow 0.15s;
}
.button:hover, button:hover, .button:focus, button:focus {
  background: #004D40;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  color: #004D40;
  font-size: 2rem;
  padding: 8px 10px;
  border-radius: 8px;
  margin-left: 18px;
  transition: background 0.18s, color 0.18s;
  z-index: 1101;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  color: #A38659;
  background: rgba(0,77,64,0.06);
}

/* --- MOBILE MENU (BURGER NAVIGATION) --- */
.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: fixed;
  top: 0;
  right: 0;
  width: 85vw;
  max-width: 380px;
  height: 100vh;
  background: #fff;
  box-shadow: -2px 0 36px rgba(0,0,0,0.17);
  transform: translateX(100%);
  transition: transform 0.36s cubic-bezier(.77,0,.18,1);
  z-index: 1201;
  padding: 44px 28px 24px 28px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2rem;
  color: #004D40;
  background: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  transition: background 0.15s, color 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #A38659;
  background: rgba(0,77,64,0.12);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  margin-top: 34px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #004D40;
  font-weight: 600;
  font-size: 1.2rem;
  padding: 12px 0 10px 0;
  border-bottom: 1px solid #E3DED8;
  transition: color 0.15s;
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #A38659;
}

/* --- HERO SECTION --- */
.hero-section {
  background: linear-gradient(120deg, #F9F6F1 65%, #A38659 100%);
  border-bottom: 8px solid #004D40;
  border-radius: 0 0 36px 36px;
  min-height: 280px;
  display: flex;
  align-items: center;
}
.hero-section .container {
  min-height: 240px;
  display: flex;
  align-items: center;
}
.hero-section .content-wrapper {
  align-items: flex-start;
  gap: 16px;
}
.hero-section h1 {
  font-size: 2.2rem;
  color: #004D40;
  letter-spacing: 0.03em;
  margin-bottom: 0.4em;
  font-family: 'Montserrat', Arial, sans-serif;
}
.hero-section p {
  font-size: 1.1rem;
  color: #004D40;
  margin-bottom: 20px;
}
.hero-section .cta-primary {
  margin-top: 8px;
}

/* --- STRUCTURED FLEX GRIDS & CARDS --- */
.features-grid, .benefits-grid, .service-cards, .property-list, .blog-post-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.features-grid {
  justify-content: flex-start;
  align-items: stretch;
}
.feature-card {
  flex: 1 1 220px;
  background: #fff;
  border: 2.5px solid #004D40;
  border-radius: 16px;
  min-width: 220px;
  min-height: 220px;
  box-shadow: 0 4px 32px 0 rgba(0,77,64,0.07);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 28px;
  gap: 12px;
  position: relative;
  transition: box-shadow 0.2s, border 0.2s;
}
.feature-card img {
  width: 42px;
  height: 42px;
  margin-bottom: 8px;
}
.feature-card h3 {
  font-size: 1.12rem;
  color: #004D40;
  margin-bottom: 0;
}
.feature-card p {
  text-align: center;
  color: #555;
}
.feature-card:hover, .feature-card:focus-within {
  border-color: #A38659;
  box-shadow: 0 8px 36px 0 rgba(163,134,89,0.09);
}

.service-cards, .service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.service-card {
  flex: 1 1 220px;
  min-width: 210px;
  background: #fff;
  border: 2.5px solid #A38659;
  border-radius: 12px 28px 12px 28px;
  min-height: 170px;
  box-shadow: 0 3px 20px 0 rgba(163,134,89,0.09);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 24px 22px;
  gap: 8px;
  transition: box-shadow 0.14s, border 0.17s;
}
.service-card:hover, .service-card:focus-within {
  border-color: #004D40;
  box-shadow: 0 8px 32px 0 rgba(0,77,64,0.10);
}
.service-card h3 {
  color: #004D40;
  margin-bottom: 9px;
}
.service-card p {
  color: #444;
  margin-bottom: 0;
}

.benefits-grid > div {
  background: #fff;
  border: 2px solid #A38659;
  border-radius: 10px 22px;
  box-shadow: 0 2px 14px rgba(163,134,89,0.04);
  flex: 1 1 200px;
  min-width: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 10px 14px 10px;
  gap: 10px;
  margin-bottom: 20px;
}
.benefits-grid img {
  width: 36px;
  height: 36px;
}

.property-list {
  gap: 22px;
  margin-bottom: 18px;
}
.property {
  background: #fff;
  border: 2.5px solid #004D40;
  border-radius: 10px 30px 10px 30px;
  padding: 18px 18px 14px 18px;
  min-width: 220px;
  flex: 1 1 245px;
  box-shadow: 0 3px 18px 0 rgba(0,77,64,0.06);
  margin-bottom: 20px;
  transition: border 0.18s, box-shadow 0.19s;
}
.property:hover, .property:focus-within {
  border-color: #A38659;
  box-shadow: 0 4px 24px 0 rgba(163,134,89,0.06);
}
.property h4 {
  color: #004D40;
  margin-bottom: 8px;
}
.property ul {
  margin-bottom: 5px;
}
.property span {
  font-size: 0.98rem;
  color: #A38659;
}

.blog-post-list {
  gap: 24px;
}
.blog-post {
  background: #fff;
  border: 2px solid #A38659;
  border-radius: 14px 26px 14px 26px;
  padding: 24px 18px 16px 18px;
  flex: 1 1 240px;
  min-width: 210px;
  box-shadow: 0 4px 16px rgba(163,134,89,0.06);
  margin-bottom: 20px;
  transition: border 0.18s, box-shadow 0.19s;
}
.blog-post h3 {
  color: #004D40;
  margin-bottom: 7px;
}
.blog-post span {
  color: #A38659;
  font-size: 0.99rem;
}

/* --- TABLES --- */
.pricing-table {
  width: 100%;
  margin: 0 auto 18px auto;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 1.05rem;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,77,64,0.05);
}
.pricing-table th, .pricing-table td {
  padding: 16px 16px;
  text-align: left;
}
.pricing-table th {
  background: #004D40;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
}
.pricing-table tr {
  border-bottom: 1.2px solid #F3F1EA;
}
.pricing-table tr:last-child {
  border: none;
}
.pricing-table td {
  color: #222;
  font-weight: 600;
}

/* --- CATEGORIES FILTER --- */
.categories-filter {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  margin-top: 12px;
}
.categories-filter ul {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.categories-filter li {
  background: #fff;
  color: #004D40;
  padding: 7px 14px;
  border-radius: 16px;
  font-weight: 600;
  font-size: 0.92rem;
  box-shadow: 0 2px 5px rgba(0,77,64,0.04);
}

/* --- FLEX CONTENT SYSTEMS (MANDATORY ALIGNMENTS) --- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 200px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 3px 18px 0 rgba(0,77,64,0.05);
  transition: box-shadow 0.2s;
}
.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: 24px 30px 20px 24px;
  background: #fff;
  border-radius: 15px 35px 15px 35px;
  border: 2.5px solid #004D40;
  margin-bottom: 20px;
  box-shadow: 0 2px 16px 0 rgba(0,77,64,0.06);
  min-width: 220px;
}
.testimonial-card p {
  color: #222;
  font-size: 1.1rem;
  margin-bottom: 0;
}
.testimonial-author {
  color: #A38659;
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-left: auto;
  font-size: 1rem;
}
.aggregate-ratings, .rating-summary {
  margin-top: 12px;
  color: #004D40;
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 7px;
}
.aggregate-ratings img, .rating-summary img {
  width: 26px;
  height: 26px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* --- VALUE LISTS, TIMELINES --- */
.value-list {
  display: flex;
  flex-direction: column;
  gap: 17px;
  margin: 0 0 15px 0;
  padding-left: 10px;
}
.value-list li {
  position: relative;
  padding-left: 32px;
  color: #444;
  font-size: 1.06rem;
}
.value-list li:before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 17px;
  height: 17px;
  background: #A38659;
  border-radius: 5px 0 5px 0;
  display: inline-block;
}
.history-timeline {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.history-timeline ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 10px;
  margin-left: 5px;
}

/* --- CONTACT/INFO SECTIONS --- */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 15px;
}
.contact-details ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact-details li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.06rem;
  color: #004D40;
  font-weight: 500;
}
.contact-details img {
  width: 20px;
  height: 20px;
  margin-right: 2px;
}
.map-snippet {
  margin: 8px 0 12px 0;
}

/* --- PROCESS STEPS --- */
.process-steps {
  background: #fff;
  border-radius: 11px 20px;
  border: 2px solid #A38659;
  padding: 18px;
  margin-top: 15px;
  margin-bottom: 15px;
}
.process-steps ol {
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding-left: 21px;
  list-style: decimal inside;
}

/* --- FOOTER --- */
footer {
  background: #004D40;
  color: #fff;
  padding-top: 38px;
  padding-bottom: 28px;
  border-radius: 40px 40px 0 0;
  margin-top: 80px;
  position: relative;
  z-index: 300;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}
.footer-logo img {
  width: 60px;
}
.footer-nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.footer-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  padding: 3.5px 6px;
  font-size: 1rem;
  border-bottom: 1.5px solid transparent;
  transition: color 0.14s, border-bottom 0.16s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #A38659;
  border-bottom: 1.5px solid #A38659;
}
.footer-contact {
  color: #fff;
  font-size: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
footer small {
  color: #fff;
  opacity: 0.9;
  margin-top: 7px;
}

/* --- COOKIE CONSENT BANNER & MODAL --- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2000;
  background: #fff;
  box-shadow: 0 -4px 30px rgba(0,77,64,0.11);
  padding: 26px 20px 16px 20px;
  border-top: 4px solid #A38659;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  animation: slideUp 0.42s cubic-bezier(.63,.11,.18,.98);
}
@keyframes slideUp {
  0% { transform: translateY(80px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  color: #004D40;
  font-size: 1rem;
  text-align: center;
  margin-bottom: 2px;
}
.cookie-btns {
  display: flex;
  gap: 13px;
  margin-top: 0;
  flex-wrap: wrap;
}
.cookie-btns .accept-btn, .cookie-btns .settings-btn, .cookie-btns .reject-btn {
  background: #A38659;
  color: #fff;
  padding: 9px 20px;
  border-radius: 16px;
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
  transition: background 0.15s, color 0.15s;
}
.cookie-btns .accept-btn:hover, .cookie-btns .accept-btn:focus {
  background: #004D40;
}
.cookie-btns .settings-btn {
  background: #fff;
  color: #004D40;
  border: 2px solid #A38659;
}
.cookie-btns .settings-btn:hover, .cookie-btns .settings-btn:focus {
  background: #A38659;
  color: #fff;
}
.cookie-btns .reject-btn {
  background: #fff;
  color: #A38659;
  border: 2px solid #A38659;
}
.cookie-btns .reject-btn:hover, .cookie-btns .reject-btn:focus {
  color: #fff;
  background: #A38659;
}

.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20,16,8,0.44);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2600;
  animation: fadeIn 0.3s cubic-bezier(.55,0,.1,1);
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 48px rgba(0,77,64,0.14);
  padding: 34px 28px 24px 28px;
  min-width: 320px;
  max-width: 94vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  animation: modalPop 0.28s cubic-bezier(.7,-0.6,.7,1.6);
}
@keyframes modalPop {
  from { transform: scale(0.92); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.cookie-modal h3 {
  color: #004D40;
  margin-bottom: 6px;
  font-size: 1.18rem;
}
.cookie-modal label {
  font-weight: 600;
  color: #004D40;
  font-size: 1.06rem;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.cookie-toggle {
  appearance: none;
  width: 36px;
  height: 18px;
  background: #E2E2E0;
  border-radius: 11px;
  position: relative;
  outline: none;
  cursor: pointer;
  margin-left: 8px;
  transition: background 0.13s;
}
.cookie-toggle:checked {
  background: #A38659;
}
.cookie-toggle:before {
  content: '';
  position: absolute;
  top: 2px; left: 2px;
  width: 14px; height: 14px;
  border-radius: 50%; background: #fff;
  transition: transform 0.16s;
}
.cookie-toggle:checked:before {
  transform: translateX(16px);
}
.cookie-modal-close {
  position: absolute;
  top: 10px; right: 10px;
  background: none;
  color: #004D40;
  font-size: 1.6rem;
  border-radius: 50%;
  width: 38px; height: 38px;
  transition: background 0.13s, color 0.16s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: rgba(0,77,64,0.09);
  color: #A38659;
}
.cookie-modal-categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 14px;
}
.cookie-modal .cookie-btns {
  justify-content: flex-end;
  margin-top: 10px;
}

/* --- RESPONSIVE QUERIES (MOBILE-FIRST) --- */
@media (max-width: 1100px) {
  .features-grid, .service-cards, .property-list, .blog-post-list, .benefits-grid {
    gap: 18px;
  }
}
@media (max-width: 900px) {
  .feature-card, .service-card, .property, .blog-post, .benefits-grid > div {
    min-width: 165px;
    flex: 1 1 160px;
    padding: 18px 10px;
  }
}
@media (max-width: 768px) {
  html, body {
    font-size: 94%;
  }
  header {
    padding: 0 13px;
    min-height: 56px;
  }
  header .main-nav, .cta-primary {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
    margin-left: auto;
  }
  .container {
    padding-left: 7px;
    padding-right: 7px;
  }
  .hero-section {
    border-radius: 0 0 18px 18px;
    min-height: 170px;
  }
  .hero-section .container {
    min-height: 120px;
  }
  .hero-section h1 {
    font-size: 1.4rem;
  }
  .section, section {
    margin-bottom: 38px;
    padding: 22px 5px;
  }
  .features-grid, .benefits-grid, .service-cards, .property-list, .blog-post-list {
    flex-direction: column;
    gap: 16px;
  }
  .content-grid {
    flex-direction: column;
    gap: 10px;
  }
  .card {
    min-width: 140px;
  }
  .card-container {
    flex-direction: column;
    gap: 14px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
  .testimonial-card {
    padding: 15px 10px 15px 10px;
    border-radius: 13px 25px 13px 25px;
    font-size: 0.98rem;
  }
  .pricing-table th, .pricing-table td {
    padding: 10px;
    font-size: 0.99rem;
  }
  .cookie-modal {
    min-width: unset;
    max-width: 97vw;
    padding: 19px 8px 17px 11px;
  }
}
@media (max-width: 520px) {
  h1 { font-size: 1.18rem; }
  h2 { font-size: 1.08rem; }
  h3 { font-size: 1.01rem; }
  .container, .section, section {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}

/* --- UTILS & MICRO-INTERACTIONS --- */
:focus {
  outline: 2px solid #A38659;
  outline-offset: 2px;
}

.card, .feature-card, .service-card, .property, .testimonial-card, .blog-post, .process-steps, .benefits-grid > div {
  transition: box-shadow 0.2s, border 0.2s, transform 0.17s;
}
.card:hover, .feature-card:hover, .service-card:hover, .property:hover, .testimonial-card:hover, .blog-post:hover, .benefits-grid > div:hover {
  box-shadow: 0 8px 32px rgba(0,77,64,0.12);
  transform: translateY(-2px) scale(1.02);
}

::-webkit-scrollbar {
  width: 7px;
  background: #E1E6E4;
}
::-webkit-scrollbar-thumb {
  background: #BCA07A;
  border-radius: 8px;
}

/* Geometric Accents */
.value-list li:before, .feature-card:after {
  box-shadow: 0 1px 2px rgba(163,134,89,0.09);
}
.feature-card:after {
  content: '';
  position: absolute;
  left: 18px;
  bottom: 18px;
  width: 22px;
  height: 22px;
  background: rgba(163, 134, 89, 0.09);
  border-radius: 0 8px 20px 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.5;
}

/* --- END --- */
