/* RESET & BASE STYLES */
html {
  box-sizing: border-box;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  color: #232D4B;
  background: #F9F9F4;
  min-height: 100vh;
  line-height: 1.65;
  letter-spacing: 0.01em;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: #4FB377;
  text-decoration: none;
  transition: color 0.25s;
}
a:hover, a:focus {
  color: #232D4B;
  text-decoration: underline;
}
ul, ol {
  margin-left: 1.2em;
  margin-bottom: 16px;
}
section, main, footer {
  width: 100%;
}
h1, h2, h3, h4, h5 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: bold;
  color: #232D4B;
  margin-bottom: 16px;
}
h1 { font-size: 2.5rem; letter-spacing: -1px; margin-bottom: 18px; }
h2 { font-size: 1.75rem; margin-bottom: 14px; }
h3 { font-size: 1.26rem; margin-bottom: 10px; font-weight: 600; }
h4 { font-size: 1.13rem; }
p, li, dl, dt, dd {
  font-size: 1rem;
  margin-bottom: 14px;
}
strong, b { font-weight: 600; }

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 18px;
  width: 100%;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* HEADER & NAVIGATION */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border-bottom: 4px solid #4FB377;
  padding: 0 0 0 4px;
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: 66px;
  box-shadow: 0 1px 8px 0 #d9eaf43a;
}
.brand-logo {
  display: flex;
  align-items: center;
  height: 54px;
  margin-right: 8px;
}
.brand-logo img {
  height: 42px;
  width: auto;
}
.main-nav {
  display: flex;
  gap: 20px;
  align-items: center;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
}
.main-nav a {
  font-size: 1rem;
  color: #232D4B;
  padding: 8px 14px;
  border-radius: 6px;
  font-weight: 500;
  transition: background 0.24s, color 0.18s;
}
a.btn-primary {
  color: white;
}
.main-nav a:not(.btn-primary):hover, .main-nav a:not(.btn-primary):focus {
  background: #E2F6EC;
  color: #4FB377;
}
.btn-primary {
  background: #232D4B;
  color: #fff;
  border-radius: 6px;
  padding: 10px 22px;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.014em;
  border: none;
  transition: background 0.2s, transform 0.2s;
  box-shadow: 0 2px 10px 0 #4fb37721;
  cursor: pointer;
  margin-left: 10px;
  outline: none;
}
.btn-primary:hover,.btn-primary:focus {
  background: #4FB377;
  color: #232D4B;
  transform: translateY(-1px) scale(1.035);
}
.btn-secondary {
  background: #fff;
  color: #232D4B;
  border: 2px solid #4FB377;
  border-radius: 6px;
  padding: 10px 20px;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.012em;
  margin: 15px 0 0 0;
  box-shadow: 0 1px 4px #4fb37714;
  cursor: pointer;
  transition: background 0.2s, color 0.18s;
  outline: none;
}
.btn-secondary:hover,.btn-secondary:focus {
  background: #4FB377;
  color: #fff;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.3rem;
  color: #232D4B;
  margin-left: 12px;
  line-height: 1;
  cursor: pointer;
  transition: color 0.16s;
  z-index: 120;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  color: #4FB377;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(35,45,75,0.97);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  transform: translateX(-100vw);
  transition: transform 0.38s cubic-bezier(0.6, 0.2, 0.2, 0.95);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.active {
  transform: translateX(0);
  pointer-events: all;
  opacity: 1;
}
.mobile-menu-close {
  font-size: 2.2rem;
  background: none;
  border: none;
  color: #fff;
  margin: 22px 24px 14px auto;
  cursor: pointer;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  margin: 44px 0 0 32px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.18rem;
  letter-spacing: 0.03em;
  padding: 10px 0;
  border-radius: 4px;
  font-weight: 600;
  width: 220px;
  outline: none;
  transition: background 0.18s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #4FB377;
  color: #232D4B;
  text-decoration: none;
}

@media (max-width: 980px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

@media (min-width: 981px) {
  .mobile-menu {
    display: none !important;
  }
}

/* MAIN SECTIONS LAYOUT */
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
.hero-section {
  background: #fffbe9;
  margin-bottom: 60px;
  padding: 56px 0 60px 0;
  box-shadow: 0 4px 48px #ffe45c24;
  border-radius: 0 0 40px 0;
  position: relative;
  overflow: hidden;
}
.hero-section::after {
  content: '';
  position: absolute;
  top: 8px;
  right: -50px;
  width: 320px;
  height: 200px;
  background: #4FB377;
  border-radius: 50% 70% 71% 50%/60% 49% 61% 49%;
  opacity: 0.10;
  z-index: 0;
  pointer-events: none;
}
.hero-section .container {
  position: relative;
  z-index: 1;
}
.subheadline {
  font-size: 1.2rem;
  color: #2A4159;
  margin-bottom: 24px;
  font-style: italic;
}
.features-section {
  background: #F9F9F4;
}
.features-section h2 {
  color: #232D4B;
  font-size: 1.7rem;
  margin-bottom: 15px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  list-style: none;
  justify-content: space-between;
  margin-top: 22px;
  margin-bottom: 6px;
}
.feature-grid li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 3px 18px #232d4b15;
  padding: 26px 18px;
  min-width: 220px;
  flex: 1 1 220px;
  max-width: 280px;
  transition: transform 0.18s, box-shadow 0.2s;
}
.feature-grid li:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 30px #4fb37736;
}
.feature-grid img {
  height: 48px;
  margin-bottom: 2px;
}

