/* =======================================================
 CSS RESET & FOUNDATION
======================================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  background: #F0F4F7;
  color: #16244D;
  min-height: 100vh;
  line-height: 1.6;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #33B6E2;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover,
a:focus {
  color: #16244D;
  text-decoration: underline;
}
ul, ol {
  list-style: none;
}
button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
  transition: all 0.2s;
}
input, textarea {
  font-family: inherit;
}

/* =======================================================
COLOR & TYPOGRAPHY VARIABLES
======================================================= */
:root {
  --color-primary: #16244D;
  --color-secondary: #33B6E2;
  --color-accent: #F0F4F7;
  --color-warning: #FFB300;
  --color-action: #21D59B;
  --color-error: #D81B60;
  --color-card: #fff;
  --color-fancy1: #ff7e5f;
  --color-fancy2: #49c6e5;
  --color-fancy3: #9D34DA;
  --color-fancy4: #ffce5b;
  --color-fancy5: #fe729b;
  --header-font: 'Montserrat', 'Segoe UI', Arial, sans-serif;
  --body-font: 'Roboto', Arial, Helvetica, sans-serif;
}

/* Fallbacks for custom properties */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  src: local('Montserrat'), local('Montserrat-Bold'), url('https://fonts.googleapis.com/css?family=Montserrat:700&display=swap');
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src: local('Roboto'), url('https://fonts.googleapis.com/css?family=Roboto:400,700&display=swap');
}

/* =======================================================
LAYOUT CONTAINERS & FLEX SETTINGS
======================================================= */
.container {
  width: 100%;
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Spacing and Layout Patterns enforced */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 350px;
  min-width: 260px;
  background: var(--color-card);
  border-radius: 22px;
  box-shadow: 0 4px 22px rgba(22, 36, 77, 0.08), 0 2px 8px rgba(76, 205, 254, 0.05);
  padding: 28px 20px;
  transition: box-shadow 0.25s, transform 0.2s;
}
.card:hover {
  box-shadow: 0 6px 32px 0 rgba(76,198,229,.15), 0 3px 14px rgba(157, 52, 218, 0.10);
  transform: translateY(-6px) scale(1.017);
}
.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: flex-start;
  gap: 18px;
  padding: 20px;
  margin-bottom: 24px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 28px rgba(51,182,226,0.10);
  border-left: 7px solid var(--color-secondary);
  transition: box-shadow 0.25s, border-color .2s;
  min-width: 260px;
}
.testimonial-card:hover {
  box-shadow: 0 6px 38px 0 rgba(157,52,218,0.09), 0 3px 14px rgba(49,198,229,0.14);
  border-left-color: var(--color-fancy3);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/*
==================================
HEADER & NAVIGATION
==================================
*/
header {
  background: #fff;
  box-shadow: 0 6px 24px rgba(50,70,120,0.05);
  position: sticky;
  top: 0;
  z-index: 100;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.logo img {
  height: 44px;
  width: auto;
  display: block;
}
.main-nav {
  display: flex;
  gap: 26px;
  align-items: center;
}
.main-nav a {
  font-family: var(--header-font);
  font-weight: 600;
  font-size: 1rem;
  color: #16244D;
  position: relative;
  letter-spacing: 0.03em;
  padding: 8px 0;
  transition: color 0.18s;
}
.main-nav a::after {
  content: '';
  display: block;
  height: 3px;
  background: var(--color-fancy2);
  border-radius: 2px;
  width: 0%;
  transition: width .18s;
}
.main-nav a:hover::after,
.main-nav a:focus::after {
  width: 100%;
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--color-secondary);
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--header-font);
  font-size: 1.08rem;
  font-weight: 700;
  border-radius: 30px;
  padding: 13px 36px;
  margin-left: 18px;
  transition: background 0.17s, color 0.17s, box-shadow 0.17s;
  box-shadow: 0 2px 14px rgba(51,182,226,0.08);
}
.cta-btn.primary {
  background: linear-gradient(80deg, var(--color-fancy2), var(--color-fancy3) 120%);
  color: #fff;
  box-shadow: 0 3px 16px rgba(49,182,226,0.13);
}
.cta-btn.primary:hover, .cta-btn.primary:focus {
  background: linear-gradient(85deg, var(--color-fancy3), var(--color-fancy2) 100%);
  color: #fff;
  box-shadow: 0 6px 24px rgba(157,52,218,0.15);
}
.cta-btn.secondary {
  background: #fff;
  color: var(--color-secondary);
  border: 2px solid var(--color-secondary);
  box-shadow: none;
}
.cta-btn.secondary:hover, .cta-btn.secondary:focus {
  background: var(--color-fancy2);
  color: #fff;
  border-color: var(--color-fancy3);
}

