﻿/*
Theme Name: ADAQUIA
Theme URI: https://adaquia.local
Author: ADAQUIA
Description: Theme WordPress leger pour ADAQUIA, aide aux entreprises, methode, accompagnement, structuration, QHSE et conformite.
Version: 0.1.40
Requires at least: 6.5
Tested up to: 7.0
Requires PHP: 8.1
Text Domain: adaquia
*/

:root {
  --blue-950: #052034;
  --blue-900: #073a57;
  --blue-800: #0b5c78;
  --sage-600: #5f9f57;
  --sage-500: #82ba6f;
  --sage-300: #cfe5c5;
  --ink: #0d2433;
  --muted: #62717c;
  --line: #e3ddd3;
  --paper: #fbf7ef;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(5, 32, 52, .13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(251, 247, 239, .9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(227, 221, 211, .9);
}

.nav {
  width: min(1180px, calc(100% - 32px));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  border-radius: 0;
  box-shadow: none;
}

.brand-text {
  display: grid;
  gap: 2px;
  line-height: 1.1;
}

.brand-name {
  font-size: 1.08rem;
  font-weight: 850;
  color: var(--blue-900);
  letter-spacing: .1em;
}

.brand-sub {
  font-size: .72rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .13em;
}

.menu {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #304056;
  font-size: .95rem;
}

.menu ul,
.menu .menu {
  display: flex;
  align-items: center;
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.menu li {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
}

.menu a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  color: #304056;
  font-weight: 700;
}

.menu a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 2px;
  opacity: 0;
  transform: translateY(4px);
  background: var(--sage-500);
  transition: opacity .18s ease, transform .18s ease;
}

.menu a:hover::after,
.menu .current-menu-item > a::after,
.menu .current-menu-ancestor > a::after {
  opacity: 1;
  transform: translateY(0);
}

.menu .sub-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  z-index: 30;
  min-width: 245px;
  display: grid;
  gap: 4px;
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 8px);
  background: rgba(255, 255, 255, .98);
  border: 1px solid rgba(219, 227, 234, .95);
  border-radius: 8px;
  box-shadow: 0 24px 60px rgba(7, 20, 38, .15);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

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

.menu li:hover > .sub-menu,
.menu li:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.menu .sub-menu li {
  width: 100%;
}

.menu .sub-menu a {
  width: 100%;
  min-height: 42px;
  padding: 0 12px;
  border-radius: 6px;
  color: var(--blue-900);
  white-space: nowrap;
}

.menu .sub-menu a::after {
  display: none;
}

.menu .sub-menu a:hover,
.menu .sub-menu a:focus {
  background: rgba(199, 215, 208, .28);
  outline: none;
}

.mobile-nav {
  display: none;
  position: relative;
}

.mobile-nav summary {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 1px solid rgba(143, 169, 155, .48);
  border-radius: 6px;
  color: var(--blue-900);
  background: rgba(255, 255, 255, .78);
  font-weight: 850;
  cursor: pointer;
  list-style: none;
}

.mobile-nav summary::-webkit-details-marker {
  display: none;
}

.mobile-nav summary::after {
  content: "";
  width: 8px;
  height: 8px;
  margin-left: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}

.mobile-nav[open] summary::after {
  transform: translateY(2px) rotate(225deg);
}

.mobile-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 40;
  width: min(82vw, 320px);
  display: grid;
  gap: 4px;
  padding: 10px;
  border: 1px solid rgba(219, 227, 234, .95);
  border-radius: 8px;
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 24px 60px rgba(7, 20, 38, .16);
}

.mobile-menu a {
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 6px;
  color: var(--blue-900);
  font-weight: 800;
}

.mobile-menu a:hover,
.mobile-menu a:focus {
  background: rgba(199, 215, 208, .28);
  outline: none;
}

.mobile-menu .mobile-menu-cta {
  justify-content: center;
  margin-top: 4px;
  color: var(--white);
  background: var(--blue-900);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 6px;
  font-weight: 750;
  border: 1px solid transparent;
}

.button-primary {
  color: var(--white);
  background: var(--blue-900);
  box-shadow: 0 16px 32px rgba(13, 35, 64, .2);
}

.button-secondary {
  color: var(--blue-900);
  background: var(--white);
  border-color: var(--line);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 28%, rgba(143, 169, 155, .35), transparent 24rem),
    linear-gradient(135deg, #fffdf8 0%, #edf3ec 100%);
  border-bottom: 1px solid var(--line);
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 98px 0 82px;
  background:
    radial-gradient(circle at 80% 20%, rgba(143, 169, 155, .28), transparent 24rem),
    linear-gradient(135deg, #fffdf8 0%, #edf3ec 100%);
  border-bottom: 1px solid var(--line);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .58fr);
  gap: 64px;
  align-items: center;
}

