/* =====================
   CSS RESET & NORMALIZE
   ===================== */
html {
  box-sizing: border-box;
  font-size: 100%;
  scroll-behavior: smooth;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: #222;
  background: #fff;
  line-height: 1.6;
  min-height: 100vh;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color .2s cubic-bezier(.5,.2,.2,1);
}
ul, ol {
  list-style: none;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 1em;
  outline: none;
  border: none;
  background-color: transparent;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #111;
  margin-bottom: .6em;
  line-height: 1.12;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p, li, blockquote {
  color: #222;
  font-size: 1rem;
  margin-bottom: 1.2em;
}
strong { font-weight: 600; }

.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-start;
}

/* =====================
   HEADER & NAVIGATION
   ===================== */
header {
  background: #111;
  border-bottom: 1px solid #2C3E50;
  padding: 0;
  z-index: 100;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  height: 78px;
}
header a img {
  height: 46px;
  width: auto;
}
header nav {
  display: flex;
  align-items: center;
  gap: 26px;
}
header nav a {
  color: #f4f4f4;
  font-size: 1rem;
  opacity: .90;
  letter-spacing: 0.01em;
  padding: 6px 12px;
  border-radius: 4px;
  transition: background .2s cubic-bezier(.6,.3,.3,1), color .15s;
  font-weight: 500;
}
header nav a:hover, header nav a:focus {
  color: #fff;
  background: #23262b;
}

.cta.primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #2C3E50;
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 32px;
  box-shadow: 0 2px 20px rgba(44,62,80,0.08);
  transition: background .2s, color .2s, box-shadow .2s;
  text-transform: none;
  border: 1px solid #222;
  letter-spacing: 0.02em;
}
.cta.primary:hover, .cta.primary:focus {
  background: #191F23;
  color: #D9B673;
  box-shadow: 0 4px 30px rgba(44,62,80,0.17);
}

.cta.secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #2C3E50;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 32px;
  border: 2px solid #2C3E50;
  letter-spacing: 0.02em;
  transition: background .2s, color .2s, border .2s, box-shadow .2s;
}
.cta.secondary:hover, .cta.secondary:focus {
  background: #2C3E50;
  color: #fff;
  box-shadow: 0 4px 25px rgba(44,62,80,0.09);
}

.cta.link {
  color: #2C3E50;
  font-weight: 700;
  border-bottom: 1px solid #2C3E50;
  background: none;
  padding: 2px 2px;
  border-radius: 2px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  transition: color .15s, border-color .2s, background .2s;
}
.cta.link:hover, .cta.link:focus {
  color: #1a232b;
  border-bottom: 2px solid #D9B673;
  background: #F3F6F8;
}

header .cta {
  margin-left: 20px;
}

/* Hamburger button (mobile menu) */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 16px;
  right: 20px;
  z-index: 201;
  background: #ffffff;
  color: #2C3E50;
  border-radius: 50%;
  border: 1px solid #2C3E50;
  box-shadow: 0 2px 8px rgba(34,34,34,0.05);
  width: 44px;
  height: 44px;
  font-size: 2rem;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: box-shadow .15s, background .2s, color .2s;
}
.mobile-menu-toggle:focus {
  outline: 2px solid #D9B673;
}

@media (max-width: 1050px) {
  header .container nav,
  header .container .cta.primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
/* ============
   Mobile menu
   ============ */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(24,24,24,0.99);
  z-index: 210;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.7,.1,.3,1);
  display: flex;
  flex-direction: column;
  padding-top: 32px;
  padding-bottom: 32px;
  padding-left: 24px;
  padding-right: 24px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  color: #fff;
  border: none;
  font-size: 2.2rem;
  font-weight: 500;
  margin-left: auto;
  margin-bottom: 38px;
  cursor: pointer;
  transition: color .2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #D9B673;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-start;
  margin-top: 20px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.25rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 12px 8px;
  border-radius: 6px;
  transition: background .18s, color .15s;
  width: 100%;
  display: block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #2C3E50;
  color: #D9B673;
}
@media (max-width: 767px) {
  .mobile-nav a {
    font-size: 1.1rem;
    padding: 14px 4px;
  }
}

