/* ========================== */
/*         CSS RESET          */
/* ========================== */
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%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: #232934;
  background: #F7F8FA;
  min-height: 100vh;
  font-size: 16px;
  line-height: 1.75;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
  border: none;
}
a {
  color: #1C2333;
  text-decoration: none;
  transition: color 0.18s;
  outline: none;
}
a:focus {
  outline: 2px solid #F39200;
  outline-offset: 2px;
}
ul, ol {
  margin-left: 24px;
}
table {
  border-collapse: collapse;
  width: 100%;
}
th, td {
  text-align: left;
  padding: 12px 18px;
}

/* ========================== */
/*      BRAND VARIABLES      */
/* ========================== */
:root {
  --color-primary: #1C2333;
  --color-primary-dark: #171B29;
  --color-secondary: #F39200;
  --color-secondary-dark: #d07a00;
  --color-accent: #FFFFFF;
  --color-bg: #F7F8FA;
  --color-section-bg: #fff;
  --color-divider: #EAECF0;
  --color-shadow: rgba(28, 35, 51, 0.08);
  --color-info: #5772a8;
  --color-grey: #A5ADBB;
  --color-grey-light: #E3E6ED;
  --font-display: 'Montserrat', system-ui, sans-serif;
  --font-body: 'Roboto', Arial, Helvetica, sans-serif;
  --radius-base: 12px;
  --radius-btn: 6px;
  --shadow-base: 0 2px 6px var(--color-shadow);
  --shadow-elevated: 0 8px 24px var(--color-shadow);
}

@font-face {
  font-family: 'Montserrat';
  font-display: swap;
  src: local('Montserrat'), url('https://fonts.googleapis.com/css?family=Montserrat:700,600,400&display=swap');
}
@font-face {
  font-family: 'Roboto';
  font-display: swap;
  src: local('Roboto'), url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');
}

/* ========================== */
/*        TYPOGRAPHY         */
/* ========================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--color-primary);
  margin-bottom: 16px;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.5px;
}
h1 {
  font-size: 2.8rem;
  margin-bottom: 16px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}
h4 {
  font-size: 1.1rem;
}
p, .subheadline {
  margin-bottom: 16px;
}
.subheadline {
  font-size: 1.18rem;
  color: var(--color-info);
  font-weight: 500;
  margin-bottom: 20px;
}
strong, b {
  font-weight: 700;
}
hr {
  border: 0;
  border-top: 1px solid var(--color-divider);
  margin: 32px 0;
}

/* ==========================
   GENERAL SPACING, UTILITIES
   ========================== */
.container {
  width: 100%;
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.section {
  background: var(--color-section-bg);
  border-radius: var(--radius-base);
  box-shadow: var(--shadow-base);
  margin-bottom: 60px;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: var(--radius-base);
  box-shadow: var(--shadow-base);
  margin-bottom: 20px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}
.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 {
  background: #fff;
  color: #1C2333;
  border-radius: var(--radius-base);
  box-shadow: var(--shadow-base);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  min-width: 0;
  max-width: 400px;
  flex: 1 1 280px;
  transition: transform 0.16s, box-shadow 0.18s;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: var(--shadow-elevated);
  transform: translateY(-4px) scale(1.02);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #F6F8FD;
  border-radius: var(--radius-base);
  box-shadow: 0 1px 2px rgba(28,35,51,0.04);
  padding: 22px 18px 18px;
  min-width: 210px;
  margin-bottom: 20px;
  transition: box-shadow 0.15s, background 0.15s;
}
.feature-item:hover {
  background: #eef2fa;
  box-shadow: var(--shadow-base);
}
.features-grid, .options-list, .step-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.step-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  background: #F8FAFF;
  border-radius: var(--radius-base);
  box-shadow: 0 1px 2px rgba(28,36,65,0.07);
  padding: 24px 16px 16px;
  min-width: 210px;
  margin-bottom: 20px;
}
.options-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.option-item {
  background: #F0F2F7;
  border-radius: var(--radius-base);
  box-shadow: 0 1px 2px rgba(28,36,65,0.07);
  padding: 20px 15px;
  flex: 1 1 225px;
}
.step-overview {
  font-size: 1.08rem;
  line-height: 1.6;
  margin-bottom: 18px;
}
.step-overview li {
  margin-bottom: 10px;
}
.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.benefits-list li {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1.03rem;
}
.categories-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  list-style: none;
  margin: 20px 0 0 0;
  padding-left: 0;
}
.categories-list li {
  background: var(--color-grey-light);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.98em;
  padding: 6px 18px;
}

