:root {
  --bg: #050505;
  --bg-soft: #0b0f13;
  --card: #111318;
  --card-2: #13161b;
  --text: #f4f4f4;
  --muted: #cfd2d8;
  --muted-2: #a9afb7;
  --accent: #59dfff;
  --accent-strong: #22c8f1;
  --border: rgba(89, 223, 255, 0.78);
  --shadow: 0 0 0 1px rgba(89,223,255,.32), 0 0 24px rgba(34, 200, 241, .12);
  --container: 1400px;
  --radius: 22px;
  --header-h: 64px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(89,223,255,0.20), transparent 40%),
    radial-gradient(circle at 80% 30%, rgba(89,223,255,0.12), transparent 50%),
    radial-gradient(circle at 50% 80%, rgba(89,223,255,0.10), transparent 60%),
    linear-gradient(180deg, #050505 0%, #020202 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, .btn { font: inherit; }

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 3px 3px;
  opacity: 0.25;
}

.container {
  width: min(calc(100% - 30px), 1400px);
  margin: 0 auto;
  padding-left: 18px;
  padding-right: 18px;
}

.site-header {
  position: fixed;
  top: 0;
	left: 0;
	width: 100%;
	height: var(--header-h);
  z-index: 99999;
  backdrop-filter: blur(12px);
  background: rgba(5, 5, 5, 0.86);
  border-bottom: 1px solid rgba(89, 223, 255, 0.18);
}

.navbar {
  min-height: var(--header-h);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  column-gap: 20px;
	flex-wrap: nowrap;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-weight: 800;
  letter-spacing: .02em;
  font-size: 1.15rem;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(89,223,255,.25), rgba(89,223,255,.06));
  border: 1px solid rgba(89,223,255,.55);
  box-shadow: 0 0 18px rgba(89,223,255,.16) inset;
  display: grid;
  place-items: center;
  color: var(--accent);
  font-weight: 900;
}

.nav-links {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  align-items: center;
  justify-content: flex-start;
}

.nav-links a {
  color: var(--muted);
  font-weight: 600;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: .2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
  border-color: rgba(89,223,255,.34);
  background: rgba(89,223,255,.08);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid rgba(89,223,255,.32);
  background: rgba(89,223,255,.07);
  color: var(--text);
}

.page {
  flex: 1;
  padding: 54px 0 40px; /* réduit le padding bas */
	padding-top: calc(var(--header-h) + 20px);
  min-height: auto; /* IMPORTANT */
}

.hero-grid,
.two-col {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 40px;
  align-items: center;
}

.hero-media {
  position: relative;
}

.subtitle-toggle {
  position: absolute;
  right: 220px;
  bottom: 40px;
  z-index: 5;
  width: 34px;
  height: 24px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,.5);
  background: rgba(0,0,0,.55);
  color: white;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.hero-media:hover .subtitle-toggle {
  opacity: 1;
}

.hero-media.hide-subtitle-button .subtitle-toggle {
  opacity: 0 !important;
}

.subtitle-toggle:focus {
  opacity: 1;
}

.eyebrow {
  color: var(--accent);
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 800;
  font-size: .92rem;
  margin-bottom: 18px;
}

.title-xl,
.title-lg,
.title-md {
  margin: 0;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.1;
}

.title-xl {
  font-size: 2rem;
}

.title-lg {
  font-size: 2rem;
}

.title-md {
  font-size: 1.2rem;
}

.lead {
  color: var(--muted);
  /*font-size: 1.2rem*/
  font-size: clamp(1.12rem, 1.8vw, 1.55rem);
  line-height: 1.3;
  max-width: 760px;
}

.hero-copy .lead {
	max-width: 900px;
	margin-top: 20px;
}

.hero-actions,
.actions-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 26px;
  border-radius: 8px;
  font-weight: 800;
  letter-spacing: .01em;
  transition: .2s ease;
}

