/* =======================================
   1. CSS RESET & NORMALIZE (mobile-first)
======================================= */
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,
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%;
  vertical-align: baseline;
  box-sizing: border-box;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #F3F8FC;
  color: #222;
  font-family: 'Open Sans', Arial, sans-serif;
  min-height: 100vh;
  -webkit-tap-highlight-color: transparent;
}
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
input, button, textarea, select {
  font: inherit;
  outline: none;
  border: none;
  background: transparent;
}
a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.18s;
}
ul, ol {
  list-style: none;
}
table {
  border-collapse: collapse;
  width: 100%;
}
th, td {
  padding: 10px 14px;
  text-align: left;
}
::-webkit-scrollbar {
  width: 8px;
  background: #fff;
}
::-webkit-scrollbar-thumb {
  background: #F6BE51;
  border-radius: 8px;
}

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

/* =========================
   2. COLOR VARIABLES
========================= */
:root {
  --color-primary: #2A314B;
  --color-secondary: #F6BE51;
  --color-accent: #F3F8FC;
  --color-error: #eb3b5a;
  --color-success: #31d67c;
  --color-cta: #FF6F61;
  --text-dark: #2A314B;
  --text-base: #222;
  --text-light: #fff;
  --card-bg: #fff;
}

/* =============================
   3. GLOBAL STRUCTURE & LAYOUT
============================= */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-start;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
  border-radius: 18px;
  box-shadow: none;
}
.hero.section, .hero {
  padding: 56px 0 40px 0;
  background: var(--color-secondary);
  background-blend-mode: lighten;
  position: relative;
  z-index: 1;
  border-radius: 0 0 36px 36px;
  box-shadow: 0 10px 32px 0 rgba(246,190,81,0.12);
}

/* ========================
   4. TYPOGRAPHY
======================== */
h1, .h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.3rem;
  font-weight: 900;
  color: var(--color-primary);
  margin-bottom: 10px;
  letter-spacing: -1.5px;
  line-height: 1.13;
  text-shadow: 1px 4px 18px rgba(255,221,140,0.15);
}
h2, .h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--color-cta);
  letter-spacing: -1px;
  margin-bottom: 7px;
  line-height: 1.18;
  text-shadow: 0 2px 8px rgba(255,111,97,0.04);
}
h3, .h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.22rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 2px;
  line-height: 1.2;
}
p, ul li, ol li {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  color: var(--text-base);
  line-height: 1.7;
}
strong {
  font-weight: 700;
  color: var(--color-primary);
}
em {
  font-style: italic;
  color: #888;
}
.cta, .btn, button, input[type="submit"] {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  border-radius: 32px;
  padding: 14px 32px;
  color: var(--text-light);
  background: var(--color-cta);
  box-shadow: 0 4px 24px 0 rgba(255,111,97,0.16);
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  display: inline-block;
  margin-top: 8px;
  transition: background 0.2s, transform 0.18s, box-shadow 0.18s;
  position: relative;
  overflow: hidden;
}
.cta:hover, .btn:hover, input[type="submit"]:hover, button:hover {
  background: var(--color-secondary);
  color: var(--color-primary);
  box-shadow: 0 8px 28px 0 rgba(255,111,97,0.15);
  transform: translateY(-2px) scale(1.04);
}
a.cta {
  text-decoration: none;
}

/* =======================
   5. HEADER & NAVIGATION
======================= */
header {
  background: var(--card-bg);
  box-shadow: 0 4px 16px 0 rgba(181,198,255,0.08);
  position: relative;
  z-index: 1001;
  width: 100%;
  margin-bottom: 0px;
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 20px;
}
header nav {
  display: flex;
  flex-direction: row;
  gap: 18px;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: var(--color-primary);
  font-weight: 600;
  border-radius: 16px;
  transition: background 0.16s, color 0.15s;
  padding: 8px 16px;
}
header nav a:hover {
  background: var(--color-secondary);
  color: var(--color-cta);
}
header .cta {
  margin-right: 10px;
}
header img {
  height: 42px;
  width: auto;
}

header .mobile-menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--color-cta);
  background: none;
  border: none;
  padding: 4px 12px;
  border-radius: 8px;
  margin-left: auto;
  margin-right: 0px;
  cursor: pointer;
  transition: background 0.16s;
}
header .mobile-menu-toggle:focus,
header .mobile-menu-toggle:hover {
  background: var(--color-secondary);
  color: var(--color-primary);
}
@media(min-width: 900px) {
  header nav { flex-direction: row; }
  header .mobile-menu-toggle { display: none; }
}

@media(max-width: 899px) {
  header nav {
    display: none;
  }
  header .cta {
    display: none;
  }
}

