@charset "UTF-8";

/* Minimal public compatibility layer for the Bootstrap primitives still used. */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  -webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: .5rem;
  font-weight: 500;
  line-height: 1.2;
}

h1 { font-size: calc(1.375rem + 1.5vw); }
h2 { font-size: calc(1.325rem + .9vw); }
h3 { font-size: calc(1.3rem + .6vw); }
h4 { font-size: calc(1.275rem + .3vw); }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

ol,
ul {
  padding-left: 2rem;
}

dl,
ol,
ul {
  margin-top: 0;
  margin-bottom: 1rem;
}

ol ol,
ol ul,
ul ol,
ul ul {
  margin-bottom: 0;
}

dt { font-weight: 700; }

dd {
  margin-bottom: .5rem;
  margin-left: 0;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: .875em;
}

img,
svg {
  vertical-align: middle;
}

button {
  border-radius: 0;
}

button:focus:not(:focus-visible) {
  outline: 0;
}

button,
input,
optgroup,
select,
textarea {
  margin: 0;
  font: inherit;
}

button,
select {
  text-transform: none;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

button:not(:disabled),
[type="button"]:not(:disabled),
[type="reset"]:not(:disabled),
[type="submit"]:not(:disabled) {
  cursor: pointer;
}

fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

legend {
  float: left;
  width: 100%;
  margin-bottom: .5rem;
  padding: 0;
  line-height: inherit;
}

legend + * {
  clear: left;
}

[hidden] {
  display: none !important;
}

.btn {
  display: inline-block;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  user-select: none;
  transition: color .15s ease-in-out,
              background-color .15s ease-in-out,
              border-color .15s ease-in-out,
              box-shadow .15s ease-in-out;
}

.btn:disabled {
  pointer-events: none;
  opacity: .65;
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

.container,
.container-fluid,
.container-xl {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: calc(var(--bs-gutter-x) * .5);
  padding-left: calc(var(--bs-gutter-x) * .5);
}

.row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-.5 * var(--bs-gutter-x));
  margin-left: calc(-.5 * var(--bs-gutter-x));
}

.row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  margin-top: var(--bs-gutter-y);
  padding-right: calc(var(--bs-gutter-x) * .5);
  padding-left: calc(var(--bs-gutter-x) * .5);
}

.gy-4 { --bs-gutter-y: 1.5rem; }
.g-5 { --bs-gutter-x: 3rem; }
.g-5,
.gy-5 { --bs-gutter-y: 3rem; }

.align-items-center { align-items: center !important; }
.justify-content-center { justify-content: center !important; }
.d-block { display: block !important; }
.h-100 { height: 100% !important; }
.mx-auto { margin-right: auto !important; margin-left: auto !important; }
.my-3 { margin-top: 1rem !important; margin-bottom: 1rem !important; }
.mb-0 { margin-bottom: 0 !important; }
.ms-2 { margin-left: .5rem !important; }
.ps-3 { padding-left: 1rem !important; }
.text-center { text-align: center !important; }

.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 12px;
  z-index: 100000;
  padding: 12px 18px;
  background: #09111f;
  color: #fff;
  font-weight: 700;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: none;
  color: #fff;
  outline: 3px solid #16c7f3;
  outline-offset: 2px;
}

.breadcrumb-item + .breadcrumb-item {
  padding-left: .5rem;
}

.breadcrumb-item + .breadcrumb-item::before {
  float: left;
  padding-right: .5rem;
  content: "/";
}

.visually-hidden {
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.visually-hidden:not(caption) {
  position: absolute !important;
}

.visually-hidden * {
  overflow: hidden !important;
}

@media (prefers-reduced-motion: reduce) {
  .btn {
    transition: none;
  }
}

@media (min-width: 576px) {
  .container { max-width: 540px; }
}

@media (min-width: 768px) {
  .container { max-width: 720px; }

  .col-md-4 { flex: 0 0 auto; width: 33.33333333%; }
  .col-md-6 { flex: 0 0 auto; width: 50%; }
}

@media (min-width: 992px) {
  .container { max-width: 960px; }

  .col-lg-4 { flex: 0 0 auto; width: 33.33333333%; }
  .col-lg-5 { flex: 0 0 auto; width: 41.66666667%; }
  .col-lg-6 { flex: 0 0 auto; width: 50%; }
  .col-lg-7 { flex: 0 0 auto; width: 58.33333333%; }
  .col-lg-8 { flex: 0 0 auto; width: 66.66666667%; }
  .col-lg-10 { flex: 0 0 auto; width: 83.33333333%; }
}

@media (min-width: 1200px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.75rem; }
  h4 { font-size: 1.5rem; }

  .container,
  .container-xl {
    max-width: 1140px;
  }

  .d-xl-none {
    display: none !important;
  }
}

@media (min-width: 1400px) {
  .container,
  .container-xl {
    max-width: 1320px;
  }
}

/* Foundation tokens shared by legacy and current components. */
:root {
  --default-font: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
  --heading-font: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
  --nav-font: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
  --background-color: #ffffff;
  --default-color: #4a4a4a;
  --heading-color: #0a0a0a;
  --accent-color: #0056d2;
  --accent-color-light: #2b8cff;
  --surface-color: #ffffff;
  --contrast-color: #ffffff;
  --nav-color: #5a5a5a;
  --nav-hover-color: #0056d2;
  --nav-mobile-background-color: #ffffff;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #4a4a4a;
  --nav-dropdown-hover-color: #0056d2;
  scroll-behavior: smooth;
}

/* Light section palette. */
.light-background {
  --background-color: #f7faff;
  --surface-color: #ffffff;
}

/* Dark section palette. */
.dark-background {
  --background-color: #0a0e1a;
  --default-color: #d7e3ff;
  --heading-color: #ffffff;
  --accent-color: #2b8cff;
  --surface-color: #13203d;
  --contrast-color: #ffffff;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #067541;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(255, 255, 255, 0);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 10px 0;
  transition: all 0.5s;
  z-index: 997;
  isolation: isolate;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 60px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 400;
  color: var(--heading-color);
}

.header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  pointer-events: none;
  z-index: -1;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu > ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu > ul > li {
    position: relative;
  }

  .navmenu > ul > li > a,
  .navmenu > ul > li > a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu > ul > li > a i,
  .navmenu > ul > li > a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu > ul > li:hover > a,
  .navmenu > ul > li > a.active,
  .navmenu > ul > li > a.active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

.navmenu .btn-primary {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 10px 20px;
  margin: 0px 0px 0px 14px;
  border-radius: 6px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 4px 15px 
  color-mix(in srgb, var(--accent-color), transparent 80%);
}

.navmenu .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 10%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 70%);
  color: var(--contrast-color);
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
    padding: 0;
    border: 0;
    background: transparent;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu > ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu > ul > li > a,
  .navmenu > ul > li > a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 18px;
    font-weight: 300;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    margin: 0px 20px;
  }

  .navmenu > ul > li > a i,
  .navmenu > ul > li > a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu > ul > li > a i:hover,
  .navmenu > ul > li > a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu > ul > li > a:hover,
  .navmenu > ul > li > a.active,
  .navmenu > ul > li > a.active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu > ul > li > a.active i,
  .navmenu > ul > li > a.active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }

  .navmenu .btn-primary {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    padding: 10px 20px;
    margin: 0px 20px;
    border-radius: 6px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 15px 
    color-mix(in srgb, var(--accent-color), transparent 80%);
  }
}

/* Legacy navigation hooks still used by the current header script. */

/* ---------------- Desktop ---------------- */
@media (min-width: 1200px) {

  /* Parent */
  .mega-menu-parent {
    position: relative;
  }

  /* Lien principal avec indicateur */
  .mega-menu-parent > a {
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
  }

  .mega-menu-parent > a::after {
    content: "";
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
    border-radius: 10px;
  }

  .mega-menu-parent:hover > a::after {
    width: 60%;
  }

  /* Mega menu container */
  .mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    width: 150vw;
    max-width: 150vw;
    padding: 60px 0px;
    background: #fff;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    border-top: 1px solid #eaeaea;
    border-bottom: 5px solid var(--accent-color);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.35s ease;
    z-index: 999;
  }

  .mega-menu-parent:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
  }

  .mega-menu-parent > a i {
    transition: transform 0.3s;
  }

  .mega-menu-parent:hover > a i {
    transform: rotate(180deg);
  }
}

/* ---------------- Mobile ---------------- */
@media (max-width: 1199px) {

  .mega-menu {
    position: static;
    display: none;
    padding: 15px 37px;
    background: #0dcaf00f;
    border-left: 3px solid var(--accent-color);
  }

  /* Titres H4 avec sous-tiret */
  /* Liens */
/* Affiche le mega-menu quand l'item est actif */
  .mega-menu-parent .dropdown-active {
    display: block;
  }
}

/*--------------------------------------------------------------
# Header Restore
--------------------------------------------------------------*/
.mega-menu a,
.mega-menu a:focus {
  white-space: normal;
}

.mega-menu ul,
.mega-menu li {
  display: block;
  position: static;
  width: 100%;
  min-width: 0;
  list-style: none;
}

@media (min-width: 1200px) {
  .header {
    padding: 10px 0;
  }

  body.scrolled .header {
    padding: 10px 0;
    box-shadow: none;
    border-bottom-color: color-mix(in srgb, var(--default-color), transparent 90%);
  }

  .header::before {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

  .navmenu {
    padding: 0;
  }

  .navmenu > ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
    gap: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .navmenu > ul > li {
    position: relative;
  }

  .navmenu > ul > li > a,
  .mega-menu-parent > a {
    color: var(--nav-color);
    padding: 18px 15px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    line-height: 1.2;
  }

  .navmenu > ul > li > a:hover,
  .navmenu > ul > li > a.active,
  .mega-menu-parent > a:hover,
  .mega-menu-parent > a.active {
    color: var(--nav-hover-color);
    background: transparent;
  }

  .mega-menu-parent > a {
    gap: 5px;
    position: relative;
  }

  .mega-menu-parent > a .mega-trigger {
    width: auto;
    height: auto;
    margin-left: 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    background: transparent;
    color: inherit;
    border-radius: 0;
    padding: 0;
  }

  .mega-menu-parent > a .mega-trigger:hover,
  .mega-menu-parent > a .mega-trigger:focus,
  .mega-menu-parent > a .mega-trigger[aria-expanded="true"] {
    background: transparent;
    color: inherit;
  }

  .mega-menu-parent > a .mega-trigger[aria-expanded="true"] {
    transform: none;
  }

  .mega-menu-parent > a .mega-trigger[aria-expanded="true"]::before,
  .mega-menu-parent > a .mega-trigger[aria-expanded="true"]::after {
    display: none;
  }

  .mega-menu-parent > a .mega-trigger i,
  .mega-menu-parent > a .mega-trigger.bi-chevron-down {
    font-size: 12px;
    line-height: 1;
    width: auto;
    height: auto;
    margin: 0;
    background: transparent;
  }

  .mega-menu-parent:hover > a .mega-trigger,
  .mega-menu-parent:focus-within > a .mega-trigger {
    color: inherit;
  }

  .navmenu .btn-primary {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    padding: 10px 20px;
    margin: 0 0 0 14px;
    border-radius: 6px;
    font-weight: 500;
    box-shadow: 0 4px 15px color-mix(in srgb, var(--accent-color), transparent 80%);
  }

  .navmenu .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 70%);
  }

  .mega-menu {
    top: calc(100% + 8px);
    left: 50%;
    width: min(1180px, calc(100vw - 48px));
    max-width: min(1180px, calc(100vw - 48px));
    padding: 26px 30px 28px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
    border-top-color: color-mix(in srgb, var(--default-color), transparent 92%);
    border-radius: 18px;
    box-shadow: 0 22px 48px color-mix(in srgb, #08111f, transparent 90%);
    transform: translateX(-50%) translateY(12px);
    max-height: calc(100vh - 110px);
    overflow-y: auto;
  }

  .mega-menu-parent:hover .mega-menu,
  .mega-menu-parent:focus-within .mega-menu {
    transform: translateX(-50%) translateY(0);
  }

  .mega-menu::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -18px;
    height: 18px;
  }
}

@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
    width: auto;
    height: auto;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu > ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    border: 0;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu > ul > li > a,
  .mega-menu-parent > a {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    margin: 0 20px;
    font-family: var(--nav-font);
    font-size: 18px;
    font-weight: 300;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    border-radius: 0;
    background: transparent;
  }

  .mega-menu-parent > a {
    gap: 10px;
  }

  .mega-menu-parent > a .mega-trigger {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    color: inherit;
    flex: 0 0 auto;
  }

  .navmenu > ul > li > a:hover,
  .navmenu > ul > li > a.active,
  .mega-menu-parent > a:hover,
  .mega-menu-parent > a.active {
    color: var(--nav-dropdown-hover-color);
  }

  .mega-menu-parent > a.active .mega-trigger,
  .mega-menu-parent > a .mega-trigger[aria-expanded="true"] {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .mega-menu {
    position: static;
    display: none;
    width: auto;
    max-width: none;
    margin: 10px 20px 0;
    padding: 16px 0 0;
    background: none;
    border: 0;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }

  .mega-menu::before {
    display: none;
  }

  .mega-menu-parent > .dropdown-active {
    display: block;
  }

  .navmenu .btn-primary {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    padding: 10px 20px;
    margin: 0 20px;
    border-radius: 6px;
    font-weight: 500;
    box-shadow: 0 4px 15px color-mix(in srgb, var(--accent-color), transparent 80%);
    width: auto;
    min-height: 0;
    justify-content: center;
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
    background: transparent;
    box-shadow: none;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu > ul {
    display: block;
  }
}

.mega-menu-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 91%);
}

.mega-menu-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  min-width: 0;
}

.mega-menu-proof span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: color-mix(in srgb, var(--default-color), transparent 18%);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
}

.mega-menu-proof i {
  color: var(--accent-color);
  font-size: 14px;
}

.mega-menu-footer-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 0 0 auto;
  gap: 12px 18px;
  min-width: 0;
}

.mega-menu-quick-links,
.mega-menu-legal-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.mega-menu-quick-links a,
.mega-menu-legal-links a {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 750;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.mega-menu-quick-links a {
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: var(--accent-color);
}

.mega-menu-legal-links a {
  color: color-mix(in srgb, var(--default-color), transparent 34%);
}

.mega-menu-quick-links a:hover,
.mega-menu-legal-links a:hover {
  color: var(--accent-color);
}

@media (min-width: 1200px) {
  .mega-menu {
    width: min(1200px, calc(100vw - 48px));
    max-width: min(1200px, calc(100vw - 48px));
    padding: 0;
    border: 0;
    border-radius: 26px;
    background: transparent;
    box-shadow: 0 28px 70px rgba(8, 17, 31, 0.16);
    overflow: visible;
  }

}

@media (max-width: 1199px) {

  .mega-menu-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
    margin-top: 18px;
    padding-top: 16px;
  }

  .mega-menu-proof {
    flex-direction: column;
    gap: 8px;
  }

  .mega-menu-footer-links {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
    gap: 10px;
  }

  .mega-menu-quick-links,
  .mega-menu-legal-links {
    justify-content: flex-start;
  }
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .mega-menu {
    width: min(1080px, calc(100vw - 32px));
    max-width: min(1080px, calc(100vw - 32px));
  }

  .mega-menu-footer {
    margin-top: 18px;
    padding-top: 14px;
  }

  .mega-menu-proof {
    gap: 8px 12px;
  }

  .mega-menu-proof span {
    font-size: 11.5px;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .mobile-nav-active .navmenu > ul {
    inset: 74px 28px 28px;
    padding: 16px 0 18px;
    border-radius: 22px;
    box-shadow: 0 24px 70px rgba(8, 17, 31, 0.18);
  }

  .navmenu > ul > li > a,
  .mega-menu-parent > a {
    margin: 0 16px;
    padding: 13px 16px;
    border-radius: 12px;
    font-size: 17px;
    font-weight: 650;
  }

  .mega-menu {
    max-height: none;
    margin: 12px 16px 0;
    padding: 18px;
    border: 1px solid color-mix(in srgb, var(--accent-color), transparent 86%);
    border-radius: 20px;
    background:
      radial-gradient(circle at 88% 0%, color-mix(in srgb, var(--accent-color), transparent 90%), transparent 18rem),
      linear-gradient(180deg, #ffffff, color-mix(in srgb, var(--accent-color), transparent 97%));
    overflow: visible;
  }

  .mega-menu-footer {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 16px;
    padding-top: 14px;
  }

  .mega-menu-footer-links {
    width: 100%;
    align-items: flex-start;
    justify-content: flex-start;
  }
}

@media (max-width: 767px) {
  .mobile-nav-active .navmenu > ul {
    inset: 66px 12px 12px;
    padding: 10px 0 14px;
    border-radius: 18px;
    box-shadow: 0 24px 70px rgba(8, 17, 31, 0.18);
  }

  .navmenu > ul > li > a,
  .mega-menu-parent > a {
    margin: 0 10px;
    padding: 12px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 650;
  }

  .mega-menu-parent > a .mega-trigger {
    width: 28px;
    height: 28px;
  }

  .mega-menu {
    max-height: none;
    margin: 8px 10px 0;
    padding: 12px;
    border: 1px solid color-mix(in srgb, var(--accent-color), transparent 86%);
    border-radius: 16px;
    background: #ffffff;
    overflow: visible;
  }

  .mega-guidance,
  .mega-menu-footer {
    display: none;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .mobile-nav-toggle,
  .mobile-nav-active .mobile-nav-toggle {
    display: none !important;
  }

  body.mobile-nav-active {
    overflow: auto;
  }

  .navmenu,
  .mobile-nav-active .navmenu {
    position: static;
    inset: auto;
    padding: 0;
    overflow: visible;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .navmenu > ul,
  .mobile-nav-active .navmenu > ul {
    position: static;
    inset: auto;
    display: flex !important;
    align-items: center;
    gap: 0;
    margin: 0;
    padding: 0;
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .navmenu > ul > li {
    position: relative;
  }

  .navmenu > ul > li.mega-menu-parent {
    position: static;
  }

  .navmenu > ul > li > a,
  .mega-menu-parent > a {
    margin: 0;
    padding: 18px 10px;
    border-radius: 0;
    color: var(--nav-color);
    background: transparent;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
    white-space: nowrap;
  }

  .navmenu > ul > li > a:hover,
  .navmenu > ul > li > a.active,
  .mega-menu-parent > a:hover,
  .mega-menu-parent > a.active {
    color: var(--nav-hover-color);
    background: transparent;
  }

  .mega-menu-parent > a {
    gap: 5px;
  }

  .mega-menu-parent > a .mega-trigger {
    width: auto;
    height: auto;
    margin-left: 4px;
    padding: 0;
    border-radius: 0;
    background: transparent;
    color: inherit;
    font-size: 11px;
  }

  .mega-menu-parent > a .mega-trigger[aria-expanded="true"] {
    transform: none;
  }

  .navmenu .btn-primary {
    min-height: 0;
    margin: 0 0 0 10px;
    padding: 10px 15px;
    border-radius: 6px;
    font-size: 13px;
    justify-content: center;
    width: auto;
  }

  .mega-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    display: block;
    width: min(960px, calc(100vw - 24px));
    max-width: min(960px, calc(100vw - 24px));
    max-height: calc(100vh - 108px);
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 22px;
    background: transparent;
    box-shadow: 0 26px 64px rgba(8, 17, 31, 0.15);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    overflow: visible;
    transform: translateX(-50%) translateY(12px);
    transition: opacity 0.22s ease, visibility 0.22s ease, transform 0.22s ease;
  }

  .mega-menu-parent:hover .mega-menu,
  .mega-menu-parent:focus-within .mega-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
  }

  .mega-menu::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -18px;
    display: block;
    height: 18px;
  }

  .mega-menu-footer {
    display: flex;
    align-items: center;
    flex-direction: row;
    margin-top: 15px;
    padding-top: 13px;
  }

  .mega-menu-proof {
    flex-direction: row;
    gap: 8px 12px;
  }

  .mega-menu-proof span {
    font-size: 11px;
  }

  .mega-menu-footer-links {
    display: none;
  }
}

input[type=text],
input[type=email],
textarea {
  color: var(--default-color);
  background-color: var(--surface-color);
  font-size: 14px;
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

input[type=text]:focus,
input[type=email]:focus,
textarea:focus {
  border-color: var(--accent-color);
}

input[type=text]::placeholder,
input[type=email]::placeholder,
textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}
/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 100px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  text-align: center;
  padding: 120px 0 20px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.page-title .breadcrumbs {
  margin-bottom: 1.5rem;
}

.page-title .breadcrumbs .breadcrumb {
  justify-content: center;
  margin: 0;
  padding: 0;
  background: none;
}

.page-title .breadcrumbs .breadcrumb .breadcrumb-item {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.page-title .breadcrumbs .breadcrumb .breadcrumb-item.active {
  color: var(--accent-color);
}

.page-title .breadcrumbs .breadcrumb .breadcrumb-item a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-title .breadcrumbs .breadcrumb .breadcrumb-item a:hover {
  color: var(--accent-color);
}

.page-title .breadcrumbs .breadcrumb .breadcrumb-item a i {
  font-size: 0.9rem;
  margin-right: 0.2rem;
}

.page-title .breadcrumbs .breadcrumb .breadcrumb-item+.breadcrumb-item::before {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.page-title .title-wrapper {
  max-width: 800px;
  margin: 0 auto;
  padding: 1rem 0;
}

.page-title .title-wrapper h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 400;
  color: var(--heading-color);
}

.page-title .title-wrapper p {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .page-title .title-wrapper h1 {
    font-size: 2rem;
  }

  .page-title .title-wrapper p {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .page-title .title-wrapper h1 {
    font-size: 1.75rem;
  }
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 87px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 2.8rem;
  font-weight: 300;
  line-height: 1.2;
  color: var(--heading-color);
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}

.section-title h1 {
  font-size: 2.8rem;
  font-weight: 300;
  line-height: 1.2;
  color: var(--heading-color);
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}

@media (max-width: 768px) {
  .section-title h1,
  .section-title h2 {
    font-size: 2.5rem;
  }
}

.section-title .subtitle {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
  position: relative;
}

.section-title .subtitle::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 1px;
  background: var(--accent-color);
}

.section-title p {
  font-size: 1.125rem;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  max-width: 900px;
  margin: 0 auto;
  text-wrap: balance;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  padding: 120px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero .hero-content h2,
.hero .hero-content .hero-eyebrow {
  display: block;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-color);
  margin-bottom: 1.25rem;
}

.hero .hero-content h1 {
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 2rem;
  color: var(--heading-color);
}

@media (max-width: 768px) {
  .hero .hero-content h1 {
    font-size: 2.5rem;
  }
}

.hero .hero-content p {
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.hero .hero-content p:last-of-type {
  margin-bottom: 3rem;
}

.hero .hero-cta {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 4rem;
  align-items: center;
}

@media (max-width: 576px) {
  .hero .hero-cta {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}

.hero .hero-cta .btn-primary {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 14px 32px;
  border-radius: 6px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 4px 15px color-mix(in srgb, var(--accent-color), transparent 80%);
}

.hero .hero-cta .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 10%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.hero .hero-cta .btn-secondary {
  color: var(--heading-color);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.hero .hero-cta .btn-secondary i {
  font-size: 1.5rem;
  color: var(--accent-color);
}

.hero .hero-cta .btn-secondary:hover {
  color: var(--accent-color);
  transform: translateX(5px);
}

.hero .hero-image {
  position: relative;
}

.hero .hero-image img {
  border-radius: 12px;
  box-shadow: 0 20px 60px color-mix(in srgb, var(--default-color), transparent 85%);
}

.hero.hero-local .hero-content h1 {
  font-size: var(--ap-display-h1);
}

.hero.hero-local .hero-content p {
  max-width: 58ch;
}

.hero.hero-local .hero-image img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
}

.hero.hero-local .hero-image .floating-card {
  max-width: 300px;
  align-items: flex-start;
}

.hero.hero-local .hero-image .floating-card .card-content h5,
.hero.hero-local .hero-image .floating-card .card-content .hero-card-title {
  display: block;
  font-size: 1rem;
}

.hero.hero-local .hero-image .floating-card .card-content .growth-percentage {
  font-size: 0.95rem;
  line-height: 1.5;
}

.hero .hero-image .floating-card {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--surface-color);
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 10px 40px color-mix(in srgb, var(--default-color), transparent 85%);
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 200px;
}

@media (max-width: 768px) {
  .hero .hero-image .floating-card {
    bottom: 10px;
    left: 10px;
    padding: 1rem;
    min-width: 160px;
  }
}

.hero .hero-image .floating-card .card-icon {
  width: 50px;
  height: 50px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero .hero-image .floating-card .card-icon i {
  font-size: 1.5rem;
  color: var(--accent-color);
}

.hero .hero-image .floating-card .card-content h5 {
  font-size: 0.875rem;
  font-weight: 600;
  margin: 0 0 0.25rem 0;
  color: var(--heading-color);
}

.hero .hero-image .floating-card .card-content .growth-percentage {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent-color);
}

@media (max-width: 992px) {
  .hero {
    padding: 80px 0 60px;
  }

  .hero::before {
    display: none;
  }

  .hero .row {
    flex-direction: column-reverse;
  }

  .hero .col-lg-6:first-child {
    margin-top: 3rem;
  }

  .hero.hero-local .hero-image img {
    min-height: auto;
  }
}

@media (max-width: 768px) {
  .hero.hero-local .hero-content h1 {
    font-size: var(--ap-display-h1);
  }
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services {
  background-color: color-mix(in srgb, var(--background-color), var(--accent-color) 2%);
}

.services .service-item {
  padding: 60px 40px;
  background-color: var(--surface-color);
  border-radius: 8px;
  transition: all 0.4s ease-in-out;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  box-shadow: 0 5px 10px color-mix(in srgb, var(--default-color), transparent 90%);
}

.services .service-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), color-mix(in srgb, var(--accent-color), var(--heading-color) 30%));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease-in-out;
}

.services .service-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px color-mix(in srgb, var(--default-color), transparent 90%);
}

.services .service-item:hover::before {
  transform: scaleX(1);
}

.services .service-item:hover .service-icon {
  transform: scale(1.1);
}

.services .service-item:hover .service-link {
  color: var(--accent-color);
}

.services .service-item:hover .service-link i {
  transform: translateX(8px);
}

.services .service-item .service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), var(--heading-color) 20%));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
  transition: transform 0.4s ease-in-out;
  flex-shrink: 0;
}

.services .service-item .service-icon i {
  font-size: 32px;
  color: var(--contrast-color);
}

.services .service-item h3,
.services .service-item h2 {
  font-size: 24px;
  font-weight: 300;
  margin-bottom: 20px;
  line-height: 1.3;
}

.services .service-item p {
  font-size: 16px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 32px;
  flex-grow: 1;
}

.services .service-item .service-link {
  color: var(--heading-color);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease-in-out;
  align-self: flex-start;
}

.services .service-item .service-link i {
  font-size: 16px;
  transition: transform 0.3s ease-in-out;
}

@media (max-width: 768px) {
  .services .service-item {
    padding: 40px 24px;
  }

  .services .service-item .service-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 24px;
  }

  .services .service-item .service-icon i {
    font-size: 28px;
  }

  .services .service-item h3,
  .services .service-item h2 {
    font-size: 20px;
    margin-bottom: 16px;
  }

  .services .service-item p {
    font-size: 15px;
    margin-bottom: 24px;
  }
}

/*--------------------------------------------------------------
# Why Us Section
--------------------------------------------------------------*/

.why-us .content {
  margin-bottom: 60px;
}

.why-us .content h2 {
  font-size: 2.5rem;
  font-weight: 300;
  margin-bottom: 30px;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .why-us .content h2 {
    font-size: 2rem;
  }
}

.why-us .content p {
  font-size: 1.125rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0;
}

.why-us .content p + p {
  margin-top: 1.25rem;
}

.why-us .features-grid {
  margin-top: 80px;
}

.why-us .feature-item {
  display: flex;
  gap: 25px;
  transition: transform 0.3s ease-in-out;
  padding: 30px 30px;
  background-color: var(--surface-color);
  border-radius: 8px;
  transition: all 0.4s ease-in-out;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  box-shadow: 0 5px 10px color-mix(in srgb, var(--default-color), transparent 90%);
}

.why-us .feature-item:hover {
  transform: translateY(-5px);
}

.why-us .feature-item:hover .icon-wrapper {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .why-us .feature-item {
    flex-direction: column;
    text-align: center;
    gap: 20px;
    padding: 30px 24px;
  }
}

.why-us .icon-wrapper {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  transition: all 0.4s ease-in-out;
}

@media (max-width: 768px) {
  .why-us .icon-wrapper {
    margin: 0 auto;
  }
}

.why-us .feature-content {
  flex: 1;
}

.why-us .feature-content h3 {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 15px;
  line-height: 1.3;
}

@media (max-width: 768px) {
  .why-us .feature-content h3 {
    font-size: 1.25rem;
  }
}

.why-us .feature-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin: 0;
}

@media (max-width: 992px) {
  .why-us .content {
    margin-bottom: 40px;
    text-align: center;
  }

  .why-us .features-grid {
    margin-top: 60px;
  }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact {
  padding: 120px 0 100px;
}

.contact .info-item {
  margin-bottom: 80px;
}

.contact .info-item .info-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
}

.contact .info-item .info-icon i {
  font-size: 24px;
  color: var(--accent-color);
}

.contact .info-item .info-content h4,
.contact .info-item .info-content h2 {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 16px;
  color: var(--heading-color);
  letter-spacing: -0.3px;
}

.contact .info-item .info-content p {
  font-size: 16px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin: 0;
}

.contact .contact-details .detail-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 48px;
}

.contact .contact-details .detail-item:last-child {
  margin-bottom: 0;
}

.contact .contact-details .detail-item .detail-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact .contact-details .detail-item .detail-icon i {
  font-size: 18px;
  color: var(--accent-color);
}

.contact .contact-details .detail-item .detail-content {
  flex: 1;
}

.contact .contact-details .detail-item .detail-content .detail-label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 6px;
}

.contact .contact-details .detail-item .detail-content .detail-value {
  display: block;
  font-size: 16px;
  color: var(--default-color);
  line-height: 1.6;
}

.contact .form-header {
  margin-bottom: 48px;
}

.contact .form-header h3,
.contact .form-header h2 {
  font-size: 32px;
  font-weight: 300;
  color: var(--heading-color);
  margin: 0;
  letter-spacing: -0.4px;
}

.contact .form-wrapper {
  background-color: var(--surface-color);
  padding: 20px 30px;
  border-radius: 10px;
}

.contact .form-wrapper .form-group {
  margin-bottom: 32px;
}

.contact .form-wrapper .form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--heading-color);
  margin-bottom: 12px;
  letter-spacing: 0.2px;
}

.contact .form-wrapper .form-group input,
.contact .form-wrapper .form-group select,
.contact .form-wrapper .form-group textarea {
  width: 100%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 8px;
  padding: 16px 20px;
  font-size: 15px;
  color: var(--default-color);
  background-color: var(--surface-color);
  transition: all 0.3s ease;
  font-family: inherit;
}

.contact .form-wrapper .form-group input:focus,
.contact .form-wrapper .form-group select:focus,
.contact .form-wrapper .form-group textarea:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 90%);
}

.contact .form-wrapper .form-group input::placeholder,
.contact .form-wrapper .form-group select::placeholder,
.contact .form-wrapper .form-group textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.contact .form-wrapper .form-group select {
  cursor: pointer;
}

.contact .form-wrapper .form-group select option {
  padding: 10px;
}

.contact .form-wrapper .form-group textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}

.contact .form-wrapper .submit-btn {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  border-radius: 8px;
  padding: 18px 36px;
  font-size: 15px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.3px;
}

.contact .form-wrapper .submit-btn i {
  font-size: 16px;
  transition: transform 0.3s ease;
}

.contact .form-wrapper .submit-btn:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 10%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.contact .form-wrapper .submit-btn:hover i {
  transform: translateX(4px);
}

.contact-honeypot {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-privacy-consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 4px 0 24px;
  padding: 14px 16px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 84%);
  border-radius: 10px;
  background: color-mix(in srgb, var(--accent-color), transparent 96%);
}

.contact-privacy-consent input {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--accent-color);
}

.contact-privacy-consent label {
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 18%);
  font-size: 13px;
  line-height: 1.6;
}

.contact-privacy-consent a {
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-recaptcha-note {
  margin: -8px 0 22px;
  color: color-mix(in srgb, var(--default-color), transparent 32%);
  font-size: 12px;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .contact {
    padding: 80px 0 60px;
  }

  .contact .info-item {
    margin-bottom: 50px;
  }

  .contact .info-item .info-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 24px;
  }

  .contact .info-item .info-icon i {
    font-size: 20px;
  }

  .contact .info-item .info-content h4,
  .contact .info-item .info-content h2 {
    font-size: 20px;
    margin-bottom: 12px;
  }

  .contact .contact-details .detail-item {
    margin-bottom: 32px;
  }

  .contact .form-header {
    margin-bottom: 32px;
  }

  .contact .form-header h3,
  .contact .form-header h2 {
    font-size: 24px;
  }
  .contact-privacy-consent {
    padding: 13px 14px;
  }
}

/*--------------------------------------------------------------
# Error 404 Section
--------------------------------------------------------------*/
.error-404 {
  padding: 120px 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--surface-color) 0%, color-mix(in srgb, var(--surface-color), var(--accent-color) 3%) 100%);
}

.error-404 .error-content {
  margin-bottom: 80px;
}

.error-404 .error-content .error-number {
  font-size: 8rem;
  font-weight: 300;
  color: var(--accent-color);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  opacity: 0.8;
}

@media (max-width: 768px) {
  .error-404 .error-content .error-number {
    font-size: 6rem;
  }
}

@media (max-width: 576px) {
  .error-404 .error-content .error-number {
    font-size: 4.5rem;
  }
}

.error-404 .error-content .error-title {
  font-size: 3rem;
  font-weight: 300;
  color: var(--heading-color);
  margin-bottom: 30px;
  letter-spacing: -0.01em;
}

@media (max-width: 768px) {
  .error-404 .error-content .error-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 576px) {
  .error-404 .error-content .error-title {
    font-size: 2rem;
  }
}

.error-404 .error-content .error-description {
  font-size: 1.125rem;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 50px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .error-404 .error-content .error-description {
    font-size: 1rem;
    margin-bottom: 40px;
  }
}

.error-404 .error-content .error-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.error-404 .error-content .error-actions .btn-primary {
  display: inline-flex;
  align-items: center;
  padding: 16px 32px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.error-404 .error-content .error-actions .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 10%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.error-404 .error-content .error-actions .btn-secondary {
  display: inline-flex;
  align-items: center;
  padding: 16px 32px;
  background-color: transparent;
  color: var(--heading-color);
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.error-404 .error-content .error-actions .btn-secondary:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
  transform: translateY(-2px);
}

@media (max-width: 576px) {
  .error-404 .error-content .error-actions {
    flex-direction: column;
    align-items: center;
  }

  .error-404 .error-content .error-actions .btn-primary,
  .error-404 .error-content .error-actions .btn-secondary {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}

.error-404 .helpful-links .links-title {
  font-size: 2rem;
  font-weight: 300;
  color: var(--heading-color);
  text-align: center;
  margin-bottom: 60px;
  letter-spacing: -0.01em;
}

@media (max-width: 768px) {
  .error-404 .helpful-links .links-title {
    font-size: 1.75rem;
    margin-bottom: 40px;
  }
}

.error-404 .helpful-links .link-item {
  text-align: center;
  padding: 40px 20px;
  height: 100%;
  transition: all 0.3s ease;
}

.error-404 .helpful-links .link-item:hover {
  transform: translateY(-10px);
}

.error-404 .helpful-links .link-item .link-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-color) 0%, color-mix(in srgb, var(--accent-color), black 20%) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  transition: all 0.3s ease;
}

.error-404 .helpful-links .link-item .link-icon i {
  font-size: 1.75rem;
  color: var(--contrast-color);
}

.error-404 .helpful-links .link-item h4 {
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--heading-color);
  margin-bottom: 20px;
}

.error-404 .helpful-links .link-item p {
  font-size: 1rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 25px;
}

.error-404 .helpful-links .link-item .link-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.error-404 .helpful-links .link-item .link-cta:hover {
  color: color-mix(in srgb, var(--accent-color), black 15%);
  gap: 12px;
}

.error-404 .helpful-links .link-item .link-cta i {
  font-size: 0.875rem;
  transition: transform 0.3s ease;
}

.error-404 .helpful-links .link-item .link-cta:hover i {
  transform: translateX(3px);
}

.error-404 .helpful-links .link-item:hover .link-icon {
  transform: scale(1.1);
  box-shadow: 0 15px 35px color-mix(in srgb, var(--accent-color), transparent 65%);
}

@media (max-width: 992px) {
  .error-404 {
    padding: 80px 0;
  }

  .error-404 .helpful-links .link-item {
    margin-bottom: 40px;
  }
}

@media (max-width: 768px) {
  .error-404 {
    padding: 60px 0;
    min-height: auto;
  }

  .error-404 .error-content {
    margin-bottom: 60px;
  }

  .error-404 .helpful-links .links-title {
    margin-bottom: 40px;
  }
}

/*--------------------------------------------------------------
# Helpful Links (shared with contact navigation)
--------------------------------------------------------------*/

.contact-nav .helpful-links .links-title {
  font-size: 2rem;
  font-weight: 300;
  color: var(--heading-color);
  text-align: center;
  margin-bottom: 60px;
  letter-spacing: -0.01em;
}

@media (max-width: 768px) {
  .contact-nav .helpful-links .links-title {
    font-size: 1.75rem;
    margin-bottom: 40px;
  }
}

