:root {
  --red: #b21f35;
  --red-soft: #d8324c;
  --red-dark: #8f1728;
  --ink: #111111;
  --charcoal: #333333;
  --muted: #6c6c6c;
  --line: #e6e6e6;
  --soft: #f4f4f4;
  --white: #ffffff;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.65;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(100% - 32px, var(--max)); margin: 0 auto; }
.two-col { display: grid; grid-template-columns: minmax(0, 1fr) minmax(320px, .82fr); gap: 42px; align-items: center; }
.topbar { background: var(--ink); color: var(--white); font-size: 13px; }
.topbar__inner { min-height: 38px; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.topbar__links { display: flex; gap: 18px; flex-wrap: wrap; color: #e9e9e9; }
.site-header { position: sticky; top: 0; z-index: 40; background: rgba(255,255,255,.98); border-bottom: 1px solid var(--line); }
.nav { height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 800; color: var(--ink); }
.brand img { height: 52px; width: 170px; object-fit: contain; }
.nav-links { display: flex; align-items: center; gap: 22px; font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: .03em; }
.nav-links a { color: var(--charcoal); }
.nav-links a:hover { color: var(--red); }
.mobile-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(17,17,17,.16);
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 46px; padding: 0 20px; border: 1px solid transparent; font-weight: 800; border-radius: 4px; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: linear-gradient(135deg, var(--red), var(--red-soft)); color: var(--white); box-shadow: 0 16px 34px rgba(178,31,53,.24); }
.btn-primary:hover { background: linear-gradient(135deg, var(--red-dark), var(--red)); }
.btn-dark { background: var(--ink); color: var(--white); }
.btn-outline { border-color: var(--charcoal); color: var(--charcoal); background: var(--white); }
.btn-whatsapp { background: #167a44; color: var(--white); }
.btn-xl { min-height: 56px; padding: 0 26px; }
.btn-glass { color: var(--white); border-color: rgba(255,255,255,.34); background: rgba(255,255,255,.08); backdrop-filter: blur(14px); }
.hero { background: var(--soft); border-bottom: 1px solid var(--line); }
.hero__grid { min-height: 650px; display: grid; grid-template-columns: 1.02fr .98fr; gap: 48px; align-items: center; padding: 72px 0; }
.eyebrow { color: var(--red); font-weight: 900; letter-spacing: .12em; text-transform: uppercase; font-size: 13px; }
h1, h2, h3 { color: var(--ink); line-height: 1.08; margin: 0 0 18px; }
h1 { font-size: clamp(42px, 7vw, 78px); }
h2 { font-size: clamp(30px, 4vw, 48px); }
h3 { font-size: 23px; }
.lead { font-size: 19px; color: #4d4d4d; max-width: 720px; }
.hero__actions, .actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 30px; }
.hero__media { min-height: 470px; background: url("/static/img/corporate-hero.svg") center/cover no-repeat; border: 10px solid var(--white); box-shadow: 0 24px 60px rgba(17,17,17,.14); }
.stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 34px; }
.stat { background: var(--white); border-left: 4px solid var(--red); padding: 18px; }
.stat strong { display: block; font-size: 28px; color: var(--ink); }
.section { padding: 86px 0; }
.section-soft { background: var(--soft); }
.section-head { display: flex; justify-content: space-between; gap: 28px; align-items: end; margin-bottom: 34px; }
.section-head p { max-width: 620px; margin: 0; color: var(--muted); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.card { background: var(--white); border: 1px solid var(--line); border-radius: 8px; padding: 28px; height: 100%; transition: transform .2s ease, box-shadow .2s ease; }
.card:hover { transform: translateY(-4px); box-shadow: 0 18px 38px rgba(17,17,17,.08); }
.card > img { width: 100%; height: 210px; object-fit: cover; }
.card-dark { background: var(--ink); color: var(--white); border-color: var(--ink); }
.card-dark h3, .card-dark p { color: var(--white); }
.icon-box { width: 54px; height: 54px; display: grid; place-items: center; background: var(--red); color: var(--white); font-weight: 900; border-radius: 6px; margin-bottom: 18px; }
.card p, .muted { color: var(--muted); }
.card-dark .muted { color: #ededed; }
.service-list { margin: 18px 0 0; padding: 0; list-style: none; }
.service-list li { padding: 10px 0; border-top: 1px solid var(--line); }
.split { display: grid; grid-template-columns: .9fr 1.1fr; gap: 44px; align-items: center; }
.panel { background: var(--white); border: 1px solid var(--line); border-radius: 8px; padding: 34px; }
.quote { border-left: 6px solid var(--red); padding-left: 24px; font-size: 20px; color: var(--ink); }
.visual-placeholder { min-height: 210px; background: var(--charcoal); color: var(--white); display: grid; place-items: center; font-size: 44px; font-weight: 900; border-radius: 8px; margin-bottom: 20px; }
.gallery-card { position: relative; min-height: 260px; overflow: hidden; background: var(--charcoal); border-radius: 8px; color: var(--white); display: flex; align-items: end; }
.gallery-card img { width: 100%; height: 260px; object-fit: cover; }
.gallery-card__body { position: absolute; inset: auto 0 0; background: rgba(17,17,17,.78); padding: 18px; }
.form-control { width: 100%; min-height: 48px; padding: 12px 14px; border: 1px solid #d9d9d9; border-radius: 4px; font: inherit; background: var(--white); }
textarea.form-control { min-height: 140px; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.form-grid .full { grid-column: 1 / -1; }
.messages { margin: 0 0 18px; padding: 0; list-style: none; }
.messages li { padding: 14px 16px; border-left: 4px solid #167a44; background: #eef8f2; color: #145b35; }
.footer { 
  background: linear-gradient(135deg, #071629 0%, #0B1F3A 55%, #102A43 100%); 
  color: var(--white); 
  padding: 62px 0 24px; 
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 34px; }
.footer h3 { color: var(--white); font-size: 18px; }
.footer a, .footer p, .footer li { color: #dddddd; }
.footer ul { padding: 0; margin: 0; list-style: none; }
.footer li { margin-bottom: 10px; }
.footer-mini-map {
  margin-top: 14px;
  width: min(220px, 100%);
  aspect-ratio: 1 / 1;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.22);
}
.footer-mini-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.footer-mini-map-link {
  display: inline-block;
  margin-top: 8px;
  font-size: 12px;
}
.footer-logo {
  width: 82px;
  height: auto;
  max-height: 108px;
  object-fit: contain;
  padding: 8px;
  border-radius: 8px;
  background: #fff;
  margin-bottom: 18px;
}
.copyright { border-top: 1px solid #333; margin-top: 40px; padding-top: 20px; font-size: 14px; color: #cfcfcf; }
.page-hero { background: var(--ink); color: var(--white); padding: 72px 0; }
.page-hero h1, .page-hero p { color: var(--white); }
.page-hero-visual {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #111 0%, #333 54%, #b21f35 100%);
}
.page-hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: .16;
}
.page-hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 42px;
  align-items: center;
}
.page-hero__grid img {
  width: 100%;
  min-height: 330px;
  max-height: 430px;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 28px 70px rgba(0,0,0,.28);
  clip-path: polygon(7% 0, 100% 0, 100% 100%, 0 100%);
}
.breadcrumb { color: #d9d9d9; font-size: 14px; margin-bottom: 12px; }
.detail-layout { display: grid; grid-template-columns: 1fr 330px; gap: 34px; align-items: start; }
.article-content { font-size: 18px; }

.service-client-note {
  margin-top: 24px;
  padding: 22px;
  border: 1px solid rgba(178,31,53,.18);
  border-left: 5px solid var(--red);
  border-radius: 8px;
  background: #fff8f9;
}

.service-client-note h3 {
  margin-bottom: 10px;
  font-size: 24px;
}

.service-client-note p {
  margin: 0 0 14px;
  color: #4d4d4d;
}

.service-client-note ul {
  margin: 0;
  padding-left: 20px;
  color: #444;
}

.service-client-note li + li {
  margin-top: 8px;
}

.realisations-hero .lead {
  max-width: 680px;
}

.realisations-hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.realisations-hero__stats span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 8px 14px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 8px;
  color: #f3f3f3;
  background: rgba(255,255,255,.08);
}

.realisations-hero__stats strong {
  color: var(--white);
  font-size: 22px;
}

.realisations-section {
  background: #f7f7f5;
}

.realisations-section__head {
  align-items: start;
}

.realisations-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.realisations-filter button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 8px 13px;
  border: 1px solid #d8d8d8;
  border-radius: 8px;
  color: #2f2f2f;
  background: var(--white);
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  transition: border-color .2s ease, color .2s ease, background .2s ease, transform .2s ease;
}

.realisations-filter button:hover,
.realisations-filter button.is-active {
  border-color: var(--red);
  color: var(--white);
  background: var(--red);
  transform: translateY(-1px);
}

.realisations-filter span {
  display: grid;
  place-items: center;
  min-width: 24px;
  height: 24px;
  padding: 0 6px;
  border-radius: 8px;
  color: var(--ink);
  background: #efdfc2;
  font-size: 12px;
}

.realisations-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.realisation-card {
  display: flex;
  min-width: 0;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(17,17,17,.08);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 34px rgba(17,17,17,.08);
  transition: opacity .2s ease, transform .2s ease, box-shadow .2s ease;
}

.realisation-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 48px rgba(17,17,17,.13);
}

.realisation-card.is-hidden {
  display: none;
}

.realisation-card figure {
  position: relative;
  margin: 0;
  background: #202020;
}

.realisation-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.realisation-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 20px;
}

.realisation-card__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.realisation-card__badges span,
.realisation-card__badges strong {
  min-height: 28px;
  padding: 4px 9px;
  border-radius: 8px;
  font-size: 12px;
  line-height: 1.25;
}

.realisation-card__badges span {
  color: #303030;
  background: #f1f1f1;
}

.realisation-card__badges strong {
  color: #59240f;
  background: #f4dfca;
}

.realisation-card h3 {
  font-size: 22px;
  overflow-wrap: anywhere;
}

.realisation-card p {
  margin: 0 0 18px;
  color: var(--muted);
}

.realisation-card__points {
  margin: 0 0 18px;
  padding-left: 18px;
  color: #4f4f4f;
  font-size: 14px;
  line-height: 1.5;
}

.realisation-card__points li + li {
  margin-top: 6px;
}

.realisation-card small {
  display: block;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: #575757;
  font-weight: 800;
}

.realisation-card__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 38px;
  margin-top: 16px;
  padding: 7px 12px;
  border: 1px solid var(--red);
  border-radius: 6px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  transition: color .2s ease, background .2s ease, transform .2s ease;
}

.realisation-card__link:hover {
  color: var(--white);
  background: var(--red);
  transform: translateY(-1px);
}

.realisation-detail__image {
  width: 100%;
  max-height: 460px;
  margin-bottom: 26px;
  object-fit: cover;
  border-radius: 8px;
}

.realisation-detail__points {
  display: grid;
  gap: 12px;
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
}

.realisation-detail__points li {
  position: relative;
  padding: 15px 16px 15px 44px;
  border: 1px solid rgba(178,31,53,.16);
  border-radius: 8px;
  color: #384250;
  background: #fff8f9;
  font-weight: 700;
}

.realisation-detail__points li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 22px;
  width: 9px;
  height: 9px;
  border-radius: 2px;
  background: var(--red);
  transform: rotate(45deg);
}

.realisation-detail__gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
  margin: 16px 0 28px;
}

.realisation-detail__gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  background: #f4f6f8;
}

.realisation-detail__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
}

.realisation-detail__tags span {
  min-height: 30px;
  padding: 5px 10px;
  border-radius: 8px;
  color: #303030;
  background: #f1f1f1;
  font-size: 13px;
  font-weight: 800;
}
.price { color: var(--red); font-size: 28px; font-weight: 900; }
.badge { display: inline-flex; align-items: center; min-height: 28px; padding: 0 10px; border-radius: 999px; background: var(--soft); color: var(--charcoal); font-weight: 800; font-size: 12px; text-transform: uppercase; }
.admin-note { border: 1px dashed var(--red); padding: 18px; background: #fff7f8; }

.admin-hero__panel {
  min-height: 300px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 8px;
  color: var(--white);
  background: rgba(255,255,255,.08);
  box-shadow: 0 28px 70px rgba(0,0,0,.24);
}

.admin-hero__panel strong {
  color: var(--white);
  font-size: clamp(72px, 12vw, 132px);
  line-height: .9;
}

.admin-hero__panel span {
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.admin-section .section-head {
  align-items: start;
}

.admin-rubriques,
.admin-mini-grid {
  display: grid;
  gap: 18px;
}

.admin-rubrique-card {
  border: 1px solid rgba(17,17,17,.09);
  border-radius: 8px;
  padding: 22px;
  background: var(--white);
  box-shadow: 0 16px 34px rgba(17,17,17,.07);
}

.admin-rubrique-card header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: start;
  margin-bottom: 18px;
}

.admin-rubrique-card h3,
.admin-mini-card h3 {
  margin-top: 12px;
  margin-bottom: 8px;
}

.admin-rubrique-card p,
.admin-mini-card p {
  margin: 0;
  color: var(--muted);
}

.admin-realisation-list {
  display: grid;
  gap: 8px;
}

.admin-realisation-list a {
  display: grid;
  gap: 3px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fafafa;
  transition: border-color .2s ease, background .2s ease;
}

.admin-realisation-list a:hover {
  border-color: var(--red);
  background: #fff8f9;
}

.admin-realisation-list span {
  color: var(--ink);
  font-weight: 900;
}

.admin-realisation-list small {
  color: var(--muted);
}

.admin-mini-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.admin-mini-card .btn {
  margin-top: 18px;
}

.admin-actions-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.admin-action-card {
  display: block;
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.admin-action-card:hover {
  border-color: var(--red);
  transform: translateY(-3px);
  box-shadow: 0 18px 44px rgba(17,17,17,.1);
}

.admin-action-card h2 {
  margin-top: 16px;
  font-size: 32px;
}

.admin-editor-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
  gap: 24px;
  align-items: start;
}

.admin-form,
.admin-list-panel {
  min-width: 0;
}

.admin-checkline {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.admin-checkline label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fafafa;
  font-weight: 800;
}

.admin-form-separator {
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.admin-content-list {
  display: grid;
  gap: 12px;
}

.admin-content-list article {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto;
  gap: 20px;
  align-items: start;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fafafa;
}

.admin-content-list article > :first-child {
  min-width: 0;
}

.admin-content-list h3 {
  margin-top: 12px;
  margin-bottom: 8px;
  font-size: 21px;
  line-height: 1.15;
  word-break: normal;
  overflow-wrap: break-word;
}

.admin-content-list p {
  margin: 0 0 8px;
  color: var(--muted);
  line-height: 1.5;
  word-break: normal;
  overflow-wrap: break-word;
}

.admin-content-list small {
  color: #575757;
  font-weight: 800;
  display: block;
  line-height: 1.4;
}

.admin-row-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: end;
  min-width: 240px;
  max-width: 320px;
  align-content: start;
}

.admin-row-actions .btn,
.admin-row-actions form {
  flex: 0 0 auto;
}

.admin-list-panel .admin-content-list article {
  grid-template-columns: 1fr;
}

.admin-list-panel .admin-row-actions {
  justify-content: start;
  min-width: 0;
  max-width: none;
  margin-top: 4px;
}

.admin-media-preview {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 12px;
  margin: 22px 0 0;
}

.admin-media-preview img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f4f6f8;
}