.btn-primary {
  color: #041118;
  background: linear-gradient(180deg, #69e1fb 0%, #4fc9e6 100%);
  box-shadow: 0 10px 24px rgba(79, 201, 230, 0.2);
}

.btn-primary:hover { transform: translateY(-1px); filter: brightness(1.03); }

.btn-secondary,
.btn-outline {
  color: var(--accent);
  background: transparent;
  border: 1px solid rgba(89,223,255,.8);
}
.btn-secondary:hover,
.btn-outline:hover {
  background: rgba(89,223,255,.08);
}

.visual-frame {
  position: relative;
  min-height: 520px;
  border-radius: 28px;
  overflow: hidden;
  background: radial-gradient(circle at top right, rgba(131, 141, 160, .5), rgba(37, 43, 52, .85) 42%, rgba(10, 10, 10, .96) 88%);
}

.visual-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
	object-position: center;
}

.section-head {
  margin-bottom: 46px;
}
.section-head.center { text-align: center; }
.section-head .lead { margin: 18px auto 0; }

.accent-line {
  width: 100%;
  height: 2px;
  margin-top: 8px;
  background: linear-gradient(
    90deg,
    var(--accent),
    rgba(89,223,255,0.5),
    transparent
  );
  box-shadow: 0 0 6px rgba(89,223,255,0.3);
}
.center .accent-line { margin-left: auto; margin-right: auto; }

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

.card {
  background: linear-gradient(180deg, rgba(17,19,24,.96), rgba(10,11,14,.98));
  border: 5px solid rgba(89,223,255,.3);
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 38px 28px 30px;
}

.card-icon {
  width: 54px;
  height: 54px;
  object-fit: cover;
  margin-bottom: 10px;
}

.card-title {
  font-size: clamp(1.4rem, 1.4vw, 2.0rem);
  line-height: .98;
  font-weight: 900;
  letter-spacing: 0.1em;
  margin: 0 0 2px;
}

.card p,
.card li {
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.45;
}

.card ul {
  padding-left: 1.2rem;
  margin: 0 0 26px;
}
.card li + li { margin-top: 6px; }
.card .btn-outline { min-height: 48px; width: 100%; }

.feature-card {
  display: grid;
  grid-template-rows: auto auto 1fr;
  gap: 24px;
  padding: 0 0 18px;
	border-left: none;
  box-shadow: 0 0 0 5px rgba(89,223,255,0.3);
  border-radius: 12px;
  padding: 25px;	
}
.feature-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  margin-bottom: 10px;
}
.feature-card .content { padding: 0 18px 0 4px; }
.feature-card .card-title { margin-bottom: 16px; }

.check-list {
  display: grid;
  gap: 24px;
  margin-top: 34px;
}
.check-item {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 18px;
  align-items: start;
}
.check-item .tick {
  color: var(--accent);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}
.check-item p {
  margin: 0;
  font-size: 1.12rem;
  color: var(--muted);
  line-height: 1.45;
}
.check-item strong { color: var(--text); }

.industry-card {
  background: linear-gradient(180deg, rgba(22,24,29,.92), rgba(12,13,17,.98));
  border-left: 4px solid var(--accent);
  padding: 10px;
  min-height: 100%;
	margin-left: auto;
  margin-right: auto;
}
.industry-card img {
  width: 100%;
  height: 142px;
  object-fit: cover;
  margin-bottom: 22px;
}
.link-text {
  color: var(--accent);
  font-weight: 700;
  display: inline-block;
  margin-top: 16px;
  text-decoration: underline;
}