/* ----------------------------------
Mobile Menu
---------------------------------- */
.mobile-menu-toggle {
  display: none;
  background: var(--color-fancy2);
  color: #fff;
  font-size: 2.4rem;
  line-height: 1;
  border-radius: 9px;
  padding: 4px 16px 4px 10px;
  margin-left: 24px;
  z-index: 60;
  transition: background 0.15s;
  border: 2px solid var(--color-fancy2);
}
.mobile-menu-toggle:active {
  background: var(--color-secondary);
}

.mobile-menu {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(22,36,77,0.96);
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  transform: translateX(100%);
  transition: transform 0.40s cubic-bezier(0.68,-0.55,0.27,1.55);
  padding-top: 32px;
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  background: none;
  color: #fff;
  font-size: 2.4rem;
  border: none;
  margin: 0 28px 18px 0;
  align-self: flex-end;
  cursor: pointer;
  transition: color 0.14s;
}
.mobile-menu-close:hover {
  color: var(--color-fancy4);
}
.mobile-nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  padding: 24px 42px;
}
.mobile-nav a {
  color: #fff;
  font-family: var(--header-font);
  font-size: 1.44rem;
  font-weight: 600;
  padding: 10px 10px 10px 0;
  width: 100%;
  border-radius: 7px;
  transition: background 0.17s, color 0.15s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-secondary);
  color: #16244D;
}

/* -------------
Responsive Navigation
------------- */
@media (max-width: 1024px) {
  header .container {
    gap: 15px;
    flex-wrap: wrap;
    height: auto;
    min-height: 68px;
  }
  .main-nav a {
    font-size: 0.98rem;
  }
  .cta-btn {
    padding: 11px 28px;
    font-size: 1.01rem;
  }
}