.contact-nav .helpful-links .link-item {
  text-align: center;
  padding: 40px 20px;
  height: 100%;
  transition: all 0.3s ease;
}

.contact-nav .helpful-links .link-item:hover {
  transform: translateY(-10px);
}

.contact-nav .helpful-links .link-item .link-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--accent-color) 0%,
    color-mix(in srgb, var(--accent-color), black 20%) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  transition: all 0.3s ease;
}

.contact-nav .helpful-links .link-item:hover .link-icon {
  transform: scale(1.1);
  box-shadow: 0 15px 35px color-mix(in srgb, var(--accent-color), transparent 65%);
}

.contact-nav .helpful-links .link-item .link-icon i {
  font-size: 1.75rem;
  color: var(--contrast-color);
}

.contact-nav .helpful-links .link-item h4 {
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--heading-color);
  margin-bottom: 20px;
}

.contact-nav .helpful-links .link-item p {
  font-size: 1rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 25px;
}

.contact-nav .helpful-links .link-item .link-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.contact-nav .helpful-links .link-item .link-cta:hover {
  color: color-mix(in srgb, var(--accent-color), black 15%);
  gap: 12px;
}

.contact-nav .helpful-links .link-item .link-cta i {
  font-size: 0.875rem;
  transition: transform 0.3s ease;
}

.contact-nav .helpful-links .link-item .link-cta:hover i {
  transform: translateX(3px);
}

@media (max-width: 992px) {
  .contact-nav .helpful-links .link-item {
    margin-bottom: 40px;
  }
}

/*--------------------------------------------------------------
# Shared Helpers Bridge
--------------------------------------------------------------*/
.image-credit {
  margin-top: 14px;
  font-size: 13px;
  line-height: 1.5;
  color: color-mix(in srgb, var(--default-color), transparent 22%);
}

.image-credit a {
  color: inherit;
  text-decoration: underline;
  text-decoration-thickness: 1px;
}

.image-credit a:hover {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# CTA Refresh
--------------------------------------------------------------*/
.navmenu .btn-primary,
.hero .hero-cta .btn-primary,
.about .cta-section .btn-primary,
.error-404 .error-content .error-actions .btn-primary,
.home-regulation-action .btn-primary,
.contact .form-wrapper .submit-btn,
.accomplus-localisation .localisation-content .action-buttons .btn.btn-primary,
.footer .newsletter-form .btn-subscribe {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 14px 28px;
  border-radius: 16px;
  border: 1px solid color-mix(in srgb, var(--accent-color) 84%, #ffffff);
  background: linear-gradient(135deg, var(--accent-color) 0%, color-mix(in srgb, var(--accent-color) 68%, var(--accent-color-light)) 100%);
  color: var(--contrast-color);
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  box-shadow: 0 16px 34px color-mix(in srgb, var(--accent-color), transparent 78%), inset 0 1px 0 rgba(255, 255, 255, 0.22);
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, border-color 0.22s ease, color 0.22s ease;
}

.navmenu .btn-primary {
  min-height: 44px;
  padding: 11px 20px;
  border-radius: 14px;
}

.navmenu .btn-primary:hover,
.hero .hero-cta .btn-primary:hover,
.about .cta-section .btn-primary:hover,
.error-404 .error-content .error-actions .btn-primary:hover,
.home-regulation-action .btn-primary:hover,
.contact .form-wrapper .submit-btn:hover,
.accomplus-localisation .localisation-content .action-buttons .btn.btn-primary:hover,
.footer .newsletter-form .btn-subscribe:hover {
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color) 88%, #001a46) 0%, color-mix(in srgb, var(--accent-color-light) 78%, var(--accent-color)) 100%);
  color: var(--contrast-color);
  border-color: color-mix(in srgb, var(--accent-color) 74%, #ffffff);
  transform: translateY(-2px);
  box-shadow: 0 20px 40px color-mix(in srgb, var(--accent-color), transparent 74%), inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.navmenu .btn-primary:focus-visible,
.hero .hero-cta .btn-primary:focus-visible,
.about .cta-section .btn-primary:focus-visible,
.error-404 .error-content .error-actions .btn-primary:focus-visible,
.home-regulation-action .btn-primary:focus-visible,
.contact .form-wrapper .submit-btn:focus-visible,
.accomplus-localisation .localisation-content .action-buttons .btn.btn-primary:focus-visible,
.footer .newsletter-form .btn-subscribe:focus-visible,
.hero .hero-cta .btn-secondary:focus-visible,
.about .cta-section .btn-outline:focus-visible,
.error-404 .error-content .error-actions .btn-secondary:focus-visible,
.accomplus-localisation .localisation-content .action-buttons .btn.btn-outline:focus-visible,
.cta-section .cta-btn:focus-visible,
.assistance-details .cta-box .cta-btn:focus-visible,
.service-details .service-sidebar .cta-widget .cta-content .btn-cta:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent-color), transparent 78%), 0 16px 34px color-mix(in srgb, var(--accent-color), transparent 76%);
}

.hero .hero-cta .btn-secondary,
.about .cta-section .btn-outline,
.error-404 .error-content .error-actions .btn-secondary,
.accomplus-localisation .localisation-content .action-buttons .btn.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 14px 24px;
  border-radius: 16px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 84%);
  background: color-mix(in srgb, var(--surface-color) 90%, #ffffff);
  color: var(--heading-color);
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 14px 30px color-mix(in srgb, var(--default-color), transparent 92%), inset 0 1px 0 rgba(255, 255, 255, 0.7);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, color 0.22s ease, background-color 0.22s ease;
}

.hero .hero-cta .btn-secondary i,
.error-404 .error-content .error-actions .btn-secondary i,
.about .cta-section .btn-outline i,
.accomplus-localisation .localisation-content .action-buttons .btn.btn-outline i {
  font-size: 1rem;
  color: currentColor;
  transition: transform 0.22s ease;
}

.hero .hero-cta .btn-secondary:hover,
.about .cta-section .btn-outline:hover,
.error-404 .error-content .error-actions .btn-secondary:hover,
.accomplus-localisation .localisation-content .action-buttons .btn.btn-outline:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: var(--accent-color);
  border-color: color-mix(in srgb, var(--accent-color), transparent 52%);
  transform: translateY(-2px);
  box-shadow: 0 18px 38px color-mix(in srgb, var(--accent-color), transparent 88%), inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.hero .hero-cta .btn-secondary:hover i,
.error-404 .error-content .error-actions .btn-secondary:hover i,
.about .cta-section .btn-outline:hover i,
.accomplus-localisation .localisation-content .action-buttons .btn.btn-outline:hover i,
.contact .form-wrapper .submit-btn:hover i {
  transform: translateX(3px);
}

.cta-section .cta-btn,
.assistance-details .cta-box .cta-btn,
.service-details .service-sidebar .cta-widget .cta-content .btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 14px 30px;
  border-radius: 16px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 82%);
  background: linear-gradient(180deg, #ffffff 0%, color-mix(in srgb, #ffffff 92%, var(--accent-color)) 100%);
  color: var(--accent-color);
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none;
  box-shadow: 0 18px 34px rgba(7, 18, 45, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.85);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, color 0.22s ease, background 0.22s ease;
}

.cta-section .cta-btn:hover,
.assistance-details .cta-box .cta-btn:hover,
.service-details .service-sidebar .cta-widget .cta-content .btn-cta:hover {
  color: var(--accent-color);
  border-color: color-mix(in srgb, var(--accent-color), transparent 58%);
  background: linear-gradient(180deg, #ffffff 0%, color-mix(in srgb, #ffffff 86%, var(--accent-color)) 100%);
  transform: translateY(-2px);
  box-shadow: 0 22px 42px rgba(7, 18, 45, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.hero .hero-cta,
.about .cta-section,
.error-404 .error-content .error-actions,
.accomplus-localisation .localisation-content .action-buttons {
  flex-wrap: wrap;
}

@media (max-width: 576px) {
  .hero .hero-cta .btn-primary,
  .hero .hero-cta .btn-secondary,
  .about .cta-section .btn-primary,
  .about .cta-section .btn-outline,
  .error-404 .error-content .error-actions .btn-primary,
  .error-404 .error-content .error-actions .btn-secondary,
  .accomplus-localisation .localisation-content .action-buttons .btn {
    width: 100%;
  }
}

/* ========================================================================== 
   Accomplus component and page system
   ========================================================================== */

:root {
  --ap-ink: #09111f;
  --ap-ink-soft: #14213d;
  --ap-cobalt: #0056d2;
  --ap-cobalt-deep: #003f9e;
  --ap-cyan: #16c7f3;
  --ap-cyan-on-blue: #e2f8ff;
  --ap-paper: #f6f4ee;
  --ap-paper-bright: #fffefa;
  --ap-line: rgba(9, 17, 31, 0.14);
  --ap-line-strong: rgba(9, 17, 31, 0.3);
  --ap-muted: #5f6878;
  --ap-white: #ffffff;
  --ap-cut: 22px;
  --ap-display-h1: clamp(3rem, 3.8vw, 4rem);
  --ap-display-h2: clamp(2rem, 2.6vw, 2.9rem);
  --default-font: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
  --heading-font: "Manrope", system-ui, sans-serif;
  --nav-font: "Manrope", system-ui, sans-serif;
}

html {
  scroll-padding-top: 132px;
}

body {
  background: var(--ap-paper-bright);
  color: var(--ap-ink);
  font-family: var(--default-font);
  -webkit-font-smoothing: antialiased;
}

a,
button,
input,
select,
textarea {
  outline-offset: 4px;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--ap-cyan);
}

.trame-kicker,
.trame-fact-label,
.trame-card-label,
.trame-footer-label,
.trame-service-number {
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trame-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ap-cobalt);
}

.trame-kicker::before {
  width: 34px;
  height: 2px;
  background: currentColor;
  content: "";
}

.trame-kicker-light {
  color: var(--ap-cyan);
}

.trame-button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 0;
  clip-path: polygon(0 0, calc(100% - 13px) 0, 100% 13px, 100% 100%, 13px 100%, 0 calc(100% - 13px));
  font-size: 0.94rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.trame-button:hover {
  transform: translateY(-2px);
}

.trame-button-primary {
  background: var(--ap-cobalt);
  color: var(--ap-white);
}

.trame-button-primary:hover {
  background: var(--ap-cobalt-deep);
  color: var(--ap-white);
}

.trame-button-ghost {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.05);
  color: var(--ap-white);
}

.trame-button-ghost:hover {
  border-color: var(--ap-cyan);
  color: var(--ap-cyan);
}

.trame-button-dark {
  background: var(--ap-ink);
  color: var(--ap-white);
}

.trame-button-dark:hover {
  background: var(--ap-cobalt);
  color: var(--ap-white);
}

.trame-button-light {
  background: var(--ap-white);
  color: var(--ap-ink);
}

.trame-button-light:hover {
  background: var(--ap-cyan);
  color: var(--ap-ink);
}

.trame-text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--ap-cobalt);
  font-weight: 800;
  text-decoration: none;
}

.trame-text-link:hover {
  color: var(--ap-cobalt-deep);
}

.trame-text-link-light {
  color: var(--ap-white);
}

.trame-text-link-light:hover {
  color: var(--ap-cyan);
}

/* Header */
.trame-header {
  display: block !important;
  height: auto;
  padding: 0;
  background: rgba(255, 254, 250, 0.97);
  border-bottom: 1px solid var(--ap-line);
  box-shadow: none;
  backdrop-filter: blur(14px);
}

.trame-utility {
  height: 34px;
  background: var(--ap-ink);
  color: rgba(255, 255, 255, 0.82);
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.035em;
}

.trame-utility-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 28px;
}

.trame-utility a,
.trame-utility span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: inherit;
  text-decoration: none;
}

.trame-utility a:hover {
  color: var(--ap-cyan);
}

.trame-utility-phone {
  margin-left: auto;
  color: var(--ap-white) !important;
  font-weight: 600;
}

.trame-nav-shell {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.trame-logo {
  flex: 0 0 auto;
  padding: 6px 0;
}

.trame-logo img {
  width: 215px;
  height: auto;
  max-height: 56px;
  object-fit: contain;
}

@media (min-width: 1200px) {
  .trame-nav > ul {
    display: flex;
    align-items: center;
    gap: 2px;
  }

  .trame-nav > ul > li > a {
    min-height: 44px;
    padding: 10px 10px;
    color: var(--ap-ink-soft);
    font-size: 0.83rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    border-radius: 0;
  }

  .trame-nav > ul > li > a::after {
    position: absolute;
    right: 10px;
    bottom: 4px;
    left: 10px;
    height: 2px;
    background: var(--ap-cobalt);
    content: "";
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 180ms ease;
  }

  .trame-nav > ul > li > a:hover,
  .trame-nav > ul > li > a.active {
    color: var(--ap-cobalt);
  }

  .trame-nav > ul > li > a:hover::after,
  .trame-nav > ul > li > a.active::after {
    transform: scaleX(1);
  }

  .trame-nav > ul > li > a.trame-nav-cta {
    min-height: 46px;
    margin-left: 8px;
    padding: 11px 15px;
    background: var(--ap-cobalt);
    color: var(--ap-white);
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
  }

  .trame-nav > ul > li > a.trame-nav-cta::after {
    display: none;
  }

  .trame-nav > ul > li > a.trame-nav-cta:hover,
  .trame-nav > ul > li > a.trame-nav-cta.active {
    background: var(--ap-cobalt-deep);
    color: var(--ap-white);
  }

  .trame-nav > ul > li > a.nav-utility-link {
    color: var(--ap-muted);
  }
}

/* Home hero */
.home-v2 .main {
  overflow: clip;
}

.trame-hero {
  position: relative;
  min-height: 780px;
  padding: 178px 0 88px;
  overflow: hidden;
  background: var(--ap-ink);
  color: var(--ap-white);
}

.trame-hero::before {
  position: absolute;
  top: 0;
  right: -12%;
  width: 58%;
  height: 100%;
  background: linear-gradient(145deg, rgba(0, 86, 210, 0.22), rgba(22, 199, 243, 0.04));
  clip-path: polygon(28% 0, 100% 0, 100% 100%, 0 100%);
  content: "";
}

.trame-grid {
  position: absolute;
  inset: 0;
  opacity: 0.23;
  background-image: linear-gradient(rgba(255,255,255,.09) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.09) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, #000, transparent 80%);
}

.trame-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  align-items: center;
  gap: clamp(42px, 7vw, 104px);
}

.trame-hero-copy {
  position: relative;
  z-index: 2;
}

.trame-hero h1 {
  max-width: 780px;
  margin: 24px 0;
  color: var(--ap-white);
  font-size: clamp(3rem, 3.8vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 1;
}

.trame-hero-lead {
  max-width: 690px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1rem, 1.5vw, 1.19rem);
  line-height: 1.75;
}

.trame-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.trame-hero-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 720px;
  margin-top: 44px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.trame-hero-facts > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 20px 24px 0 0;
}

.trame-hero-facts > div + div {
  padding-left: 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.trame-fact-label {
  color: var(--ap-cyan);
}

.trame-hero-facts strong {
  font-size: 0.98rem;
}

.trame-hero-facts small {
  color: rgba(255, 255, 255, 0.64);
}

.trame-hero-visual {
  position: relative;
  min-height: 540px;
}

.trame-portrait-frame {
  position: absolute;
  inset: 10px 0 0 22px;
  overflow: hidden;
  background: #1a2637;
  clip-path: polygon(18% 0, 100% 0, 100% 82%, 82% 100%, 0 100%, 0 18%);
}

.trame-portrait-frame::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(9, 17, 31, 0.45));
  content: "";
}

.trame-portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.9) contrast(1.04);
}

.trame-portrait-frame picture {
  display: block;
  width: 100%;
  height: 100%;
}

.trame-signal-card {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--ap-paper-bright);
  color: var(--ap-ink);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.trame-signal-card-top {
  top: 48px;
  left: -26px;
  flex-direction: column;
  align-items: flex-start;
  padding: 18px 22px;
}

.trame-signal-card-top span {
  color: var(--ap-cobalt);
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trame-signal-card-bottom {
  right: -28px;
  bottom: 28px;
  max-width: 320px;
  padding: 19px 22px;
  border-left: 4px solid var(--ap-cyan);
}

.trame-signal-card-bottom i {
  color: var(--ap-cobalt);
  font-size: 1.7rem;
}

.trame-signal-card-bottom div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.trame-signal-card-bottom span {
  color: var(--ap-muted);
  font-size: 0.78rem;
}

/* Sections */
.trame-audience,
.trame-services,
.trame-reform,
.trame-proof {
  padding: clamp(78px, 9vw, 130px) 0;
}

.trame-section-heading {
  max-width: 850px;
  margin-bottom: 48px;
}

.trame-section-heading-split {
  max-width: none;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: end;
  gap: 60px;
}

.trame-section-heading h2,
.trame-shop h2,
.trame-method h2,
.trame-reform h2,
.trame-proof h2,
.trame-footer h2 {
  margin: 18px 0 0;
  font-size: clamp(2rem, 2.6vw, 2.9rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.trame-section-heading p {
  margin: 0;
  color: var(--ap-muted);
  line-height: 1.75;
}

.trame-audience {
  background: var(--ap-paper);
}

.trame-audience-grid {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  gap: 1px;
  background: var(--ap-ink);
  border: 1px solid var(--ap-ink);
}

.trame-audience-card {
  position: relative;
  min-height: 440px;
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 26px;
  padding: clamp(34px, 5vw, 64px);
  overflow: hidden;
  background: var(--ap-paper-bright);
}

.trame-audience-pro::before {
  position: absolute;
  right: -80px;
  bottom: -140px;
  width: 320px;
  height: 320px;
  border: 50px solid rgba(0, 86, 210, 0.08);
  content: "";
  transform: rotate(45deg);
}

.trame-audience-private {
  background: var(--ap-cobalt);
  color: var(--ap-white);
}

.trame-card-index {
  color: var(--ap-cobalt);
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 1.1rem;
}

.trame-audience-private .trame-card-index,
.trame-audience-private .trame-card-label {
  color: var(--ap-cyan-on-blue);
}

.trame-audience-card h3 {
  max-width: 600px;
  margin: 12px 0 18px;
  color: inherit;
  font-size: clamp(1.5rem, 2vw, 2.15rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.12;
}

.trame-audience-card p {
  max-width: 650px;
  color: var(--ap-muted);
  line-height: 1.7;
}

.trame-audience-private p {
  color: rgba(255, 255, 255, 0.92);
}

.trame-audience-card ul {
  display: grid;
  gap: 8px;
  margin: 24px 0 30px;
  padding: 0;
  list-style: none;
}

.trame-audience-card li {
  position: relative;
  padding-left: 22px;
}

.trame-audience-card li::before {
  position: absolute;
  top: 0.64em;
  left: 0;
  width: 10px;
  height: 2px;
  background: var(--ap-cyan);
  content: "";
}

.trame-audience-card a {
  position: relative;
  z-index: 1;
  color: var(--ap-cobalt);
  font-weight: 800;
  text-decoration: none;
}

.trame-audience-private a {
  color: var(--ap-white);
}

/* Shop */
.trame-shop {
  padding: clamp(88px, 10vw, 150px) 0;
  background: var(--ap-paper-bright);
}

.trame-shop-grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  align-items: stretch;
  gap: clamp(44px, 8vw, 118px);
}

.trame-shop-map {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  background: var(--ap-ink);
  clip-path: polygon(0 0, 88% 0, 100% 12%, 100% 100%, 0 100%);
}

.trame-shop-copy {
  align-self: center;
}

.trame-shop-copy > p {
  max-width: 690px;
  margin: 28px 0 34px;
  color: var(--ap-muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

.trame-shop-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0 0 36px;
  border-top: 1px solid var(--ap-ink);
  border-left: 1px solid var(--ap-line);
}

.trame-shop-details > div {
  min-height: 116px;
  padding: 20px;
  border-right: 1px solid var(--ap-line);
  border-bottom: 1px solid var(--ap-line);
}

.trame-shop-details dt {
  margin-bottom: 9px;
  color: var(--ap-cobalt);
  font-family: "Manrope", system-ui, sans-serif;
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.trame-shop-details dd {
  margin: 0;
  font-weight: 700;
  line-height: 1.55;
}

.trame-inline-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
}

/* Service list */
.trame-services {
  background: var(--ap-paper);
}

.trame-services-list {
  border-top: 1px solid var(--ap-ink);
}

.trame-service-row {
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr) 50px;
  align-items: center;
  gap: 24px;
  min-height: 112px;
  padding: 18px 22px;
  border-bottom: 1px solid var(--ap-line);
  color: var(--ap-ink);
  text-decoration: none;
  transition: background-color 180ms ease, color 180ms ease;
}

.trame-service-row:hover {
  background: var(--ap-cobalt);
  color: var(--ap-white);
}

.trame-service-number {
  color: var(--ap-cobalt);
}

.trame-service-row:hover .trame-service-number {
  color: var(--ap-cyan-on-blue);
}

.trame-service-row div {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  align-items: center;
  gap: 40px;
  transition: transform 180ms ease;
}

.trame-service-row:hover div {
  transform: translateX(6px);
}

.trame-service-row strong {
  font-size: clamp(1.15rem, 2vw, 1.7rem);
}

.trame-service-row span:not(.trame-service-number) {
  color: var(--ap-muted);
}

.trame-service-row:hover span:not(.trame-service-number) {
  color: rgba(255,255,255,.92);
}

.trame-service-row > i {
  justify-self: end;
  font-size: 1.4rem;
}

/* Method */
.trame-method {
  padding: clamp(86px, 10vw, 150px) 0;
  background: var(--ap-ink);
  color: var(--ap-white);
}

.trame-method-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(60px, 9vw, 140px);
}

.trame-method h2 {
  color: var(--ap-white);
}

.trame-method-heading p {
  margin: 24px 0 0;
  color: rgba(255,255,255,.68);
  line-height: 1.7;
}

.trame-method-steps {
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255,255,255,.2);
  list-style: none;
}

.trame-method-steps li {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 24px;
  padding: 25px 0;
  border-bottom: 1px solid rgba(255,255,255,.16);
}

.trame-method-steps > li > span {
  color: var(--ap-cyan);
  font-family: "Manrope", system-ui, sans-serif;
}

.trame-method-steps strong {
  font-size: 1.25rem;
}

.trame-method-steps p {
  margin: 5px 0 0;
  color: rgba(255,255,255,.64);
}

.trame-proof {
  background: var(--ap-cyan);
}

.trame-proof-grid {
  display: grid;
  grid-template-columns: 1fr .7fr;
  align-items: end;
  gap: 80px;
}

.trame-proof .trame-kicker { color: var(--ap-ink); }
.trame-proof h2 { max-width: 900px; }
.trame-proof p { margin: 0 0 20px; line-height: 1.75; }
.trame-proof a { color: var(--ap-ink); font-weight: 800; text-decoration: none; }

/* Footer */
.trame-footer {
  padding: 0;
  background: var(--ap-ink) !important;
  color: var(--ap-white);
  font-size: 14px;
  position: relative;
}

.trame-footer-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(32px, 5vw, 72px);
  padding: 32px 0;
  border-bottom: 1px solid rgba(255,255,255,.18);
}

.trame-footer-cta-copy {
  display: grid;
  gap: 7px;
  padding-left: 18px;
  border-left: 3px solid var(--ap-cyan);
}

.trame-footer-cta-label {
  color: var(--ap-cyan);
  font: 800 .72rem/1.4 "Manrope", system-ui, sans-serif;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.trame-footer-cta strong {
  display: block;
  max-width: 680px;
  color: var(--ap-white);
  font-size: clamp(1.12rem, 1.8vw, 1.55rem);
  line-height: 1.2;
  letter-spacing: -.03em;
}

.trame-footer-cta-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.trame-footer-cta-actions .trame-button {
  min-height: 44px;
  padding: 10px 17px;
  font-size: .84rem;
}

.trame-footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr .7fr .8fr;
  gap: 54px;
  padding: 64px 0;
}

.trame-footer-brand img {
  width: min(285px, 100%);
  height: auto;
  display: block;
}

.trame-footer-brand p {
  max-width: 380px;
  margin: 24px 0;
  color: rgba(255,255,255,.62);
  line-height: 1.7;
}

.trame-footer .trame-footer-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--ap-white);
  font-size: 1rem;
  line-height: 1.2;
  letter-spacing: -.02em;
  text-transform: none;
}

.trame-footer h2.trame-footer-label {
  font-size: 1rem;
}

.trame-footer .trame-footer-label::before {
  width: 24px;
  height: 2px;
  flex: 0 0 24px;
  background: var(--ap-cyan);
  content: "";
}

.trame-footer-shop address,
.trame-footer-shop p {
  margin: 0 0 10px;
  color: rgba(255,255,255,.72);
  font-style: normal;
  line-height: 1.65;
}

.trame-footer-shop a,
.trame-footer-links a {
  color: var(--ap-white);
  text-decoration: none;
}

.trame-footer-shop a:hover,
.trame-footer-links a:hover {
  color: var(--ap-cyan);
}

.trame-footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.trame-footer-links .trame-footer-label {
  margin-bottom: 8px;
}

.trame-socials {
  display: flex;
  gap: 10px;
}

.trame-socials a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.22);
  color: var(--ap-white);
}

.trame-socials a:hover {
  border-color: var(--ap-cyan);
  color: var(--ap-cyan);
}

.trame-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 24px 0 28px;
  border-top: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.5);
  font-size: .78rem;
}

.trame-footer-bottom p { margin: 0; }
.trame-footer-bottom div { display: flex; flex-wrap: wrap; gap: 22px; }
.trame-footer-bottom a { color: inherit; text-decoration: none; }
.trame-footer-bottom a:hover { color: var(--ap-cyan); }

/* Existing pages inherit the new typographic system */
.page-title,
.hero-intro,
.service-details,
.contact.section,
.privacy.section {
  font-family: var(--default-font);
}

.page-title h1,
.hero-intro h1,
.service-details .service-title,
.contact .section-title h1 {
  letter-spacing: -0.045em;
}

.accomplus-live-map {
  position: relative;
  isolation: isolate;
  min-height: 560px;
  display: block;
  overflow: hidden;
  background: var(--ap-ink) !important;
  color: var(--ap-white);
  clip-path: polygon(0 0, calc(100% - 28px) 0, 100% 28px, 100% 100%, 28px 100%, 0 calc(100% - 28px));
}

.accomplus-live-map::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(135deg, rgba(9, 17, 31, .14), transparent 44%, rgba(6, 91, 210, .08));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .18);
  content: "";
  pointer-events: none;
}

.accomplus-live-map-frame {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(.72) contrast(1.04);
}

.accomplus-live-map-frame[hidden],
.accomplus-live-map-placeholder[hidden] {
  display: none;
}

.accomplus-live-map-placeholder {
  position: absolute;
  z-index: 2;
  inset: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: clamp(24px, 5vw, 58px);
  background:
    radial-gradient(circle at 78% 18%, rgba(0, 224, 255, .18), transparent 30%),
    linear-gradient(135deg, #09111f 0%, #0b1c34 58%, #063a72 100%);
}

.accomplus-live-map-placeholder-grid {
  position: absolute;
  inset: -12%;
  opacity: .25;
  background-image:
    linear-gradient(rgba(255, 255, 255, .2) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .2) 1px, transparent 1px);
  background-size: 54px 54px;
  transform: rotate(-4deg) scale(1.08);
  pointer-events: none;
}

.accomplus-live-map-prompt {
  position: relative;
  z-index: 1;
  width: min(520px, 100%);
  display: grid;
  justify-items: center;
  padding: clamp(26px, 4.5vw, 44px);
  border: 1px solid rgba(255, 255, 255, .24);
  background: rgba(9, 17, 31, .82);
  box-shadow: 14px 14px 0 rgba(0, 224, 255, .18);
  text-align: center;
  backdrop-filter: blur(8px);
}

.accomplus-live-map-prompt > span {
  color: var(--ap-cyan);
  font: 600 .67rem/1.4 "Manrope", system-ui, sans-serif;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.accomplus-live-map-prompt > i {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  margin: 22px 0 20px;
  border: 1px solid var(--ap-cyan);
  color: var(--ap-cyan);
  font-size: 1.75rem;
  transform: rotate(45deg);
}

.accomplus-live-map-prompt > i::before {
  transform: rotate(-45deg);
}

.accomplus-live-map-prompt strong {
  color: var(--ap-white);
  font-size: clamp(1.55rem, 3vw, 2.25rem);
  letter-spacing: -.035em;
}

.accomplus-live-map-prompt small {
  max-width: 410px;
  margin-top: 8px;
  color: rgba(255, 255, 255, .72);
  font-size: .95rem;
  line-height: 1.6;
}

.accomplus-live-map-prompt button {
  min-height: 50px;
  margin-top: 24px;
  padding: 13px 22px;
  border: 1px solid var(--ap-cyan);
  background: var(--ap-cyan);
  color: var(--ap-ink);
  font-weight: 800;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
  transition: background-color .2s ease, color .2s ease, transform .2s ease;
}

.accomplus-live-map-prompt button:hover {
  background: var(--ap-white);
  color: var(--ap-ink);
  transform: translateY(-2px);
}

.accomplus-live-map-prompt button:focus-visible {
  outline: 3px solid var(--ap-white);
  outline-offset: 4px;
}

.accomplus-live-map-prompt em {
  max-width: 390px;
  margin-top: 14px;
  color: rgba(255, 255, 255, .58);
  font-size: .76rem;
  font-style: normal;
  line-height: 1.55;
}

.accomplus-live-map-card {
  position: absolute;
  z-index: 3;
  bottom: 36px;
  left: 28px;
  width: min(410px, calc(100% - 56px));
  display: flex;
  flex-direction: column;
  padding: 24px;
  background: rgba(255,254,250,.97);
  color: var(--ap-ink);
  text-decoration: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(12px);
  box-shadow: 0 18px 44px rgba(0,0,0,.22);
  transition: opacity .22s ease, transform .22s ease, box-shadow .22s ease;
}

.accomplus-live-map.is-loaded .accomplus-live-map-card {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.accomplus-live-map-card small {
  color: var(--ap-cobalt);
  font: 600 .67rem/1.4 "Manrope", system-ui, sans-serif;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.accomplus-live-map-card strong { margin: 7px 0 2px; font-size: 1.3rem; }
.accomplus-live-map-card span { color: var(--ap-muted); }
.accomplus-live-map-card em { margin-top: 16px; color: var(--ap-cobalt); font-style: normal; font-weight: 800; }
.accomplus-live-map.is-loaded .accomplus-live-map-card:hover {
  color: var(--ap-ink);
  transform: translateY(-4px);
  box-shadow: 0 24px 52px rgba(0, 0, 0, .26);
}
.accomplus-live-map-card:hover em { color: var(--ap-cobalt-deep); }
.accomplus-live-map-card:focus-visible {
  outline: 3px solid var(--ap-cyan);
  outline-offset: 4px;
}

/* Responsive */
@media (max-width: 1199px) {
  .trame-nav-shell { min-height: 70px; }

  .trame-signal-card-bottom {
    right: 0;
  }

  .trame-audience-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
  }

  .trame-audience-card {
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 20px;
    padding: clamp(38px, 4.2vw, 50px);
  }

  .trame-header .mobile-nav-toggle {
    position: relative;
    z-index: 10000;
    width: 46px;
    height: 46px;
    margin: 0;
    display: grid;
    place-items: center;
    padding: 0;
    border: 1px solid var(--ap-line);
    background: var(--ap-paper-bright);
    color: var(--ap-ink);
    line-height: 1;
  }

  .trame-nav > ul {
    position: fixed !important;
    inset: 104px 16px auto 16px !important;
    z-index: 9998;
    max-height: calc(100vh - 120px);
    display: none !important;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px !important;
    overflow-y: auto;
    background: var(--ap-paper-bright) !important;
    border: 1px solid var(--ap-ink) !important;
    box-shadow: 0 24px 70px rgba(9,17,31,.18);
  }

  body.mobile-nav-active .trame-nav > ul {
    display: flex !important;
  }

  .trame-nav > ul > li,
  .trame-nav > ul > li > a {
    width: 100%;
  }

  .trame-nav > ul > li > a {
    min-height: 48px;
    margin: 0;
    padding: 13px 14px;
    border-bottom: 1px solid var(--ap-line);
    color: var(--ap-ink) !important;
    font-size: 1rem;
    font-weight: 700;
  }

  .trame-nav > ul > li:last-child > a {
    margin-top: 10px;
    background: var(--ap-cobalt);
    color: var(--ap-white) !important;
  }

  .trame-hero {
    padding-top: 160px;
  }

  .trame-hero-grid,
  .trame-shop-grid,
  .trame-method-grid,
  .trame-reform-grid {
    grid-template-columns: 1fr 1fr;
    gap: 54px;
  }

  .trame-footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991.98px) {
  .trame-utility-inner > a:first-child span,
  .trame-utility .trame-utility-hours {
    display: none;
  }

  .trame-utility-inner > a:first-child::after {
    content: "Boutique à Pont-l’Évêque";
  }

  .trame-hero-grid,
  .trame-shop-grid,
  .trame-method-grid,
  .trame-reform-grid,
  .trame-proof-grid,
  .trame-section-heading-split,
  .trame-footer-cta {
    grid-template-columns: 1fr;
  }

  .trame-hero {
    padding-bottom: 76px;
  }

  .trame-hero-visual {
    min-height: 500px;
  }

  .trame-audience-grid {
    grid-template-columns: 1fr;
  }

  .trame-audience-card {
    min-height: auto;
  }

  .trame-shop-map {
    min-height: 470px;
    order: 2;
  }

  .trame-shop-copy { order: 1; }

  .trame-footer-cta {
    align-items: start;
    gap: 22px;
  }

  .trame-footer-cta-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 767.98px) {
  html { scroll-padding-top: 82px; }

  .trame-utility {
    height: 30px;
  }

  .trame-utility-inner {
    justify-content: space-between;
    gap: 10px;
  }

  .trame-utility-inner > a:first-child span,
  .trame-utility .trame-utility-hours {
    display: none;
  }

  .trame-shop-map {
    min-height: 430px;
  }

  .trame-utility-inner > a:first-child::after {
    content: "Boutique à Pont-l’Évêque";
  }

  .trame-logo img {
    width: 178px;
  }

  .trame-nav > ul {
    inset: 94px 12px auto 12px !important;
  }

  .trame-hero {
    min-height: auto;
    padding: 136px 0 64px;
  }

  .trame-hero h1 {
    font-size: clamp(2.25rem, 9.5vw, 2.7rem);
  }

  .trame-section-heading h2,
  .trame-shop h2,
  .trame-method h2,
  .trame-reform h2,
  .trame-proof h2,
  .trame-footer h2 {
    font-size: clamp(1.75rem, 7.3vw, 2.15rem);
  }

  .trame-hero-actions,
  .trame-inline-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .trame-button {
    width: 100%;
  }

  .trame-hero-facts,
  .trame-shop-details,
  .trame-reform-dates,
  .trame-footer-grid {
    grid-template-columns: 1fr;
  }

  .trame-hero-facts > div + div {
    padding-left: 0;
    border-left: 0;
  }

  .trame-hero-visual {
    min-height: 430px;
  }

  .trame-portrait-frame {
    inset: 8px 0 0;
  }

  .trame-signal-card-top {
    top: 24px;
    left: -8px;
  }

  .trame-signal-card-bottom {
    right: -8px;
    bottom: 16px;
    max-width: 290px;
  }

  .trame-audience-card {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 32px 24px;
  }

  .trame-service-row {
    grid-template-columns: 42px 1fr 24px;
    gap: 10px;
    min-height: 132px;
    padding: 18px 8px;
  }

  .trame-service-row div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .trame-service-row:hover {
    padding-left: 8px;
  }

  .trame-service-row:hover div {
    transform: none;
  }

  .trame-method-steps li {
    grid-template-columns: 50px 1fr;
  }

  .trame-footer-grid {
    gap: 42px;
  }

  .trame-footer-cta-actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
  }

  .trame-footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    padding-bottom: 88px;
  }
}