/* ========================
   TESTIMONIALS, BLOG LIST
   ======================== */
.testimonials-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 20px;
}
.testimonial-stars {
  display: flex;
  flex-direction: row;
  gap: 2px;
}
.testimonial-author {
  display: block;
  color: #5772a8;
  font-size: 1em;
  margin-top: 2px;
  font-style: italic;
  text-align: right;
}
.blog-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.blog-list article {
  background: #fff;
  border-radius: var(--radius-base);
  box-shadow: var(--shadow-base);
  padding: 24px 20px;
  min-width: 220px;
  flex: 1 1 260px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow .2s, transform .17s;
}
.blog-list article:hover, .blog-list article:focus-within {
  box-shadow: var(--shadow-elevated);
  transform: translateY(-3px);
}
.btn-link {
  color: var(--color-secondary);
  font-weight: 600;
  text-decoration: underline;
  font-family: var(--font-display);
  font-size: 1em;
  margin-top: 10px;
  transition: color .15s;
}
.btn-link:hover, .btn-link:focus {
  color: #d07a00;
}

/* =======================
       TABLES, LISTS
   ======================= */
.pricing-table {
  background: #fff;
  border-radius: var(--radius-base);
  box-shadow: var(--shadow-base);
  margin-bottom: 20px;
}
.pricing-table th {
  background: #F6F8FD;
  font-weight: 700;
  color: var(--color-primary);
  font-size: 1.08em;
}
.pricing-table td {
  color: #454c58;
  font-size: 1em;
}
.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 16px 0 0 0;
  padding: 0;
  font-size: 1.02em;
}
.feature-list li {
  position: relative;
  padding-left: 22px;
}
.feature-list li:before {
  content: '\2022';
  color: var(--color-secondary);
  font-weight: bold;
  position: absolute;
  left: 0;
  font-size: 1.1em;
}

/* ========================
        HEADER & NAV
   ======================== */