/* ================
   6. MOBILE MENU
================ */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--color-primary);
  color: var(--color-accent);
  z-index: 1500;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(.77,0,.18,1);
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: all;
}
.mobile-menu-close {
  font-size: 2.1rem;
  background: none;
  color: var(--color-secondary);
  border: none;
  align-self: flex-end;
  margin: 22px 24px 0 0;
  cursor: pointer;
  transition: color 0.2s, transform 0.16s;
  z-index: 1600;
  border-radius: 50%;
  padding: 8px 14px;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  color: var(--color-cta);
  background: rgba(246,190,81,0.11);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin: 52px 32px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.3rem;
  color: var(--color-accent);
  background: none;
  font-weight: 700;
  border-radius: 20px;
  padding: 13px 18px;
  transition: background 0.16s, color 0.16s;
}
.mobile-nav a:hover {
  color: var(--color-secondary);
  background: rgba(255,255,255,0.08);
}
@media(min-width: 900px) {
  .mobile-menu { display: none !important; }
}

/* ===================
   7. HERO SECTION
=================== */
.hero {
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  gap: 0px;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0px;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  max-width: 550px;
  z-index: 2;
}
.hero h1,
.hero h2 {
  color: var(--color-primary);
  font-weight: 900;
}
.hero p {
  margin-top: 0;
  color: var(--color-primary);
}
.hero .cta {
  margin-top: 14px;
  font-size: 1.2rem;
  background: linear-gradient(95deg, var(--color-cta) 85%, var(--color-secondary) 100%);
  box-shadow: 0 6px 38px 0 rgba(255,111,97,0.13);
  transition: background 0.18s;
}
.hero .cta:hover {
  background: var(--color-primary);
  color: var(--color-secondary);
}

/* Float-in animation for hero content */
@keyframes floatIn {
  0% { opacity: 0; transform: translateY(42px) scale(0.98); }
  100% { opacity: 1; transform: none; }
}
.hero .content-wrapper > * {
  animation: floatIn 0.9s cubic-bezier(.77,0,.18,1) both;
}
.hero .content-wrapper > :nth-child(2) {
  animation-delay: 0.18s;
}
.hero .content-wrapper > :nth-child(3) {
  animation-delay: 0.33s;
}
@media(max-width: 520px) {
  .hero h1 { font-size: 1.36rem; }
  .hero h2 { font-size: 1.1rem; }
}

/* ================
   8. FEATURES
================ */
.features, .services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
}
.services-list {
  margin: 24px 0 0 0;
}
.service-card {
  background: var(--card-bg);
  border-radius: 20px;
  box-shadow: 0 5px 24px 0 rgba(246,190,81,0.15), 0 1.5px 9px 0 rgba(42,49,75,0.045);
  padding: 34px 24px 28px 24px;
  min-width: 220px;
  flex: 1 1 240px;
  max-width: 330px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.24s, transform 0.19s;
  gap: 12px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  border: 2px solid var(--color-secondary);
  font-size: 1rem;
}
.service-card:hover {
  box-shadow: 0 12px 36px 0 rgba(246,190,81,0.21);
  transform: scale(1.045) translateY(-3px);
  border-color: var(--color-cta);
}
.service-card h3 {
  color: var(--color-cta);
  font-weight: 800;
}
.service-card strong {
  font-size: 1.1em;
  background: var(--color-secondary);
  color: var(--color-primary);
  border-radius: 13px;
  padding: 4px 14px;
  display: inline-block;
  margin-top: 17px;
}

.features li, .services-list li {
  list-style: none;
  display: flex;
  flex-direction: row;
  gap: 14px;
  align-items: center;
  margin-bottom: 8px;
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--color-primary);
}
.features li img, .services-list li img {
  height: 25px;
  width: 25px;
  background: var(--color-secondary);
  border-radius: 50%;
  margin-right: 3px;
  box-shadow: 0 2px 8px rgba(246,190,81,0.17);
  border: 1px solid #e9c77f;
}

