/* ===========================================================================
   NATURE ORGANIC THEME + BRAND 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: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  background: #F5F5F2;
  color: #263528;
  min-height: 100vh;
  line-height: 1.7;
  letter-spacing: 0.01em;
  -webkit-tap-highlight-color: transparent;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}
a {
  color: #273356;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus {
  outline: 2px solid #ADC690;
  outline-offset: 2px;
}
a:hover {
  color: #789262;
}
strong {
  font-weight: 600;
}
em {
  font-style: italic;
}
ul, ol {
  padding-left: 1.25em;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #19261D;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.01em;
  margin-bottom: 18px;
}
h1 { font-size: 2.7rem; margin-bottom: 28px; }
h2 { font-size: 2.1rem; margin-bottom: 24px; }
h3 { font-size: 1.3rem; margin-bottom: 16px; }
h4, h5, h6 { font-size: 1rem; margin-bottom: 8px; font-weight: 600; }

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
}

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}

.content-wrapper {
  width: 100%;
}

/* ============================================================================
   NATURE ORGANIC COLOR PALETTE
   ============================================================================ */
:root {
  --dhz-primary: #273356;
  --dhz-secondary: #F5F5F2;
  --dhz-accent: #DC961E;
  --earth-brown: #927D5E;
  --earth-green: #789262;
  --earth-deepgreen: #355033;
  --cream-bg: #FAF9F6;
  --wood-bg: #ece4d9;
  --organic-shadow: rgba(81, 94, 60, 0.07);
  --organic-shadow-dark: rgba(49, 39, 20, 0.14);
  --testimonial-bg: #FFFBEA;
  --error: #b93746;
}

/* ============================================================================
   HEADER & NAVIGATION
   ============================================================================ */