/* Gestion du consentement — mêmes codes graphiques que le site */
.cookie-consent-trigger {
  position: fixed;
  left: 24px;
  right: auto;
  bottom: 22px;
  z-index: 995;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 15px;
  border: 1px solid rgba(22, 199, 243, .5);
  border-radius: 0;
  background: var(--ap-ink);
  color: var(--ap-white);
  box-shadow: 0 12px 30px rgba(9, 17, 31, .2);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
  font: 700 .72rem/1.3 "Manrope", system-ui, sans-serif;
  letter-spacing: .03em;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.cookie-consent-trigger:hover {
  border-color: var(--ap-cyan);
  background: var(--ap-cyan);
  color: var(--ap-ink);
  transform: translateY(-2px);
}

.cookie-consent-trigger i {
  color: var(--ap-cyan);
}

.cookie-consent-trigger:hover i {
  color: var(--ap-ink);
}

.cookie-consent-panel {
  position: fixed;
  left: 24px;
  right: auto;
  bottom: 78px;
  z-index: 994;
  width: min(430px, calc(100vw - 32px));
  max-height: calc(100dvh - 104px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(14px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.cookie-consent-panel.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.cookie-consent-card {
  max-height: calc(100dvh - 104px);
  padding: 26px;
  overflow-y: auto;
  border: 1px solid var(--ap-ink);
  border-radius: 0;
  background: var(--ap-paper-bright);
  color: var(--ap-ink);
  box-shadow: 0 24px 55px rgba(9, 17, 31, .25);
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 18px 100%, 0 calc(100% - 18px));
}

.cookie-consent-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 12px;
  color: var(--ap-cobalt);
  font: 600 .65rem/1.4 "Manrope", system-ui, sans-serif;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.cookie-consent-kicker::before {
  width: 23px;
  height: 2px;
  background: currentColor;
  content: "";
}

.cookie-consent-card .cookie-consent-title {
  display: block;
  margin: 0 0 12px;
  color: var(--ap-ink);
  font-size: 1.48rem;
  font-weight: 800;
  letter-spacing: -.035em;
  line-height: 1.14;
}

.cookie-consent-card p {
  margin: 0 0 12px;
  color: var(--ap-muted);
  font-size: .87rem;
  line-height: 1.68;
}

.cookie-consent-note {
  margin-bottom: 20px !important;
}

.cookie-consent-note a {
  color: var(--ap-cobalt);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.cookie-consent-note a:hover {
  color: var(--ap-cobalt-deep);
}

.cookie-consent-actions,
.cookie-consent-actions-stacked {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.cookie-consent-actions-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  width: 100%;
}

.cookie-consent-actions .btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 13px;
  border: 1px solid var(--ap-ink);
  border-radius: 0;
  box-shadow: none;
  font-size: .78rem;
  font-weight: 800;
  clip-path: polygon(0 0, calc(100% - 9px) 0, 100% 9px, 100% 100%, 9px 100%, 0 calc(100% - 9px));
}

.cookie-consent-actions .btn-primary {
  border-color: var(--ap-cobalt);
  background: var(--ap-cobalt);
  color: var(--ap-white);
}

.cookie-consent-actions .btn-primary:hover {
  border-color: var(--ap-cobalt-deep);
  background: var(--ap-cobalt-deep);
  color: var(--ap-white);
}

.cookie-consent-actions .btn-outline-light {
  border-color: var(--ap-ink);
  background: transparent;
  color: var(--ap-ink);
}

.cookie-consent-actions .btn-outline-light:hover {
  border-color: var(--ap-ink);
  background: var(--ap-ink);
  color: var(--ap-white);
}

.cookie-consent-actions .btn-light {
  border-color: var(--ap-cyan);
  background: var(--ap-cyan);
  color: var(--ap-ink);
}

.cookie-consent-actions .btn-light:hover {
  border-color: var(--ap-ink);
  background: var(--ap-ink);
  color: var(--ap-white);
}

.cookie-consent-text-button {
  justify-self: start;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 8px 0;
  border: 0;
  background: none;
  color: var(--ap-cobalt);
  font-size: .78rem;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-consent-text-button:hover {
  color: var(--ap-cobalt-deep);
}

.cookie-choice-list {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.cookie-choice {
  border: 1px solid var(--ap-line-strong);
  border-radius: 0;
  background: var(--ap-paper);
}

.cookie-choice-header {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding: 15px;
}

.cookie-choice-toggle {
  flex: 1 1 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 0;
  border: 0;
  background: none;
  color: var(--ap-ink);
  text-align: left;
}

.cookie-choice-copy {
  display: grid;
  gap: 4px;
}

.cookie-choice-copy strong {
  color: var(--ap-ink);
  font-size: .86rem;
  font-weight: 800;
}

.cookie-choice-copy small {
  color: var(--ap-muted);
  font-size: .74rem;
  line-height: 1.5;
}

.cookie-choice-toggle i {
  margin-top: 2px;
  color: var(--ap-cobalt);
  transition: transform 180ms ease;
}

.cookie-choice.is-open .cookie-choice-toggle i {
  color: var(--ap-cobalt);
  transform: rotate(180deg);
}

.cookie-choice-details {
  display: none;
  padding: 0 15px 15px;
  color: var(--ap-muted);
  font-size: .77rem;
  line-height: 1.62;
}

.cookie-choice.is-open .cookie-choice-details {
  display: block;
}

.cookie-switch {
  position: relative;
  display: inline-flex;
  flex: 0 0 auto;
  width: 43px;
  height: 24px;
}

.cookie-switch input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: pointer;
}

.cookie-switch-slider {
  position: absolute;
  inset: 0;
  border: 1px solid var(--ap-line-strong);
  border-radius: 0;
  background: var(--ap-white);
}

.cookie-switch-slider::before {
  top: 3px;
  left: 3px;
  width: 16px;
  height: 16px;
  border-radius: 0;
  background: var(--ap-muted);
  transition: transform 180ms ease, background 180ms ease;
}

.cookie-switch input:checked + .cookie-switch-slider {
  background: var(--ap-cobalt);
}

.cookie-switch input:checked + .cookie-switch-slider::before {
  background: var(--ap-white);
  transform: translateX(19px);
}

.cookie-switch input:focus-visible + .cookie-switch-slider,
.cookie-choice-toggle:focus-visible {
  outline: 3px solid var(--ap-cyan);
  outline-offset: 3px;
}

@media (max-width: 767px) {
  .cookie-consent-trigger {
    left: 12px;
    right: auto;
    bottom: 12px;
    width: auto;
    justify-content: center;
  }

  .cookie-consent-panel {
    left: 12px;
    right: 12px;
    bottom: 68px;
    width: auto;
    max-height: calc(100dvh - 88px);
  }

  .cookie-consent-card {
    max-height: calc(100dvh - 88px);
    padding: 19px;
    border-radius: 0;
  }

  .cookie-consent-card .cookie-consent-title {
    font-size: 1.3rem;
  }

  .cookie-consent-actions-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 360px) {
  .cookie-consent-actions-row {
    grid-template-columns: 1fr;
  }
}

/* Confidentialité — présentation éditoriale */
.privacy-v3 .main {
  overflow: clip;
}

.privacy-v3-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(140px, 10vw, 158px) 0 clamp(50px, 5vw, 66px);
  background: var(--ap-ink);
  color: var(--ap-white);
}

.privacy-v3-gridlines {
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: .55;
  background-image:
    linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, #000, rgba(0, 0, 0, .3));
}

.privacy-v3-hero::after {
  position: absolute;
  z-index: -1;
  top: 26%;
  right: -6%;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(22, 199, 243, .32);
  content: "";
  transform: rotate(45deg);
}

.privacy-v3-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(330px, .55fr);
  align-items: end;
  gap: clamp(48px, 7vw, 110px);
}

.privacy-v3-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 23px;
  color: rgba(255, 255, 255, .5);
  font: 600 .7rem/1.4 "Manrope", system-ui, sans-serif;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.privacy-v3-breadcrumb a {
  color: rgba(255, 255, 255, .72);
  text-decoration: none;
}

.privacy-v3-breadcrumb a:hover {
  color: var(--ap-cyan);
}

.privacy-v3-hero h1 {
  margin: 15px 0 0;
  color: var(--ap-white);
  font-size: clamp(3rem, 6vw, 6rem);
  font-weight: 800;
  letter-spacing: -.075em;
  line-height: .88;
}

.privacy-v3-hero-copy {
  padding-left: 28px;
  border-left: 3px solid var(--ap-cyan);
}

.privacy-v3-hero-copy p {
  margin: 0;
  color: rgba(255, 255, 255, .72);
  font-size: 1rem;
  line-height: 1.7;
}

.privacy-v3-hero-copy > span {
  display: block;
  margin-top: 18px;
  color: var(--ap-cyan);
  font: 600 .68rem/1.4 "Manrope", system-ui, sans-serif;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.privacy-v3-body {
  padding: clamp(76px, 8vw, 120px) 0;
  background: var(--ap-paper-bright);
}

.privacy-v3-layout {
  display: grid;
  grid-template-columns: 235px minmax(0, 1fr);
  align-items: start;
  gap: clamp(55px, 8vw, 120px);
}

.privacy-v3-index {
  position: sticky;
  top: 145px;
  padding-top: 7px;
}

.privacy-v3-index > span {
  display: block;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--ap-ink);
  color: var(--ap-cobalt);
  font: 600 .7rem/1.4 "Manrope", system-ui, sans-serif;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.privacy-v3-index nav {
  display: flex;
  flex-direction: column;
}

.privacy-v3-index a {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 9px;
  padding: 13px 0;
  border-bottom: 1px solid var(--ap-line);
  color: var(--ap-muted);
  font-size: .82rem;
  font-weight: 700;
  line-height: 1.45;
  text-decoration: none;
}

.privacy-v3-index a b {
  color: var(--ap-cobalt);
  font: 600 .65rem/1.65 "Manrope", system-ui, sans-serif;
}

.privacy-v3-index a:hover {
  color: var(--ap-cobalt);
}

.privacy-v3-content {
  min-width: 0;
}

.privacy-v3-section {
  scroll-margin-top: 138px;
  padding: 0 0 clamp(28px, 3.5vw, 44px);
  background: transparent;
}

.privacy-v3-section + .privacy-v3-section {
  padding-top: clamp(28px, 3.5vw, 44px);
  border-top: 1px solid var(--ap-ink);
}

.privacy-v3-section > header {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  align-items: start;
  gap: 20px;
  margin-bottom: 24px;
}

.privacy-v3-section > header > span {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid var(--ap-ink);
  background: var(--ap-paper);
  color: var(--ap-cobalt);
  font: 700 1.2rem/1 "Manrope", system-ui, sans-serif;
  letter-spacing: .04em;
}

.privacy-v3-section h2,
.privacy-v3-contact h2 {
  margin: 0;
  color: var(--ap-ink);
  font-size: clamp(1.9rem, 3vw, 3.15rem);
  font-weight: 800;
  letter-spacing: -.055em;
  line-height: 1;
}

.privacy-v3-section > p,
.privacy-v3-section > ul:not(.privacy-v3-timeline) {
  max-width: 900px;
  color: var(--ap-muted);
  line-height: 1.82;
}

.privacy-v3-section > p {
  margin: 0 0 22px;
}

.privacy-v3-section > :last-child {
  margin-bottom: 0;
}

.privacy-v3-section > ul:not(.privacy-v3-timeline) {
  margin: 0 0 23px;
  padding-left: 1.25rem;
}

.privacy-v3-section > ul:not(.privacy-v3-timeline) li + li {
  margin-top: 8px;
}

.privacy-v3-section a {
  color: var(--ap-cobalt);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.privacy-v3-section a:hover {
  color: var(--ap-cobalt-deep);
}

.privacy-v3-keyfacts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 32px 0;
  border-top: 1px solid var(--ap-ink);
  border-left: 1px solid var(--ap-line);
}

.privacy-v3-keyfacts > div {
  min-height: 118px;
  padding: 20px;
  border-right: 1px solid var(--ap-line);
  border-bottom: 1px solid var(--ap-line);
}

.privacy-v3-keyfacts dt {
  margin-bottom: 13px;
  color: var(--ap-cobalt);
  font: 600 .68rem/1.4 "Manrope", system-ui, sans-serif;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.privacy-v3-keyfacts dd {
  margin: 0;
  color: var(--ap-ink);
  font-size: .9rem;
  font-weight: 750;
  line-height: 1.55;
}

.privacy-v3-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 36px;
  border: 1px solid var(--ap-ink);
  background: var(--ap-ink);
}

.privacy-v3-card-grid article {
  position: relative;
  min-height: 340px;
  padding: clamp(25px, 3vw, 36px);
  background: var(--ap-white);
}

.privacy-v3-card-grid article > span,
.privacy-v3-rights article > span {
  color: var(--ap-cobalt);
  font: 600 .68rem/1.4 "Manrope", system-ui, sans-serif;
  letter-spacing: .08em;
}

.privacy-v3-card-grid h3 {
  margin: 44px 0 17px;
  color: var(--ap-ink);
  font-size: 1.35rem;
  font-weight: 800;
}

.privacy-v3-card-grid p {
  margin: 0;
  color: var(--ap-muted);
  font-size: .9rem;
  line-height: 1.72;
}

.privacy-v3-card-grid p + p {
  margin-top: 14px;
}

.privacy-v3-highlight {
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: center;
  gap: 23px;
  margin-top: 34px;
  padding: 25px 28px;
  background: var(--ap-cobalt);
  color: var(--ap-white);
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 18px 100%, 0 calc(100% - 18px));
}

.privacy-v3-highlight > i {
  color: var(--ap-cyan);
  font-size: 2.35rem;
}

.privacy-v3-highlight strong,
.privacy-v3-highlight span {
  display: block;
}

.privacy-v3-highlight strong {
  font-size: 1.12rem;
}

.privacy-v3-highlight span {
  margin-top: 5px;
  color: var(--ap-cyan-on-blue);
  line-height: 1.65;
}

.privacy-v3-timeline {
  margin: 32px 0 0;
  padding: 0;
  border-top: 1px solid var(--ap-ink);
  list-style: none;
}

.privacy-v3-timeline li {
  display: grid;
  grid-template-columns: minmax(220px, .45fr) minmax(0, 1fr);
  gap: 34px;
  padding: 22px 0;
  border-bottom: 1px solid var(--ap-line);
}

.privacy-v3-timeline strong {
  color: var(--ap-ink);
  font-size: .91rem;
  line-height: 1.55;
}

.privacy-v3-timeline span {
  color: var(--ap-muted);
  line-height: 1.68;
}

.privacy-v3-measures,
.privacy-v3-rights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 34px;
  border: 1px solid var(--ap-ink);
  background: var(--ap-ink);
}

.privacy-v3-measures article {
  min-height: 220px;
  display: grid;
  grid-template-columns: 46px 1fr;
  align-items: start;
  gap: 22px;
  padding: 32px;
  background: var(--ap-white);
}

.privacy-v3-measures i {
  color: var(--ap-cobalt);
  font-size: 1.8rem;
}

.privacy-v3-measures h3,
.privacy-v3-rights h3 {
  margin: 0;
  color: var(--ap-ink);
  font-size: 1.2rem;
  font-weight: 800;
}

.privacy-v3-measures p,
.privacy-v3-rights p {
  margin: 12px 0 0;
  color: var(--ap-muted);
  line-height: 1.7;
}

.privacy-v3-rights article {
  min-height: 235px;
  padding: 30px;
  background: var(--ap-white);
}

.privacy-v3-rights h3 {
  margin-top: 45px;
}

.privacy-v3-table-wrap {
  margin: 34px 0;
  overflow-x: auto;
  border: 1px solid var(--ap-ink);
}

.privacy-v3-table-wrap table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

.privacy-v3-table-wrap caption {
  padding: 0 0 14px;
  color: var(--ap-cobalt);
  caption-side: top;
  font: 600 .7rem/1.4 "Manrope", system-ui, sans-serif;
  letter-spacing: .08em;
  text-align: left;
  text-transform: uppercase;
}

.privacy-v3-table-wrap th {
  padding: 17px 18px;
  background: var(--ap-ink);
  color: var(--ap-white);
  font: 600 .7rem/1.4 "Manrope", system-ui, sans-serif;
  letter-spacing: .07em;
  text-align: left;
  text-transform: uppercase;
}

.privacy-v3-table-wrap td {
  padding: 18px;
  border-bottom: 1px solid var(--ap-line);
  color: var(--ap-muted);
  font-size: .88rem;
  line-height: 1.62;
  vertical-align: top;
}

.privacy-v3-table-wrap tr:last-child td {
  border-bottom: 0;
}

.privacy-v3-table-wrap td:first-child {
  color: var(--ap-ink);
  font-weight: 750;
}

.privacy-v3-contact {
  padding: clamp(34px, 6vw, 64px);
  background: var(--ap-ink);
  color: var(--ap-white);
  clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 24px, 100% 100%, 24px 100%, 0 calc(100% - 24px));
}

.privacy-v3-contact h2 {
  margin-top: 19px;
  color: var(--ap-white);
}

.privacy-v3-contact > p {
  max-width: 730px;
  margin: 22px 0 30px;
  color: rgba(255, 255, 255, .68);
  line-height: 1.75;
}

.privacy-v3-contact > div {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 28px;
}

.privacy-v3-contact a,
.privacy-v3-contact > div > span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--ap-white);
  font-size: .87rem;
  font-weight: 700;
  text-decoration: none;
}

.privacy-v3-contact a:hover {
  color: var(--ap-cyan);
}

.privacy-v3-contact i {
  color: var(--ap-cyan);
}

/* Documents légaux — déclinaison du système éditorial Confidentialité */
.legal-document-v4 .privacy-v3-hero h1 {
  max-width: 14ch;
  font-size: clamp(2.85rem, 5.25vw, 5.35rem);
  line-height: .94;
}

.legal-cgv-v4 .privacy-v3-hero h1 {
  max-width: 13ch;
  font-size: clamp(2.65rem, 4.65vw, 4.75rem);
}

.legal-document-v4 .privacy-v3-section > .privacy-v3-highlight {
  margin-bottom: 32px;
}

.legal-document-v4 .privacy-v3-section > .privacy-v3-highlight + p {
  margin-top: 0;
}

.legal-document-v4 .privacy-v3-keyfacts dd a {
  overflow-wrap: anywhere;
}

.legal-v4-activities {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 30px;
}

.legal-v4-activities article {
  min-height: 250px;
  grid-template-columns: 42px minmax(0, 1fr);
  padding: 28px;
}

.legal-v4-activities h3 {
  font-size: 1.08rem;
}

@media (max-width: 1199px) {
  .privacy-v3-table-wrap table {
    min-width: 0;
    table-layout: fixed;
  }

  .legal-v4-activities {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .legal-v4-activities article {
    min-height: 0;
  }

  .legal-v4-activities article:last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }
}

@media (max-width: 991.98px) {
  .privacy-v3-hero-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .privacy-v3-hero-copy {
    max-width: 700px;
  }

  .privacy-v3-layout {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .privacy-v3-index {
    position: static;
  }

  .privacy-v3-index nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 28px;
  }

  .legal-v4-activities {
    grid-template-columns: 1fr;
  }

  .legal-v4-activities article {
    min-height: 0;
  }
}

@media (max-width: 767.98px) {
  .privacy-v3-hero {
    padding: 122px 0 52px;
  }

  .privacy-v3-hero h1 {
    font-size: clamp(2.55rem, 10.5vw, 3.35rem);
  }

  .privacy-v3-hero-grid > * { min-width: 0; }

  .privacy-v3-hero-copy {
    padding-left: 20px;
  }

  .privacy-v3-index nav,
  .privacy-v3-keyfacts,
  .privacy-v3-card-grid,
  .privacy-v3-measures,
  .privacy-v3-rights {
    grid-template-columns: 1fr;
  }

  .privacy-v3-section > header {
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 14px;
  }

  .privacy-v3-section > header > span {
    width: 42px;
    height: 42px;
    padding: 0;
    font-size: 1rem;
  }

  .privacy-v3-section h2,
  .privacy-v3-contact h2 {
    font-size: clamp(1.75rem, 8.2vw, 2.55rem);
  }

  .privacy-v3-card-grid article {
    min-height: auto;
  }

  .privacy-v3-timeline li {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .privacy-v3-measures article {
    min-height: auto;
    grid-template-columns: 38px 1fr;
    padding: 25px;
  }

  .privacy-v3-rights article {
    min-height: auto;
    padding: 25px;
  }

  .privacy-v3-rights h3,
  .privacy-v3-card-grid h3 {
    margin-top: 30px;
  }

  .privacy-v3-contact > div {
    align-items: flex-start;
    flex-direction: column;
  }

  .privacy-v3-table-wrap {
    overflow: visible;
    border: 0;
  }

  .privacy-v3-table-wrap table,
  .privacy-v3-table-wrap tbody,
  .privacy-v3-table-wrap tr,
  .privacy-v3-table-wrap td {
    width: 100%;
    display: block;
  }

  .privacy-v3-table-wrap table {
    min-width: 0;
  }

  .privacy-v3-table-wrap thead {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    border: 0;
  }

  .privacy-v3-table-wrap tr {
    margin-bottom: 14px;
    border: 1px solid var(--ap-ink);
    background: var(--ap-paper-bright);
  }

  .privacy-v3-table-wrap td {
    display: grid;
    grid-template-columns: minmax(88px, .35fr) minmax(0, 1fr);
    gap: 14px;
    padding: 14px 16px;
  }

  .privacy-v3-table-wrap td::before {
    color: var(--ap-cobalt);
    content: attr(data-label);
    font: 700 .66rem/1.45 "Manrope", system-ui, sans-serif;
    letter-spacing: .06em;
    text-transform: uppercase;
  }

  .legal-document-v4 .privacy-v3-hero h1,
  .legal-cgv-v4 .privacy-v3-hero h1 {
    max-width: none;
    font-size: clamp(2.35rem, 9.7vw, 3.15rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto !important; }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }

  [data-aos] {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* Journal de terrain */
.v2-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ap-cobalt);
  font-family: "Manrope", system-ui, sans-serif;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.v2-kicker::before {
  width: 32px;
  height: 2px;
  background: currentColor;
  content: "";
}

.v2-btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 0;
  clip-path: polygon(0 0, calc(100% - 13px) 0, 100% 13px, 100% 100%, 13px 100%, 0 calc(100% - 13px));
  font-size: .93rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.v2-btn:hover { transform: translateY(-2px); }
.v2-btn-primary { background: var(--ap-cobalt); color: var(--ap-white); }
.v2-btn-primary:hover { background: var(--ap-cobalt-deep); color: var(--ap-white); }
.v2-btn-outline { border-color: var(--ap-ink); color: var(--ap-ink); }
.v2-btn-outline:hover { background: var(--ap-ink); color: var(--ap-white); }
.v2-btn-light { background: var(--ap-white); color: var(--ap-ink); }
.v2-btn-light:hover { background: var(--ap-cyan); color: var(--ap-ink); }
.v2-btn-ghost-light { border-color: rgba(255,255,255,.38); color: var(--ap-white); }
.v2-btn-ghost-light:hover { border-color: var(--ap-cyan); color: var(--ap-cyan); }

.v2-text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--ap-cobalt);
  font-weight: 800;
  text-decoration: none;
}

.v2-text-link:hover { color: var(--ap-cobalt-deep); }

.v2-section-head {
  display: block;
  margin-bottom: 46px;
}

.v2-section-head h2 {
  margin: 12px 0 0;
  color: var(--ap-ink);
  font-size: clamp(2.2rem, 4vw, 4.4rem);
  font-weight: 800;
  letter-spacing: -.055em;
  line-height: 1;
}

.v2-section-head > p {
  max-width: 780px;
  margin: 20px 0 0;
  color: var(--ap-muted);
  line-height: 1.75;
}

.journal-page .main,
.journal-article-page .main { overflow: clip; }

.journal-hero {
  position: relative;
  padding: 156px 0 72px;
  overflow: hidden;
  background: var(--ap-ink);
  color: var(--ap-white);
}

.journal-hero::before {
  position: absolute;
  inset: 0;
  opacity: .2;
  background-image: linear-gradient(rgba(255,255,255,.1) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.1) 1px, transparent 1px);
  background-size: 68px 68px;
  content: "";
  mask-image: linear-gradient(90deg, #000 15%, transparent 90%);
}

.journal-hero::after {
  position: absolute;
  top: 0;
  right: -10%;
  width: 48%;
  height: 100%;
  background: linear-gradient(145deg, rgba(0,86,210,.42), rgba(22,199,243,.05));
  clip-path: polygon(30% 0, 100% 0, 100% 100%, 0 100%);
  content: "";
}

.journal-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
  gap: 24px;
  max-width: 960px;
}

.journal-hero .v2-kicker { color: var(--ap-cyan); }

.journal-hero h1 {
  max-width: 900px;
  margin: 22px 0 0;
  color: var(--ap-white);
  font-size: clamp(3rem, 3.8vw, 4rem);
  font-weight: 800;
  letter-spacing: -.055em;
  line-height: 1;
}

.journal-hero h1 span { color: var(--ap-cyan); }
.journal-hero-copy { max-width: 720px; display: flex; align-items: flex-start; flex-direction: column; gap: 14px; }
.journal-hero-copy p { margin: 0; color: rgba(255,255,255,.74); font-size: 1.04rem; line-height: 1.72; }
.journal-hero-copy .v2-text-link { color: var(--ap-white); }
.journal-hero-copy .v2-text-link:hover { color: var(--ap-cyan); }

.journal-card-media,
.journal-article-image {
  position: relative;
  overflow: hidden;
  background: var(--ap-ink-soft);
}

.journal-card-media img,
.journal-article-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 420ms ease;
}

.journal-card-media:hover img { transform: scale(1.025); }

.journal-card-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(155deg, transparent 50%, rgba(0,86,210,.46));
  content: "";
}

.journal-card-media > span {
  position: absolute;
  z-index: 1;
  top: 22px;
  left: 22px;
  padding: 8px 11px;
  background: var(--ap-cyan);
  color: var(--ap-ink);
  font-family: "Manrope", system-ui, sans-serif;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.journal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 18px;
  color: var(--ap-muted);
  font-family: "Manrope", system-ui, sans-serif;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .075em;
  text-transform: uppercase;
}

.journal-meta span:first-child { color: var(--ap-cobalt); }

.journal-card h3 a { color: var(--ap-ink); text-decoration: none; }
.journal-card h3 a:hover { color: var(--ap-cobalt); }

.journal-list-section { padding: 48px 0 96px; }

.journal-card {
  display: grid;
  grid-template-columns: minmax(210px, .8fr) minmax(0, 1.2fr);
  min-height: 330px;
  border: 1px solid var(--ap-line);
  background: var(--ap-white);
}

.journal-card-body { padding: 30px; }
.journal-card h3 { margin: 16px 0 13px; font-size: clamp(1.35rem, 1.7vw, 1.55rem); font-weight: 800; letter-spacing: -.035em; line-height: 1.18; }
.journal-card p { color: var(--ap-muted); line-height: 1.68; }

.journal-empty { padding: 48px; border: 1px solid var(--ap-line); background: var(--ap-paper); }

.journal-library-shell {
  min-width: 0;
}

.journal-library-tools {
  display: grid;
  grid-template-columns: minmax(300px, .78fr) minmax(0, 1.22fr);
  gap: 1px;
  margin-bottom: 18px;
  border: 1px solid var(--ap-ink);
  background: var(--ap-ink);
  box-shadow: 10px 10px 0 rgba(0, 86, 210, .1);
}

.journal-library-control {
  min-width: 0;
  margin: 0;
  padding: 20px 22px;
  border: 0;
  background: var(--ap-paper-bright);
}

.journal-library-label {
  display: block;
  float: none;
  width: auto;
  margin: 0 0 10px;
  padding: 0;
  color: var(--ap-cobalt);
  font: 700 .68rem/1.35 "Manrope", system-ui, sans-serif;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.journal-library-search-field {
  min-height: 50px;
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr) 44px;
  align-items: center;
  gap: 9px;
  border-bottom: 2px solid var(--ap-ink);
  transition: border-color 180ms ease;
}

.journal-library-search-field:focus-within {
  border-color: var(--ap-cobalt);
}

.journal-library-search-field > i {
  color: var(--ap-cobalt);
  font-size: 1.08rem;
}

.journal-library-search-field input {
  width: 100%;
  min-width: 0;
  padding: 12px 0;
  border: 0;
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: var(--ap-ink);
  font: 650 1rem/1.35 var(--default-font);
  box-shadow: none;
}

.journal-library-search-field input::placeholder {
  color: #7a8392;
  font-weight: 500;
  opacity: 1;
}

.journal-library-search-field input::-webkit-search-cancel-button {
  display: none;
}

.journal-library-search-field button {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--ap-muted);
  transition: background 160ms ease, color 160ms ease;
}

.journal-library-search-field button:hover {
  background: var(--ap-paper);
  color: var(--ap-ink);
}

.journal-library-filter-group {
  min-inline-size: 0;
}

.journal-library-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.journal-library-filters button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border: 1px solid var(--ap-line-strong);
  border-radius: 0;
  background: transparent;
  color: var(--ap-ink);
  font: 700 .68rem/1.2 "Manrope", system-ui, sans-serif;
  letter-spacing: .045em;
  text-transform: uppercase;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.journal-library-filters button:hover {
  border-color: var(--ap-ink);
  background: var(--ap-paper);
}

.journal-library-filters button.is-active {
  border-color: var(--ap-cobalt);
  background: var(--ap-cobalt);
  color: var(--ap-white);
}

.journal-library-filters button > span {
  min-width: 23px;
  height: 23px;
  display: inline-grid;
  place-items: center;
  padding: 0 5px;
  background: rgba(9, 17, 31, .08);
  color: inherit;
  font-size: .64rem;
}

.journal-library-filters button.is-active > span {
  background: var(--ap-cyan);
  color: var(--ap-ink);
}

.journal-library-summary {
  min-height: 24px;
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 0;
  color: var(--ap-muted);
  font: 600 .7rem/1.5 "Manrope", system-ui, sans-serif;
  letter-spacing: .045em;
  text-transform: uppercase;
}

.journal-library-summary strong {
  color: var(--ap-cobalt);
  font-size: .82rem;
}

.journal-library-statusbar {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin: 0 0 24px;
}

.journal-library-view {
  display: none;
  align-items: center;
  gap: 1px;
  border: 1px solid var(--ap-ink);
  background: var(--ap-ink);
}

.journal-library-shell.is-enhanced .journal-library-view {
  display: flex;
}

.journal-library-view > span {
  padding: 0 13px;
  color: var(--ap-cyan);
  font: 700 .66rem/1 "Manrope", system-ui, sans-serif;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.journal-library-view button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 9px 13px;
  border: 0;
  border-radius: 0;
  background: var(--ap-paper-bright);
  color: var(--ap-ink);
  font: 700 .68rem/1.2 "Manrope", system-ui, sans-serif;
  letter-spacing: .045em;
  text-transform: uppercase;
  transition: background 160ms ease, color 160ms ease;
}

.journal-library-view button:hover {
  background: var(--ap-paper);
}

.journal-library-view button.is-active {
  background: var(--ap-cobalt);
  color: var(--ap-white);
}

.journal-library-view button i {
  font-size: .92rem;
}

.journal-library-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--ap-ink);
  list-style: none;
}

.journal-library-list > li {
  margin: 0;
  border-bottom: 1px solid var(--ap-line-strong);
}

.journal-library-list > li[hidden],
.journal-library-empty[hidden],
.journal-library-search-field button[hidden] {
  display: none !important;
}

.journal-library-item {
  margin: 0;
}

.journal-library-media {
  display: none;
}

.journal-library-item-link {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) 52px;
  align-items: center;
  gap: clamp(22px, 3.5vw, 54px);
  min-height: 190px;
  padding: 30px 26px 30px 0;
  color: var(--ap-ink);
  text-decoration: none;
  transition: background-color 180ms ease, color 180ms ease;
}

.journal-library-item-link:hover,
.journal-library-item-link:focus-visible {
  background: var(--ap-paper);
  color: var(--ap-ink);
}

.journal-library-index {
  align-self: stretch;
  display: grid;
  place-items: center;
  border-right: 1px solid var(--ap-line);
  color: var(--ap-cobalt);
  font: 700 1rem/1 "Manrope", system-ui, sans-serif;
}

.journal-library-item-copy {
  min-width: 0;
  transition: transform 180ms ease;
}

.journal-library-item-link:hover .journal-library-item-copy,
.journal-library-item-link:focus-visible .journal-library-item-copy {
  transform: translateX(6px);
}

.journal-library-item-copy h3 {
  max-width: 850px;
  margin: 12px 0 9px;
  color: var(--ap-ink);
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -.035em;
  line-height: 1.14;
  text-wrap: balance;
  transition: color 180ms ease;
}

.journal-library-item-link:hover h3,
.journal-library-item-link:focus-visible h3 {
  color: var(--ap-cobalt);
}

.journal-library-item-copy p {
  max-width: 780px;
  margin: 0;
  color: var(--ap-muted);
  font-size: .94rem;
  line-height: 1.65;
}

.journal-library-arrow {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid var(--ap-line-strong);
  color: var(--ap-cobalt);
  font-size: 1.1rem;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.journal-library-item-link:hover .journal-library-arrow,
.journal-library-item-link:focus-visible .journal-library-arrow {
  border-color: var(--ap-cobalt);
  background: var(--ap-cobalt);
  color: var(--ap-white);
  transform: translate(2px, -2px);
}

.journal-library-shell[data-journal-layout="cards"] .journal-library-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  border-top: 0;
}

.journal-library-shell[data-journal-layout="cards"] .journal-library-list > li {
  min-width: 0;
  border: 0;
}

.journal-library-shell[data-journal-layout="cards"] .journal-library-item {
  height: 100%;
}

.journal-library-shell[data-journal-layout="cards"] .journal-library-item-link {
  position: relative;
  height: 100%;
  display: grid;
  grid-template-columns: minmax(210px, .82fr) minmax(0, 1.18fr);
  grid-template-rows: 1fr;
  align-items: stretch;
  gap: 0;
  min-height: 350px;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--ap-line-strong);
  background: var(--ap-white);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.journal-library-shell[data-journal-layout="cards"] .journal-library-item-link:hover,
.journal-library-shell[data-journal-layout="cards"] .journal-library-item-link:focus-visible {
  padding-left: 0;
  border-color: var(--ap-cobalt);
  background: var(--ap-white);
  box-shadow: 10px 10px 0 rgba(0, 86, 210, .1);
  transform: translateY(-4px);
}

.journal-library-shell[data-journal-layout="cards"] .journal-library-media {
  position: relative;
  display: block;
  grid-column: 1;
  grid-row: 1;
  min-height: 100%;
  overflow: hidden;
  background: var(--ap-ink-soft);
}

.journal-library-shell[data-journal-layout="cards"] .journal-library-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(155deg, transparent 48%, rgba(0, 86, 210, .42));
  content: "";
}

.journal-library-shell[data-journal-layout="cards"] .journal-library-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 420ms ease;
}

.journal-library-shell[data-journal-layout="cards"] .journal-library-item-link:hover .journal-library-media img,
.journal-library-shell[data-journal-layout="cards"] .journal-library-item-link:focus-visible .journal-library-media img {
  transform: scale(1.035);
}

.journal-library-shell[data-journal-layout="cards"] .journal-library-index {
  position: absolute;
  z-index: 2;
  top: 18px;
  left: 18px;
  width: auto;
  height: 36px;
  align-self: auto;
  display: inline-grid;
  place-items: center;
  padding: 0 11px;
  border: 0;
  background: var(--ap-cyan);
  color: var(--ap-ink);
  font-size: .72rem;
}

.journal-library-shell[data-journal-layout="cards"] .journal-library-item-copy {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 34px 70px 34px 30px;
}

.journal-library-shell[data-journal-layout="cards"] .journal-library-item-copy h3 {
  margin-top: 16px;
  font-size: clamp(1.3rem, 1.7vw, 1.6rem);
  line-height: 1.16;
}

.journal-library-shell[data-journal-layout="cards"] .journal-library-item-copy p {
  font-size: .9rem;
  line-height: 1.62;
}

.journal-library-shell[data-journal-layout="cards"] .journal-library-arrow {
  position: absolute;
  right: 24px;
  bottom: 24px;
}

.journal-library-empty {
  padding: clamp(34px, 5vw, 58px);
  border: 1px solid var(--ap-ink);
  background: var(--ap-paper);
}

.journal-library-empty > span {
  color: var(--ap-cobalt);
  font: 700 .68rem/1.35 "Manrope", system-ui, sans-serif;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.journal-library-empty h3 {
  margin: 12px 0 8px;
  color: var(--ap-ink);
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  font-weight: 800;
  letter-spacing: -.035em;
}

.journal-library-empty p {
  margin: 0 0 22px;
  color: var(--ap-muted);
}

.journal-library-empty button {
  min-height: 46px;
  padding: 11px 15px;
  border: 1px solid var(--ap-cobalt);
  border-radius: 0;
  background: var(--ap-cobalt);
  color: var(--ap-white);
  font-weight: 800;
}

.journal-library-empty button:hover {
  border-color: var(--ap-ink);
  background: var(--ap-ink);
}

/* Article */
.journal-article-header {
  padding: 160px 0 72px;
  background: var(--ap-ink);
  color: var(--ap-white);
}

.journal-article-header-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
  align-items: center;
  gap: clamp(42px, 7vw, 100px);
}

.journal-back { display: inline-flex; align-items: center; gap: 9px; margin-bottom: 30px; color: var(--ap-cyan); font-weight: 800; text-decoration: none; }
.journal-back:hover { color: var(--ap-white); }
.journal-article-header .journal-meta { color: rgba(255,255,255,.58); }
.journal-article-header .journal-meta span:first-child { color: var(--ap-cyan); }
.journal-article-heading h1 { margin: 22px 0; color: var(--ap-white); font-size: clamp(3rem, 3.8vw, 4rem); font-weight: 800; letter-spacing: -.055em; line-height: 1; text-wrap: balance; }
.journal-article-heading > p { max-width: 760px; color: rgba(255,255,255,.76); font-size: 1.08rem; line-height: 1.75; }

.journal-article-image { min-height: 520px; margin: 0; clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 24px, 100% 100%, 24px 100%, 0 calc(100% - 24px)); }
.journal-article-image figcaption { position: absolute; right: 15px; bottom: 15px; padding: 7px 9px; background: rgba(9,17,31,.82); color: var(--ap-white); font: 600 .67rem/1.3 "Manrope", system-ui, sans-serif; text-transform: uppercase; }

.journal-article-layout {
  display: grid;
  grid-template-columns: minmax(190px, .32fr) minmax(0, 1fr);
  gap: clamp(42px, 8vw, 120px);
  padding-top: 82px;
  padding-bottom: 108px;
}