/* CARD, GRID, FLEX LAYOUTS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 2px 16px #232d4b0f;
  padding: 30px 20px;
  transition: box-shadow 0.2s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 8px 28px #232d4b17;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}
.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) {
  .content-grid, .feature-grid, .card-container, .text-image-section {
    flex-direction: column;
    gap: 14px;
    align-items: stretch;
  }
}

/* SERVICES STYLES */
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin: 24px 0 24px 0;
  list-style: none;
}
.service-list li {
  background: #eefefa;
  border-radius: 18px;
  box-shadow: 0 1px 10px #4fb37717;
  flex: 1 1 235px;
  min-width: 210px;
  max-width: 330px;
  padding: 28px 20px 16px 20px;
  position: relative;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.17s, transform 0.14s;
}
.service-list li:hover {
  box-shadow: 0 5px 22px #4fb37722;
  transform: translateY(-2px) scale(1.015);
}
.service-list .price {
  color: #4FB377;
  font-weight: bold;
  font-size: 1.07rem;
}

/* HIGHLIGHTS, NEWS, ARTICLES */
.highlights-section {
  background: #232D4B;
  color: #fff;
  border-radius: 40px 0 40px 0;
  margin-bottom: 64px;
  position: relative;
}
.highlights-section h2,
.highlights-section .btn-primary {
  color: #F9F9F4;
}
.latest-articles {
  margin-bottom: 20px;
  padding-left: 8px;
  list-style: circle inside;
  color: #F9F9F4;
}
.news-ticker {
  margin: 22px 0 24px 0;
  padding: 10px 20px;
  background: #4FB377;
  color: #fff;
  border-radius: 20px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.13rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 14px #232d4b1a;
  animation: scrollTicker 22s linear infinite;
  white-space: nowrap;
  overflow: hidden;
}
@keyframes scrollTicker {
  0% { text-indent: 100%; }
  100% { text-indent: -100%; }
}

/* TESTIMONIALS */
.testimonials-section {
  background: #fff;
  border-radius: 0 0 50px 0;
}
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 22px 0;
  justify-content: flex-start;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 32px 24px;
  background: #E2F6EC;
  border-radius: 22px;
  box-shadow: 0 3px 12px #232d4b13;
  flex: 1 1 276px;
  min-width: 200px;
  max-width: 340px;
  margin-bottom: 20px;
  transition: box-shadow 0.21s, background 0.16s;
}
.testimonial-card p {
  font-size: 1.07rem;
  color: #232D4B;
  text-align: left;
}
.testimonial-meta {
  font-size: 0.98rem;
  color: #2A4159;
  font-style: italic;
  text-align: right;
  width: 100%;
}
.testimonial-card:hover {
  background: #4FB377;
  color: #fff;
  box-shadow: 0 8px 36px #232d4b19;
}
.testimonial-card:hover p, .testimonial-card:hover .testimonial-meta {
  color: #fff;
}