.metric-card {
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.metric-card p { margin-top: 0; }

.metric-label {
  color: var(--accent);
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 800;
  font-size: .94rem;
	margin-top: 20px;
  margin-bottom: 26px;
}
.metric-value {
  font-size: clamp(1.4rem, 3vw, 3.8rem);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -.05em;
  margin-bottom: 55px;
}

.method-list {
  display: grid;
  gap: 54px;
  margin-top: 40px;
}
.method-step {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 28px;
  align-items: start;
}
.step-number {
  color: var(--accent);
  font-size: clamp(2.5rem, 6vw, 4.8rem);
  font-weight: 700;
  line-height: .9;
}
.step-content h2 {
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  line-height: 1;
  margin: 0 0 14px;
  letter-spacing: -.04em;
}
.step-content p {
  margin: 0;
  color: var(--muted);
  font-size: 1.2rem;
  line-height: 1.4;
  max-width: 980px;
}
.step-line {
  width: 2px;
  height: 34px;
  background: var(--accent);
  margin-top: 18px;
  opacity: .8;
}

.testimonial-card {
  min-height: 560px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 30px 30px 34px;
}
.quote-mark {
  color: var(--accent);
  font-size: 4.5rem;
  line-height: .9;
  margin: 18px 0 16px;
  font-weight: 900;
}
.testimonial-text {
  font-size: 1.1rem;
  line-height: 1.45;
  color: var(--text);
  font-style: italic;
  max-width: 95%;
  margin: 0 0 28px;
}
.person-name {
  color: var(--accent);
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 800;
  font-size: .94rem;
  margin-top: auto;
}
.person-role {
  font-size: 1.02rem;
  font-weight: 900;
  line-height: 1.12;
  text-transform: uppercase;
}

.cta-box {
  min-height: 420px;
  display: grid;
  place-items: center;
  text-align: center;
  background: linear-gradient(180deg, rgba(19,21,25,.92), rgba(14,16,19,.98));
  position: relative;
}
.cta-box .accent-line { margin-bottom: 30px; }
.cta-copy { 
	max-width: 980px; 
}
.cta-copy .lead { 
	margin: 26px auto 0; 
	max-width: clamp(700px, 80vw, 1400px); 
}
.cta-copy .btn { 
	margin-top: 32px; 
	min-width: 290px; 
}
.cta-copy .title-lg {
  max-width: none;
}

.small-note { 
	font-size: .95rem; 
	margin-top: 5px;
	margin-bottom: 5px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card ul {
  flex-grow: 1; /* pousse le bouton vers le bas */
}

.card .btn {
  margin-top: auto;
}

.industry-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.industry-card p {
  flex-grow: 1; /* pousse le lien vers le bas */
}

.industry-card .link-text {
  margin-top: auto;
}

.footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: rgba(5,5,5,0.9);
  backdrop-filter: blur(10px);
	padding: 2px 0;
	opacity: 0.8;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-minimal {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  gap: 20px;
  padding: 0;
  min-height: auto;
}

.footer-brand-line {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap; /* empêche coupure */
}

.footer-link {
  white-space: nowrap;
}

.footer .brand-mark {
  width: 28px;
  height: 28px;
  width: 28px;
  height: 28px;
  margin-top: 2px;
  margin-bottom: 2px;
}

@media (min-width: 1430px) {
  body[data-page="home"] main .container,
  body[data-page="contact"] main .container {
    width: 1400px;
    max-width: none;
    margin-left: 15px;
    margin-right: 0;
  }
}

@media (min-width: 1083px) {
  body[data-page="home"] .hero-grid {
    align-items: start;
  }
  body[data-page="home"] .hero-grid .visual-frame {
    margin-top: 50px;
  }
  body[data-page="home"] .hero-grid .visual-frame,
  body[data-page="home"] .two-col .visual-frame,
  body[data-page="home"] .hero-grid .visual-frame img,
  body[data-page="home"] .two-col .visual-frame img {
    border-radius: 28px;
  }	
}

@media (max-width: 1082px) {
  .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero-grid,
  .two-col { grid-template-columns: 1fr; }
  .visual-frame,
  .two-col .visual-frame { min-height: 420px; }
  .method-step { grid-template-columns: 110px 1fr; }
}

@media (max-width: 820px) {
	.grid-4,
  .grid-3 { grid-template-columns: 1fr; }
  .method-step { grid-template-columns: 1fr; gap: 18px; }
  .method-list { gap: 34px; }
  .step-line { display: none; }
  .container { width: min(var(--container), calc(100% - 30px)); }
}

@media (max-width: 520px) {
  .menu-toggle { display: inline-grid; place-items: center; }
  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: rgba(8,8,8,.98);
    border: 1px solid rgba(89,223,255,.25);
    border-radius: 18px;
    padding: 14px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { width: 100%; border-radius: 12px; }
  .menu-toggle { display: inline-grid;}
}

@media (max-width: 700px) and (orientation: landscape) and (hover: none) and (pointer: coarse) {
  .menu-toggle {
    display: none;
  }
  .nav-links {
    display: flex;
    position: static;
    flex-direction: row;
    align-items: center;
    gap: 6px;
    background: transparent;
    border: 0;
    padding: 0;
  }
  .navbar {
    gap: 10px;
  }
  .brand {
    font-size: 1rem;
    gap: 10px;
  }
  .brand-mark {
    width: 34px;
    height: 34px;
  }
  .nav-links a {
    padding: 6px 7px;
    font-size: 0.95rem;
  }
}

@media (min-width: 1430px) {
  body[data-page="home"] main .container,
  body[data-page="contact"] main .container,
  body[data-page="solutions"] main .container,
  body[data-page="tech"] main .container {
    width: 1400px;
    max-width: none;
    margin-left: 15px;
    margin-right: 0;
  }
}

html, body {
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
}

/* ===== Refonte navigation / pages regroupées ===== */
.nav-links { flex-wrap: nowrap; gap: 8px; }
.nav-links a { white-space: nowrap; }
.stacked-sections {
  display: grid;
  gap: 72px;
}
.stacked-sections > section {
  margin: 0;
}

body[data-page="home"] .stacked-sections {
  gap: 40px;
}
body[data-page="home"] .hero-copy .lead:last-child {
  margin-bottom: 0;
}
body[data-page="home"] .stacked-sections > section:nth-child(2) {
  margin-top: -30px;
}

body[data-page="home"] .stacked-sections > section:nth-child(2) .section-head {
  margin-bottom: 18px;
}

body[data-page="home"] .stacked-sections > section:nth-child(2) .section-head .lead {
  margin-top: 12px;
}

body[data-page="home"] .stacked-sections > section:nth-child(2) .card-title {
  margin-top: -10px;
  margin-bottom: 18px;
}

body[data-page="home"] .stacked-sections > section:nth-child(3) .section-head {
  margin-bottom: 10px;
}

body[data-page="home"] .stacked-sections > section:nth-child(3) .section-head .lead {
  margin-top: 8px;
  margin-bottom: 0;
}

body[data-page="home"] .stacked-sections > section:last-child .cta-copy .btn {
  margin-top: 0px;
  margin-bottom: 0px;
}

body[data-page="home"] .stacked-sections > section:last-child .hero-actions {
  margin-top: 12px !important;
}

body[data-page="home"] p {
  line-height: 1.3;
}
body[data-page="home"] p.lead {
  margin-top: 15px !important;
  margin-bottom: 15px !important;
}

body[data-page="home"] .cta-box {
  min-height: 240px;           /* avant: ~360-420px */
  padding: 20px 20px;          /* réduit l’espace global */
  display: flex;
  align-items: center;         /* centre verticalement */
  justify-content: center;
}

/* Ajustement du contenu interne */
body[data-page="home"] .cta-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;                   /* espace plus compact */
}

body[data-page="home"] .before-after-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

body[data-page="home"] .before-after-card {
  min-height: auto;
  padding: 22px 18px 18px;
}

body[data-page="home"] .before-after-card .metric-label {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 0.82rem;
}

body[data-page="home"] .before-after-card .metric-value {
  font-size: clamp(1.2rem, 2vw, 2rem);
  line-height: 1.05;
  margin-bottom: 12px;
}

body[data-page="home"] .before-after-card p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.32;
}
body[data-page="home"] .two-col {
  align-items: start;
}
body[data-page="home"] .two-col .visual-frame {
  margin-top: 10px;
}
body[data-page="home"] .metric-card {
  min-height: auto;
  padding: 22px 18px 18px;
	padding-top: 10px;
}
body[data-page="home"] .metric-card .card-icon {
  margin-bottom: 6px;
}
body[data-page="home"] .metric-card .metric-label {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 0.82rem;
}
body[data-page="home"] .metric-card .metric-value {
  font-size: clamp(1.2rem, 2vw, 2rem);
  line-height: 1.05;
  margin-bottom: 12px;
}
body[data-page="home"] .metric-card p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.32;
}