.admin-shell-body {
  background: #f4f6f8;
}

.admin-shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
}

.admin-sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 22px;
  color: var(--white);
  background: #111;
  border-right: 1px solid rgba(255,255,255,.08);
}

.admin-sidebar__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255,255,255,.14);
  font-weight: 900;
}

.admin-sidebar__brand img {
  width: 74px;
  height: 50px;
  object-fit: contain;
  padding: 6px;
  border-radius: 8px;
  background: var(--white);
}

.admin-sidebar__nav {
  display: grid;
  gap: 8px;
  margin-top: 24px;
}

.admin-sidebar__nav a,
.admin-sidebar__footer a {
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 10px 12px;
  border-radius: 8px;
  color: #e8e8e8;
  font-weight: 900;
}

.admin-sidebar__nav a:hover,
.admin-sidebar__nav a.is-active {
  color: var(--white);
  background: var(--red);
}

.admin-sidebar__footer {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.14);
}

.admin-sidebar__footer strong,
.admin-sidebar__footer small {
  display: block;
  padding: 0 12px;
}

.admin-sidebar__footer strong {
  color: #fff;
  font-size: 14px;
}

.admin-sidebar__footer small {
  color: #b9b9b9;
  font-weight: 800;
  margin: 4px 0 10px;
}

.admin-sidebar__footer form {
  margin-top: 8px;
}

.admin-sidebar__footer button {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 0;
  border-radius: 8px;
  color: #fff;
  background: rgba(255,255,255,.12);
  font: inherit;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}

.admin-sidebar__footer button:hover {
  background: var(--red);
}

.admin-main {
  min-width: 0;
  padding: 34px;
}

.admin-page-head {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  align-items: start;
  margin-bottom: 26px;
}

.admin-page-head h1 {
  font-size: clamp(36px, 5vw, 58px);
}

.admin-page-head p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
}

.admin-stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 16px;
  margin-bottom: 22px;
}

.admin-stat-grid article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 30px rgba(17,17,17,.06);
}

.admin-stat-grid span,
.admin-stat-grid small {
  display: block;
  color: var(--muted);
  font-weight: 800;
}

.admin-stat-grid strong {
  display: block;
  color: var(--ink);
  font-size: 46px;
  line-height: 1;
  margin: 12px 0 8px;
}

.admin-table-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 34px rgba(17,17,17,.07);
}

.admin-table {
  min-width: 780px;
}

.admin-table__head,
.admin-table__row {
  display: grid;
  grid-template-columns: 1.1fr 1.2fr 1.4fr .8fr .8fr auto;
  gap: 12px;
  align-items: center;
  padding: 14px 18px;
}

.admin-table__head {
  color: #596273;
  background: #f6f7f8;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.admin-table__row {
  border-top: 1px solid var(--line);
}

.admin-table__row strong,
.admin-table__row small {
  display: block;
}

.admin-table__row small {
  color: var(--muted);
}

.admin-status {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 4px 9px;
  border-radius: 8px;
  color: #222;
  background: #eee;
  font-size: 12px;
  font-weight: 900;
}

.admin-status--pending { color: #6b3500; background: #ffe0b5; }
.admin-status--processing { color: #084b83; background: #cfe8ff; }
.admin-status--completed { color: #145b35; background: #d8f2e2; }
.admin-status--cancelled { color: #7a1828; background: #f8d2d8; }

.admin-empty {
  padding: 24px;
  color: var(--muted);
}

.admin-order-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 22px;
  align-items: start;
}

.admin-order-items {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.admin-order-items div {
  display: grid;
  gap: 4px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fafafa;
}

.admin-status-form,
.order-form {
  display: grid;
  gap: 10px;
}

.admin-status-form {
  margin-top: 18px;
}

.order-form {
  margin: 20px 0 28px;
}

.admin-order-total {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.admin-order-total span,
.admin-order-total strong {
  display: block;
}

.admin-order-total strong {
  color: var(--ink);
  font-size: 30px;
}

.admin-editor-layout--single {
  grid-template-columns: minmax(0, 780px);
}

.auth-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  background: #f4f6f8;
}

.auth-card {
  width: min(100%, 460px);
  display: grid;
  gap: 16px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 48px rgba(17,17,17,.10);
}

.auth-card img {
  width: 92px;
  height: 62px;
  object-fit: contain;
}

.auth-card h1 {
  font-size: 38px;
  margin: 0;
}

.auth-card p {
  margin: 0;
  color: var(--muted);
}

.auth-card form {
  display: grid;
  gap: 12px;
}

.auth-card label {
  font-weight: 900;
}

.auth-card a {
  color: var(--red);
  font-weight: 900;
}

.auth-checkline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
}

/* Premium home experience */
.premium-hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(118deg, rgba(17,17,17,.98) 0%, rgba(17,17,17,.92) 42%, rgba(178,31,53,.88) 100%),
    #111111;
  isolation: isolate;
}
.premium-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 72px 72px;
  transform: perspective(600px) rotateX(62deg) translateY(-160px) scale(1.35);
  transform-origin: top;
  opacity: .35;
  z-index: -2;
}
.hero-noise {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(128deg, transparent 0%, rgba(255,255,255,.10) 18%, transparent 36%),
    linear-gradient(48deg, transparent 0%, rgba(178,31,53,.28) 42%, transparent 68%);
  z-index: -1;
}
.hero-ticker {
  border-bottom: 1px solid rgba(255,255,255,.13);
  border-top: 1px solid rgba(255,255,255,.08);
  overflow: hidden;
  background: rgba(17,17,17,.38);
  backdrop-filter: blur(16px);
}
.ticker-track {
  display: flex;
  gap: 34px;
  width: max-content;
  min-height: 46px;
  align-items: center;
  animation: ticker 30s linear infinite;
}
.ticker-track span {
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
  white-space: nowrap;
}
.ticker-track span::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 16px;
  background: var(--red-soft);
  transform: rotate(45deg);
}
.premium-hero__grid {
  min-height: 720px;
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 54px;
  align-items: center;
  padding: 76px 0 92px;
}
.premium-hero h1 {
  color: #fff;
  font-size: clamp(54px, 8vw, 106px);
  line-height: .9;
  letter-spacing: 0;
  margin-bottom: 22px;
}
.hero-kicker {
  color: #f6d7dc;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-size: 13px;
  margin-bottom: 20px;
}
.hero-changing {
  color: #fff;
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 900;
  line-height: 1.14;
  min-height: 88px;
  max-width: 680px;
}
.hero-changing span {
  background: linear-gradient(90deg, #ffffff, #ffd5dc);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-lead {
  color: #eeeeee;
  font-size: 19px;
  max-width: 650px;
}
.premium-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 36px;
}
.premium-metrics div {
  padding: 20px;
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.15);
  backdrop-filter: blur(12px);
}
.premium-metrics strong {
  display: block;
  color: #fff;
  font-size: 34px;
  line-height: 1;
}
.premium-metrics span {
  color: #dddddd;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 800;
}
.premium-hero__stage { position: relative; }
.hero-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 0;
  border: 1px solid rgba(255,255,255,.18);
  background: #f4f4f4;
  box-shadow: 0 40px 90px rgba(0,0,0,.38);
  overflow: hidden;
  border-radius: 6px;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 900ms ease, transform 1200ms ease;
}
.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #f4f4f4;
}
.slide-caption {
  position: absolute;
  left: 22px;
  right: auto;
  bottom: 22px;
  width: min(430px, calc(100% - 44px));
  padding: 18px 20px;
  color: #fff;
  background: rgba(17,17,17,.82);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(18px);
}
.slide-caption span {
  display: block;
  color: #ffbec8;
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 900;
}
.slide-caption strong {
  display: block;
  font-size: 21px;
  line-height: 1.08;
  margin-top: 8px;
}
.hero-panel-card {
  position: absolute;
  right: 18px;
  top: 18px;
  width: min(270px, 48%);
  padding: 20px;
  color: #fff;
  background: linear-gradient(135deg, rgba(178,31,53,.94), rgba(17,17,17,.86));
  border: 1px solid rgba(255,255,255,.25);
  box-shadow: 0 24px 60px rgba(0,0,0,.28);
  animation: floatPanel 5s ease-in-out infinite;
}
.hero-panel-card strong,
.hero-panel-card small { display: block; }
.hero-panel-card small { color: #f2f2f2; margin-top: 5px; }
.pulse-dot {
  display: inline-block;
  width: 11px;
  height: 11px;
  background: #fff;
  margin-right: 8px;
  box-shadow: 0 0 0 0 rgba(255,255,255,.55);
  animation: pulse 1.8s infinite;
}
.premium-intro { background: #fff; }
.premium-stack {
  position: relative;
  min-height: 360px;
}
.stack-card {
  position: absolute;
  width: min(420px, 92%);
  padding: 170px 28px 28px;
  box-shadow: 0 24px 55px rgba(17,17,17,.13);
  border: 1px solid rgba(17,17,17,.08);
  overflow: hidden;
}
.stack-card img {
  position: absolute;
  inset: 0 0 auto;
  width: 100%;
  height: 150px;
  object-fit: cover;
  opacity: .72;
}
.stack-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,.26) 42%, transparent 100%);
  pointer-events: none;
}
.stack-card span {
  position: relative;
  z-index: 1;
  display: block;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .18em;
  margin-bottom: 12px;
}
.stack-card strong {
  position: relative;
  z-index: 1;
  display: block;
  font-size: 28px;
  color: inherit;
}
.stack-card small { position: relative; z-index: 1; display: block; margin-top: 8px; font-size: 15px; }
.stack-card.is-red { top: 0; left: 4%; color: #fff; background: var(--red); }
.stack-card.is-dark { top: 118px; right: 0; color: #fff; background: var(--ink); }
.stack-card.is-light { bottom: 0; left: 14%; color: var(--ink); background: #fff; }
.premium-band {
  background: linear-gradient(180deg, #f4f4f4 0%, #ffffff 100%);
}
.premium-domain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.premium-domain-card,
.premium-service-card,
.premium-article-card,
.why-item {
  position: relative;
  overflow: hidden;
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(17,17,17,.08);
  padding: 30px;
  min-height: 280px;
  box-shadow: 0 18px 50px rgba(17,17,17,.07);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.domain-image {
  width: calc(100% + 60px);
  height: 170px;
  margin: -30px -30px 24px;
  object-fit: cover;
}
.premium-domain-card:hover,
.premium-service-card:hover,
.premium-article-card:hover,
.why-item:hover {
  transform: translateY(-7px);
  border-color: rgba(178,31,53,.32);
  box-shadow: 0 26px 70px rgba(17,17,17,.13);
}
.premium-domain-card::after,
.premium-service-card::after,
.premium-article-card::after,
.why-item::after {
  content: "";
  position: absolute;
  inset: auto -40px -60px auto;
  width: 170px;
  height: 170px;
  background: linear-gradient(135deg, rgba(178,31,53,.18), rgba(17,17,17,.08));
  transform: rotate(18deg);
}
.domain-index {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 46px;
  font-weight: 900;
  color: rgba(17,17,17,.06);
}
.premium-services {
  color: #fff;
  background: #111;
  overflow: hidden;
}
.premium-services h2,
.premium-services h3,
.premium-services .section-head p { color: #fff; }
.premium-services .btn-outline { color: #fff; border-color: rgba(255,255,255,.44); background: transparent; }
.service-marquee {
  overflow: hidden;
  padding: 12px 0 24px;
}
.service-marquee__track {
  display: flex;
  gap: 22px;
  width: max-content;
  animation: cardsMove 42s linear infinite;
}
.service-marquee:hover .service-marquee__track { animation-play-state: paused; }
.premium-service-card {
  width: 340px;
  flex: 0 0 auto;
  color: var(--charcoal);
  min-height: 340px;
}
.premium-why {
  background: linear-gradient(135deg, #ffffff 0%, #f4f4f4 100%);
}
.premium-why__grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 18px;
}
.premium-title-card {
  color: #fff;
  background: linear-gradient(135deg, #111, #333);
  padding: 36px;
  min-height: 320px;
}
.premium-title-card h2,
.premium-title-card p { color: #fff; }
.why-item span {
  color: var(--red);
  font-weight: 900;
  letter-spacing: .16em;
}
.premium-director {
  background: #111;
  color: #fff;
}
.premium-director h2,
.premium-director h3,
.premium-director p { color: #fff; }
.premium-panel {
  color: #fff;
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.14);
  backdrop-filter: blur(16px);
}
.premium-panel .quote { color: #fff; }
.director-visual { position: relative; }
.feature-image {
  width: 100%;
  min-height: 460px;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 28px 70px rgba(0,0,0,.32);
}
.director-visual .visual-placeholder {
  min-height: 460px;
  background:
    linear-gradient(135deg, rgba(178,31,53,.94), rgba(17,17,17,.92)),
    url("/static/img/corporate-hero.svg") center/cover;
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 28px 70px rgba(0,0,0,.32);
}
.director-ribbon {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  padding: 18px;
  color: #fff;
  background: rgba(17,17,17,.78);
  border-left: 5px solid var(--red);
  font-weight: 900;
}
.premium-news { background: #fff; }
.premium-article-card {
  min-height: 300px;
  display: flex;
  flex-direction: column;
}
.article-cover {
  width: calc(100% + 60px);
  height: 170px;
  object-fit: cover;
  margin: -30px -30px 22px;
}
.premium-article-card .text-link {
  margin-top: auto;
  color: var(--red);
  font-weight: 900;
}
.premium-gallery-section {
  background: #f4f4f4;
  overflow: hidden;
}
.premium-gallery {
  display: grid;
  grid-template-columns: 1.2fr .8fr 1fr;
  gap: 20px;
}
.premium-gallery-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  background: #111;
  color: #fff;
  box-shadow: 0 24px 60px rgba(17,17,17,.14);
}
.premium-gallery-card:nth-child(2) { margin-top: 48px; }
.premium-gallery-card img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  transition: transform 5s ease;
}
.premium-gallery-card:hover img { transform: scale(1.08); }
.premium-gallery-card div {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 22px;
  background: linear-gradient(180deg, transparent, rgba(17,17,17,.88));
}
.premium-gallery-card strong,
.premium-gallery-card span { display: block; }
.premium-gallery-card strong { font-size: 22px; }
.premium-gallery-card span { color: #e7e7e7; }
.premium-cta {
  color: #fff;
  background: linear-gradient(135deg, #b21f35, #111111);
  padding: 90px 0;
}
.premium-cta__inner {
  display: grid;
  grid-template-columns: 1fr auto .9fr;
  gap: 30px;
  align-items: center;
}
.premium-cta h2,
.premium-cta p { color: #fff; }
.cta-image {
  width: 100%;
  min-height: 300px;
  max-height: 390px;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 26px 70px rgba(0,0,0,.24);
  clip-path: polygon(9% 0, 100% 0, 100% 100%, 0 100%);
}
.category-showcase {
  margin: -10px 0 28px;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--line);
  box-shadow: 0 20px 50px rgba(17,17,17,.08);
}
.category-showcase img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform 5s ease;
}
.category-showcase:hover img { transform: scale(1.05); }
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes cardsMove {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes floatPanel {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(14px); }
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255,255,255,.5); }
  70% { box-shadow: 0 0 0 14px rgba(255,255,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}

@media (max-width: 980px) {
  .topbar__inner { align-items: flex-start; flex-direction: column; padding: 10px 0; }
  .mobile-toggle { display: inline-grid; place-items: center; }
  .nav-links { position: absolute; left: 0; right: 0; top: 94px; background: var(--white); border-bottom: 1px solid var(--line); display: none; flex-direction: column; align-items: flex-start; padding: 22px 24px; }
  .nav-links.is-open { display: flex; }
  .hero__grid, .split, .detail-layout { grid-template-columns: 1fr; }
  .hero__grid { min-height: auto; padding: 48px 0; }
  .hero__media { min-height: 340px; }
  .grid-2, .grid-3, .grid-4, .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .section-head { align-items: flex-start; flex-direction: column; }
  .premium-hero__grid,
  .premium-why__grid,
  .premium-gallery,
  .page-hero__grid,
  .premium-cta__inner { grid-template-columns: 1fr; }
  .premium-hero__grid { min-height: auto; padding: 58px 0 70px; }
  .premium-hero__stage,
  .hero-slider { min-height: 0; }
  .premium-domain-grid { grid-template-columns: 1fr; }
  .premium-title-card { min-height: auto; }
  .page-hero__grid img,
  .cta-image { clip-path: none; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 22px, var(--max)); }
  .nav { height: 68px; }
  .brand img { height: 44px; width: 142px; }
  .nav-links { top: 68px; }
  h1 { font-size: 40px; }
  .lead { font-size: 17px; }
  .hero__media { min-height: 260px; border-width: 6px; }
  .stat-row, .grid-2, .grid-3, .grid-4, .footer-grid, .form-grid { grid-template-columns: 1fr; }
  .section { padding: 58px 0; }
  .btn { width: 100%; }
  .premium-hero h1 { font-size: 48px; }
  .hero-changing { min-height: 120px; }
  .premium-metrics { grid-template-columns: 1fr; }
  .premium-hero__stage,
  .hero-slider { min-height: 0; }
  .hero-panel-card { position: relative; right: auto; top: auto; width: 100%; margin-top: 16px; }
  .slide-caption { left: 12px; right: auto; bottom: 12px; width: calc(100% - 24px); padding: 12px; }
  .slide-caption strong { font-size: 20px; }
  .premium-stack { min-height: auto; display: grid; gap: 14px; }
  .stack-card { position: static; width: 100%; }
  .service-marquee__track { animation: none; width: auto; display: grid; grid-template-columns: 1fr; }
  .premium-service-card { width: 100%; }
  .premium-gallery-card:nth-child(2) { margin-top: 0; }
  .page-hero__grid img { min-height: 230px; }
  .category-showcase img { height: 220px; }
  .cta-image { min-height: 220px; }
}

/* Clear institutional redesign inspired by portal layouts */
:root {
  --portal-navy: #24384f;
  --portal-blue: rgba(178, 31, 53, .76);
  --portal-blue-dark: rgba(143, 23, 40, .86);
  --portal-green: #2fbd68;
  --portal-orange: #ff641f;
  --portal-orange-dark: #e85010;
  --portal-bg: #f6f7f9;
  --portal-text: #2d333c;
}

body {
  color: var(--portal-text);
  background: var(--portal-bg);
}

.topbar {
  background: #22344a;
}

.topbar [data-rotating-text] {
  display: inline-block;
  min-width: min(100%, 520px);
  font-weight: 700;
}

.site-header {
  background: #fff;
  box-shadow: 0 1px 10px rgba(36, 56, 79, .08);
}

.nav {
  height: 104px;
}

.brand img {
  height: 90px;
  width: 138px;
  object-fit: contain;
}

.nav-links {
  gap: 22px;
  font-size: 15px;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
}

.nav-links a {
  position: relative;
  padding-bottom: 8px;
  color: var(--portal-navy);
}

.nav-links a:hover {
  color: var(--portal-orange);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  border-radius: 999px;
  background: var(--portal-orange);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .2s ease;
}

.nav-links a:hover::after,
.nav-links a.is-active::after {
  transform: scaleX(1);
}

.nav-links a.is-active {
  color: var(--portal-orange);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 7px;
  color: #fff;
  background: var(--portal-orange);
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(255, 100, 31, .24);
  white-space: nowrap;
}

.btn {
  border-radius: 7px;
}

.btn-primary {
  background: var(--portal-orange);
  box-shadow: 0 14px 28px rgba(255, 100, 31, .23);
}

.btn-primary:hover {
  background: var(--portal-orange-dark);
}

.btn-outline {
  color: var(--portal-orange);
  border-color: var(--portal-orange);
  background: #fff;
}

.btn-whatsapp {
  background: #159447;
}

.clear-hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(105deg, rgba(143, 23, 40, .92), rgba(178, 31, 53, .68));
  isolation: isolate;
}

.clear-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: url("/static/img/ctac/home-choice-text-clean.png") center 42%/cover no-repeat;
  opacity: .72;
}

.clear-hero__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(71, 8, 20, .46), rgba(71, 8, 20, .12));
}

.clear-hero__ticker {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,.2);
  background: rgba(34, 52, 74, .86);
  backdrop-filter: blur(12px);
}

.clear-hero__ticker .ticker-track {
  min-height: 46px;
}

.clear-hero__ticker .ticker-track span {
  color: #fff;
}

.clear-hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 430px;
  gap: 70px;
  align-items: center;
  padding: 70px 0 96px;
}

.clear-hero__brand {
  position: relative;
  z-index: 4;
  max-width: 820px;
  padding: 30px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 10px;
  background: rgba(71, 8, 20, .22);
  backdrop-filter: blur(8px);
}

.clear-hero__brand > img {
  position: relative;
  z-index: 5;
  width: 210px;
  height: auto;
  max-height: 272px;
  object-fit: contain;
  padding: 14px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .96);
  margin-bottom: 20px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .22);
}

.clear-eyebrow {
  margin: 0 0 10px;
  color: #eafcff;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.clear-hero h1 {
  margin-bottom: 26px;
  color: #fff;
  font-size: clamp(48px, 6vw, 76px);
  line-height: 1;
}

.clear-hero__lead {
  max-width: 780px;
  margin: 0;
  color: #fff;
  font-size: clamp(22px, 2.4vw, 31px);
  line-height: 1.5;
  font-weight: 600;
}

.clear-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 34px;
}