header {
  background: var(--color-primary);
  color: #fff;
  padding: 0;
  width: 100%;
  box-shadow: 0 1px 12px rgba(20,27,43,0.06);
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  justify-content: flex-start;
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 20px;
  height: 66px;
  min-height: 66px;
}
.main-nav a {
  display: flex;
  align-items: center;
  font-family: var(--font-display);
  color: #fff;
  font-weight: 500;
  font-size: 1.01em;
  padding: 7px 12px;
  border-radius: 5px;
  transition: background .14s, color .15s;
}
.main-nav a:hover, .main-nav a:focus {
  background: rgba(255,255,255,0.09);
  color: var(--color-secondary);
}
.main-nav img {
  height: 38px;
  margin-right: 8px;
}
.btn-primary {
  background: var(--color-secondary);
  color: #1C2333;
  border: none;
  border-radius: var(--radius-btn);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1em;
  padding: 10px 28px;
  box-shadow: 0 1px 6px rgba(28,35,51,0.07);
  margin-left: 12px;
  cursor: pointer;
  transition: background .19s, color .18s, box-shadow .18s, transform .11s;
  outline: none;
  display: inline-block;
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--color-secondary-dark);
  color: #fff;
  box-shadow: 0 4px 20px rgba(243,146,0,0.13);
  transform: translateY(-3px) scale(1.04);
}
.btn-secondary {
  background: transparent;
  border: 2px solid var(--color-secondary);
  color: var(--color-secondary);
  font-family: var(--font-display);
  font-size: 1em;
  padding: 10px 26px;
  border-radius: var(--radius-btn);
  font-weight: 700;
  cursor: pointer;
  margin-left: 6px;
  transition: background .14s, color .13s, border-color .13s, transform .13s;
  outline: none;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: var(--color-secondary);
  color: #fff;
  border-color: var(--color-secondary-dark);
  transform: translateY(-2px);
}
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.1rem;
  color: #fff;
  position: absolute;
  right: 22px;
  top: 12px;
  z-index: 1201;
  cursor: pointer;
  transition: color 0.17s;
  outline: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.mobile-menu-toggle:focus {
  color: var(--color-secondary);
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--color-primary);
  color: #fff;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(.77,0,.175,1);
  z-index: 1205;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0;
  overflow-y: auto;
  will-change: transform;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2.1rem;
  position: absolute;
  top: 18px;
  right: 21px;
  cursor: pointer;
  z-index: 1210;
  transition: color 0.15s;
  outline: none;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-menu-close:focus {
  color: var(--color-secondary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 80px;
  width: 100%;
  padding: 0 30px 20px 30px;
}
.mobile-nav a {
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  padding: 15px 12px;
  border-radius: 7px;
  transition: background .13s, color .13s;
  background: transparent;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #2A314B;
  color: var(--color-secondary);
}
/* Hide desktop nav on mobile */
@media (max-width: 900px) {
  .main-nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 901px) {
  .mobile-menu {
    display: none !important;
  }
}

/* =======================
         FOOTER
   ======================= */
footer {
  background: var(--color-primary);
  color: #fff;
  padding: 0;
  box-shadow: 0 -1px 8px rgba(20,27,43,0.07);
}
.footer-main {
  max-width: 1152px;
  margin: 0 auto;
  padding: 32px 20px 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer-main nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 12px 0;
}
.footer-main nav a {
  color: #B8C0D7;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1em;
  padding: 5px 8px;
  border-radius: 4px;
  transition: color .14s, background .13s;
}
.footer-main nav a:hover, .footer-main nav a:focus {
  color: var(--color-secondary);
  background: rgba(255,255,255,0.09);
}
.footer-main > a img {
  height: 38px;
}
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
  font-size: 1.03em;
}
.footer-contact p {
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-contact img {
  height: 21px;
}
.footer-legal {
  font-size: 0.97em;
  color: #8C93A1;
  margin-top: 12px;
}

/* =======================
     FORMS & SEARCH BOX
   ======================= */
input[type="text"], input[type="email"], input[type="password"], textarea {
  font-family: var(--font-body);
  font-size: 1em;
  padding: 10px 13px;
  border: 1.5px solid var(--color-grey-light);
  border-radius: 7px;
  background: #fff;
  color: var(--color-primary);
  width: 100%;
  margin-bottom: 16px;
  transition: border-color 0.15s;
}
input[type="text"]:focus, input[type="email"]:focus, input[type="password"]:focus, textarea:focus {
  border-color: var(--color-secondary);
  outline: none;
}
button[type="submit"],
.search-box button,
.email-form button,
.cookie-banner button {
  background: var(--color-secondary);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1em;
  border: none;
  border-radius: var(--radius-btn);
  padding: 9px 22px;
  cursor: pointer;
  transition: background .15s, color .15s, box-shadow .11s, transform .09s;
  box-shadow: 0 1px 4px rgba(243,146,0,0.09);
}
button[type="submit"]:hover, .search-box button:hover, .email-form button:hover,
button[type="submit"]:focus, .search-box button:focus, .email-form button:focus {
  background: var(--color-secondary-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 2px 10px rgba(243,146,0,0.14);
}
.search-box {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  width: 100%;
  margin-bottom: 18px;
  align-items: center;
}
.search-box input[type="text"] {
  flex: 1 1 210px;
  margin-bottom: 0;
}
.email-form {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.email-form input[type="email"] {
  flex: 1 1 260px;
  margin-bottom: 0;
}

/* .contact-info-block SPECIFIC */
.contact-info-block {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 16px 0 18px 0;
}
.info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #F6F8FD;
  border-radius: 11px;
  padding: 12px 16px;
  min-width: 180px;
}
.opening-hours {
  font-size: 1em;
  margin-top: 9px;
}
.opening-hours h3 {
  font-size: 1.09em;
  font-family: var(--font-display);
  color: var(--color-info);
  margin-bottom: 1px;
}
.map-placeholder {
  background: #eef2fa;
  border-radius: var(--radius-base);
  padding: 22px 22px;
  font-size: 1em;
  box-shadow: 0 2px 7px rgba(28,35,51,0.06);
  margin-bottom: 24px;
}

/* Newsletter, Advisory blocks */
.contact-advisory {
  font-size: 1.04em;
  color: #5772a8;
  margin-top: 9px;
  margin-bottom: 18px;
  background: #F6F8FD;
  border-radius: 8px;
  padding: 12px 18px;
}

/* Timeline (A Propos page) */
.timeline ul {
  list-style: none;
  padding-left: 0;
  margin: 0 0 10px 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
  font-size: 1em;
}
.timeline li {
  position: relative;
  padding-left: 23px;
}
.timeline li::before {
  content: '';
  display: inline-block;
  position: absolute;
  left: 0;
  top: 9px;
  width: 9px;
  height: 9px;
  background: var(--color-secondary);
  border-radius: 50%;
}

/* ==========================
     COOKIE CONSENT BANNER
   ========================== */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  color: #1c2333;
  box-shadow: 0 -4px 16px rgba(28,35,51,.085);
  border-top: 1.5px solid var(--color-divider);
  padding: 22px 12px 22px 12px;
  z-index: 1400;
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(50px);
  transition: opacity .32s cubic-bezier(.77,0,.175,1), transform .32s cubic-bezier(.77,0,.175,1);
}
.cookie-banner.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.cookie-banner-content {
  max-width: 720px;
  font-size: 1.02em;
  margin-bottom: 12px;
  text-align: center;
}
.cookie-banner-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.cookie-banner .cookie-settings-btn {
  background: transparent;
  border: 2px solid var(--color-secondary);
  color: var(--color-secondary);
  font-weight: 600;
  border-radius: var(--radius-btn);
  padding: 8px 20px;
  margin-left: 6px;
  transition: background .13s, color .13s, border-color .13s;
}
.cookie-banner .cookie-settings-btn:hover,
.cookie-banner .cookie-settings-btn:focus {
  background: var(--color-secondary);
  color: #fff;
  border-color: var(--color-secondary-dark);
}
.cookie-banner .cookie-reject-btn {
  background: #F7F8FB;
  color: #54688d;
  border: 2px solid #e5e7ef;
  font-weight: 600;
  border-radius: var(--radius-btn);
  padding: 8px 18px;
  transition: background .13s, color .13s, border .13s;
}
.cookie-banner .cookie-reject-btn:hover {
  color: #fff;
  background: var(--color-grey);
  border: 2px solid var(--color-grey-light);
}

/* ===== COOKIE SETTINGS MODAL ===== */
.cookie-modal-overlay {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(18,22,38,0.48);
  z-index: 1600;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s cubic-bezier(.77,0,.175,1);
}
.cookie-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  background: #fff;
  color: #232934;
  border-radius: var(--radius-base);
  max-width: 420px;
  min-width: 290px;
  padding: 36px 28px 24px 28px;
  box-shadow: var(--shadow-elevated);
  position: relative;
  flex-direction: column;
  align-items: flex-start;
  gap: 19px;
  display: flex;
  opacity: 0;
  transform: scale(0.97) translateY(25px);
  pointer-events: none;
  transition: opacity .29s, transform .24s;
}
.cookie-modal.active {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1) translateY(0);
}
.cookie-modal h2 {
  font-size: 1.32em;
  margin-bottom: 17px;
}
.cookie-modal .close-modal {
  position: absolute;
  top: 14px;
  right: 17px;
  background: none;
  border: none;
  color: #5772a8;
  font-size: 1.7em;
  cursor: pointer;
}
.cookie-modal-category {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 9px;
  font-size: 1.08em;
}
.cookie-modal-category input[type="checkbox"] {
  accent-color: var(--color-secondary);
  width: 22px;
  height: 22px;
  margin-right: 6px;
}
.cookie-modal-actions {
  display: flex;
  gap: 14px;
  margin-top: 16px;
}
.cookie-modal-actions .btn-primary,
.cookie-modal-actions .btn-secondary {
  margin: 0;
}
.cookie-modal-category .badge {
  display: inline-block;
  color: #fff;
  background: var(--color-secondary);
  font-size: 0.92em;
  margin-left: 8px;
  border-radius: 8px;
  padding: 2px 9px;
}

