/* ==========================================================================
   RESET & NORMALIZE
   ========================================================================== */
html {
  box-sizing: border-box;
  font-size: 16px;
  -webkit-tap-highlight-color: transparent;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  background: #fff;
  color: #20405E;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  line-height: 1.7;
  overflow-x: hidden;
}
img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: #20405E;
  text-decoration: none;
  transition: color 0.2s;
}
ul, ol {
  list-style: none;
  padding-left: 0;
}
button {
  font-family: inherit;
  font-size: 1rem;
  background: none;
  border: none;
  cursor: pointer;
  color: inherit;
  padding: 0;
}
input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}
hr {
  border: none;
  height: 1px;
  background: #F1F3F6;
}

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #20405E;
  margin-bottom: 0.8em;
  line-height: 1.18;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5em;
}
h2 {
  font-size: 2rem;
  margin-bottom: 0.6em;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5em;
  font-weight: 600;
}
h4, h5, h6 {
  font-size: 1rem;
  margin-bottom: 0.5em;
}
.subheadline {
  font-size: 1.12rem;
  font-family: 'Roboto', Arial, sans-serif;
  color: #3E5670;
  margin-bottom: 1.7em;
  font-weight: 400;
}
p {
  margin-bottom: 1.4em;
}
strong {
  font-weight: 600;
}
cite {
  display: block;
  margin-top: 0.5em;
  color: #8DA1B5;
  font-style: normal;
  font-size: 1rem;
}
blockquote {
  font-size: 1.18rem;
  color: #20405E;
  font-style: italic;
  margin-bottom: 0.3em;
}

/* ==========================================================================
   BRAND COLORS & ACCENTS
   ========================================================================== */
:root {
  --color-primary: #20405E;
  --color-secondary: #B69E6A;
  --color-accent: #F8F9FB;
  --color-light: #fff;
  --color-grey: #F1F3F6;
  --color-shadow: rgba(32, 64, 94, 0.05);
  --color-border: #E5E9F0;
}

/* ==========================================================================
   LAYOUT HELPERS
   ========================================================================== */
.container {
  width: 100%;
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px var(--color-shadow);
  padding: 24px;
  transition: box-shadow 0.2s, transform 0.15s;
  border: 1px solid var(--color-border);
}
.card:hover {
  box-shadow: 0 6px 36px rgba(32,64,94,0.11);
  transform: translateY(-2px) scale(1.012);
}

.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: center;
  gap: 20px;
  padding: 24px;
  margin-bottom: 20px;
  background: var(--color-accent);
  border-radius: 14px;
  box-shadow: 0 1px 8px var(--color-shadow);
  border: 1px solid var(--color-border);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: none;
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 18px var(--color-shadow);
  position: relative;
  z-index: 100;
}
header .container {
  padding-top: 14px;
  padding-bottom: 14px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
header nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #20405E;
  font-weight: 500;
  padding: 7px 2px;
  border-radius: 4px;
  position: relative;
  transition: background 0.16s, color 0.16s;
}
header nav a:hover, 
header nav a:focus {
  color: var(--color-secondary);
  background: var(--color-accent);
}
header img {
  height: 42px;
  width: auto;
  margin-right: 18px;
}
.cta-primary {
  background: var(--color-primary);
  color: var(--color-light);
  border-radius: 28px;
  padding: 12px 28px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  box-shadow: 0 2px 16px rgba(32,64,94,0.08);
  border: none;
  transition: background 0.2s, color 0.2s, box-shadow 0.18s;
  cursor: pointer;
  display: inline-block;
}
.cta-primary:hover, .cta-primary:focus {
  background: var(--color-secondary);
  color: var(--color-primary);
  box-shadow: 0 4px 34px rgba(32,64,94,0.16);
  text-decoration: none;
}

.mobile-menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: var(--color-primary);
  background: var(--color-accent);
  border-radius: 50%;
  border: none;
  font-size: 1.8rem;
  margin-left: 10px;
  transition: box-shadow 0.16s;
  z-index: 1002;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--color-secondary);
  color: #fff;
  box-shadow: 0 1px 12px var(--color-shadow);
}
/* Hide burger by default on desktop */
.mobile-menu-toggle {
  display: none;
}