.clear-hero-card {
  padding: 36px;
  text-align: center;
  border-radius: 12px;
  background: #fff;
  color: var(--portal-navy);
  box-shadow: 0 24px 70px rgba(23, 44, 64, .22);
}

.clear-hero-card img {
  width: 154px;
  height: auto;
  max-height: 202px;
  object-fit: contain;
  margin: 0 auto 22px;
}

.clear-hero-card h2 {
  color: var(--portal-navy);
  font-size: 27px;
  line-height: 1.15;
}

.clear-hero-card p {
  color: #687280;
  font-size: 17px;
}

.clear-director {
  position: relative;
  overflow: hidden;
  background: #fff;
}

.clear-director::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.96), rgba(255,255,255,.72)),
    url("/static/img/ctac/home-choice-text-clean.png") center/cover no-repeat;
  opacity: .72;
}

.clear-director__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, .78fr) minmax(0, 1.22fr);
  gap: 46px;
  align-items: center;
}

.clear-director__media {
  position: relative;
  min-height: 455px;
  overflow: hidden;
  border-radius: 10px;
  background: #f4f4f4;
  box-shadow: 0 24px 65px rgba(36, 56, 79, .16);
}

.clear-director__media img {
  width: 100%;
  height: 100%;
  min-height: 455px;
  object-fit: cover;
  object-position: center;
}

.clear-director__media span {
  position: absolute;
  left: 24px;
  bottom: 24px;
  padding: 12px 18px;
  border-radius: 999px;
  color: #fff;
  background: rgba(143, 23, 40, .88);
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(71, 8, 20, .22);
}

.clear-director__content {
  padding: 38px 42px;
  border-left: 6px solid var(--portal-orange);
  border-radius: 10px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 20px 60px rgba(36, 56, 79, .12);
}

.clear-director__content .clear-eyebrow {
  color: var(--portal-orange);
}

.clear-director__content h2 {
  color: var(--portal-navy);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.12;
}

.clear-director__content .article-content,
.clear-director__content p {
  color: #384250;
  font-size: 17px;
  line-height: 1.62;
}

.clear-director__signature {
  display: grid;
  gap: 3px;
  margin: 22px 0;
  padding-top: 18px;
  border-top: 1px solid #e8edf2;
}

.clear-director__signature strong {
  color: var(--portal-navy);
  font-size: 20px;
}

.clear-director__signature span {
  color: #697586;
  font-weight: 700;
}

.home-director-profile {
  background: var(--portal-bg);
}

.home-director-profile__grid {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  gap: 34px;
  align-items: center;
}

.home-director-profile__content {
  padding: 34px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(36, 56, 79, .1);
}

.home-director-profile__content .clear-eyebrow {
  color: var(--portal-orange);
}

.home-director-profile__content h2 {
  color: var(--portal-navy);
  font-size: clamp(30px, 3.6vw, 50px);
  line-height: 1.08;
}

.home-director-profile__content p {
  color: #46515f;
  font-size: 17px;
}

.home-director-profile__gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.home-director-profile__gallery article {
  position: relative;
  min-height: 270px;
  overflow: hidden;
  border-radius: 10px;
  background: #17283d;
  box-shadow: 0 18px 46px rgba(36, 56, 79, .14);
}

.home-director-profile__gallery img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center;
}

.home-director-profile__gallery div {
  position: absolute;
  inset: auto 18px 18px;
  padding: 10px 12px;
  border-radius: 8px;
  color: #fff;
  background: rgba(12, 24, 38, .34);
  backdrop-filter: blur(4px);
}

.home-director-profile__gallery span,
.home-director-profile__gallery strong {
  display: block;
}

.home-director-profile__gallery span {
  color: #ffb000;
  font-size: 8px;
  font-weight: 900;
  text-transform: uppercase;
}

.home-director-profile__gallery strong {
  margin-top: 3px;
  font-size: 10px;
  line-height: 1.2;
}

.clear-news-section,
.clear-overview,
.clear-partners,
.clear-services {
  background: var(--portal-bg);
}

.clear-news-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(360px, .75fr);
  gap: 34px;
  padding: 34px;
  background: #fff;
}

.clear-section-title {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 26px;
}

.clear-section-title h2 {
  margin: 0;
  color: var(--portal-navy);
  font-size: clamp(30px, 3vw, 46px);
  line-height: 1;
}

.clear-section-title span {
  flex: 1;
  max-width: 180px;
  height: 2px;
  background: var(--portal-green);
}

.clear-section-title--center {
  justify-content: center;
  text-align: center;
}

.clear-title-spaced {
  margin-top: 58px;
}

.clear-feature-news,
.clear-activity-slider {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(36, 56, 79, .13);
  background: #16283d;
}

.clear-feature-news img,
.clear-activity-slide img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  opacity: .9;
}

.clear-feature-news::after,
.clear-activity-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.72));
}

.clear-feature-news div,
.clear-activity-slide div {
  position: absolute;
  z-index: 1;
  left: 42px;
  right: 42px;
  bottom: 38px;
  text-align: center;
}

.clear-feature-news h3,
.clear-activity-slide h3 {
  color: #fff;
  font-size: clamp(28px, 3vw, 40px);
  text-shadow: 0 3px 12px rgba(0,0,0,.55);
}

.clear-feature-news p,
.clear-activity-slide p {
  color: #fff;
  font-size: 18px;
}

.clear-activity-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity .7s ease, transform 1s ease;
}

.clear-activity-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.clear-link-row {
  display: flex;
  justify-content: flex-end;
  margin-top: 22px;
}