@media (max-width: 1082px) {
  body[data-page="home"] .before-after-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
	body[data-page="home"] .stacked-sections > section:nth-child(2) {
		margin-top: -10px;
	}
  body[data-page="home"] .hero-grid .visual-frame {
    min-height: auto;
    aspect-ratio: 16 / 8;
  }
	body[data-page="home"] .before-after-grid,
  body[data-page="home"] .grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  body[data-page="home"] .before-after-grid,
  body[data-page="home"] .grid-3 {
    grid-template-columns: 1fr;
  }  body[data-page="home"] .hero-grid .visual-frame,
  body[data-page="home"] .two-col .visual-frame {
    min-height: auto;
    aspect-ratio: 16 / 8;
  }	
}

@media (max-width: 700px) {
  body[data-page="home"] .hero-grid .visual-frame,
  body[data-page="home"] .two-col .visual-frame {
    aspect-ratio: 16 / 7;
  }	
}

/* ===== Page Solutions ===== */
body[data-page="solutions"] .card {
  padding: 20px 18px 16px;
}

body[data-page="solutions"] .metric-card {
  padding: 16px 16px 14px;
  min-height: auto; /* enlève la grande hauteur forcée */
}

body[data-page="solutions"] .metric-label {
  margin-top: 10px;
  margin-bottom: 12px; /* avant: 26px */
}

