/* --- CSS RESET & NORMALIZER --- */
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;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #F4F7FA;
  color: #1B2733;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

img, svg {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  display: inline-block;
}

*, *:before, *:after {
  box-sizing: inherit;
}

a {
  color: #37B7E2;
  text-decoration: none;
  transition: color 0.18s;
}

a:hover, a:focus {
  color: #173043;
  text-decoration: underline;
  outline: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 700;
  color: #173043;
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}

h1 {
  font-size: 2.5rem;
  line-height: 1.12;
  margin-bottom: 24px;
}
h2 {
  font-size: 1.75rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}
h4 {
  font-size: 1.1rem;
}

p {
  margin-bottom: 14px;
  color: #2B3F57;
  font-size: 1rem;
}

strong {
  color: #173043;
  font-weight: 600;
}

section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 26px;
  box-shadow: 0 3px 16px 0 rgba(37,27,17,0.08);
  transition: box-shadow 0.3s;
}

.container {
  max-width: 1080px;
  width: 100%;
  margin: 0 auto;
  padding-left: 12px;
  padding-right: 12px;
  display: flex;
  flex-direction: column;
  gap: 0px;
}

.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media (max-width: 992px) {
  .container {
    max-width: 98vw;
    padding-left: 4vw;
    padding-right: 4vw;
  }
  section {
    padding: 30px 10px;
    margin-bottom: 36px;
    border-radius: 20px;
  }
}
@media (max-width: 600px) {
  section {
    padding: 20px 2vw;
    margin-bottom: 24px;
    border-radius: 13px;
  }
}

/* --- HEADER & NAVIGATION --- */
header {
  background: #fff;
  box-shadow: 0 1px 10px 0 rgba(37,27,17,0.04);
  padding: 0;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  padding: 12px 12px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo img {
  height: 44px;
  width: auto;
  border-radius: 12px;
  background: #F5FAFC;
  padding: 4px 8px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1.05rem;
  padding: 7px 0;
  color: #256084;
  border-radius: 4px;
  transition: background 0.18s, color 0.18s;
}
.main-nav a:hover,
.main-nav a:focus {
  background: #F5FAFC;
  color: #37B7E2;
}
.main-nav .btn-primary {
  margin-left: 18px;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  color: #173043;
  border: none;
  font-size: 2.2rem;
  line-height: 1;
  cursor: pointer;
  border-radius: 8px;
  padding: 6px 14px 6px 10px;
  transition: background 0.2s, color 0.15s;
}
.mobile-menu-toggle:focus {
  background: #FDEEDC;
}

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

/* --- MOBILE MENU --- */
.mobile-menu {
  position: fixed;
  z-index: 1100;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(23, 48, 67, 0.97);
  transform: translateX(-100%);
  transition: transform 0.32s cubic-bezier(.8,0,.2,1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 32px;
  gap: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  color: #fff;
  border: none;
  font-size: 2.1rem;
  position: absolute;
  top: 22px;
  right: 24px;
  cursor: pointer;
  z-index: 2;
  padding: 6px 10px;
  border-radius: 8px;
  transition: background 0.2s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #25608426;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 40px 32px;
  width: 100vw;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.3rem;
  padding: 16px 0;
  transition: color 0.15s, background 0.2s;
  border-radius: 7px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #FDEEDC;
  color: #173043;
}
@media (min-width: 901px) {
  .mobile-menu { display: none !important; }
}

/* --- HERO SECTION --- */
.hero {
  background: linear-gradient(100deg, #FFDEC1 0%, #F4F7FA 87%);
  margin-bottom: 60px;
  padding: 60px 20px;
  border-radius: 28px;
  box-shadow: 0 8px 32px 0 rgba(253,217,144,0.07);
  display: flex;
  align-items: center;
}
.hero .container {
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
}
.hero .content-wrapper {
  max-width: 570px;
}
.hero h1 {
  font-size: 2.5rem;
  color: #173043;
  margin-bottom: 18px;
}
.hero p {
  font-size: 1.18rem;
  color: #4D606D;
  margin-bottom: 24px;
}
.hero .btn-primary {
  font-size: 1.12rem;
  padding: 17px 32px;
  border-radius: 12px;
}
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    padding: 28px 6vw 32px 6vw;
    margin-bottom: 32px;
    border-radius: 14px;
  }
  .hero .container {
    flex-direction: column;
    gap: 6px;
  }
  .hero .content-wrapper {
    max-width: 99vw;
  }
  .hero h1 {
    font-size: 1.7rem;
  }
}

/* --- FLEX LAYOUTS --- */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 4px;
}
.feature-grid > div {
  flex: 1 1 220px;
  background: #FEF5E7;
  padding: 28px 22px 22px 22px;
  border-radius: 22px;
  box-shadow: 0 2px 8px rgba(255,177,86,0.10);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  transition: box-shadow 0.2s, background 0.22s;
  min-width: 230px;
}
.feature-grid > div:hover,
.feature-grid > div:focus-within {
  background: #FFF9F3;
  box-shadow: 0 6px 22px rgba(255,204,134, 0.13), 0 0 0px #fff;
}
.feature-grid img {
  width: 38px;
  height: 38px;
  margin-bottom: 3px;
}
@media (max-width: 700px) {
  .feature-grid {
    flex-direction: column;
    gap: 18px;
  }
  .feature-grid > div {
    min-width: 0;
    padding: 18px 10px 14px 14px;
    border-radius: 14px;
  }
}