.journal-article-aside { position: sticky; top: 145px; align-self: start; display: flex; flex-direction: column; gap: 8px; padding-top: 10px; color: var(--ap-muted); font-size: .9rem; line-height: 1.65; }
.journal-article-aside strong { color: var(--ap-ink); }
.journal-aside-label { margin-top: 18px; color: var(--ap-cobalt); font: 600 .7rem/1.4 "Manrope", system-ui, sans-serif; letter-spacing: .09em; text-transform: uppercase; }
.journal-share { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.journal-share .journal-aside-label { width: 100%; }
.journal-share a { width: 42px; height: 42px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid var(--ap-line); color: var(--ap-ink); }
.journal-share a:hover { background: var(--ap-cobalt); border-color: var(--ap-cobalt); color: var(--ap-white); }

.journal-article-content { max-width: 800px; color: #293447; font-size: clamp(1rem, .98rem + .12vw, 1.05rem); line-height: 1.7; }
.journal-article-content > p { margin: 0 0 1rem; }
.journal-article-content > p:first-child { color: var(--ap-ink); font-size: 1.1rem; font-weight: 600; line-height: 1.65; }
.journal-article-content > h2 { margin: 2rem 0 .6rem; color: var(--ap-ink); font-size: clamp(1.55rem, 1.4rem + .7vw, 1.95rem); font-weight: 800; letter-spacing: -.025em; line-height: 1.2; }
.journal-article-content > h3 { margin: 1.6rem 0 .45rem; color: var(--ap-ink); font-size: 1.28rem; font-weight: 800; line-height: 1.3; }
.journal-article-content > h4 { margin: 1.35rem 0 .4rem; color: var(--ap-ink); font-size: 1.08rem; font-weight: 800; line-height: 1.35; }
.journal-article-content > :is(h2, h3, h4):first-child { margin-top: 0; }
.journal-article-content a:not(.v2-btn) { color: var(--ap-cobalt); text-decoration-thickness: 1px; text-underline-offset: 3px; }
.journal-article-content a:not(.v2-btn):hover { color: var(--ap-cobalt-dark); }
.journal-article-content > ul,
.journal-article-content > ol { margin: 0 0 1rem; padding-left: 1.35rem; }
.journal-article-content li { margin-bottom: .28rem; padding-left: .2rem; }
.journal-article-content > blockquote { margin: 1.25rem 0; padding: 18px 21px; border-left: 4px solid var(--ap-cyan); background: var(--ap-paper); color: #34445a; }
.journal-article-content blockquote p { margin: 0; }
.journal-article-content code { padding: .16em .42em; border-radius: 5px; background: #edf1f6; color: #a92350; font: 500 .88em/1.5 "Manrope", system-ui, sans-serif; }
.journal-article-content > pre { margin: 1.25rem 0; padding: 20px; overflow-x: auto; border-radius: 12px; background: #0c1626; color: #edf4ff; }
.journal-article-content pre code { padding: 0; background: transparent; color: inherit; }
.journal-article-content > hr { margin: 1.75rem 0; border: 0; border-top: 1px solid var(--ap-line); opacity: 1; }
.journal-article-content .journal-content-image { display: block; max-width: 100%; height: auto; margin: .25rem auto; border-radius: 14px; box-shadow: 0 22px 55px rgba(9,17,31,.14); }
.journal-article-content > .journal-table-wrap { margin: 1.25rem 0; overflow-x: auto; border: 1px solid var(--ap-line); border-radius: 12px; }
.journal-article-content table { width: 100%; border-collapse: collapse; font-size: .92rem; }
.journal-article-content th,
.journal-article-content td { padding: 12px 14px; border-bottom: 1px solid var(--ap-line); text-align: left; }
.journal-article-content th { background: var(--ap-paper); color: var(--ap-ink); font-weight: 800; }
.journal-article-content tr:last-child td { border-bottom: 0; }
.journal-article-content .journal-task-item { display: flex; align-items: flex-start; gap: 9px; list-style: none; }
.journal-article-content .journal-task-box { flex: 0 0 auto; display: inline-grid; place-items: center; width: 18px; height: 18px; margin-top: .34em; border: 1px solid #9aa8ba; border-radius: 4px; color: var(--ap-cobalt); font-size: .7rem; font-weight: 900; }
.journal-markdown-empty { color: var(--ap-muted) !important; font-style: italic; font-weight: 500 !important; }

.journal-source { margin-top: 42px; padding: 22px; border-left: 4px solid var(--ap-cyan); background: var(--ap-paper); }
.journal-source span { display: block; color: var(--ap-muted); font: 600 .68rem/1.4 "Manrope", system-ui, sans-serif; letter-spacing: .08em; text-transform: uppercase; }
.journal-source a { display: inline-flex; align-items: center; gap: 8px; margin-top: 8px; color: var(--ap-cobalt); font-weight: 800; }

.journal-inline-cta { margin-top: 68px; padding: clamp(30px, 5vw, 52px); background: var(--ap-paper); border: 1px solid var(--ap-line); }
.journal-inline-cta h2 { margin-top: 14px; }
.journal-inline-cta > div { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 25px; }

.journal-missing { min-height: 70vh; padding: 190px 0 100px; }
.journal-missing h1 { margin: 18px 0; font-size: clamp(3rem, 6vw, 6rem); font-weight: 800; letter-spacing: -.065em; }
.journal-missing p { margin-bottom: 28px; color: var(--ap-muted); }

@media (max-width: 1199px) {
  .journal-hero { padding-top: 148px; }
  .journal-article-header { padding-top: 154px; }
  .journal-card { grid-template-columns: 1fr; }
  .journal-card-media { min-height: 280px; }
  .journal-library-shell[data-journal-layout="cards"] .journal-library-item-link {
    grid-template-columns: 1fr;
    grid-template-rows: 240px minmax(0, 1fr);
  }
  .journal-library-shell[data-journal-layout="cards"] .journal-library-media {
    grid-column: 1;
    grid-row: 1;
    min-height: 240px;
  }
  .journal-library-shell[data-journal-layout="cards"] .journal-library-item-copy {
    grid-column: 1;
    grid-row: 2;
    padding: 30px 68px 34px 28px;
  }
}

@media (max-width: 991px) {
  .journal-hero-grid,
  .journal-article-header-grid,
  .journal-article-layout,
  .v2-section-head { grid-template-columns: 1fr; }
  .journal-hero-copy { max-width: 650px; }
  .journal-library-tools { grid-template-columns: 1fr; }
  .journal-library-shell[data-journal-layout="cards"] .journal-library-list { grid-template-columns: 1fr; }
  .journal-library-shell[data-journal-layout="cards"] .journal-library-item-link {
    grid-template-columns: minmax(260px, .78fr) minmax(0, 1.22fr);
    grid-template-rows: 1fr;
    min-height: 320px;
  }
  .journal-library-shell[data-journal-layout="cards"] .journal-library-media {
    grid-column: 1;
    grid-row: 1;
    min-height: 100%;
  }
  .journal-library-shell[data-journal-layout="cards"] .journal-library-item-copy {
    grid-column: 2;
    grid-row: 1;
  }
  .journal-article-aside { position: static; display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); }
  .journal-share { margin-top: 0; }
}

@media (max-width: 767px) {
  .journal-hero { padding: 132px 0 56px; }
  .journal-hero h1,
  .journal-article-heading h1 { font-size: clamp(2.25rem, 9.5vw, 2.7rem); }
  .journal-card h3 { font-size: clamp(1.25rem, 5.4vw, 1.4rem); }
  .journal-list-section { padding: 32px 0 64px; }
  .journal-card-body { padding: 28px 24px; }
  .journal-library-tools { margin-bottom: 16px; box-shadow: 6px 6px 0 rgba(0, 86, 210, .1); }
  .journal-library-control { padding: 18px; }
  .journal-library-filters { margin-inline: -18px; padding-inline: 18px; }
  .journal-library-statusbar { align-items: flex-start; flex-direction: column; gap: 14px; }
  .journal-library-view > span { display: none; }
  .journal-library-item-link {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 18px;
    min-height: 0;
    padding: 25px 0;
  }
  .journal-library-item-link:hover,
  .journal-library-item-link:focus-visible { padding-left: 0; }
  .journal-library-item-link:hover .journal-library-item-copy,
  .journal-library-item-link:focus-visible .journal-library-item-copy { transform: translateX(4px); }
  .journal-library-index { font-size: .82rem; }
  .journal-library-item-copy h3 { margin-top: 10px; font-size: clamp(1.25rem, 5.6vw, 1.55rem); }
  .journal-library-item-copy p { font-size: .88rem; line-height: 1.58; }
  .journal-library-arrow { display: none; }
  .journal-library-shell[data-journal-layout="cards"] .journal-library-list { gap: 20px; }
  .journal-library-shell[data-journal-layout="cards"] .journal-library-item-link {
    grid-template-columns: 1fr;
    grid-template-rows: 220px minmax(0, 1fr);
    min-height: 470px;
    padding: 0;
  }
  .journal-library-shell[data-journal-layout="cards"] .journal-library-item-link:hover,
  .journal-library-shell[data-journal-layout="cards"] .journal-library-item-link:focus-visible { padding-left: 0; }
  .journal-library-shell[data-journal-layout="cards"] .journal-library-media {
    grid-column: 1;
    grid-row: 1;
    min-height: 220px;
  }
  .journal-library-shell[data-journal-layout="cards"] .journal-library-item-copy {
    grid-column: 1;
    grid-row: 2;
    padding: 26px 24px 30px;
  }
  .journal-library-empty { padding: 32px 24px; }
  .journal-article-header { padding: 142px 0 60px; }
  .journal-article-image { min-height: 390px; }
  .journal-article-layout { padding-top: 58px; padding-bottom: 78px; }
  .journal-article-aside { grid-template-columns: 1fr; }
  .journal-inline-cta > div { flex-direction: column; align-items: stretch; }
  .v2-btn { width: 100%; }
}

/* Offre de création de sites web */
.web-offer-page .main { overflow: clip; }

.web-v2-hero {
  position: relative;
  min-height: 820px;
  padding: 182px 0 94px;
  overflow: hidden;
  background: var(--ap-ink);
  color: var(--ap-white);
}

.web-v2-grid {
  position: absolute;
  inset: 0;
  opacity: .22;
  background-image: linear-gradient(rgba(255,255,255,.09) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.09) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: linear-gradient(90deg, #000, transparent 86%);
}

.web-v2-hero::after {
  position: absolute;
  top: -20%;
  right: -9%;
  width: 49%;
  height: 140%;
  background: linear-gradient(145deg, rgba(0,86,210,.48), rgba(22,199,243,.08));
  content: "";
  transform: skewX(-12deg);
}

.web-v2-hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, .82fr);
  align-items: center;
  gap: clamp(50px, 7vw, 105px);
}

.web-v2-hero .v2-kicker { color: var(--ap-cyan); }

.web-v2-hero .service-v4-breadcrumbs {
  margin-bottom: 38px;
}

.web-v2-hero .service-v4-breadcrumbs li {
  color: rgba(255, 255, 255, .62);
}

.web-v2-hero .service-v4-breadcrumbs a:hover,
.web-v2-hero .service-v4-breadcrumbs [aria-current="page"] {
  color: var(--ap-cyan);
}

.web-v2-hero h1 {
  max-width: 860px;
  margin: 24px 0;
  color: var(--ap-white);
  font-size: clamp(3.2rem, 5.8vw, 6.2rem);
  font-weight: 800;
  letter-spacing: -.07em;
  line-height: .94;
}

.web-v2-hero h1 span { color: var(--ap-cyan); }
.web-v2-hero-copy > p { max-width: 720px; margin: 0; color: rgba(255,255,255,.73); font-size: 1.08rem; line-height: 1.75; }
.web-v2-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }

.web-v2-hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 42px;
  background: rgba(255,255,255,.2);
  border: 1px solid rgba(255,255,255,.16);
}

.web-v2-hero-facts span { min-height: 82px; display: flex; justify-content: center; flex-direction: column; padding: 14px 16px; background: var(--ap-ink); color: rgba(255,255,255,.58); font-size: .76rem; }
.web-v2-hero-facts strong { color: var(--ap-white); font: 600 .7rem/1.5 "Manrope", system-ui, sans-serif; letter-spacing: .08em; text-transform: uppercase; }

.web-v2-browser {
  position: relative;
  min-height: 530px;
  background: #edf2f8;
  border: 1px solid rgba(255,255,255,.35);
  box-shadow: 30px 34px 0 rgba(0,0,0,.22);
  color: var(--ap-ink);
  transform: rotate(1.8deg);
}

.web-v2-browser-top { height: 42px; display: flex; align-items: center; gap: 7px; padding: 0 14px; background: var(--ap-white); border-bottom: 1px solid #d6deea; }
.web-v2-browser-top i { width: 9px; height: 9px; display: block; border-radius: 50%; background: #b7c2d1; }
.web-v2-browser-top i:first-child { background: var(--ap-cyan); }
.web-v2-browser-top span { margin-left: 10px; color: #66758a; font: 500 .61rem/1 "Manrope", system-ui, sans-serif; }
.web-v2-browser-page { padding: 20px; }
.web-v2-browser-nav { display: flex; align-items: center; gap: 12px; font-size: .62rem; }
.web-v2-browser-nav b { margin-right: auto; font-size: .76rem; }
.web-v2-browser-nav span { width: 30px; height: 4px; background: #9da9ba; }
.web-v2-browser-nav em { padding: 7px 9px; background: var(--ap-cobalt); color: var(--ap-white); font-style: normal; }
.web-v2-browser-hero { min-height: 315px; display: flex; align-items: flex-start; justify-content: center; flex-direction: column; margin-top: 20px; padding: 32px; background: var(--ap-ink); color: var(--ap-white); }
.web-v2-browser-hero small { color: var(--ap-cyan); font: 600 .62rem/1.4 "Manrope", system-ui, sans-serif; letter-spacing: .1em; text-transform: uppercase; }
.web-v2-browser-hero strong { margin: 14px 0; font-size: 2.25rem; letter-spacing: -.055em; line-height: 1.02; }
.web-v2-browser-hero span { color: rgba(255,255,255,.65); font-size: .78rem; line-height: 1.6; }
.web-v2-browser-hero i { margin-top: 22px; padding: 10px 13px; background: var(--ap-cyan); color: var(--ap-ink); font-size: .7rem; font-style: normal; font-weight: 800; }
.web-v2-browser-blocks { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 12px; }
.web-v2-browser-blocks span { height: 70px; display: block; background: var(--ap-white); border: 1px solid #d7dfeb; }
.web-v2-browser-signal { position: absolute; right: -28px; bottom: 36px; display: flex; align-items: center; gap: 12px; padding: 15px; background: var(--ap-cyan); color: var(--ap-ink); box-shadow: 0 16px 34px rgba(0,0,0,.2); transform: rotate(-1.8deg); }
.web-v2-browser-signal strong { font: 700 1.4rem/1 "Manrope", system-ui, sans-serif; }
.web-v2-browser-signal span { color: #334055; font-size: .66rem; line-height: 1.4; }
.web-v2-browser-signal b { color: var(--ap-ink); }

.web-v2-principle,
.web-v2-deliverables,
.web-v2-method,
.web-v2-editorial,
.web-v2-faq { padding: clamp(82px, 9vw, 135px) 0; }

.web-v2-principle { background: var(--ap-paper-bright); }
.web-v2-principle-grid { display: grid; grid-template-columns: minmax(0,.85fr) minmax(0,1.15fr); gap: clamp(54px,9vw,140px); }
.web-v2-principle h2,
.web-v2-method h2,
.web-v2-editorial h2 { margin: 18px 0 0; color: var(--ap-ink); font-size: clamp(2.5rem, 5vw, 5rem); font-weight: 800; letter-spacing: -.06em; line-height: .99; }
.web-v2-principle ol,
.web-v2-method ol { margin: 0; padding: 0; border-top: 1px solid var(--ap-ink); list-style: none; }
.web-v2-principle li,
.web-v2-method li { display: grid; grid-template-columns: 62px 1fr; gap: 22px; padding: 25px 0; border-bottom: 1px solid var(--ap-line); }
.web-v2-principle li > span,
.web-v2-method li > span { color: var(--ap-cobalt); font: 600 .8rem/1.5 "Manrope", system-ui, sans-serif; }
.web-v2-principle li strong,
.web-v2-method li strong { font-size: 1.25rem; }
.web-v2-principle li p,
.web-v2-method li p { margin: 5px 0 0; color: var(--ap-muted); }

.web-v2-deliverables { background: var(--ap-paper); }
.web-v2-card-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 1px; background: var(--ap-ink); border: 1px solid var(--ap-ink); }
.web-v2-card-grid article { position: relative; min-height: 330px; padding: 34px; overflow: hidden; background: var(--ap-paper-bright); }
.web-v2-card-grid article:nth-child(2),
.web-v2-card-grid article:nth-child(6) { --card-hover-accent: var(--ap-cyan); background: var(--ap-cobalt); color: var(--ap-white); }
.web-v2-card-grid article > span { color: var(--ap-cobalt); font: 600 .75rem/1.4 "Manrope", system-ui, sans-serif; }
.web-v2-card-grid article:nth-child(2) > span,
.web-v2-card-grid article:nth-child(6) > span { color: var(--ap-cyan-on-blue); }
.web-v2-card-grid i { display: block; margin: 48px 0 25px; color: var(--ap-cobalt); font-size: 2.2rem; }
.web-v2-card-grid article:nth-child(2) i,
.web-v2-card-grid article:nth-child(6) i { color: var(--ap-cyan-on-blue); }
.web-v2-card-grid h3 { color: inherit; font-size: 1.55rem; font-weight: 800; letter-spacing: -.035em; }
.web-v2-card-grid p { margin: 14px 0 0; color: var(--ap-muted); line-height: 1.7; }
.web-v2-card-grid article:nth-child(2) p,
.web-v2-card-grid article:nth-child(6) p { color: rgba(255,255,255,.92); }

.web-v2-method { background: var(--ap-ink); color: var(--ap-white); }
.web-v2-method-grid { display: grid; grid-template-columns: minmax(0,.8fr) minmax(0,1.2fr); gap: clamp(54px,9vw,140px); }
.web-v2-method .v2-kicker { color: var(--ap-cyan); }
.web-v2-method h2 { color: var(--ap-white); }
.web-v2-method-heading p { max-width: 620px; margin-top: 24px; color: rgba(255,255,255,.64); line-height: 1.75; }
.web-v2-method ol { border-color: rgba(255,255,255,.35); }
.web-v2-method li { border-color: rgba(255,255,255,.16); }
.web-v2-method li > span { color: var(--ap-cyan); }
.web-v2-method li p { color: rgba(255,255,255,.62); }

.web-v2-editorial { background: var(--ap-cyan); }
.web-v2-editorial-grid { display: grid; grid-template-columns: minmax(0,1fr) minmax(440px,.9fr); align-items: center; gap: clamp(50px,8vw,120px); }
.web-v2-editorial .v2-kicker { color: var(--ap-ink); }
.web-v2-editorial p { max-width: 700px; margin: 22px 0; color: #28364a; line-height: 1.75; }
.web-v2-editorial .v2-text-link { color: var(--ap-ink); }
.web-v2-editorial-flow { display: flex; align-items: center; justify-content: center; gap: 12px; }
.web-v2-editorial-flow > span { min-width: 130px; display: flex; align-items: center; flex-direction: column; padding: 25px 16px; background: var(--ap-white); border: 1px solid var(--ap-ink); text-align: center; }
.web-v2-editorial-flow i { color: var(--ap-cobalt); font-size: 1.7rem; }
.web-v2-editorial-flow b { margin: 10px 0 4px; }
.web-v2-editorial-flow small { color: var(--ap-muted); font-size: .7rem; }
.web-v2-editorial-flow em { font-style: normal; font-weight: 800; }

.web-v2-faq { background: var(--ap-paper-bright); }
.web-v2-faq-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 1px; background: var(--ap-ink); border: 1px solid var(--ap-ink); }
.web-v2-faq-grid article { min-height: 310px; padding: 34px; background: var(--ap-white); }
.web-v2-faq-grid article > span { color: var(--ap-cobalt); font: 600 .75rem/1.4 "Manrope", system-ui, sans-serif; }
.web-v2-faq-grid h3 { margin: 44px 0 16px; font-size: 1.35rem; font-weight: 800; line-height: 1.25; }
.web-v2-faq-grid p { color: var(--ap-muted); line-height: 1.72; }

.web-v2-final { padding: 96px 0; background: var(--ap-cobalt); color: var(--ap-white); }
.web-v2-final-grid { display: grid; grid-template-columns: minmax(0,1.15fr) minmax(320px,.65fr); align-items: end; gap: clamp(50px,9vw,140px); }
.web-v2-final .v2-kicker { color: var(--ap-cyan-on-blue); }
.web-v2-final h2 { margin: 18px 0 0; color: var(--ap-white); font-size: clamp(2.5rem, 5vw, 5rem); font-weight: 800; letter-spacing: -.06em; line-height: .99; }
.web-v2-final p { color: rgba(255,255,255,.92); line-height: 1.75; }
.web-v2-final .v2-btn { margin-top: 20px; }

@media (max-width: 1199px) {
  .web-v2-hero-layout { grid-template-columns: minmax(0,1fr) minmax(360px,.75fr); }
  .web-v2-card-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
}

@media (max-width: 991.98px) {
  .web-v2-hero-layout,
  .web-v2-principle-grid,
  .web-v2-method-grid,
  .web-v2-editorial-grid,
  .web-v2-final-grid { grid-template-columns: 1fr; }
  .web-v2-browser { max-width: 660px; margin: 10px auto 0; }
  .web-v2-editorial-flow { justify-content: flex-start; }
  .web-v2-faq-grid { grid-template-columns: 1fr; }
}

@media (max-width: 767.98px) {
  .web-v2-hero { min-height: auto; padding: 142px 0 70px; }
  .web-v2-hero h1 { font-size: clamp(2.9rem, 14vw, 4.8rem); }
  .web-v2-actions { flex-direction: column; }
  .web-v2-hero-facts { grid-template-columns: 1fr; }
  .web-v2-browser { min-height: 450px; box-shadow: 10px 12px 0 rgba(0,0,0,.2); transform: none; }
  .web-v2-browser-page { padding: 12px; }
  .web-v2-browser-hero { min-height: 270px; padding: 23px; }
  .web-v2-browser-hero strong { font-size: 1.72rem; }
  .web-v2-browser-signal { right: 0; bottom: 26px; transform: none; }
  .web-v2-card-grid { grid-template-columns: 1fr; }
  .web-v2-editorial-flow { display: grid; grid-template-columns: 1fr; }
  .web-v2-editorial-flow > span { width: 100%; }
  .web-v2-editorial-flow > em { display: none; }
}

/* Public navigation v3: lighter top level, structured mega menus */
html {
  scroll-padding-top: 112px;
}

#header.trame-header,
body.scrolled #header.trame-header {
  top: 0;
  padding: 0 !important;
  background: rgba(255, 254, 250, 0.98);
  transform: none;
}

#header.trame-header::before {
  display: none;
}

.trame-nav-shell {
  position: relative;
  overflow: visible;
}

.trame-utility-contact {
  padding-left: 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--ap-cyan) !important;
  font-weight: 700;
}

.trame-utility-contact i {
  transition: transform 180ms ease;
}

.trame-utility-contact:hover i {
  transform: translate(2px, -2px);
}

.trame-news {
  padding: clamp(78px, 9vw, 130px) 0;
  background: var(--ap-paper-bright);
}

.home-journal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1px;
  margin-top: clamp(38px, 5vw, 64px);
  border: 1px solid var(--ap-ink);
  background: var(--ap-ink);
}

.home-journal-card.journal-card {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: minmax(225px, 260px) 1fr;
  min-width: 0;
  min-height: 510px;
  margin: 0;
  border: 0;
  border-radius: 0;
  background: var(--ap-white);
  box-shadow: none;
}

.home-journal-card .journal-card-media {
  min-height: 225px;
  border-radius: 0;
}

.home-journal-card .journal-card-media::after {
  background: linear-gradient(180deg, transparent 58%, rgba(9, 17, 31, 0.3));
}

.home-journal-card .journal-card-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 28px;
}

.home-journal-card .journal-meta {
  color: var(--ap-cobalt);
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 0.72rem;
  text-transform: uppercase;
}

.home-journal-card h3 {
  margin: 18px 0 12px;
  color: var(--ap-ink);
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.home-journal-card p {
  margin: 0 0 26px;
  color: var(--ap-muted);
  line-height: 1.68;
}

.home-journal-card .trame-text-link {
  margin-top: auto;
}

@media (min-width: 768px) {
  .home-journal-grid > .home-journal-card:only-child {
    grid-column: 1 / -1;
    grid-template-columns: minmax(300px, .9fr) minmax(0, 1.1fr);
    grid-template-rows: 1fr;
    min-height: 380px;
  }

  .home-journal-grid > .home-journal-card:only-child .journal-card-media {
    min-height: 380px;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .home-journal-grid > .home-journal-card:nth-child(3):last-child {
    grid-column: 1 / -1;
    grid-template-columns: minmax(270px, .82fr) minmax(0, 1.18fr);
    grid-template-rows: 1fr;
    min-height: 350px;
  }

  .home-journal-grid > .home-journal-card:nth-child(3):last-child .journal-card-media {
    min-height: 350px;
  }
}

@media (min-width: 1200px) {
  body.mega-nav-open::after {
    position: fixed;
    z-index: 996;
    inset: 112px 0 0;
    background: rgba(9, 17, 31, 0.56);
    backdrop-filter: blur(2px);
    content: "";
  }

  .trame-nav > ul > li.trame-mega-parent {
    position: static;
  }

  .trame-nav-trigger {
    position: relative;
    display: flex;
    align-items: center;
    gap: 7px;
    min-height: 44px;
    padding: 10px;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--ap-ink-soft);
    font: inherit;
    font-size: 0.83rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    white-space: nowrap;
    cursor: pointer;
  }

  .trame-nav-trigger::after {
    position: absolute;
    right: 10px;
    bottom: 4px;
    left: 10px;
    height: 2px;
    background: var(--ap-cobalt);
    content: "";
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 180ms ease;
  }

  .trame-nav-trigger:hover,
  .trame-nav-trigger.active,
  .trame-nav-trigger[aria-expanded="true"] {
    color: var(--ap-cobalt);
  }

  .trame-nav-trigger:hover::after,
  .trame-nav-trigger.active::after,
  .trame-nav-trigger[aria-expanded="true"]::after {
    transform: scaleX(1);
  }

  /* While browsing a mega menu, highlight that menu instead of the page's category. */
  .mega-nav-open .trame-nav-trigger:not([aria-expanded="true"]) {
    color: var(--ap-ink-soft);
  }

  .mega-nav-open .trame-nav-trigger:not([aria-expanded="true"])::after {
    transform: scaleX(0);
  }

  .trame-nav-trigger i {
    font-size: 0.7rem;
    transition: transform 180ms ease;
  }

  .trame-nav-trigger[aria-expanded="true"] i {
    transform: rotate(180deg);
  }

  .trame-header .trame-mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    z-index: 9999;
    display: block;
    width: min(1180px, calc(100vw - 32px));
    max-width: min(1180px, calc(100vw - 32px));
    max-height: calc(100vh - 128px);
    margin: 0;
    padding: 0;
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: 0 32px 76px rgba(9, 17, 31, 0.26);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(-50%) translateY(10px);
    transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease;
  }

  .trame-header .trame-mega-menu::before {
    position: absolute;
    top: auto;
    right: 0;
    bottom: 100%;
    left: 0;
    height: 16px;
    content: "";
    pointer-events: auto;
  }

  .trame-header .trame-mega-parent:hover > .trame-mega-menu,
  .trame-header .trame-mega-parent:focus-within > .trame-mega-menu,
  .trame-header .trame-mega-parent.dropdown-open > .trame-mega-menu,
  .trame-header .trame-mega-menu.dropdown-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
  }

  .trame-header .trame-mega-parent.mega-escape-closed > .trame-mega-menu {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transform: translateX(-50%) translateY(10px) !important;
  }

  .trame-mega-shell {
    position: relative;
    max-height: calc(100vh - 128px);
    padding: 30px;
    overflow-y: auto;
    border: 1px solid var(--ap-ink);
    border-radius: 0;
    background: var(--ap-paper-bright);
  }

  .trame-mega-shell::before {
    position: absolute;
    inset: 0 0 auto;
    height: 5px;
    background: var(--ap-cyan);
    content: "";
  }

  .trame-mega-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 32px;
    padding: 8px 0 24px;
  }

  .trame-mega-kicker {
    display: block;
    margin-bottom: 8px;
    color: var(--ap-cobalt);
    font: 600 0.72rem/1.4 "Manrope", system-ui, sans-serif;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .trame-mega-heading h2 {
    max-width: 660px;
    margin: 0;
    color: var(--ap-ink);
    font-size: clamp(1.55rem, 2.35vw, 2.35rem);
    font-weight: 800;
    letter-spacing: -0.045em;
    line-height: 1.04;
  }

  .trame-mega-all {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 44px;
    padding: 10px 0;
    border-bottom: 1px solid var(--ap-ink);
    color: var(--ap-ink);
    font-size: 0.82rem;
    font-weight: 800;
    white-space: nowrap;
  }

  .trame-mega-all:hover {
    border-color: var(--ap-cobalt);
    color: var(--ap-cobalt);
  }

  .trame-mega-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr)) minmax(245px, 0.82fr);
    gap: 1px;
    border: 1px solid var(--ap-line-strong);
    background: var(--ap-line-strong);
  }

  .trame-mega-column {
    min-width: 0;
    min-height: 286px;
    padding: 25px;
    background: var(--ap-white);
  }

  .trame-mega-column h3 {
    margin: 0 0 20px;
    color: var(--ap-ink);
    font-size: 1.1rem;
    font-weight: 800;
  }

  .trame-header .trame-mega-column > a {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 45px;
    padding: 9px 21px 9px 0;
    border-bottom: 1px solid var(--ap-line);
    border-radius: 0;
    color: var(--ap-ink-soft);
    font-size: 0.88rem;
    font-weight: 650;
    line-height: 1.32;
    transition: color 160ms ease, padding-left 160ms ease;
  }

  .trame-header .trame-mega-column > a::after {
    position: absolute;
    right: 2px;
    color: var(--ap-cobalt);
    content: "\2192";
    opacity: 0;
    transform: translateX(-5px);
    transition: opacity 160ms ease, transform 160ms ease;
  }

  .trame-header .trame-mega-column > a:hover {
    padding-left: 5px;
    color: var(--ap-cobalt);
  }

  .trame-header .trame-mega-column > a:hover::after {
    opacity: 1;
    transform: translateX(0);
  }

  .trame-mega-focus {
    display: flex;
    flex-direction: column;
    min-width: 0;
    min-height: 286px;
    padding: 25px;
    background: var(--ap-cobalt);
    color: var(--ap-white);
  }

  .trame-mega-focus > span {
    color: var(--ap-cyan-on-blue);
    font: 600 0.72rem/1.45 "Manrope", system-ui, sans-serif;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

  .trame-mega-focus strong {
    margin: 28px 0 12px;
    color: var(--ap-white);
    font-size: 1.4rem;
    letter-spacing: -0.035em;
    line-height: 1.12;
  }

  .trame-mega-focus p {
    margin: 0 0 24px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.84rem;
    line-height: 1.58;
  }

  .trame-header .trame-mega-focus > a {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    min-height: 44px;
    margin-top: auto;
    padding: 10px 12px;
    border: 1px solid var(--ap-cyan);
    border-radius: 0;
    background: var(--ap-cyan);
    color: var(--ap-ink);
    font-size: 0.8rem;
    font-weight: 800;
  }

  .trame-header .trame-mega-focus > a:hover {
    background: var(--ap-white);
    border-color: var(--ap-white);
    color: var(--ap-cobalt);
  }
}

@media (max-width: 1199px) {
  html {
    scroll-padding-top: 104px;
  }

  .trame-header .mobile-nav-toggle {
    display: grid !important;
  }

  body.mobile-nav-active .trame-header .mobile-nav-toggle {
    position: relative;
    top: auto;
    right: auto;
    color: var(--ap-ink);
  }

  .trame-nav > ul {
    inset: 104px 16px auto 16px !important;
    max-height: calc(100dvh - 120px);
  }

  .trame-nav > ul > li,
  .trame-nav > ul > li > a,
  .trame-nav-trigger {
    width: 100%;
  }

  .trame-nav-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 48px;
    margin: 0;
    padding: 13px 14px;
    border: 0;
    border-bottom: 1px solid var(--ap-line);
    border-radius: 0;
    background: transparent;
    color: var(--ap-ink);
    font: inherit;
    font-size: 1rem;
    font-weight: 700;
    text-align: left;
  }

  .trame-nav-trigger i {
    transition: transform 180ms ease;
  }

  .trame-nav-trigger[aria-expanded="true"] i {
    transform: rotate(180deg);
  }

  .trame-header .trame-mega-menu {
    position: static !important;
    display: none !important;
    width: auto !important;
    max-width: none !important;
    max-height: none !important;
    margin: 0 10px 12px !important;
    padding: 0 !important;
    overflow: visible !important;
    border: 1px solid var(--ap-line-strong) !important;
    border-radius: 0 !important;
    background: var(--ap-paper) !important;
    box-shadow: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: none !important;
  }

  .trame-header .trame-mega-menu.dropdown-active,
  .trame-header .trame-mega-parent.dropdown-open > .trame-mega-menu {
    display: block !important;
  }

  .trame-mega-shell {
    max-height: none;
    padding: 18px;
    overflow: visible;
    background: var(--ap-paper-bright);
  }

  .trame-mega-heading {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px 24px;
    align-items: end;
    padding-bottom: 18px;
  }

  .trame-mega-kicker {
    display: block;
    margin-bottom: 5px;
    color: var(--ap-cobalt);
    font: 600 0.67rem/1.4 "Manrope", system-ui, sans-serif;
    letter-spacing: 0.07em;
    text-transform: uppercase;
  }

  .trame-mega-heading h2 {
    max-width: 620px;
    margin: 0;
    color: var(--ap-ink);
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 1.1;
  }

  .trame-mega-all {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 42px;
    padding: 8px 0;
    border-bottom: 1px solid var(--ap-ink);
    color: var(--ap-ink);
    font-size: 0.75rem;
    font-weight: 800;
  }

  .trame-mega-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    border: 1px solid var(--ap-line-strong);
    background: var(--ap-line-strong);
  }

  .trame-mega-column,
  .trame-mega-focus {
    min-width: 0;
    padding: 18px;
    background: var(--ap-white);
  }

  .trame-mega-focus > span {
    color: var(--ap-cobalt);
    font: 600 0.67rem/1.4 "Manrope", system-ui, sans-serif;
    text-transform: uppercase;
  }

  .trame-mega-column h3 {
    margin: 0 0 12px;
    color: var(--ap-ink);
    font-size: 1rem;
    font-weight: 800;
  }

  .trame-header .trame-mega-column > a {
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: 9px 0;
    border-bottom: 1px solid var(--ap-line);
    color: var(--ap-ink-soft);
    font-size: 0.84rem;
    font-weight: 650;
    line-height: 1.35;
  }

  .trame-mega-focus {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(150px, 0.6fr) minmax(220px, 1fr) auto;
    align-items: center;
    gap: 12px 24px;
    background: var(--ap-cobalt);
    color: var(--ap-white);
  }

  .trame-mega-focus > span {
    color: var(--ap-cyan-on-blue);
  }

  .trame-mega-focus strong {
    color: var(--ap-white);
    font-size: 1.05rem;
  }

  .trame-mega-focus p {
    display: none;
  }

  .trame-header .trame-mega-focus > a {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    min-height: 42px;
    padding: 9px 11px;
    background: var(--ap-cyan);
    color: var(--ap-ink);
    font-size: 0.75rem;
    font-weight: 800;
    white-space: nowrap;
  }

  .home-journal-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  html {
    scroll-padding-top: 100px;
  }

  .trame-utility-inner {
    justify-content: flex-start;
  }

  .trame-utility-phone {
    margin-left: auto;
  }

  .trame-utility-contact {
    padding-left: 10px;
  }

  .trame-nav > ul {
    inset: 100px 12px auto 12px !important;
    max-height: calc(100dvh - 116px);
  }

  .trame-mega-shell {
    padding: 14px;
  }

  .trame-mega-heading {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .trame-mega-heading h2 {
    font-size: 1.16rem;
  }

  .trame-mega-all {
    width: fit-content;
  }

  .trame-mega-grid,
  .home-journal-grid {
    grid-template-columns: 1fr;
  }

  .trame-mega-column,
  .trame-mega-focus {
    padding: 15px;
  }

  .trame-mega-focus {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .trame-mega-focus strong {
    margin-top: 2px;
  }

  .trame-header .trame-mega-focus > a {
    width: 100%;
  }

  .home-journal-card.journal-card {
    grid-template-rows: 220px 1fr;
    min-height: 470px;
  }
}

@media (max-width: 575px) {
  .trame-utility-inner {
    gap: 8px;
  }

  .trame-utility-inner > a:first-child {
    display: none;
  }

  .trame-utility-phone,
  .trame-utility-contact {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .trame-utility-contact {
    padding-left: 8px;
    font-size: 0.67rem;
  }
}

/* À propos — page fusionnée avec la boutique */
.about-v3 .main {
  overflow: clip;
}

.about-v3-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(176px, 14vw, 220px) 0 clamp(78px, 8vw, 118px);
  background: var(--ap-ink);
  color: var(--ap-white);
}

.about-v3-gridlines {
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: .52;
  background-image:
    linear-gradient(rgba(255, 255, 255, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .055) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, #000 0, rgba(0, 0, 0, .72) 58%, transparent 100%);
}

.about-v3-hero::after,
.service-v4-final::after {
  aspect-ratio: 358 / 332;
  /* Contour du monogramme : traverse et coupure du logo Accomplus. */
  clip-path: polygon(39.66% 0, 59.78% 0, 79.89% 50.30%, 58.66% 50.30%, 49.72% 27.11%, 37.43% 58.73%, 83.24% 58.73%, 100% 100%, 78.49% 100%, 69.27% 77.11%, 30.17% 77.11%, 21.51% 99.40%, 0 99.40%);
}

.about-v3-hero::after {
  position: absolute;
  z-index: -1;
  bottom: 24px;
  left: clamp(20px, 5vw, 80px);
  width: clamp(260px, 26vw, 380px);
  background: linear-gradient(145deg, rgba(22, 199, 243, .13), rgba(22, 199, 243, .08));
  pointer-events: none;
  content: "";
}

.about-v3-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(370px, .72fr);
  grid-template-areas:
    "copy visual"
    "lower visual";
  align-items: start;
  column-gap: clamp(56px, 8vw, 124px);
  row-gap: 0;
}

.about-v3-image-credit .image-credit {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, .72);
  text-align: right;
  font-size: .75rem;
}