.clear-link-row a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 42px;
  padding: 0 22px;
  border: 1px solid #ffb000;
  border-radius: 999px;
  color: #f0a000;
  font-weight: 700;
}

.clear-facts {
  max-height: 430px;
  overflow-y: auto;
  padding-right: 10px;
}

.clear-facts article {
  padding: 22px 24px;
  margin-bottom: 14px;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(36, 56, 79, .12);
}

.clear-facts strong {
  display: block;
  margin-bottom: 8px;
  color: var(--portal-orange);
  font-size: 22px;
  line-height: 1.25;
}

.clear-facts strong::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-right: 10px;
  background: #ffb000;
  clip-path: polygon(50% 0, 62% 35%, 100% 35%, 70% 57%, 82% 100%, 50% 74%, 18% 100%, 30% 57%, 0 35%, 38% 35%);
}

.clear-facts p {
  margin: 0;
  color: #333a44;
  font-size: 18px;
  line-height: 1.55;
}

.clear-overview-grid {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 58px;
}

.clear-activity-list {
  display: grid;
  gap: 28px;
}

.clear-activity-list article {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 24px;
  align-items: center;
}

.clear-activity-list img {
  width: 150px;
  height: 90px;
  object-fit: cover;
}

.clear-activity-list h3 {
  color: var(--portal-navy);
  font-size: 22px;
  line-height: 1.35;
  margin-bottom: 6px;
}

.clear-activity-list p {
  margin: 0;
  color: #737b86;
  font-size: 16px;
}

.clear-activity-list p::before {
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  margin-right: 8px;
  vertical-align: -2px;
  border: 2px solid #ff8a3c;
  border-radius: 3px;
}

.clear-perimeter-card {
  padding: 30px;
  background: #fff;
  box-shadow: 0 16px 44px rgba(36, 56, 79, .1);
}

.clear-perimeter-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.clear-perimeter-row a,
.clear-perimeter-row span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 10px;
  border-radius: 8px;
  text-align: center;
  color: #fff;
  background: #1a9840;
  font-weight: 800;
  line-height: 1.15;
}

.clear-perimeter-core {
  display: grid;
  place-items: center;
  min-height: 104px;
  margin: 12px 0;
  border-radius: 10px;
  color: #fff;
  background: #253f68;
  font-size: clamp(16px, 2vw, 24px);
  font-weight: 900;
  padding: 16px;
  text-align: center;
  line-height: 1.18;
}

.clear-perimeter-row:not(.clear-perimeter-row--top) span {
  background: #f27805;
}

.clear-benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.clear-benefits-grid article {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  min-height: 116px;
  padding: 26px;
  background: #fff;
  box-shadow: 0 12px 35px rgba(36, 56, 79, .1);
}

.clear-benefits-grid p {
  margin: 0;
  color: #333a44;
  font-size: 20px;
  line-height: 1.35;
}

.clear-benefits-grid span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: var(--portal-orange);
  border: 2px solid var(--portal-orange);
  border-radius: 8px;
  font-weight: 900;
}

.clear-partners {
  padding-top: 72px;
}

.clear-partners__grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}

.clear-partner-card {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 14px;
  align-items: center;
  justify-items: center;
  min-height: 158px;
  padding: 22px 14px;
  border: 1px solid rgba(36, 56, 79, .1);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 35px rgba(36, 56, 79, .09);
  text-align: center;
}

.clear-partner-card__mark {
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  border: 1px solid rgba(0, 217, 255, .2);
  border-radius: 8px;
  color: var(--portal-navy);
  background: linear-gradient(135deg, rgba(0, 217, 255, .1), rgba(245, 196, 78, .16));
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
}

.clear-partner-card__logo {
  width: 100%;
  height: 82px;
  object-fit: contain;
  object-position: center;
  padding: 7px;
  border-radius: 8px;
  background: #fff;
}

.clear-partner-card strong {
  display: block;
  color: var(--portal-navy);
  font-size: 13px;
  line-height: 1.25;
  text-transform: uppercase;
}

.clear-service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.clear-service-card {
  min-height: 300px;
  padding: 28px;
  background: #fff;
  box-shadow: 0 12px 35px rgba(36, 56, 79, .1);
}

.clear-service-card .icon-box {
  background: var(--portal-blue);
}

.clear-service-card > span {
  display: block;
  color: var(--portal-orange);
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
}

.clear-service-card h3 {
  margin-top: 10px;
  color: var(--portal-navy);
}

.clear-service-card p {
  color: #626c78;
}

.clear-service-card a {
  color: var(--portal-orange);
  font-weight: 800;
}

.home-showcase {
  border: 1px solid rgba(36, 56, 79, .08);
  border-radius: 10px;
}

.home-section-subtitle {
  max-width: 760px;
  margin: -12px 0 26px;
  color: #5c6673;
  font-size: 18px;
  line-height: 1.55;
}

.home-section-subtitle--wide {
  max-width: 880px;
}

.home-slide-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin-bottom: 14px;
  padding: 5px 11px;
  border: 1px solid rgba(255,255,255,.32);
  border-radius: 8px;
  color: #fff;
  background: rgba(255,255,255,.14);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.home-proof-panel .clear-facts {
  max-height: none;
}

.home-proof-panel .clear-facts article {
  border-left: 4px solid var(--portal-green);
}

.home-realisation-list {
  gap: 18px;
}

.home-realisation-list article {
  position: relative;
  grid-template-columns: 176px 1fr;
  min-height: 132px;
  padding: 14px;
  border: 1px solid rgba(36, 56, 79, .08);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(36, 56, 79, .08);
}

.home-realisation-list img {
  width: 176px;
  height: 112px;
  border-radius: 8px;
}

.home-realisation-list span {
  display: inline-flex;
  width: fit-content;
  min-height: 26px;
  margin-bottom: 8px;
  padding: 4px 9px;
  border-radius: 8px;
  color: #6b300f;
  background: #ffe4c2;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.home-realisation-list h3 {
  margin-bottom: 5px;
}

.home-realisation-list p::before {
  display: none;
}

.home-domain-menu {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.home-domain-menu a {
  position: relative;
  display: grid;
  align-content: end;
  min-height: 196px;
  overflow: hidden;
  padding: 20px;
  border-radius: 10px;
  color: #fff;
  background: #17283d;
  box-shadow: 0 16px 40px rgba(36, 56, 79, .14);
}

.home-domain-menu a::before,
.home-domain-menu a::after {
  content: "";
  position: absolute;
  inset: 0;
}

.home-domain-menu a::before {
  background-image: var(--domain-image);
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform .35s ease;
}

.home-domain-menu a::after {
  background: linear-gradient(180deg, rgba(0,0,0,.12), rgba(15, 29, 46, .86));
}

.home-domain-menu a:hover::before {
  transform: scale(1.1);
}

.home-domain-menu span,
.home-domain-menu strong,
.home-domain-menu small {
  position: relative;
  z-index: 1;
}

.home-domain-menu span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 12px;
  border-radius: 8px;
  color: #17283d;
  background: #ffb000;
  font-weight: 900;
}

.home-domain-menu strong {
  display: block;
  font-size: 21px;
  line-height: 1.12;
}

.home-domain-menu small {
  display: block;
  margin-top: 8px;
  color: #eef2f6;
  font-size: 14px;
  line-height: 1.35;
}

.home-service-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.home-service-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(36, 56, 79, .08);
  border-radius: 10px;
}

.home-service-card > img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.home-service-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px;
}

.home-service-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.home-service-card__top span {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  color: #fff;
  background: var(--portal-blue);
  font-weight: 900;
}

.home-service-card__top strong {
  color: var(--portal-orange);
  font-size: 12px;
  text-transform: uppercase;
}

.home-service-card ul {
  display: grid;
  gap: 7px;
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
}

.home-service-card li {
  color: #46515f;
  font-size: 14px;
  font-weight: 700;
}

.home-service-card li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 9px;
  border-radius: 50%;
  background: var(--portal-green);
}

.home-service-card a {
  margin-top: auto;
}

.premium-page-hero .page-hero__grid img {
  border-radius: 10px;
}

.page-hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.page-hero-pills span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 5px 12px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 8px;
  color: #fff;
  background: rgba(255,255,255,.1);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.premium-page-section {
  background: #f7f7f5;
}

.premium-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, .75fr);
  gap: 34px;
  align-items: center;
}

.premium-intro-grid h2 {
  color: var(--portal-navy);
}

.premium-intro-grid p {
  color: #46515f;
  font-size: 18px;
}

.premium-proof-card {
  min-height: 250px;
  padding: 30px;
  border-radius: 10px;
  color: #fff;
  background: linear-gradient(135deg, #17283d, #24384f);
  box-shadow: 0 22px 48px rgba(36, 56, 79, .18);
}

.premium-proof-card strong {
  display: block;
  margin-bottom: 18px;
  color: #ffb000;
  font-size: 14px;
  text-transform: uppercase;
}

.premium-proof-card p {
  color: #fff;
  font-size: 26px;
  line-height: 1.2;
}

.premium-proof-card span {
  color: #d6dde6;
  font-weight: 800;
}

.about-work-side {
  display: grid;
  gap: 16px;
}

.about-work-side > img,
.about-identity__facts > img,
.about-method-media img {
  width: 100%;
  height: 190px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 16px 38px rgba(36, 56, 79, .1);
}

.about-work-side .premium-proof-card {
  min-height: 230px;
}

.premium-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.premium-image-card {
  overflow: hidden;
  border: 1px solid rgba(36, 56, 79, .08);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 16px 38px rgba(36, 56, 79, .1);
}

.premium-image-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: clamp(190px, 18vw, 250px);
  object-fit: cover;
}

.premium-image-card div {
  padding: 24px;
}

.premium-image-card span {
  display: inline-flex;
  min-height: 28px;
  margin-bottom: 12px;
  padding: 4px 9px;
  border-radius: 8px;
  color: #6b300f;
  background: #ffe4c2;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.premium-image-card h3 {
  color: var(--portal-navy);
}

.premium-image-card p {
  color: #5d6875;
}

.premium-values {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.premium-values article {
  min-height: 210px;
  padding: 28px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 14px 35px rgba(36, 56, 79, .1);
}

.premium-values span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border-radius: 8px;
  color: #fff;
  background: var(--portal-blue);
  font-weight: 900;
}

.management-focus-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.management-focus-card {
  min-height: 220px;
  padding: 26px;
  border: 1px solid rgba(36, 56, 79, .08);
  border-radius: 10px;
  background: linear-gradient(180deg, #fff, #f8fafc);
  box-shadow: 0 14px 35px rgba(36, 56, 79, .08);
}

.management-focus-card span {
  display: inline-flex;
  min-height: 28px;
  margin-bottom: 14px;
  padding: 4px 10px;
  border-radius: 8px;
  color: #6b300f;
  background: #ffe4c2;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.management-focus-card h3 {
  color: var(--portal-navy);
}

.management-focus-card p {
  color: #4d5968;
}

.management-results-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.management-page-hero .management-page-hero__image {
  width: 100%;
  aspect-ratio: auto;
  min-height: 0;
  max-height: 420px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 12px;
  object-fit: contain;
  object-position: center top;
}

.management-intro__image {
  height: 260px;
  object-position: center 14%;
}

.management-module-card__image {
  object-position: center 16%;
}

.management-clients__image {
  object-position: center 14%;
}

.management-cta-card {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, .75fr);
  gap: 28px;
  align-items: center;
  padding: 34px;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(135deg, #17283d, #24384f);
  box-shadow: 0 20px 46px rgba(36, 56, 79, .18);
}

.management-cta-card h2,
.management-cta-card p {
  color: #fff;
}

.management-cta-card__content .eyebrow {
  color: #22c7f2;
}

.management-cta-card__content h2 {
  color: #fff;
  text-shadow: 0 6px 24px rgba(0, 0, 0, .22);
}

.management-cta-card__content > p:last-child {
  color: rgba(255, 255, 255, .94);
}

.management-cta-card__actions {
  display: grid;
  gap: 12px;
}

.management-cta-card .btn {
  justify-content: center;
}

.about-identity,
.about-clients {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, .92fr);
  gap: 38px;
  align-items: center;
}

.about-identity h2,
.about-scope h2,
.about-clients h2 {
  color: var(--portal-navy);
}

.about-identity p,
.about-scope p,
.about-clients p,
.about-method-grid p {
  color: #4d5968;
  font-size: 17px;
}

.about-identity__facts {
  display: grid;
  gap: 14px;
}

.about-identity__facts > img {
  height: 210px;
}

.about-method-media {
  display: grid;
  gap: 16px;
  max-width: 620px;
}

.about-method-media p {
  margin: 0;
}

.about-identity__facts article {
  padding: 20px;
  border: 1px solid rgba(36, 56, 79, .08);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(36, 56, 79, .08);
}

.about-identity__facts span {
  display: block;
  margin-bottom: 8px;
  color: var(--portal-blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.about-identity__facts strong {
  color: var(--portal-navy);
  font-size: 18px;
  line-height: 1.35;
}

.about-method-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.about-method-grid article {
  min-height: 230px;
  padding: 24px;
  border-radius: 10px;
  color: #fff;
  background: linear-gradient(145deg, #17283d, #263b54);
  box-shadow: 0 16px 38px rgba(36, 56, 79, .14);
}

.about-method-grid span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 8px;
  color: #17283d;
  background: #ffb000;
  font-weight: 900;
}

.about-method-grid h3,
.about-method-grid p {
  color: #fff;
}

.about-method-grid p {
  opacity: .88;
}

.about-scope {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(0, 1.22fr);
  gap: 34px;
  align-items: start;
}

.about-scope__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.about-scope__grid article {
  min-height: 280px;
  overflow: hidden;
  padding: 0 24px 24px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(36, 56, 79, .08);
}

.about-scope__grid img {
  width: calc(100% + 48px);
  height: 150px;
  margin: 0 -24px 22px;
  object-fit: cover;
}

.about-scope__grid h3 {
  color: var(--portal-navy);
}

.about-clients {
  align-items: stretch;
}

.about-clients ul {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.about-clients li {
  position: relative;
  padding-left: 24px;
  color: #344255;
  font-weight: 800;
}

.about-clients li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .68em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--portal-blue);
}

.about-clients img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 20px 48px rgba(36, 56, 79, .14);
}