.service-list, .unique-points-grid, .faq-preview ul, .special-offers ul, .contact-details, .address-text {
  list-style: none;
  margin: 0;
  padding: 0;
}
.service-list li,
.unique-points-grid li,
.special-offers ul li {
  margin-bottom: 16px;
  padding-left: 28px;
  position: relative;
  color: #34535C;
  font-size: 1rem;
  line-height: 1.5;
}
.service-list li::before,
.unique-points-grid li::before,
.special-offers ul li::before {
  content: '';
  width: 13px;
  height: 13px;
  border-radius: 100%;
  background: #FFD69E;
  display: inline-block;
  position: absolute;
  left: 0;
  top: 6px;
}
@media (max-width: 700px) {
  .service-list li, .unique-points-grid li, .special-offers ul li {
    padding-left: 20px;
    font-size: 0.97rem;
  }
}

/* Card Containers */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 28px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 21px;
  box-shadow: 0 2px 15px rgba(253, 160, 64, 0.10);
  padding: 20px;
  transition: box-shadow 0.18s, transform 0.18s;
}
.card:hover,
.card:focus-within {
  box-shadow: 0 6px 36px 0 rgba(253, 168, 63, 0.16), 0 0 0 #fff;
  transform: translateY(-3px) scale(1.03);
}

.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,
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
}

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

.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 22px;
  background: #FFF9F3;
  border-radius: 22px;
  box-shadow: 0 1px 12px #FFC38A08;
  flex: 1 1 260px;
  min-width: 220px;
  max-width: 333px;
  transition: box-shadow 0.18s, background 0.23s;
}
.testimonial-card:hover,
.testimonial-card:focus-within {
  background: #FFEDCB;
  box-shadow: 0 4px 20px 0 #FFA24E1A;
}
.testimonial-card p {
  color: #1B2733;
  font-size: 1rem;
  margin-bottom: 9px;
}
.testimonial-info strong {
  color: #256084;
  font-weight: 700;
  font-size: 0.96rem;
}
.rating-summary {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #173043;
}
.rating-summary img {
  width: 22px;
  height: 22px;
}
@media (max-width: 700px) {
  .testimonial-slider {
    flex-direction: column;
    gap: 16px;
  }
  .testimonial-card {
    max-width: 99vw;
    min-width: 0;
    padding: 15px 10px;
  }
}