/* ========================
     RESPONSIVE DESIGN
   ======================== */
@media (max-width: 1100px) {
  .container {
    max-width: 98vw;
    padding: 0 8px;
  }
  .footer-main {
    padding: 32px 12px 16px 12px;
  }
}
@media (max-width: 900px) {
  .container {
    max-width: 98vw;
    padding: 0 4vw;
  }
  .footer-main {
    padding: 26px 8px 10px 8px;
  }
}
@media (max-width: 800px) {
  .features-grid, .blog-list, .options-list, .testimonials-list, .card-container, .step-grid, .categories-list, .contact-info-block {
    flex-direction: column;
    gap: 18px;
  }
}
@media (max-width: 768px) {
  .container {
    max-width: 99vw;
    padding: 0 1vw;
  }
  h1 {
    font-size: 2.1rem;
  }
  h2 {
    font-size: 1.45rem;
  }
  .section {
    padding: 32px 8px;
    margin-bottom: 38px;
    gap: 16px;
  }
  .card {
    padding: 21px 9px;
  }
  .testimonial-card { min-width: 0; max-width: 100vw; }
  .feature-item, .step-item, .option-item {
    padding: 13px 9px 12px 16px;
    min-width: 0;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}
@media (max-width: 600px) {
  .main-nav, .footer-main nav {
    flex-direction: column;
    gap: 13px;
  }
  .footer-contact {
    flex-direction: column;
    gap: 10px;
  }
  .footer-main {
    font-size: 0.98em;
  }
  .cookie-banner-content {
    font-size: 0.96em;
  }
}
/* ========================
     MICROINTERACTIONS
   ======================== */
a, .btn-primary, .btn-secondary, .btn-link, button, .feature-item, .testimonial-card, .blog-list article {
  transition: color .13s, background .13s, box-shadow .18s, transform .12s;
}
a:active, .btn-primary:active, .btn-secondary:active {
  transform: scale(.97);
}

/* ========================
     Z-INDEX LAYERING
   ======================== */
header { z-index: 1000; position: relative; }
.mobile-menu { z-index: 1205; }
.mobile-menu-toggle { z-index: 1206; }
.mobile-menu-close { z-index: 1210; }
.cookie-banner { z-index: 1400; }
.cookie-modal-overlay { z-index: 1600; }

/* ========================
     ACCESSIBILITY
   ======================== */
:focus-visible {
  outline: 2.5px solid var(--color-secondary) !important;
  outline-offset: 2px !important;
}

/* ========================
     PRINT & SELECTION
   ======================== */
::selection {
  background: #F39200;
  color: #fff;
}

/* =========== END ========== */
