/* ========================================================================
   RESET & BASE STYLES
   ===================================================================== */
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%;
  vertical-align: baseline;
  box-sizing: border-box;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  background: #F6F4F1;
  color: #21271C;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
*, *:before, *:after {
  box-sizing: inherit;
}
a {
  color: #21348A;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #F7A616;
  outline: none;
}
ul, ol {
  padding-left: 24px;
  margin-bottom: 16px;
}
img, picture {
  max-width: 100%;
  display: block;
  border: 0;
}
strong, b {
  font-weight: 700;
}
input, button, select, textarea {
  font-family: inherit;
  font-size: inherit;
}
button {
  cursor: pointer;
  background: none;
  border: none;
}
::-webkit-input-placeholder { color: #717C58; opacity: 1; }
::-moz-placeholder { color: #717C58; opacity: 1; }
:-ms-input-placeholder { color: #717C58; opacity: 1; }
::placeholder { color: #717C58; opacity: 1; }

/* ========================================================================
   NATURE ORGANIC PALETTE & VARIABLES
   ===================================================================== */
:root {
  --lv-primary: #21348A;
  --lv-green: #5B8C21;
  --lv-dark-green: #3A5230;
  --lv-forest: #417154;
  --lv-earth: #A88E6A;
  --lv-beige: #ECE8DF;
  --lv-cream: #F6F4F1;
  --lv-bark: #5B4323;
  --lv-accent: #F7A616;
  --lv-accent-dark: #D38B09;
  --lv-bg: #F6F4F1;
  --lv-bg-section: #ECE8DF;
  --lv-bg-card: #FFFFFF;
  --lv-border: #D9D5D0;
  --lv-text: #21271C;
  --lv-text-dark: #21271C;
  --lv-text-secondary: #596047;
  --lv-shadow: 0 4px 24px 0 rgba(108, 115, 80, 0.10);
  --lv-radius: 18px;
}

body {
  background: var(--lv-bg);
  color: var(--lv-text);
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ========================================================================
   TYPOGRAPHY
   ===================================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  color: var(--lv-dark-green);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
h1 {
  font-size: 2rem;
  line-height: 1.1;
  margin-bottom: 20px;
}
h2 {
  font-size: 1.6rem;
  line-height: 1.18;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.25rem;
  line-height: 1.22;
  margin-bottom: 14px;
}
h4, h5, h6 {
  font-size: 1rem;
}
p, li, blockquote {
  font-size: 1rem;
  color: var(--lv-text-secondary);
}
blockquote {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-style: italic;
  color: var(--lv-forest);
  background: var(--lv-beige);
  border-left: 4px solid var(--lv-green);
  margin: 0 0 12px 0;
  padding: 12px 22px 12px 18px;
  border-radius: 0 18px 18px 0;
}

/* Button/cta classes */
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9em 2em;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 30px;
  transition: background .2s, color .2s, box-shadow .2s, border .2s;
  box-shadow: 0 2px 8px 0 rgba(91,140,33,0.07);
  border: 2px solid transparent;
  letter-spacing: 0.01em;
  margin-top: 12px;
}
.cta.primary {
  background: var(--lv-green);
  color: #fff;
  border-color: var(--lv-green);
}
.cta.primary:hover, .cta.primary:focus {
  background: var(--lv-accent);
  border-color: var(--lv-accent-dark);
  color: var(--lv-dark-green);
  box-shadow: 0 4px 18px 2px rgba(247,166,22,0.08);
}
.cta.secondary {
  background: var(--lv-bg-section);
  color: var(--lv-green);
  border: 2px solid var(--lv-green);
}
.cta.secondary:hover, .cta.secondary:focus {
  background: var(--lv-green);
  color: #fff;
}

/* ========================================================================
   HEADER & MAIN NAVIGATION
   ===================================================================== */
header {
  background: var(--lv-bg-section);
  border-bottom: 1px solid var(--lv-border);
  width: 100%;
  z-index: 9;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px 16px 20px;
  min-height: 80px;
  gap: 32px;
}
header img {
  height: 42px;
  width: auto;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: var(--lv-dark-green);
  font-weight: 500;
  font-size: 1rem;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: color .2s, border .2s;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--lv-accent);
  border-bottom: 2px solid var(--lv-accent);
}

/* Hide menu toggle on desktop */
.mobile-menu-toggle {
  display: none;
}

/* ========================================================================
   FLEXBOX LAYOUTS & SECTION SPACING
   ===================================================================== */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--lv-bg-section);
  border-radius: var(--lv-radius);
  box-shadow: var(--lv-shadow);
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--lv-bg-card);
  border-radius: var(--lv-radius);
  box-shadow: var(--lv-shadow);
  padding: 24px 18px;
  margin-bottom: 20px;
  position: relative;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
.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: #fff;
  border-radius: var(--lv-radius);
  box-shadow: var(--lv-shadow);
  margin-bottom: 20px;
  flex: 1 1 340px;
  min-width: 260px;
  border-left: 6px solid var(--lv-green);
  transition: box-shadow 0.2s, border-color 0.2s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 32px 0 rgba(91,140,33,0.18);
  border-left: 6px solid var(--lv-accent);
}
.testimonial-card blockquote {
  background: transparent;
  border: none;
  padding: 0 0 0 0;
  margin-bottom: 8px;
  color: var(--lv-text-dark);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.rating-summary {
  margin-top: 18px;
  font-size: 1.1rem;
  color: var(--lv-dark-green);
  font-weight: 600;
}
.statistics {
  margin-top: 18px;
  font-size: 1.05rem;
  color: var(--lv-forest);
  font-weight: 500;
}

/* Hero Section */
.hero {
  background: linear-gradient(115deg, #ECE8DF 0%, #F6F4F1 98%);
  min-height: 320px;
  border-radius: var(--lv-radius);
  box-shadow: var(--lv-shadow);
  margin-bottom: 60px;
  padding: 48px 0 36px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 20px;
}
.hero h1 {
  color: var(--lv-green);
  font-size: 2.25rem;
  letter-spacing: -0.02em;
}

/* Features & Service List */
.features-grid,
.service-list, .article-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin: 36px 0 0 0;
  list-style: none;
}
.features-grid li,
.service-list li, .article-list li {
  background: #fff;
  border-radius: var(--lv-radius);
  box-shadow: var(--lv-shadow);
  padding: 26px 20px;
  flex: 1 1 320px;
  min-width: 250px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  align-items: flex-start;
  margin-bottom: 20px;
  border-left: 4px solid var(--lv-green);
  transition: border 0.2s, box-shadow 0.2s;
}
.features-grid li:hover,
.service-list li:hover,.article-list li:hover {
  border-left: 4px solid var(--lv-accent);
  box-shadow: 0 8px 32px rgba(91,140,33,0.13);
}
.features-grid img,
.service-list img {
  width: 44px;
  height: 44px;
  margin-bottom: 6px;
}
.service-price {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--lv-accent);
  margin-top: 8px;
}