.page-hero h1 {
  max-width: 880px;
}

.page-summary {
  padding: 30px;
  border: 1px solid rgba(143, 169, 155, .38);
  border-radius: 8px;
  background: rgba(255,255,255,.7);
  box-shadow: var(--shadow);
}

.page-summary span {
  display: block;
  margin-bottom: 18px;
  color: var(--blue-900);
  font-weight: 850;
}

.page-summary ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 20px;
  color: #405168;
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto -160px -220px auto;
  width: 520px;
  height: 520px;
  border: 46px solid rgba(18, 53, 99, .08);
  border-radius: 50%;
  pointer-events: none;
}

.hero-inner {
  width: min(1180px, calc(100% - 32px));
  min-height: 760px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(520px, 1.1fr);
  align-items: center;
  gap: 46px;
  padding: 58px 0 82px;
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  color: var(--blue-800);
  font-size: .82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .14em;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--sage-500);
}

h1,
h2,
h3 {
  color: var(--blue-950);
  letter-spacing: 0;
}

h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(2.55rem, 4.9vw, 4.85rem);
  line-height: 1.01;
  font-weight: 760;
}

.lead {
  max-width: 650px;
  margin: 24px 0 0;
  color: #405168;
  font-size: clamp(1.02rem, 1.45vw, 1.18rem);
}

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

.price-note {
  width: fit-content;
  margin: 16px 0 0;
  padding: 10px 14px;
  color: var(--blue-900);
  background: rgba(255,255,255,.66);
  border: 1px solid rgba(143, 169, 155, .42);
  border-radius: 999px;
  font-size: .94rem;
  font-weight: 750;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 28px;
  max-width: 760px;
}

.trust-item {
  min-height: 72px;
  padding: 14px 14px 14px 42px;
  position: relative;
  border: 1px solid rgba(219, 227, 234, .9);
  background: rgba(255, 255, 255, .58);
  border-radius: 8px;
  color: #314258;
  font-size: .84rem;
  font-weight: 650;
}

.trust-item::before {
  content: "";
  position: absolute;
  left: 13px;
  top: 15px;
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(95, 159, 87, .65);
  border-radius: 50%;
  background: radial-gradient(circle, var(--sage-600) 0 34%, transparent 36%);
}

.visual-panel {
  position: relative;
  min-height: 560px;
}

.hero-art {
  position: absolute;
  top: -18px;
  right: -132px;
  width: min(820px, 122%);
  aspect-ratio: 1.42;
  overflow: hidden;
  border: 1px solid rgba(143, 169, 155, .38);
  border-radius: 8px;
  background: rgba(255, 255, 255, .72);
  box-shadow: 0 28px 78px rgba(5, 32, 52, .14);
}

.hero-art::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(5,32,52,.03)),
    radial-gradient(circle at 88% 16%, rgba(130, 186, 111, .2), transparent 14rem);
}

.hero-art img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

main section {
  padding: 86px 0;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.section-kicker {
  margin: 0 0 12px;
  color: var(--sage-600);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .82rem;
}

h2 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.04;
}

.section-intro {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.notice-box {
  max-width: 860px;
  margin-top: 26px;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--sage-600);
  border-radius: 8px;
  background: #f7faf8;
}

.notice-box strong {
  display: block;
  margin-bottom: 8px;
  color: var(--blue-900);
}

.notice-box p {
  margin: 0;
  color: var(--muted);
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  margin-top: 42px;
}

.card {
  min-height: 250px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 45px rgba(7, 20, 38, .06);
}

.card-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border: 1px solid rgba(143, 169, 155, .55);
  border-radius: 50%;
  color: var(--blue-900);
  font-weight: 900;
}

.card h3 {
  margin: 0 0 12px;
  color: var(--blue-900);
  font-size: 1.18rem;
}

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

.offer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 18px;
  margin-top: 42px;
}

.offer-card {
  min-height: 330px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 45px rgba(7, 20, 38, .06);
}

.offer-card > span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 24px;
  color: var(--sage-600);
  border: 1px solid rgba(143, 169, 155, .55);
  border-radius: 50%;
  font-weight: 900;
}

.offer-card h3 {
  margin: 0 0 12px;
  color: var(--blue-900);
}

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

.offer-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--blue-950);
}

.benefit-table {
  display: grid;
  margin-top: 42px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 8px;
  overflow: hidden;
}

.benefit-table > div {
  display: grid;
  grid-template-columns: .8fr 1fr 1fr;
  gap: 1px;
  border-bottom: 1px solid rgba(255,255,255,.16);
}

.benefit-table > div:last-child {
  border-bottom: 0;
}

.benefit-table strong,
.benefit-table span,
.benefit-table em {
  padding: 22px;
  background: rgba(255,255,255,.055);
}

.benefit-table strong {
  color: var(--sage-300);
}

