:root {
  --blue: #00559e;
  --blue-dark: #073764;
  --blue-deep: #031e38;
  --blue-ink: #082c4d;
  --green: #00b67a;
  --green-dark: #008d60;
  --ink: #10283c;
  --muted: #5c6f80;
  --line: #dce5ec;
  --soft: #f3f7fa;
  --soft-blue: #eaf3f9;
  --white: #fff;
  --warning: #d58d1b;
  --danger: #b33a3a;
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --shadow-sm: 0 10px 28px rgba(7, 55, 100, .08);
  --shadow: 0 22px 60px rgba(3, 30, 56, .14);
  --wrap: 1280px;
  --header-h: 78px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 110px; }
body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select { font: inherit; }
button { cursor: pointer; }

::selection { color: #fff; background: var(--blue); }
:focus-visible { outline: 3px solid rgba(0, 182, 122, .45); outline-offset: 3px; }

.wrap { width: min(calc(100% - 40px), var(--wrap)); margin-inline: auto; }
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.skip-link {
  position: fixed;
  z-index: 9999;
  left: 16px;
  top: 12px;
  transform: translateY(-160%);
  padding: 12px 18px;
  border-radius: 8px;
  color: #fff;
  background: var(--green-dark);
  font-weight: 800;
  text-decoration: none;
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 11px 18px;
  border: 1px solid transparent;
  border-radius: 9px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--green { color: #fff; background: var(--green); box-shadow: 0 10px 24px rgba(0, 182, 122, .2); }
.btn--green:hover { background: var(--green-dark); box-shadow: 0 14px 28px rgba(0, 141, 96, .25); }
.btn--ghost { color: #fff; border-color: rgba(255,255,255,.35); background: rgba(255,255,255,.06); }
.btn--ghost:hover { border-color: rgba(255,255,255,.65); background: rgba(255,255,255,.12); }
.btn--large { min-height: 52px; padding-inline: 24px; }
.btn--header { min-height: 42px; padding: 10px 16px; color: #fff !important; background: var(--blue); }
.btn--header:hover { background: var(--blue-dark); }
.text-link { color: var(--blue); font-weight: 800; text-decoration: none; }
.text-link span { display: inline-block; transition: transform .2s ease; }
.text-link:hover span { transform: translateX(4px); }

/* Official bar and header */
.official-bar { color: #d8ebf9; background: var(--blue-deep); font-size: .78rem; }
.official-bar__inner { min-height: 38px; display: flex; align-items: center; gap: 10px; }
.official-bar__seal { width: 23px; height: 23px; display: grid; place-items: center; border-radius: 50%; background: rgba(0,182,122,.16); }
.official-bar__seal svg { width: 15px; fill: none; stroke: var(--green); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.official-bar strong { color: #fff; letter-spacing: .01em; }
.official-bar__domain { padding-left: 10px; border-left: 1px solid rgba(255,255,255,.16); color: #9fc5dd; }
.official-bar__domain:empty { display: none; }
.official-bar a { margin-left: auto; color: #fff; font-weight: 700; text-underline-offset: 3px; }

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid rgba(220,229,236,.85);
  backdrop-filter: blur(14px);
  transition: box-shadow .2s ease;
}
.site-header.is-scrolled { box-shadow: 0 10px 30px rgba(3,30,56,.1); }
.header-inner { min-height: var(--header-h); display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; }
.brand__mark { flex: 0 0 auto; }
.brand__copy { display: flex; flex-direction: column; line-height: 1.15; }
.brand__copy strong { color: var(--blue-dark); font-size: 1.02rem; letter-spacing: -.02em; }
.brand__copy small { margin-top: 4px; color: var(--muted); font-size: .71rem; font-weight: 650; }
.primary-nav { display: flex; align-items: center; gap: 24px; }
.primary-nav > a:not(.btn) { position: relative; color: #2d465b; font-size: .86rem; font-weight: 750; text-decoration: none; }
.primary-nav > a:not(.btn)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -8px; height: 2px; background: var(--green); transition: right .2s ease; }
.primary-nav > a:not(.btn):hover::after { right: 0; }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 10px; border: 1px solid var(--line); border-radius: 8px; background: #fff; }
.menu-toggle > span:not(.sr-only) { display: block; width: 100%; height: 2px; margin: 5px 0; background: var(--blue-dark); }

/* Shared section typography */
.section { padding: 96px 0; }
.section-heading { max-width: 790px; margin-bottom: 38px; }
.section-heading--split { max-width: none; display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(320px, .75fr); align-items: end; gap: 70px; }
.section-heading h2, .roi-copy h2, .faq-aside h2, .guardrail-intro h2 {
  margin: 8px 0 0;
  color: var(--blue-dark);
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.08;
  letter-spacing: -.045em;
}
.section-heading p, .roi-copy > p, .faq-aside > p, .guardrail-intro > p { margin: 0; color: var(--muted); }
.eyebrow {
  margin: 0;
  color: var(--blue);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.eyebrow--light { color: #72e0bb; }

/* Hero */
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 12% 18%, rgba(0,182,122,.16), transparent 30%),
    radial-gradient(circle at 88% 20%, rgba(48,143,216,.19), transparent 35%),
    linear-gradient(135deg, #031d35 0%, #062d52 55%, #073f70 100%);
}
.hero::before { content: ""; position: absolute; inset: auto -10% -55% 35%; height: 600px; border: 1px solid rgba(255,255,255,.05); border-radius: 50%; transform: rotate(-12deg); }
.hero__mesh { position: absolute; z-index: -1; inset: 0; opacity: .22; background-image: linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px); background-size: 38px 38px; mask-image: linear-gradient(90deg, rgba(0,0,0,.7), transparent 90%); }
.hero__layout { min-height: 760px; display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(500px, .95fr); align-items: center; gap: 66px; padding-top: 76px; padding-bottom: 78px; }
.hero__content h1 { max-width: 820px; margin: 13px 0 22px; font-size: clamp(2.7rem, 5.1vw, 5.45rem); line-height: .98; letter-spacing: -.058em; }
.hero__lead { max-width: 720px; margin: 0; color: #cfe1ee; font-size: clamp(1rem, 1.4vw, 1.23rem); line-height: 1.65; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero-search { max-width: 730px; margin-top: 30px; }
.hero-search label { display: block; margin-bottom: 8px; color: #b8d0e0; font-size: .79rem; font-weight: 750; }
.hero-search__row { display: grid; grid-template-columns: auto 1fr auto; align-items: center; padding: 6px; border: 1px solid rgba(255,255,255,.17); border-radius: 12px; background: rgba(255,255,255,.09); box-shadow: 0 20px 45px rgba(0,0,0,.16); }
.hero-search__icon { width: 44px; display: grid; place-items: center; }
.hero-search__icon svg { width: 20px; fill: none; stroke: #9ec4dc; stroke-width: 2; stroke-linecap: round; }
.hero-search input { min-width: 0; height: 48px; padding: 0 8px; border: 0; color: #fff; background: transparent; outline: 0; }
.hero-search input::placeholder { color: #a9c3d4; }
.hero-search .btn { min-height: 48px; }
.hero__indicators { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1px; max-width: 760px; margin-top: 34px; overflow: hidden; border: 1px solid rgba(255,255,255,.12); border-radius: 12px; background: rgba(255,255,255,.08); }
.hero__indicators > div { min-height: 94px; padding: 17px 18px; background: rgba(3,30,56,.46); }
.hero__indicators span { display: block; color: var(--green); font-size: .68rem; font-weight: 900; letter-spacing: .15em; }
.hero__indicators strong { display: block; margin-top: 5px; font-size: .91rem; }
.hero__indicators small { display: block; margin-top: 3px; color: #9fbed2; font-size: .71rem; }

.hero-console { position: relative; padding: 20px; border: 1px solid rgba(255,255,255,.17); border-radius: 24px; background: linear-gradient(160deg, rgba(4,31,55,.96), rgba(8,58,99,.78)); box-shadow: 0 30px 80px rgba(0,0,0,.35); }
.hero-console::before { content: ""; position: absolute; inset: 8px; pointer-events: none; border: 1px solid rgba(255,255,255,.05); border-radius: 18px; }
.console-head { position: relative; display: flex; align-items: center; justify-content: space-between; padding: 2px 2px 16px; color: #9ebfd4; font-size: .69rem; font-weight: 850; letter-spacing: .11em; text-transform: uppercase; }
.console-head__status { display: flex; align-items: center; gap: 8px; color: #d9e8f1; }
.console-head__status i, .catalog-status i, .catalogue-source i { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 5px rgba(0,182,122,.12); }
.energy-map { position: relative; display: grid; grid-template-columns: 1fr 42px 1fr 42px 1fr; align-items: center; gap: 5px; padding: 22px 10px; border: 1px solid rgba(255,255,255,.09); border-radius: 15px; background: rgba(0,0,0,.12); }
.energy-node { min-width: 0; display: flex; flex-direction: column; align-items: center; gap: 10px; text-align: center; }
.energy-node svg { width: 58px; height: 58px; padding: 11px; border: 1px solid rgba(255,255,255,.15); border-radius: 14px; fill: none; stroke: #a9cce1; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; background: rgba(255,255,255,.05); }
.energy-node--wind svg { stroke: #65d6af; }
.energy-node--grid svg { stroke: #7fbde7; }
.energy-node span { color: #a9c3d4; font-size: .65rem; line-height: 1.35; }
.energy-node b { color: #fff; font-size: .76rem; }
.energy-line { position: relative; height: 2px; background: rgba(255,255,255,.13); }
.energy-line::after { content: ""; position: absolute; top: -3px; right: -1px; width: 8px; height: 8px; border-top: 2px solid var(--green); border-right: 2px solid var(--green); transform: rotate(45deg); }
.energy-line span { position: absolute; top: -2px; left: 0; width: 18px; height: 6px; border-radius: 4px; background: var(--green); animation: flow 2.2s linear infinite; }
@keyframes flow { from { transform: translateX(0); opacity: .15; } 50% { opacity: 1; } to { transform: translateX(24px); opacity: .15; } }
.phase-board { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 10px; }
.phase-board > div { display: grid; grid-template-columns: 28px 1fr; grid-template-rows: auto auto; gap: 4px 8px; padding: 10px; border-radius: 9px; background: rgba(255,255,255,.06); }
.phase-board span { grid-row: 1 / 3; align-self: center; width: 28px; height: 28px; display: grid; place-items: center; border-radius: 6px; color: #fff; background: rgba(0,85,158,.7); font-size: .68rem; font-weight: 900; }
.phase-board i { position: relative; height: 5px; overflow: hidden; border-radius: 5px; background: rgba(255,255,255,.1); }
.phase-board i::after { content: ""; position: absolute; inset: 0 auto 0 0; width: var(--load); border-radius: inherit; background: var(--green); }
.phase-board b { color: #bad0df; font-size: .61rem; font-weight: 700; }
.console-note { display: grid; grid-template-columns: 30px 1fr; gap: 10px; align-items: start; margin-top: 10px; padding: 11px 13px; border-left: 3px solid var(--green); border-radius: 6px; background: rgba(0,182,122,.08); }
.console-note svg { width: 22px; fill: none; stroke: #70dcb7; stroke-width: 2; }
.console-note p { margin: 0; color: #bcd2e0; font-size: .67rem; }
.console-note strong { color: #fff; }

.hero-product { position: relative; display: grid; grid-template-columns: 94px 1fr; gap: 13px; margin-top: 12px; padding: 11px; border: 1px solid rgba(255,255,255,.12); border-radius: 12px; background: rgba(255,255,255,.07); }
.hero-product__media { display: block; height: 82px; overflow: hidden; border-radius: 8px; background: #f7fafc; }
.hero-product__media img { width: 100%; height: 100%; object-fit: contain; }
.hero-product__body { min-width: 0; }
.hero-product__category { margin: 1px 0 4px; color: #61d7ae; font-size: .61rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.hero-product h2 { display: -webkit-box; margin: 0; overflow: hidden; color: #fff; font-size: .81rem; line-height: 1.35; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.hero-product__bottom { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: 8px; }
.hero-product__bottom > strong { font-size: .92rem; }
.round-link { width: 30px; height: 30px; display: grid; flex: 0 0 auto; place-items: center; border-radius: 50%; color: #fff; background: var(--green); }
.round-link svg { width: 15px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.catalog-status { position: relative; display: flex; align-items: center; gap: 9px; margin-top: 10px; padding: 0 2px; color: #a9c3d4; font-size: .64rem; }
.catalog-status.is-fallback i, .catalogue-source.is-fallback i { background: var(--warning); box-shadow: 0 0 0 5px rgba(213,141,27,.12); }
.catalog-status.is-error i, .catalogue-source.is-error i { background: var(--danger); box-shadow: 0 0 0 5px rgba(179,58,58,.12); }

/* Scope strip */
.scope-strip { border-bottom: 1px solid var(--line); background: #fff; }
.scope-strip__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.scope-strip__grid > div { padding: 22px 24px; border-right: 1px solid var(--line); }
.scope-strip__grid > div:first-child { border-left: 1px solid var(--line); }
.scope-strip span { display: block; color: var(--blue); font-size: .75rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.scope-strip p { margin: 4px 0 0; color: var(--muted); font-size: .78rem; }

/* Architecture */
.architecture-section { background: #fff; }
.architecture-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; }
.architecture-card { position: relative; min-height: 510px; display: flex; flex-direction: column; padding: 30px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-sm); }
.architecture-card::after { content: ""; position: absolute; width: 180px; height: 180px; right: -90px; top: -90px; border-radius: 50%; background: var(--soft-blue); }
.architecture-card--hybrid::after { background: #e8f8f2; }
.architecture-card--island::after { background: #eef0f8; }
.architecture-card__number { position: absolute; z-index: 1; right: 21px; top: 16px; color: rgba(7,55,100,.11); font-size: 4.2rem; font-weight: 950; line-height: 1; }
.architecture-card__icon { width: 54px; height: 54px; display: grid; place-items: center; border-radius: 13px; color: var(--blue); background: var(--soft-blue); }
.architecture-card--hybrid .architecture-card__icon { color: var(--green-dark); background: #e7f8f1; }
.architecture-card--island .architecture-card__icon { color: #5e64a7; background: #edeef8; }
.architecture-card__icon svg { width: 30px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.architecture-card__tag { margin: 26px 0 5px; color: var(--blue); font-size: .68rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.architecture-card h3 { margin: 0; color: var(--blue-dark); font-size: 1.55rem; line-height: 1.15; letter-spacing: -.03em; }
.architecture-card > p:not(.architecture-card__tag) { margin: 17px 0 0; color: var(--muted); font-size: .91rem; }
.architecture-card ul { display: grid; gap: 8px; margin: 23px 0 26px; padding: 0; list-style: none; }
.architecture-card li { position: relative; padding-left: 22px; color: #344f65; font-size: .83rem; font-weight: 650; }
.architecture-card li::before { content: ""; position: absolute; left: 0; top: .52em; width: 8px; height: 8px; border-radius: 2px; background: var(--green); transform: rotate(45deg); }
.architecture-card > a { margin-top: auto; color: var(--blue); font-size: .84rem; font-weight: 850; text-decoration: none; }
.architecture-card > a span { display: inline-block; margin-left: 4px; transition: transform .2s ease; }
.architecture-card > a:hover span { transform: translateX(4px); }
.decision-table { margin-top: 28px; overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.decision-table table { width: 100%; min-width: 820px; border-collapse: collapse; font-size: .83rem; }
.decision-table th, .decision-table td { padding: 16px 20px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); text-align: left; }
.decision-table tr:last-child th, .decision-table tr:last-child td { border-bottom: 0; }
.decision-table th:last-child, .decision-table td:last-child { border-right: 0; }
.decision-table thead th { color: #fff; background: var(--blue-dark); font-size: .73rem; letter-spacing: .04em; text-transform: uppercase; }
.decision-table tbody th { color: var(--blue-dark); background: var(--soft); font-weight: 850; }
.decision-table td { color: #465e72; }

/* Projects */
.project-section { padding-top: 86px; padding-bottom: 86px; background: var(--soft); border-block: 1px solid var(--line); }
.project-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.project-card { position: relative; display: grid; grid-template-columns: 34px 58px 1fr 30px; align-items: center; gap: 16px; min-height: 138px; padding: 19px 20px; border: 1px solid var(--line); border-radius: 14px; color: inherit; background: #fff; text-align: left; box-shadow: 0 5px 18px rgba(7,55,100,.04); transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease; }
.project-card:hover { transform: translateY(-3px); border-color: #a9cadf; box-shadow: var(--shadow-sm); }
.project-card.is-active { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(0,85,158,.08), var(--shadow-sm); }
.project-card__code { align-self: start; color: #9cb0bf; font-size: .64rem; font-weight: 900; }
.project-card__icon { width: 56px; height: 56px; display: grid; place-items: center; border-radius: 12px; color: var(--blue); background: var(--soft-blue); }
.project-card.is-active .project-card__icon { color: #fff; background: var(--blue); }
.project-card__icon svg { width: 30px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.project-card__copy { min-width: 0; display: flex; flex-direction: column; }
.project-card__copy small { color: var(--green-dark); font-size: .65rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.project-card__copy strong { margin-top: 4px; color: var(--blue-dark); font-size: 1.03rem; }
.project-card__copy em { margin-top: 4px; color: var(--muted); font-size: .76rem; font-style: normal; }
.project-card__arrow { width: 28px; height: 28px; display: grid; place-items: center; border-radius: 50%; color: var(--blue); background: var(--soft-blue); font-weight: 900; transition: transform .2s ease; }
.project-card:hover .project-card__arrow { transform: translateX(3px); }

/* Selection and catalogue */
.selection-section { overflow: hidden; background: #fff; }
.selection-head { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: end; gap: 32px; margin-bottom: 30px; }
.selection-head h2 { margin: 7px 0 7px; color: var(--blue-dark); font-size: clamp(1.85rem, 3vw, 2.8rem); line-height: 1.1; letter-spacing: -.04em; }
.selection-head p:not(.eyebrow) { max-width: 790px; margin: 0; color: var(--muted); }
.selection-head__tools { display: flex; align-items: center; gap: 14px; }
.week-badge { padding: 8px 12px; border: 1px solid #cfe0eb; border-radius: 999px; color: var(--blue); background: var(--soft-blue); font-size: .66rem; font-weight: 850; }
.row-buttons { display: flex; gap: 7px; }
.row-buttons button { width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 8px; color: var(--blue-dark); background: #fff; font-weight: 900; }
.row-buttons button:hover:not(:disabled) { color: #fff; border-color: var(--blue); background: var(--blue); }
.row-buttons button:disabled { opacity: .35; cursor: default; }
.product-row { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(270px, 23.5%); gap: 18px; overflow-x: auto; overscroll-behavior-inline: contain; scroll-snap-type: x mandatory; scrollbar-width: none; padding: 5px 4px 20px; }
.product-row::-webkit-scrollbar { display: none; }
.product-row .product-card { scroll-snap-align: start; }
.row-progress { height: 3px; overflow: hidden; border-radius: 3px; background: #e9eff3; }
.row-progress span { display: block; width: 20%; height: 100%; border-radius: inherit; background: var(--green); transition: width .2s ease, margin-left .2s ease; }
.selection-disclaimer { max-width: 920px; margin: 18px 0 0; color: #6b7e8e; font-size: .73rem; }

.catalogue-section { background: var(--soft); border-top: 1px solid var(--line); }
.catalogue-header { display: grid; grid-template-columns: minmax(0,1fr) auto; align-items: end; gap: 36px; }
.catalogue-header h2 { margin: 7px 0 8px; color: var(--blue-dark); font-size: clamp(2rem, 3.7vw, 3.2rem); line-height: 1.08; letter-spacing: -.045em; }
.catalogue-header > div:first-child > p:last-child { max-width: 810px; margin: 0; color: var(--muted); }
.catalogue-source { display: flex; align-items: center; gap: 10px; max-width: 330px; padding: 12px 15px; border: 1px solid #cfe0eb; border-radius: 10px; color: var(--blue-dark); background: #fff; font-size: .72rem; font-weight: 750; box-shadow: var(--shadow-sm); }
.catalogue-tools { display: grid; grid-template-columns: minmax(0, 1fr) 250px; gap: 15px; margin-top: 30px; padding: 18px; border: 1px solid var(--line); border-radius: 14px; background: #fff; box-shadow: var(--shadow-sm); }
.search-field label, .sort-field label { display: block; margin-bottom: 7px; color: var(--blue-dark); font-size: .69rem; font-weight: 850; }
.search-field > div { position: relative; }
.search-field svg { position: absolute; left: 14px; top: 50%; width: 20px; transform: translateY(-50%); fill: none; stroke: #7892a6; stroke-width: 2; stroke-linecap: round; }
.search-field input, .sort-field select { width: 100%; height: 50px; border: 1px solid #cedbe4; border-radius: 9px; color: var(--ink); background: #fff; }
.search-field input { padding: 0 48px 0 44px; }
.search-field input:focus, .sort-field select:focus { border-color: var(--blue); outline: 3px solid rgba(0,85,158,.1); }
.search-field button { position: absolute; right: 8px; top: 50%; width: 34px; height: 34px; transform: translateY(-50%); border: 0; border-radius: 7px; color: #62798b; background: var(--soft); font-size: 1.35rem; line-height: 1; }
.sort-field select { padding: 0 38px 0 13px; }
.category-filters { display: flex; flex-wrap: wrap; gap: 8px; margin: 20px 0; }
.filter-chip { min-height: 40px; padding: 8px 14px; border: 1px solid #cad9e3; border-radius: 999px; color: #38536a; background: #fff; font-size: .75rem; font-weight: 800; }
.filter-chip:hover { border-color: var(--blue); color: var(--blue); }
.filter-chip.is-active { color: #fff; border-color: var(--blue); background: var(--blue); }
.catalogue-summary { min-height: 32px; display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 15px; }
.catalogue-summary p { margin: 0; color: var(--muted); font-size: .76rem; font-weight: 700; }
.reset-filters { padding: 5px 0; border: 0; color: var(--blue); background: none; font-size: .75rem; font-weight: 850; text-decoration: underline; text-underline-offset: 3px; }
.catalogue-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }

/* Product cards rendered by JS */
.product-card { min-width: 0; display: flex; flex-direction: column; overflow: hidden; border: 1px solid var(--line); border-radius: 14px; background: #fff; box-shadow: 0 8px 24px rgba(3,30,56,.065); transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.product-card:hover { transform: translateY(-5px); border-color: #bed3e1; box-shadow: 0 18px 42px rgba(3,30,56,.13); }
.product-card__media-link { display: block; text-decoration: none; }
.product-card__media { position: relative; height: 220px; display: grid; place-items: center; overflow: hidden; background: linear-gradient(145deg, #f8fafb, #eef4f7); }
.product-card__media::after { content: ""; position: absolute; inset: auto -30px -70px auto; width: 150px; height: 150px; border-radius: 50%; background: rgba(0,85,158,.06); }
.product-card__media img { position: relative; z-index: 1; width: 100%; height: 100%; padding: 16px; object-fit: contain; transition: transform .25s ease; }
.product-card:hover .product-card__media img { transform: scale(1.035); }
.product-card__badges { position: absolute; z-index: 2; inset: 10px 10px auto; display: flex; justify-content: space-between; gap: 6px; }
.product-badge { max-width: 58%; padding: 6px 8px; overflow: hidden; border-radius: 5px; color: var(--blue-dark); background: rgba(255,255,255,.92); box-shadow: 0 3px 12px rgba(3,30,56,.08); font-size: .56rem; font-weight: 900; letter-spacing: .05em; text-overflow: ellipsis; text-transform: uppercase; white-space: nowrap; }
.product-badge--stock { color: #fff; background: var(--green); }
.product-card__content { flex: 1; display: flex; flex-direction: column; padding: 17px; }
.product-card__ref { margin: 0 0 6px; color: #7a8e9e; font-size: .62rem; font-weight: 750; letter-spacing: .07em; text-transform: uppercase; }
.product-card__title { margin: 0; font-size: .94rem; line-height: 1.36; letter-spacing: -.012em; }
.product-card__title a { display: -webkit-box; min-height: 3.8em; overflow: hidden; color: var(--blue-dark); text-decoration: none; -webkit-box-orient: vertical; -webkit-line-clamp: 3; }
.product-card__title a:hover { color: var(--blue); }
.product-card__category { display: -webkit-box; min-height: 2.7em; margin: 9px 0 0; overflow: hidden; color: var(--muted); font-size: .68rem; line-height: 1.35; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.product-card__footer { margin-top: auto; padding-top: 17px; }
.product-card__price-row { display: flex; align-items: end; justify-content: space-between; min-height: 42px; padding-top: 12px; border-top: 1px solid #e8eef2; }
.product-card__price-label { display: block; color: #7c8f9d; font-size: .57rem; font-weight: 750; text-transform: uppercase; }
.product-card__price { display: block; margin-top: 2px; color: var(--blue-dark); font-size: 1.05rem; letter-spacing: -.025em; }
.product-card__old-price { display: inline-block; margin-left: 6px; color: #8293a0; font-size: .68rem; text-decoration: line-through; }
.product-card__actions { display: grid; grid-template-columns: 1fr 42px; gap: 8px; margin-top: 12px; }
.product-card__view, .product-card__cart { min-height: 42px; display: flex; align-items: center; justify-content: center; border-radius: 8px; text-decoration: none; }
.product-card__view { padding: 9px 12px; color: #fff; background: var(--blue); font-size: .73rem; font-weight: 850; }
.product-card__view:hover { background: var(--blue-dark); }
.product-card__cart { color: #fff; background: var(--green); }
.product-card__cart:hover { background: var(--green-dark); }
.product-card__cart svg { width: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.loading-card { min-height: 390px; border: 1px solid var(--line); border-radius: 14px; background: linear-gradient(100deg, #fff 35%, #edf3f6 50%, #fff 65%); background-size: 300% 100%; animation: loading 1.4s ease infinite; }
@keyframes loading { 0% { background-position: 100% 0; } 100% { background-position: 0 0; } }
.empty-state { grid-column: 1 / -1; min-height: 270px; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 36px; border: 1px dashed #b8cbd8; border-radius: 14px; color: var(--muted); background: #fff; text-align: center; }
.empty-state svg { width: 42px; margin-bottom: 13px; fill: none; stroke: #8da6b8; stroke-width: 1.7; stroke-linecap: round; }
.empty-state strong { color: var(--blue-dark); font-size: 1.2rem; }
.empty-state p { margin: 6px 0 18px; }
.pagination { display: flex; flex-wrap: wrap; justify-content: center; gap: 7px; margin-top: 30px; }
.pagination button, .pagination span { min-width: 40px; height: 40px; display: grid; place-items: center; padding: 0 11px; border: 1px solid #cad9e3; border-radius: 7px; color: var(--blue-dark); background: #fff; font-size: .74rem; font-weight: 800; }
.pagination button:hover:not(:disabled) { color: #fff; border-color: var(--blue); background: var(--blue); }
.pagination button[aria-current="page"] { color: #fff; border-color: var(--blue); background: var(--blue); }
.pagination button:disabled { opacity: .4; cursor: default; }
.pagination .pagination-arrow { min-width: 98px; }
.pagination .pagination-dots { border-color: transparent; background: transparent; }

/* ROI */
.roi-section { position: relative; overflow: hidden; color: #fff; background: linear-gradient(135deg, #062744, #073f70); }
.roi-section::after { content: ""; position: absolute; top: -250px; right: -200px; width: 650px; height: 650px; border: 1px solid rgba(255,255,255,.08); border-radius: 50%; }
.roi-layout { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, .92fr) minmax(480px, 1.08fr); align-items: start; gap: 70px; }
.roi-copy h2 { color: #fff; }
.roi-copy > p { color: #c4d9e7; }
.roi-formula { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; align-items: stretch; gap: 7px; margin: 28px 0 18px; }
.roi-formula span, .roi-formula strong { min-height: 82px; display: flex; align-items: center; justify-content: center; padding: 12px; border: 1px solid rgba(255,255,255,.13); border-radius: 10px; background: rgba(255,255,255,.06); color: #e8f3f9; font-size: .72rem; font-weight: 750; text-align: center; }
.roi-formula b { align-self: center; color: var(--green); font-size: 1.2rem; }
.roi-formula strong { grid-column: 1 / -1; min-height: 52px; border-color: rgba(0,182,122,.35); background: rgba(0,182,122,.12); color: #fff; }
.roi-caution { padding: 14px 16px; border-left: 3px solid var(--warning); border-radius: 4px; background: rgba(255,255,255,.055); color: #c7dae6 !important; font-size: .79rem; }
.roi-caution strong { color: #fff; }
.roi-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 25px; }
.audit-panel { overflow: hidden; border: 1px solid rgba(255,255,255,.16); border-radius: 18px; background: rgba(255,255,255,.07); box-shadow: 0 24px 60px rgba(0,0,0,.16); }
.audit-panel__head { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 18px 20px; border-bottom: 1px solid rgba(255,255,255,.12); background: rgba(0,0,0,.12); }
.audit-panel__head span { font-weight: 850; }
.audit-panel__head small { color: #8fc7e7; }
.audit-list { margin: 0; padding: 5px 20px 12px; list-style: none; }
.audit-list li { display: grid; grid-template-columns: 42px 1fr; gap: 13px; padding: 15px 0; border-bottom: 1px solid rgba(255,255,255,.09); }
.audit-list li:last-child { border-bottom: 0; }
.audit-list li > span { width: 34px; height: 34px; display: grid; place-items: center; border: 1px solid rgba(0,182,122,.35); border-radius: 8px; color: #72e0bb; background: rgba(0,182,122,.07); font-size: .64rem; font-weight: 900; }
.audit-list strong { font-size: .86rem; }
.audit-list p { margin: 3px 0 0; color: #a9c4d5; font-size: .72rem; }

/* Use cases */
.usecase-section { background: #fff; }
.usecase-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 14px; }
.usecase-grid article { min-height: 315px; padding: 24px; border: 1px solid var(--line); border-radius: 14px; background: #fff; box-shadow: var(--shadow-sm); }
.usecase-grid__icon { width: 50px; height: 50px; display: grid; place-items: center; margin-bottom: 25px; border-radius: 12px; color: var(--blue); background: var(--soft-blue); }
.usecase-grid__icon svg { width: 28px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.usecase-grid small { color: var(--green-dark); font-size: .65rem; font-weight: 900; letter-spacing: .09em; text-transform: uppercase; }
.usecase-grid h3 { margin: 7px 0 12px; color: var(--blue-dark); font-size: 1.17rem; }
.usecase-grid p { margin: 0; color: var(--muted); font-size: .82rem; }

/* Guardrails */
.guardrail-section { background: var(--soft); border-block: 1px solid var(--line); }
.guardrail-layout { display: grid; grid-template-columns: minmax(300px, .72fr) minmax(0, 1.28fr); gap: 70px; }
.guardrail-intro { position: sticky; top: 120px; align-self: start; }
.guardrail-intro .text-link { display: inline-flex; margin-top: 22px; }
.guardrail-list { display: grid; gap: 10px; }
.guardrail-list article { display: grid; grid-template-columns: 56px 1fr; gap: 18px; align-items: start; padding: 21px; border: 1px solid var(--line); border-radius: 12px; background: #fff; }
.guardrail-list article > span { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 10px; color: #fff; background: var(--blue); font-size: .7rem; font-weight: 900; }
.guardrail-list h3 { margin: 1px 0 5px; color: var(--blue-dark); font-size: 1rem; }
.guardrail-list p { margin: 0; color: var(--muted); font-size: .8rem; }

/* Resources */
.resources-section { background: #fff; }
.resource-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 12px; }
.resource-grid a { display: grid; grid-template-columns: 38px 1fr auto; gap: 14px; align-items: center; min-height: 115px; padding: 18px; border: 1px solid var(--line); border-radius: 12px; background: #fff; text-decoration: none; transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease; }
.resource-grid a:hover { transform: translateY(-3px); border-color: #a9cadf; box-shadow: var(--shadow-sm); }
.resource-grid a > span { width: 36px; height: 36px; display: grid; place-items: center; border-radius: 8px; color: var(--blue); background: var(--soft-blue); font-size: .65rem; font-weight: 900; }
.resource-grid strong { display: block; color: var(--blue-dark); font-size: .86rem; }
.resource-grid p { margin: 4px 0 0; color: var(--muted); font-size: .69rem; }
.resource-grid a > b { color: var(--green-dark); font-size: 1.1rem; }

/* FAQ */
.faq-section { color: #fff; background: var(--blue-deep); }
.faq-layout { display: grid; grid-template-columns: minmax(300px, .72fr) minmax(0, 1.28fr); gap: 70px; }
.faq-aside { align-self: start; padding: 31px; border: 1px solid rgba(255,255,255,.13); border-radius: 17px; background: linear-gradient(150deg, rgba(0,85,158,.3), rgba(255,255,255,.04)); }
.faq-aside h2 { color: #fff; font-size: clamp(1.9rem, 3vw, 2.8rem); }
.faq-aside > p { color: #b8cfde; }
.faq-aside .btn { margin-top: 24px; }
.faq-aside__contact { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 18px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.12); color: #fff; font-size: .76rem; font-weight: 750; text-decoration: none; }
.faq-aside__contact span { color: var(--green); }
.faq-list { border-top: 1px solid rgba(255,255,255,.14); }
.faq-list details { border-bottom: 1px solid rgba(255,255,255,.14); }
.faq-list summary { position: relative; padding: 22px 56px 22px 0; color: #fff; font-size: .92rem; font-weight: 800; list-style: none; cursor: pointer; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 4px; top: 50%; width: 31px; height: 31px; display: grid; place-items: center; transform: translateY(-50%); border: 1px solid rgba(255,255,255,.2); border-radius: 50%; color: #7de0bd; font-size: 1.2rem; transition: transform .2s ease; }
.faq-list details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-list details > div { padding: 0 56px 21px 0; }
.faq-list p { margin: 0; color: #afc9d9; font-size: .84rem; }

/* CTA and footer */
.final-cta { padding: 72px 0; color: #fff; background: linear-gradient(120deg, var(--blue), #0076bd); }
.final-cta__inner { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: 50px; }
.final-cta h2 { max-width: 850px; margin: 8px 0 0; font-size: clamp(1.8rem, 3.3vw, 3rem); line-height: 1.1; letter-spacing: -.04em; }
.final-cta__actions { display: flex; flex-wrap: wrap; justify-content: end; gap: 10px; }
.site-footer { color: #c8d6df; background: #021727; }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 50px; padding-top: 62px; padding-bottom: 52px; }
.brand--footer .brand__copy strong { color: #fff; }
.brand--footer .brand__copy small { color: #8caabd; }
.footer-brand > p { max-width: 390px; color: #91a9b8; font-size: .78rem; }
.footer-brand .footer-since { color: #b4c6d2; }
.footer-brand .footer-since a { color: #fff; }
.footer-official { display: inline-flex; align-items: center; gap: 8px; margin-top: 13px; color: #fff; font-size: .72rem; font-weight: 750; text-decoration: none; }
.footer-official svg { width: 20px; fill: none; stroke: var(--green); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.footer-column { display: flex; flex-direction: column; align-items: start; gap: 9px; }
.footer-column h3 { margin: 5px 0 9px; color: #fff; font-size: .82rem; }
.footer-column a { color: #93adbd; font-size: .72rem; text-decoration: none; }
.footer-column a:hover { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding-top: 21px; padding-bottom: 21px; border-top: 1px solid rgba(255,255,255,.09); color: #7e98a8; font-size: .68rem; }
.footer-bottom p { margin: 0; }

.mobile-catalogue-cta { position: fixed; z-index: 900; right: 14px; bottom: 14px; display: none; align-items: center; gap: 8px; padding: 11px 15px; border-radius: 999px; color: #fff; background: var(--green); box-shadow: 0 12px 30px rgba(0,0,0,.22); font-size: .75rem; font-weight: 850; text-decoration: none; transform: translateY(120px); transition: transform .25s ease; }
.mobile-catalogue-cta.is-visible { transform: translateY(0); }
.mobile-catalogue-cta svg { width: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.noscript-notice { position: fixed; z-index: 99999; inset: auto 16px 16px; padding: 17px; border-radius: 10px; color: #fff; background: #8b2d2d; box-shadow: var(--shadow); }
.noscript-notice strong, .noscript-notice a { display: block; }
.noscript-notice a { margin-top: 5px; color: #fff; }

/* 404 */
.error-page { min-height: 100vh; display: grid; place-items: center; padding: 30px; color: #fff; background: linear-gradient(135deg, var(--blue-deep), var(--blue-dark)); }
.error-card { max-width: 720px; padding: 42px; border: 1px solid rgba(255,255,255,.16); border-radius: 22px; background: rgba(255,255,255,.07); text-align: center; box-shadow: var(--shadow); }
.error-card__code { color: var(--green); font-size: clamp(4rem, 12vw, 8rem); font-weight: 950; line-height: 1; }
.error-card h1 { margin: 10px 0; font-size: clamp(1.8rem, 5vw, 3rem); }
.error-card p { color: #c2d4e0; }
.error-card__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 25px; }

@media (max-width: 1180px) {
  .primary-nav { gap: 16px; }
  .primary-nav > a:not(.btn) { font-size: .79rem; }
  .hero__layout { grid-template-columns: minmax(0, 1fr) 470px; gap: 38px; }
  .catalogue-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .usecase-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .resource-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .footer-grid { grid-template-columns: 1.35fr repeat(3, .9fr); gap: 30px; }
}

@media (max-width: 980px) {
  :root { --header-h: 70px; }
  .wrap { width: min(calc(100% - 30px), var(--wrap)); }
  .menu-toggle { display: block; }
  .primary-nav { position: fixed; z-index: 1200; inset: calc(38px + var(--header-h)) 14px auto; max-height: calc(100vh - 125px); display: none; flex-direction: column; align-items: stretch; gap: 0; overflow-y: auto; padding: 14px; border: 1px solid var(--line); border-radius: 14px; background: #fff; box-shadow: var(--shadow); }
  .primary-nav.is-open { display: flex; }
  .primary-nav > a:not(.btn) { padding: 13px 10px; border-bottom: 1px solid var(--line); font-size: .9rem; }
  .primary-nav > a:not(.btn)::after { display: none; }
  .primary-nav .btn { margin-top: 10px; }
  .hero__layout { min-height: auto; grid-template-columns: 1fr; padding-top: 66px; padding-bottom: 66px; }
  .hero__content h1 { max-width: 850px; }
  .hero-console { max-width: 680px; width: 100%; margin-inline: auto; }
  .scope-strip__grid { grid-template-columns: repeat(2, 1fr); }
  .scope-strip__grid > div:nth-child(3) { border-left: 1px solid var(--line); }
  .scope-strip__grid > div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .section { padding: 78px 0; }
  .section-heading--split { grid-template-columns: 1fr; gap: 16px; }
  .architecture-grid { grid-template-columns: 1fr; }
  .architecture-card { min-height: auto; }
  .project-grid { grid-template-columns: 1fr; }
  .product-row { grid-auto-columns: minmax(280px, 43%); }
  .catalogue-header { grid-template-columns: 1fr; }
  .catalogue-source { justify-self: start; }
  .catalogue-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .roi-layout, .guardrail-layout, .faq-layout { grid-template-columns: 1fr; gap: 45px; }
  .guardrail-intro { position: static; }
  .final-cta__inner { grid-template-columns: 1fr; gap: 28px; }
  .final-cta__actions { justify-content: start; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
  .official-bar__inner { min-height: 42px; }
  .official-bar__domain { display: none; }
  .official-bar strong { max-width: 180px; line-height: 1.2; }
  .official-bar a { font-size: 0; }
  .official-bar a::after { content: "Vérifier"; font-size: .7rem; }
  .brand__copy small { display: none; }
  .hero__layout { gap: 42px; padding-top: 52px; padding-bottom: 54px; }
  .hero__content h1 { font-size: clamp(2.35rem, 11vw, 4rem); }
  .hero__lead { font-size: .96rem; }
  .hero__actions .btn { flex: 1 1 180px; }
  .hero-search__row { grid-template-columns: auto 1fr; }
  .hero-search .btn { grid-column: 1 / -1; width: 100%; margin-top: 4px; }
  .hero__indicators { grid-template-columns: 1fr; }
  .hero__indicators > div { min-height: 78px; }
  .energy-map { grid-template-columns: 1fr; gap: 8px; }
  .energy-line { width: 2px; height: 30px; margin-inline: auto; }
  .energy-line::after { top: auto; right: -3px; bottom: -1px; transform: rotate(135deg); }
  .energy-line span { top: 0; left: -2px; width: 6px; height: 13px; animation: flowV 2.2s linear infinite; }
  @keyframes flowV { from { transform: translateY(0); opacity: .15; } 50% { opacity: 1; } to { transform: translateY(18px); opacity: .15; } }
  .energy-node { flex-direction: row; justify-content: center; text-align: left; }
  .energy-node svg { width: 48px; height: 48px; }
  .phase-board { grid-template-columns: 1fr; }
  .hero-product { grid-template-columns: 82px 1fr; }
  .scope-strip__grid { grid-template-columns: 1fr; }
  .scope-strip__grid > div { border-left: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .scope-strip__grid > div:last-child { border-bottom: 0; }
  .section { padding: 64px 0; }
  .section-heading h2, .roi-copy h2, .faq-aside h2, .guardrail-intro h2 { font-size: clamp(1.85rem, 9vw, 2.55rem); }
  .architecture-card { padding: 24px; }
  .project-card { grid-template-columns: 28px 50px 1fr; gap: 12px; padding: 16px; }
  .project-card__arrow { display: none; }
  .selection-head { grid-template-columns: 1fr; align-items: start; }
  .selection-head__tools { justify-content: space-between; }
  .week-badge { max-width: 190px; }
  .product-row { grid-auto-columns: 82%; }
  .catalogue-tools { grid-template-columns: 1fr; }
  .catalogue-grid { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 10px; }
  .product-card__media { height: 170px; }
  .product-card__content { padding: 13px; }
  .product-card__title { font-size: .8rem; }
  .product-card__title a { min-height: 4.1em; }
  .product-card__category { font-size: .62rem; }
  .product-card__price { font-size: .92rem; }
  .product-card__actions { grid-template-columns: 1fr 38px; }
  .product-card__view, .product-card__cart { min-height: 38px; }
  .product-badge { font-size: .48rem; }
  .roi-formula { grid-template-columns: 1fr; }
  .roi-formula b { transform: rotate(90deg); justify-self: center; }
  .roi-formula strong { grid-column: auto; }
  .usecase-grid, .resource-grid { grid-template-columns: 1fr; }
  .usecase-grid article { min-height: auto; }
  .guardrail-list article { grid-template-columns: 45px 1fr; padding: 17px; }
  .guardrail-list article > span { width: 40px; height: 40px; }
  .faq-aside { padding: 24px; }
  .faq-list summary { padding-right: 44px; font-size: .84rem; }
  .faq-list details > div { padding-right: 42px; }
  .final-cta { padding: 58px 0; }
  .final-cta__actions { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; align-items: start; gap: 7px; }
  .mobile-catalogue-cta { display: flex; }
}

@media (max-width: 430px) {
  .wrap { width: min(calc(100% - 22px), var(--wrap)); }
  .official-bar strong { max-width: 150px; font-size: .7rem; }
  .brand__mark { width: 46px; height: 46px; }
  .brand__copy strong { font-size: .93rem; }
  .hero-console { padding: 14px; border-radius: 18px; }
  .console-head { font-size: .59rem; }
  .architecture-card__number { font-size: 3.4rem; }
  .project-card__copy em { font-size: .68rem; }
  .product-row { grid-auto-columns: 88%; }
  .catalogue-grid { grid-template-columns: 1fr 1fr; }
  .product-card__media { height: 150px; }
  .product-card__badges { inset: 7px 7px auto; }
  .product-card__content { padding: 10px; }
  .product-card__ref { font-size: .55rem; }
  .product-card__title { font-size: .75rem; }
  .product-card__category { display: none; }
  .product-card__price-row { padding-top: 9px; }
  .product-card__price-label { display: none; }
  .product-card__view { padding-inline: 6px; font-size: .66rem; }
  .pagination .pagination-arrow { min-width: 80px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

/* Sélection projet stricte : aucun remplissage avec des références hors sujet. */
.selection-empty {
  grid-column: 1 / -1;
  width: min(100%, 760px);
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 8px;
  padding: 28px;
  border: 1px dashed #aac0d0;
  border-radius: 16px;
  background: #fff;
  color: var(--muted);
  scroll-snap-align: start;
}
.selection-empty strong { color: var(--blue-dark); font-size: 1.05rem; }
.selection-empty p { margin: 0; max-width: 62ch; }