/* Pricing Table */
.pricing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-bottom: 24px;
  background: var(--lv-bg-card);
  border-radius: var(--lv-radius);
  overflow: hidden;
  box-shadow: var(--lv-shadow);
}
.pricing-table th, .pricing-table td {
  padding: 16px 20px;
  text-align: left;
  font-size: 1rem;
  border-bottom: 1px solid var(--lv-border);
}
.pricing-table th {
  background: var(--lv-cream);
  color: var(--lv-dark-green);
  font-size: 1.05rem;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
}
.pricing-table tbody tr:last-child td {
  border-bottom: none;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(99deg, #D4E8D4 0%, #F7F7FA 80%);
  box-shadow: var(--lv-shadow);
  border-radius: var(--lv-radius);
  padding: 38px 18px;
  margin: 60px 0 0 0;
  text-align: center;
}
.cta-section .content-wrapper {
  align-items: center;
  justify-content: center;
}

/* Article/Porady Sections */
.article-list li a {
  margin-top: 8px;
  color: var(--lv-primary);
  font-weight: 600;
  font-family: inherit;
  font-size: 1rem;
  transition: color 0.2s;
}
.article-list li a:hover {
  color: var(--lv-accent);
}

.search-bar {
  width: 100%;
  max-width: 340px;
  border-radius: 20px;
  border: 1.5px solid var(--lv-green);
  padding: 10px 16px;
  background: var(--lv-bg);
  font-size: 1rem;
  margin-bottom: 16px;
  color: var(--lv-text);
}

.featured-articles {
  margin-top: 18px;
  background: var(--lv-beige);
  padding: 16px 20px;
  border-radius: 16px;
}
.featured-articles h3 {
  margin-bottom: 10px;
}
.featured-articles ul {
  margin-bottom: 0;
}

/* FAQ */
.faq-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.faq-item {
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--lv-shadow);
  padding: 18px 18px 10px 18px;
  margin-bottom: 20px;
  flex: 1 1 300px;
  min-width: 200px;
}
.faq-item h3 {
  color: var(--lv-green);
  margin-bottom: 6px;
}
.faq-item p {
  color: var(--lv-text-secondary);
}