.premium-director-layout {
  display: grid;
  grid-template-columns: minmax(320px, .82fr) minmax(0, 1.18fr);
  gap: 42px;
  align-items: center;
}

.premium-director-layout figure {
  position: relative;
  margin: 0;
}

.premium-director-layout figure img {
  width: 100%;
  min-height: 560px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 24px 58px rgba(36, 56, 79, .16);
}

.premium-director-layout figcaption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 8px 13px;
  border-radius: 8px;
  color: #fff;
  background: rgba(23, 40, 61, .9);
  font-weight: 900;
}

.premium-director-layout article {
  padding: 36px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 16px 40px rgba(36, 56, 79, .1);
}

.premium-signature {
  display: grid;
  gap: 4px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.premium-signature strong {
  color: var(--portal-navy);
  font-size: 21px;
}

.premium-signature span {
  color: #657181;
  font-weight: 800;
}

.director-journey-hero img {
  object-position: center;
}

.director-journey-intro {
  background: #fff;
}

.director-journey-intro__grid {
  display: grid;
  grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr);
  gap: 34px;
  align-items: stretch;
}

.director-journey-intro__grid > div,
.director-journey-intro__grid article {
  padding: 34px;
  border-radius: 10px;
  background: var(--portal-bg);
}

.director-journey-intro__grid h2 {
  color: var(--portal-navy);
  font-size: clamp(30px, 3.8vw, 52px);
  line-height: 1.05;
}

.director-journey-intro__grid p {
  color: #46515f;
  font-size: 17px;
}

.director-profile-block {
  display: grid;
  grid-template-columns: minmax(260px, .72fr) minmax(0, 1.28fr);
  gap: 26px;
  align-items: start;
}

.director-profile-block > div:first-child h2 {
  color: var(--portal-navy);
  font-size: clamp(30px, 3.8vw, 48px);
  line-height: 1.08;
}

.director-profile-facts,
.director-profile-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.director-profile-facts article {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.director-profile-facts span,
.director-profile-facts strong {
  display: block;
}

.director-profile-facts span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.director-profile-facts strong {
  margin-top: 6px;
  color: var(--ink);
}

.director-profile-columns .panel {
  min-width: 0;
}

.director-journey-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.director-journey-card {
  display: grid;
  grid-template-columns: minmax(190px, .86fr) minmax(0, 1fr);
  min-height: 310px;
  overflow: hidden;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 16px 38px rgba(36, 56, 79, .1);
}

.director-journey-card figure {
  min-height: 100%;
  margin: 0;
  background: #17283d;
}

.director-journey-card img {
  width: 100%;
  height: 100%;
  min-height: 310px;
  object-fit: cover;
  object-position: center;
}

.director-journey-card div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px;
}

.director-journey-card span {
  color: var(--portal-orange);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.director-journey-card h3 {
  margin: 10px 0 12px;
  color: var(--portal-navy);
  font-size: 24px;
  line-height: 1.12;
}

.director-journey-card p {
  margin: 0;
  color: #46515f;
  line-height: 1.65;
}

.director-journey-card:nth-child(3n + 1) {
  grid-column: span 2;
  grid-template-columns: minmax(320px, .9fr) minmax(0, 1.1fr);
}

.director-journey-closing {
  background: #fff;
}

.director-journey-closing__inner {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  padding: 34px;
  border-radius: 10px;
  background: var(--portal-navy);
}

.director-journey-closing__inner h2,
.director-journey-closing__inner p {
  color: #fff;
}

.director-journey-closing__inner p {
  max-width: 760px;
}

.premium-category-banner {
  display: grid;
  grid-template-columns: minmax(320px, .9fr) minmax(0, 1.1fr);
  gap: 30px;
  align-items: center;
  margin-bottom: 30px;
  padding: 18px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(36, 56, 79, .1);
}

.premium-category-banner img {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: clamp(230px, 28vw, 330px);
  object-fit: cover;
  border-radius: 8px;
}

.services-shortcut-nav {
  background: #fff;
}

.services-shortcut-nav__grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.services-shortcut-card {
  display: flex;
  min-height: 118px;
  padding: 14px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  border-radius: 10px;
  color: #fff;
  background: #17283d;
  box-shadow: 0 14px 30px rgba(15, 29, 46, .12);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.services-shortcut-card:hover {
  transform: translateY(-3px);
  background: #213a57;
  box-shadow: 0 18px 34px rgba(15, 29, 46, .18);
}

.services-shortcut-card span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 38px;
  margin-bottom: 16px;
  border-radius: 8px;
  background: var(--portal-orange);
  color: #102033;
  font-weight: 900;
  font-size: 15px;
}

.services-shortcut-card strong {
  display: block;
  width: 100%;
  font-size: 17px;
  line-height: 1.18;
  overflow-wrap: anywhere;
}

.premium-service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.premium-service-tile {
  display: grid;
  grid-template-columns: 220px 1fr;
  overflow: hidden;
  border: 1px solid rgba(36, 56, 79, .08);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 14px 35px rgba(36, 56, 79, .1);
}

.premium-service-tile img {
  width: 100%;
  height: 100%;
  min-height: 230px;
  object-fit: cover;
}

.premium-service-tile div {
  padding: 24px;
}

.premium-service-tile span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  border-radius: 8px;
  color: #fff;
  background: var(--portal-blue);
  font-weight: 900;
}

.premium-detail-layout {
  align-items: start;
}

.premium-detail-panel > img,
.premium-side-panel > img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 24px;
}

.premium-process {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 28px 0;
}

.premium-process span {
  min-height: 44px;
  padding: 10px;
  border-radius: 8px;
  color: var(--portal-navy);
  background: #eef3f8;
  text-align: center;
  font-weight: 900;
}

.premium-side-panel {
  position: sticky;
  top: 106px;
}

.premium-contact-form h2 {
  color: var(--portal-navy);
}

.premium-empty-panel {
  grid-column: 1 / -1;
}

.premium-empty-panel img {
  width: 100%;
  max-height: 340px;
  object-fit: cover;
  border-radius: 8px;
  margin-top: 18px;
}

.clear-cta {
  padding: 70px 0;
  color: #fff;
  background: linear-gradient(100deg, rgba(143, 23, 40, .9), rgba(178, 31, 53, .66));
}

.clear-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.clear-cta h2,
.clear-cta p {
  color: #fff;
}

.clear-cta h2 {
  font-size: clamp(34px, 4vw, 54px);
}

.page-hero,
.page-hero-visual {
  position: relative;
  overflow: hidden;
  background: linear-gradient(100deg, rgba(143, 23, 40, .94), rgba(178, 31, 53, .68));
  padding: 58px 0;
}

.page-hero::before,
.page-hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("/static/img/ctac/home-choice-text-clean.png") right center/auto 100% no-repeat;
  opacity: .26;
}

.page-hero::after,
.page-hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(71, 8, 20, .72), rgba(71, 8, 20, .28));
}

.page-hero > .container,
.page-hero__grid {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  max-width: 980px;
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1.08;
}

.page-hero .lead {
  max-width: 760px;
  font-size: 18px;
}

.page-hero .two-col > img,
.page-hero__grid img {
  width: 100%;
  max-height: 320px;
  object-fit: contain;
  object-position: center;
  padding: 12px;
  background: rgba(255,255,255,.08);
}

.page-hero__grid img,
.category-showcase,
.panel,
.card,
.gallery-card,
.premium-article-card,
.premium-domain-card,
.premium-service-card,
.why-item {
  border-radius: 7px;
}

.card,
.panel {
  border: 0;
  box-shadow: 0 12px 35px rgba(36, 56, 79, .09);
}

.footer-legal-name {
  margin-top: -8px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.footer-logo {
  width: 126px;
  max-height: 164px;
}

/* Innovation hero */
.innovation-hero {
  min-height: 430px;
  background:
    linear-gradient(115deg, rgba(11, 16, 25, .78) 0%, rgba(28, 18, 26, .58) 48%, rgba(190, 42, 65, .48) 100%),
    url("/static/img/ctac/realisations/hero-soudeur-professionnel.png") center center/cover no-repeat,
    #111;
}

.innovation-hero::before {
  background:
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255,255,255,.04) 1px, transparent 1px),
    url("/static/img/ctac/hero-banner-pages-2026.png") center center/cover no-repeat;
  background-size: 84px 84px, 84px 84px, cover;
  opacity: .8;
  animation: innovationBackdrop 16s ease-in-out infinite alternate;
}

.innovation-canvas,
.innovation-gridlines {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.innovation-canvas {
  z-index: 0;
  opacity: .72;
}

.innovation-gridlines {
  z-index: 1;
  background:
    repeating-linear-gradient(90deg, transparent 0 70px, rgba(0, 217, 255, .13) 71px, transparent 72px),
    repeating-linear-gradient(0deg, transparent 0 70px, rgba(255, 255, 255, .08) 71px, transparent 72px);
  mask-image: linear-gradient(90deg, rgba(0,0,0,.55), rgba(0,0,0,.95), rgba(0,0,0,.3));
}

.innovation-hero .clear-hero__shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(7, 10, 17, .7), rgba(95, 18, 31, .32) 58%, rgba(209, 55, 75, .24)),
    linear-gradient(180deg, rgba(255,255,255,.03), rgba(0,0,0,.22));
}

.innovation-hero .clear-hero__ticker {
  background: rgba(10, 17, 28, .88);
  border-top-color: rgba(0, 217, 255, .28);
}

.innovation-hero .ticker-track span::before {
  background: #00d9ff;
  box-shadow: 0 0 18px rgba(0, 217, 255, .8);
}

.innovation-hero .clear-hero__grid {
  grid-template-columns: minmax(0, 1fr) minmax(420px, 520px);
  gap: 42px;
  min-height: 430px;
  padding: 34px 0 46px;
}

.innovation-hero > .container {
  min-width: 0;
}

.innovation-hero .clear-hero__brand {
  padding: 0;
  min-width: 0;
  width: 100%;
  max-width: 800px;
  border: 0;
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
}

.innovation-brand-lockup {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 14px;
}

.innovation-brand-lockup img {
  width: 116px;
  height: 116px;
  object-fit: contain;
  padding: 10px;
  border-radius: 8px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 18px 44px rgba(0,0,0,.28);
}

.innovation-hero .clear-eyebrow {
  max-width: 520px;
  color: #bff6ff;
  font-size: 13px;
  line-height: 1.35;
  white-space: normal;
  overflow-wrap: anywhere;
}

.innovation-hero h1 {
  display: flex;
  flex-wrap: wrap;
  gap: .22em;
  margin-bottom: 16px;
  color: #fff;
  font-size: 56px;
  line-height: .94;
  text-shadow: 0 20px 55px rgba(0,0,0,.34);
}

.innovation-hero h1 span {
  color: #00d9ff;
}

.innovation-hero h1 .innov-wave {
  display: inline-flex;
  gap: .025em;
  color: #f5c44e;
  text-shadow:
    0 0 14px rgba(245, 196, 78, .42),
    0 18px 46px rgba(0,0,0,.34);
}

.innov-wave i {
  display: inline-block;
  font-style: normal;
  color: #f5c44e;
  animation: innovLetterWave 1.65s ease-in-out infinite;
}

.innov-wave i:nth-child(2) { animation-delay: .12s; }
.innov-wave i:nth-child(3) { animation-delay: .24s; }
.innov-wave i:nth-child(4) { animation-delay: .36s; }
.innov-wave i:nth-child(5) { animation-delay: .48s; }

.innovation-hero .clear-hero__lead {
  max-width: 760px;
  font-size: 17px;
  line-height: 1.45;
  font-weight: 700;
  text-shadow: 0 10px 36px rgba(0,0,0,.34);
  white-space: normal;
  word-break: normal;
  overflow-wrap: anywhere;
}

.innovation-words {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.innovation-words span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 13px;
  border: 1px solid rgba(0, 217, 255, .34);
  border-radius: 8px;
  color: #eafcff;
  background: rgba(0, 217, 255, .08);
  font-size: 13px;
  font-weight: 900;
  animation: innovationWord 4.8s ease-in-out infinite;
}

.innovation-words span:nth-child(2) { animation-delay: .5s; }
.innovation-words span:nth-child(3) { animation-delay: 1s; }
.innovation-words span:nth-child(4) { animation-delay: 1.5s; }

.innovation-hero .btn-outline {
  color: #fff;
  border-color: rgba(255,255,255,.58);
  background: rgba(255,255,255,.08);
}

.innovation-stage {
  position: relative;
  min-width: 0;
  min-height: 340px;
  isolation: isolate;
}

.innovation-stage::before,
.innovation-stage::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(0, 217, 255, .22);
  transform: translate(-50%, -50%) rotate(0deg);
  animation: innovationOrbit 18s linear infinite;
}

.innovation-stage::after {
  width: 310px;
  height: 310px;
  border-color: rgba(255,255,255,.18);
  animation-duration: 13s;
  animation-direction: reverse;
}

.innovation-core {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 244px;
  min-height: 286px;
  display: grid;
  justify-items: center;
  align-content: center;
  padding: 24px;
  color: #fff;
  transform: translate(-50%, -50%);
  z-index: 3;
}

.innovation-core img {
  width: 150px;
  height: 150px;
  object-fit: contain;
  padding: 14px;
  border-radius: 8px;
  background: rgba(255,255,255,.98);
  box-shadow: 0 24px 55px rgba(0,0,0,.34);
  animation: innovationLogo 4s ease-in-out infinite;
}

.innovation-core strong {
  margin-top: 18px;
  color: #fff;
  font-size: 24px;
  line-height: 1;
}

.innovation-core small {
  margin-top: 6px;
  color: #bff6ff;
  font-weight: 800;
  text-align: center;
  line-height: 1.2;
}

.innovation-ring {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(0, 217, 255, .45);
  animation: innovationPulse 2.8s ease-out infinite;
}

.innovation-ring--two {
  inset: -24px;
  border-color: rgba(255, 100, 31, .36);
  animation-delay: .55s;
}