body[data-page="solutions"] .metric-value {
  margin-bottom: 20px; /* avant: 55px */
}

body[data-page="solutions"] .metric-card p {
  margin-top: 0;
}

body[data-page="solutions"] .two-col .visual-frame {
  /*height: 380px;*/
	height: clamp(320px, 34vw, 380px);
  position: relative;
  overflow: hidden;
}

body[data-page="solutions"] .two-col .visual-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

body[data-page="solutions"] .section-head {
  /*display: inline-block;*/
  display: block;
  width: 100%;	
}

body[data-page="solutions"] .section-head.center {
  /*max-width: 1400px;*/
	max-width: clamp(700px, 80vw, 1400px);
  margin: 0 auto 46px;
  text-align: center;
}

body[data-page="solutions"] .section-head.center .title-lg {
  /*max-width: 1400px;*/
	/*max-width: clamp(700px, 80vw, 1400px);*/
	max-width: none;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

body[data-page="solutions"] .section-head .accent-line {
  width: 100%;
  margin-top: 8px; /* rapproche du titre */
}

body[data-page="solutions"] .stacked-sections > section:first-child .card-title {
  font-size: clamp(1.2rem, 1.4vw, 1.85rem);
  line-height: 1.08;
  letter-spacing: 0.03em;
  overflow-wrap: anywhere;
	margin-top: -5px; /* + d’espace entre titre et texte (avant: 20px) */
	margin-bottom: 28px; /* + d’espace entre titre et texte (avant: 20px) */
}

body[data-page="solutions"] .stacked-sections > section:first-child .card-icon {
  margin-bottom: 0px; /* moins d’espace sous l’icône (avant: 0px implicite + padding global) */
}

body[data-page="solutions"] .stacked-sections > section:first-child .card {
  padding-top: 24px;  /* réduit espace au-dessus de l’icône (avant: 38px) */
}

body[data-page="solutions"] .stacked-sections > section:not(:first-child) .section-head {
  margin-bottom: 22px;
}

body[data-page="solutions"] .page {
  padding-bottom: 60px; /* Espace en bas page Solutions */
}

body[data-page="solutions"] .stacked-sections {
  gap: 50px; /* Espace entre les paragraphes */
}

@media (max-width: 1082px) {
  body[data-page="solutions"] .grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Passage direct en vertical */
@media (max-width: 760px) {
  body[data-page="solutions"] .grid-3 {
    grid-template-columns: 1fr;
  }
}

body[data-page="solutions"] .grid-4 .card {
  padding: 20px 18px 14px;
}

/* ===== Page Tech ===== */
body[data-page="tech"] .feature-card {
  padding: 12px;
  gap: 8px;
}

body[data-page="tech"] .feature-card img {
  margin-bottom: 6px;
}

body[data-page="tech"] .feature-card .card-title {
  margin-bottom: 6px;
}

body[data-page="tech"] .card {
  padding: 18px 16px 28px;
  gap: 10px;
	margin-top: 0;
}

body[data-page="tech"] .card p {
  margin: 0;
  line-height: 1.35;
}

body[data-page="tech"] .card-title {
  margin-bottom: 4px;
}

body[data-page="tech"] .feature-card,
body[data-page="tech"] .method-list,
body[data-page="tech"] .check-list {
  margin-top: 18px;
}

body[data-page="tech"] .section-head {
/*  display: inline-block;*/
  display: block;
  width: 100%;	
	margin-bottom: 18px;
}

body[data-page="tech"] .section-head .reveal {
  margin-bottom: 24px;
}

body[data-page="tech"] .section-head.center .title-lg {
  /*max-width: 1400px;*/
	/*max-width: clamp(700px, 80vw, 1400px);*/
	max-width: none;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

body[data-page="tech"] .section-head .accent-line {
  width: 100%;
  margin-top: 8px; /* rapproche du titre */
	margin-bottom: 22px;
}

body[data-page="tech"] .method-list {
  gap: 20px; /* moins d’espace entre les blocs */
}

body[data-page="tech"] .method-step {
	grid-template-columns: 50px 1fr;
  gap: 0px; /* resserre colonnes */
}

body[data-page="tech"] .stacked-sections {
  gap: 50px; /* Réduire espace entre les 3 blocs de la page Tech */
}

body[data-page="tech"] .stacked-sections > section:nth-child(1) .section-head,
body[data-page="tech"] .stacked-sections > section:nth-child(2) .section-head,
body[data-page="tech"] .stacked-sections > section:nth-child(3) .section-head {
  margin-bottom: 4px; /* Réduit espace sous le titre principal */
}

body[data-page="tech"] .stacked-sections > section:nth-child(3) .check-list {
  gap: 6px; /* espace entre les lignes */
}

body[data-page="tech"] .stacked-sections > section:nth-child(3) .check-item {
  gap: 10px; /* espace entre tick et texte légèrement réduit */
}

body[data-page="tech"] .stacked-sections > section:nth-child(3) .check-list {
  margin-bottom: 30px;  /* espace en bas de page */
}

body[data-page="tech"] .step-number {
  font-size: clamp(1.4rem, 2.2vw, 2.2rem); /* Chiffres 01 / 02 / 03 */
}

body[data-page="tech"] .step-content h2 {
  font-size: clamp(1.4rem, 2.2vw, 2.2rem);
  margin-bottom: 8px;
}

body[data-page="tech"] .step-content p {
  font-size: 1.05rem;
  line-height: 1.35;
}

body[data-page="tech"] .feature-tech {
  padding: 18px 16px 16px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

body[data-page="tech"] .feature-tech .card-title {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

body[data-page="tech"] .feature-tech p {
  font-size: 1rem;
  line-height: 1.35;
  color: var(--muted);
}

body[data-page="tech"] .grid-4 {
  gap: 20px;
}

@media (max-width: 1082px) {
	body[data-page="tech"] .grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  body[data-page="tech"] .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
	body[data-page="tech"] .grid-3,
  body[data-page="tech"] .grid-4 {
    grid-template-columns: 1fr;
  }
  body[data-page="tech"] .stacked-sections > section:first-child .feature-card {
    padding: 12px 12px 0px;  /* réduit le bas */
    gap: 0px;                 /* resserre l’intérieur */
  }
  body[data-page="tech"] .stacked-sections > section:first-child .feature-card img {
    width: 180px !important;
    height: 180px !important;
    max-width: none !important;
    aspect-ratio: 1 / 1 !important;
    object-fit: cover;
    margin: 0 auto 6px !important;
  }
}

/* ===== Page Pricing ===== */
body[data-page="pricing"] .pricing-hero {
  display: block !important;
  width: min(100%, 1000px);
  margin: 0 auto 24px; /* réduit l'espace sous le texte */
  text-align: center;
}

body[data-page="pricing"] .pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;              /* moins d'espace entre les 3 blocs */
  margin-top: -20px;      /* remonte les blocs vers le texte */
}

body[data-page="pricing"] .card.reveal {
  padding: 18px 18px 16px;
}

body[data-page="pricing"] .pricing-highlight {
  min-height: auto;       /* supprime la hauteur inutile */
  padding: 18px 16px 16px;/* resserre l'intérieur */
}

body[data-page="pricing"] .pricing-highlight .metric-label {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 0.82rem;
}

body[data-page="pricing"] .pricing-highlight .metric-value {
  font-size: clamp(1.25rem, 2vw, 2rem); /* chiffres plus petits */
  line-height: 1.05;
  margin-bottom: 12px;                  /* moins d'espace sous la ligne centrale */
}

body[data-page="pricing"] .pricing-highlight p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.32;
}

body[data-page="pricing"] .pricing-table-wrap {
  width: 100%;
  overflow-x: hidden;
  border: 5px solid rgba(89,223,255,.3);
  border-radius: 12px;
  box-shadow: var(--shadow);
  background: linear-gradient(180deg, rgba(17,19,24,.96), rgba(10,11,14,.98));
}

body[data-page="pricing"] .pricing-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

body[data-page="pricing"] .pricing-table th,
body[data-page="pricing"] .pricing-table td {
  padding: 7px 9px;
  text-align: left;
  border-bottom: 1px solid rgba(89,223,255,.15);
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
}

body[data-page="pricing"] .pricing-table th {
  color: var(--text);
  font-size: clamp(0.72rem, 0.9vw, 0.88rem);
  text-transform: uppercase;
  letter-spacing: .06em;
  background: rgba(89,223,255,.08);
}

body[data-page="pricing"] .pricing-table td {
  color: var(--muted);
  font-size: clamp(0.6rem, 0.9vw + 0.4rem, 0.95rem);
  line-height: 1.3;
}

body[data-page="pricing"] .pricing-table th:not(:first-child),
body[data-page="pricing"] .pricing-table td:not(:first-child),
body[data-page="pricing"] .pricing-table-summary th:not(:first-child),
body[data-page="pricing"] .pricing-table-summary td:not(:first-child) {
  text-align: right;
}

body[data-page="pricing"] .pricing-table tbody tr:hover {
  background: rgba(89,223,255,.04);
}

body[data-page="pricing"] .pricing-table .is-accent {
  color: var(--accent);
  font-weight: 800;
}

body[data-page="pricing"] table.pricing-table tbody td:first-child,
body[data-page="pricing"] table.pricing-table-summary tbody td:first-child {
  font-weight: 700;
  color: #ff7a7a !important;
  letter-spacing: 0.02em;
}

body[data-page="pricing"] .pricing-note {
  margin-top: 18px;
}

body[data-page="pricing"] .pricing-note p {
  margin: 8px 0;
  color: var(--muted);
  font-size: 1rem;
}

body[data-page="pricing"] .pricing-two-col {
  align-items: start;
}

body[data-page="pricing"] .pricing-side-card ul {
  margin-bottom: 24px;
}

body[data-page="pricing"] .section-head {
  display: inline-block;
	margin-bottom: 18px;
}

body[data-page="pricing"] .section-head .accent-line {
  width: 100%;
  margin-top: 8px;
}

body[data-page="pricing"] .stacked-sections {
  gap: 40px; /* au lieu de 72px */
}

body[data-page="pricing"] .pricing-grid,
body[data-page="pricing"] .pricing-two-col,
body[data-page="pricing"] .pricing-highlight,
body[data-page="pricing"] .pricing-side-card,
body[data-page="pricing"] .pricing-table-wrap {
  min-width: 0;
}

body[data-page="pricing"] .metric-value,
body[data-page="pricing"] .card-title,
body[data-page="pricing"] td,
body[data-page="pricing"] th {
  overflow-wrap: anywhere;
}

body[data-page="pricing"] .cta-box {
  min-height: 240px;     /* réduit fortement la hauteur */
  padding: 20px 20px;    /* moins d’espace interne */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===== Pricing V2 : tableau simplifié + détail complet ===== */
body[data-page="pricing"] .quick-read {
  padding: 14px 12px 12px;
}

body[data-page="pricing"] .quick-read .card-title {
  margin-bottom: 6px;
}

body[data-page="pricing"] .quick-read p {
  margin: 0;
  line-height: 1.35;
}

body[data-page="pricing"] .pricing-table-wrap--summary {
  overflow-x: auto;
}

body[data-page="pricing"] .pricing-table-summary {
  width: 100%;
  table-layout: fixed;
}

body[data-page="pricing"] .pricing-table-summary th,
body[data-page="pricing"] .pricing-table-summary td {
  padding: 9px 11px;
	width: 25%;
}

body[data-page="pricing"] .pricing-table-summary tbody td:first-child {
  color: var(--text);
}

body[data-page="pricing"] .pricing-note-compact p {
  margin: 6px 0;
}

body[data-page="pricing"] .pricing-details {
  border: 1px solid rgba(89,223,255,.28);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(17,19,24,.96), rgba(10,11,14,.98));
  box-shadow: var(--shadow);
  overflow: hidden;
}
body[data-page="pricing"] .pricing-details summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  font-weight: 800;
  color: var(--text);
  position: relative;
}
body[data-page="pricing"] .pricing-details summary::-webkit-details-marker {
  display: none;
}
body[data-page="pricing"] .pricing-details summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: var(--accent);
}
body[data-page="pricing"] .pricing-details[open] summary::after {
  content: "–";
}
body[data-page="pricing"] .pricing-details-body {
  padding: 0 18px 18px;
  border-top: 1px solid rgba(89,223,255,.14);
}
body[data-page="pricing"] .pricing-details .pricing-table-wrap {
  margin-top: 18px;
  overflow-x: auto;
}
body[data-page="pricing"] .pricing-details .pricing-note {
  margin-top: 14px;
}

body[data-page="pricing"] .roi-head .lead {
  max-width: none;
  font-size: clamp(1.05rem, 1.5vw, 1.35rem);
  line-height: 1.2;
}

body[data-page="pricing"] .calls-estimate {
  font-size: 0.75rem;
  color: var(--muted-2);
  margin-right: 6px;
  white-space: nowrap;
	font-weight: normal;
}

body[data-page="pricing"] .minutes-value {
  white-space: nowrap;
}

/* ===== ROI BLOCK ===== */
.roi-box {
  margin-top: 40px;
  padding: 12px 18px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(17,19,24,.96), rgba(10,11,14,.98));
  border: 5px solid rgba(89,223,255,.3);
  box-shadow: var(--shadow);
  text-align: center;
}