/* Contact Block / Footer contacts */
.contact-block,
.contact-info {
  background: var(--lv-bg-card);
  border-radius: 14px;
  box-shadow: var(--lv-shadow);
  padding: 18px 22px;
  margin-bottom: 18px;
}

/* Service Benefits Summary */
.service-benefits-summary {
  padding: 16px 22px;
  background: var(--lv-beige);
  border-radius: 14px;
  margin-bottom: 18px;
}

.next-steps {
  margin-top: 24px;
  background: var(--lv-bg-section);
  border-radius: 13px;
  padding: 16px 20px;
  text-align: center;
}

/* Lists inside sections */
.text-section ul, .text-section ol,
.section ul, .section ol 
{
  margin-bottom: 0;
}

.text-section ul li,
.section ul li {
  margin-bottom: 7px;
  color: var(--lv-dark-green);
  position: relative;
  padding-left: 20px;
}
.text-section ul li:before,
.section ul li:before {
  content: '\2022';
  color: var(--lv-green);
  position: absolute;
  left: 0; top: 1px;
  font-size: 1.3em;
  line-height: 1;
}
.text-section ol li,
.section ol li {
  color: var(--lv-dark-green);
  padding-left: 0;
}

/* ========================================================================
   FOOTER
   ===================================================================== */
footer {
  background: var(--lv-earth);
  color: #fff;
  padding: 40px 0 20px 0;
  margin-top: 36px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-menu {
  display: flex;
  flex-direction: row;
  gap: 24px;
  flex-wrap: wrap;
  align-items: center;
}
.footer-menu a {
  color: #fff;
  opacity: 0.95;
  font-size: 1rem;
  transition: color 0.2s, opacity 0.2s;
}
.footer-menu a:hover, .footer-menu a:focus {
  color: var(--lv-accent);
  opacity: 1;
}
.contact-info {
  background: rgba(255,255,255,0.10);
  color: #fff;
  font-size: 1rem;
  box-shadow: none;
  border-radius: 8px;
}
.footer-brand img {
  width: 46px;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.06));
}

/* ========================================================================
   MOBILE NAVIGATION & HAMBURGER
   ===================================================================== */
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  right: 18px;
  top: 17px;
  width: 48px;
  height: 48px;
  z-index: 33;
  background: var(--lv-green);
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 9px 1px rgba(66,113,84,0.05);
  font-size: 2rem;
  transition: background .2s, box-shadow .2s;
  border: none;
  outline: none;
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:focus {
  background: var(--lv-accent);
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(239,244,233,0.98);
  backdrop-filter: blur(2px);
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.52,0,0.14,1);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0;
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: var(--lv-green);
  color: #fff;
  font-size: 2rem;
  margin: 26px 26px 0 0;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 9px 1px rgba(66,113,84,0.07);
  transition: background .2s;
}
.mobile-menu-close:hover,.mobile-menu-close:focus {
  background: var(--lv-accent);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-top: 32px;
  padding: 0 38px;
  gap: 20px;
}
.mobile-nav a {
  font-size: 1.16rem;
  color: var(--lv-dark-green);
  padding: 18px 0;
  border-bottom: 1px solid var(--lv-border);
  width: 100%;
  transition: background .2s, color .2s;
  border-radius: 6px;
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: var(--lv-beige);
  color: var(--lv-accent);
}