.innovation-ring--three {
  inset: -48px;
  border-color: rgba(255,255,255,.2);
  animation-delay: 1.1s;
}

.signal-line {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 210px;
  height: 2px;
  background: linear-gradient(90deg, rgba(0,217,255,.95), rgba(255,255,255,.45), transparent);
  transform-origin: left center;
  animation: signalFlow 2.6s ease-in-out infinite;
}

.signal-line--a { transform: rotate(-28deg); }
.signal-line--b { transform: rotate(34deg); animation-delay: .45s; }
.signal-line--c { transform: rotate(146deg); animation-delay: .9s; }

.innovation-chip,
.innovation-stat {
  position: absolute;
  z-index: 4;
  padding: 16px 18px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 8px;
  color: #fff;
  background: rgba(12, 18, 28, .78);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 42px rgba(0,0,0,.2);
}

.innovation-chip {
  display: grid;
  place-content: center;
  gap: 2px;
  width: 118px;
  min-width: 118px;
  min-height: 86px;
  text-align: left;
  animation: floatPanel 4.8s ease-in-out infinite;
}

.innovation-chip strong {
  color: #00d9ff;
  font-size: 13px;
  letter-spacing: 0;
}

.innovation-chip span {
  color: #fff;
  font-weight: 900;
}

.innovation-chip--one { left: 0; top: 66px; }
.innovation-chip--two { right: 0; top: 132px; animation-delay: .6s; }
.innovation-chip--three { left: 42px; bottom: 42px; animation-delay: 1.2s; }

.innovation-stat {
  right: 22px;
  bottom: 22px;
  border-color: rgba(255, 100, 31, .44);
  background: rgba(130, 18, 36, .78);
}

.innovation-stat span,
.innovation-stat strong {
  display: block;
}

.innovation-stat span {
  color: #ffd7c8;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.innovation-stat strong {
  max-width: 190px;
  color: #fff;
  font-size: 20px;
  line-height: 1.12;
}

.innovation-canvas,
.innovation-gridlines {
  display: none;
}

.innovation-brand-lockup {
  align-items: flex-start;
}

.home-welcome-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 64px;
  min-width: 220px;
  padding: 0 22px;
  border-radius: 0;
  color: #fff;
  background: transparent;
  box-shadow: 0 18px 44px rgba(0,0,0,.28);
  font-size: 32px;
  font-weight: 900;
  line-height: 1;
  text-shadow: 0 5px 10px rgba(0,0,0,.48);
  isolation: isolate;
}

.home-welcome-badge::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  right: 0;
  top: 50%;
  height: 74px;
  transform: translateY(-50%) rotate(-2deg);
  background:
    linear-gradient(90deg, #3156d8 0 17%, #14a6dd 17% 33%, #31b94f 33% 49%, #f6d331 49% 65%, #fb7425 65% 80%, #d81763 80% 100%);
  clip-path: polygon(4% 26%, 18% 8%, 35% 22%, 52% 5%, 69% 23%, 92% 8%, 98% 50%, 89% 82%, 68% 72%, 51% 94%, 31% 74%, 11% 90%);
  filter: drop-shadow(0 14px 18px rgba(0,0,0,.22));
}

.home-welcome-chez {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  padding: 0 22px;
  border: 0;
  color: #0877bd;
  background: transparent;
  font-size: 32px;
  font-weight: 900;
  letter-spacing: .03em;
  text-shadow:
    0 2px 0 rgba(255,255,255,.65),
    0 12px 24px rgba(0,0,0,.32);
}

.home-hero-legal {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  margin: 0 0 0;
  padding: 0 10px;
  color: #fff;
  background: rgba(6, 8, 12, .92);
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
  text-shadow: 0 4px 8px rgba(0,0,0,.8);
}

.innovation-stage {
  min-height: 340px;
}

.innovation-stage::before,
.innovation-stage::after {
  display: none;
}

.innovation-stage__photo {
  position: absolute;
  inset: 0;
  overflow: hidden;
  margin: 0;
  border-radius: 8px;
  background: #07101a;
  box-shadow: 0 32px 70px rgba(0,0,0,.34);
}

.innovation-stage__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.04), rgba(0,0,0,.34)),
    linear-gradient(90deg, rgba(7, 16, 26, .2), rgba(7, 16, 26, .04) 54%, rgba(7, 16, 26, .52));
  pointer-events: none;
}

.innovation-stage__photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity .8s ease, transform 4s ease;
}

.innovation-stage__photo img.is-active {
  opacity: 1;
  transform: scale(1);
}

.innovation-stage__photo figcaption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  z-index: 2;
  display: grid;
  gap: 8px;
  color: #fff;
  text-shadow: 0 14px 34px rgba(0,0,0,.48);
}

.innovation-stage__photo figcaption span {
  max-width: 380px;
  color: #dff9ff;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.innovation-stage__photo figcaption strong {
  color: #fff;
  font-size: clamp(34px, 3vw, 46px);
  line-height: .95;
}

.innovation-video-link {
  position: absolute;
  z-index: 4;
  top: 18px;
  right: 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 15px;
  border: 1px solid rgba(255,255,255,.32);
  border-radius: 8px;
  color: #fff;
  background: rgba(130, 18, 36, .88);
  box-shadow: 0 16px 34px rgba(0,0,0,.24);
}

.innovation-video-link span {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: var(--red);
  background: #fff;
  font-size: 13px;
}

.innovation-video-link strong {
  font-size: 15px;
  line-height: 1;
  white-space: nowrap;
}

.innovation-stage .innovation-chip {
  background: rgba(7, 16, 26, .8);
}

.innovation-hero::before {
  background:
    linear-gradient(115deg, rgba(255,255,255,.08), transparent 36%),
    linear-gradient(90deg, rgba(0,217,255,.05) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: auto, 92px 92px, 92px 92px;
  opacity: .38;
  animation: none;
}

.innovation-stage__photo img {
  object-position: 62% center;
}

.innovation-stage__photo figcaption {
  right: 28px;
}

.innovation-stage__photo figcaption strong {
  font-size: clamp(36px, 3.3vw, 52px);
}

.innovation-stage .innovation-stat {
  top: auto;
  right: 22px;
  bottom: 22px;
}

.home-industrial-entry {
  position: relative;
  overflow: hidden;
  padding: 54px 0 70px;
  background:
    linear-gradient(135deg, #f6f7f8 0%, #ffffff 48%, #f0f2f5 100%);
  border-bottom: 1px solid var(--line);
}

.home-industrial-entry::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(178,31,53,.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(17,17,17,.05) 1px, transparent 1px);
  background-size: 84px 84px;
  opacity: .55;
  pointer-events: none;
}

.home-industrial-entry__grid {
  position: relative;
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 34px;
  align-items: stretch;
}

.home-industrial-domains {
  padding: 24px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 8px;
  color: #fff;
  background:
    linear-gradient(145deg, rgba(178,31,53,.97), rgba(126,18,35,.94)),
    var(--red);
  box-shadow: 0 18px 40px rgba(126,18,35,.22);
}

.home-industrial-domains p {
  margin: 0 0 18px;
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: .06em;
}

.home-industrial-domains ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.home-industrial-domains li + li {
  border-top: 1px solid rgba(255,255,255,.22);
}

.home-industrial-domains a {
  position: relative;
  display: block;
  padding: 13px 0 13px 20px;
  color: #e9edf2;
  font-size: 15px;
  font-weight: 800;
}

.home-industrial-domains a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 22px;
  width: 9px;
  height: 9px;
  background: #fff;
}

.home-industrial-main {
  min-width: 0;
  display: grid;
  gap: 24px;
}

.home-industrial-main__intro {
  max-width: 820px;
}

.home-industrial-main__intro span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--red);
  font-size: 15px;
  font-weight: 900;
  font-style: italic;
}

.home-industrial-main__intro h2 {
  max-width: 780px;
  margin-bottom: 12px;
  font-size: clamp(32px, 4vw, 52px);
}

.home-industrial-main__intro p {
  max-width: 760px;
  margin: 0;
  color: #4b5563;
  font-size: 18px;
  line-height: 1.58;
}

.home-industrial-slider {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  border-left: 4px solid #5a3a3d;
  border-right: 6px solid #8f1728;
  background: #111;
  box-shadow: 0 18px 34px rgba(17,17,17,.14);
}

.home-industrial-slider img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.035);
  transition: opacity .8s ease, transform 4.2s ease;
}

.home-industrial-slider img.is-active {
  opacity: 1;
  transform: scale(1);
}

.home-industrial-cards {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
}

.home-industrial-card {
  position: relative;
  min-height: 230px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  border: 2px solid #111;
  border-radius: 8px;
  color: #fff;
  background: #111;
  box-shadow: 0 18px 34px rgba(17,17,17,.14);
}

.home-industrial-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0,0,0,.04), rgba(0,0,0,.78)),
    linear-gradient(90deg, rgba(178,31,53,.46), transparent 54%);
}

.home-industrial-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.home-industrial-card:hover img {
  transform: scale(1.05);
}

.home-industrial-card span,
.home-industrial-card p {
  position: relative;
  z-index: 2;
}