/* ==========================================================================
   MOBILE MENU
   ========================================================================== */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: #fff;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(.77,.2,.05,1); 
  box-shadow: 0 2px 22px rgba(32, 64, 94, 0.15);
  overflow-y: auto;
  padding: 0 0 40px 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-accent);
  color: var(--color-primary);
  font-size: 2.1rem;
  font-weight: 400;
  border: none;
  margin: 20px 0 10px 22px;
  align-self: flex-start;
  transition: background 0.14s, color 0.14s;
  z-index: 2011;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--color-secondary);
  color: #fff;
}
.mobile-nav {
  width: 100%;
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-left: 34px;
}
.mobile-nav a {
  font-size: 1.22rem;
  color: #20405E;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 12px 0 12px 2px;
  border-radius: 7px;
  font-weight: 500;
  transition: background 0.15s, color 0.15s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--color-secondary);
  background: var(--color-accent);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
footer {
  background: #fff;
  border-top: 1px solid var(--color-border);
  padding: 36px 0;
  margin-top: 60px;
}
footer .container {
  padding: 0 20px;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 36px;
  align-items: center;
  justify-content: space-between;
}
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.footer-menu a {
  font-size: 0.97rem;
  color: #20405E;
  opacity: 0.85;
  padding: 4px 2px;
  border-radius: 3px;
  transition: color 0.18s, background 0.15s;
}
.footer-menu a:hover, .footer-menu a:focus {
  color: var(--color-secondary);
  background: var(--color-accent);
}
.brand-info {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #828a92;
  font-size: 0.95rem;
}
.brand-info img {
  height: 32px;
  width: auto;
  margin-right: 4px;
}
.social-links {
  display: flex;
  gap: 14px;
  align-items: center;
}
.social-links a {
  border-radius: 50%;
  background: var(--color-accent);
  padding: 6px;
  transition: background 0.17s;
  border: 1px solid transparent;
}
.social-links a:hover, .social-links a:focus {
  background: var(--color-secondary);
  border: 1px solid #B69E6A33;
}
.social-links img {
  width: 24px;
  height: 24px;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
  margin-bottom: 60px;
  padding: 56px 0 46px 0;
  background: var(--color-accent);
  border-radius: 0 0 28px 28px;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
}
.hero .content-wrapper {
  align-items: flex-start;
  max-width: 760px;
}
.hero h1 {
  color: var(--color-primary);
  font-size: 2.3rem;
  margin-bottom: 0.5em;
}
.hero .cta-primary {
  margin-top: 12px;
}

/* ==========================================================================
   FEATURES & SERVICES
   ========================================================================== */
.features {
  margin-bottom: 60px;
  padding: 40px 0;
}
.features .content-wrapper > h2 {
  margin-bottom: 24px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: stretch;
  margin-top: 4px;
}
.feature-grid > li, .feature-grid > div {
  flex: 1 1 230px;
  min-width: 240px;
  max-width: 330px;
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 2px 10px var(--color-shadow);
  padding: 26px 20px 22px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  border: 1px solid var(--color-border);
  margin-bottom: 0px;
  transition: box-shadow 0.18s, transform 0.14s;
}
.feature-grid > li:hover, .feature-grid > div:hover {
  box-shadow: 0 8px 24px rgba(32,64,94,0.10);
  transform: translateY(-2px) scale(1.012);
}
.feature-grid img {
  width: 38px;
  height: 38px;
}

/* ==========================================================================
   SERVICES CARD LIST
   ========================================================================== */
.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 10px;
}
.service-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 13px;
  box-shadow: 0 2px 10px var(--color-shadow);
  padding: 28px 20px 20px 24px;
  flex: 1 1 260px;
  min-width: 240px;
  max-width: 310px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, transform 0.14s;
}
.service-card:hover {
  box-shadow: 0 7px 28px rgba(32,64,94,0.13);
  transform: translateY(-2px) scale(1.012);
}
.service-price {
  color: var(--color-secondary);
  font-size: 0.97rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  margin-top: 0.7em;
}