.about-v3-image-credit a:hover {
  color: var(--ap-cyan);
}

.about-v3-hero-copy {
  grid-area: copy;
}

.about-v3-hero-lower {
  grid-area: lower;
}

.about-v3-hero-copy h1,
.about-v3-section-head h2,
.about-v3-shop h2,
.about-v3-partner h2,
.about-v3-final h2 {
  margin: 18px 0 0;
  font-weight: 800;
  letter-spacing: -.052em;
  line-height: 1;
}

.about-v3-hero-copy h1 {
  max-width: 950px;
  color: var(--ap-white);
  font-size: clamp(3rem, 4.8vw, 5.25rem);
}

.about-v3-hero-copy > p {
  max-width: 760px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, .7);
  font-size: clamp(1.02rem, 1.35vw, 1.2rem);
  line-height: 1.78;
}

.about-v3-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 34px;
}

.about-v3-facts {
  max-width: 760px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 44px 0 0;
  border-top: 1px solid rgba(255, 255, 255, .22);
  border-bottom: 1px solid rgba(255, 255, 255, .22);
}

.about-v3-facts > div {
  padding: 22px 26px 24px 0;
}

.about-v3-facts > div + div {
  padding-left: 26px;
  border-left: 1px solid rgba(255, 255, 255, .22);
}

.about-v3-facts dt,
.about-v3-shop-details span {
  margin-bottom: 9px;
  color: var(--ap-cyan);
  font: 600 .7rem/1.45 "Manrope", system-ui, sans-serif;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.about-v3-facts dd {
  margin: 0;
  color: var(--ap-white);
  font-size: .94rem;
  font-weight: 750;
  line-height: 1.65;
}

.about-v3-facts dd span {
  color: rgba(255, 255, 255, .58);
  font-weight: 550;
}

.about-v3-hero-visual {
  position: relative;
  grid-area: visual;
  align-self: stretch;
  min-height: 640px;
  margin: 0;
}

.about-v3-hero-image {
  position: absolute;
  inset: 0 0 26px 26px;
  overflow: hidden;
  background: var(--ap-ink-soft);
  clip-path: polygon(0 0, calc(100% - 35px) 0, 100% 35px, 100% 100%, 35px 100%, 0 calc(100% - 35px));
}

.about-v3-hero-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(9, 17, 31, .38));
  content: "";
}

.about-v3-hero-image picture,
.about-v3-hero-image img {
  display: block;
  width: 100%;
  height: 100%;
}

.about-v3-hero-image img {
  object-fit: cover;
  object-position: 50% center;
}

.about-v3-visual-index {
  position: absolute;
  top: -25px;
  right: 30px;
  padding: 11px 14px;
  background: var(--ap-cyan);
  color: var(--ap-ink);
  font: 700 .7rem/1.35 "Manrope", system-ui, sans-serif;
  letter-spacing: .08em;
}

.about-v3-visual-note {
  position: absolute;
  right: -32px;
  bottom: 0;
  min-width: 310px;
  display: grid;
  grid-template-columns: 46px 1fr;
  align-items: center;
  gap: 15px;
  padding: 18px 20px;
  background: var(--ap-white);
  color: var(--ap-ink);
  box-shadow: 0 22px 50px rgba(0, 0, 0, .22);
}

.about-v3-visual-note > i {
  font-size: 1.65rem;
  color: var(--ap-cobalt);
}

.about-v3-visual-note strong,
.about-v3-visual-note span {
  display: block;
}

.about-v3-visual-note strong {
  font-size: .94rem;
}

.about-v3-visual-note span {
  margin-top: 3px;
  color: var(--ap-muted);
  font-size: .78rem;
}

.about-v3-founder {
  padding: clamp(58px, 6.5vw, 86px) 0;
  border-bottom: 1px solid var(--ap-ink);
  background: var(--ap-paper);
}

.about-v3-founder-grid {
  display: grid;
  grid-template-columns: minmax(310px, .68fr) minmax(0, 1fr);
  grid-template-areas:
    "portrait heading"
    "portrait copy";
  align-items: start;
  column-gap: clamp(44px, 7vw, 104px);
  row-gap: 24px;
}

.about-v3-founder-heading {
  grid-area: heading;
}

.about-v3-founder-heading h2 {
  margin: 14px 0 0;
  color: var(--ap-ink);
  font-size: clamp(1.95rem, 2.55vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -.045em;
  line-height: 1.08;
}

.about-v3-founder-heading > p {
  max-width: 720px;
  margin: 13px 0 0;
  color: var(--ap-cobalt);
  font: 700 .7rem/1.5 "Manrope", system-ui, sans-serif;
  letter-spacing: .075em;
  text-transform: uppercase;
}

.about-v3-founder-portrait {
  position: relative;
  grid-area: portrait;
  min-width: 0;
  width: 100%;
  max-width: 480px;
  margin: 0 12px 12px 0;
  padding: 9px 9px 48px;
  border: 1px solid var(--ap-ink);
  background: var(--ap-paper-bright);
  box-shadow: 12px 12px 0 var(--ap-cobalt);
}

.about-v3-founder-portrait img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  border: 1px solid rgba(9, 17, 31, .18);
  object-fit: cover;
}

.about-v3-founder-portrait figcaption {
  position: absolute;
  right: 13px;
  bottom: 13px;
  left: 13px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: var(--ap-cobalt);
  font: 700 .63rem/1.35 "Manrope", system-ui, sans-serif;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.about-v3-founder-portrait figcaption strong {
  color: var(--ap-ink);
  font: inherit;
  text-align: right;
}

.about-v3-founder-copy {
  grid-area: copy;
  max-width: 850px;
  padding-left: 30px;
  border-left: 2px solid var(--ap-cyan);
}

.about-v3-founder-copy > p {
  max-width: 65ch;
  margin: 0;
  color: var(--ap-ink-soft);
  font-size: 1rem;
  line-height: 1.75;
}

.about-v3-founder-copy > p:first-child {
  color: #344052;
  font-size: 1.04rem;
}

.about-v3-founder-copy > p:first-child strong {
  color: var(--ap-ink);
  font-weight: 700;
}

.about-v3-founder-copy > p + p {
  margin-top: 20px;
}

.about-v3-founder-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 28px 0 0;
  padding: 0;
  border-top: 1px solid var(--ap-ink);
}

.about-v3-founder-proof > div {
  min-width: 0;
  padding: 17px 18px 0 0;
}

.about-v3-founder-proof > div + div {
  padding-left: 18px;
  border-left: 1px solid var(--ap-line);
}

.about-v3-founder-proof dt {
  color: var(--ap-cobalt);
  font: 700 .86rem/1.35 "Manrope", system-ui, sans-serif;
  letter-spacing: -.02em;
}

.about-v3-founder-proof dd {
  margin: 5px 0 0;
  color: var(--ap-ink);
  font-size: .8rem;
  font-weight: 700;
  line-height: 1.45;
}

.about-v3-principles,
.about-v3-partner {
  padding: clamp(82px, 9vw, 132px) 0;
}

.about-v3-principles {
  background: var(--ap-paper-bright);
}

.about-v3-section-head {
  display: grid;
  grid-template-columns: minmax(0, 900px);
  gap: 24px;
  margin-bottom: 48px;
}

.about-v3-section-head h2,
.about-v3-shop h2,
.about-v3-partner h2,
.about-v3-final h2 {
  font-size: clamp(2.25rem, 3.55vw, 3.75rem);
}

.about-v3-section-head > p {
  max-width: 760px;
  margin: 0;
  color: var(--ap-muted);
  font-size: 1.04rem;
  line-height: 1.78;
}

.about-v3-principle-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--ap-ink);
  background: var(--ap-ink);
}

.about-v3-principle-grid article {
  position: relative;
  min-height: 320px;
  padding: 34px;
  background: var(--ap-paper-bright);
}

.about-v3-principle-meta {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 42px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--ap-line);
  color: var(--ap-cobalt);
}

.about-v3-principle-meta > span {
  color: var(--ap-cobalt);
  font: 700 1.42rem/1 "Manrope", system-ui, sans-serif;
}

.about-v3-principle-meta > i {
  color: var(--ap-cobalt);
  font-size: 2.75rem;
  line-height: 1;
}

.about-v3-principle-grid h3 {
  margin: 0;
  color: var(--ap-ink);
  font-size: 1.42rem;
  font-weight: 800;
}

.about-v3-principle-grid p {
  margin: 15px 0 0;
  color: var(--ap-muted);
  line-height: 1.72;
}

.about-v3-shop {
  padding: clamp(82px, 9vw, 132px) 0;
  background: var(--ap-cobalt);
  color: var(--ap-white);
}

.about-v3-shop-grid {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(440px, 1fr);
  align-items: center;
  gap: clamp(55px, 8vw, 120px);
}

.about-v3-shop h2 {
  color: var(--ap-white);
}

.about-v3-shop-copy > p {
  max-width: 670px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, .76);
  font-size: 1.05rem;
  line-height: 1.78;
}

.about-v3-shop-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, .28);
  border-left: 1px solid rgba(255, 255, 255, .28);
}

.about-v3-shop-details > div {
  min-height: 126px;
  padding: 20px;
  border-right: 1px solid rgba(255, 255, 255, .28);
  border-bottom: 1px solid rgba(255, 255, 255, .28);
}

.about-v3-shop-details span,
.about-v3-shop-details strong {
  display: block;
}

.about-v3-shop-details span {
  color: var(--ap-cyan-on-blue);
}

.about-v3-shop-details strong {
  font-size: .93rem;
  line-height: 1.55;
}

.about-v3-map {
  min-height: 590px;
  border: 1px solid rgba(255, 255, 255, .22);
}

.about-v3-partner {
  background: var(--ap-cyan);
}

.about-v3-partner-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(350px, .72fr);
  align-items: center;
  gap: clamp(55px, 8vw, 120px);
}

.about-v3-partner-media {
  position: relative;
  min-width: 0;
  min-height: 0;
  margin: 0 14px 14px 0;
  padding: 10px 10px 54px;
  border: 1px solid var(--ap-ink);
  background: var(--ap-paper-bright);
  box-shadow: 14px 14px 0 var(--ap-ink);
}

.about-v3-partner-media img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid rgba(9, 17, 31, .22);
}

.about-v3-partner-media figcaption {
  position: absolute;
  right: 15px;
  bottom: 15px;
  left: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.about-v3-partner-media figcaption span {
  color: var(--ap-cobalt);
  font: 600 .7rem/1.35 "Manrope", system-ui, sans-serif;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.about-v3-partner-media figcaption strong {
  color: var(--ap-ink);
  font: 600 .73rem/1.35 "Manrope", system-ui, sans-serif;
  letter-spacing: .08em;
  text-align: right;
}

.about-v3-partner .trame-kicker {
  color: var(--ap-ink);
}

.about-v3-partner h2 {
  color: var(--ap-ink);
}

.about-v3-partner-copy > p {
  margin: 28px 0;
  color: rgba(9, 17, 31, .76);
  line-height: 1.78;
}

.about-v3-partner-copy a {
  color: var(--ap-ink);
}

.about-v3-partner-copy p .about-v3-inline-link {
  font-weight: 750;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.about-v3-partner-copy p .about-v3-inline-link:hover {
  color: var(--ap-cobalt-deep);
}

.about-v3-partner a:focus-visible {
  outline-color: var(--ap-ink);
}

.about-v3-final {
  padding: clamp(78px, 8vw, 112px) 0;
  background: var(--ap-cobalt);
  color: var(--ap-white);
}

.about-v3-final-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(330px, .6fr);
  align-items: end;
  gap: clamp(50px, 9vw, 140px);
}

.about-v3-final h2 {
  color: var(--ap-white);
}

.about-v3-final-grid > div:last-child > p {
  margin: 0;
  color: rgba(255, 255, 255, .68);
  line-height: 1.75;
}

@media (max-width: 1199px) {
  .about-v3-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(340px, .68fr);
    column-gap: 54px;
    row-gap: 0;
  }

  .about-v3-hero-visual {
    min-height: 540px;
  }

  .about-v3-visual-note {
    right: -10px;
  }

  .about-v3-shop-grid,
  .about-v3-partner-grid {
    gap: 58px;
  }
}

@media (max-width: 991.98px) {
  .about-v3-hero-grid,
  .about-v3-shop-grid,
  .about-v3-partner-grid,
  .about-v3-section-head,
  .about-v3-final-grid {
    grid-template-columns: 1fr;
  }

  .about-v3-hero-copy h1 {
    max-width: 780px;
  }

  .about-v3-hero-grid {
    grid-template-areas:
      "copy"
      "visual"
      "lower";
    gap: 36px;
  }

  .about-v3-hero::after {
    bottom: 22px;
    left: auto;
    right: 20px;
    width: 230px;
  }

  .about-v3-hero-lower .about-v3-actions {
    margin-top: 0;
  }

  .about-v3-founder-grid {
    grid-template-columns: minmax(220px, .58fr) minmax(0, 1fr);
    grid-template-areas:
      "heading heading"
      "portrait copy";
    column-gap: 38px;
    row-gap: 28px;
  }

  .about-v3-founder-portrait {
    max-width: 320px;
  }

  .about-v3-founder-copy {
    max-width: 780px;
    padding-left: 20px;
  }

  .about-v3-founder-proof {
    grid-template-columns: 1fr;
  }

  .about-v3-founder-proof > div {
    padding: 13px 0;
  }

  .about-v3-founder-proof > div + div {
    padding-left: 0;
    border-top: 1px solid var(--ap-line);
    border-left: 0;
  }

  .about-v3-hero-visual {
    max-width: 660px;
    min-height: 610px;
    margin-top: 12px;
  }

  .about-v3-principle-grid {
    grid-template-columns: 1fr;
  }

  .about-v3-principle-grid article {
    min-height: auto;
  }

  .about-v3-principle-meta {
    margin-bottom: 32px;
  }

  .about-v3-map {
    min-height: 460px;
  }

  .about-v3-partner-media {
    max-width: 820px;
  }
}

@media (max-width: 767.98px) {
  .about-v3-hero {
    padding: 138px 0 72px;
  }

  .about-v3-hero-grid {
    gap: 30px;
  }

  .about-v3-hero-copy h1 {
    font-size: clamp(2.45rem, 10.5vw, 3.55rem);
  }

  .about-v3-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .about-v3-facts,
  .about-v3-shop-details {
    grid-template-columns: 1fr;
  }

  .about-v3-facts > div {
    padding: 19px 0;
  }

  .about-v3-facts > div + div {
    padding-left: 0;
    border-top: 1px solid rgba(255, 255, 255, .22);
    border-left: 0;
  }

  .about-v3-hero-visual {
    min-height: clamp(320px, 92vw, 440px);
  }

  .about-v3-hero-image {
    inset: 0 0 16px;
  }

  .about-v3-visual-index {
    top: -18px;
    right: 12px;
  }

  .about-v3-visual-note {
    right: -5px;
    min-width: 0;
    width: calc(100% - 20px);
  }

  .about-v3-principles,
  .about-v3-shop,
  .about-v3-partner,
  .about-v3-final {
    padding: 72px 0;
  }

  .about-v3-founder {
    padding: 48px 0;
  }

  .about-v3-founder-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "heading"
      "portrait"
      "copy";
    gap: 23px;
  }

  .about-v3-founder-heading h2 {
    font-size: clamp(1.75rem, 7.3vw, 2.15rem);
  }

  .about-v3-founder-portrait {
    width: min(100%, 360px);
    margin: 2px 10px 10px 0;
    box-shadow: 9px 9px 0 var(--ap-cobalt);
  }

  .about-v3-founder-copy {
    padding-left: 16px;
  }

  .about-v3-founder-proof {
    grid-template-columns: 1fr;
    margin-top: 23px;
  }

  .about-v3-founder-proof > div {
    padding: 13px 0;
  }

  .about-v3-founder-proof > div + div {
    padding-left: 0;
    border-top: 1px solid var(--ap-line);
    border-left: 0;
  }

  .about-v3-section-head {
    gap: 27px;
    margin-bottom: 38px;
  }

  .about-v3-section-head h2,
  .about-v3-shop h2,
  .about-v3-partner h2,
  .about-v3-final h2 {
    font-size: clamp(2rem, 9.5vw, 3rem);
  }

  .about-v3-principle-grid article {
    padding: 27px 24px;
  }

  .about-v3-principle-meta {
    min-height: 58px;
    margin-bottom: 28px;
    padding-bottom: 18px;
  }

  .about-v3-principle-meta > span {
    font-size: 1.28rem;
  }

  .about-v3-principle-meta > i {
    font-size: 2.35rem;
  }

  .about-v3-shop-details > div {
    min-height: 108px;
  }

  .about-v3-map {
    min-height: 430px;
  }

  .accomplus-live-map-card {
    bottom: 30px;
    left: 16px;
    width: calc(100% - 32px);
    padding: 18px;
  }

  .accomplus-live-map-card strong {
    font-size: 1.08rem;
  }

  .accomplus-live-map-card em {
    margin-top: 12px;
    font-size: .9rem;
  }

  .accomplus-live-map-placeholder {
    padding: 20px;
  }

  .accomplus-live-map-prompt {
    padding: 25px 20px;
    box-shadow: 8px 8px 0 rgba(0, 224, 255, .18);
  }

  .accomplus-live-map-prompt > i {
    width: 54px;
    height: 54px;
    margin: 17px 0 15px;
    font-size: 1.35rem;
  }

  .accomplus-live-map-prompt strong {
    font-size: clamp(1.35rem, 7vw, 1.75rem);
  }

  .accomplus-live-map-prompt button {
    width: 100%;
    margin-top: 20px;
  }

  .about-v3-partner-media {
    margin: 0 8px 8px 0;
    padding: 7px 7px 43px;
    box-shadow: 8px 8px 0 var(--ap-ink);
  }

  .about-v3-partner-media figcaption {
    right: 11px;
    bottom: 11px;
    left: 11px;
    gap: 10px;
  }

  .about-v3-partner-media figcaption span,
  .about-v3-partner-media figcaption strong {
    font-size: .61rem;
    letter-spacing: .06em;
  }
}

/* ============================================================
   Public pages v3 — shared editorial system
   ============================================================ */

:is(.contact-v3, .legal-v3, .legal-hub-v3, .location-v3, .location-hub-v3, .error-v3) .main {
  overflow: hidden;
}

:is(.location-v3, .location-hub-v3) .page-title {
  padding: 124px 0 18px;
  background: var(--ap-ink);
  border: 0;
  text-align: left;
}

:is(.location-v3, .location-hub-v3) .page-title .breadcrumbs {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 12px;
}

:is(.location-v3, .location-hub-v3) .page-title .breadcrumb {
  justify-content: flex-start;
}

:is(.location-v3, .location-hub-v3) .page-title .breadcrumb-item {
  color: rgba(255, 255, 255, .54);
  font-family: "Manrope", system-ui, sans-serif;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
}

:is(.location-v3, .location-hub-v3) .page-title .breadcrumb-item.active {
  color: var(--ap-cyan);
}

:is(.location-v3, .location-hub-v3) .page-title .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, .3);
}

body:is(.location-v3, .location-hub-v3, .legal-v3, .legal-hub-v3) .page-title .breadcrumbs .breadcrumb .breadcrumb-item {
  color: rgba(255, 255, 255, .58);
}

body:is(.location-v3, .location-hub-v3, .legal-v3, .legal-hub-v3) .page-title .breadcrumbs .breadcrumb .breadcrumb-item a {
  color: inherit;
}

body:is(.location-v3, .location-hub-v3, .legal-v3, .legal-hub-v3) .page-title .breadcrumbs .breadcrumb .breadcrumb-item a:hover,
body:is(.location-v3, .location-hub-v3, .legal-v3, .legal-hub-v3) .page-title .breadcrumbs .breadcrumb .breadcrumb-item.active {
  color: var(--ap-cyan);
}

body:is(.location-v3, .location-hub-v3, .legal-v3, .legal-hub-v3) .page-title .breadcrumbs .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, .34);
}

/* Contact */
.contact-v3 .contact {
  position: relative;
  padding: 156px 0 clamp(88px, 9vw, 132px);
  overflow: hidden;
  background: var(--ap-paper);
}

.contact-v3 .contact::before {
  position: absolute;
  inset: 0 0 auto;
  height: 500px;
  background: var(--ap-ink);
  content: "";
}

.contact-v3 .contact > .section-title {
  position: relative;
  z-index: 1;
  max-width: 1320px;
  margin-bottom: 58px;
  padding: 0 12px;
  text-align: left;
}

.contact-v3 .contact > .section-title .subtitle {
  color: var(--ap-cyan);
  font-family: "Manrope", system-ui, sans-serif;
  font-size: .76rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.contact-v3 .contact > .section-title h1 {
  max-width: 880px;
  margin: 20px 0 24px;
  color: var(--ap-white);
  font-size: clamp(2.8rem, 4.6vw, 4.7rem);
  font-weight: 800;
  letter-spacing: -.06em;
  line-height: .98;
}

.contact-v3 .contact > .section-title p {
  max-width: 730px;
  margin: 0;
  color: rgba(255, 255, 255, .7);
  font-size: 1.06rem;
  line-height: 1.72;
}

.contact-v3 .contact > .container:not(.section-title) {
  position: relative;
  z-index: 2;
}

.contact-v3 .contact > .container > .row {
  --bs-gutter-x: 1px;
  --bs-gutter-y: 1px;
  margin: 0;
  padding: 1px;
  background: var(--ap-ink);
}

.contact-v3 .contact > .container > .row > [class*="col-"] {
  padding: 0;
}

.contact-v3 .contact > .container > .row > .col-lg-5 {
  padding: clamp(32px, 5vw, 56px);
  background: var(--ap-cobalt);
  color: var(--ap-white);
}

.contact-v3 .contact .info-item {
  display: block;
  margin: 0 0 26px;
}

.contact-v3 .contact .info-icon {
  width: 50px;
  height: 50px;
  margin: 0 0 26px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .55);
  border-radius: 0;
  background: transparent;
}

.contact-v3 .contact .info-icon i {
  color: var(--ap-cyan-on-blue);
  font-size: 1.3rem;
}

.contact-v3 .contact .info-content h2,
.contact-v3 .contact .info-content h4 {
  margin: 0 0 12px;
  color: var(--ap-white);
  font-size: clamp(1.65rem, 2.5vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -.04em;
}

.contact-v3 .contact .info-content p {
  color: rgba(255, 255, 255, .78);
}

.contact-v3 .contact .contact-details {
  border-top: 1px solid rgba(255, 255, 255, .3);
}

.contact-v3 .contact .detail-item {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 14px;
  margin: 0;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .2);
}

.contact-v3 .contact .detail-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 0;
  background: transparent;
}

.contact-v3 .contact .detail-icon i {
  color: var(--ap-cyan-on-blue);
}

.contact-v3 .contact .detail-label {
  display: block;
  margin-bottom: 5px;
  color: rgba(255, 255, 255, .6);
  font-family: "Manrope", system-ui, sans-serif;
  font-size: .68rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.contact-v3 .contact .detail-value {
  color: var(--ap-white);
  font-size: .97rem;
  font-weight: 700;
  line-height: 1.45;
}

body.contact-v3 .contact .contact-details .detail-item {
  border-color: rgba(255, 255, 255, .2);
}

body.contact-v3 .contact .contact-details .detail-item .detail-icon {
  border: 1px solid rgba(255, 255, 255, .42);
  border-radius: 0;
  background: transparent;
}

body.contact-v3 .contact .contact-details .detail-item .detail-icon i {
  color: var(--ap-cyan-on-blue);
}

body.contact-v3 .contact .contact-details .detail-item .detail-content .detail-label {
  color: rgba(255, 255, 255, .62);
}

body.contact-v3 .contact .contact-details .detail-item .detail-content .detail-value {
  color: var(--ap-white);
}

.contact-v3 .contact .form-wrapper {
  height: 100%;
  padding: clamp(30px, 4vw, 48px);
  border: 0;
  border-radius: 0;
  background: var(--ap-paper-bright);
  box-shadow: none;
}

.contact-v3 .contact .form-header h2,
.contact-v3 .contact .form-header h3 {
  margin: 0 0 13px;
  color: var(--ap-ink);
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -.045em;
}

.contact-v3 .contact .form-header p {
  color: var(--ap-muted);
  line-height: 1.55;
}

.contact-v3 .contact .form-header {
  margin-bottom: 30px;
}

.contact-v3 .contact .form-wrapper .form-group {
  margin-bottom: 20px;
}

.contact-v3 .contact .form-group label {
  margin-bottom: 8px;
  color: var(--ap-ink);
  font-family: "Manrope", system-ui, sans-serif;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.contact-v3 .contact .form-group input,
.contact-v3 .contact .form-group select,
.contact-v3 .contact .form-group textarea {
  border: 1px solid var(--ap-line-strong);
  border-radius: 0;
  background: var(--ap-white);
  color: var(--ap-ink);
  box-shadow: none;
}

.contact-v3 .contact .form-group input,
.contact-v3 .contact .form-group select {
  min-height: 46px;
  padding: 10px 15px;
}

.contact-v3 .contact .form-group textarea {
  min-height: 110px;
  padding: 12px 15px;
}

.contact-v3 .contact .form-group input:focus,
.contact-v3 .contact .form-group select:focus,
.contact-v3 .contact .form-group textarea:focus {
  border-color: var(--ap-cobalt);
  box-shadow: 0 0 0 3px rgba(0, 86, 210, .12);
}

.contact-v3 .contact .submit-btn {
  min-height: 52px;
  border: 0;
  border-radius: 0;
  background: var(--ap-cobalt);
  color: var(--ap-white);
  box-shadow: none;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}

.contact-v3 .contact .submit-btn:hover {
  background: var(--ap-ink);
  color: var(--ap-white);
  box-shadow: none;
}

.contact-v3 .contact-nav {
  padding: clamp(78px, 8vw, 112px) 0;
  background: var(--ap-paper-bright);
}

.contact-v3 .contact-nav .links-title {
  margin-bottom: 34px;
  color: var(--ap-ink);
  font-size: clamp(2rem, 3.7vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -.05em;
}

.contact-v3 .contact-nav .row > [class*="col-"] {
  padding: 0;
}

.contact-v3 .contact-nav .link-item {
  min-height: 260px;
  margin: 0;
  padding: 28px;
  border: 1px solid var(--ap-ink);
  border-radius: 0;
  background: var(--ap-white);
  box-shadow: none;
}

.contact-v3 .contact-nav .link-item:hover {
  background: var(--ap-ink);
  color: var(--ap-white);
  transform: none;
}

.contact-v3 .contact-nav .link-icon {
  width: 48px;
  height: 48px;
  border: 1px solid currentColor;
  border-radius: 0;
  background: transparent;
}

body.contact-v3 .contact-nav .helpful-links .link-item .link-icon {
  width: 48px;
  height: 48px;
  border: 1px solid var(--ap-ink);
  border-radius: 0;
  background: transparent;
}

body.contact-v3 .contact-nav .helpful-links .link-item .link-icon i {
  color: var(--ap-cobalt);
  font-size: 1.2rem;
}

body.contact-v3 .contact-nav .helpful-links .link-item:hover .link-icon {
  border-color: var(--ap-cyan);
  background: transparent;
}

body.contact-v3 .contact-nav .helpful-links .link-item:hover .link-icon i {
  color: var(--ap-cyan);
}

.contact-v3 .contact-nav .helpful-links .row,
.error-v3 .helpful-links .row {
  margin-right: 0;
  margin-left: 0;
}

.contact-v3 .contact-nav .link-item h3,
.contact-v3 .contact-nav .link-item h4 {
  color: inherit;
  font-weight: 800;
}

.contact-v3 .contact-nav .link-item:hover p,
.contact-v3 .contact-nav .link-item:hover .link-cta {
  color: rgba(255, 255, 255, .75);
}

/* Legal pages */
:is(.legal-v3, .legal-hub-v3) .page-title {
  position: relative;
  padding: 148px 0 clamp(66px, 7vw, 96px);
  overflow: hidden;
  border: 0;
  background: var(--ap-ink);
  color: var(--ap-white);
  text-align: left;
}

:is(.legal-v3, .legal-hub-v3) .page-title::after {
  position: absolute;
  top: -35%;
  right: -9%;
  width: 43%;
  height: 170%;
  background: linear-gradient(145deg, rgba(0, 86, 210, .55), rgba(22, 199, 243, .04));
  content: "";
  transform: skewX(-13deg);
}

:is(.legal-v3, .legal-hub-v3) .page-title .title-wrapper,
:is(.legal-v3, .legal-hub-v3) .page-title .breadcrumbs {
  position: relative;
  z-index: 1;
  max-width: 1320px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 12px;
  padding-left: 12px;
}

:is(.legal-v3, .legal-hub-v3) .page-title .title-wrapper {
  padding-top: 28px;
  padding-bottom: 0;
  text-align: left;
}

:is(.legal-v3, .legal-hub-v3) .page-title .title-wrapper h1 {
  max-width: 940px;
  margin: 0 0 22px;
  color: var(--ap-white);
  font-size: clamp(2.75rem, 4.4vw, 4.55rem);
  font-weight: 800;
  letter-spacing: -.06em;
  line-height: .99;
}

:is(.legal-v3, .legal-hub-v3) .page-title .title-wrapper p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, .68);
  font-size: 1.06rem;
  line-height: 1.7;
}

:is(.legal-v3, .legal-hub-v3) .page-title .breadcrumb {
  justify-content: flex-start;
}

:is(.legal-v3, .legal-hub-v3) .page-title .breadcrumb-item {
  color: rgba(255, 255, 255, .5);
  font-family: "Manrope", system-ui, sans-serif;
  font-size: .7rem;
  font-weight: 600;
  text-transform: uppercase;
}

:is(.legal-v3, .legal-hub-v3) .page-title .breadcrumb-item.active {
  color: var(--ap-cyan);
}

:is(.legal-v3, .legal-hub-v3) .page-title .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, .3);
}

.legal-v3 .privacy-section .highlight-box,
.legal-hub-v3 .highlight-box {
  margin: 0;
  padding: clamp(30px, 5vw, 50px);
  border: 0;
  border-radius: 0;
  background: var(--ap-cobalt);
  color: var(--ap-white);
  clip-path: polygon(0 0, calc(100% - 22px) 0, 100% 22px, 100% 100%, 22px 100%, 0 calc(100% - 22px));
}

.legal-v3 .privacy-section .highlight-box i,
.legal-hub-v3 .highlight-box i {
  color: var(--ap-cyan-on-blue);
}

.legal-v3 .privacy-section .highlight-box h2,
.legal-v3 .privacy-section .highlight-box h3,
.legal-v3 .privacy-section .highlight-box h4,
.legal-hub-v3 .highlight-box h2 {
  color: var(--ap-white);
  font-size: clamp(1.7rem, 2.7vw, 2.55rem);
  font-weight: 800;
  letter-spacing: -.04em;
}

.legal-v3 .privacy-section .highlight-box p,
.legal-hub-v3 .highlight-box p {
  color: rgba(255, 255, 255, .84);
}

.legal-hub-v3 #legal-status {
  padding: clamp(70px, 8vw, 104px) 0 40px;
  background: var(--ap-paper);
}

.legal-hub-v3 #legal-documents {
  padding: 40px 0 clamp(86px, 9vw, 126px);
  background: var(--ap-paper);
}

.legal-hub-v3 #legal-documents .row {
  --bs-gutter-x: 1px;
  --bs-gutter-y: 1px;
  margin: 0;
  padding: 1px;
  background: var(--ap-ink);
}

.legal-hub-v3 #legal-documents .row > [class*="col-"] {
  padding: 0;
}

.legal-hub-v3 #legal-documents .service-item {
  min-height: 340px;
  height: 100%;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  padding: 30px;
  border: 0;
  border-radius: 0;
  background: var(--ap-paper-bright);
  box-shadow: none;
}

.legal-hub-v3 #legal-documents .service-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 46px;
  border: 1px solid var(--ap-ink);
  border-radius: 0;
  background: transparent;
}

.legal-hub-v3 #legal-documents .service-icon i {
  color: var(--ap-cobalt);
  font-size: 1.35rem;
}

.legal-hub-v3 #legal-documents .service-item h2 {
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -.03em;
}

.legal-hub-v3 #legal-documents .service-link {
  margin-top: auto;
  color: var(--ap-cobalt);
  font-weight: 800;
}

/* Location hub and city pages */
:is(.location-v3, .location-hub-v3) .hero-local {
  position: relative;
  padding: 46px 0 clamp(82px, 8vw, 112px);
  overflow: hidden;
  background: var(--ap-ink);
  color: var(--ap-white);
}

:is(.location-v3, .location-hub-v3) .hero-local::before {
  position: absolute;
  inset: 0;
  opacity: .2;
  background-image: linear-gradient(rgba(255, 255, 255, .1) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .1) 1px, transparent 1px);
  background-size: 70px 70px;
  content: "";
  mask-image: linear-gradient(90deg, #000, transparent 86%);
}

:is(.location-v3, .location-hub-v3) .hero-local .container {
  position: relative;
  z-index: 1;
}

:is(.location-v3, .location-hub-v3) .hero-local .row {
  --bs-gutter-x: clamp(44px, 7vw, 104px);
}

:is(.location-v3, .location-hub-v3) .hero-local .hero-eyebrow {
  color: var(--ap-cyan);
  font-family: "Manrope", system-ui, sans-serif;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

:is(.location-v3, .location-hub-v3) .hero-local h1 {
  max-width: 720px;
  margin: 22px 0 26px;
  color: var(--ap-white);
  font-size: clamp(2.8rem, 4.5vw, 4.7rem);
  font-weight: 800;
  letter-spacing: -.06em;
  line-height: .99;
}

:is(.location-v3, .location-hub-v3) .hero-local .hero-content > p {
  max-width: 690px;
  color: rgba(255, 255, 255, .68);
  font-size: 1.02rem;
  line-height: 1.72;
}

:is(.location-v3, .location-hub-v3) .hero-local .hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

:is(.location-v3, .location-hub-v3) .hero-local .hero-cta a {
  min-height: 50px;
  margin: 0 !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 19px;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 0;
  background: transparent;
  color: var(--ap-white);
  font-size: .92rem;
  font-weight: 800;
  text-decoration: none;
}

:is(.location-v3, .location-hub-v3) .hero-local .hero-cta a:first-child {
  border-color: var(--ap-cyan);
  background: var(--ap-cyan);
  color: var(--ap-ink);
  clip-path: polygon(0 0, calc(100% - 11px) 0, 100% 11px, 100% 100%, 11px 100%, 0 calc(100% - 11px));
}

:is(.location-v3, .location-hub-v3) .hero-local .hero-image {
  position: relative;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .4);
  border-radius: 0;
  background: transparent;
}

:is(.location-v3, .location-hub-v3) .hero-local .hero-image img {
  width: 100%;
  min-height: 470px;
  display: block;
  border-radius: 0;
  object-fit: cover;
  filter: saturate(.8) contrast(1.04);
}

:is(.location-v3, .location-hub-v3) .hero-local .floating-card {
  right: -18px;
  bottom: 30px;
  left: auto;
  min-width: 280px;
  padding: 20px;
  border: 1px solid var(--ap-ink);
  border-radius: 0;
  background: var(--ap-paper-bright);
  box-shadow: 14px 16px 0 rgba(0, 0, 0, .28);
}

:is(.location-v3, .location-hub-v3) .hero-local .floating-card .card-icon {
  border-radius: 0;
  background: var(--ap-cobalt);
}

:is(.location-v3, .location-hub-v3) > .main > .container[data-aos] {
  padding-top: 9px;
  padding-bottom: 9px;
  background: var(--ap-paper);
}

:is(.location-v3, .location-hub-v3) > .main > .container[data-aos] .image-credit,
:is(.location-v3, .location-hub-v3) > .main > .container[data-aos] .image-credit a {
  margin: 0;
  color: var(--ap-muted);
  font-size: .68rem;
}

:is(.location-v3, .location-hub-v3) .hero-local .floating-card .card-icon i {
  color: var(--ap-white);
}

:is(.location-v3, .location-hub-v3) .services,
:is(.location-v3, .location-hub-v3) .why-us {
  padding: clamp(76px, 8vw, 112px) 0;
  background: var(--ap-paper-bright);
}

:is(.location-v3, .location-hub-v3) .services.light-background {
  background: var(--ap-paper);
}

:is(.location-v3, .location-hub-v3) .section-title {
  max-width: 1040px;
  margin-bottom: 50px;
  text-align: left;
}