.benefit-table span {
  color: #d4dee8;
}

.benefit-table em {
  color: var(--white);
  font-style: normal;
  font-weight: 700;
}

.topic-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 14px;
  margin-top: 42px;
}

.topic-grid a {
  min-height: 74px;
  display: flex;
  align-items: center;
  padding: 18px;
  color: var(--blue-900);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  font-weight: 800;
  box-shadow: 0 12px 35px rgba(7, 20, 38, .045);
}

.value-section {
  padding: 0;
  background: var(--paper);
}

.value-panel {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: 48px;
  align-items: center;
  margin-top: -30px;
  padding: 34px;
  position: relative;
  z-index: 2;
  border: 1px solid rgba(143, 169, 155, .35);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255,255,255,.95), rgba(238,245,242,.95));
  box-shadow: 0 20px 60px rgba(7, 20, 38, .09);
}

.value-panel h2 {
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.value-points {
  display: grid;
  gap: 12px;
}

.value-points div {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 14px 0;
  border-bottom: 1px solid rgba(219, 227, 234, .85);
}

.value-points div:last-child {
  border-bottom: 0;
}

.value-points span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--sage-600);
  border: 1px solid rgba(143, 169, 155, .55);
  border-radius: 50%;
  font-size: .82rem;
  font-weight: 900;
}

.value-points p {
  margin: 0;
  color: #405168;
  font-weight: 650;
}

.split-section {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1fr);
  gap: 64px;
  align-items: start;
}

.text-stack {
  display: grid;
  gap: 18px;
  color: #46576d;
  font-size: 1.08rem;
}

.text-stack p {
  margin: 0;
}

.media-split {
  align-items: center;
}

.service-photo {
  margin: 28px 0 0;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(143, 169, 155, .32);
  background: var(--white);
  box-shadow: 0 18px 55px rgba(7, 20, 38, .09);
}

.service-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.inline-link {
  width: fit-content;
  color: var(--blue-900);
  font-weight: 800;
  border-bottom: 2px solid var(--sage-500);
}

.band {
  background: var(--blue-950);
  color: var(--white);
}

.band h2,
.band h3,
.band .section-kicker {
  color: var(--white);
}

.band .section-intro {
  color: #c8d3df;
}

.steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: 42px;
  background: transparent;
  border: 0;
}

.step {
  min-height: 184px;
  padding: 24px;
  position: relative;
  background: rgba(255,255,255,.075);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 8px;
}

.step span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  color: var(--sage-300);
  border: 1px solid rgba(199, 215, 208, .42);
  border-radius: 50%;
  font-weight: 900;
}

.step h3 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.35;
}

.step p {
  margin: 10px 0 0;
  color: #b9c6d4;
  font-size: .92rem;
}

.proof-layout {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  gap: 46px;
  align-items: stretch;
}

.proof-lead {
  padding: 38px;
  border-radius: 8px;
  color: var(--white);
  background:
    radial-gradient(circle at 86% 18%, rgba(143, 169, 155, .28), transparent 16rem),
    linear-gradient(135deg, var(--blue-900), var(--blue-950));
  box-shadow: var(--shadow);
}

.proof-lead .section-kicker,
.proof-lead h2 {
  color: var(--white);
}

.proof-lead p {
  margin: 20px 0 26px;
  color: #d5dfeb;
  font-size: 1.05rem;
}

.proof-lead .inline-link {
  color: var(--white);
}

.proof-list {
  display: grid;
  gap: 14px;
}

.proof-list article {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 40px rgba(7, 20, 38, .055);
}

.proof-list span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--sage-600);
  border: 1px solid rgba(143, 169, 155, .55);
  border-radius: 50%;
  font-weight: 900;
}

.proof-list h3 {
  margin: 0 0 8px;
  color: var(--blue-900);
  font-size: 1.12rem;
}

.proof-list p {
  margin: 0;
  color: var(--muted);
}

.risk-section {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.risk-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 18px;
  margin-top: 42px;
}

.risk-card {
  min-height: 280px;
  padding: 28px;
  border: 1px solid rgba(13, 35, 64, .18);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(247,249,251,.98));
  box-shadow: 0 16px 45px rgba(7, 20, 38, .06);
}

.risk-card span {
  display: inline-flex;
  margin-bottom: 20px;
  color: var(--sage-600);
  font-size: .82rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.risk-card h3 {
  margin: 0 0 12px;
  color: var(--blue-900);
  font-size: 1.22rem;
  line-height: 1.25;
}

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

.source-note {
  max-width: 900px;
  margin: 20px 0 0;
  color: #718197;
  font-size: .86rem;
}

.soft-section {
  background:
    radial-gradient(circle at 85% 20%, rgba(143, 169, 155, .24), transparent 24rem),
    var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.sector-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 38px;
}

.sector-list span {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #314258;
  background: rgba(255,255,255,.72);
  font-weight: 750;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: 64px;
  align-items: start;
}

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

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 35px rgba(7, 20, 38, .045);
}