.home-industrial-card span {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 8px;
  padding: 6px 10px;
  background: rgba(0,0,0,.76);
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.home-industrial-card p {
  margin: 0;
  color: #f2f2f2;
  font-weight: 700;
  line-height: 1.35;
}

.home-industrial-card--video {
  border-color: #4b0f1c;
}

.home-industrial-card--video::before {
  background:
    linear-gradient(180deg, rgba(0,0,0,.04), rgba(0,0,0,.76)),
    linear-gradient(90deg, rgba(130,18,36,.88), rgba(130,18,36,.42));
}

.home-industrial-card--video em {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 10px;
  border-radius: 50%;
  color: var(--red);
  background: #fff;
  font-style: normal;
  font-size: 15px;
}

.home-industrial-card--visual {
  min-height: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(7, 29, 54, .35);
  border-radius: 10px;
  background: #071629;
}

.home-industrial-card--visual::before {
  display: none;
}

.home-industrial-card--visual img {
  position: relative;
  width: 100%;
  height: auto;
  min-height: 0;
  display: block;
  object-fit: contain;
}

@keyframes innovationBackdrop {
  from { background-position: 0 0, 0 0, center center; }
  to { background-position: 34px -22px, -26px 18px, center center; }
}

@keyframes innovationOrbit {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes innovationLogo {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes innovationPulse {
  0% { transform: scale(.72); opacity: .9; }
  75%, 100% { transform: scale(1.14); opacity: 0; }
}

@keyframes signalFlow {
  0%, 100% { opacity: .25; }
  50% { opacity: 1; }
}

@keyframes innovationWord {
  0%, 100% {
    border-color: rgba(0, 217, 255, .24);
    background: rgba(0, 217, 255, .06);
  }
  45%, 60% {
    border-color: rgba(255, 100, 31, .65);
    background: rgba(255, 100, 31, .18);
  }
}

@keyframes innovLetterWave {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
    color: #f5c44e;
  }
  28% {
    transform: translateY(-13px) rotate(-3deg);
    color: #ffe28a;
  }
  58% {
    transform: translateY(9px) rotate(3deg);
    color: #d79a1d;
  }
}

@keyframes bannerScreenCycle {
  0% {
    opacity: 0;
    transform: translateY(10px) scale(.985);
  }

  10%,
  28% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  36% {
    opacity: 0;
    transform: translateY(-8px) scale(.99);
  }

  100% {
    opacity: 0;
    transform: translateY(-8px) scale(.99);
  }
}

@keyframes bannerScreenPulse {
  0%, 100% {
    opacity: .45;
    transform: scaleX(.82);
  }

  50% {
    opacity: 1;
    transform: scaleX(1);
  }
}

@media (max-width: 1160px) {
  .nav-links {
    gap: 14px;
    font-size: 14px;
  }

  .brand img {
    height: 82px;
    width: 126px;
  }
}

@media (max-width: 980px) {
  .nav {
    height: 92px;
  }

  .brand img {
    height: 80px;
    width: 122px;
  }

  .nav-links {
    top: 92px;
  }

  .two-col,
  .clear-hero__grid,
  .clear-director__grid,
  .clear-news-grid,
  .clear-overview-grid,
  .home-industrial-entry__grid,
  .home-director-profile__grid,
  .clear-cta__inner,
  .premium-intro-grid,
  .premium-director-layout,
  .director-journey-intro__grid,
  .director-profile-block,
  .premium-category-banner,
  .premium-service-list {
    grid-template-columns: 1fr;
  }

  .clear-hero__grid {
    gap: 34px;
  }

  .innovation-hero {
    min-height: auto;
  }

  .innovation-hero .clear-hero__grid {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 34px 0 64px;
  }

  .innovation-hero > .container {
    width: min(100% - 22px, var(--max));
  }

  .innovation-hero h1 {
    font-size: 48px;
  }

  .innovation-stage {
    min-height: 320px;
    max-width: 560px;
    width: 100%;
    margin: 0 auto;
  }

  .clear-director__grid {
    gap: 28px;
  }

  .clear-news-grid {
    padding: 22px;
  }

  .clear-service-grid,
  .home-service-grid,
  .clear-benefits-grid,
  .home-industrial-cards,
  .clear-partners__grid,
  .services-shortcut-nav__grid,
  .premium-card-grid,
  .premium-values,
  .management-focus-grid,
  .management-results-grid,
  .about-method-grid,
  .about-scope__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .home-industrial-domains {
    max-width: 100%;
  }

  .about-identity,
  .about-scope,
  .about-clients {
    grid-template-columns: 1fr;
  }

  .management-cta-card {
    grid-template-columns: 1fr;
  }

  .premium-service-tile {
    grid-template-columns: 240px 1fr;
  }

  .director-journey-grid {
    grid-template-columns: 1fr;
  }

  .director-journey-card,
  .director-journey-card:nth-child(3n + 1) {
    grid-column: auto;
    grid-template-columns: minmax(240px, .9fr) minmax(0, 1.1fr);
  }

  .director-journey-closing__inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .clear-hero-card {
    max-width: 520px;
  }

  .clear-director__media,
  .clear-director__media img {
    min-height: 420px;
  }
}

@media (max-width: 640px) {
  .nav {
    height: 78px;
    gap: 12px;
  }

  .brand img {
    height: 66px;
    width: 102px;
  }

  .nav-links {
    top: 78px;
  }

  .nav-cta {
    display: none;
  }

  .clear-hero {
    min-height: auto;
  }

  .clear-hero__grid {
    padding: 48px 0 86px;
  }

  .clear-hero__brand > img {
    width: 142px;
    height: auto;
    max-height: 186px;
  }

  .innovation-hero .clear-hero__grid {
    padding: 30px 0 56px;
    width: calc(100vw - 22px);
    max-width: calc(100vw - 22px);
    overflow: hidden;
  }

  .innovation-hero .clear-hero__brand,
  .innovation-hero .clear-hero__lead,
  .innovation-hero h1,
  .innovation-brand-lockup,
  .innovation-words {
    width: 100%;
    max-width: 370px;
  }

  .innovation-brand-lockup {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .innovation-brand-lockup img {
    width: 104px;
    height: 104px;
  }

  .home-welcome-badge {
    min-height: 50px;
    min-width: 164px;
    padding: 0 14px;
    font-size: 23px;
  }

  .home-welcome-badge::before {
    height: 60px;
  }

  .home-welcome-chez {
    min-height: 50px;
    padding: 0 14px;
    font-size: 22px;
  }

  .home-hero-legal {
    min-height: 32px;
    font-size: 15px;
  }

  .clear-hero h1 {
    font-size: 42px;
  }

  .innovation-hero h1 {
    font-size: 40px;
    line-height: 1;
  }

  .clear-hero__lead {
    font-size: 19px;
  }

  .innovation-hero .clear-hero__lead {
    max-width: 100%;
    font-size: 16px;
    line-height: 1.45;
  }

  .innovation-words span {
    flex: 1 1 100%;
    justify-content: center;
  }

  .innovation-stage {
    min-height: 280px;
    max-width: 100%;
    overflow: hidden;
    border-radius: 8px;
  }

  .innovation-stage__photo figcaption {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }

  .innovation-stage__photo figcaption span {
    max-width: 260px;
    font-size: 12px;
  }

  .innovation-stage__photo figcaption strong {
    max-width: 280px;
    font-size: 31px;
  }

  .innovation-stage::before {
    width: 310px;
    height: 310px;
  }

  .innovation-stage::after {
    width: 238px;
    height: 238px;
  }

  .innovation-core {
    width: 198px;
    min-height: 238px;
  }

  .innovation-core img {
    width: 118px;
    height: 118px;
  }

  .signal-line {
    width: 142px;
  }

  .innovation-stat {
    display: none;
  }

  .innovation-chip {
    display: grid;
    width: 104px;
    min-width: 104px;
    min-height: 68px;
    padding: 10px;
  }

  .innovation-chip strong {
    font-size: 11px;
  }

  .innovation-chip span {
    font-size: 13px;
  }

  .innovation-chip--one {
    left: 12px;
    top: 72px;
  }

  .innovation-chip--two {
    right: 10px;
    top: 116px;
  }

  .innovation-chip--three {
    left: 12px;
    bottom: 18px;
  }

  .innovation-stat {
    left: auto;
    right: 10px;
    top: auto;
    bottom: 12px;
  }

  .innovation-video-link {
    left: 14px;
    right: 14px;
    top: 14px;
    justify-content: center;
    min-height: 44px;
    padding: 0 12px;
  }

  .innovation-video-link strong {
    font-size: 14px;
  }

  .home-industrial-entry {
    padding: 38px 0 50px;
  }

  .home-industrial-slider {
    min-height: 240px;
  }

  .home-industrial-cards {
    grid-template-columns: 1fr;
  }

  .home-industrial-card {
    min-height: 210px;
  }

  .clear-director__content {
    padding: 28px;
  }

  .clear-director__media,
  .clear-director__media img {
    min-height: 360px;
  }

  .clear-news-grid {
    padding: 18px;
  }

  .clear-feature-news img,
  .clear-activity-slide img {
    height: 340px;
  }

  .clear-feature-news div,
  .clear-activity-slide div {
    left: 20px;
    right: 20px;
    bottom: 24px;
  }

  .clear-overview-grid,
  .clear-service-grid,
  .home-service-grid,
  .clear-benefits-grid,
  .clear-partners__grid,
  .services-shortcut-nav__grid,
  .premium-card-grid,
  .premium-values,
  .management-focus-grid,
  .management-results-grid,
  .about-identity,
  .about-method-grid,
  .about-scope,
  .about-scope__grid,
  .about-clients,
  .management-cta-card,
  .premium-process,
  .clear-perimeter-row,
  .director-profile-facts,
  .director-profile-columns,
  .home-domain-menu {
    grid-template-columns: 1fr;
  }

  .about-clients img {
    min-height: 300px;
  }

  .management-cta-card {
    padding: 26px;
  }

  .home-director-profile__gallery {
    grid-template-columns: 1fr;
  }

  .home-director-profile__gallery article,
  .home-director-profile__gallery article:first-child {
    min-height: 320px;
  }

  .premium-service-tile {
    grid-template-columns: 1fr;
  }

  .director-journey-card,
  .director-journey-card:nth-child(3n + 1) {
    grid-template-columns: 1fr;
  }

  .director-journey-card img {
    min-height: 320px;
  }

  .premium-director-layout figure img {
    min-height: 420px;
  }

  .premium-side-panel {
    position: static;
  }

  .clear-activity-list article {
    grid-template-columns: 112px 1fr;
    gap: 16px;
  }

  .clear-activity-list img {
    width: 112px;
    height: 76px;
  }

  .home-realisation-list article {
    grid-template-columns: 1fr;
  }

  .home-realisation-list img {
    width: 100%;
    height: 190px;
  }

  .home-domain-menu a {
    min-height: 220px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .innovation-canvas {
    display: none;
  }

  .innovation-hero::before,
  .innovation-words span,
  .innovation-stage::before,
  .innovation-stage::after,
  .innovation-core img,
  .innovation-ring,
  .signal-line,
  .innovation-chip,
  .innov-wave i,
  .home-banner-screen__slides article,
  .home-banner-screen__footer span {
    animation: none;
  }
}

/* Internal pages aligned with the innovation home style */
.page-hero,
.page-hero-visual {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 78px 0;
  color: #fff;
  background:
    linear-gradient(115deg, rgba(8, 12, 20, .92), rgba(24, 34, 50, .72) 52%, rgba(130, 18, 36, .62)),
    #111;
  isolation: isolate;
}

.page-hero::before,
.page-hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255,255,255,.04) 1px, transparent 1px),
    url("/static/img/ctac/hero-banner-pages-2026.png") center center/cover no-repeat;
  background-size: 84px 84px, 84px 84px, cover;
  opacity: .76;
}

.page-hero::after,
.page-hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 18% 18%, rgba(0, 217, 255, .2), transparent 28%),
    linear-gradient(90deg, rgba(8, 12, 20, .86), rgba(8, 12, 20, .44) 54%, rgba(91, 10, 24, .16));
}

.page-hero > .container,
.page-hero__grid {
  position: relative;
  z-index: 1;
}

.page-hero .breadcrumb,
.page-hero .eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 34px;
  margin-bottom: 18px;
  padding: 0 13px;
  border: 1px solid rgba(0, 217, 255, .34);
  border-radius: 8px;
  color: #bff6ff;
  background: rgba(0, 217, 255, .1);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.page-hero h1 {
  max-width: 920px;
  margin-bottom: 18px;
  color: #fff;
  font-size: clamp(17px, 2.15vw, 29px);
  line-height: 1.18;
  white-space: normal;
  overflow-wrap: anywhere;
  text-shadow: 0 20px 55px rgba(0,0,0,.34);
}

.page-hero h1.page-title-long {
  max-width: 820px;
  font-size: clamp(15px, 1.5vw, 22px);
  line-height: 1.08;
  white-space: normal;
}

.page-hero .page-brand-title {
  display: flex;
  flex-wrap: nowrap;
  gap: .22em;
  align-items: baseline;
  margin-bottom: 10px;
  font-size: clamp(46px, 5.8vw, 78px);
}

.page-hero .page-brand-title > span:first-child {
  color: #00d9ff;
}

.page-hero .page-brand-title .innov-wave {
  display: inline-flex;
  gap: .025em;
  color: #f5c44e;
  text-shadow:
    0 0 14px rgba(245, 196, 78, .42),
    0 18px 46px rgba(0,0,0,.34);
}

.page-hero .page-brand-title::after {
  display: none;
}

.page-legal-title {
  width: max-content;
  max-width: 100%;
  margin: 0 0 22px;
  color: #fff;
  font-size: clamp(18px, 1.7vw, 25px);
  font-weight: 900;
  line-height: 1.08;
  white-space: nowrap;
  text-shadow: 0 16px 42px rgba(0,0,0,.32);
}

.page-legal-title::after {
  content: "";
  display: block;
  width: min(210px, 44%);
  height: 5px;
  margin-top: 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, #00d9ff, #f5c44e);
  box-shadow: 0 0 22px rgba(245, 196, 78, .35);
}

.page-hero h1::after {
  content: "";
  display: block;
  width: min(210px, 44%);
  height: 5px;
  margin-top: 22px;
  border-radius: 999px;
  background: linear-gradient(90deg, #00d9ff, #f5c44e);
  box-shadow: 0 0 22px rgba(245, 196, 78, .35);
}

.page-hero .lead {
  max-width: 780px;
  color: #fff;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700;
  line-height: 1.55;
  text-shadow: 0 12px 32px rgba(0,0,0,.32);
  white-space: normal;
  overflow-wrap: anywhere;
}

.page-hero .two-col,
.page-hero__grid {
  grid-template-columns: minmax(0, 1fr) minmax(310px, 440px);
  gap: 52px;
}

.page-hero .two-col > img,
.page-hero__grid img {
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 0;
  max-height: 300px;
  object-fit: cover;
  object-position: center;
  padding: 10px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 8px;
  background: rgba(255,255,255,.1);
  box-shadow: 0 28px 70px rgba(0,0,0,.28);
  backdrop-filter: blur(14px);
  clip-path: none;
}

.section:not(.clear-director):not(.clear-news-section):not(.clear-overview):not(.clear-partners):not(.clear-services) {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(246,247,249,.98)),
    var(--portal-bg);
}

.section:not(.clear-director):not(.clear-news-section):not(.clear-overview):not(.clear-partners):not(.clear-services)::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0, 217, 255, .045) 1px, transparent 1px),
    linear-gradient(0deg, rgba(36, 56, 79, .035) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: .6;
}

.section > .container {
  position: relative;
  z-index: 1;
}

.section-head {
  position: relative;
  padding: 28px 30px;
  border: 1px solid rgba(0, 217, 255, .16);
  border-radius: 8px;
  background: rgba(255,255,255,.86);
  box-shadow: 0 18px 50px rgba(36, 56, 79, .1);
  overflow: hidden;
}

.section-head::after {
  content: "";
  position: absolute;
  inset: auto -40px -80px auto;
  width: 190px;
  height: 190px;
  background: linear-gradient(135deg, rgba(0, 217, 255, .14), rgba(245, 196, 78, .18));
  transform: rotate(18deg);
}

.section .eyebrow {
  color: #0088a8;
  font-weight: 900;
  letter-spacing: .08em;
}

.section:not(.clear-director):not(.clear-news-section):not(.clear-overview):not(.clear-partners):not(.clear-services) h2,
.panel h2 {
  color: var(--portal-navy);
  font-size: clamp(30px, 3.6vw, 52px);
  line-height: 1;
}

.section:not(.clear-director):not(.clear-news-section):not(.clear-overview):not(.clear-partners):not(.clear-services) h2::after,
.panel h2::after {
  content: "";
  display: block;
  width: 126px;
  height: 4px;
  margin-top: 16px;
  border-radius: 999px;
  background: linear-gradient(90deg, #00d9ff, #f5c44e);
}

.card,
.panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(36, 56, 79, .08);
  background: rgba(255,255,255,.94);
  box-shadow: 0 20px 52px rgba(36, 56, 79, .1);
}

.card::before,
.panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, #00d9ff, #f5c44e, var(--red));
}

.card::after,
.panel::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -90px;
  width: 190px;
  height: 190px;
  background: linear-gradient(135deg, rgba(0, 217, 255, .1), rgba(245, 196, 78, .16));
  transform: rotate(18deg);
  pointer-events: none;
}

.card > *,
.panel > * {
  position: relative;
  z-index: 1;
}

.card h3,
.panel h3 {
  color: var(--portal-navy);
  font-size: 25px;
  line-height: 1.12;
}

.card h3::after,
.panel h3::after {
  content: "";
  display: block;
  width: 64px;
  height: 3px;
  margin-top: 12px;
  border-radius: 999px;
  background: #f5c44e;
}

.card p,
.panel p,
.article-content {
  color: #384250;
}

.article-content {
  font-size: 19px;
  line-height: 1.78;
}

.article-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin: 30px 0 0;
}

.article-gallery figure {
  margin: 0;
}

.article-gallery img {
  width: 100%;
  height: clamp(220px, 30vw, 360px);
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 16px 38px rgba(36, 56, 79, .12);
}

.article-gallery figcaption {
  margin-top: 10px;
  color: #657181;
  font-size: 14px;
  font-weight: 800;
}

.badge {
  border: 1px solid rgba(0, 217, 255, .2);
  color: #007b97;
  background: rgba(0, 217, 255, .08);
}

.icon-box {
  background: linear-gradient(135deg, #00a8c8, var(--red));
  box-shadow: 0 16px 32px rgba(0, 168, 200, .18);
}

.price {
  color: #b88413;
  text-shadow: 0 0 18px rgba(245, 196, 78, .22);
}

.form-control {
  border-color: rgba(36, 56, 79, .14);
  background: rgba(255,255,255,.96);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.72);
}

label {
  display: inline-block;
  margin-bottom: 7px;
  color: var(--portal-navy);
  font-weight: 900;
}

.service-list li {
  border-top-color: rgba(36, 56, 79, .1);
}

.service-list a {
  color: var(--portal-navy);
  font-weight: 800;
}

.service-list a:hover {
  color: #0088a8;
}