:is(.location-v3, .location-hub-v3) .section-title .subtitle {
  color: var(--ap-cobalt);
  font-family: "Manrope", system-ui, sans-serif;
  font-size: .73rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

:is(.location-v3, .location-hub-v3) .section-title h2 {
  max-width: 900px;
  margin: 17px 0 18px;
  color: var(--ap-ink);
  font-size: clamp(2.05rem, 3.7vw, 3.65rem);
  font-weight: 800;
  letter-spacing: -.05em;
  line-height: 1.03;
}

:is(.location-v3, .location-hub-v3) .section-title p {
  max-width: 760px;
  margin: 0;
  color: var(--ap-muted);
  line-height: 1.7;
}

:is(.location-v3, .location-hub-v3) .services > .container:not(.section-title) > .row {
  --bs-gutter-x: 1px;
  --bs-gutter-y: 1px;
  margin: 0;
  padding: 1px;
  background: var(--ap-ink);
}

:is(.location-v3, .location-hub-v3) .services > .container:not(.section-title) > .row > [class*="col-"] {
  padding: 0;
}

:is(.location-v3, .location-hub-v3) .services .service-item {
  min-height: 300px;
  height: 100%;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  padding: 29px;
  border: 0;
  border-radius: 0;
  background: var(--ap-paper-bright);
  box-shadow: none;
}

:is(.location-v3, .location-hub-v3) .services .service-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--ap-ink);
  border-radius: 0;
  background: transparent;
}

:is(.location-v3, .location-hub-v3) .services .service-icon i {
  color: var(--ap-cobalt);
}

:is(.location-v3, .location-hub-v3) .services .service-item h3 {
  color: var(--ap-ink);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -.025em;
}

:is(.location-v3, .location-hub-v3) .services .service-item p,
:is(.location-v3, .location-hub-v3) .services .service-item li {
  color: var(--ap-muted);
  line-height: 1.68;
}

:is(.location-v3, .location-hub-v3) .services .service-link {
  margin-top: auto;
  color: var(--ap-cobalt);
  font-weight: 800;
}

:is(.location-v3, .location-hub-v3) .why-us .features-grid > .row {
  --bs-gutter-x: 1px;
  --bs-gutter-y: 1px;
  margin: 0;
  padding: 1px;
  background: var(--ap-ink);
}

:is(.location-v3, .location-hub-v3) .why-us .features-grid [class*="col-"] {
  padding: 0;
}

:is(.location-v3, .location-hub-v3) .why-us .feature-item {
  min-height: 280px;
  height: 100%;
  padding: 30px;
  border: 0;
  border-radius: 0;
  background: var(--ap-paper);
  box-shadow: none;
}

:is(.location-v3, .location-hub-v3) .why-us .icon-wrapper {
  border-radius: 0;
  background: var(--ap-cobalt);
}

body:is(.location-v3, .location-hub-v3) .why-us .features-grid .feature-item .icon-wrapper {
  border-radius: 0;
  background: var(--ap-cobalt);
}

:is(.location-v3, .location-hub-v3) .cta-section {
  padding: clamp(72px, 8vw, 104px) 0;
  background: var(--ap-cobalt);
}

:is(.location-v3, .location-hub-v3) .cta-section .cta-title {
  color: var(--ap-white);
  font-size: clamp(2.25rem, 4.2vw, 4.1rem);
  font-weight: 800;
  letter-spacing: -.055em;
  line-height: 1;
}

:is(.location-v3, .location-hub-v3) .cta-section .cta-text {
  color: rgba(255, 255, 255, .78);
}

:is(.location-v3, .location-hub-v3) .cta-section .cta-btn {
  min-height: 50px;
  margin: 5px !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 19px;
  border: 1px solid rgba(255, 255, 255, .45);
  border-radius: 0;
  background: transparent;
  color: var(--ap-white);
  box-shadow: none;
}

:is(.location-v3, .location-hub-v3) .cta-section .cta-btn:first-child {
  border-color: var(--ap-white);
  background: var(--ap-white);
  color: var(--ap-ink);
}

/* Error pages */
.error-v3 .error-404 {
  min-height: 100vh;
  padding: 156px 0 clamp(86px, 9vw, 126px);
  background: var(--ap-ink);
  color: var(--ap-white);
}

.error-v3 [data-aos] {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

.error-v3 .error-content .error-number {
  margin: 0 0 14px;
  color: var(--ap-cyan);
  font-family: "Manrope", system-ui, sans-serif;
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 700;
  letter-spacing: -.08em;
  line-height: .9;
  text-shadow: none;
}

.error-v3 .error-content .error-title {
  color: var(--ap-white);
  font-size: clamp(2.8rem, 4.5vw, 4.65rem);
  font-weight: 800;
  letter-spacing: -.06em;
  line-height: .98;
}

.error-v3 .error-content .error-description {
  color: rgba(255, 255, 255, .68);
  font-size: 1.05rem;
  line-height: 1.72;
}

.error-v3 .error-content .error-actions a {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border: 1px solid rgba(255, 255, 255, .4);
  border-radius: 0;
  background: transparent;
  color: var(--ap-white);
  box-shadow: none;
}

body.error-v3 .error-404 .error-content .error-actions .btn-primary,
body.error-v3 .error-404 .error-content .error-actions .btn-secondary {
  border-radius: 0;
  box-shadow: none;
}

body.error-v3 .error-404 .error-content .error-actions .btn-primary {
  border-color: var(--ap-cyan);
  background: var(--ap-cyan);
  color: var(--ap-ink);
}

body.error-v3 .error-404 .error-content .error-actions .btn-secondary {
  border-color: rgba(255, 255, 255, .42);
  background: transparent;
  color: var(--ap-white);
}

.error-v3 .error-content .error-actions .btn-primary {
  border-color: var(--ap-cyan);
  background: var(--ap-cyan);
  color: var(--ap-ink);
  clip-path: polygon(0 0, calc(100% - 11px) 0, 100% 11px, 100% 100%, 11px 100%, 0 calc(100% - 11px));
}

.error-v3 .helpful-links {
  margin-top: 74px;
  padding-top: 50px;
  border-top: 1px solid rgba(255, 255, 255, .24);
}

.error-v3 .helpful-links .links-title {
  color: var(--ap-white);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -.045em;
}

.error-v3 .helpful-links .row > [class*="col-"] {
  padding: 0;
}

.error-v3 .helpful-links .link-item {
  min-height: 250px;
  height: 100%;
  margin: 0;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 0;
  background: rgba(255, 255, 255, .04);
  color: var(--ap-white);
  box-shadow: none;
}

.error-v3 .helpful-links .link-item:hover {
  border-color: var(--ap-cyan);
  background: rgba(255, 255, 255, .08);
  transform: none;
}

.error-v3 .helpful-links .link-icon {
  border: 1px solid rgba(255, 255, 255, .45);
  border-radius: 0;
  background: transparent;
}

body.error-v3 .error-404 .helpful-links .link-item .link-icon {
  border: 1px solid rgba(255, 255, 255, .45);
  border-radius: 0;
  background: transparent;
}

.error-v3 .helpful-links .link-item h3,
.error-v3 .helpful-links .link-item h4 {
  color: var(--ap-white);
  font-weight: 800;
}

.error-v3 .helpful-links .link-item p,
.error-v3 .helpful-links .link-cta {
  color: rgba(255, 255, 255, .66);
}

body.error-v3 .error-404 .helpful-links .link-item .link-cta {
  color: var(--ap-cyan);
}

@media (max-width: 1199px) {
  :is(.location-v3, .location-hub-v3) .hero-local .floating-card {
    right: 16px;
  }
}

@media (max-width: 991.98px) {
  .contact-v3 .contact::before {
    height: 560px;
  }

  :is(.location-v3, .location-hub-v3) .hero-local .row {
    --bs-gutter-y: 54px;
    flex-direction: column;
  }

  :is(.location-v3, .location-hub-v3) .hero-local .hero-image {
    max-width: 700px;
  }
}

@media (max-width: 767.98px) {
  :is(.location-v3, .location-hub-v3) .page-title {
    padding: 112px 0 15px;
  }

  :is(.location-v3, .location-hub-v3) .page-title .breadcrumbs {
    padding: 0 18px;
  }

  :is(.location-v3, .location-hub-v3) .page-title .breadcrumb {
    flex-wrap: wrap;
    row-gap: 6px;
  }

  :is(.location-v3, .location-hub-v3) .page-title .breadcrumb-item {
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .contact-v3 .contact {
    padding: 130px 0 76px;
  }

  .contact-v3 .contact::before {
    height: 620px;
  }

  .contact-v3 .contact > .section-title {
    margin-bottom: 42px;
    padding: 0 20px;
  }

  .contact-v3 .contact > .section-title h1 {
    font-size: clamp(2.5rem, 11.5vw, 3.8rem);
  }

  .contact-v3 .contact > .container > .row > .col-lg-5,
  .contact-v3 .contact .form-wrapper {
    padding: 30px 24px;
  }

  .contact-v3 .contact-nav .link-item {
    min-height: 0;
  }

  :is(.legal-v3, .legal-hub-v3) .page-title {
    padding: 124px 0 66px;
  }

  :is(.legal-v3, .legal-hub-v3) .page-title .title-wrapper,
  :is(.legal-v3, .legal-hub-v3) .page-title .breadcrumbs {
    padding-right: 20px;
    padding-left: 20px;
  }

  :is(.legal-v3, .legal-hub-v3) .page-title .title-wrapper h1 {
    font-size: clamp(2.4rem, 11vw, 3.6rem);
  }

  .legal-v3 .privacy-section .highlight-box,
  .legal-hub-v3 .highlight-box,
  .legal-v3 .contact-section {
    padding: 28px 24px;
  }

  .legal-hub-v3 #legal-documents .service-item {
    min-height: 0;
  }

  :is(.location-v3, .location-hub-v3) .hero-local {
    padding: 30px 0 74px;
  }

  :is(.location-v3, .location-hub-v3) .hero-local h1 {
    font-size: clamp(2.5rem, 11.5vw, 3.85rem);
  }

  :is(.location-v3, .location-hub-v3) .hero-local .hero-cta {
    align-items: stretch;
    flex-direction: column;
  }

  :is(.location-v3, .location-hub-v3) .hero-local .hero-cta a {
    width: 100%;
  }

  :is(.location-v3, .location-hub-v3) .hero-local .hero-image img {
    min-height: 330px;
  }

  :is(.location-v3, .location-hub-v3) .hero-local .floating-card {
    right: 12px;
    bottom: 18px;
    left: 12px;
    min-width: 0;
    box-shadow: 8px 10px 0 rgba(0, 0, 0, .26);
  }

  :is(.location-v3, .location-hub-v3) .section-title h2 {
    font-size: clamp(1.95rem, 9.5vw, 3rem);
  }

  :is(.location-v3, .location-hub-v3) .services .service-item,
  :is(.location-v3, .location-hub-v3) .why-us .feature-item {
    min-height: 0;
    padding: 26px 24px;
  }

  :is(.location-v3, .location-hub-v3) .cta-section .cta-btn {
    width: 100%;
    margin: 5px 0 !important;
  }

  .error-v3 .error-404 {
    padding: 132px 0 76px;
  }

  .error-v3 .error-content .error-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .error-v3 .error-content .error-actions a {
    width: 100%;
    max-width: none;
  }

  body.error-v3 .error-404 .error-content .error-actions .btn-primary,
  body.error-v3 .error-404 .error-content .error-actions .btn-secondary {
    max-width: none;
  }

  .error-v3 .helpful-links .link-item {
    min-height: 0;
  }
}

/* Service detail v4 — editorial intervention sheet */
body.service-v4,
.service-v4-theme {
  --service-accent: var(--ap-cobalt);
  --service-accent-deep: var(--ap-cobalt-deep);
  --service-wash: #eaf2ff;
  background: var(--ap-paper-bright);
}

body.service-v4 .main {
  overflow: hidden;
  background: var(--ap-paper-bright);
}

.service-v4-hero {
  position: relative;
  padding: 152px 0 84px;
  overflow: hidden;
  border-bottom: 1px solid var(--ap-ink);
  background:
    linear-gradient(90deg, rgba(9, 17, 31, .045) 1px, transparent 1px) 0 0 / 84px 84px,
    linear-gradient(rgba(9, 17, 31, .045) 1px, transparent 1px) 0 0 / 84px 84px,
    var(--ap-paper-bright);
}

.service-v4-hero::after {
  position: absolute;
  right: -140px;
  bottom: -250px;
  width: 560px;
  height: 560px;
  border: 110px solid rgba(0, 86, 210, .065);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.service-v4-gridlines {
  position: absolute;
  top: 106px;
  right: 0;
  width: min(34vw, 510px);
  height: 4px;
  background: linear-gradient(90deg, var(--ap-cyan) 0 28%, var(--ap-cobalt) 28% 100%);
}

.service-v4-hero .container {
  position: relative;
  z-index: 1;
}

.service-v4-breadcrumbs {
  margin-bottom: 54px;
}

.service-v4-breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-v4-breadcrumbs li {
  display: inline-flex;
  align-items: center;
  color: var(--ap-muted);
  font-family: "Manrope", system-ui, sans-serif;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .075em;
  text-transform: uppercase;
}

.service-v4-breadcrumbs li:not(:last-child)::after {
  margin: 0 12px;
  color: var(--ap-line-strong);
  content: "/";
}

.service-v4-breadcrumbs a {
  color: inherit;
  text-decoration: none;
}

.service-v4-breadcrumbs a:hover,
.service-v4-breadcrumbs [aria-current="page"] {
  color: var(--service-accent);
}

.service-v4-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(340px, .76fr);
  gap: clamp(48px, 7vw, 104px);
  align-items: center;
}

.service-v4-kicker,
.service-v4-limits > span,
.service-v4-related > .container > span,
.service-v4-signature-head > span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--service-accent);
  font-family: "Manrope", system-ui, sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.service-v4-kicker::before {
  width: 30px;
  height: 2px;
  flex: 0 0 auto;
  background: currentColor;
  content: "";
}

.service-v4-hero-copy h1 {
  max-width: 14ch;
  margin: 22px 0 26px;
  color: var(--ap-ink);
  font-size: clamp(2.7rem, 4.45vw, 4rem);
  line-height: .99;
  letter-spacing: -.057em;
}

.service-v4-hero-copy > p {
  max-width: 760px;
  margin: 0;
  color: #3f4a5c;
  font-size: clamp(1.04rem, 1.35vw, 1.18rem);
  line-height: 1.75;
}

.service-v4-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 32px;
}

.service-v4-button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 0;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
  font-size: .9rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.service-v4-button:hover {
  transform: translateY(-2px);
}

.service-v4-button-primary {
  background: var(--service-accent);
  color: var(--ap-white);
}

.service-v4-button-primary:hover {
  background: var(--service-accent-deep);
  color: var(--ap-white);
}

.service-v4-button-secondary {
  border-color: var(--ap-ink);
  background: transparent;
  color: var(--ap-ink);
}

.service-v4-button-secondary:hover {
  border-color: var(--service-accent);
  color: var(--service-accent);
}

.service-v4-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 44px 0 0;
  border-top: 1px solid var(--ap-line-strong);
  border-bottom: 1px solid var(--ap-line-strong);
}

.service-v4-facts > div {
  padding: 17px 17px 18px 0;
}

.service-v4-facts > div + div {
  padding-left: 17px;
  border-left: 1px solid var(--ap-line);
}

.service-v4-facts dt {
  margin-bottom: 7px;
  color: var(--service-accent);
  font-family: "Manrope", system-ui, sans-serif;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.service-v4-facts dd {
  margin: 0;
  color: var(--ap-ink);
  font-size: .82rem;
  font-weight: 750;
  line-height: 1.45;
}

.service-v4-signature {
  position: relative;
  padding: 0;
  border: 1px solid var(--ap-ink);
  background: rgba(255, 254, 250, .94);
  box-shadow: 14px 16px 0 var(--service-accent);
}

.service-v4-signature::before {
  position: absolute;
  top: -1px;
  left: -1px;
  width: 76px;
  height: 5px;
  background: var(--ap-cyan);
  content: "";
}

.service-v4-signature-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 25px 17px;
  border-bottom: 1px solid var(--ap-line);
}

.service-v4-signature-head i {
  color: var(--service-accent);
  font-size: 1.2rem;
}

.service-v4-signature > strong {
  display: block;
  max-width: 25ch;
  padding: 23px 25px 20px;
  color: var(--ap-ink);
  font-size: clamp(1.3rem, 2vw, 1.65rem);
  line-height: 1.25;
  letter-spacing: -.03em;
}

.service-v4-signature ol {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--ap-ink);
}

.service-v4-signature li {
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  min-height: 74px;
  border-bottom: 1px solid var(--ap-line);
}

.service-v4-signature li > span {
  display: grid;
  place-items: center;
  border-right: 1px solid var(--ap-line);
  color: var(--service-accent);
  font-family: "Manrope", system-ui, sans-serif;
  font-size: .86rem;
  font-weight: 700;
}

.service-v4-signature li > div {
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 13px 18px;
}

.service-v4-signature li b {
  color: var(--ap-ink);
  font-size: .94rem;
}

.service-v4-signature li small {
  color: var(--ap-muted);
  font-size: .76rem;
  line-height: 1.4;
}

.service-v4-signature > p {
  margin: 0;
  padding: 16px 25px 19px;
  color: var(--ap-muted);
  font-size: .76rem;
  line-height: 1.55;
}

.service-v4-hero-media {
  position: relative;
  margin: 0;
  border: 1px solid var(--ap-ink);
  background: var(--ap-ink);
  box-shadow: 14px 16px 0 var(--service-accent);
  clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 24px, 100% 100%, 24px 100%, 0 calc(100% - 24px));
}

.service-v4-hero-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  display: block;
  object-fit: cover;
  opacity: .88;
}

.service-v4-hero-media figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: grid;
  gap: 5px;
  padding: 16px 18px;
  background: rgba(255, 254, 250, .95);
  color: var(--ap-ink);
}

.service-v4-hero-media figcaption span {
  color: var(--service-accent);
  font: 700 .65rem/1.3 "Manrope", system-ui, sans-serif;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.service-v4-hero-media figcaption strong {
  font-size: .91rem;
  line-height: 1.45;
}

.service-v4-section {
  padding: clamp(76px, 8vw, 112px) 0;
}

.service-v4-two-columns {
  display: grid;
  grid-template-columns: minmax(260px, .72fr) minmax(0, 1.28fr);
  gap: clamp(54px, 8vw, 120px);
  align-items: start;
}

.service-v4-section-heading h2,
.service-v4-wide-heading h2,
.service-v4-clarity h2,
.service-v4-final h2 {
  margin: 17px 0 0;
  color: var(--ap-ink);
  font-size: clamp(1.95rem, 3.25vw, 2.75rem);
  line-height: 1.07;
  letter-spacing: -.045em;
}

.service-v4-section-heading > p,
.service-v4-wide-heading > div > p {
  margin: 22px 0 0;
  color: var(--ap-muted);
  line-height: 1.75;
}

.service-v4-index-list,
.service-v4-process-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--ap-ink);
  list-style: none;
}

.service-v4-index-list li {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 23px;
  padding: 27px 0;
  border-bottom: 1px solid var(--ap-line);
}

.service-v4-index-list li > span,
.service-v4-process-list li > span {
  color: var(--service-accent);
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1;
}

.service-v4-index-list h3,
.service-v4-process-list h3,
.service-v4-scope-grid h3 {
  margin: 0;
  color: var(--ap-ink);
  font-size: 1.08rem;
  line-height: 1.35;
  letter-spacing: -.018em;
}

.service-v4-index-list p,
.service-v4-process-list p,
.service-v4-scope-grid p {
  margin: 8px 0 0;
  color: var(--ap-muted);
  font-size: .91rem;
  line-height: 1.7;
}

.service-v4-scope {
  border-top: 1px solid var(--ap-ink);
  border-bottom: 1px solid var(--ap-ink);
  background: var(--service-wash);
}

.service-v4-wide-heading {
  margin-bottom: 50px;
}

.service-v4-wide-heading > div {
  max-width: 920px;
}

.service-v4-wide-heading > div > p {
  max-width: 720px;
}

.service-v4-scope-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--ap-ink);
  border-left: 1px solid var(--ap-ink);
  background: transparent;
}

.service-v4-scope-grid article {
  position: relative;
  min-height: 252px;
  padding: 27px 28px 30px;
  border-right: 1px solid var(--ap-ink);
  border-bottom: 1px solid var(--ap-ink);
  background: rgba(255, 254, 250, .8);
}

.service-v4-scope-grid article > span {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  background: var(--service-accent);
  color: var(--ap-white);
  font: 700 1rem/1 "Manrope", system-ui, sans-serif;
  letter-spacing: .05em;
}

/* Accent de lecture au survol, sans déplacer les cellules non cliquables. */
@media (hover: hover) and (pointer: fine) {
  .service-v4-scope-grid article::after,
  .about-v3-principle-grid article::after,
  .privacy-v3-card-grid article::after,
  .web-v2-card-grid article::after,
  .support-v5-app-card.is-available::after {
    position: absolute;
    inset: 0;
    background: rgba(0, 86, 210, .035);
    box-shadow: inset 0 3px var(--card-hover-accent, var(--service-accent, var(--ap-cobalt)));
    opacity: 0;
    pointer-events: none;
    content: "";
  }

  .service-v4-scope-grid article:hover::after,
  .about-v3-principle-grid article:hover::after,
  .privacy-v3-card-grid article:hover::after,
  .web-v2-card-grid article:hover::after,
  .support-v5-app-card.is-available:hover::after {
    opacity: 1;
  }
}

@media (hover: hover) and (pointer: fine) and (prefers-reduced-motion: no-preference) {
  .service-v4-scope-grid article::after,
  .about-v3-principle-grid article::after,
  .privacy-v3-card-grid article::after,
  .web-v2-card-grid article::after,
  .support-v5-app-card.is-available::after {
    transition: opacity 180ms ease;
  }
}

.service-v4-scope-grid article > i {
  position: absolute;
  top: 34px;
  right: 28px;
  color: var(--service-accent);
  font-size: 1.95rem;
  line-height: 1;
}

.service-v4-scope-grid h3 {
  margin-top: 30px;
  font-size: 1.15rem;
}

.service-v4-process {
  background: var(--ap-paper-bright);
}

.service-v4-process-list li {
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr);
  gap: 22px;
  padding: 28px 0;
  border-bottom: 1px solid var(--ap-line);
}

.service-v4-faq {
  padding-top: 36px;
  background: var(--ap-paper-bright);
}

.service-v4-faq .service-v4-section-heading {
  margin-bottom: 24px;
}

.service-v4-faq details {
  border-top: 1px solid var(--ap-line);
}

.service-v4-faq details:last-child {
  border-bottom: 1px solid var(--ap-line);
}

.service-v4-faq summary {
  padding: 20px 0;
  color: var(--ap-ink);
  font-weight: 700;
  cursor: pointer;
}

.service-v4-faq summary::marker {
  color: var(--service-accent);
}

.service-v4-faq summary:focus-visible {
  outline: 2px solid var(--service-accent);
  outline-offset: 4px;
}

.service-v4-faq details > p {
  max-width: 880px;
  margin: 0 0 24px;
  color: var(--ap-muted);
  line-height: 1.75;
}

.service-v4-clarity {
  background: var(--ap-paper-bright);
}

.service-v4-clarity-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.24fr) minmax(310px, .76fr);
  border: 1px solid var(--ap-ink);
}

.service-v4-result,
.service-v4-limits {
  padding: clamp(34px, 5vw, 62px);
}

.service-v4-result {
  background: var(--ap-ink);
  color: var(--ap-white);
}

.service-v4-result .service-v4-kicker {
  color: var(--ap-cyan);
}

.service-v4-result h2,
.service-v4-final h2 {
  color: var(--ap-white);
}

.service-v4-result > p {
  max-width: 680px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, .68);
  line-height: 1.75;
}

.service-v4-result ul {
  display: grid;
  gap: 12px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.service-v4-result li {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  color: rgba(255, 255, 255, .88);
  line-height: 1.55;
}

.service-v4-result li::before {
  margin-top: 0;
  color: var(--ap-cyan);
  font-family: "accomplus-icons";
  content: "\f26a";
}

.service-v4-limits {
  display: flex;
  justify-content: center;
  flex-direction: column;
  border-left: 1px solid var(--ap-ink);
  background: var(--ap-cyan);
}

.service-v4-limits > span {
  color: var(--ap-ink);
}

.service-v4-limits h2 {
  font-size: clamp(1.7rem, 2.6vw, 2.35rem);
}

.service-v4-limits p {
  margin: 19px 0 0;
  color: rgba(9, 17, 31, .76);
  font-size: .91rem;
  line-height: 1.72;
}

.service-v4-related {
  border-top: 1px solid var(--ap-ink);
  border-bottom: 1px solid var(--ap-ink);
  background: var(--ap-paper);
}

.service-v4-sources {
  padding: 48px 0;
  border-top: 1px solid var(--ap-ink);
  background: var(--ap-paper-bright);
}

.service-v4-sources-grid {
  display: grid;
  grid-template-columns: minmax(260px, .62fr) minmax(0, 1.38fr);
  gap: clamp(42px, 8vw, 112px);
  align-items: start;
}

.service-v4-sources h2 {
  margin: 15px 0 0;
  color: var(--ap-ink);
  font-size: clamp(1.55rem, 2.6vw, 2.15rem);
  line-height: 1.12;
  letter-spacing: -.035em;
}

.service-v4-sources ul {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--ap-ink);
  list-style: none;
}

.service-v4-sources li {
  border-bottom: 1px solid var(--ap-line);
}

.service-v4-sources a {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 3px;
  color: var(--ap-ink);
  font-size: .84rem;
  font-weight: 800;
  text-decoration: none;
}

.service-v4-sources a:hover {
  color: var(--service-accent);
}

.service-v4-related > .container {
  display: grid;
  grid-template-columns: minmax(180px, .42fr) minmax(0, 1.58fr);
  align-items: stretch;
}

.service-v4-related > .container > span {
  align-self: center;
  padding: 25px 25px 25px 0;
}

.service-v4-related > .container > div {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-left: 1px solid var(--ap-ink);
}

.service-v4-related a {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 19px 22px;
  color: var(--ap-ink);
  font-size: .85rem;
  font-weight: 800;
  text-decoration: none;
}

.service-v4-related a + a {
  border-left: 1px solid var(--ap-line-strong);
}

.service-v4-related a:hover {
  background: var(--service-accent);
  color: var(--ap-white);
}

.service-v4-final {
  position: relative;
  padding: clamp(78px, 9vw, 126px) 0;
  overflow: hidden;
  background: var(--service-accent);
  color: var(--ap-white);
}

.service-v4-final::after {
  position: absolute;
  right: -45px;
  bottom: -70px;
  width: clamp(260px, 35vw, 460px);
  background: rgba(255, 255, 255, .08);
  pointer-events: none;
  content: "";
}

.service-v4-final-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(320px, .74fr);
  gap: clamp(52px, 9vw, 130px);
  align-items: center;
}

.service-v4-final .service-v4-kicker {
  color: var(--ap-cyan-on-blue);
}

.service-v4-final p {
  margin: 0;
  color: rgba(255, 255, 255, .78);
  line-height: 1.75;
}

.service-v4-button-light {
  background: var(--ap-white);
  color: var(--service-accent-deep);
}

.service-v4-button-light:hover {
  background: var(--ap-cyan);
  color: var(--ap-ink);
}

.service-v4-button-ghost {
  border-color: rgba(255, 255, 255, .55);
  background: transparent;
  color: var(--ap-white);
}

.service-v4-button-ghost:hover {
  border-color: var(--ap-cyan);
  color: var(--ap-cyan);
}

@media (max-width: 991.98px) {
  .service-v4-hero {
    padding-top: 138px;
  }

  .service-v4-hero-layout,
  .service-v4-two-columns,
  .service-v4-final-grid {
    grid-template-columns: 1fr;
  }

  .service-v4-hero-copy h1 {
    max-width: 15ch;
  }

  .service-v4-signature,
  .service-v4-hero-media {
    width: min(100%, 680px);
    margin-left: auto;
    margin-right: auto;
  }

  .service-v4-section-heading {
    max-width: 660px;
  }

  .service-v4-scope-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-v4-clarity-grid {
    grid-template-columns: 1fr;
  }

  .service-v4-limits {
    border-top: 1px solid var(--ap-ink);
    border-left: 0;
  }

  .service-v4-related > .container {
    grid-template-columns: 1fr;
  }

  .service-v4-sources-grid {
    grid-template-columns: 1fr;
  }

  .service-v4-related > .container > span {
    padding: 22px 0;
  }

  .service-v4-related > .container > div {
    border-top: 1px solid var(--ap-ink);
    border-left: 0;
  }
}

@media (max-width: 767.98px) {
  .service-v4-hero {
    padding: 122px 0 66px;
    background:
      linear-gradient(90deg, rgba(9, 17, 31, .035) 1px, transparent 1px) 0 0 / 56px 56px,
      linear-gradient(rgba(9, 17, 31, .035) 1px, transparent 1px) 0 0 / 56px 56px,
      var(--ap-paper-bright);
  }

  .service-v4-gridlines {
    top: 94px;
    width: 46vw;
  }

  .service-v4-breadcrumbs {
    margin-bottom: 38px;
  }

  .service-v4-breadcrumbs li {
    font-size: .62rem;
  }

  .service-v4-breadcrumbs li:not(:last-child)::after {
    margin: 0 8px;
  }

  .service-v4-hero-layout {
    gap: 48px;
  }

  .service-v4-hero-copy h1 {
    margin-top: 18px;
    font-size: clamp(2.45rem, 11.2vw, 3.35rem);
  }

  .service-v4-hero-copy > p {
    font-size: .98rem;
  }

  .service-v4-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .service-v4-button {
    width: 100%;
  }

  .service-v4-facts {
    grid-template-columns: 1fr;
  }

  .service-v4-facts > div,
  .service-v4-facts > div + div {
    padding: 14px 0;
    border-left: 0;
  }

  .service-v4-facts > div + div {
    border-top: 1px solid var(--ap-line);
  }

  .service-v4-signature {
    width: calc(100% - 10px);
    margin-left: 0;
    box-shadow: 10px 11px 0 var(--service-accent);
  }

  .service-v4-signature > strong,
  .service-v4-signature-head,
  .service-v4-signature > p {
    padding-right: 20px;
    padding-left: 20px;
  }

  .service-v4-section {
    padding: 70px 0;
  }

  .service-v4-two-columns {
    gap: 40px;
  }

  .service-v4-section-heading h2,
  .service-v4-wide-heading h2,
  .service-v4-clarity h2,
  .service-v4-final h2 {
    font-size: clamp(1.9rem, 8.8vw, 2.55rem);
  }

  .service-v4-index-list li,
  .service-v4-process-list li {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 14px;
    padding: 23px 0;
  }

  .service-v4-index-list li > span,
  .service-v4-process-list li > span {
    font-size: 1.15rem;
  }

  .service-v4-wide-heading {
    margin-bottom: 36px;
  }

  .service-v4-scope-grid {
    grid-template-columns: 1fr;
  }

  .service-v4-scope-grid article {
    min-height: 0;
    padding: 25px;
  }

  .service-v4-scope-grid article > span {
    width: 48px;
    height: 48px;
    font-size: .96rem;
  }

  .service-v4-scope-grid article > i {
    top: 31px;
    right: 25px;
    font-size: 1.8rem;
  }

  .service-v4-scope-grid h3 {
    margin-top: 27px;
  }

  .service-v4-result,
  .service-v4-limits {
    padding: 32px 24px;
  }

  .service-v4-related > .container > div {
    grid-template-columns: 1fr;
  }

  .service-v4-related a + a {
    border-top: 1px solid var(--ap-line-strong);
    border-left: 0;
  }

  .service-v4-final {
    padding: 74px 0;
  }

  .service-v4-final-grid {
    gap: 34px;
  }
}

/* Service hubs v4 — audience routing and editorial catalog */
body.hub-v4 {
  background: var(--ap-paper-bright);
}

.hub-v4-hero .service-v4-hero-copy h1 {
  max-width: 15ch;
}

.hub-v4-catalog {
  padding: clamp(82px, 9vw, 126px) 0;
  background: var(--ap-paper-bright);
}

/* Orientation Services : trois entrées directes, sans sous-catalogue. */
.service-paths {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-path {
  --path-ink: var(--ap-ink);
  --path-muted: var(--ap-muted);
  --path-accent: var(--ap-cobalt);
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: clamp(24px, 2.7vw, 38px);
  border: 1px solid var(--ap-ink);
  background: var(--ap-paper);
  color: var(--path-ink);
  text-decoration: none;
  transition: box-shadow 180ms ease;
}

.service-path:nth-child(3n + 1) {
  --path-ink: var(--ap-white);
  --path-muted: var(--ap-cyan-on-blue);
  --path-accent: var(--ap-white);
  background: var(--ap-cobalt);
  border-color: var(--ap-cobalt);
}

.service-path:nth-child(3n) {
  --path-ink: var(--ap-white);
  --path-muted: #c0cddd;
  --path-accent: var(--ap-cyan);
  background: var(--ap-ink);
}

.service-path:hover {
  color: var(--path-ink);
  box-shadow: inset 0 -4px var(--path-accent);
}

.service-path:focus-visible {
  outline: 3px solid var(--ap-cobalt);
  outline-offset: 5px;
}

.service-path-marker {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  color: var(--path-accent);
}

.service-path-marker > span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid currentColor;
  font-size: 1.1rem;
  font-weight: 800;
}

