/* ---- CSS 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-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #fff;
  color: #30475E;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-weight: 400;
  min-height: 100vh;
  position: relative;
  font-size: 16px;
  letter-spacing: 0.01em;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #30475E;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover,
a:focus {
  color: #A3A9AF;
}
ul, ol {
  list-style: none;
}
table { border-collapse: collapse; width: 100%; }
th, td { text-align: left; padding: 14px 10px; }
button {
  font-family: inherit;
  background: none;
  border: none;
  cursor: pointer;
  outline: none;
}

/* ---- TYPOGRAPHY ---- */
h1, .h1 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 0.01em;
}
h2, .h2 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.7rem;
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: 0em;
}
h3, .h3 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 12px;
}
h4, .h4 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: 8px;
}
p, li, ul, ol {
  font-size: 1rem;
  margin-bottom: 12px;
  color: #3B465A;
}
strong, b {
  font-weight: 600;
}
blockquote {
  font-style: italic;
  color: #30475E;
  border-left: 3px solid #EDE6E3;
  margin: 0 0 12px 0;
  padding-left: 16px;
}

/* ---- CONTAINER & STRUCTURE ---- */
.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}

section,
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 6px 24px 0 rgba(48,71,94,0.06);
}

/* ---- HEADER & NAV ---- */
header {
  background: #fff;
  border-bottom: 1px solid #EDE6E3;
  position: sticky;
  top: 0;
  z-index: 12;
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
}
header img {
  height: 44px;
  width: auto;
}
nav {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: center;
}
nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #30475E;
  opacity: 0.85;
  padding: 8px 10px;
  border-radius: 6px;
  transition: background 0.14s, color 0.2s;
}
nav a:hover,
nav a:focus {
  background: #FFEEC8;
  color: #30475E;
  opacity: 1;
}

.cta.primary,
.cta.secondary {
  display: inline-flex;
  align-items: center;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 999px;
  padding: 12px 30px;
  margin-left: 12px;
  box-shadow: 0 2px 10px 0 rgba(48,71,94,0.07);
  text-align: center;
  border: none;
  outline: none;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.12s;
  cursor: pointer;
}
.cta.primary {
  background: #30475E;
  color: #fff;
}
.cta.primary:hover,
.cta.primary:focus {
  background: #25374B;
  color: #fff;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 4px 16px 0 rgba(48,71,94,0.10);
}
.cta.secondary {
  background: #FFEEC8;
  color: #30475E;
  margin-left: 0;
}
.cta.secondary:hover,
.cta.secondary:focus {
  background: #FFF7E0;
  color: #25374B;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 4px 16px 0 rgba(255,238,200,0.14);
}

.mobile-menu-toggle {
  display: none;
  background: #FFEEC8;
  color: #30475E;
  font-size: 2.1rem;
  border-radius: 8px;
  padding: 5px 16px;
  transition: background 0.18s;
  margin-left: 12px;
  z-index: 14;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #EDE6E3;
}

/* ---- MOBILE MENU ---- */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(48,71,94,0.96);
  color: #fff;
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(.7,.2,.2,1);
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  color: #fff;
  font-size: 2.5rem;
  margin: 24px 32px 0 0;
  border-radius: 8px;
  padding: 0 8px;
  cursor: pointer;
  transition: background 0.15s;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  background: rgba(237,230,227,0.08);
}
.mobile-nav {
  display: flex !important;
  flex-direction: column;
  gap: 24px;
  margin: 48px 32px 0 32px;
  width: 80vw;
  max-width: 340px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  opacity: 0.98;
  padding: 16px 10px 16px 0;
  border-bottom: 1px solid rgba(255,238,200,0.07);
  border-radius: 0;
  transition: color 0.14s, opacity 0.14s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #FFEEC8;
  opacity: 1;
}

/* ---- HERO SECTIONS ---- */
.hero {
  padding: 80px 20px 60px 20px;
  background: #FFEEC8;
  border-radius: 0 0 32px 32px;
  box-shadow: 0 10px 32px 0 rgba(48,71,94,0.07);
  margin-bottom: 44px;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 12px;
}
.hero h1 {
  color: #30475E;
  margin-bottom: 6px;
  font-size: 2rem;
}
.hero p {
  color: #30475E;
  opacity: 0.9;
  font-size: 1.15rem;
  margin-bottom: 16px;
}