/* POLICY, FAQ, FORMATS */
.policy-section, .faq-section, .thankyou-section {
  background: #fff;
  border-radius: 38px 0 36px 0;
  box-shadow: 0 2px 16px #232d4b0c;
  padding: 40px 20px;
  margin-bottom: 60px;
}
.faq-section dl {
  margin-bottom: 10px;
}
.faq-section dt {
  font-family: 'Montserrat',sans-serif;
  font-weight: 700;
  margin-top: 24px;
  color: #4FB377;
  font-size: 1.1rem;
}
.faq-section dd {
  margin-left: 8px;
  margin-bottom: 12px;
}
.policy-section h2, .faq-section h2 {
  color: #232D4B;
  font-size: 1.18rem;
  margin-bottom: 4px;
}

/* TEAM & INFOGRAPHICS */
.team-member-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 24px 0 0 0;
  padding-left: 12px;
}
.infographic {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 12px;
  margin-bottom: 0;
  list-style: none;
}
.infographic li {
  background: #fffbe9;
  border-radius: 16px;
  box-shadow: 0 2px 11px #232d4b11;
  min-width: 120px;
  padding: 15px 22px;
  font-size: 1.03rem;
  color: #232D4B;
  margin-bottom: 8px;
  text-align: center;
  font-family: 'Montserrat',sans-serif;
}
.milestones-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 24px 0;
}
.milestones-grid div {
  background: #EEF6FF;
  border-radius: 13px;
  padding: 10px 16px;
  min-width: 140px;
  font-size: 1rem;
  color: #232D4B;
}

/* ARTICLE & RESOURCE PRESENTATION */
.article-teasers, .tips-list, .trend-list, .trend-articles, .event-list, .workshop-list, .workshop-benefits, .startup-highlights, .review-list, .article-list {
  margin-bottom: 16px;
  padding-left: 14px;
}
.article-teasers li, .tips-list li, .trend-list li, .event-list li, .workshop-list li, .workshop-benefits li, .startup-highlights li, .review-list li, .article-list li {
  margin-bottom: 10px;
}
.category-filter, .filter-tabs {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 20px;
  font-family: 'Montserrat',sans-serif;
  flex-wrap: wrap;
}
.filter-tabs .tab {
  padding: 7px 14px;
  border-radius: 18px;
  background: #F9F9F4;
  color: #232D4B;
  font-weight: 500;
  transition: background 0.2s, color 0.15s;
  cursor: pointer;
}
.filter-tabs .selected {
  background: #4FB377;
  color: #fff;
  font-weight: 700;
}
.category-filter span {
  font-size: 1.02rem;
  padding: 6px 10px;
  color: #4FB377;
  font-weight: 600;
}

/* SPECIAL HIGHLIGHTS */
.rating-summary {
  background: #EEF6FF;
  border-radius: 14px;
  color: #232D4B;
  font-family: 'Montserrat',sans-serif;
  font-size: 1.03rem;
  font-weight: 600;
  padding: 10px 16px;
  margin: 26px 0 12px 0;
}

.pricing-highlight {
  background: #F9F9F4;
  color: #4FB377;
  font-size: 1.19rem;
  font-family: 'Montserrat';
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 13px;
  display: inline-block;
  margin: 20px 0 0 0;
}

/* CTA / SECTION ALIGNMENTS / BUTTONS */
.cta-section {
  background: #FFFCF8;
  border-radius: 30px 0 34px 0;
  margin-bottom: 50px;
  padding: 40px 20px;
  box-shadow: 0 2px 20px #f3d46913;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta-section .btn-primary, .cta-section .btn-secondary {
  margin-right: 12px;
}
.register-cta {
  display: flex;
  align-items: center;
  margin-top: 16px;
}