/* --- PRICING TABLE --- */
.pricing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-bottom: 24px;
  font-family: 'Open Sans', Arial, sans-serif;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 2px 15px #FFD9A44C;
}
.pricing-table th, .pricing-table td {
  padding: 16px 14px;
}
.pricing-table thead th {
  background: #37B7E2;
  color: #fff;
  text-align: left;
  font-size: 1.03rem;
}
.pricing-table tbody tr {
  background: #fff;
  border-bottom: 1px solid #F6E4CE;
}
.pricing-table tbody tr:last-child {
  border-bottom: none;
}
.pricing-table td {
  color: #2B3F57;
  font-size: 1.05rem;
}
@media (max-width: 650px) {
  .pricing-table th, .pricing-table td {
    padding: 10px 4vw;
    font-size: 0.97rem;
  }
}

/* --- FAQ ACCORDION --- */
.faq-accordion {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 18px;
}
.faq-item {
  background: #FFF9F3;
  border-radius: 15px;
  box-shadow: 0 1px 11px #FFD8B008;
  padding: 18px 16px;
  transition: box-shadow 0.18s, background 0.19s;
}
.faq-item button {
  background: none;
  color: #173043;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  width: 100%;
  text-align: left;
  margin-bottom: 7px;
  outline: none;
  cursor: pointer;
  transition: color 0.17s;
  padding: 0;
}
.faq-item button:focus {
  color: #E89B34;
}
.faq-answer {
  color: #336096;
  font-size: 1rem;
  line-height: 1.6;
  margin-top: 6px;
}
.faq-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.faq-preview .faq-item {
  flex: 1 1 300px;
  margin-bottom: 12px;
}
.search-faq {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: center;
  margin-top: 10px;
}
.search-faq input[type="text"] {
  flex: 1;
  padding: 10px 13px;
  border: 1px solid #FFD090;
  border-radius: 8px;
  font-size: 1rem;
  background: #FDF7EA;
  transition: border 0.2s;
}
.search-faq input[type="text"]:focus {
  border: 1.5px solid #FFAF3D;
  outline: none;
}
.search-faq button[type="submit"] {
  background: #FFD090;
  border: none;
  border-radius: 8px;
  color: #173043;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 10px 19px;
  cursor: pointer;
  transition: background 0.18s, color 0.17s;
}
.search-faq button[type="submit"]:hover,
.search-faq button[type="submit"]:focus {
  background: #FFAF3D;
  color: #fff;
}
@media (max-width: 600px) {
  .faq-preview {
    flex-direction: column;
  }
}

/* --- BUTTONS --- */
.btn-primary {
  background: #FFB846;
  color: #173043;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.13rem;
  padding: 15px 35px;
  border: none;
  border-radius: 17px;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: background 0.16s, color 0.17s, transform 0.16s, box-shadow 0.15s;
  box-shadow: 0 2px 10px #FFD8B022;
  cursor: pointer;
  display: inline-block;
  margin-top: 14px;
}
.btn-primary:hover,
.btn-primary:focus {
  background: #FF9A1F;
  color: #fff;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 4px 18px #FFC37044;
}

.btn-secondary {
  background: #F7F1DC;
  color: #173043;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.07rem;
  padding: 12px 29px;
  border: none;
  border-radius: 13px;
  font-weight: 600;
  transition: background 0.14s, color 0.15s, box-shadow 0.12s;
  box-shadow: 0 1px 9px #FFDCA133;
  cursor: pointer;
  margin-top: 9px;
  display: inline-block;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #FFE3BC;
  color: #E8863F;
}

/* --- CONTACT DETAILS & ADDRESS --- */
.contact-details, .address-text, .business-hours {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 18px;
  color: #3D4F58;
}
.contact-details img, .address-text img, .business-hours img {
  width: 21px;
  height: 21px;
  margin-right: 8px;
  vertical-align: middle;
}
.contact-details a, .address-text {
  color: #256084;
  font-weight: 500;
  margin-bottom: 2px;
}