/* =================
   HERO (Landing)
   ================= */
.hero {
  background: #fff;
  margin-bottom: 60px;
  padding: 56px 0 36px 0;
  display: flex;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}
.hero h1 {
  color: #111;
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 18px;
  margin-top: 16px;
}
.hero p {
  font-size: 1.18rem;
  color: #222;
  margin-bottom: 28px;
  max-width: 540px;
  line-height: 1.7;
}
.hero .cta.primary {
  margin-top: 10px;
  font-size: 1.08rem;
}
@media (max-width: 800px) {
  .hero h1 { font-size: 2rem; }
  .hero {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}

/* =============
   FEATURES
   ============= */
.features {
  background: #F3F6F8;
  border-radius: 16px;
  margin-bottom: 60px;
}
.features .content-wrapper {
  gap: 18px;
}
.features h2 {
  font-size: 1.65rem;
  color: #222;
  margin-bottom: 12px;
}
.features ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 18px;
}
.features ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.08rem;
  background: #fff;
  color: #1a232b;
  border-radius: 12px;
  padding: 12px 20px;
  min-width: 210px;
  box-shadow: 0 2px 8px rgba(44,62,80,0.08);
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: box-shadow .15s, background .18s;
}
.features ul li img {
  width: 32px; height: 32px;
  filter: grayscale(1) brightness(0.15) contrast(2);
  opacity: 0.92;
}
@media (max-width: 700px) {
  .features ul {
    flex-direction: column;
    gap: 14px;
  }
  .features ul li { min-width: 0; width: 100%; }
}
.features p {
  color: #23262b;
  font-size: 1.02rem;
}

/* ============
   SERVICES HIGHLIGHT
   ============ */
.services-highlight {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 14px rgba(44,62,80,0.07);
}
.services-highlight h2 {
  color: #222;
}
.services-highlight ul {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 14px;
}
.services-highlight ul li {
  background: #F3F6F8;
  color: #111;
  border-radius: 10px;
  padding: 10px 20px;
  font-weight: 600;
  box-shadow: 0 2px 0 rgba(44,62,80,0.02);
}
.services-highlight .cta.secondary {
  margin-top: 6px;
}
@media (max-width: 800px) {
  .services-highlight ul {
    flex-direction: column;
    gap: 10px;
  }
}

/* ============
   PROCESS OVERVIEW
   ============ */
.process-overview, .process-description, .benefits {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(44,62,80,0.09);
}
.process-overview h2, .process-description h1, .benefits h2 {
  color: #111;
}
.process-overview ol, .process-description ol {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-family: 'Montserrat', Arial;
  font-size: 1.02rem;
  font-weight: 500;
  color: #23262b;
  margin-bottom: 16px;
}
.process-overview ol li, .process-description ol li {
  background: #F3F6F8;
  border-radius: 8px;
  padding: 10px 16px;
  min-width: 160px;
  box-shadow: 0 2px 5px rgba(44,62,80,0.06);
}
@media (max-width: 800px) {
  .process-overview ol, .process-description ol {
    flex-direction: column;
    gap: 8px;
  }
  .process-overview ol li, .process-description ol li
    { min-width: 0; }
}
.process-overview p, .process-description p, .benefits ul li {
  color: #23262b;
}

/* ================
   TESTIMONIALS
   ================ */