/* ---- CARDS, FEATURES, GRIDS ---- */
.features, .services {
  background: #fff;
  box-shadow: 0 2px 10px 0 rgba(48,71,94,0.06);
  border-radius: 24px;
}
.feature-grid, .service-list, .card-container, .content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.feature-grid {
  gap: 24px;
  margin-bottom: 20px;
}
.feature-item {
  background: #FAFAFA;
  border-radius: 12px;
  box-shadow: 0 2px 8px 0 rgba(48,71,94,0.04);
  padding: 28px 18px;
  flex: 1 1 220px;
  min-width: 220px;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  transition: box-shadow 0.2s, transform 0.13s;
}
.feature-item img {
  width: 48px; height: 48px;
  margin-bottom: 10px;
}
.feature-item h3 {
  font-size: 1.09rem;
  margin: 4px 0 0 0;
}
.feature-item p {
  font-size: 0.99rem;
  margin-bottom: 0;
}
.feature-item:hover,
.feature-item:focus-within {
  box-shadow: 0 6px 20px 0 rgba(48,71,94,0.11);
  transform: translateY(-3px) scale(1.012);
}

.usp-list {
  margin: 12px 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.usp-list li {
  position: relative;
  margin-left: 18px;
  color: #30475E;
  font-size: 1rem;
}
.usp-list li:before {
  content: '\2022';
  position: absolute; left: -18px;
  color: #FFEEC8;
  font-size: 1.5em;
  top: 2px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 10px 0 rgba(48,71,94,0.08);
  padding: 30px 22px;
  flex: 1 1 240px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.18s, transform 0.16s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 6px 24px 0 rgba(48,71,94,0.13);
  transform: translateY(-2px) scale(1.01);
}

.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;
}

/* ---- TESTIMONIALS ---- */
.testimonials {
  background: #EDE6E3;
  box-shadow: none;
  margin-bottom: 60px;
  border-radius: 24px;
}
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card {
  background: #fff;
  color: #232629;
  border-radius: 16px;
  box-shadow: 0 6px 22px 0 rgba(48,71,94,0.10);
  padding: 20px 26px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 20px;
  min-width: 230px; max-width: 370px;
  font-size: 1.02rem;
  position: relative;
  transition: box-shadow 0.15s, transform 0.12s;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 12px 32px 0 rgba(48,71,94,0.14);
  transform: translateY(-3px) scale(1.014);
}
.star-rating {
  color: #FFD964;
  font-size: 1.1rem;
  letter-spacing: 0.10em;
  font-weight: 700;
}
.testimonial-meta {
  color: #A3A9AF;
  font-size: 0.99rem;
  font-style: italic;
}
.quote-highlights {
  background: #FFEEC8;
  color: #30475E;
  border-radius: 10px;
  padding: 16px 20px;
  font-style: italic;
  margin: 24px 0 0 0;
  box-shadow: 0 1px 6px 0 rgba(48,71,94,0.02);
}

/* ---- SERVICE LIST & TABLES ---- */
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 12px;
}
.service-item {
  background: #FAFAFA;
  border-radius: 12px;
  box-shadow: 0 2px 8px 0 rgba(48,71,94,0.04);
  padding: 28px 22px;
  flex: 1 1 225px;
  min-width: 222px;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, transform 0.13s;
}
.service-item:hover,
.service-item:focus-within {
  box-shadow: 0 6px 16px 0 rgba(48,71,94,0.11);
  transform: translateY(-3px) scale(1.01);
}
.service-item h3 {
  font-size: 1.08rem;
  display: flex;
  justify-content: space-between;
  margin-bottom: 7px;
}
.service-price {
  font-family: 'Montserrat', Arial, sans-serif;
  background: #FFEEC8;
  color: #30475E;
  border-radius: 8px;
  padding: 2px 12px;
  font-weight: 600;
  font-size: 0.93rem;
  margin-left: 12px;
  margin-top: -2px;
  align-self: flex-end;
}