.business-hours {
  background: #FDF7EA;
  border-radius: 10px;
  padding: 10px 16px;
  margin-top: 10px;
  align-items: flex-start;
}

/* --- FOOTER --- */
footer {
  background: #173043;
  color: #fff;
  padding: 34px 0 8px 0;
  margin-top: 48px;
  border-radius: 32px 32px 0 0;
}
footer .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0;
}
.footer-logo img {
  width: 44px;
  height: auto;
  border-radius: 13px;
  background: #fff4e2;
  padding: 5px 7px;
  box-shadow: 0 0px 8px #fff0e033;
}
.footer-navigation {
  display: flex;
  gap: 21px;
  align-items: center;
}
.footer-navigation a {
  color: #FFB846;
  font-weight: 500;
  font-size: 1.06rem;
  transition: color 0.13s;
  opacity: 0.92;
}
.footer-navigation a:hover, .footer-navigation a:focus {
  color: #fff;
  opacity: 1;
}
.footer-brand {
  margin-top: 14px;
  font-size: 0.98rem;
  color: #DCE3ED;
  text-align: right;
}
@media (max-width: 800px) {
  footer .container {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}
@media (max-width: 490px) {
  footer { border-radius: 18px 18px 0 0; }
  .footer-logo img { width: 32px; }
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  z-index: 2200;
  background: #fff8ee;
  box-shadow: 0 -1px 15px #FFD8B033;
  padding: 20px 17px 16px 20px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 20px;
  justify-content: center;
  font-size: 1rem;
  color: #173043;
  border-radius: 20px 20px 0 0;
  transition: transform 0.4s cubic-bezier(.7,0,.2,1), opacity 0.3s;
}
.cookie-banner.hide {
  transform: translateY(100%);
  opacity: 0;
}
.cookie-banner-text {
  flex: 1 1 380px;
  font-size: 1rem;
  color: #173043;
}
.cookie-banner-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-shrink: 0;
}
.cookie-btn {
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 10px 20px;
  font-size: 1.02rem;
  border-radius: 12px;
  margin-right: 0;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.13s, color 0.14s, transform 0.13s;
  box-shadow: 0 2px 8px #FFD8B095;
}
.cookie-btn.accept {
  background: #FFB846;
  color: #173043;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus { background: #FF9800; color: #fff; }

.cookie-btn.reject {
  background: #F7F1DC;
  color: #947238;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus { background: #FFE3BC; color: #C88216; }

.cookie-btn.settings {
  background: #fff;
  color: #313C4E;
  border: 1.5px solid #FFD090;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  border-color: #FFB846;
  background: #FFF4E2;
}

@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 5vw 12px 5vw;
    font-size: 0.97rem;
  }
  .cookie-banner-actions { gap: 11px; flex-wrap: wrap; }
}