/* For .services ul in pages with bulleted services */
.services ul, .services ol {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 18px;
}
.services ul li, .services ol li {
  position: relative;
  background: #fff;
  border-radius: 10px;
  padding: 18px 22px;
  color: #20405E;
  font-size: 1.08rem;
  border: 1px solid var(--color-border);
  margin-bottom: 0px;
  transition: box-shadow 0.16s;
}
.services ul li strong {
  color: #20405E;
  font-weight: 600;
}
.services ul li .service-price,
.services ol li .service-price {
  display: block;
  margin-top: 6px;
  color: var(--color-secondary);
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.testimonials {
  margin-bottom: 60px;
  padding: 40px 0;
  background: #fff;
}
.testimonials .content-wrapper > h2 {
  margin-bottom: 21px;
}
.testimonial-card {
  background: var(--color-accent);
  border: 1px solid var(--color-border);
  border-radius: 14px;
  box-shadow: 0 1px 10px var(--color-shadow);
  padding: 26px 24px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 0;
  max-width: 680px;
  width: 100%;
  color: #20405E;
  transition: box-shadow 0.16s, background 0.18s;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  background: #fff;
  box-shadow: 0 6px 28px rgba(32,64,94,0.13);
}
.testimonial-card blockquote {
  color: #20405E;
  font-style: italic;
  font-size: 1.13rem;
}
.testimonial-card cite {
  color: #B69E6A;
  font-size: 0.98rem;
  font-style: normal;
  margin-top: 0.7em;
}

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact .content-wrapper > h2 {
  margin-bottom: 16px;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 1.04rem;
  color: #20405E;
  margin-bottom: 18px;
}
.contact-info li {
  margin-bottom: 0;
}

/* ==========================================================================
   CTA Standalone section
   ========================================================================== */
.cta {
  margin-bottom: 0;
  text-align: center;
  background: var(--color-accent);
  border-radius: 16px;
  padding: 36px 0;
}
.cta .cta-primary {
  margin-top: 6px;
}

/* ==========================================================================
   LEGAL PAGES
   ========================================================================== */
.legal .container {
  padding-top: 32px;
  padding-bottom: 32px;
}
.legal .content-wrapper {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
.legal h1 {
  font-size: 2rem;
}
.legal h2 {
  font-size: 1.2rem;
  margin-top: 22px;
}
.legal .text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.legal ol,
.legal ul {
  margin-left: 1.6em;
  margin-bottom: 1.2em;
}
.legal li {
  margin-bottom: 0.7em;
  font-size: 1.04rem;
}

/* ==========================================================================
   CONFIRMATION PAGE
   ========================================================================== */
.confirmation .content-wrapper {
  max-width: 600px;
  margin: 0 auto;
  align-items: flex-start;
}
.confirmation h1 {
  margin-bottom: 18px;
}
.confirmation .text-section {
  margin-bottom: 0px;
}

/* ==========================================================================
   COOKIE CONSENT BANNER
   ========================================================================== */
.cookie-banner {
  position: fixed;
  z-index: 4000;
  left: 0; right: 0;
  bottom: 0;
  width: 100vw;
  background: #fff;
  color: #20405E;
  box-shadow: 0 -5px 28px rgba(32,64,94,0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  border-top: 1px solid var(--color-border);
  padding: 26px 16px 18px 16px;
  gap: 12px;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.3s, transform 0.34s;
  font-size: 1rem;
}
.cookie-banner.hide {
  opacity: 0;
  transform: translateY(120%);
  pointer-events: none;
}
.cookie-banner-buttons {
  display: flex;
  gap: 18px;
  margin-top: 7px;
  flex-wrap: wrap;
}
.cookie-banner-buttons button {
  min-width: 120px;
  padding: 10px 22px;
  border-radius: 22px;
  border: none;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  transition: background 0.19s, color 0.19s, box-shadow 0.15s;
  margin-top: 0;
}
.cookie-banner-buttons .accept-cookies {
  background: var(--color-primary);
  color: #fff;
}
.cookie-banner-buttons .accept-cookies:hover, .cookie-banner-buttons .accept-cookies:focus {
  background: var(--color-secondary);
  color: var(--color-primary);
}
.cookie-banner-buttons .reject-cookies {
  background: var(--color-grey);
  color: var(--color-primary);
}
.cookie-banner-buttons .reject-cookies:hover, .cookie-banner-buttons .reject-cookies:focus {
  background: #B69E6A33;
  color: var(--color-secondary);
}
.cookie-banner-buttons .cookie-settings {
  background: #fff;
  color: var(--color-secondary);
  border: 1px solid var(--color-secondary);
}
.cookie-banner-buttons .cookie-settings:hover, .cookie-banner-buttons .cookie-settings:focus {
  background: var(--color-secondary);
  color: #fff;
}

/* COOKIE MODAL */
.cookie-modal-backdrop {
  display: none;
  position: fixed;
  z-index: 4010;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(32,64,94,0.18);
  width: 100vw; height: 100vh;
}
.cookie-modal-backdrop.open {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cookie-modal {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 64px rgba(32,64,94,0.18);
  max-width: 96vw;
  width: 370px;
  padding: 32px 18px 26px 24px;
  color: var(--color-primary);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation: cookie-fade-in 0.35s cubic-bezier(.39,1.31,.39,1) 1;
}
@keyframes cookie-fade-in {
  0% { opacity: 0; transform: scale(0.92) translateY(30px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}
.cookie-modal h2 {
  font-size: 1.24rem;
  margin: 0 0 13px 0;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--color-accent);
  border-radius: 7px;
  padding: 10px 15px;
}
.cookie-category label {
  font-size: 1rem;
  font-weight: 500;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #20405E;
}
.cookie-category .toggle {
  width: 44px;
  height: 24px;
  border-radius: 12px;
  background: var(--color-border);
  position: relative;
  cursor: pointer;
  transition: background 0.18s;
}
.cookie-category .toggle input {
  display: none;
}
.cookie-category .switch {
  position: absolute;
  top: 2px; left: 2px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--color-primary);
  transition: left 0.18s, background 0.18s;
}
.cookie-category .toggle input:checked + .switch {
  background: var(--color-secondary);
  left: 22px;
}
.cookie-category.essential {
  opacity: 0.68;
  pointer-events: none;
}
.cookie-modal-actions {
  display: flex;
  gap: 18px;
  margin-top: 7px;
}
.cookie-modal-actions button {
  min-width: 110px;
  padding: 11px 18px;
  border-radius: 22px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  border: none;
  transition: background 0.14s, color 0.17s;
}
.cookie-modal-actions .save-settings {
  background: var(--color-primary);
  color: #fff;
}
.cookie-modal-actions .save-settings:hover, .cookie-modal-actions .save-settings:focus {
  background: var(--color-secondary);
  color: var(--color-primary);
}
.cookie-modal-actions .close-modal {
  background: #fff;
  color: var(--color-secondary);
  border: 1px solid var(--color-secondary);
}
.cookie-modal-actions .close-modal:hover, .cookie-modal-actions .close-modal:focus {
  background: var(--color-secondary);
  color: #fff;
}

/* ==========================================================================
   MEDIA QUERIES (MOBILE FIRST)
   ========================================================================== */
@media (max-width: 1023px) {
  .footer-menu {
    gap: 10px;
  }
  .brand-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
}

@media (max-width: 900px) {
  .container {
    max-width: 100vw;
  }
  .footer .content-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px 0;
  }
  .service-cards, .feature-grid, .card-container, .content-grid {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.25rem;
  }
  .hero {
    padding: 38px 0 28px 0;
  }
  .hero h1 {
    font-size: 1.47rem;
  }
  .container, footer .container {
    padding-left: 10px;
    padding-right: 10px;
  }
  .footer {
    padding: 26px 0 18px 0;
  }
  .card, .service-card, .feature-grid > li, .feature-grid > div {
    min-width: 180px;
    max-width: 100%;
    padding: 18px 11px;
  }
  .service-cards, .feature-grid {
    flex-direction: column;
    gap: 18px;
  }
  .testimonials .content-wrapper, .features .content-wrapper, .services .content-wrapper {
    align-items: flex-start;
  }
  .testimonials .content-wrapper > h2,
  .features .content-wrapper > h2,
  .services .content-wrapper > h2 {
    font-size: 1.2rem;
    margin-bottom: 14px;
  }
  .services ul, .services ol {
    gap: 10px;
  }
  .section {
    margin-bottom: 32px;
    padding: 22px 0;
  }
  .cookie-modal {
    width: 98vw;
    padding: 18px 6px 10px 10px;
  }
}

@media (max-width: 620px) {
  .content-wrapper, footer .content-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px 0;
  }
  .service-cards, .feature-grid {
    flex-direction: column;
    gap: 18px;
  }
  header .container {
    gap: 10px 0;
  }
}

@media (max-width: 670px) {
  .hero .content-wrapper, .confirmation .content-wrapper {
    max-width: 93vw;
  }
}

@media (max-width: 620px) {
  .feature-grid, .service-cards, .card-container, .content-grid {
    flex-direction: column;
    gap: 17px;
  }
}

@media (max-width: 520px) {
  header img {
    height: 34px;
  }
  .footer-menu a {
    font-size: 0.92rem;
  }
  .brand-info img {
    height: 24px;
  }
}

/* ====================
 * MOBILE NAVIGATION BUTTONS
 * ==================== */
@media (max-width: 990px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-flex;
  }
  .cta-primary {
    margin-right: 4px;
  }
}
@media (min-width: 991px) {
  .mobile-menu {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* =====================
 * FINE-TUNE SPACING
 * ===================== */
.section:not(:last-child),
.features:not(:last-child),
.testimonials:not(:last-child),
.services:not(:last-child),
.contact:not(:last-child),
.cta:not(:last-child),
.hero:not(:last-child) {
  margin-bottom: 60px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container, .feature-grid, .service-cards, .content-grid {
  gap: 24px;
  margin-bottom: 20px;
}
.card {
  margin-bottom: 20px;
}
.testimonial-card {
  margin-bottom: 20px;
}

/* =====================
 * ACCESSIBLE FOCUS STATES
 * ===================== */
a:focus, button:focus {
  outline: 2px solid var(--color-secondary);
  outline-offset: 2px;
  z-index: 2;
}

/* =====================
 * MICRO-ANIMATIONS
 * ===================== */
.cta-primary, .cookie-banner-buttons button, .cookie-modal-actions button {
  transition: background 0.18s, color 0.18s, box-shadow 0.17s;
}
.card, .service-card, .feature-grid > li, .testimonial-card {
  transition: box-shadow 0.18s, transform 0.18s, background 0.19s;
}
.card:hover, .service-card:hover, .feature-grid > li:hover, .testimonial-card:hover {
  transform: translateY(-1.5px) scale(1.009);
  box-shadow: 0 5px 22px rgba(32,64,94,0.12);
}

/* =====================
 * Z-INDEX MANAGEMENT
 * ===================== */
.mobile-menu, .mobile-menu.open {
  z-index: 2000;
}
.cookie-banner {
  z-index: 4000;
}
.cookie-modal-backdrop.open {
  z-index: 4010;
}

/* =====================
 * CUSTOM SCROLLBAR
 * ===================== */
::-webkit-scrollbar {
  width: 8px;
  background: #f5f5f5;
}
::-webkit-scrollbar-thumb {
  background: #e0e6ef;
  border-radius: 8px;
}
::-webkit-scrollbar-thumb:hover {
  background: #B69E6A22;
}

/* =====================
 * PRINT CLEANUP
 * ===================== */
@media print {
  header, footer, .cookie-banner, .mobile-menu, .cookie-modal-backdrop {
    display: none !important;
  }
  main {
    padding: 0 !important;
    background: #fff !important;
  }
}