@media (min-width: 1000px) {
  .mobile-menu-toggle, .mobile-menu { display: none !important; }
}
@media (max-width: 999px) {
  .main-nav, header .cta.primary {
    display: none !important;
  }
}

/* Mobile Hamburger displayed only below 1000px */
@media (max-width: 999px) {
  .mobile-menu-toggle {
    display: flex;
  }
}

/* ========================================================================
   COOKIE BANNER & MODAL
   ===================================================================== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: var(--lv-bg-card);
  box-shadow: 0 -2px 12px 0 rgba(91,140,33,0.10);
  border-radius: 14px 14px 0 0;
  padding: 20px 16px 18px 16px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  z-index: 1202;
  animation: slideUp 0.48s cubic-bezier(.71,-0.01,.49,.99);
}
@keyframes slideUp {
  from { transform: translateY(110%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  flex: 1 1 240px;
  color: var(--lv-dark-green);
  font-size: 1rem;
  margin: 0;
}
.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.cookie-button {
  padding: 0.7em 1.5em;
  font-size: 1rem;
  font-family: 'Montserrat', 'Roboto', sans-serif;
  font-weight: 600;
  border-radius: 30px;
  border: 2px solid var(--lv-green);
  background: var(--lv-green);
  color: #fff;
  transition: background .2s, color .2s, border .2s;
}
.cookie-button:hover, .cookie-button:focus {
  background: var(--lv-accent);
  color: var(--lv-dark-green);
  border-color: var(--lv-accent-dark);
}
.cookie-button.reject {
  border-color: var(--lv-accent-dark);
  background: var(--lv-bg-card);
  color: var(--lv-green);
}
.cookie-button.reject:hover {
  background: var(--lv-accent);
  color: #fff;
}
.cookie-button.settings {
  background: var(--lv-bg-section);
  border-color: var(--lv-green);
  color: var(--lv-green);
}
.cookie-button.settings:hover, .cookie-button.settings:focus {
  background: var(--lv-green);
  color: #fff;
}

/* Cookie modal */
.cookie-modal {
  position: fixed;
  left: 50%; top: 50%;
  transform: translate(-50%,-50%);
  z-index: 1302;
  background: var(--lv-bg-card);
  border-radius: 20px;
  box-shadow: 0 8px 32px 0 rgba(91,140,33,0.19);
  width: 95vw;
  max-width: 450px;
  padding: 32px 28px 22px 28px;
  animation: fadeIn 0.4s cubic-bezier(.44,0,.32,1);
}
@keyframes fadeIn {
  from { opacity: 0; transform: translate(-50%,-60%) scale(.97); }
  to { opacity: 1; transform: translate(-50%,-50%) scale(1); }
}
.cookie-modal h3 {
  color: var(--lv-green);
  font-size: 1.2rem;
  margin-bottom: 12px;
}
.cookie-modal label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 12px 0;
  font-size: 1rem;
  color: var(--lv-dark-green);
}
.cookie-modal input[type='checkbox'] {
  accent-color: var(--lv-green);
  width: 18px; height: 18px;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 20px;
  justify-content: flex-end;
}
.cookie-modal .modal-close {
  position: absolute; right: 14px; top: 11px;
  font-size: 1.5rem;
  background: var(--lv-green);
  color: #fff;
  border-radius: 50%;
  width: 34px; height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .17s;
}
.cookie-modal .modal-close:hover {
  background: var(--lv-accent);
}

.cookie-modal .category-info {
  font-size: .96rem;
  color: var(--lv-text-secondary);
  margin-bottom: 10px;
  margin-left: 32px;
}

/* Modal backdrop */
.cookie-overlay {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(120, 140, 95, 0.16);
  z-index: 1285;
  animation: fadeIn 0.2s ease;
}


/* ========================================================================
   RESPONSIVE DESIGN (MOBILE-FIRST)
   ===================================================================== */