.category-showcase {
  border: 1px solid rgba(0, 217, 255, .16);
  box-shadow: 0 22px 58px rgba(36, 56, 79, .14);
}

.gallery-card {
  box-shadow: 0 22px 58px rgba(36, 56, 79, .14);
}

.gallery-card__body {
  background: linear-gradient(180deg, transparent, rgba(8, 12, 20, .9));
}

.rubric-preview {
  background: var(--portal-bg);
}

.rubric-preview__summary {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 42px;
}

.rubric-preview__summary a {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: center;
  min-height: 64px;
  padding: 12px 14px;
  border: 1px solid rgba(36, 56, 79, .1);
  border-radius: 8px;
  color: var(--portal-navy);
  background: #fff;
  box-shadow: 0 12px 30px rgba(36, 56, 79, .08);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.25;
}

.rubric-preview__summary span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  color: #fff;
  background: var(--portal-blue);
  font-weight: 900;
}

.rubric-preview__section {
  margin-top: 58px;
}

.rubric-preview__count {
  margin: -14px 0 24px;
  color: #697586;
  font-weight: 800;
}

.rubric-preview__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.rubric-preview__card {
  display: grid;
  gap: 10px;
  min-width: 0;
  padding: 10px;
  border: 1px solid rgba(36, 56, 79, .1);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(36, 56, 79, .08);
}

.rubric-preview__card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 6px;
  background: #f3f6f9;
}

.rubric-preview__card span {
  color: #384250;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

@media (max-width: 980px) {
  .realisations-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rubric-preview__summary,
  .rubric-preview__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .realisations-grid {
    grid-template-columns: 1fr;
  }

  .admin-mini-grid {
    grid-template-columns: 1fr;
  }

  .admin-actions-grid,
  .admin-editor-layout {
    grid-template-columns: 1fr;
  }

  .admin-content-list article {
    grid-template-columns: 1fr;
  }

  .admin-row-actions {
    justify-content: start;
    min-width: 0;
    max-width: none;
  }

  .admin-shell {
    grid-template-columns: 1fr;
  }

  .admin-sidebar {
    position: static;
    height: auto;
  }

  .admin-sidebar__nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-main {
    padding: 22px 16px;
  }

  .admin-page-head,
  .admin-order-layout {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .admin-stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-rubrique-card header {
    flex-direction: column;
  }

  .realisations-filter button {
    width: 100%;
    justify-content: space-between;
  }

  .rubric-preview__summary,
  .rubric-preview__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .page-hero .two-col,
  .page-hero__grid {
    grid-template-columns: 1fr;
  }

  .page-hero .two-col > img,
  .page-hero__grid img {
    clip-path: none;
    min-height: 0;
    max-height: 280px;
  }
}

@media (max-width: 640px) {
  .page-hero,
  .page-hero-visual {
    min-height: auto;
    padding: 54px 0;
  }

  .page-hero h1 {
    font-size: 22px;
    white-space: normal;
  }

  .page-hero .page-brand-title {
    font-size: 43px;
    white-space: nowrap;
  }

  .page-legal-title {
    width: 100%;
    font-size: clamp(10px, 3.1vw, 13px);
    white-space: nowrap;
  }

  .page-hero .lead {
    max-width: 100%;
    font-size: 18px;
  }

  .page-hero > .container,
  .page-hero__grid,
  .page-hero h1,
  .page-hero .lead {
    min-width: 0;
  }

  .page-hero > .container {
    width: min(100% - 22px, var(--max));
    margin: 0 auto;
  }

  .page-hero__grid,
  .page-hero h1,
  .page-hero .lead {
    width: 100%;
    max-width: 370px;
  }

  .page-hero .two-col > img,
  .page-hero__grid img {
    min-height: 0;
    max-height: 220px;
  }

  .section-head {
    padding: 22px;
  }

  .card h3,
  .panel h3 {
    font-size: 22px;
  }
}

/* Home hero banner override: user-provided visual */
.home-banner-hero {
  padding: 26px 0 18px;
  background: #fff6f8;
}

.home-banner-frame {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid rgba(178, 31, 53, 0.16);
  box-shadow: 0 14px 28px rgba(178, 31, 53, 0.11);
}

.home-banner-frame > picture,
.home-banner-frame > img {
  display: block;
  width: 100%;
  height: auto;
}

.home-banner-frame > picture > img,
.home-banner-frame > img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center top;
}

.home-banner-screen {
  position: absolute;
  top: 5.8%;
  right: 9.9%;
  z-index: 2;
  width: 16.2%;
  aspect-ratio: 1.44 / 1;
  transform: rotate(-0.35deg) skewX(-0.25deg);
  transform-origin: center;
  pointer-events: none;
}

.home-banner-screen__panel {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(14, 24, 42, 0.12);
  border-radius: 4px;
  background:
    linear-gradient(180deg, #ffffff 0%, #f6f7fa 100%);
  box-shadow:
    0 3px 8px rgba(8, 17, 31, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  clip-path: polygon(0.8% 2%, 99.2% 0, 100% 98%, 0 100%);
}

.home-banner-screen__panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.72) 16%, transparent 44%),
    radial-gradient(circle at top right, rgba(255, 140, 0, 0.12), transparent 38%),
    radial-gradient(circle at bottom left, rgba(178, 31, 53, 0.08), transparent 24%);
  pointer-events: none;
}

.home-banner-screen__slides {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
}

.home-banner-screen__slides article {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 24px;
  opacity: 0;
  transform: translateY(10px) scale(.99);
  animation: bannerScreenCycle 12s infinite;
}

.home-banner-screen__slides article:nth-child(1) {
  animation-delay: 0s;
}

.home-banner-screen__slides article:nth-child(2) {
  animation-delay: 4s;
}

.home-banner-screen__slides article:nth-child(3) {
  animation-delay: 8s;
}

.home-banner-screen__kicker {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  min-height: 24px;
  padding: 0 10px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #0b1f3a, #1d3557);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.home-banner-screen__kicker--orange {
  background: linear-gradient(135deg, #ff8a00, #ff5f1f);
}

.home-banner-screen__kicker--red {
  background: linear-gradient(135deg, #b21f35, #d8324c);
}

.home-banner-screen__slides h2 {
  margin: 10px 0 7px;
  color: #0b1f3a;
  font-size: 22px;
  line-height: 1.08;
  letter-spacing: 0;
}

.home-banner-screen__slides p {
  margin: 0;
  color: #4b5563;
  font-size: 13px;
  line-height: 1.28;
}

.home-banner-screen__footer {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 18px;
  z-index: 1;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ff8a00, #ffd7a6 55%, #ff5f1f);
  box-shadow: 0 0 16px rgba(255, 126, 39, 0.4);
}

.home-banner-screen__footer span {
  position: absolute;
  inset: -4px 40% -4px 40%;
  border-radius: inherit;
  background: rgba(255, 255, 255, 0.88);
  animation: bannerScreenPulse 1.8s ease-in-out infinite;
}

.home-banner-actions {
  display: flex;
  gap: 10px;
}

.home-banner-actions--overlay {
  position: absolute;
  right: 18px;
  bottom: 18px;
}

.home-banner-actions--stack {
  display: none;
  margin-top: 12px;
  flex-wrap: wrap;
}

.home-banner-actions .btn-outline {
  border-color: rgba(6, 29, 53, 0.3);
  color: #0b1f3a;
  background: rgba(255, 255, 255, 0.92);
}

.home-banner-stack {
  margin-top: 12px;
  display: grid;
  gap: 10px;
}

.home-hero-ticker {
  overflow: hidden;
  border: 1px solid rgba(178, 31, 53, 0.16);
  border-radius: 8px;
  background: #fff9fb;
  box-shadow: 0 8px 18px rgba(178, 31, 53, 0.09);
}

.home-hero-ticker .ticker-track {
  min-height: 44px;
  padding: 0 14px;
}

.home-hero-ticker .ticker-track span {
  color: #7a1d2b;
}

.home-hero-icon-cards {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

.home-hero-icon-card {
  display: block;
  overflow: hidden;
  border: 1px solid rgba(178, 31, 53, 0.16);
  border-radius: 10px;
  background: #fff9fb;
  box-shadow: 0 10px 20px rgba(178, 31, 53, 0.09);
  transition: transform .25s ease, box-shadow .25s ease;
}

.home-hero-icon-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 24px rgba(178, 31, 53, 0.14);
}

.home-hero-icon-card img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.home-bottom-feature-strip {
  padding-top: 24px;
  padding-bottom: 14px;
}

.home-bottom-feature-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.home-bottom-feature-strip__card {
  display: block;
  overflow: hidden;
  border: 1px solid rgba(6, 29, 53, .2);
  border-radius: 10px;
  box-shadow: 0 16px 30px rgba(6, 29, 53, .12);
  transition: transform .25s ease, box-shadow .25s ease;
}

.home-bottom-feature-strip__card:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 34px rgba(6, 29, 53, .2);
}

.home-bottom-feature-strip__card img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 980px) {
  .home-banner-screen {
    display: block;
    top: 65.2%;
    left: 26.6%;
    right: auto;
    width: 28.4%;
    aspect-ratio: 1.66 / 1;
    transform: rotate(-1.85deg) skewX(-5.2deg);
  }

  .home-banner-frame {
    aspect-ratio: 941 / 1672;
  }

  .home-banner-frame > picture,
  .home-banner-frame > picture > img {
    height: 100%;
  }

  .home-banner-actions--overlay {
    display: none;
  }

  .home-banner-actions--stack {
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
  }

  .home-banner-screen__panel {
    border-radius: 8px;
    clip-path: polygon(4% 8%, 96% 3%, 100% 90%, 8% 97%);
  }

  .home-banner-screen__slides article {
    padding: 8px 10px;
  }

  .home-banner-screen__kicker {
    min-height: 16px;
    padding: 0 6px;
    font-size: 7px;
  }

  .home-banner-screen__slides h2 {
    margin: 6px 0 4px;
    font-size: 12px;
  }

  .home-banner-screen__slides p {
    font-size: 8px;
    line-height: 1.24;
  }

  .home-banner-screen__footer {
    left: 9px;
    right: 9px;
    bottom: 6px;
    height: 2px;
  }

  .home-hero-icon-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .home-industrial-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-bottom-feature-strip__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .home-banner-hero {
    padding: 16px 0 10px;
  }

  .home-banner-screen {
    top: 65.3%;
    left: 26.8%;
    width: 28.6%;
  }

  .home-banner-screen__slides article {
    padding: 7px 8px;
  }

  .home-banner-screen__kicker {
    min-height: 14px;
    padding: 0 5px;
    font-size: 6px;
  }

  .home-banner-screen__slides h2 {
    margin: 4px 0 3px;
    font-size: 9px;
  }

  .home-banner-screen__slides p {
    font-size: 6px;
    line-height: 1.18;
  }

  .home-banner-screen__footer {
    left: 8px;
    right: 8px;
    bottom: 6px;
    height: 2px;
  }

  .home-banner-frame {
    aspect-ratio: 941 / 1672;
    border-radius: 16px;
  }

  .home-banner-actions .btn {
    flex: 1 1 0;
    min-width: 0;
    min-height: 36px;
    padding: 0 12px;
    font-size: 13px;
  }

  .home-banner-actions .btn + .btn {
    margin-left: 8px;
  }

  .home-banner-stack {
    margin-top: 8px;
    gap: 8px;
  }

  .home-hero-ticker .ticker-track {
    min-height: 40px;
    padding: 0 10px;
    gap: 22px;
  }

  .home-hero-ticker .ticker-track span {
    font-size: 12px;
    letter-spacing: .12em;
  }

  .home-hero-icon-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .home-industrial-cards {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .home-bottom-feature-strip {
    padding-top: 18px;
  }

  .home-bottom-feature-strip__grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

/* Admin compact mode */
.btn-danger {
  background: #b42318;
  color: #fff;
  border-color: #b42318;
}

.btn-danger:hover {
  background: #8f1a12;
  border-color: #8f1a12;
}

.admin-shell-body {
  font-size: 14px;
}

.admin-main h1 {
  font-size: clamp(30px, 4vw, 46px);
}

.admin-main h2 {
  font-size: clamp(22px, 2.6vw, 34px);
}

.admin-main h3 {
  font-size: 18px;
}

.admin-main .lead,
.admin-main p,
.admin-main label,
.admin-main .form-control,
.admin-main .btn,
.admin-main .badge,
.admin-main small,
.admin-main .eyebrow {
  font-size: 13px;
}

/* Navigation pro tablette + mobile */
.mobile-toggle:hover {
  border-color: rgba(255, 100, 31, .6);
  box-shadow: 0 10px 24px rgba(17,17,17,.12);
}
.mobile-toggle__box {
  width: 20px;
  height: 14px;
  display: inline-flex;
  flex-direction: column;
  justify-content: space-between;
}
.mobile-toggle__bar {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: #1f2937;
  transition: transform .22s ease, opacity .22s ease;
}
.mobile-toggle.is-open .mobile-toggle__bar:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.mobile-toggle.is-open .mobile-toggle__bar:nth-child(2) { opacity: 0; }
.mobile-toggle.is-open .mobile-toggle__bar:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 1160px) and (min-width: 981px) {
  .nav {
    justify-content: flex-start;
    gap: 16px;
  }

  .nav-links {
    flex: 1;
    justify-content: flex-start;
    gap: 14px;
    font-size: 12px;
  }

  .nav-cta {
    margin-left: auto;
    min-height: 40px;
    padding: 0 14px;
    font-size: 12px;
  }
}

@media (max-width: 980px) {
  .mobile-toggle {
    display: inline-flex;
  }

  .nav-cta {
    display: none;
  }

  .nav-links {
    position: absolute;
    left: 12px;
    right: 12px;
    top: calc(100% + 8px);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 12px;
    box-shadow: 0 20px 44px rgba(17,17,17,.16);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
  }

  .nav-links a {
    display: block;
    width: 100%;
    padding: 12px 14px;
    border-radius: 8px;
  }

  .nav-links a:hover {
    background: #f8f8f8;
  }

  .nav-links.is-open {
    display: flex;
  }
}

@media (max-width: 640px) {
  .nav-links {
    left: 10px;
    right: 10px;
  }
}