.service-path-marker > i { font-size: 1.8rem; }
.service-path > small {
  color: var(--path-accent);
  font-size: .68rem;
  font-weight: 750;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.service-path > h3 {
  margin: 12px 0 24px;
  color: var(--path-ink);
  font-size: clamp(1.65rem, 2.4vw, 2.15rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.045em;
}
.service-path > strong { line-height: 1.5; }
.service-path > p {
  margin: 12px 0 30px;
  color: var(--path-muted);
  font-size: .92rem;
  line-height: 1.7;
}
.service-path-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid currentColor;
  color: var(--path-accent);
  font-size: .85rem;
  font-weight: 800;
}
.service-path-link > i { flex-shrink: 0; }

/* Variante catalogue : six services, palette claire et catégories discrètes. */
.service-paths--catalog {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.service-paths--catalog .service-path {
  --path-ink: var(--ap-ink);
  --path-muted: var(--ap-muted);
  --path-accent: var(--ap-cobalt);
  border-color: var(--ap-line-strong);
  background: var(--ap-paper-bright);
}

.service-paths--catalog .service-path:hover {
  border-color: var(--ap-cobalt);
}

.service-paths--catalog .service-path-marker {
  margin-bottom: 22px;
}

.service-paths--catalog .service-path-marker > span {
  background: var(--ap-paper);
}

.service-paths--catalog .service-path-marker > i {
  color: var(--ap-cobalt);
}

.service-paths--catalog .service-path > h3 {
  margin-bottom: 18px;
}

.service-paths--catalog .service-path-link {
  border-color: var(--ap-line-strong);
}

.hub-v4-catalog--cards .hub-v4-section-heading {
  margin-bottom: 40px;
}

.hub-v4-catalog--cards .hub-v4-section-heading h2 {
  font-weight: 800;
}

@media (max-width: 991.98px) {
  .service-paths { grid-template-columns: 1fr; }
  .service-paths--catalog { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-path-marker { margin-bottom: 20px; }
  .service-path > h3 { margin-bottom: 16px; }
}

@media (max-width: 767.98px) {
  .service-paths--catalog { grid-template-columns: 1fr; gap: 16px; }
}

.hub-v4-section-heading {
  max-width: 920px;
  margin-bottom: clamp(54px, 7vw, 84px);
}

.hub-v4-section-heading h2,
.hub-v4-practical h2 {
  margin: 18px 0 0;
  color: var(--ap-ink);
  font-size: clamp(2.1rem, 3.7vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -.048em;
}

.hub-v4-section-heading > p,
.hub-v4-practical header > p {
  max-width: 720px;
  margin: 22px 0 0;
  color: var(--ap-muted);
  line-height: 1.75;
}

.hub-v4-groups {
  border-top: 1px solid var(--ap-ink);
}

.hub-v4-group {
  display: grid;
  grid-template-columns: minmax(230px, .5fr) minmax(0, 1.5fr);
  border-bottom: 1px solid var(--ap-ink);
}

.hub-v4-group > header {
  padding: 42px clamp(30px, 4.5vw, 70px) 42px 0;
}

.hub-v4-group > header > span {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 32px;
  background: var(--service-accent);
  color: var(--ap-white);
  font: 700 1rem/1 "Manrope", system-ui, sans-serif;
}

.hub-v4-group > header small,
.hub-v4-card > small {
  color: var(--service-accent);
  font: 700 .69rem/1.4 "Manrope", system-ui, sans-serif;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.hub-v4-group > header h3 {
  margin: 12px 0 0;
  color: var(--ap-ink);
  font-size: clamp(1.55rem, 2.5vw, 2.15rem);
  line-height: 1.12;
  letter-spacing: -.038em;
}

.hub-v4-group > header p {
  margin: 18px 0 0;
  color: var(--ap-muted);
  font-size: .9rem;
  line-height: 1.72;
}

.hub-v4-group.is-wide {
  grid-template-columns: 1fr;
}

.hub-v4-group.is-wide > header {
  max-width: 850px;
  padding-bottom: 50px;
}

.hub-v4-card-grid {
  border-left: 1px solid var(--ap-ink);
}

.hub-v4-group.is-wide .hub-v4-card-grid {
  border-top: 1px solid var(--ap-ink);
  border-left: 0;
}

.hub-v4-card {
  min-height: 210px;
  display: grid;
  grid-template-columns: 74px minmax(180px, .72fr) minmax(0, 1.28fr);
  grid-template-rows: auto 1fr auto;
  gap: 8px 28px;
  padding: 32px;
  border-bottom: 1px solid var(--ap-line-strong);
  background: var(--ap-paper-bright);
  color: var(--ap-ink);
  text-decoration: none;
  transition: background-color 180ms ease, color 180ms ease;
}

.hub-v4-card:last-child {
  border-bottom: 0;
}

.hub-v4-card-marker {
  grid-column: 1;
  grid-row: 1 / 4;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 28px;
}

.hub-v4-card-marker span {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  background: var(--service-accent);
  color: var(--ap-white);
  font: 700 1rem/1 "Manrope", system-ui, sans-serif;
}

.hub-v4-card-marker i {
  color: var(--service-accent);
  font-size: 1.85rem;
  line-height: 1;
}

.hub-v4-card > small {
  grid-column: 2;
  grid-row: 1;
}

.hub-v4-card h4 {
  grid-column: 2;
  grid-row: 2 / 4;
  align-self: start;
  margin: 0;
  color: inherit;
  font-size: clamp(1.25rem, 1.8vw, 1.6rem);
  line-height: 1.2;
  letter-spacing: -.032em;
}

.hub-v4-card > strong {
  grid-column: 3;
  grid-row: 1;
  color: inherit;
  font-size: .94rem;
  line-height: 1.45;
}

.hub-v4-card > p {
  grid-column: 3;
  grid-row: 2;
  margin: 2px 0 0;
  color: var(--ap-muted);
  font-size: .88rem;
  line-height: 1.68;
}

.hub-v4-card-link {
  grid-column: 3;
  grid-row: 3;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--service-accent);
  font-size: .82rem;
  font-weight: 800;
}

.hub-v4-card:hover {
  background: var(--service-accent);
  color: var(--ap-white);
}

.hub-v4-card:hover :is(.hub-v4-card-marker i, .hub-v4-card > small, .hub-v4-card-link) {
  color: var(--ap-cyan-on-blue);
}

.hub-v4-card:hover .hub-v4-card-marker span {
  background: var(--ap-white);
  color: var(--service-accent);
}

.hub-v4-card:hover > p {
  color: rgba(255, 255, 255, .78);
}

.hub-v4-practical {
  padding: clamp(76px, 8.5vw, 116px) 0;
  border-top: 1px solid var(--ap-ink);
  border-bottom: 1px solid var(--ap-ink);
  background: var(--service-wash);
}

.hub-v4-practical-layout {
  display: grid;
  grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr);
  gap: clamp(54px, 9vw, 130px);
  align-items: start;
}

.hub-v4-practical-list {
  border-top: 1px solid var(--ap-ink);
}

.hub-v4-practical-list article {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 22px;
  padding: 27px 0;
  border-bottom: 1px solid var(--ap-line-strong);
}

.hub-v4-practical-list article > i {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  background: var(--service-accent);
  color: var(--ap-white);
  font-size: 1.45rem;
}

.hub-v4-practical-list h3 {
  margin: 0;
  color: var(--ap-ink);
  font-size: 1rem;
  line-height: 1.4;
}

.hub-v4-practical-list p {
  margin: 7px 0 0;
  color: var(--ap-muted);
  font-size: .87rem;
  line-height: 1.67;
}

/* Matériel et suivi : un parcours ouvert, distinct des cartes du catalogue. */
.hub-v4-practical--steps {
  padding: clamp(56px, 6vw, 84px) 0;
  border-color: var(--ap-line);
  background: var(--ap-paper);
}

.hub-v4-practical--steps .hub-v4-practical-layout {
  grid-template-columns: 1fr;
  gap: 0;
}

.hub-v4-practical--steps header { max-width: 880px; }
.hub-v4-practical--steps h2 { font-weight: 800; }
.hub-v4-practical--steps header > p { max-width: 780px; }
.hub-v4-practical--steps .service-v4-actions { margin-top: 32px; }

.equipment-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 40px 0 0;
  padding: 28px 0 0;
  border-top: 1px solid var(--ap-line-strong);
  list-style: none;
}

.equipment-steps > li { min-width: 0; padding: 0 30px; }
.equipment-steps > li:first-child { padding-left: 0; }
.equipment-steps > li:last-child { padding-right: 0; }
.equipment-steps > li + li { border-left: 1px solid var(--ap-line); }
.equipment-step-number {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border: 1px solid var(--ap-cobalt);
  color: var(--ap-cobalt);
  font-size: .95rem;
  font-weight: 800;
}
.equipment-steps h3 {
  margin: 0 0 12px;
  color: var(--ap-ink);
  font-size: clamp(1.35rem, 2vw, 1.65rem);
  font-weight: 800;
  letter-spacing: -.03em;
}
.equipment-steps p {
  margin: 0;
  color: var(--ap-muted);
  font-size: .95rem;
  line-height: 1.7;
}

.equipment-steps--method {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px 48px;
  padding-top: 0;
  border-top: 0;
}

.equipment-steps--method > li,
.equipment-steps--method > li + li {
  padding: 24px 0 0;
  border-left: 0;
  border-top: 1px solid var(--ap-line-strong);
}

@media (max-width: 767.98px) {
  .equipment-steps { grid-template-columns: 1fr; padding-top: 0; margin-top: 28px; }
  .equipment-steps > li { padding: 24px 0; }
  .equipment-steps > li + li { border-left: 0; border-top: 1px solid var(--ap-line); }
  .equipment-steps > li:last-child { padding-bottom: 0; }
}

@media (max-width: 991.98px) {
  .hub-v4-group,
  .hub-v4-practical-layout {
    grid-template-columns: 1fr;
  }

  .hub-v4-group > header {
    max-width: 760px;
    padding-right: 0;
  }

  .hub-v4-card-grid {
    border-top: 1px solid var(--ap-ink);
    border-left: 0;
  }
}

@media (max-width: 767.98px) {
  .hub-v4-catalog {
    padding: 70px 0;
  }

  .hub-v4-section-heading {
    margin-bottom: 46px;
  }

  .hub-v4-section-heading h2,
  .hub-v4-practical h2 {
    font-size: clamp(1.95rem, 9vw, 2.55rem);
  }

  .hub-v4-group > header,
  .hub-v4-group.is-wide > header {
    padding: 34px 0;
  }

  .hub-v4-group > header > span {
    width: 48px;
    height: 48px;
    margin-bottom: 26px;
  }

  .hub-v4-card {
    min-height: 0;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 0;
    padding: 27px 24px;
  }

  .hub-v4-card-marker {
    grid-column: 1;
    grid-row: auto;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    margin-bottom: 27px;
  }

  .hub-v4-card > small,
  .hub-v4-card h4,
  .hub-v4-card > strong,
  .hub-v4-card > p,
  .hub-v4-card-link {
    grid-column: 1;
    grid-row: auto;
  }

  .hub-v4-card h4 {
    margin-top: 10px;
  }

  .hub-v4-card > strong {
    margin-top: 21px;
  }

  .hub-v4-card > p {
    margin-top: 9px;
  }

  .hub-v4-card-link {
    margin-top: 24px;
  }

  .hub-v4-practical {
    padding: 70px 0;
  }

  .hub-v4-practical-layout {
    gap: 44px;
  }
}

/* ============================================================
   Assistance portal v5 — actions directes et téléchargements
   ============================================================ */

body.assistance-portal-v5 {
  background: var(--ap-paper-bright);
}

.assistance-portal-v5 .main {
  overflow: clip;
}

.support-v5-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ap-cobalt);
  font: 700 .69rem/1.4 "Manrope", system-ui, sans-serif;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.support-v5-kicker::before {
  width: 30px;
  height: 2px;
  flex: 0 0 auto;
  background: currentColor;
  content: "";
}

.support-v5-hero {
  position: relative;
  isolation: isolate;
  padding: clamp(146px, 10.5vw, 166px) 0 clamp(76px, 8vw, 104px);
  overflow: hidden;
  border-bottom: 1px solid var(--ap-ink);
  background: var(--ap-paper-bright);
}

.support-v5-gridlines {
  position: absolute;
  z-index: -2;
  inset: 0;
  opacity: .68;
  background-image:
    linear-gradient(90deg, rgba(9, 17, 31, .045) 1px, transparent 1px),
    linear-gradient(rgba(9, 17, 31, .045) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, #000, rgba(0, 0, 0, .2));
}

.support-v5-hero::after {
  position: absolute;
  z-index: -1;
  top: 100px;
  right: -160px;
  width: 470px;
  height: 470px;
  border: 1px solid rgba(0, 86, 210, .2);
  border-radius: 50%;
  content: "";
}

.support-v5-breadcrumbs {
  margin-bottom: clamp(38px, 4vw, 54px);
}

.support-v5-heading,
.support-v5-download-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(310px, .65fr);
  align-items: end;
  gap: clamp(45px, 8vw, 112px);
}

.support-v5-heading h1 {
  margin: 18px 0 0;
  color: var(--ap-ink);
  font-size: clamp(2.8rem, 5.3vw, 5rem);
  font-weight: 800;
  letter-spacing: -.065em;
  line-height: .96;
}

.support-v5-heading > p,
.support-v5-download-heading > p {
  margin: 0;
  padding-left: 24px;
  border-left: 2px solid var(--ap-cyan);
  color: var(--ap-muted);
  font-size: .96rem;
  line-height: 1.73;
}

.support-v5-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(48px, 6vw, 72px);
  border-top: 1px solid var(--ap-ink);
  border-left: 1px solid var(--ap-ink);
}

.support-v5-contact-card {
  min-width: 0;
  min-height: 328px;
  display: flex;
  align-items: stretch;
  flex-direction: column;
  border-right: 1px solid var(--ap-ink);
  border-bottom: 1px solid var(--ap-ink);
  background: rgba(255, 254, 250, .92);
  color: var(--ap-ink);
  text-decoration: none;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.support-v5-contact-card:hover {
  position: relative;
  z-index: 1;
  background: var(--ap-cyan);
  color: var(--ap-ink);
}

.support-v5-contact-card:focus-visible,
.support-v5-app-card:focus-visible {
  position: relative;
  z-index: 2;
  outline: 3px solid var(--ap-cyan);
  outline-offset: -4px;
}

.support-v5-contact-card.is-primary {
  background: var(--ap-cobalt);
  color: var(--ap-white);
}

.support-v5-contact-card.is-primary:hover {
  background: var(--ap-cobalt-deep);
  color: var(--ap-white);
}

.support-v5-contact-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 27px 20px;
  border-bottom: 1px solid var(--ap-line);
}

.support-v5-contact-card.is-primary .support-v5-contact-top {
  border-color: rgba(255, 255, 255, .22);
}

.support-v5-contact-top b {
  color: var(--ap-cobalt);
  font: 700 1.12rem/1 "Manrope", system-ui, sans-serif;
}

.support-v5-contact-card.is-primary .support-v5-contact-top b {
  color: var(--ap-cyan);
}

.support-v5-contact-top > i {
  color: var(--ap-cobalt);
  font-size: 2rem;
  line-height: 1;
}

.support-v5-contact-card.is-primary .support-v5-contact-top > i {
  color: var(--ap-cyan);
}

.support-v5-contact-copy {
  display: flex;
  align-items: flex-start;
  flex: 1 1 auto;
  flex-direction: column;
  padding: 27px;
}

.support-v5-contact-copy small {
  margin-bottom: 19px;
  color: var(--ap-cobalt);
  font: 700 .62rem/1.4 "Manrope", system-ui, sans-serif;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.support-v5-contact-card.is-primary .support-v5-contact-copy small {
  color: var(--ap-cyan-on-blue);
}

.support-v5-contact-copy strong {
  margin-bottom: 14px;
  font-size: clamp(1.45rem, 2.3vw, 2rem);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1.08;
}

.support-v5-contact-copy > span {
  margin-top: auto;
  color: var(--ap-muted);
  font-size: .87rem;
  line-height: 1.67;
}

.support-v5-contact-card.is-primary .support-v5-contact-copy > span {
  color: rgba(255, 255, 255, .76);
}

.support-v5-contact-action {
  min-height: 59px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 15px 27px;
  border-top: 1px solid var(--ap-ink);
  font-size: .81rem;
  font-weight: 800;
}

.support-v5-contact-card.is-primary .support-v5-contact-action {
  border-color: rgba(255, 255, 255, .3);
}

.support-v5-downloads {
  padding: clamp(80px, 9vw, 124px) 0;
  background: var(--ap-paper);
}

.support-v5-download-heading {
  margin-bottom: clamp(45px, 6vw, 68px);
}

.support-v5-download-heading h2 {
  max-width: 18ch;
  margin: 17px 0 0;
  color: var(--ap-ink);
  font-size: clamp(2.05rem, 3.5vw, 3.15rem);
  font-weight: 800;
  letter-spacing: -.052em;
  line-height: 1.03;
}

.support-v5-download-panel {
  border: 1px solid var(--ap-ink);
  background: var(--ap-ink);
}

.support-v5-app-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--ap-ink);
}

.support-v5-app-card {
  position: relative;
  min-width: 0;
  min-height: 292px;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  padding: 27px;
  background: var(--ap-paper-bright);
  color: var(--ap-ink);
  text-decoration: none;
  transition: background-color 180ms ease, color 180ms ease;
}

.support-v5-app-card.is-available:hover {
  background: var(--ap-cyan);
  color: var(--ap-ink);
}

.support-v5-app-card.is-pending {
  background:
    repeating-linear-gradient(-45deg, rgba(9, 17, 31, .025) 0, rgba(9, 17, 31, .025) 8px, transparent 8px, transparent 16px),
    #eeece6;
  color: #6b7280;
}

.support-v5-app-platform {
  color: var(--ap-cobalt);
  font: 700 .66rem/1.4 "Manrope", system-ui, sans-serif;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.support-v5-app-card.is-pending .support-v5-app-platform {
  color: #737985;
}

.support-v5-app-card > i {
  margin: 33px 0 25px;
  color: var(--ap-cobalt);
  font-size: 3rem;
  line-height: 1;
}

.support-v5-app-card.is-pending > i {
  color: #818793;
}

.support-v5-app-card > strong {
  font-size: 1.18rem;
  font-weight: 800;
  line-height: 1.28;
}

.support-v5-app-card > small {
  margin: 8px 0 25px;
  color: var(--ap-muted);
  font-size: .75rem;
  line-height: 1.5;
}

.support-v5-app-card.is-pending > small {
  color: #777d88;
}

.support-v5-app-action {
  width: 100%;
  min-height: 51px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--ap-ink);
  font-size: .76rem;
  font-weight: 800;
}

.support-v5-app-card.is-pending .support-v5-app-action {
  border-color: #a5a9b0;
}

.support-v5-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, .28);
  list-style: none;
}

.support-v5-steps li {
  min-height: 112px;
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  align-items: center;
  color: var(--ap-white);
}

.support-v5-steps li + li {
  border-left: 1px solid rgba(255, 255, 255, .18);
}

.support-v5-steps li > span {
  align-self: stretch;
  display: grid;
  place-items: center;
  border-right: 1px solid rgba(255, 255, 255, .18);
  color: var(--ap-cyan);
  font: 700 .82rem/1 "Manrope", system-ui, sans-serif;
}

.support-v5-steps li > div {
  display: grid;
  gap: 5px;
  padding: 18px;
}

.support-v5-steps strong {
  font-size: .88rem;
}

.support-v5-steps small {
  color: rgba(255, 255, 255, .6);
  font-size: .72rem;
  line-height: 1.48;
}

.support-v5-security {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  align-items: center;
  gap: 13px;
  margin: 0;
  padding: 18px 22px;
  border-top: 1px solid rgba(255, 255, 255, .22);
  color: rgba(255, 255, 255, .76);
  font-size: .78rem;
  line-height: 1.55;
}

.support-v5-security > i {
  color: var(--ap-cyan);
  font-size: 1.3rem;
}

@media (max-width: 991.98px) {
  .support-v5-heading,
  .support-v5-download-heading {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 28px;
  }

  .support-v5-heading > p,
  .support-v5-download-heading > p {
    max-width: 720px;
  }

  .support-v5-contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .support-v5-contact-card.is-primary {
    grid-column: 1 / -1;
    min-height: 290px;
  }

  .support-v5-app-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767.98px) {
  .support-v5-hero {
    padding: 122px 0 70px;
  }

  .support-v5-gridlines {
    background-size: 56px 56px;
  }

  .support-v5-hero::after {
    top: 120px;
    right: -240px;
    width: 400px;
    height: 400px;
  }

  .support-v5-breadcrumbs {
    margin-bottom: 36px;
  }

  .support-v5-heading h1 {
    font-size: clamp(2.65rem, 12vw, 3.5rem);
  }

  .support-v5-heading > p,
  .support-v5-download-heading > p {
    padding-left: 18px;
    font-size: .91rem;
  }

  .support-v5-contact-grid {
    grid-template-columns: 1fr;
    margin-top: 43px;
  }

  .support-v5-contact-card,
  .support-v5-contact-card.is-primary {
    grid-column: auto;
    min-height: 290px;
  }

  .support-v5-downloads {
    padding: 70px 0;
  }

  .support-v5-download-heading {
    margin-bottom: 40px;
  }

  .support-v5-download-heading h2 {
    font-size: clamp(1.95rem, 9vw, 2.55rem);
  }

  .support-v5-app-grid,
  .support-v5-steps {
    grid-template-columns: 1fr;
  }

  .support-v5-app-card {
    min-height: 270px;
  }

  .support-v5-steps li + li {
    border-top: 1px solid rgba(255, 255, 255, .18);
    border-left: 0;
  }

  body.assistance-portal-v5 .cookie-consent-trigger {
    right: 16px;
    left: auto;
    width: 46px;
    min-height: 46px;
    justify-content: center;
    padding: 0;
    border-radius: 0;
    font-size: 0;
  }

body.assistance-portal-v5 .cookie-consent-trigger i {
    font-size: 16px;
  }
}

/* ============================================================
   Public title scale — shared across every current public page
   ============================================================ */

.trame-hero h1,
.journal-page .journal-hero h1,
.journal-article-page .journal-article-heading h1,
.about-v3 .about-v3-hero-copy h1,
.privacy-v3 .privacy-v3-hero h1,
.web-offer-page .web-v2-hero h1,
.contact-v3 .contact > .section-title h1,
:is(.legal-v3, .legal-hub-v3) .page-title .title-wrapper h1,
:is(.location-v3, .location-hub-v3) .hero-local h1,
.service-v4 .service-v4-hero-copy h1,
.assistance-portal-v5 .support-v5-heading h1,
.error-v3 .error-content .error-title {
  font-size: var(--ap-display-h1);
  letter-spacing: -.055em;
  line-height: 1;
  text-wrap: balance;
}

.trame-section-heading h2,
.trame-shop h2,
.trame-method h2,
.trame-reform h2,
.trame-proof h2,
.trame-footer h2,
.about-v3 .about-v3-section-head h2,
.about-v3 .about-v3-shop h2,
.about-v3 .about-v3-partner h2,
.about-v3 .about-v3-final h2,
.privacy-v3 .privacy-v3-section h2,
.privacy-v3 .privacy-v3-contact h2,
.web-offer-page .v2-section-head h2,
.web-offer-page .web-v2-principle h2,
.web-offer-page .web-v2-method h2,
.web-offer-page .web-v2-editorial h2,
.web-offer-page .web-v2-final h2,
.contact-v3 .contact-nav .links-title,
:is(.location-v3, .location-hub-v3) .section-title h2,
:is(.location-v3, .location-hub-v3) .cta-section .cta-title,
.service-v4 .service-v4-section-heading h2,
.service-v4 .service-v4-wide-heading h2,
.service-v4 .service-v4-clarity h2,
.service-v4 .service-v4-final h2,
.hub-v4 .hub-v4-section-heading h2,
.hub-v4 .hub-v4-practical h2,
.assistance-portal-v5 .support-v5-download-heading h2 {
  font-size: var(--ap-display-h2);
  letter-spacing: -.045em;
  line-height: 1.08;
  text-wrap: balance;
}

@media (max-width: 767.98px) {
  :root {
    --ap-display-h1: clamp(2.25rem, 9.5vw, 2.7rem);
    --ap-display-h2: clamp(1.75rem, 7.3vw, 2.15rem);
  }
}

/* ============================================================
   Header v4 — one compact, consistent responsive navigation
   ============================================================ */

:root {
  --ap-utility-h: 28px;
  --ap-nav-h: 64px;
  --ap-header-h: calc(var(--ap-utility-h) + var(--ap-nav-h));
}

html {
  scroll-padding-top: calc(var(--ap-header-h) + 12px);
}

.trame-header {
  min-height: var(--ap-header-h);
}

.trame-utility {
  height: var(--ap-utility-h);
  font-size: .72rem;
  line-height: 1;
}

.trame-utility-inner {
  gap: 20px;
  white-space: nowrap;
}

.trame-utility a,
.trame-utility span {
  min-width: 0;
}

.trame-utility-label-short,
.trame-utility-contact-icon,
.trame-menu-label-open,
.trame-menu-label-close,
.trame-mobile-practical {
  display: none !important;
}

.trame-nav-shell {
  min-height: var(--ap-nav-h);
  gap: 20px;
}

.trame-logo {
  padding: 4px 0;
}

.trame-logo img {
  width: 190px;
  max-height: 48px;
}

.trame-utility-contact {
  gap: 7px;
}

.trame-utility-location::after {
  display: none !important;
  content: none !important;
}

@media (min-width: 1200px) {
  body.mega-nav-open::after {
    inset: var(--ap-header-h) 0 0;
  }

  .trame-nav > ul {
    gap: 0;
  }

  .trame-nav > ul > li > a,
  .trame-nav-trigger {
    min-height: 42px;
    padding: 8px 9px;
    font-size: .8rem;
  }

  .trame-nav > ul > li > a::after,
  .trame-nav-trigger::after {
    right: 9px;
    left: 9px;
  }

  .trame-nav > ul > li > a.trame-nav-cta {
    min-height: 42px;
    margin-left: 6px;
    padding: 9px 13px;
  }

  .trame-header .trame-mega-menu {
    max-height: calc(100dvh - var(--ap-header-h) - 14px);
  }

  .trame-mega-shell {
    max-height: calc(100dvh - var(--ap-header-h) - 14px);
    padding: 24px;
  }

  .trame-mega-heading {
    padding: 5px 0 19px;
  }

  .trame-mega-heading h2 {
    font-size: clamp(1.45rem, 2vw, 2rem);
  }

  .trame-mega-column,
  .trame-mega-focus {
    min-height: 248px;
    padding: 21px;
  }

  .trame-mega-column h3 {
    margin: 9px 0 14px;
  }

  .trame-header .trame-mega-column > a {
    min-height: 42px;
    padding-block: 7px;
    font-size: .84rem;
  }

  .trame-mega-focus strong {
    margin: 20px 0 10px;
    font-size: 1.25rem;
  }
}

@media (min-width: 1200px) and (max-width: 1366px) {
  .trame-logo img {
    width: 180px;
  }

  .trame-nav-shell {
    gap: 12px;
  }

  .trame-nav > ul > li > a,
  .trame-nav-trigger {
    padding-inline: 7px;
    font-size: .77rem;
  }

  .trame-nav > ul > li > a.trame-nav-cta {
    padding-inline: 11px;
  }
}

@media (max-width: 1199.98px) {
  :root {
    --ap-utility-h: 28px;
    --ap-nav-h: 62px;
  }

  .trame-utility-inner {
    gap: 14px;
  }

  .trame-header {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .trame-utility-hours,
  .trame-utility-location .trame-utility-label-long {
    display: none !important;
  }

  .trame-utility-location .trame-utility-label-short {
    display: inline-flex !important;
  }

  .trame-utility-phone {
    margin-left: auto;
  }

  .trame-logo img {
    width: 182px;
    max-height: 47px;
  }

  .trame-header .mobile-nav-toggle,
  body.mobile-nav-active .trame-header .mobile-nav-toggle {
    position: relative;
    top: auto;
    right: auto;
    z-index: 10001;
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 9px;
    width: auto;
    min-width: 88px;
    height: 42px;
    margin: 0;
    padding: 0 13px;
    border: 1px solid var(--ap-ink);
    border-radius: 0;
    background: var(--ap-ink);
    box-shadow: none;
    color: var(--ap-white);
    font: 700 .78rem/1 "Manrope", sans-serif;
    letter-spacing: .01em;
  }

  body.mobile-nav-active .trame-header .mobile-nav-toggle {
    border-color: var(--ap-cobalt);
    background: var(--ap-cobalt);
    color: var(--ap-white);
  }

  .trame-header .mobile-nav-toggle::before {
    order: 2;
    font-size: 1.1rem;
    line-height: 1;
  }

  .trame-menu-label-open {
    order: 1;
    display: inline-flex !important;
  }

  body.mobile-nav-active .trame-menu-label-open {
    display: none !important;
  }

  body.mobile-nav-active .trame-menu-label-close {
    order: 1;
    display: inline-flex !important;
  }

  .trame-header .trame-nav,
  body.mobile-nav-active .trame-header .trame-nav {
    position: fixed;
    z-index: 9996;
    inset: var(--ap-header-h) 0 0;
    display: block;
    padding: 0;
    overflow: hidden;
    background: rgba(8, 17, 31, .62);
    box-shadow: none;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    transition: opacity 220ms ease, visibility 0s linear 220ms;
  }

  body.mobile-nav-active .trame-header .trame-nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition-delay: 0s;
  }

  .trame-header .trame-nav > ul,
  body.mobile-nav-active .trame-header .trame-nav > ul {
    counter-reset: mobile-nav;
    position: absolute !important;
    inset: 0 0 0 auto !important;
    display: flex !important;
    flex-direction: column;
    align-items: stretch;
    width: min(620px, 100vw);
    max-width: none;
    max-height: none;
    margin: 0;
    padding: 18px 22px 30px;
    overflow-x: hidden;
    overflow-y: auto;
    border: 0;
    border-left: 1px solid var(--ap-line-strong);
    border-radius: 0;
    background: var(--ap-paper-bright);
    box-shadow: -30px 0 70px rgba(8, 17, 31, .2);
    opacity: 1;
    visibility: visible;
    transform: translateX(100%);
    transition: transform 220ms cubic-bezier(.2, .8, .2, 1);
    overscroll-behavior: contain;
  }

  body.mobile-nav-active .trame-header .trame-nav > ul {
    transform: translateX(0);
  }

  .trame-header .trame-nav > ul::before {
    display: block;
    padding: 2px 0 12px;
    border-bottom: 1px solid var(--ap-ink);
    color: var(--ap-muted);
    content: "Navigation principale";
    font: 600 .66rem/1.4 "Manrope", system-ui, sans-serif;
    letter-spacing: .1em;
    text-transform: uppercase;
  }

  .trame-nav > ul > li {
    width: 100%;
  }

  .trame-nav > ul > li:not(.trame-mobile-practical) {
    counter-increment: mobile-nav;
  }

  .trame-nav > ul > li:not(.trame-mobile-practical) > a,
  .trame-nav > ul > li:not(.trame-mobile-practical) > .trame-nav-trigger {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr) auto;
    align-items: center;
    gap: 11px;
    width: 100%;
    min-height: 58px;
    margin: 0;
    padding: 9px 10px 9px 0;
    border: 0;
    border-bottom: 1px solid var(--ap-line-strong);
    border-radius: 0;
    background: transparent;
    color: var(--ap-ink);
    font: 750 .98rem/1.25 "Manrope", sans-serif;
    text-align: left;
    white-space: normal;
  }

  .trame-nav > ul > li:not(.trame-mobile-practical) > a::before,
  .trame-nav > ul > li:not(.trame-mobile-practical) > .trame-nav-trigger::before {
    display: inline-flex;
    align-items: center;
    align-self: stretch;
    justify-content: center;
    border-right: 1px solid var(--ap-line-strong);
    color: var(--ap-cobalt);
    content: counter(mobile-nav, decimal-leading-zero);
    font: 650 .67rem/1 "Manrope", system-ui, sans-serif;
  }

  .trame-nav > ul > li:not(.trame-mobile-practical) > a::after,
  .trame-nav > ul > li:not(.trame-mobile-practical) > .trame-nav-trigger::after {
    display: none;
  }

  .trame-nav > ul > li:not(.trame-mobile-practical) > a:hover,
  .trame-nav > ul > li:not(.trame-mobile-practical) > a.active,
  .trame-nav > ul > li:not(.trame-mobile-practical) > .trame-nav-trigger:hover,
  .trame-nav > ul > li:not(.trame-mobile-practical) > .trame-nav-trigger[aria-expanded="true"] {
    background: rgba(0, 86, 210, .055);
    color: var(--ap-cobalt);
  }

  .trame-nav > ul > li:not(.trame-mobile-practical) > a:focus-visible,
  .trame-nav > ul > li:not(.trame-mobile-practical) > .trame-nav-trigger:focus-visible,
  .trame-header .trame-mega-menu a:focus-visible {
    outline: 0;
    background: rgba(22, 199, 243, .14);
    box-shadow: inset 4px 0 0 var(--ap-cyan);
  }

  .trame-nav > ul > li > a.trame-nav-cta {
    margin: 10px 0 0;
    border-bottom: 0;
    background: var(--ap-cobalt);
    color: var(--ap-white);
    clip-path: polygon(0 0, calc(100% - 11px) 0, 100% 11px, 100% 100%, 11px 100%, 0 calc(100% - 11px));
  }

  .trame-nav > ul > li > a.trame-nav-cta::before {
    border-color: rgba(255, 255, 255, .25);
    color: var(--ap-cyan-on-blue);
  }

  .trame-nav > ul > li > a.trame-nav-cta:hover,
  .trame-nav > ul > li > a.trame-nav-cta.active {
    background: var(--ap-cobalt-deep);
    color: var(--ap-white);
  }

  .trame-mobile-practical {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) auto;
    gap: 12px 18px;
    align-items: center;
    margin: 14px 0 8px;
    padding: 13px 14px;
    border: 1px solid var(--ap-line-strong);
    background: var(--ap-paper);
  }

  .trame-mobile-practical > div {
    display: grid;
    gap: 4px;
    min-width: 0;
  }

  .trame-mobile-practical span {
    color: var(--ap-cobalt);
    font: 650 .62rem/1.2 "Manrope", system-ui, sans-serif;
    letter-spacing: .08em;
    text-transform: uppercase;
  }

  .trame-mobile-practical strong {
    color: var(--ap-ink-soft);
    font-size: .72rem;
    font-weight: 650;
    line-height: 1.35;
  }

  .trame-header .trame-nav > ul > li.trame-mobile-practical > a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    justify-self: end;
    align-self: center;
    gap: 7px;
    width: auto;
    min-width: 0;
    min-height: 40px;
    margin: 0;
    padding: 0 11px;
    border: 1px solid var(--ap-cobalt);
    border-radius: 0;
    background: var(--ap-paper-bright);
    box-shadow: none;
    color: var(--ap-cobalt);
    font: 700 .72rem/1 "Manrope", system-ui, sans-serif;
    letter-spacing: .02em;
    text-decoration: none;
    white-space: nowrap;
    clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
    transition: border-color 160ms ease, background-color 160ms ease, color 160ms ease;
  }

  .trame-header .trame-nav > ul > li.trame-mobile-practical > a i {
    display: inline-block;
    width: auto;
    height: auto;
    margin: 0;
    border-radius: 0;
    background: transparent;
    color: var(--ap-cyan);
    font-size: .78rem;
    line-height: 1;
    transition: transform 160ms ease;
  }

  .trame-header .trame-nav > ul > li.trame-mobile-practical > a:hover,
  .trame-header .trame-nav > ul > li.trame-mobile-practical > a:focus-visible {
    border-color: var(--ap-cobalt);
    outline: 0;
    background: var(--ap-cobalt);
    color: var(--ap-white);
  }

  .trame-header .trame-nav > ul > li.trame-mobile-practical > a:hover i,
  .trame-header .trame-nav > ul > li.trame-mobile-practical > a:focus-visible i {
    color: var(--ap-white);
    transform: translate(2px, -2px);
  }

  .trame-header .trame-mega-menu {
    position: static !important;
    display: none !important;
    width: auto !important;
    max-width: none !important;
    max-height: none !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: visible !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: none !important;
  }

  .trame-header .trame-mega-menu.dropdown-active,
  .trame-header .trame-mega-parent.dropdown-open > .trame-mega-menu {
    display: block !important;
  }

  .trame-header .trame-mega-shell {
    max-height: none;
    padding: 16px 0 18px;
    overflow: visible;
    background: transparent;
  }

  .trame-header .trame-mega-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px 20px;
    align-items: end;
    padding: 0 0 14px;
  }

  .trame-header .trame-mega-heading h2 {
    max-width: 410px;
    margin: 0;
    font-size: 1.12rem;
    line-height: 1.16;
  }

  .trame-header .trame-mega-all {
    min-height: 40px;
    padding: 7px 0;
    font-size: .7rem;
  }

  .trame-header .trame-mega-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    border: 1px solid var(--ap-line-strong);
    background: var(--ap-line-strong);
  }

  .trame-header .trame-mega-column {
    min-width: 0;
    min-height: 0;
    padding: 14px;
    background: var(--ap-white);
  }

  .trame-header .trame-mega-column h3 {
    margin: 6px 0 9px;
    font-size: .88rem;
  }

  .trame-header .trame-mega-column > a {
    min-height: 42px;
    padding: 7px 0;
    font-size: .76rem;
    line-height: 1.3;
  }

  .trame-header .trame-mega-focus {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(135px, .55fr) minmax(210px, 1fr) auto;
    gap: 10px 18px;
    align-items: center;
    min-height: 0;
    padding: 12px 14px;
  }

  .trame-header .trame-mega-focus strong {
    margin: 0;
    font-size: .92rem;
  }

  .trame-header .trame-mega-focus p {
    display: none;
  }

  .trame-header .trame-mega-focus > a {
    min-height: 40px;
    margin: 0;
    padding: 8px 10px;
    font-size: .7rem;
  }
}