/* CONTACT & MAP */
.contact-section {
  background: #fffbe9;
  border-radius: 30px 0 34px 0;
  box-shadow: 0 2px 17px #f3d46911;
  margin-bottom: 62px;
  padding: 48px 18px;
}
.contact-section .text-section {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}
.contact-section img {
  height: 22px;
  vertical-align: middle;
  margin-right: 7px;
}
.map-embed {
  margin-top: 24px;
  padding: 15px 9px;
  font-style: italic;
  font-size: 1.08rem;
}

/* FOOTER */
.site-footer {
  background: #232D4B;
  color: #fff;
  padding: 32px 0 20px 0;
  font-size: 0.99rem;
}
.site-footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
  justify-content: space-between;
}
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}
.footer-menu a {
  color: #fff;
  font-weight: 500;
  padding: 7px 10px;
  border-radius: 4px;
  transition: background 0.21s, color 0.18s;
}
.footer-menu a:hover {
  background: #4FB377;
  color: #232D4B;
  text-decoration: none;
}
.brand-info {
  display: flex;
  align-items: center;
  gap: 13px;
}
.brand-info img {
  height: 36px;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-top: 14px;
}
.contact-info span {
  display: flex;
  align-items: center;
  gap: 7px;
}
.social-links {
  display: flex;
  align-items: center;
  gap: 16px;
}
.social-links a {
  display: inline-flex;
  background: #fff;
  border-radius: 50%;
  height: 32px;
  width: 32px;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, box-shadow 0.16s;
}
.social-links a:hover, .social-links a:focus {
  background: #4FB377;
  box-shadow: 0 3px 10px #232d4b23;
}
.social-links img {
  height: 18px;
  width: 18px;
}