@media (max-width: 768px) {
  .container {
    padding: 0 9px;
  }
  header .container {
    padding: 14px 7px 12px 9px;
    min-height: 62px;
  }
  .section {
    padding: 30px 7px;
    margin-bottom: 38px;
  }
  .content-grid, .text-image-section, .features-grid, .service-list, .faq-list, .card-container, .testimonial-slider {
    flex-direction: column !important;
    gap: 18px;
  }
  .testimonial-card {
    min-width: 0;
  }
  .hero {
    padding: 38px 0 20px 0;
    min-height: 180px;
  }
  .main-nav {
    gap: 10px;
  }
  .footer-menu, footer .container {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
    text-align: left;
  }
  .next-steps {
    padding: 12px 4px;
    font-size: 0.98rem;
  }
  .featured-articles, .service-benefits-summary {
    padding: 12px 8px;
  }
  .card, .faq-item, .service-list li, .features-grid li, .article-list li, .testimonial-card {
    padding: 18px 10px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.3rem;
  }
  h2 {
    font-size: 1.05rem;
  }
  .hero h1 {
    font-size: 1.2rem;
  }
  .card, .section, .cta-section {
    padding: 15px 4px;
  }
}

/* ========================================================================
   ORGANIC/NATURE DECORATIVE EFFECTS
   ===================================================================== */
.card, .features-grid li, .service-list li, .faq-item, .testimonial-card {
  border-radius: 16px 28px 14px 22px;  /* organic uneven corners */
}
.section, .cta-section, .hero {
  border-radius: 32px 17px 32px 24px;
  box-shadow: 0 4px 34px rgba(67, 113, 84, .10);
}

hr {
  border: none;
  border-top: 2px solid var(--lv-border);
  margin: 32px 0;
}

/* Decorative leaf-like organic shape (as background using ::before, not absolute for content) */
.hero:before {
  content: '';
  display: block;
  border-radius: 70% 42% 48% 82% / 55% 55% 80% 70%;
  background: rgba(91, 140, 33, 0.11);
  width: 160px; height: 100px;
  position: absolute;
  left: -38px; top: -16px;
  z-index: 0;
  pointer-events: none;
}
.hero .container, .hero .content-wrapper {
  position: relative;
  z-index: 1;
}

/* ========================================================================
   ANIMATIONS & INTERACTIONS
   ===================================================================== */
.cta, .cookie-button {
  transition: background .17s, color .17s, border .17s, box-shadow .2s, transform .15s;
}
.features-grid li,
.service-list li,.card, .testimonial-card, .faq-item {
  transition: box-shadow .18s, border .20s, transform .18s;
}
.features-grid li:hover,
.service-list li:hover,.card:hover, .testimonial-card:hover, .faq-item:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 28px 0 rgba(91,140,33,0.13);
}

.cta:active, .cookie-button:active {
  transform: scale(0.97);
}

/* Fade-in for testimonials */
.testimonial-slider .testimonial-card {
  opacity: 0;
  animation: fadeInSlide .8s forwards;
}
.testimonial-slider .testimonial-card:nth-child(1) { animation-delay: 0.09s; }
.testimonial-slider .testimonial-card:nth-child(2) { animation-delay: 0.18s; }
.testimonial-slider .testimonial-card:nth-child(3) { animation-delay: 0.27s; }
@keyframes fadeInSlide {
  from { opacity: 0; transform: translateY(32px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ========================================================================
   Z-INDEX STANDARDS (for overlays/ui)
   ===================================================================== */
header { z-index: 12; position: relative; }
.mobile-menu { z-index: 1001; }
.mobile-menu-toggle { z-index: 33; }
.cookie-banner { z-index: 1202; }
.cookie-modal { z-index: 1302; }
.cookie-overlay { z-index: 1285; }

/* ========================================================================
   PRINT (optional, simple)
   ===================================================================== */
@media print {
  .mobile-menu-toggle, .mobile-menu, .cta, .cookie-banner, .cookie-modal { display: none !important; }
  nav, header, footer { background: transparent !important; color: #222 !important; }
}