@media (max-width: 767.98px) {
  :root {
    --ap-utility-h: 28px;
    --ap-nav-h: 58px;
  }

  .trame-utility-inner {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    padding-inline: 0;
  }

  .trame-utility-location,
  .trame-utility-hours {
    display: none !important;
  }

  .trame-utility-phone,
  .trame-utility-contact {
    width: 100%;
    height: var(--ap-utility-h);
    margin: 0;
    padding: 0 8px;
    justify-content: center;
    font-size: .66rem;
  }

  .trame-utility-contact {
    border-left: 1px solid rgba(255, 255, 255, .18);
  }

  .trame-utility-contact .trame-utility-label-long,
  .trame-utility-contact-arrow {
    display: none !important;
  }

  .trame-utility-contact .trame-utility-label-short,
  .trame-utility-contact-icon {
    display: inline-flex !important;
  }

  .trame-nav-shell {
    padding-inline: 14px;
  }

  .trame-logo img {
    width: 158px;
    max-height: 43px;
  }

  .trame-header .mobile-nav-toggle,
  body.mobile-nav-active .trame-header .mobile-nav-toggle {
    min-width: 80px;
    height: 40px;
    padding-inline: 11px;
    font-size: .74rem;
  }

  .trame-header .trame-nav,
  body.mobile-nav-active .trame-header .trame-nav {
    background: var(--ap-paper-bright);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .trame-header .trame-nav > ul,
  body.mobile-nav-active .trame-header .trame-nav > ul {
    inset: 0 !important;
    width: 100%;
    padding: 12px 14px 24px;
    border-left: 0;
    box-shadow: none;
  }

  .trame-header .trame-nav > ul::before {
    padding-bottom: 9px;
  }

  .trame-mobile-practical {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px 12px;
    margin: 10px 0 5px;
    padding: 11px 12px;
  }

  .trame-mobile-practical > div:first-child {
    grid-column: 1 / -1;
  }

  .trame-header .trame-nav > ul > li.trame-mobile-practical > a {
    min-height: 40px;
  }

  .trame-nav > ul > li:not(.trame-mobile-practical) > a,
  .trame-nav > ul > li:not(.trame-mobile-practical) > .trame-nav-trigger {
    grid-template-columns: 34px minmax(0, 1fr) auto;
    gap: 10px;
    min-height: 56px;
    font-size: .94rem;
  }

  .trame-header .trame-mega-shell {
    padding: 0 0 12px 44px;
  }

  .trame-header .trame-mega-heading {
    display: block;
    padding: 10px 0 8px;
  }

  .trame-header .trame-mega-heading > div {
    display: none;
  }

  .trame-header .trame-mega-all {
    display: flex;
    justify-content: space-between;
    width: 100%;
    min-height: 44px;
    padding: 9px 11px;
    border: 1px solid var(--ap-cobalt);
    color: var(--ap-cobalt);
    font-size: .72rem;
  }

  .trame-header .trame-mega-grid {
    grid-template-columns: 1fr;
    border-width: 1px 0 0;
    background: var(--ap-paper-bright);
  }

  .trame-header .trame-mega-column {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    padding: 11px 0 3px;
    border-bottom: 1px solid var(--ap-line-strong);
    background: transparent;
  }

  .trame-header .trame-mega-column h3 {
    grid-column: 1;
    grid-row: 1;
    margin: 0 0 5px;
    font-size: .9rem;
  }

  .trame-header .trame-mega-column > a {
    grid-column: 1;
    min-height: 44px;
    padding: 8px 20px 8px 0;
    font-size: .78rem;
  }

  .trame-header .trame-mega-focus {
    display: none;
  }
}

@media (max-width: 359.98px) {
  .trame-utility-phone,
  .trame-utility-contact {
    padding-inline: 5px;
    font-size: .62rem;
  }

  .trame-nav-shell {
    padding-inline: 10px;
  }

  .trame-logo img {
    width: 145px;
  }

  .trame-header .mobile-nav-toggle,
  body.mobile-nav-active .trame-header .mobile-nav-toggle {
    min-width: 74px;
    padding-inline: 9px;
  }

  .trame-header .trame-nav > ul,
  body.mobile-nav-active .trame-header .trame-nav > ul {
    padding-inline: 10px;
  }

  .trame-mobile-practical {
    grid-template-columns: 1fr;
  }

  .trame-mobile-practical > div:first-child {
    grid-column: auto;
  }

  .trame-header .trame-nav > ul > li.trame-mobile-practical > a {
    justify-self: start;
    width: fit-content;
  }
}

/* ============================================================
   Home services v3 — compact editorial rhythm for laptops
   ============================================================ */

.home-v2 .home-section-heading-stacked {
  max-width: 760px;
}

.home-v2 .home-section-heading-stacked p {
  max-width: 700px;
  margin-top: 18px;
}

.home-v2 .home-section-heading-stacked .trame-text-link {
  margin-top: 14px;
}

.home-v2 .trame-news .home-section-heading-stacked {
  margin-bottom: 0;
}

.home-v2 .trame-news .home-journal-grid {
  margin-top: clamp(32px, 4vw, 48px);
}

@media (min-width: 992px) {
  .home-v2 .trame-method {
    padding: clamp(60px, 6vw, 78px) 0;
  }

  .home-v2 .trame-method-grid {
    grid-template-columns: minmax(280px, .7fr) minmax(0, 1.3fr);
    align-items: start;
    gap: clamp(48px, 6vw, 78px);
  }

  .home-v2 .trame-method-heading h2 {
    max-width: 470px;
    font-size: clamp(1.9rem, 2.45vw, 2.55rem);
  }

  .home-v2 .trame-method-heading p {
    max-width: 470px;
    margin-top: 18px;
  }

  .home-v2 .trame-method-steps {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-v2 .trame-method-steps li {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 13px;
    min-height: 132px;
    padding: 22px;
  }

  .home-v2 .trame-method-steps li:nth-child(odd) {
    padding-left: 0;
    border-right: 1px solid rgba(255,255,255,.16);
  }

  .home-v2 .trame-method-steps li:nth-child(even) {
    padding-right: 0;
  }

  .home-v2 .trame-method-steps strong {
    font-size: 1.1rem;
  }

  .home-v2 .trame-method-steps p {
    font-size: .92rem;
    line-height: 1.55;
  }
}

.home-v2 .trame-services {
  padding: clamp(56px, 5.5vw, 74px) 0;
}

.home-v2 .trame-services > .container-xl {
  display: grid;
  grid-template-columns: minmax(250px, .7fr) minmax(0, 1.3fr);
  align-items: start;
  gap: clamp(44px, 6vw, 82px);
}

.home-v2 .trame-services .trame-section-heading {
  max-width: 410px;
  margin: 0;
  padding-top: 3px;
}

.home-v2 .trame-services .trame-section-heading h2 {
  max-width: 390px;
  margin-top: 14px;
  font-size: clamp(1.9rem, 2.25vw, 2.35rem);
  line-height: 1.08;
}

.home-v2 .trame-services-list {
  min-width: 0;
}

.home-v2 .trame-service-row {
  grid-template-columns: 54px minmax(0, 1fr) 30px;
  gap: 17px;
  min-height: 82px;
  padding: 11px 12px;
}

.home-v2 .trame-service-row:hover {
  padding-left: 12px;
}

.home-v2 .trame-service-row div {
  grid-template-columns: 1fr;
  gap: 3px;
}

.home-v2 .trame-service-row strong {
  font-size: clamp(1rem, 1.2vw, 1.18rem);
  line-height: 1.26;
}

.home-v2 .trame-service-row span:not(.trame-service-number) {
  font-size: .86rem;
  line-height: 1.45;
}

.home-v2 .trame-service-number {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(0,86,210,.34);
  background: rgba(0,86,210,.06);
  color: var(--ap-cobalt);
  font-size: .82rem;
  letter-spacing: .03em;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.home-v2 .trame-service-row:hover .trame-service-number {
  border-color: var(--ap-cyan);
  background: var(--ap-cyan);
  color: var(--ap-ink);
}

.home-v2 .trame-service-row > i {
  font-size: 1.08rem;
  transition: transform 180ms ease;
}

.home-v2 .trame-service-row:hover > i {
  transform: translate(3px, -3px);
}

@media (max-width: 991.98px) {
  .home-v2 .trame-services {
    padding: clamp(50px, 7vw, 66px) 0;
  }

  .home-v2 .trame-services > .container-xl {
    display: block;
  }

  .home-v2 .trame-services .trame-section-heading {
    max-width: 650px;
    margin-bottom: 28px;
    padding-top: 0;
  }

  .home-v2 .trame-services .trame-section-heading h2 {
    max-width: 600px;
    font-size: clamp(1.85rem, 4vw, 2.2rem);
  }
}

@media (max-width: 767.98px) {
  .home-v2 .trame-services {
    padding: 44px 0;
  }

  .home-v2 .trame-services .trame-section-heading {
    margin-bottom: 22px;
  }

  .home-v2 .trame-services .trame-section-heading h2 {
    margin-top: 12px;
    font-size: clamp(1.65rem, 7vw, 1.95rem);
  }

  .home-v2 .trame-service-row {
    grid-template-columns: 44px minmax(0, 1fr) 22px;
    gap: 10px;
    min-height: 90px;
    padding: 12px 4px;
  }

  .home-v2 .trame-service-row:hover {
    padding-left: 4px;
  }

  .home-v2 .trame-service-row strong {
    font-size: .98rem;
  }

  .home-v2 .trame-service-row span:not(.trame-service-number) {
    font-size: .8rem;
    line-height: 1.42;
  }

  .home-v2 .trame-service-number {
    width: 38px;
    height: 38px;
    font-size: .76rem;
  }

  .home-v2 .trame-service-row > i {
    font-size: .96rem;
  }
}

/* Rythme de lecture compact des articles sur téléphone. */
@media (max-width: 767.98px) {
  .journal-article-content > h2 {
    margin-top: 1.6rem;
    font-size: 1.5rem;
  }

  .journal-article-content > h3 {
    margin-top: 1.3rem;
    font-size: 1.22rem;
  }

  .journal-article-content > h4 {
    margin-top: 1.1rem;
  }

  .journal-article-content > blockquote,
  .journal-article-content > pre {
    padding: 16px 17px;
  }
}

.journal-author-link {
  width: fit-content;
  color: var(--ap-ink);
  text-decoration-color: rgba(0, 86, 210, .35);
  text-underline-offset: 3px;
}

.journal-author-link:hover,
.journal-author-link:focus-visible {
  color: var(--ap-cobalt);
}

/* Passe transversale : typographie, carte et commandes de pied de page. */
.journal-article-content code {
  font-family: ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", monospace;
}

.accomplus-live-map {
  background: #eaf1f8 !important;
  color: var(--ap-ink);
}

.accomplus-live-map::after {
  background: linear-gradient(135deg, rgba(0, 86, 210, .04), transparent 44%, rgba(22, 199, 243, .11));
  box-shadow: inset 0 0 0 1px rgba(9, 17, 31, .14);
}

.accomplus-live-map-placeholder {
  padding: clamp(20px, 3vw, 36px);
  background:
    radial-gradient(circle at 82% 20%, rgba(22, 199, 243, .22), transparent 28%),
    linear-gradient(145deg, #f8fbfd 0%, #edf3f8 58%, #dfeaf4 100%);
}

.accomplus-live-map-placeholder-grid {
  inset: -6%;
  opacity: 1;
  background:
    linear-gradient(122deg, transparent 0 31%, rgba(0, 86, 210, .12) 31% 32.2%, transparent 32.2% 100%),
    linear-gradient(34deg, transparent 0 51%, rgba(9, 17, 31, .08) 51% 52.1%, transparent 52.1% 100%),
    linear-gradient(162deg, transparent 0 68%, rgba(22, 199, 243, .2) 68% 69.4%, transparent 69.4% 100%);
  background-size: auto;
  transform: none;
}

.accomplus-live-map-placeholder-grid::before,
.accomplus-live-map-placeholder-grid::after {
  position: absolute;
  border-radius: 50%;
  background: var(--ap-cobalt);
  box-shadow: 0 0 0 8px rgba(0, 86, 210, .12);
  content: "";
}

.accomplus-live-map-placeholder-grid::before {
  top: 18%;
  right: 13%;
  width: 12px;
  height: 12px;
}

.accomplus-live-map-placeholder-grid::after {
  bottom: 16%;
  left: 16%;
  width: 9px;
  height: 9px;
  background: var(--ap-cyan);
  box-shadow: 0 0 0 7px rgba(22, 199, 243, .14);
}

.accomplus-live-map-prompt {
  width: min(500px, 100%);
  grid-template-columns: 56px minmax(0, 1fr);
  justify-items: stretch;
  align-items: center;
  gap: 7px 18px;
  padding: clamp(26px, 3vw, 36px);
  border: 1px solid rgba(9, 17, 31, .18);
  border-left: 5px solid var(--ap-cobalt);
  background: rgba(255, 254, 250, .96);
  color: var(--ap-ink);
  box-shadow: 15px 15px 0 rgba(0, 86, 210, .12);
  text-align: left;
  backdrop-filter: blur(5px);
}

.accomplus-live-map-prompt > span {
  grid-column: 1 / -1;
  margin-bottom: 14px;
  color: var(--ap-cobalt);
  font: 800 .72rem/1.4 "Manrope", system-ui, sans-serif;
  letter-spacing: .08em;
}

.accomplus-live-map-prompt > i {
  grid-column: 1;
  grid-row: 2 / span 2;
  width: 54px;
  height: 54px;
  margin: 0;
  border: 0;
  background: var(--ap-cobalt);
  color: var(--ap-white);
  font-size: 1.35rem;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
  transform: none;
}

.accomplus-live-map-prompt > i::before {
  transform: none;
}

.accomplus-live-map-prompt strong {
  grid-column: 2;
  margin: 0;
  color: var(--ap-ink);
  font-size: clamp(1.45rem, 2.2vw, 1.85rem);
}

.accomplus-live-map-prompt small {
  grid-column: 2;
  max-width: none;
  margin: 0;
  color: var(--ap-muted);
  font-size: .92rem;
}

.accomplus-live-map-actions {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 11px 18px;
  margin-top: 20px;
}

.accomplus-live-map-prompt .accomplus-live-map-actions button {
  min-height: 46px;
  margin: 0;
  padding: 11px 18px;
  border-color: var(--ap-cobalt);
  background: var(--ap-cobalt);
  color: var(--ap-white);
}

.accomplus-live-map-prompt .accomplus-live-map-actions button:hover {
  border-color: var(--ap-ink);
  background: var(--ap-ink);
  color: var(--ap-white);
}

.accomplus-live-map-actions a {
  color: var(--ap-cobalt);
  font-size: .84rem;
  font-weight: 800;
  text-decoration: none;
}

.accomplus-live-map-actions a:hover {
  color: var(--ap-cobalt-deep);
}

.accomplus-live-map-prompt > em {
  grid-column: 1 / -1;
  max-width: none;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 14px;
  color: #64748b;
  font-size: .77rem;
}

.accomplus-live-map-prompt > em i {
  flex: 0 0 auto;
  margin-top: 1px;
  color: var(--ap-cobalt);
}

.trame-footer-bottom {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 18px 30px;
  padding-bottom: 28px;
}

.trame-footer-legal,
.trame-footer-controls {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 22px;
}

.trame-footer-bottom .trame-footer-legal a {
  color: inherit;
  text-decoration: none;
}

.trame-footer-bottom .trame-footer-legal a:hover {
  color: var(--ap-cyan);
}

#footer .trame-footer-controls .trame-footer-tool {
  position: static;
  inset: auto;
  z-index: auto;
  width: auto;
  min-width: 0;
  height: auto;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 0;
  background: transparent;
  color: var(--ap-white);
  box-shadow: none;
  clip-path: none;
  font: 700 .76rem/1.3 "Manrope", system-ui, sans-serif;
  letter-spacing: 0;
  text-decoration: none;
  opacity: 1;
  visibility: visible;
  transform: none;
}

#footer .trame-footer-controls .trame-footer-tool i {
  color: var(--ap-cyan);
  font-size: .9rem;
  line-height: 1;
}

#footer .trame-footer-controls .trame-footer-tool:hover,
#footer .trame-footer-controls .trame-footer-tool:focus-visible {
  border-color: var(--ap-cyan);
  background: rgba(22, 199, 243, .08);
  color: var(--ap-cyan);
  transform: none;
}

#footer .trame-footer-controls .trame-footer-tool:focus-visible {
  outline: 3px solid var(--ap-cyan);
  outline-offset: 3px;
}

.cookie-consent-panel {
  z-index: 10020;
  bottom: 24px;
}

@media (min-width: 768px) and (max-width: 1199.98px) {
  .trame-footer-grid {
    width: min(100%, 1000px);
    grid-template-columns: repeat(2, minmax(0, 420px));
    justify-content: center;
    column-gap: clamp(62px, 8vw, 108px);
    row-gap: clamp(52px, 7vw, 76px);
    margin-inline: auto;
    padding-inline: clamp(12px, 2.5vw, 30px);
  }

  .trame-footer-grid > * {
    width: 100%;
  }

  .trame-footer-bottom {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .trame-footer-bottom > p {
    grid-column: 1 / -1;
  }

  .trame-footer-controls {
    justify-content: flex-end;
  }
}

@media (max-width: 767.98px) {
  .accomplus-live-map-prompt {
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 6px 14px;
    padding: 26px 21px;
    box-shadow: 9px 9px 0 rgba(0, 86, 210, .12);
  }

  .accomplus-live-map-prompt > span {
    margin-bottom: 10px;
  }

  .accomplus-live-map-prompt > i {
    width: 46px;
    height: 46px;
    font-size: 1.12rem;
  }

  .accomplus-live-map-actions {
    align-items: stretch;
    flex-direction: column;
    margin-top: 17px;
  }

  .accomplus-live-map-prompt .accomplus-live-map-actions button {
    width: 100%;
    margin: 0;
  }

  .accomplus-live-map-actions a {
    padding: 4px 2px;
    text-align: center;
  }

  .trame-footer-grid {
    width: min(100%, 460px);
    grid-template-columns: 1fr;
    gap: 46px;
    margin-inline: auto;
    padding: 50px 10px;
  }

  .trame-footer-bottom {
    grid-template-columns: 1fr;
    align-items: start;
    padding-bottom: 28px;
  }

  .trame-footer-bottom > p {
    grid-column: auto;
  }

  .trame-footer-legal {
    gap: 12px 18px;
  }

  .trame-footer-controls {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  #footer .trame-footer-controls .trame-footer-tool {
    width: 100%;
  }

  .cookie-consent-panel {
    bottom: 12px;
  }
}

@media (max-width: 420px) {
  .trame-footer-controls {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   Contact v4 — en-tête partagé et parcours plus lisibles
   ============================================================ */

body.contact-v4 {
  --service-accent: var(--ap-cobalt);
  --service-accent-deep: var(--ap-cobalt-deep);
  background: var(--ap-paper-bright);
}

.contact-v4 .contact {
  padding: 0 0 clamp(72px, 8vw, 108px);
  overflow: hidden;
  background: var(--ap-paper);
}

.contact-v4 .contact::before {
  display: none;
}

.contact-v4-hero {
  position: relative;
  isolation: isolate;
  padding: clamp(142px, 10.5vw, 164px) 0 clamp(66px, 7vw, 92px);
  overflow: hidden;
  border-bottom: 1px solid var(--ap-ink);
  background: var(--ap-paper-bright);
}

.contact-v4-gridlines {
  position: absolute;
  z-index: -2;
  inset: 0;
  opacity: .68;
  background-image:
    linear-gradient(90deg, rgba(9, 17, 31, .045) 1px, transparent 1px),
    linear-gradient(rgba(9, 17, 31, .045) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, #000, rgba(0, 0, 0, .18));
}

.contact-v4-hero::after {
  position: absolute;
  z-index: -1;
  top: 78px;
  right: -175px;
  width: 440px;
  height: 440px;
  border: 1px solid rgba(0, 86, 210, .2);
  border-radius: 50%;
  content: "";
}

.contact-v4-breadcrumbs {
  margin-bottom: clamp(36px, 4vw, 52px);
}

.contact-v4-heading {
  max-width: 980px;
  display: block;
}

.contact-v4-heading h1 {
  max-width: 920px;
  margin: 18px 0 0;
  color: var(--ap-ink);
  font-size: var(--ap-display-h1);
  font-weight: 800;
  letter-spacing: -.055em;
  line-height: 1;
  text-wrap: balance;
}

.contact-v4-heading > p {
  max-width: 780px;
  margin: 24px 0 0;
  padding-left: 0;
  border-left: 0;
  color: var(--ap-muted);
  font-size: 1rem;
  line-height: 1.72;
}

.contact-v4 .contact-v4-main {
  position: relative;
  z-index: 2;
  margin-top: -46px;
  padding-top: 0;
}

.contact-v4 .contact-v4-main > .row {
  box-shadow: 12px 14px 0 rgba(0, 86, 210, .09);
}

.contact-v4 .contact-v4-routes {
  padding: clamp(76px, 8vw, 108px) 0;
  border-top: 1px solid var(--ap-ink);
  background: var(--ap-paper-bright);
}

.contact-v4-routes-heading {
  max-width: 760px;
  margin: 0 0 clamp(42px, 5vw, 62px);
  text-align: left;
}

.contact-v4-routes-heading h2 {
  max-width: 680px;
  margin: 17px 0 0;
  color: var(--ap-ink);
  font-size: var(--ap-display-h2);
  font-weight: 800;
  letter-spacing: -.05em;
  line-height: 1.04;
  text-wrap: balance;
}

.contact-v4-routes-heading p {
  max-width: 660px;
  margin: 20px 0 0;
  color: var(--ap-muted);
  font-size: 1rem;
  line-height: 1.7;
}

.contact-v4-route-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.contact-v4-route-card {
  min-width: 0;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(28px, 3vw, 38px);
  border: 1px solid var(--ap-ink);
  background: var(--ap-white);
  color: var(--ap-ink);
  transition: background-color 200ms ease, color 200ms ease, border-color 200ms ease, box-shadow 220ms ease, transform 220ms var(--ap-motion-ease);
}

.contact-v4-route-card.is-business {
  border-color: var(--ap-cobalt);
  background: var(--ap-cobalt);
  color: var(--ap-white);
}

.contact-v4-route-card.is-support {
  min-height: 172px;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 100px minmax(220px, .65fr) minmax(260px, 1fr) minmax(210px, auto);
  grid-template-rows: auto auto;
  align-items: center;
  column-gap: clamp(22px, 4vw, 58px);
  border-color: var(--ap-ink);
  background: var(--ap-ink);
  color: var(--ap-white);
}

.contact-v4-route-top {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 0 0 24px;
}

.contact-v4-route-top > span {
  width: 42px;
  height: 42px;
  display: grid;
  flex: 0 0 42px;
  place-items: center;
  border: 1px solid rgba(0, 86, 210, .34);
  background: rgba(0, 86, 210, .06);
  color: var(--ap-cobalt);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .03em;
}

.contact-v4-route-top > i {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  color: var(--ap-cobalt);
  font-size: 1.12rem;
}

.contact-v4-route-label {
  display: block;
  margin: 0 0 8px;
  color: var(--ap-cobalt);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.contact-v4-route-card h3 {
  margin: 0;
  color: inherit;
  font-size: clamp(1.45rem, 2.3vw, 2rem);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1.08;
  text-wrap: balance;
}

.contact-v4-route-card p {
  margin: 18px 0 28px;
  color: var(--ap-muted);
  font-size: .94rem;
  line-height: 1.65;
}

.contact-v4-route-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: auto 0 0;
  color: var(--ap-cobalt);
  font-size: .9rem;
  font-weight: 800;
  text-decoration: none;
}

.contact-v4-route-card.is-business :is(.contact-v4-route-top > span, .contact-v4-route-top > i, .contact-v4-route-label) {
  color: var(--ap-cyan-on-blue);
}

.contact-v4-route-card.is-business .contact-v4-route-top > span {
  border-color: rgba(226, 248, 255, .52);
  background: rgba(226, 248, 255, .09);
}

.contact-v4-route-card.is-business p {
  color: rgba(255, 255, 255, .78);
}

.contact-v4-route-card.is-business .contact-v4-route-link {
  color: var(--ap-white);
}

.contact-v4-route-card.is-support .contact-v4-route-top {
  width: auto;
  grid-column: 1;
  grid-row: 1 / 3;
  display: grid;
  grid-template-columns: 42px 46px;
  justify-content: start;
  gap: 14px;
  margin: 0;
}

.contact-v4-route-card.is-support :is(.contact-v4-route-top > span, .contact-v4-route-top > i, .contact-v4-route-label, .contact-v4-route-link) {
  color: var(--ap-cyan);
}

.contact-v4-route-card.is-support .contact-v4-route-top > span {
  border-color: rgba(22, 199, 243, .58);
  background: rgba(22, 199, 243, .08);
}

.contact-v4-route-card.is-support .contact-v4-route-label {
  grid-column: 2;
  grid-row: 1;
  align-self: end;
  margin: 0 0 5px;
}

.contact-v4-route-card.is-support h3 {
  grid-column: 2;
  grid-row: 2;
  align-self: start;
}

.contact-v4-route-card.is-support p {
  grid-column: 3;
  grid-row: 1 / 3;
  margin: 0;
  color: rgba(255, 255, 255, .72);
}

.contact-v4-route-card.is-support .contact-v4-route-link {
  grid-column: 4;
  grid-row: 1 / 3;
  align-self: center;
  justify-self: end;
  margin: 0;
}

@media (hover: hover) and (pointer: fine) {
  .contact-v4-route-card:hover,
  .contact-v4-route-card:focus-within {
    position: relative;
    z-index: 1;
    transform: translateY(-4px);
    box-shadow: 10px 12px 0 rgba(0, 86, 210, .1);
  }

  .contact-v4-route-card.is-private:hover,
  .contact-v4-route-card.is-private:focus-within {
    border-color: var(--ap-cobalt);
    background: var(--ap-paper);
  }

  .contact-v4-route-card.is-business:hover,
  .contact-v4-route-card.is-business:focus-within {
    background: var(--ap-cobalt-deep);
  }

  .contact-v4-route-card.is-support:hover,
  .contact-v4-route-card.is-support:focus-within {
    background: #101c32;
  }
}

@media (max-width: 991.98px) {
  .contact-v4-heading {
    max-width: 860px;
  }

  .contact-v4-heading h1 {
    max-width: 820px;
  }

  .contact-v4-heading > p {
    max-width: 760px;
  }

  .contact-v4-route-grid {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .contact-v4-route-card {
    min-height: 290px;
  }

  .contact-v4-route-card.is-support {
    min-height: 290px;
    grid-column: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-v4-route-card.is-support .contact-v4-route-top {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin: 0 0 24px;
  }

  .contact-v4-route-card.is-support .contact-v4-route-label,
  .contact-v4-route-card.is-support h3,
  .contact-v4-route-card.is-support p,
  .contact-v4-route-card.is-support .contact-v4-route-link {
    grid-column: auto;
    grid-row: auto;
    align-self: auto;
    justify-self: auto;
  }

  .contact-v4-route-card.is-support .contact-v4-route-label {
    margin: 0 0 8px;
  }

  .contact-v4-route-card.is-support p {
    margin: 18px 0 28px;
  }

  .contact-v4-route-card.is-support .contact-v4-route-link {
    margin: auto 0 0;
  }
}

@media (max-width: 767.98px) {
  .contact-v4-hero {
    padding: calc(var(--ap-header-h) + 34px) 0 60px;
  }

  .contact-v4-hero::after {
    top: 95px;
    right: -245px;
  }

  .contact-v4-breadcrumbs {
    margin-bottom: 32px;
  }

  .contact-v4-heading h1 {
    font-size: var(--ap-display-h1);
  }

  .contact-v4-heading > p {
    padding-left: 0;
    font-size: .95rem;
  }

  .contact-v4 .contact-v4-main {
    margin-top: -28px;
    padding-top: 0;
  }

  .contact-v4 .contact-v4-main > .row {
    box-shadow: 7px 8px 0 rgba(0, 86, 210, .08);
  }

  .contact-v4 .contact-v4-routes {
    padding: 64px 0;
  }

  .contact-v4-routes-heading {
    margin-bottom: 34px;
  }

  .contact-v4-routes-heading h2 {
    font-size: clamp(1.9rem, 8.5vw, 2.45rem);
  }

  .contact-v4-route-card {
    min-height: 0;
    padding: 27px 24px 30px;
  }

  .contact-v4-route-card.is-support {
    min-height: 0;
  }

  .contact-v4-route-top {
    margin-bottom: 22px;
  }
}

@media (max-width: 575.98px) {
  .contact-v4-route-card.is-support .contact-v4-route-top {
    margin-bottom: 22px;
  }
}

/* ============================================================
   Header v5 — mega menus éditoriaux, sans cadres internes
   ============================================================ */

.trame-header .trame-mega-menu a[aria-current="page"] {
  color: var(--ap-cobalt);
  font-weight: 800;
}

.trame-header .trame-mega-column > a[aria-current="page"] {
  padding-inline: 12px;
  background: rgba(0, 86, 210, .08);
  box-shadow: inset 3px 0 var(--ap-cobalt);
}

.trame-header .trame-mega-column > a[aria-current="page"]::after {
  content: none;
}

.trame-header .trame-mega-all[aria-current="page"],
.trame-header .trame-mega-focus > a[aria-current="page"] {
  text-decoration: underline;
  text-underline-offset: .25em;
  text-decoration-thickness: 2px;
}

.trame-header .trame-mega-focus > a[aria-current="page"] {
  color: var(--ap-ink);
}

@media (min-width: 1200px) {
  .trame-header .trame-mega-shell {
    padding: 25px 28px 28px;
  }

  .trame-header .trame-mega-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    border: 0;
    border-top: 1px solid var(--ap-ink);
    background: transparent;
  }

  .trame-header .trame-mega-column {
    min-height: 218px;
    padding: 22px 26px 18px;
    border-right: 1px solid var(--ap-line-strong);
    background: transparent;
  }

  .trame-header .trame-mega-column:first-child {
    padding-left: 0;
  }

  .trame-header .trame-mega-column:nth-child(3) {
    padding-right: 0;
    border-right: 0;
  }

  .trame-header .trame-mega-column > a {
    min-height: 38px;
    padding: 6px 18px 6px 0;
    border-bottom: 0;
  }

  .trame-header .trame-mega-column > a:hover {
    background: rgba(0, 86, 210, .055);
  }

  .trame-header .trame-mega-focus {
    min-height: 84px;
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(145px, .55fr) minmax(245px, .9fr) minmax(280px, 1.15fr) auto;
    align-items: center;
    gap: 18px 28px;
    margin-top: 18px;
    padding: 15px 18px;
    background: var(--ap-ink);
  }

  .trame-header .trame-mega-focus strong,
  .trame-header .trame-mega-focus p,
  .trame-header .trame-mega-focus > a {
    margin: 0;
  }

  .trame-header .trame-mega-focus strong {
    font-size: 1.05rem;
  }

  .trame-header .trame-mega-focus p {
    font-size: .82rem;
  }

  .trame-header .trame-mega-focus > a {
    min-height: 42px;
    padding: 9px 12px;
  }
}

@media (max-width: 1199.98px) {
  .trame-header .trame-mega-shell {
    border: 0;
  }

  .trame-header .trame-mega-grid {
    gap: 0;
    border: 0;
    border-top: 1px solid var(--ap-ink);
    background: transparent;
  }

  .trame-header .trame-mega-column {
    border-right: 1px solid var(--ap-line-strong);
    background: transparent;
  }

  .trame-header .trame-mega-column:nth-child(3) {
    border-right: 0;
  }

  .trame-header .trame-mega-column > a {
    border-bottom: 0;
  }

  .trame-header .trame-mega-focus {
    margin-top: 12px;
  }
}

@media (max-width: 767.98px) {
  .trame-header .trame-mega-column {
    border-right: 0;
  }

  .trame-header .trame-mega-focus {
    margin-top: 0;
  }
}

/* ============================================================
   En-têtes éditoriaux — lecture commune sur toutes les pages
   ============================================================ */

.support-v5-heading,
.support-v5-download-heading {
  max-width: 980px;
  display: block;
}

.support-v5-heading h1 {
  max-width: 920px;
  text-wrap: balance;
}

.support-v5-heading > p,
.support-v5-download-heading > p {
  max-width: 780px;
  margin: 24px 0 0;
  padding-left: 0;
  border-left: 0;
}

.privacy-v3-hero-grid {
  display: block;
}

.privacy-v3-hero-grid > :first-child {
  max-width: 980px;
}

.privacy-v3-hero-copy {
  max-width: 780px;
  margin-top: 24px;
  padding-left: 0;
  border-left: 0;
}

/* Le monogramme Accomplus remplace le cercle décoratif générique. */
.contact-v4-hero {
  --ap-hero-mark-size: clamp(390px, 36vw, 520px);
  --ap-hero-mark-top: clamp(72px, 6.5vw, 92px);
  --ap-hero-mark-right: clamp(-170px, -10vw, -125px);
}

.support-v5-hero {
  --ap-hero-mark-size: clamp(420px, 38vw, 550px);
  --ap-hero-mark-top: clamp(86px, 7vw, 106px);
  --ap-hero-mark-right: clamp(-190px, -11vw, -140px);
}

.service-v4-hero {
  --ap-hero-mark-size: clamp(420px, 38vw, 550px);
  --ap-hero-mark-top: clamp(86px, 7vw, 106px);
  --ap-hero-mark-right: clamp(-190px, -11vw, -140px);
}

.contact-v4-hero::after,
.support-v5-hero::after,
.service-v4-hero::after {
  top: var(--ap-hero-mark-top);
  right: var(--ap-hero-mark-right);
  width: var(--ap-hero-mark-size);
  height: var(--ap-hero-mark-size);
  border: 0;
  border-radius: 0;
  background: url("/assets/img/favicon/web-app-manifest-512x512.png") center / contain no-repeat;
  content: "";
  opacity: .075;
  mix-blend-mode: multiply;
  pointer-events: none;
  transform: rotate(-5deg);
}

@media (max-width: 767.98px) {
  .contact-v4-hero,
  .support-v5-hero,
  .service-v4-hero {
    --ap-hero-mark-size: min(410px, 108vw);
    --ap-hero-mark-right: clamp(-245px, -58vw, -190px);
  }

  .contact-v4-hero {
    --ap-hero-mark-top: 92px;
  }

  .support-v5-hero {
    --ap-hero-mark-top: 112px;
  }
}

/* ============================================================
   Motion design — un signal précis, bref et accessible
   ============================================================ */

:root {
  --ap-motion-duration: 360ms;
  --ap-motion-ease: cubic-bezier(.22, 1, .36, 1);
}

#header.trame-header {
  transition: background-color 220ms ease, box-shadow 220ms ease;
}

body.scrolled #header.trame-header {
  box-shadow: 0 14px 34px rgba(9, 17, 31, .09);
}

.home-v2 .trame-hero {
  --hero-panel-shift: 0px;
  isolation: isolate;
}

@keyframes hero-panel-glint {
  0% {
    opacity: 0;
    background-position: 160% 0;
  }

  32% {
    opacity: .72;
  }

  100% {
    opacity: 0;
    background-position: -70% 0;
  }
}

@media (min-width: 992px) and (prefers-reduced-motion: no-preference) {
  .home-v2 .trame-hero::before {
    top: -24px;
    height: calc(100% + 48px);
    transform: translate3d(var(--hero-panel-shift), 0, 0);
    will-change: transform;
  }

  .home-v2 .trame-hero::after {
    position: absolute;
    z-index: 0;
    top: -24px;
    right: -12%;
    width: 58%;
    height: calc(100% + 48px);
    background: linear-gradient(105deg, transparent 39%, rgba(22, 199, 243, .11) 50%, transparent 61%);
    background-position: 160% 0;
    background-size: 240% 100%;
    clip-path: polygon(28% 0, 100% 0, 100% 100%, 0 100%);
    content: "";
    opacity: 0;
    pointer-events: none;
    transform: translate3d(var(--hero-panel-shift), 0, 0);
  }

  .home-v2 .trame-hero.hero-panel-glint::after {
    animation: hero-panel-glint 900ms var(--ap-motion-ease) 180ms both;
    will-change: background-position, opacity, transform;
  }

  .home-v2 .trame-hero > .trame-grid {
    z-index: 0;
  }

  .home-v2 .trame-hero > .trame-hero-grid {
    z-index: 1;
  }
}

html.motion-design [data-motion-design][data-aos] {
  pointer-events: auto;
}

@media (prefers-reduced-motion: no-preference) {
  html.motion-design [data-aos].aos-init {
    opacity: 0;
    transition-delay: var(--ap-motion-delay, 0ms);
    transition-property: opacity, transform;
  }

  html.motion-design [data-aos].aos-init.aos-animate {
    opacity: 1;
    transform: none;
  }

  html:not(.no-js) [data-aos][data-aos] {
    transition-duration: var(--ap-motion-duration);
    transition-timing-function: var(--ap-motion-ease);
  }

  html:not(.no-js) [data-aos="fade-up"][data-aos="fade-up"] {
    -webkit-transform: translate3d(0, 12px, 0);
    transform: translate3d(0, 12px, 0);
  }

  html:not(.no-js) [data-aos="fade-down"][data-aos="fade-down"] {
    -webkit-transform: translate3d(0, -12px, 0);
    transform: translate3d(0, -12px, 0);
  }

  html:not(.no-js) [data-aos="fade-right"][data-aos="fade-right"] {
    -webkit-transform: translate3d(-14px, 0, 0);
    transform: translate3d(-14px, 0, 0);
  }

  html:not(.no-js) [data-aos="fade-left"][data-aos="fade-left"] {
    -webkit-transform: translate3d(14px, 0, 0);
    transform: translate3d(14px, 0, 0);
  }

  html:not(.no-js) [data-aos="zoom-in"][data-aos="zoom-in"] {
    -webkit-transform: scale(.99);
    transform: scale(.99);
  }

  html.motion-design [data-motion-design] :is(.trame-kicker, .v2-kicker, .service-v4-kicker, .support-v5-kicker)::before,
  html.motion-design :is(.trame-kicker, .v2-kicker, .service-v4-kicker, .support-v5-kicker)[data-motion-design]::before {
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 300ms var(--ap-motion-ease) 70ms;
  }

  html.motion-design [data-motion-design].aos-animate :is(.trame-kicker, .v2-kicker, .service-v4-kicker, .support-v5-kicker)::before,
  html.motion-design :is(.trame-kicker, .v2-kicker, .service-v4-kicker, .support-v5-kicker)[data-motion-design].aos-animate::before {
    transform: scaleX(1);
  }

  html.motion-design [data-motion-design].motion-lift[data-aos] {
    transition-property: opacity, transform, border-color, box-shadow;
  }
}

@media (max-width: 767.98px) and (prefers-reduced-motion: no-preference) {
  html.motion-design [data-aos].aos-init {
    transition-delay: 0ms;
  }

  html:not(.no-js) [data-aos="fade-up"][data-aos="fade-up"] {
    -webkit-transform: translate3d(0, 7px, 0);
    transform: translate3d(0, 7px, 0);
  }

  html:not(.no-js) [data-aos="fade-down"][data-aos="fade-down"] {
    -webkit-transform: translate3d(0, -7px, 0);
    transform: translate3d(0, -7px, 0);
  }

  html:not(.no-js) [data-aos="fade-right"][data-aos="fade-right"] {
    -webkit-transform: translate3d(-7px, 0, 0);
    transform: translate3d(-7px, 0, 0);
  }

  html:not(.no-js) [data-aos="fade-left"][data-aos="fade-left"] {
    -webkit-transform: translate3d(7px, 0, 0);
    transform: translate3d(7px, 0, 0);
  }
}

@media (hover: hover) and (pointer: fine) and (prefers-reduced-motion: no-preference) {
  html.motion-design .motion-lift:not([data-aos]),
  html.motion-design [data-motion-design].motion-lift[data-aos] {
    transition-duration: 220ms;
    transition-property: opacity, transform, border-color, box-shadow;
    transition-timing-function: var(--ap-motion-ease);
  }

  html.motion-design .motion-lift:not([data-aos]):hover,
  html.motion-design [data-motion-design].motion-lift.aos-animate:hover {
    transform: translate3d(0, -4px, 0);
  }

  :is(a, button):is(:hover, :focus-visible) .bi-arrow-right {
    transform: translateX(4px);
  }

  :is(a, button):is(:hover, :focus-visible) .bi-arrow-up-right {
    transform: translate(3px, -3px);
  }

  :is(a, button):is(:hover, :focus-visible) .bi-arrow-left {
    transform: translateX(-3px);
  }

  :is(a, button) :is(.bi-arrow-right, .bi-arrow-up-right, .bi-arrow-left) {
    transition: transform 200ms var(--ap-motion-ease);
  }

  :is(
    .journal-card-media,
    .journal-library-media,
    .trame-portrait-frame,
    .about-v3-hero-image,
    .about-v3-founder-portrait,
    .about-v3-partner-media,
    .service-v4-hero-media
  ) img {
    transition: transform 480ms var(--ap-motion-ease);
  }

  :is(
    .journal-card-media,
    .journal-library-media,
    .trame-portrait-frame,
    .about-v3-hero-image,
    .about-v3-founder-portrait,
    .about-v3-partner-media,
    .service-v4-hero-media
  ):is(:hover, :focus-within) img {
    transform: scale(1.02);
  }
}

@media (prefers-reduced-motion: reduce) {
  html,
  html:focus-within {
    scroll-behavior: auto !important;
  }

  *,
  *::before,
  *::after {
    animation-delay: 0s !important;
    transition-delay: 0s !important;
  }

  [data-aos],
  [data-motion-design],
  .motion-lift {
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: none !important;
  }

  #header.trame-header,
  :is(
    .journal-card-media,
    .journal-library-media,
    .trame-portrait-frame,
    .about-v3-hero-image,
    .about-v3-founder-portrait,
    .about-v3-partner-media,
    .service-v4-hero-media
  ) img {
    transition: none !important;
  }
}