@media (max-width: 990px) {
  .site-footer .container {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #232D4B;
  color: #fff;
  padding: 24px 10px 20px 10px;
  box-shadow: 0 -4px 24px #232d4b33;
  gap: 28px;
  font-size: 1rem;
  flex-wrap: wrap;
  animation: cookieBannerAppear 0.7s cubic-bezier(0.57, 0.14, 0.29, 0.98);
}
@keyframes cookieBannerAppear {
  0% { transform: translateY(80px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner .btn-cookie {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  margin: 0 7px;
  border: none;
  outline: none;
  border-radius: 7px;
  padding: 8px 22px;
  font-weight: 600;
  background: #4FB377;
  color: #fff;
  transition: background 0.18s, color 0.17s, transform 0.19s;
  cursor: pointer;
  font-size: 1rem;
}
.cookie-banner .btn-cookie:hover {
  background: #fff;
  color: #4FB377;
  transform: translateY(-2px) scale(1.06);
}
.cookie-banner .btn-cookie-secondary {
  background: #fff;
  color: #232D4B;
  border: 2px solid #4FB377;
}
.cookie-banner .btn-cookie-secondary:hover {
  background: #4FB377;
  color: #fff;
}

/* Cookie Settings Modal */
.cookie-modal-backdrop {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(35, 45, 75, 0.75);
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.23s;
}
.cookie-modal-backdrop.active {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal {
  background: #fff;
  color: #232D4B;
  border-radius: 20px;
  width: 98vw;
  max-width: 430px;
  padding: 38px 22px 24px 22px;
  box-shadow: 0 9px 34px #232d4b29;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  animation: cookieModalAppear 0.35s cubic-bezier(0.45, 0.13, 0.31, 0.96);
}
@keyframes cookieModalAppear {
  0% { transform: translateY(60px) scale(0.95); opacity: 0; }
  100% { transform: translateY(0) scale(1); opacity: 1; }
}
.cookie-modal h2 {
  font-size: 1.16rem;
  color: #4FB377;
  margin-bottom: 8px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #F9F9F4;
  border-radius: 7px;
  padding: 10px 12px;
  margin-bottom: 3px;
}
.cookie-category label {
  font-weight: 500;
}
.cookie-switch {
  position: relative;
  display: inline-block;
  width: 48px;
  height: 26px;
}
.cookie-switch input[type="checkbox"] { display: none; }
.cookie-slider {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #e5e5e5;
  border-radius: 13px;
  cursor: pointer;
  transition: background 0.19s;
}
.cookie-switch input:checked + .cookie-slider {
  background: #4FB377;
}
.cookie-slider:before {
  content: '';
  position: absolute;
  left: 4px; top: 4px;
  width: 18px; height: 18px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.19s;
  box-shadow: 0 1px 3px #232d4b12;
}
.cookie-switch input:checked + .cookie-slider:before {
  transform: translateX(20px);
}
/* Essential cookies always enabled */
.cookie-category.essential .cookie-switch {
  opacity: 0.5;
  pointer-events: none;
}
.cookie-modal-actions {
  margin-top: 18px;
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}
.cookie-modal .btn-cookie {
  font-size: 1rem;
  padding: 8px 18px;
}
.cookie-modal-close {
  position: absolute;
  top: 14px; right: 14px;
  background: none;
  border: none;
  font-size: 1.35rem;
  color: #232D4B;
  cursor: pointer;
  border-radius: 50%;
  width: 30px; height: 30px;
  transition: background 0.15s;
}
.cookie-modal-close:hover {
  background: #f3f3f3;
}

/* SPACING ADJUSTMENTS (Mobile first) */
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.25rem; }
  .section, section, .policy-section, .faq-section,.thankyou-section, .contact-section,.cta-section {
    padding: 18px 6px;
    margin-bottom: 34px;
    border-radius: 18px 0 20px 0;
  }
  .hero-section {
    padding: 28px 0 34px 0;
    border-radius: 0 0 24px 0;
  }
  .card, .testimonial-card, .service-list li, .feature-grid li {
    padding: 17px 10px;
    border-radius: 14px;
    min-width: unset;
    max-width: unset;
  }
  .site-footer {
    padding: 20px 0 14px 0;
    font-size: 0.92rem;
  }
  .mobile-nav a {
    font-size: 1rem;
    width: 100vw;
    min-width: 0;
  }
}

/* TYPOGRAPHY - CREATIVE ARTISTIC FLAIR */
h1, h2, .btn-primary, .brand-logo, .filter-tabs .tab.selected, .news-ticker, .pricing-highlight {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  letter-spacing: 0.025em;
  text-shadow: 0 1px 2px #4fb37719;
}
.tagline, .news-ticker, .confirmation-message {
  font-style: italic;
}

/* UNIQUE ARTISTIC DECORATIVE ELEMENTS */
.section {
  position: relative;
}
.section::before {
  content: '';
  display: block;
  position: absolute;
  left: -35px;
  top: 22px;
  width: 64px;
  height: 64px;
  background: #4FB377;
  opacity: 0.09;
  border-radius: 41% 60% 38% 62%;
  z-index: 0;
  pointer-events: none;
}
.section:nth-child(2n)::before {
  background: #232D4B;
  left: unset;
  right: -27px;
  top: 18px;
  opacity: 0.06;
}
@media (max-width: 820px) {
  .section::before { display: none; }
}

/* MICRO-INTERACTIONS */
a, .btn-primary, .btn-secondary {
  transition: background 0.22s, color 0.19s, box-shadow 0.16s, transform 0.18s;
}
.btn-primary:active, .btn-secondary:active, .btn-cookie:active {
  transform: scale(0.97);
  box-shadow: 0 0px 2px #a4a4a417;
}
.filter-tabs .tab:active {
  transform: scale(0.98);
}

/* TRANSITIONS FOR FLEX WRAPPED VIEWS */
.card, .testimonial-card, .feature-grid li, .service-list li {
  will-change: transform, box-shadow;
}

/* FIXES FOR OVERLAPS AND Z-INDEX */
.section, .policy-section, .faq-section, .thankyou-section, .contact-section, .hero-section, .cta-section {
  z-index: 1;
}

/* ACCESSIBILITY HIGHLIGHT ON FOCUS */
:focus {
  outline: 2px solid #4FB377;
  outline-offset: 2px;
}

/* PRINT SAFEGUARD */
@media print {
  .site-footer, .header, .mobile-menu, .cookie-banner, .cookie-modal-backdrop, .social-links {
    display: none !important;
  }
  section, main, .container {
    padding: 0 !important;
    margin: 0 !important;
    background: #fff !important;
    box-shadow: none !important;
  }
}