header {
  background: var(--wood-bg);
  box-shadow: 0 2px 9px -2px var(--organic-shadow);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 16px;
}
.logo {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  padding: 6px 0;
}
.logo img {
  max-height: 48px;
  min-width: 120px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  flex: 1 1 auto;
  margin-left: 24px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #273356;
  padding: 8px 6px;
  border-radius: 6px;
  transition: background .17s, color .17s;
}
.main-nav a:hover,.main-nav a:focus {
  color: #19261D;
  background: #EAF4E6;
}
.cta-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  background: linear-gradient(97deg, #789262 0%, #DC961E 100%);
  color: #fff;
  border: none;
  border-radius: 26px;
  padding: 12px 28px;
  font-size: 1.05rem;
  font-weight: 600;
  box-shadow: 0 2px 8px var(--organic-shadow-dark);
  cursor: pointer;
  margin-left: 12px;
  transition: background 0.25s, box-shadow 0.25s, transform 0.12s;
  outline: none;
  display: inline-block;
  text-align: center;
  letter-spacing: 0.01em;
}
.cta-btn:hover, .cta-btn:focus {
  background: linear-gradient(92deg, #83B87A 0%, #DCB978 100%);
  color: #18380F;
  box-shadow: 0 4px 16px var(--organic-shadow-dark);
  transform: translateY(-2px) scale(1.025);
}

.mobile-menu-toggle {
  background: #789262;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 2.1rem;
  line-height: 1;
  width: 48px; height: 48px;
  display: none;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  margin-left: 16px;
  box-shadow: 0 1px 6px var(--organic-shadow-dark);
  transition: background 0.2s, color 0.2s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #355033;
}

@media (max-width: 1024px) {
  .main-nav {
    gap: 12px;
    margin-left: 8px;
  }
  .cta-btn {
    padding: 10px 20px;
    font-size: 1rem;
  }
}

@media (max-width: 900px) {
  header .container {
    flex-wrap: wrap;
    flex-direction: row;
    min-height: 64px;
  }
  .main-nav, .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

/* ============================================================================
   MOBILE MENU OVERLAY
   ============================================================================ */
.mobile-menu {
  position: fixed;
  z-index: 1003;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(245,245,242,0.97);
  backdrop-filter: blur(3px);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.77,.2,.19,1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 36px;
  padding-bottom: 24px;
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  margin-left: auto;
  margin-right: 26px;
  margin-bottom: 32px;
  background: #927D5E;
  border: none;
  color: #fff;
  font-size: 2.2rem;
  border-radius: 8px;
  width: 48px;
  height: 48px;
  box-shadow: 0 1px 6px var(--organic-shadow-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.21s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #DC961E;
  color: #19261D;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-left: 32px;
  margin-top: 16px;
  width: 80vw;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.15rem;
  color: #263528;
  background: none;
  padding: 16px 12px;
  border-radius: 9px;
  margin-bottom: 4px;
  width: 100%;
  transition: background 0.17s, color 0.17s;
}
.mobile-nav a:active,
.mobile-nav a:focus,
.mobile-nav a:hover {
  background: #EAF4E6;
  color: #789262;
}
@media (max-width: 540px) {
  .mobile-nav a {
    font-size: 1.02rem;
  }
  .mobile-menu-close { margin-right: 10px; }
}

/* ============================================================================
   LAYOUT & SECTION SPACING
   ============================================================================ */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
main section {
  margin-bottom: 0;
  padding: 0;
  background: none;
}
.content-wrapper {
  padding: 0;
}

.section, .hero, .features, .problem-solution, .services-preview, .pricing-preview, .guarantee, .consultants-preview, .testimonials-preview, .cta-final, .contact-short, .about-story, .brand-values, .cta, .services, .service-grid, .pricing, .contact, .address-map, .thank-you, .profiles, .profile-list, .legal, .cta-feedback {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: 28px 58px 32px 54px / 32px 54px 28px 48px;
  background: var(--cream-bg);
  box-shadow: 0 2px 16px var(--organic-shadow);
}
@media (max-width: 900px) {
  .section, .hero, .features, .problem-solution, .services-preview, .pricing-preview, .guarantee, .consultants-preview, .testimonials-preview, .cta-final, .contact-short, .about-story, .brand-values, .cta, .services, .service-grid, .pricing, .contact, .address-map, .thank-you, .profiles, .profile-list, .legal, .cta-feedback {
    padding: 28px 8px;
    border-radius: 21px 40px 21px 38px / 21px 38px 19px 32px;
    margin-bottom: 34px;
  }
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.card {
  position: relative;
  margin-bottom: 20px;
  border-radius: 23px 35px 19px 28px / 20px 28px 16px 28px;
  background: #fff;
  box-shadow: 0 2px 10px var(--organic-shadow);
  padding: 24px 20px;
  min-width: 260px;
  flex: 1 1 260px;
}

.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;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: var(--testimonial-bg);
  border-radius: 25px 45px 17px 30px / 20px 30px 17px 25px;
  box-shadow: 0 1px 8px var(--organic-shadow);
  margin-bottom: 20px;
  margin-top: 10px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

@media (max-width: 800px) {
  .content-grid, .card-container { flex-direction: column; gap: 20px; }
  .text-image-section { flex-direction: column; gap: 20px; }
}

/* ============================================================================
   HERO & CTA STYLES
   ============================================================================ */
.hero {
  background: linear-gradient(103deg, #EAF4E6 40%, #FFFBEA 99%);
  margin-top: 12px;
  border-radius: 48px 14px 80px 36px/ 48px 32px 48px 44px;
  box-shadow: 0 2px 18px var(--organic-shadow-dark);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 60px 22px 48px;
}
.hero h1 {
  color: #19261D;
  font-size: 2.8rem;
  margin-bottom: 20px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.hero p {
  font-size: 1.22rem;
  margin-bottom: 32px;
  color: #355033;
  max-width: 560px;
}
.hero .cta-btn {
  font-size: 1.17rem;
  margin-top: 7px;
}

/* Final CTA Section */
.cta, .cta-final, .cta-feedback {
  background: linear-gradient(98deg, #EAF4E6 0%, #fff 90%);
  border-radius: 23px 47px 25px 36px / 20px 34px 14px 27px;
  text-align: center;
  box-shadow: 0 2px 16px var(--organic-shadow-dark);
  display: flex;
  justify-content: center;
  align-items: center;
}
.cta .cta-btn, .cta-final .cta-btn, .cta-feedback .cta-btn {
  margin: 0 auto;
  font-size: 1.18rem;
  margin-bottom: 6px;
}

/* ============================================================================
   CARD, FEATURE, SERVICE & PROFILE STYLES
   ============================================================================ */
.feature-grid, .service-grid, .profile-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
  justify-content: flex-start;
}
.feature, .service-box, .profile-box {
  background: #fff;
  border-radius: 21px 35px 17px 30px / 19px 28px 15px 22px;
  box-shadow: 0 2px 10px var(--organic-shadow);
  padding: 28px 18px 28px 26px;
  flex: 1 1 300px;
  min-width: 252px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.feature img, .service-box img, .profile-box img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  margin-bottom: 16px;
}
.feature h3, .service-box h2, .profile-box h2 {
  font-size: 1.15rem;
  color: #355033;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 10px;
}

@media (max-width: 900px) {
  .feature-grid, .service-grid, .profile-list { flex-direction: column; gap: 16px; }
  .feature, .service-box, .profile-box { min-width: 0; }
}

/* ============================================================================
   TESTIMONIALS STYLES
   ============================================================================ */
.testimonials-preview, .testimonials, .profile-list .testimonial-card {
  background: var(--testimonial-bg);
}
.testimonial-card, .profile-box .testimonial-card {
  padding: 22px 24px;
  background: var(--testimonial-bg);
  border-radius: 20px 42px 18px 30px / 18px 28px 14px 24px;
  box-shadow: 0 1px 8px var(--organic-shadow-dark);
  margin-bottom: 18px;
  color: #19261D;
  font-size: 1.08rem;
}
.testimonial-card p { color: #263528; margin-bottom: 7px; }
.testimonial-attribution, .testimonial-meta {
  margin-top: 8px;
  color: #5C7043;
  font-size: 0.98rem;
}
.testimonial-meta strong { color: #263528; }
.testimonial-meta span:last-child { margin-left: 8px; color: #DC961E; letter-spacing: 1.2px; }

/* ============================================================================
   TABLE STYLING
   ============================================================================ */
table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 13px 23px 12px 14px/10px 15px 12px 15px;
  box-shadow: 0 1px 7px var(--organic-shadow);
  overflow: hidden;
  margin-bottom: 22px;
}
th, td {
  padding: 14px 18px;
  text-align: left;
  font-size: 1rem;
}
th {
  background: #789262;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
}
td {
  border-bottom: 1px solid #E5E1DD;
  color: #263528;
}
@media (max-width: 650px) {
  table, th, td { font-size: 0.97rem; }
  th, td { padding: 10px 6px; }
}

/* ============================================================================
   FOOTER
   ============================================================================ */
footer {
  background: var(--wood-bg);
  color: #263528;
  border-top-left-radius: 44px;
  border-top-right-radius: 24px;
  box-shadow: 0 -1px 16px var(--organic-shadow);
  margin-top: 32px;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 26px 8px 22px;
  gap: 8px;
}
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 7px;
  justify-content: center;
}
.footer-menu a {
  color: #789262;
  font-size: 1rem;
  border-radius: 6px;
  padding: 5px 10px;
  transition: background 0.2s, color 0.2s;
}
.footer-menu a:hover, .footer-menu a:focus { background: #EAF4E6; color: #263528; }
.brand-slogan {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #355033;
}
.contact-details {
  font-size: 0.93rem;
  color: #927D5E;
  opacity: 0.95;
  margin-top: 3px;
}

/* ============================================================================
   RESPONSIVE DESIGN
   ============================================================================ */
@media (max-width: 650px) {
  .container { padding-left: 5px; padding-right: 5px; }
  .brand-slogan { text-align: center; font-size: 0.99rem; }
}

@media (max-width: 540px) {
  h1{font-size:1.35rem;} h2{font-size:1.11rem;}
  .cta-btn { font-size: 1rem; padding: 10px 14px; border-radius: 19px; }
  .section,.hero,.features,.problem-solution,.services-preview,.pricing-preview,
  .guarantee,.consultants-preview,.testimonials-preview,.cta-final,.contact-short,
  .about-story,.brand-values,.cta,.services,.service-grid,.pricing,.contact,.address-map,
  .thank-you,.profiles,.profile-list,.legal,.cta-feedback {
    padding: 14px 2px;
    border-radius: 12px;
  }
}

/* ============================================================================
   COOKIE CONSENT BANNER & MODAL
   ============================================================================ */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 1100;
  background: linear-gradient(96deg,#F9F6F2 80%,#EAF4E6 100%);
  color: #263528;
  box-shadow: 0 -2px 16px var(--organic-shadow-dark);
  padding: 22px 18px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  gap: 22px;
  border-top-left-radius: 19px;
  border-top-right-radius: 19px;
  animation: cookiePopIn .9s cubic-bezier(.61,-0.03,.26,1.18);
}
@keyframes cookiePopIn {
  from { transform: translateY(200px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner p { max-width: 400px; font-size: 1rem; margin-bottom: 0; }
.cookie-btn-group {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-left: 14px;
  flex-wrap: wrap;
}
.cookie-btn {
  background: #789262;
  color: #fff;
  border: none;
  border-radius: 16px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 10px 18px;
  cursor: pointer;
  box-shadow: 0 1px 6px var(--organic-shadow);
  margin-right: 3px;
  transition: background 0.18s, color 0.15s;
}
.cookie-btn:focus,
.cookie-btn:hover {
  background: #355033;
}
.cookie-btn.reject {
  background: #927D5E;
}
.cookie-btn.reject:focus,
.cookie-btn.reject:hover {
  background: #b93746;
}
.cookie-btn.settings {
  background: #DC961E;
  color: #fff;
}
.cookie-btn.settings:focus,
.cookie-btn.settings:hover {
  background: #FFC14C;
  color: #273356;
}
@media (max-width: 600px) {
  .cookie-banner{flex-direction:column;gap:10px;padding:15px 4px;align-items:flex-start;}
  .cookie-btn-group{margin-left:0;gap:9px;}
}

.cookie-modal {
  position: fixed;
  z-index: 1122;
  left: 0; right: 0; bottom: 0; top: 0;
  background: rgba(36,32,24,0.23);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.26s;
  visibility: hidden;
  opacity: 0;
}
.cookie-modal.open { visibility: visible; opacity: 1; }
.cookie-pref-box {
  background: var(--wood-bg);
  color: #19261D;
  border-radius: 33px 47px 18px 40px / 18px 38px 22px 32px;
  box-shadow: 0 8px 22px var(--organic-shadow-dark);
  padding: 38px 28px 28px 28px;
  width: 100%;
  max-width: 420px;
  min-width: 260px;
  min-height: 220px;
  animation: popModal .55s cubic-bezier(.7, -0.02, .19, 1.22);
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
}
@keyframes popModal {
  from { transform: translateY(70px) scale(0.97); opacity: 0; }
  to   { transform: translateY(0) scale(1); opacity: 1; }
}
.cookie-pref-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  margin-bottom: 13px;
}
.cookie-category-label {
  flex: 1 1 auto;
  font-weight: 500;
  font-size: 1.08rem;
  color: #355033;
}
.cookie-category-toggle {
  width: 48px;
  height: 28px;
  border-radius: 20px;
  background: #e3e1df;
  position: relative;
  cursor: pointer;
  border: none;
  outline: none;
  box-shadow: 0 1px 4px var(--organic-shadow);
  transition: background 0.15s;
}
.cookie-category-toggle[aria-checked="true"] {
  background: #789262;
}
.cookie-category-toggle .toggle-dot {
  position: absolute;
  left: 4px; top: 4px;
  width: 20px; height: 20px;
  background: #fff;
  border-radius: 50%;
  transition: left 0.19s;
  box-shadow: 0 1px 3px var(--organic-shadow);
}
.cookie-category-toggle[aria-checked="true"] .toggle-dot {
  left: 24px;
  background: #263528;
}
.cookie-pref-actions {
  display: flex; gap: 14px; margin-top: 12px;
}
.cookie-pref-actions .cookie-btn { flex: 1 1 94px; }
.cookie-pref-box .cookie-pref-close {
  position: absolute;
  top: 16px; right: 18px;
  background: none;
  border: none;
  font-size: 1.7rem;
  color: #355033;
  cursor: pointer;
  border-radius: 8px;
  padding: 5px;
  transition: background 0.14s, color 0.15s;
}
.cookie-pref-box .cookie-pref-close:hover, .cookie-pref-box .cookie-pref-close:focus {
  background: #EAF4E6;
  color: #DC961E;
}
/* Always enabled style */
.cookie-category-label.essential { color: #927D5E; font-style: italic; }
.cookie-category-toggle[aria-disabled="true"] {
  opacity: 0.55;
  pointer-events: none;
}

/* ============================================================================
   GENERAL FORM ELEMENTS
   ============================================================================ */
input, select, textarea {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  padding: 10px 15px;
  border: 1px solid #AAC098;
  border-radius: 13px 23px 14px 21px/12px 17px 11px 18px;
  background: #fff;
  margin-bottom: 18px;
  color: #263528;
  outline: none;
  transition: border .16s, box-shadow .19s;
  box-shadow: 0 1px 5px var(--organic-shadow);
}
input:focus, select:focus, textarea:focus {
  border-color: #789262;
  box-shadow: 0 2px 10px var(--organic-shadow-dark);
}
button {
  font-family: 'Montserrat', Arial, sans-serif;
}
::-webkit-input-placeholder { color: #927D5E; }
::-moz-placeholder          { color: #927D5E; }
:-ms-input-placeholder      { color: #927D5E; }
::placeholder              { color: #927D5E; }

/* ============================================================================
   ORGANIC / NATURE-INSPIRED DECOR
   ============================================================================ */
/* Organic blob shadows at selected cards */
.card, .service-box, .feature, .profile-box, .testimonial-card, .profile-box .testimonial-card {
  position: relative;
}
.card::before, .service-box::before, .feature::before, .profile-box::before, .testimonial-card::before {
  content: "";
  position: absolute;
  z-index: 0;
  left: -9px; top: -12px;
  width: 80px; height: 28px;
  background: rgba(120,146,98,0.08);
  border-radius: 44px 36px 22px 33px;
  filter: blur(1.5px);
}
.card::after, .service-box::after, .feature::after, .testimonial-card::after {
  content: "";
  position: absolute;
  bottom: -18px; right: -10px;
  width: 65px; height: 23px;
  background: rgba(220,150,30,0.08);
  border-radius: 33px 22px 24px 31px;
  filter: blur(1.2px);
}

/* ============================================================================
   UTILITIES
   ============================================================================ */
.mt-1{margin-top:8px;}
.mt-2{margin-top:16px;}
.mt-3{margin-top:24px;}
.mb-1{margin-bottom:8px;}
.mb-2{margin-bottom:16px;}
.mb-3{margin-bottom:24px;}
.text-center{text-align:center;}
.text-right{text-align:right;}
.d-none{display: none !important;}


/* ============================================================================
   MISC: SPECIAL SECTIONS
   ============================================================================ */
.address-map {
  background: #fff;
  border-radius: 23px 37px 14px 29px / 13px 17px 10px 19px;
  box-shadow: 0 1px 9px var(--organic-shadow);
  padding: 25px 18px;
  margin-top: 20px;
}

.consultant-snippet {
  background: #fff;
  border-left: 5px solid #789262;
  border-radius: 9px 21px 11px 23px / 7px 14px 11px 17px;
  margin-bottom: 18px;
  box-shadow: 0 1px 5px var(--organic-shadow);
  padding: 14px 20px;
}

/* Thank-you page */
.thank-you{
  background: linear-gradient(99deg,#fff 83%,#EAF4E6 100%);
  border-radius:28px 35px 18px 30px/18px 32px 17px 15px;
  box-shadow:0 2px 18px var(--organic-shadow);
  text-align:center;
  padding-top:46px;
  padding-bottom:46px;
}

/* Legal/Datenschutz sections */
.legal {
  background: #fff;
  border-radius: 28px 48px 24px 44px/20px 34px 19px 29px;
  box-shadow: 0 2px 14px var(--organic-shadow);
  padding: 38px 32px;
  color: #263528;
  font-size: 1.08rem;
}

/* ============================================================================
   MICRO-INTERACTIONS & TRANSITIONS
   ============================================================================ */
.card, .service-box, .feature, .profile-box, .testimonial-card, .profile-box .testimonial-card, .consultant-snippet {
  transition: box-shadow 0.18s, transform 0.16s, background 0.17s;
}
.card:hover, .service-box:hover, .feature:hover, .profile-box:hover, .consultant-snippet:hover {
  background: #EAF4E6;
  box-shadow: 0 6px 20px var(--organic-shadow-dark);
  transform: translateY(-4px) scale(1.02);
}
.testimonial-card:hover, .profile-box .testimonial-card:hover {
  background: #FFF9CB;
  box-shadow: 0 10px 28px var(--organic-shadow);
  transform: translateY(-3px) scale(1.01);
}

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: #DC961E;
  box-shadow: 0 2px 10px var(--organic-shadow);
}

.cta-btn:active {
  transform: scale(0.97);
}


/* ============================================================================
   PRINT (PREVENT PRINT BG & SHADOW)
   ============================================================================ */
@media print {
  * { box-shadow: none !important; background: #fff !important; color: #222 !important; }
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal { display: none !important; }
}

/* ============================================================================
   END OF STYLE.CSS
   ============================================================================ */