.testimonial-snippet, .testimonials {
  background: #F3F6F8;
  border-radius: 18px;
  box-shadow: 0 2px 15px rgba(44,62,80,0.08);
}
.testimonial-snippet .testimonial-card,
.testimonials .testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 20px;
  margin-bottom: 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(34,34,34,0.06);
  border: 1.5px solid #ececec;
}
.testimonial-card p {
  color: #181818;
  font-size: 1.14rem;
  font-style: italic;
  margin-bottom: 6px;
}
.testimonial-card strong {
  color: #2C3E50;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.testimonial-card.highlight {
  border-left: 6px solid #2C3E50;
  background: #f8f8fa;
  box-shadow: 0 4px 22px rgba(44,62,80,0.13);
}
.testimonials h1, .testimonials h2 { color: #111; }

@media (max-width: 600px) {
  .testimonial-snippet .testimonial-card, .testimonials .testimonial-card {
    padding: 14px 10px;
  }
}

/* ===================
   CARDS & FLEX SPACING
   =================== */
.card-container, .content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.card, .services-list ul li {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 1.5px 8px rgba(34,34,34,0.06);
  padding: 22px 20px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.services-list ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.services-list ul li {
  flex: 1 1 330px;
  min-width: 220px;
  border: 1.5px solid #F3F6F8;
  transition: box-shadow .18s, border-color .18s;
}
.services-list ul li:hover, .services-list ul li:focus-within {
  border-color: #2C3E50;
  box-shadow: 0 4px 24px rgba(44,62,80,0.13);
}
.services-list h2 {
  font-size: 1.33rem;
  color: #2C3E50;
  margin-bottom: 4px;
}
.services-list p {
  color: #222;
  font-size: 1rem;
  margin-bottom: 8px;
}
.services-list strong {
  color: #2C3E50;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}
@media (max-width: 900px) {
  .services-list ul {
    flex-direction: column;
    gap: 18px;
  }
  .services-list ul li {
    width: 100%;
    min-width: 0;
  }
}

.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: 14px;
  }
}

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

.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}

/* =========================
   CTA BANNER (action block)
   ========================= */
.cta-banner {
  background: #2C3E50;
  color: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 14px rgba(44,62,80,0.11);
  margin-bottom: 60px;
  margin-top: 16px;
}
.cta-banner .content-wrapper {
  align-items: center;
  gap: 16px;
}
.cta-banner h2 {
  color: #fff;
  font-size: 1.34rem;
  font-weight: 700;
  margin-bottom: 7px;
  text-align: center;
}

/* =============
   ABOUT PAGE
   ============= */