.faq-list summary {
  cursor: pointer;
  padding: 20px 22px;
  color: var(--blue-900);
  font-weight: 800;
}

.faq-list p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  padding: 38px;
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-900), var(--blue-950));
  box-shadow: var(--shadow);
}

.cta-panel h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.cta-panel p {
  max-width: 720px;
  color: #ced8e3;
}

.boutique-hero .page-summary,
.shop-preview {
  padding: 34px;
  border: 1px solid rgba(95, 159, 87, .28);
  border-radius: 8px;
  background: rgba(255, 255, 255, .76);
  box-shadow: var(--shadow);
}

.shop-preview {
  display: grid;
  gap: 18px;
  color: #405168;
}

.shop-preview strong {
  color: var(--blue-900);
  font-size: 1.28rem;
}

.shop-preview p {
  margin: 0;
}

.shop-visual {
  position: relative;
  min-height: 220px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  align-items: end;
  padding: 28px;
  overflow: hidden;
  border-radius: 8px;
  background:
    radial-gradient(circle at 78% 20%, rgba(130, 186, 111, .24), transparent 13rem),
    linear-gradient(135deg, rgba(5, 32, 52, .96), rgba(7, 58, 87, .9));
}

.shop-visual::before,
.shop-visual::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.shop-visual::before {
  inset: auto -52px -72px auto;
  width: 190px;
  height: 190px;
  border: 26px solid rgba(255, 255, 255, .08);
}

.shop-visual::after {
  left: 28px;
  right: 28px;
  bottom: 34px;
  height: 2px;
  background: rgba(255, 255, 255, .22);
}

.shop-visual span {
  position: relative;
  z-index: 1;
  display: block;
  min-height: 112px;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 8px 8px 3px 3px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .94), rgba(237, 243, 236, .8));
  box-shadow: 0 18px 34px rgba(0, 0, 0, .18);
}

.shop-visual span:nth-child(2) {
  min-height: 146px;
}

.shop-visual span:nth-child(3) {
  min-height: 92px;
}

.shop-visual span::before {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  top: 22px;
  height: 8px;
  border-radius: 999px;
  background: var(--sage-500);
}

.shop-visual span::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 32px;
  top: 44px;
  height: 6px;
  border-radius: 999px;
  background: rgba(5, 32, 52, .22);
}

.site-footer {
  padding: 34px 0;
  color: #718197;
  background: #052034;
}

.footer-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-inner > div {
  display: grid;
  gap: 4px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  align-items: center;
}

.footer-links a {
  color: #ced8e3;
  font-size: .9rem;
  font-weight: 700;
}

.footer-links a:hover,
.footer-links a:focus {
  color: var(--white);
}

.legal-page .page-summary {
  border-color: rgba(95, 159, 87, .42);
}

.legal-content {
  display: grid;
  gap: 34px;
}

.legal-block {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 12px 35px rgba(7, 20, 38, .045);
}

.legal-block h2 {
  margin-top: 0;
  font-size: clamp(1.45rem, 2vw, 2rem);
}

.legal-block h3 {
  margin-top: 24px;
}

.legal-block p,
.legal-block li {
  color: #405168;
}

.legal-block ul {
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
  padding-left: 20px;
}

.legal-table {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.legal-table div {
  display: grid;
  grid-template-columns: minmax(180px, .38fr) minmax(0, 1fr);
  gap: 16px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.legal-table strong {
  color: var(--blue-900);
}

.legal-warning {
  padding: 18px 20px;
  border: 1px solid rgba(130, 186, 111, .5);
  border-radius: 8px;
  color: var(--blue-900);
  background: rgba(207, 229, 197, .32);
  font-weight: 750;
}

@media (max-width: 900px) {
  .menu {
    display: none;
  }

  .nav {
    min-height: 70px;
    gap: 14px;
  }

  .nav > .button {
    display: none;
  }

  .mobile-nav {
    display: block;
    margin-left: auto;
  }

  .hero-inner {
    min-height: auto;
    max-height: none;
    grid-template-columns: 1fr;
  }

  .visual-panel {
    min-height: 360px;
    padding-top: 0;
    display: grid;
    place-items: center;
  }

  .hero-art {
    position: relative;
    top: auto;
    right: auto;
    width: min(100%, 820px);
  }

  .trust-row,
  .grid,
  .steps,
  .proof-layout,
  .risk-grid,
  .split-grid,
  .faq-layout,
  .value-panel,
  .page-hero-grid,
  .benefit-table > div {
    grid-template-columns: 1fr;
  }

  .value-panel {
    margin-top: 0;
  }

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