/* ================
   9. LIST ELEMENTS
================ */
ul, ol {
  padding-left: 0px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
@media(max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
}

/* =========================
   10. TESTIMONIALS & CARDS
========================= */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 16px;
  margin-bottom: 20px;
  box-shadow: 0 8px 36px 0 rgba(42,49,75,0.06);
  font-style: italic;
  color: var(--color-primary);
  border: 2px solid var(--color-secondary);
  min-height: 60px;
  position: relative;
  z-index: 1;
  transition: box-shadow 0.16s, transform 0.15s;
}
.testimonial-card strong {
  font-style: normal;
  color: var(--color-cta);
  margin-left: 10px;
  font-size: 1.02em;
}
.testimonial-card:hover {
  box-shadow: 0 14px 42px 0 rgba(246,190,81,0.23);
  transform: scale(1.025) rotate(-0.5deg);
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 3px 18px 0 rgba(246,190,81,0.12);
  padding: 24px;
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 300px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

/* =====================
   11. TABLES (Tarifs)
===================== */
table {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px 0 rgba(246,190,81,0.10);
  width: 100%;
  margin: 22px 0 38px 0;
  overflow: hidden;
}
thead {
  background: var(--color-secondary);
}
th {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--color-primary);
  font-size: 1.03rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  padding-top: 18px;
  padding-bottom: 18px;
}
td {
  font-size: 1rem;
  color: var(--color-primary);
  border-bottom: 1px solid #eee;
}
tr:last-child td {
  border-bottom: none;
}

/* ============
   12. FORMS
============= */
input, textarea, select {
  display: block;
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 16px;
  border: 1.5px solid #c6d0ec;
  border-radius: 13px;
  background: #f6f8fc;
  font-size: 1rem;
  font-family: 'Open Sans', Arial, sans-serif;
  transition: border 0.17s, box-shadow 0.17s;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--color-secondary);
  box-shadow: 0 0 0 2px rgba(246,190,81,0.12);
}

/* =========================
   13. CONTACT INFO & MAP
========================= */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 24px;
}
.contact-info a {
  color: var(--color-cta);
  text-decoration: underline;
}
.address-map {
  background: var(--color-accent);
  border-radius: 13px;
  padding: 13px 16px;
  font-size: 0.95rem;
  color: #444;
  margin-bottom: 18px;
  font-style: italic;
}

/* ================
   14. FOOTER
================ */
footer {
  background: var(--color-primary);
  color: #fff;
  padding: 32px 0 18px 0;
  border-radius: 36px 36px 0 0;
  box-shadow: 0 -4px 24px rgba(42,49,75,0.10);
  margin-top: 36px;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: center;
}
footer img {
  height: 38px;
  width: auto;
  margin-bottom: 9px;
}
footer nav {
  display: flex;
  flex-direction: row;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 8px;
}
footer nav a {
  color: var(--color-secondary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.01rem;
  padding: 4px 12px;
  border-radius: 10px;
  transition: background 0.16s, color 0.15s;
}
footer nav a:hover {
  background: var(--color-cta);
  color: #fff;
}
footer p, footer a {
  color: #fff;
  font-size: 0.97rem;
}
footer a {
  text-decoration: underline dotted;
}
footer div > p {
  margin-bottom: 3px;
}

/* =========================
   15. COOKIE CONSENT BANNER
========================= */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: var(--color-primary);
  color: var(--color-secondary);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 18px 12px;
  gap: 16px;
  z-index: 2500;
  box-shadow: 0 -8px 32px rgba(42,49,75,0.19);
  font-size: 1.03rem;
  animation: fadeInUp 0.6s;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(32px); }
  to { opacity: 1; transform: none; }
}
.cookie-banner p {
  color: var(--color-secondary);
  margin-right: 12px;
  line-height: 1.4;
}
.cookie-banner .cookie-btn {
  margin-left: 4px;
  background: var(--color-secondary);
  color: var(--color-primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 24px;
  padding: 8px 22px;
  border: none;
  cursor: pointer;
  margin-right: 7px;
  transition: background 0.15s, color 0.13s, box-shadow 0.14s, transform 0.11s;
  box-shadow: 0 2px 14px 0 rgba(246,190,81,0.15);
}
.cookie-banner .cookie-btn:last-child {
  margin-right: 0;
}
.cookie-banner .cookie-btn:hover {
  background: var(--color-cta);
  color: #fff;
  transform: scale(1.07);
  box-shadow: 0 5px 18px 0 rgba(255,111,97,0.18);
}

/* Cookie Preferences Modal */
.cookie-modal {
  position: fixed;
  left: 50%; top: 50%;
  transform: translate(-50%, -54%) scale(0.74);
  background: #fff;
  z-index: 2600;
  box-shadow: 0 12px 60px rgba(42,49,75,0.22);
  border-radius: 22px;
  padding: 38px 30px 28px 30px;
  min-width: 350px;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s, transform 0.22s;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: all;
  transform: translate(-50%, -50%) scale(1);
}
.cookie-modal h2 {
  color: var(--color-primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.5rem;
}
.cookie-modal .cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  margin: 8px 0;
}
.cookie-modal label {
  font-size: 1rem;
  color: var(--color-primary);
  font-family: 'Open Sans', Arial, sans-serif;
}
.cookie-modal .switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
  margin-right: 10px;
}
.cookie-modal .switch input {
  opacity: 0; width: 0; height: 0;
}
.cookie-modal .slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0;
  right: 0; bottom: 0;
  background: #eee;
  border-radius: 24px;
  transition: background 0.2s;
}
.cookie-modal .switch input:checked + .slider {
  background: var(--color-secondary);
}
.cookie-modal .slider:before {
  content: '';
  position: absolute;
  left: 2px; top: 2px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--color-primary);
  transition: transform 0.21s, background 0.16s;
}
.cookie-modal .switch input:checked + .slider:before {
  transform: translateX(20px);
  background: var(--color-cta);
}
.cookie-modal .switch input[disabled] + .slider {
  background: #ffe5b5 !important;
  cursor: not-allowed;
}
.cookie-modal-actions {
  margin-top: 18px;
  display: flex;
  flex-direction: row;
  gap: 18px;
  justify-content: flex-end;
  align-items: center;
}
.cookie-modal .cookie-btn {
  padding: 9px 22px;
  font-size: 1.03rem;
}
.cookie-modal-close {
  position: absolute;
  top: 15px; right: 18px;
  background: none;
  color: var(--color-cta);
  font-size: 1.5rem;
  border: none;
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.12s;
  padding: 0 9px;
}
.cookie-modal-close:focus,
.cookie-modal-close:hover {
  background: #fff6e1;
}
.cookie-modal .cookie-category .desc {
  font-size: 0.98em;
  color: #8a8a8a;
  margin-left: 8px;
}