.about, .why-us {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(44,62,80,0.08);
}
.text-section ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  margin-bottom: 12px;
  margin-top: 4px;
}
.text-section ul li {
  background: #F3F6F8;
  color: #181818;
  border-radius: 8px;
  padding: 10px 20px;
  font-weight: 500;
  font-size: 1.02rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.text-section ul li img {
  width: 28px; height: 28px;
  filter: grayscale(1) brightness(0.18) contrast(1.6);
  opacity: 0.83;
}
@media (max-width: 600px) {
  .text-section ul {
    flex-direction: column;
    gap: 8px;
  }
}
blockquote {
  padding: 17px 28px;
  background: #F3F6F8;
  border-left: 4px solid #2C3E50;
  color: #222;
  font-style: italic;
  border-radius: 9px;
  margin-bottom: 20px;
  font-size: 1.08rem;
  letter-spacing: 0.01em;
}

/* =============
   FAQ page
   ============= */
.faq .text-section h2 {
  font-family: 'Montserrat';
  font-size: 1.22rem;
  color: #23262b;
  margin-top: 20px;
}
.faq .text-section ul {
  margin-bottom: 8px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq .text-section ul li {
  background: #F3F6F8;
  color: #21262b;
  border-radius: 6px;
  font-size: 1rem;
  padding: 10px 16px;
  font-weight: 500;
}
.faq .text-section a.cta.secondary {
  margin-top: 14px;
}

/* =============
   CONTACT PAGE
   ============= */
.contact .text-section h2 {
  font-size: 1.18rem;
  margin-bottom: 12px;
}
.contact .text-section ul {
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact .text-section ul li {
  color: #2C3E50;
  font-weight: 500;
}
.contact .cta.primary {
  margin-top: 16px;
}

/* ===============
   POLICY PAGES
   =============== */
.privacy-policy, .gdpr, .cookie-policy, .terms-of-use {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(44,62,80,0.07);
}
.privacy-policy h2, .gdpr h2, .cookie-policy h2, .terms-of-use h2 {
  color: #2C3E50;
  font-size: 1.11rem;
  margin-top: 18px;
}
.privacy-policy ul, .gdpr ul, .cookie-policy ul, .terms-of-use ul {
  margin-bottom: 4px;
  margin-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  color: #222;
  font-size: 1rem;
}
.privacy-policy a, .gdpr a, .cookie-policy a, .terms-of-use a {
  color: #2C3E50;
  text-decoration: underline;
}
.privacy-policy a:hover, .gdpr a:hover, .cookie-policy a:hover, .terms-of-use a:hover {
  color: #D9B673;
}

/* ================
   THANK YOU PAGE
   ================ */
.thank-you {
  background: #F3F6F8;
  border-radius: 18px;
  box-shadow: 0 2px 14px rgba(44,62,80,0.09);
  text-align: center;
  padding-bottom: 80px;
}
.thank-you h1 {
  font-size: 2rem;
  color: #2C3E50;
  margin-bottom: 22px;
}
.thank-you p {
  color: #2C3E50;
  font-size: 1.07rem;
  margin-bottom: 28px;
}

/* ============
   FOOTER
   ============ */
footer {
  background: #23262b;
  color: #fff;
  padding: 35px 0 15px 0;
  border-top: 1px solid #2C3E50;
  font-size: 0.99rem;
  margin-top: 60px;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-bottom: 8px;
}
footer nav a {
  color: #ccc;
  font-size: 1em;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  transition: color .15s, border .14s;
}
footer nav a:hover, footer nav a:focus {
  color: #D9B673;
  border-bottom: 1.5px solid #D9B673;
}
footer p {
  color: #bbb;
  font-size: 0.98em;
}

/* ============== 
   COOKIE BANNER
   ============== */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #1a232b;
  color: #fff;
  z-index: 1900;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 14px 24px 14px;
  gap: 32px;
  box-shadow: 0 -2px 31px rgba(44,62,80,0.29);
  font-size: 1.07rem;
  transition: transform .33s cubic-bezier(.5,.2,.2,1);
  transform: translateY(0);
}
.cookie-banner.hide {
  transform: translateY(100%);
  pointer-events: none;
  opacity: 0;
}
.cookie-banner__text {
  flex: 1 1 350px;
  max-width: 700px;
  margin-right: 18px;
}
.cookie-banner__actions {
  display: flex;
  gap: 14px;
  align-items: center;
}
.cookie-banner button {
  background: #2C3E50;
  color: #fff;
  font-family: 'Montserrat', Arial;
  font-weight: 600;
  border-radius: 8px;
  padding: 8px 26px;
  font-size: 1rem;
  border: none;
  margin-right: 3px;
  transition: background .18s, color .18s, box-shadow .13s;
  cursor: pointer;
  box-shadow: 0 1.5px 5px rgba(44,62,80,0.08);
}
.cookie-banner button:last-child {
  margin-right: 0;
}
.cookie-banner button.accept {
  background: #D9B673;
  color: #1a232b;
  border: 2px solid #D9B673;
}
.cookie-banner button.accept:hover, .cookie-banner button.accept:focus {
  background: #fff;
  color: #2C3E50;
}
.cookie-banner button.reject {
  background: #23262b;
  color: #fff;
  border: 2px solid #666;
}
.cookie-banner button.reject:hover, .cookie-banner button.reject:focus {
  background: #1a232b;
  color: #D9B673;
}
.cookie-banner button.settings {
  background: #fff;
  color: #2C3E50;
  border: 2px solid #2C3E50;
}
.cookie-banner button.settings:hover, .cookie-banner button.settings:focus {
  background: #2C3E50;
  color: #fff;
}
@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 24px 8px 22px 8px;
  }
  .cookie-banner__text {
    margin-right: 0;
    margin-bottom: 10px;
    max-width: 100vw;
  }
  .cookie-banner__actions {
    align-items: stretch;
    width: 100%;
    gap: 10px;
  }
  .cookie-banner button {
    width: 100%;
    min-width: 0;
    margin-right: 0;
    margin-bottom: 0;
  }
}