/* COOKIE SETTINGS MODAL */
.cookie-modal-overlay {
  position: fixed;
  z-index: 2202;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(23,48,67,0.74);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.25s, visibility 0.25s;
  opacity: 1;
  visibility: visible;
}
.cookie-modal-overlay.hide {
  opacity: 0;
  visibility: hidden;
}
.cookie-modal {
  background: #fff8ee;
  border-radius: 22px;
  max-width: 410px;
  width: 95vw;
  box-shadow: 0 7px 38px 0 #FFD8B0AA;
  padding: 38px 27px 28px 27px;
  display: flex;
  flex-direction: column;
  gap: 26px;
  color: #173043;
  position: relative;
  animation: modalfadein 0.35s cubic-bezier(.9,.1,.4,1);
}
@keyframes modalfadein { from { opacity: 0; transform: translateY(40px);}  to { opacity: 1; transform: translateY(0);} }
.cookie-modal-title {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #173043;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-category {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.cookie-category label {
  font-size: 1.03rem;
  color: #2B3F57;
}
.cookie-category input[type="checkbox"] {
  appearance: none;
  background: #fff;
  border: 2px solid #FFD090;
  border-radius: 6px;
  width: 20px; height: 20px;
  position: relative;
  margin-right: 0;
  outline: none;
  cursor: pointer;
  margin-top: 2px;
  transition: border 0.15s;
}
.cookie-category input[type="checkbox"]:checked {
  background: #FFB846;
  border-color: #FFB846;
}
.cookie-category input[type="checkbox"]:checked:after {
  content: '';
  display: block;
  height: 10px; width: 8px;
  border-left: 3px solid #fff;
  border-bottom: 3px solid #fff;
  position: absolute;
  left: 5px; top: 3px;
  transform: rotate(-45deg);
}
.cookie-modal-actions {
  display: flex;
  gap: 18px;
  margin-top: 9px;
  align-items: center;
}
.cookie-modal .close-modal {
  background: none;
  border: none;
  color: #173043;
  font-size: 1.31rem;
  position: absolute;
  top: 13px; right: 16px;
  cursor: pointer;
  padding: 6px; border-radius: 8px;
}
.cookie-modal .close-modal:hover, .cookie-modal .close-modal:focus {
  background: #FFEEDD;
}
@media (max-width: 420px) {
.cookie-modal { padding: 17px 7vw 17px 7vw; max-width: 98vw; }
}

/* --- RESPONSIVE TYPOGRAPHY --- */
@media (max-width: 700px) {
  h1 { font-size: 1.49rem; }
  h2 { font-size: 1.19rem; }
  .btn-primary, .btn-secondary { font-size: 1rem; }
}

/* --- HELPER CLASSES FOR SPACING --- */
.mb-0 { margin-bottom: 0 !important; }
.mb-10 { margin-bottom: 10px !important; }
.mb-20 { margin-bottom: 20px !important; }
.mb-30 { margin-bottom: 30px !important; }
.mt-30 { margin-top: 30px !important; }

/* --- SCROLLBAR --- */
::-webkit-scrollbar {
  width: 10px;
  background: #FFEEDE;
  border-radius: 6px;
}
::-webkit-scrollbar-thumb {
  background: #FFDCA1;
  border-radius: 7px;
}

/* --- MODERN MICRO-INTERACTIONS --- */
.btn-primary, .btn-secondary, .main-nav a, .footer-navigation a, .cookie-btn, .cookie-btn.settings {
  transition: background 0.17s, color 0.15s, box-shadow 0.15s, transform 0.11s;
}
.card, .feature-grid > div, .testimonial-card {
  transition: box-shadow 0.18s, background 0.18s, transform 0.14s;
}
.card:active, .feature-grid > div:active, .testimonial-card:active {
  transform: scale(0.98);
}

/* --- ACCESSIBLE FOCUS STATES --- */
:focus {
  outline: 2px solid #FFA24E !important;
  outline-offset: 1px;
  z-index: 10;
}

/* --- DARK TEXT ON LIGHT BG FOR REVIEWS --- */
.testimonial-card {
  color: #173043;
  background: #FFF8EF;
}

/* -- MODAL BG for overlays, e.g. cookie modal -- */
.modal-bg {
  background: rgba(30, 31, 32, 0.46);
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  z-index: 2000;
}

/* --- THANK YOU/CONFIRMATION --- */
.confirmation {
  background: #FEF5E7;
  border-radius: 19px;
  box-shadow: 0 2px 16px #FFDCA122;
  padding: 22px 18px;
  margin-top: 19px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
}
.confirmation ul {
  padding-left: 16px;
}

/* --- ANIMATIONS --- */
@media (prefers-reduced-motion: no-preference) {
  .btn-primary, .btn-secondary, .mobile-menu-toggle, .cookie-btn {
    will-change: transform;
  }
  .mobile-menu, .cookie-banner, .cookie-modal {
    will-change: transform, opacity;
  }
}