.roi-head {
  margin-bottom: 10px;
}

.roi-head .lead {
  margin-top: 6px;
  margin-bottom: 0;
  line-height: 1.2;
}

.roi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 30px;
	justify-items: center;
}

.roi-item {
  width: 100%;
  max-width: 220px;
  text-align: center;
  border-radius: 12px;
  background: rgba(89,223,255,0.05);
}

.roi-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 4px;
}

.roi-value {
	font-size: clamp(1.2rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--text);
	margin-top: 0;
}

.roi-value.accent {
  color: var(--accent);
}

.roi-item.highlight {
  border: 1px solid rgba(89,223,255,.4);
  background: rgba(89,223,255,0.08);
	padding-top: 10px;
  padding-bottom: 14px;
}

.roi-item.highlight {
  transform: translateY(-11px);
}

.roi-note {
  margin-top: 20px;
  font-size: 1rem;
  color: var(--muted);
}

.roi-sous-note {
  margin-top: 2px;
  font-size: clamp(0.8rem, 1.5vw, 1.2rem);
  color: var(--muted);
}

@media (max-width: 450px) {
  .roi-grid {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .roi-item {
    max-width: 260px;
  }
}

@media (max-width: 820px) {
  body[data-page="pricing"] .pricing-details summary {
    padding: 16px 18px;
  }
  body[data-page="pricing"] .pricing-details-body {
    padding: 0 10px 12px;
  }
  body[data-page="pricing"] .pricing-table-summary th,
  body[data-page="pricing"] .pricing-table-summary td {
    padding: 8px 10px;
  }
}

@media (max-width: 1082px) {
  body[data-page="pricing"] .grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  body[data-page="pricing"] .pricing-grid {
    grid-template-columns: 1fr;
  }
  body[data-page="pricing"] .pricing-table td {
    padding: 6px 8px;
  }
  body[data-page="pricing"] .grid-3 {
    grid-template-columns: 1fr;
  }
  body[data-page="pricing"] .grid-3 .quick-read {
    width: 100%;
    max-width: none;
  }	
}

/* ===== Page Contact ===== */
body[data-page="contact"] .cta-copy .btn {
  margin-top: 50px;
}
.site-header .container,
.footer .container {
  width: auto;
  max-width: none;
  margin: 0;
  padding-left: 15px;
  padding-right: 15px;
}

#viewport-size {
  font-weight: 600;
  opacity: 0.8;
  white-space: nowrap;
/*	display:none !important;*/
}