@media (max-width: 860px) {
  .main-nav, .cta-btn.primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

@media (max-width: 600px) {
  .header {
    min-height: 62px;
  }
  .logo img {
    height: 33px;
  }
  .container {
    padding: 0 10px;
  }
}


/* =======================================================
HERO & THEMATIC SECTIONS
======================================================= */
.hero {
  background: linear-gradient(110deg, var(--color-fancy2) 30%, var(--color-fancy3) 100%);
  padding: 70px 0 40px 0;
  color: #fff;
}
.hero .content-wrapper {
    align-items: flex-start;
}
.hero h1 {
  font-family: var(--header-font);
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 18px;
  letter-spacing: 0.02em;
}
.hero .subheadline {
  font-size: 1.25rem;
  font-family: var(--body-font);
  margin-bottom: 26px;
  font-weight: 400;
}
.hero .cta-btn {
  margin-top: 14px;
}

/* ===================================
FEATURE, FACTS, CARDS, SERVICES GRIDS
=================================== */
.features, .facts-list, .services, .dossiers, .about, .team, .why-us, .news-feed, .newsletter-signup, .events, .expert-insights, .confirmation, .contact, .legal {
  background: #fff;
  border-radius: 32px;
  box-shadow: 0 8px 36px rgba(76,198,229,0.05), 0 2px 8px rgba(76, 205, 254, 0.04);
  margin-bottom: 36px;
}
.features .feature-grid, .facts-list .fact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 18px;
}
.features .feature, .facts-list .fact {
  background: linear-gradient(86deg, var(--color-fancy4) 35%, #fff 100%);
  border-radius: 18px;
  box-shadow: 0 3px 13px rgba(255, 206, 91, 0.07);
  flex: 1 1 300px;
  min-width: 230px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  padding: 26px 19px 21px 19px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.21s, transform 0.16s;
}
.features .feature:hover, .facts-list .fact:hover {
  box-shadow: 0 6px 32px rgba(255,206,91,0.16);
  transform: translateY(-4px) scale(1.013);
}
.features img, .facts-list img {
  height: 44px;
  width: 44px;
}
.features h3, .facts-list h3 {
  font-family: var(--header-font);
  font-size: 1.22rem;
  font-weight: 700;
  margin: 0 0 6px 0;
  letter-spacing: 0.01em;
}
.features p, .facts-list p {
  font-size: 1rem;
  color: #38466F;
  font-family: var(--body-font);
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.service-list li {
  background: linear-gradient(90deg, var(--color-fancy5) 14%, #fff 95%);
  border-radius: 21px;
  box-shadow: 0 3px 13px rgba(254,114,155,0.07);
  padding: 22px 18px 22px 18px;
  margin-bottom: 20px;
  flex: 1 1 280px;
  color: #16244D;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: box-shadow 0.19s, transform 0.13s;
  position: relative;
}
.service-list li:hover {
  box-shadow: 0 7px 28px rgba(254,114,155,0.16);
  transform: scale(1.02) translateY(-3px);
}
.service-list h3 {
  font-family: var(--header-font);
  font-size: 1.10rem;
  font-weight: 700;
  margin-bottom: 3px;
  color: var(--color-primary);
}
.service-price {
  font-family: var(--header-font);
  font-weight: 600;
  color: var(--color-fancy5);
  background: #fff9fa;
  border-radius: 12px;
  font-size: 1.03rem;
  padding: 5px 13px;
  margin-top: 12px;
  display: inline-flex;
}

.dossier-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.dossier {
  background: linear-gradient(110deg, #fff 75%, var(--color-fancy4) 100%);
  border-radius: 19px;
  box-shadow: 0 6px 22px rgba(255,206,91,0.08);
  padding: 28px 18px;
  min-width: 260px;
  flex: 1 1 340px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.18s, box-shadow 0.15s;
}
.dossier:hover {
  box-shadow: 0 12px 36px rgba(255,206,91,0.17);
  transform: scale(1.012) translateY(-2px);
}

/*-----------------------------
News & Interview Cards
-----------------------------*/
.news-list, .interview-list, .event-list, .benefits-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 14px;
}
.news-list li, .interview-list li, .event-list li, .benefits-list li {
  background: #f8faff;
  border-left: 5px solid var(--color-fancy2);
  padding: 19px 18px 17px 22px;
  border-radius: 14px;
  font-size: 1rem;
  box-shadow: 0 2px 9px rgba(51,182,226,0.05);
  color: var(--color-primary);
  transition: box-shadow 0.15s, border-color .13s;
}
.news-list li:hover, .interview-list li:hover, .event-list li:hover {
  border-left-color: var(--color-fancy3);
  box-shadow: 0 6px 16px rgba(76,198,229,0.08);
}
.news-tags, .topic-tags {
  margin-top: 10px;
  display: inline-block;
  background: var(--color-fancy2);
  color: #fff;
  font-size: 0.97rem;
  padding: 3px 13px;
  border-radius: 11px;
  font-family: var(--header-font);
  font-weight: 500;
  letter-spacing: 0.01em;
}

blockquote {
  border-left: 5px solid var(--color-fancy3);
  margin: 0 0 5px 0;
  padding-left: 12px;
  font-family: var(--header-font);
  font-size: 1.18rem;
  color: var(--color-primary);
  background: #f3eeff;
  border-radius: 10px;
  font-style: italic;
  line-height: 1.4;
}

.expert-name {
  display: block;
  padding-top: 7px;
  font-size: 1rem;
  color: var(--color-fancy3);
  font-weight: 600;
  font-family: var(--header-font);
}

/* Testimonials --------------------------- */
.testimonials {
  background: linear-gradient(90deg, #fff 80%, var(--color-fancy2) 140%);
}
.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
  justify-content: flex-start;
}
.testimonial-card {
  flex: 1 1 320px;
  background: #fff;
  color: #1B1E2A;
  border-left: 7px solid var(--color-fancy2);
  box-shadow: 0 5px 24px rgba(76,198,229,0.13);
}
.testimonial-card p {
  font-family: var(--body-font);
  font-style: italic;
  font-size: 1.03rem;
  color: #233C68;
  margin-bottom: 2px;
}
.user-name {
  font-size: .98rem;
  color: var(--color-fancy1);
  font-family: var(--header-font);
  letter-spacing: 0.02em;
  margin-right: 10px;
}
.stars {
  color: var(--color-fancy4);
  font-size: 1.18em;
  font-weight: 700;
  letter-spacing: 0.08em;
}

/* CTA SECTION ---------------------- */
.cta {
  background: linear-gradient(87deg, var(--color-fancy2) 47%, #fff 100%);
  border-radius: 24px;
  box-shadow: 0 6px 24px rgba(49,182,226,0.09);
  padding: 44px 0 40px 0;
  margin-bottom: 36px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
.cta h2 {
  font-family: var(--header-font);
  color: var(--color-primary);
  font-size: 2rem;
  margin-bottom: 22px;
  font-weight: 800;
}

/* ----------------------------------------------------
TYPOGRAPHY
---------------------------------------------------- */
h1 {
  font-family: var(--header-font);
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  margin-bottom: 14px;
  color: var(--color-primary);
}
h2 {
  font-family: var(--header-font);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--color-fancy3);
  letter-spacing: 0.01em;
}
h3 {
  font-family: var(--header-font);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--color-primary);
}
p, li, .text-section {
  font-family: var(--body-font);
  font-size: 1rem;
  color: #233C68;
  margin-bottom: 8px;
}
.text-section ul {
  list-style: disc inside;
  margin-left: 12px;
  margin-bottom: 8px;
  color: #1B1E2A;
}
.text-section li {
  margin-bottom: 7px;
}
strong, b {
  font-weight: 700;
  color: var(--color-primary);
}

/* =======================================================
FOOTER
======================================================= */
footer {
  background: var(--color-primary);
  color: #fff;
  margin-top: 70px;
  padding: 0;
}
.footer-main {
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: flex-start;
  justify-content: space-between;
  padding: 48px 0 30px 0;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 1rem;
  min-width: 220px;
}
.footer-brand img {
  height: 38px;
  margin-bottom: 12px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.footer-links a {
  color: var(--color-fancy2);
  font-family: var(--header-font);
  font-size: 1.01rem;
  font-weight: 500;
}
.footer-links a:hover {
  text-decoration: underline;
  color: var(--color-fancy4);
}

/* =======================================================
MAP/LOCATION PLACEHOLDER
======================================================= */
.map-placeholder {
  margin: 18px 0 18px 0;
  background: linear-gradient(91deg,#e2eaff 92%, var(--color-fancy4));
  border-radius: 16px;
  padding: 28px 14px;
  font-style: italic;
  color: #9D34DA;
  font-weight: 600;
  font-family: var(--header-font);
  text-align: center;
  box-shadow: 0 2px 8px rgba(255,206,91,0.09);
}

/* =======================================================
COOKIE BANNER & CONSENT MODAL
======================================================= */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 999;
  background: #fff;
  color: #1B1E2A;
  box-shadow: 0 -2px 20px rgba(22,36,77,.07);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 15px 30px 15px 30px;
  font-size: 1rem;
  border-top: 3px solid var(--color-fancy2);
  animation: slideUpBanner 0.5s ease;
}
@keyframes slideUpBanner {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}
.cookie-btn {
  border-radius: 20px;
  font-family: var(--header-font);
  font-weight: 700;
  padding: 8px 18px;
  font-size: 1rem;
  border: none;
  margin: 0 5px 0 0;
  transition: background 0.15s, color 0.15s;
  cursor: pointer;
}
.cookie-btn.accept {
  background: var(--color-fancy2);
  color: #fff;
}
.cookie-btn.accept:hover {
  background: var(--color-fancy3);
}
.cookie-btn.reject {
  background: #fff;
  border: 2px solid var(--color-fancy2);
  color: var(--color-fancy2);
}
.cookie-btn.reject:hover {
  background: var(--color-fancy2);
  color: #fff;
}
.cookie-btn.settings {
  background: var(--color-fancy5);
  color: #fff;
}
.cookie-btn.settings:hover {
  background: var(--color-fancy1);
}

/* Consent Modal */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(22,36,77,0.62);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInModal 0.32s;
}
@keyframes fadeInModal {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  max-width: 440px;
  width: 94vw;
  border-radius: 20px;
  box-shadow: 0 8px 44px rgba(49,182,226,0.25);
  padding: 34px 26px 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  animation: popIn 0.38s cubic-bezier(.68,-0.6,.32,1.6);
  position: relative;
}
@keyframes popIn {
  from { transform: scale(0.92); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}
.cookie-modal h2 {
  font-size: 1.21rem;
  color: var(--color-secondary);
  margin-bottom: 12px;
}
.cookie-modal .cookie-cat {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 13px;
}
.cookie-modal label {
  margin-left: 12px;
  font-weight: 500;
  color: var(--color-primary);
  font-family: var(--header-font);
}
.cookie-modal .cat-toggle {
  width: 38px; height: 21px;
  appearance: none;
  background: #e2eaff;
  border-radius: 12px;
  position: relative;
  outline: none;
  transition: background .2s;
  cursor: pointer;
}
.cookie-modal .cat-toggle:checked {
  background: var(--color-fancy2);
}
.cookie-modal .cat-toggle:before {
  content: '';
  position: absolute;
  left: 3px; top: 3px;
  width: 16px; height: 16px;
  background: #fff;
  border-radius: 50%;
  transition: transform .22s;
  box-shadow: 0 1px 7px rgba(22,36,77,.08);
}
.cookie-modal .cat-toggle:checked:before {
  transform: translateX(17px);
}
.cookie-modal .essential {
  opacity: .57;
  pointer-events: none;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 15px;
}
.cookie-modal .cookie-btn {
  font-size: 1rem;
  padding: 9px 22px;
  border-radius: 16px;
}
.cookie-modal .close-modal {
  position: absolute;
  right: 15px; top: 13px;
  background: none;
  font-size: 1.5rem;
  color: var(--color-fancy3);
  border: none;
  cursor: pointer;
}
.cookie-modal .close-modal:hover {
  color: var(--color-error);
}

/* =======================================================
RESPONSIVE MEDIA QUERIES (flex direction/spacing)
======================================================= */
@media (max-width: 860px) {
  .footer-main {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    padding: 36px 0 22px 0;
  }
  .features .feature-grid,
  .facts-list .fact-grid, .dossier-list {
    flex-direction: column;
    align-items: stretch;
  }
  .testimonial-grid {
    flex-direction: column;
    align-items: stretch;
  }
}
@media (max-width: 768px) {
  .section, .hero {
    padding: 28px 0 14px 0;
  }
  .container {
    padding-left: 8px;
    padding-right: 8px;
  }
  .content-grid {
    flex-direction: column;
    align-items: stretch;
  }
  .text-image-section {
    flex-direction: column;
    align-items: stretch;
    gap: 22px;
  }
  .service-list {
    flex-direction: column;
    gap: 20px;
  }
}
@media (max-width: 520px) {
  h1 {
    font-size: 1.7rem;
  }
  h2 {
    font-size: 1.1rem;
  }
  .hero {
    padding-top: 44px;
  }
  .footer-main {
    padding: 19px 0 13px 0;
    gap: 12px;
  }
}

/* =======================================================
MICRO-INTERACTIONS, EFFECTS, DECORATIONS
======================================================= */
.features .feature::before, .facts-list .fact::after, .dossier::before {
  content: '';
  position: absolute;
  top: -25px; left: -27px;
  width: 51px; height: 51px;
  border-radius: 46% 54% 49% 53%/60% 49% 51% 57%;
  background: radial-gradient(circle at 74% 31%, var(--color-fancy2) 0%, var(--color-fancy5) 100%);
  opacity: 0.11;
  z-index: 0;
  pointer-events: none;
}
.facts-list .fact::after {
  left: auto;
  right: -27px;
  top: -19px;
  background: radial-gradient(circle at 60% 19%, var(--color-fancy3) 0%, var(--color-fancy1) 90%);
}
.dossier::before {
  left: -21px;
  top: -15px;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: radial-gradient(circle at 44% 31%, var(--color-fancy4) 0%, var(--color-fancy5) 90%);
  opacity: 0.10;
}
.cta::after {
  content: '';
  display: block;
  position: absolute;
  left: 33%;
  top: 5px;
  width: 88px; height: 29px;
  background: linear-gradient(96deg, var(--color-fancy3) 0%, var(--color-fancy5) 100%);
  opacity: 0.08;
  filter: blur(8px);
  border-radius: 50%;
  z-index: 1;
  pointer-events:none;
}
.cta {
  position: relative;
  overflow: hidden;
}

/* Transition utility */
.card, .feature, .fact, .dossier, .testimonial-card {
  transition: box-shadow .18s, transform .13s;
}

/* =======================================================
ACCESSIBILITY & PRINT
======================================================= */
*:focus {
  outline: 2px solid var(--color-secondary);
  outline-offset: 2px;
}
::selection {
  background: var(--color-fancy2);
  color: #fff;
}

@media print {
  header, nav, footer, .mobile-menu, .cookie-banner, .cookie-modal-overlay { display: none !important; }
  body { background: #fff; color: #000; }
  .section, .container { box-shadow: none; background: #fff; }
}

/* END OF STYLE.CSS */