/* ==============
   COOKIE MODAL
   ============== */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(34,34,34,0.45);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  transition: opacity .25s;
}
.cookie-modal-overlay.open {
  display: flex;
}
.cookie-modal {
  background: #fff;
  color: #23262b;
  border-radius: 18px;
  box-shadow: 0 6px 40px rgba(44,62,80,0.13);
  padding: 34px 28px 24px 28px;
  max-width: 410px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 19px;
  animation: cookie-modal-in .27s cubic-bezier(.72,0,.3,1);
  position: relative;
}
@keyframes cookie-modal-in {
  from { transform: translateY(45px) scale(0.98); opacity: 0; }
  to   { transform: translateY(0) scale(1); opacity: 1; }
}
.cookie-modal h2 {
  font-size: 1.24rem;
  color: #2C3E50;
  margin-bottom: 10px;
}
.cookie-modal .modal-close {
  position: absolute;
  right: 18px;
  top: 14px;
  font-size: 1.52rem;
  color: #2C3E50;
  border: none;
  background: none;
  cursor: pointer;
  transition: color .2s;
}
.cookie-modal .modal-close:hover {
  color: #D9B673;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 6px;
  margin-bottom: 6px;
  padding: 8px 0;
}
.cookie-category .label {
  font-size: 1rem;
  font-weight: 500;
  color: #23262b;
}
.cookie-category .switch {
  display: flex;
  align-items: center;
  gap: 7px;
}
.switch input[type="checkbox"] {
  display: none;
}
.switch label {
  display: block;
  width: 40px;
  height: 24px;
  background: #eee;
  border-radius: 15px;
  position: relative;
  cursor: pointer;
  transition: background .14s;
}
.switch label:before {
  content: '';
  display: block;
  position: absolute;
  left: 3.5px;
  top: 3.5px;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: #bbb;
  transition: left .20s, background .16s;
}
.switch input[type="checkbox"]:checked + label {
  background: #D9B673;
}
.switch input[type="checkbox"]:checked + label:before {
  left: 19px;
  background: #2C3E50;
}
.cookie-category .always-on {
  font-size: .98rem;
  color: #888;
  margin-left: 12px;
  font-style: italic;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 22px;
  flex-direction: row;
}
@media (max-width: 480px) {
  .cookie-modal {
    padding: 22px 8px 14px 8px;
    max-width: 97vw;
  }
  .cookie-modal h2 {
    font-size: 1rem;
  }
  .cookie-category .label {
    font-size: .97rem;
  }
}

/* ===========
   UTILITY
   =========== */
::-webkit-scrollbar {
  width: 12px;
  background: #F3F6F8;
}
::-webkit-scrollbar-thumb {
  background: #dadada;
  border-radius: 16px;
}

@media (max-width: 800px) {
  .container {
    padding-left: 8px;
    padding-right: 8px;
  }
  .section, section {
    padding: 30px 4px;
  }
}

@media (max-width: 600px) {
  body {
    font-size: 15px;
  }
  h1 { font-size: 1.64rem; }
  h2 { font-size: 1.18rem; }
  .footer .container {
    gap: 9px;
  }
  .section, section {
    margin-bottom: 36px;
    padding: 18px 2px;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 1.16rem; }
  h2, h3 { font-size: 1rem; }
}

/* === Subtle transitions/setups === */
a, button, .cta, .card, .services-list ul li, .features ul li, .testimonial-card {
  transition: box-shadow .19s, background .18s, color .15s, border .15s;
}

/* ==============
   VISUAL EFFECTS
   ==============
*/
.card, .testimonial-card, .services-list ul li {
  box-shadow: 0 1.5px 9px rgba(44,62,80,0.07);
}
.card:hover, .services-list ul li:hover {
  box-shadow: 0 4px 24px rgba(44,62,80,0.15);
}

/* ==============
   Z-INDEX
   ==============
*/
header, .mobile-menu, .cookie-banner, .cookie-modal-overlay { z-index: 999; }

/* === Accessibility improvements ===*/
:focus {
  outline: 2px solid #D9B673;
  outline-offset: 1.5px;
}

/* Hide visually but keep for accessibility */
.sr-only {
  position: absolute !important;
  width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}