@media(max-width: 480px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    padding: 16px 8px;
    font-size: 0.97rem;
    gap: 10px;
  }
  .cookie-modal {
    min-width: 95vw;
    left: 2.5vw;
    right: 2.5vw;
    padding: 17vw 3vw 11vw 4vw;
  }
}

/* ===========================
   16. RESPONSIVE LAYOUT
=========================== */
@media (max-width: 1200px) {
  .container {
    max-width: 97vw;
  }
}
@media (max-width: 900px) {
  .content-wrapper {
    gap: 17px;
  }
  .service-card {
    min-width: 180px;
    max-width: 98vw;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 7px;
  }
  .section {
    padding: 25px 0px;
    margin-bottom: 38px;
  }
  .hero {
    padding-top: 22px; padding-bottom: 22px;
    border-radius: 0 0 22px 22px;
  }
  .features, .services-list, .card-container, .content-grid {
    flex-direction: column;
    gap: 18px;
  }
}
@media (max-width: 600px) {
  h1, .h1 { font-size: 1.45rem; }
  h2, .h2 { font-size: 1.08rem; }
  .content-wrapper { padding: 0px; }
  .service-card {
    padding: 15px 10px 18px 11px;
  }
  .testimonial-card {
    padding: 12px 6px;
  }
  footer .container {
    gap: 13px;
  }
}

/* ===============================
   17. PLAYFUL DYNAMIC ELEMENTS
================================ */
@keyframes wiggle {
  0% { transform: rotate(-2deg) scale(0.98); }
  12% { transform: rotate(4deg) scale(1.02); }
  22% { transform: rotate(-2deg) scale(1.01); }
  44% { transform: rotate(2deg) scale(1.02); }
  100% { transform: none; }
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  25% { transform: translateY(-10px); }
  50% { transform: translateY(0); }
  75% { transform: translateY(-7px); }
}
@keyframes popIn {
  0% { opacity: 0; transform: scale(0.85); }
  100% { opacity: 1; transform: none; }
}

.service-card:hover, .testimonial-card:hover {
  animation: wiggle 0.46s both 1;
}
.cta, .btn {
  animation: popIn 0.36s cubic-bezier(.48,0,.33,1.4) both;
}
.hero .cta {
  animation-delay: 0.09s;
}
.services-list > .service-card:nth-child(even),
.testimonial-card:nth-child(odd) {
  animation: bounce 3.2s infinite ease-in-out alternate;
  animation-delay: 0.25s;
}

/* ==========================
   18. TABLET/Desktop tweaks
============================ */
@media (min-width: 769px) {
  .features, .services-list, .card-container, .content-grid {
    flex-direction: row;
    gap: 24px;
  }
  .testimonials {
    flex-direction: row;
  }
}

/* ==========
   UTILITIES
=========== */
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mt-2 { margin-top: 16px; }
.mt-4 { margin-top: 32px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.section-title { margin-bottom: 18px !important; }
.w-100 { width: 100%; }

/* Focus states for accessibility */
:focus {
  outline: 2px dashed var(--color-secondary);
  outline-offset: 1.5px;
}

/* Hide visually but accessible */
.sr-only{
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ======================
  END OF PLAYFUL DYNAMIC
====================== */