.price-table {
  background: #faf7f2;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 28px;
  box-shadow: 0 1px 8px 0 rgba(48,71,94,0.06);
}
.price-table th {
  background: #FFEEC8;
  color: #30475E;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
}
.price-table td {
  background: #fff;
  color: #30475E;
}
.price-table tr { border-bottom: 1px solid #EDE6E3; }
.price-table tr:last-child { border-bottom: none; }
.price-table th,
.price-table td { font-size: 1rem; padding: 14px 10px; }

.value-explanation, .awards-certifications {
  background: #EDE6E3;
  border-radius: 10px;
  padding: 16px 20px;
  margin: 12px 0;
  font-size: 0.99rem;
}

.faq {
  margin-top: 26px;
}
.faq h3 {
  margin-bottom: 12px;
}
.faq-item {
  margin-bottom: 20px;
  padding-bottom: 6px;
  border-bottom: 1px solid #EDE6E3;
}
.faq-item:last-child {
  border-bottom: none;
}
.faq-item h4 {
  font-size: 1rem;
  font-weight: 500;
}

/* ---- CTA SECTIONS ---- */
section.cta {
  background: #30475E;
  color: #fff;
  text-align: left;
  border-radius: 24px;
  box-shadow: 0 3px 24px 0 rgba(48,71,94,0.13);
  margin-bottom: 60px;
  padding: 48px 20px;
}
section.cta h2, section.cta p {
  color: #fff;
}
section.cta .cta.primary {
  background: #FFEEC8;
  color: #30475E;
}
section.cta .cta.primary:hover,
section.cta .cta.primary:focus {
  background: #FFF7E0;
  color: #25374B;
}

/* ---- FOOTER ---- */
footer {
  background: #fff;
  border-top: 1px solid #EDE6E3;
  padding: 32px 0 16px 0;
  margin-top: 60px;
}
footer .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.footer-menu {
  display: flex;
  gap: 20px;
  flex: 1 1 auto;
  flex-wrap: wrap;
  align-items: center;
}
.footer-menu a {
  color: #30475E;
  opacity: 0.75;
  font-size: 0.97rem;
  transition: color 0.16s, opacity 0.16s;
}
.footer-menu a:hover,
.footer-menu a:focus {
  color: #222f38;
  opacity: 1;
}
.footer-brand {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}
.footer-brand img {
  height: 30px;
  width: auto;
}
.short-address {
  font-size: 1rem;
  color: #A3A9AF;
}

/* ---- CONTACT SECTION ---- */
.contact .address-block, .contact .email-block, .contact .business-hours {
  margin-bottom: 9px;
  font-size: 1.08rem;
  color: #30475E;
}
.contact .email-block a {
  color: #30475E;
  border-bottom: 1px solid #FFEEC8;
}
.map-placeholder {
  background: #FFEEC8;
  border-radius: 12px;
  padding: 16px 20px;
  margin-top: 16px;
  font-size: 1rem;
  color: #30475E;
}
.public-transit {
  margin-top: 16px;
  font-size: 0.98rem;
  color: #30475E;
}

/* ---- LEGAL SECTIONS ---- */
.privacy, .gdpr, .cookies, .terms, .thankyou {
  background: #fff;
  box-shadow: 0 2px 10px 0 rgba(48,71,94,0.05);
  border-radius: 24px;
  margin-bottom: 60px;
  padding: 40px 24px;
}
.privacy h1, .gdpr h1, .cookies h1, .terms h1, .thankyou h1 {
  font-size: 2.1rem;
  margin-bottom: 18px;
}

/* ---- COOKIE BANNER ---- */
.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 120;
  background: #30475E;
  color: #fff;
  border-radius: 14px;
  padding: 20px 30px;
  box-shadow: 0 6px 24px 0 rgba(48,71,94,0.18);
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  opacity: 1;
  transition: opacity 0.17s, transform 0.2s;
  font-size: 1rem;
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(48px);
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 16px;
  flex-direction: row;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 999px;
  padding: 8px 24px;
  cursor: pointer;
  border: none;
  margin: 2px;
  transition: background 0.18s, color 0.16s, box-shadow 0.18s;
}
.cookie-banner .accept {
  background: #FFEEC8;
  color: #30475E;
}
.cookie-banner .accept:hover,
.cookie-banner .accept:focus { background: #FFF6DB; }
.cookie-banner .reject {
  background: #EDE6E3;
  color: #30475E;
}
.cookie-banner .reject:hover,
.cookie-banner .reject:focus { background: #ddd3ce; }
.cookie-banner .settings {
  background: #30475E;
  color: #FFEEC8;
  border: 1.5px solid #FFEEC8;
}
.cookie-banner .settings:hover,
.cookie-banner .settings:focus { background: #fff; color: #30475E; }

/* ---- COOKIE PREFERENCES MODAL ---- */
.cookie-modal {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(48,71,94,0.66);
  z-index: 130;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.17s;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal .modal-inner {
  background: #fff;
  color: #30475E;
  border-radius: 24px 24px 0 0;
  padding: 42px 32px 30px 32px;
  width: 100%;
  max-width: 460px;
  box-shadow: 0 10px 32px 0 rgba(48,71,94,0.18);
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  animation: slideup .4s cubic-bezier(.7,.2,.2,1);
}
@keyframes slideup {
  from { transform: translateY(40px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-modal .modal-close {
  position: absolute;
  top: 16px;
  right: 22px;
  font-size: 1.7rem;
  color: #A3A9AF;
  background: none;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  padding: 2px 8px;
  transition: background 0.14s;
}
.cookie-modal .modal-close:focus,
.cookie-modal .modal-close:hover { background: #EDE6E3; color: #30475E; }
.cookie-categories {
  margin: 18px 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 13px;
  justify-content: space-between;
}
.cookie-category .toggle {
  width: 38px; height: 22px;
  display: inline-block;
  position: relative;
}
.cookie-category .toggle input[type="checkbox"] {
  opacity: 0;
  width: 0; height: 0;
}
.cookie-category .slider {
  position: absolute;
  cursor: pointer;
  background: #EDE6E3;
  border-radius: 22px;
  top: 0; left: 0; right: 0; bottom: 0;
  transition: background 0.17s;
}
.cookie-category .toggle input:checked + .slider {
  background: #FFEEC8;
}
.cookie-category .slider:before {
  content: "";
  position: absolute;
  left: 2px;
  top: 2px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  transition: transform 0.17s;
  box-shadow: 0 2px 6px 0 rgba(48,71,94,0.18);
}
.cookie-category .toggle input:checked + .slider:before {
  transform: translateX(15px);
}
.cookie-category .category-name {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #30475E;
}
.cookie-category .locked {
  color: #a3a9af;
  font-size: 0.95rem;
  margin-left: 4px;
}
.cookie-modal .modal-footer {
  display: flex;
  gap: 16px;
  flex-direction: row;
  margin-top: 16px;
}
.cookie-modal .modal-footer button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 99px;
  padding: 8px 22px;
  cursor: pointer;
  border: none;
  margin: 2px;
  transition: background 0.18s, color 0.16s, box-shadow 0.18s;
}
.cookie-modal .save {
  background: #FFEEC8;
  color: #30475E;
}
.cookie-modal .save:hover,
.cookie-modal .save:focus { background: #FFF6DB; }
.cookie-modal .decline {
  background: #EDE6E3;
  color: #30475E;
}
.cookie-modal .decline:hover,
.cookie-modal .decline:focus { background: #ddd3ce; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1080px) {
  .container {
    max-width: 97vw;
  }
  .footer-brand {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4em;
  }
}
@media (max-width: 900px) {
  .feature-grid, .service-list, .card-container, .content-grid {
    gap: 16px;
  }
  .footer-menu {
    gap: 10px;
    font-size: 0.97rem;
  }
}
@media (max-width: 768px) {
  html, body {
    font-size: 15px;
  }
  .container {
    padding-left: 12px; padding-right: 12px;
  }
  header .container {
    flex-direction: row;
    gap: 12px;
  }
  nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: inline-flex;
    align-items: center;
  }
  .footer-menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding-bottom: 10px;
  }
  footer .container {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
  .footer-brand {
    flex-direction: row;
    align-items: center;
  }
  .feature-grid, .service-list, .card-container, .content-grid {
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
  }
  section, .section {
    padding: 20px 8px;
    margin-bottom: 36px;
  }
  .hero {
    padding: 36px 8px 22px 8px;
    border-radius: 0 0 14px 14px;
    margin-bottom: 24px;
  }
  section.cta {
    padding: 28px 8px;
    margin-bottom: 34px;
    border-radius: 12px;
  }
  .testimonial-card {
    padding: 14px 14px;
    font-size: 0.99rem;
  }
  .testimonials {
    border-radius: 10px;
  }
  .service-item, .feature-item, .card {
    padding: 16px 13px;
    border-radius: 7px;
  }
}
@media (max-width: 550px) {
  h1, .h1 { font-size: 1.25rem; }
  h2, .h2 { font-size: 1.05rem; }
  .footer-menu {
    font-size: 0.96rem;
  }
  .cookie-modal .modal-inner {
    padding: 32px 12px 22px 12px;
    border-radius: 14px 14px 0 0;
  }
  .cookie-banner {
    left: 2vw; right: 2vw; bottom: 8px;
    padding: 14px 6px;
    border-radius: 9px;
    font-size: 0.97rem;
  }
}
@media (max-width: 420px) {
  .mobile-nav {
    width: 96vw;
    max-width: none;
    margin: 32px 8px 0 8px;
  }
  .cookie-modal .modal-inner {
    width: 99vw;
    max-width: none;
  }
}

/* ---- MICRO-INTERACTIONS & TRANSITIONS ---- */
a, .cta, button, .card, .feature-item, .service-item, .testimonial-card, .cookie-banner, .cookie-modal, .mobile-menu {
  transition: box-shadow 0.16s, background 0.18s, color 0.17s, opacity 0.16s, border 0.14s, transform 0.14s;
}

/* ---- SUPPORTING UTILITIES ---- */
.d-none { display: none !important; }
.d-flex { display: flex !important; }
.align-center { align-items: center !important; }
.justify-between { justify-content: space-between !important; }
.gap-12 { gap: 12px !important; }
.gap-24 { gap: 24px !important; }
.mt-20 { margin-top: 20px !important; }
.mb-20 { margin-bottom: 20px !important; }
.mb-40 { margin-bottom: 40px !important; }

/* ---- SPECIAL DESIGN FOR THANK-YOU ---- */
.thankyou .cta.primary {
  margin-top: 18px;
  display: inline-block;
}

/* ---- MISC ---- */
::-webkit-scrollbar {
  width: 10px;
  background: #FAFAFA;
}
::-webkit-scrollbar-thumb {
  background: #EDE6E3;
  border-radius: 8px;
}
