@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;1,300&display=swap');

/* ══════════════════════════════════════════
   VARIABLES
══════════════════════════════════════════ */
:root {
  --navy:    #0b1930;
  --navy2:   #132444;
  --navy3:   #1a3260;
  --green:   #2a9b34;
  --green2:  #237d2b;
  --green-l: #5dd668;
  --green-xl:#c8f5cb;
  --cream:   #f6f7f9;
  --gray-l:  #e8eaed;
  --gray:    #8a8a9a;
  --text:    #1a1a2e;
  --white:   #ffffff;
  --fh: 'Syne', sans-serif;
  --fb: 'DM Sans', sans-serif;
  --rad: 12px;
  --max: 1180px;
  --ease: cubic-bezier(.4,0,.2,1);
}

/* ══════════════════════════════════════════
   RESET
══════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--fb);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ALL links: no underline ever, inherit color by default */
a {
  text-decoration: none;
  color: inherit;
}
a:hover { text-decoration: none; }

/* Images: never distort */
img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

ul { list-style: none; }

/* ══════════════════════════════════════════
   LAYOUT
══════════════════════════════════════════ */
.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section--alt { background: var(--cream); }
.section--dark { background: var(--navy); color: var(--white); }
.section--darker { background: #060e1d; color: var(--white); }

/* ══════════════════════════════════════════
   TYPOGRAPHY
══════════════════════════════════════════ */
h1, h2, h3, h4 {
  font-family: var(--fh);
  line-height: 1.15;
  letter-spacing: -.02em;
  color: inherit;
}
h1 { font-size: clamp(2rem, 4.5vw, 3.8rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 3vw, 2.5rem); font-weight: 700; }
h3 { font-size: 1.15rem; font-weight: 700; }
h4 { font-size: .95rem; font-weight: 700; }

p { color: #4a4a6a; line-height: 1.75; }

/* On dark sections, paragraphs are light */
.section--dark p,
.section--darker p { color: rgba(255,255,255,.7); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 18px;
  height: 2px;
  background: var(--green);
  border-radius: 1px;
  flex-shrink: 0;
}
.section--dark .eyebrow,
.section--darker .eyebrow { color: var(--green-l); }
.section--dark .eyebrow::before,
.section--darker .eyebrow::before { background: var(--green-l); }

.section-header { max-width: 560px; }
.section-header.centered { max-width: 620px; margin: 0 auto; text-align: center; }
.section-header.centered .eyebrow { justify-content: center; }
.section-header p { margin-top: 14px; font-size: 1rem; }

.divider {
  width: 44px;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--green-l));
  border-radius: 2px;
  margin: 18px 0;
}

/* ══════════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════════ */
@keyframes fadeUp { from { opacity:0; transform:translateY(28px) } to { opacity:1; transform:none } }
@keyframes fadeIn { from { opacity:0 } to { opacity:1 } }
@keyframes float  { 0%,100% { transform:translateY(0) } 50% { transform:translateY(-10px) } }

.anim-fade-up { opacity: 0; animation: fadeUp .7s var(--ease) forwards; }
.d1 { animation-delay: .1s; }
.d2 { animation-delay: .2s; }
.d3 { animation-delay: .3s; }
.d4 { animation-delay: .4s; }

.reveal       { opacity:0; transform:translateY(28px);  transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal-left  { opacity:0; transform:translateX(-28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal-right { opacity:0; transform:translateX(28px);  transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.visible,
.reveal-left.visible,
.reveal-right.visible { opacity:1; transform:none; }

/* ══════════════════════════════════════════
   BUTTONS — never underline, always visible
══════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--fb);
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .25s var(--ease);
  white-space: nowrap;
  text-decoration: none;
  line-height: 1;
}
.btn:hover { text-decoration: none; }

.btn-primary { background: var(--green); color: var(--white); border-color: var(--green); }
.btn-primary:hover { background: var(--green2); border-color: var(--green2); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(42,155,52,.35); color: var(--white); }

.btn-outline { background: transparent; border-color: rgba(255,255,255,.45); color: var(--white); }
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,.08); transform: translateY(-2px); color: var(--white); }

.btn-outline-dark { background: transparent; border-color: var(--navy); color: var(--navy); }
.btn-outline-dark:hover { background: var(--navy); color: var(--white); transform: translateY(-2px); }

.btn-lg { padding: 16px 40px; font-size: 1.05rem; }

/* ══════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  transition: all .35s var(--ease);
}
.site-header.scrolled {
  background: rgba(6,14,29,.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,.06);
  box-shadow: 0 4px 40px rgba(0,0,0,.4);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 16px;
}

.logo-wrap {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  text-decoration: none;
}
.logo-wrap img.logo-img { height: 40px; width: auto; object-fit: contain; }
.logo-wrap .logo-txt {
  font-family: var(--fh);
  font-size: 1.4rem;
  font-weight: 300;
  letter-spacing: .04em;
  color: #c9d3dc;
  line-height: 1;
  white-space: nowrap;
}
.logo-wrap .logo-txt strong { color: var(--green); font-weight: 700; }

.nav-links { display: flex; align-items: center; gap: 24px; }
.nav-links a {
  font-size: .86rem;
  font-weight: 500;
  color: rgba(255,255,255,.7);
  position: relative;
  padding-bottom: 3px;
  transition: color .2s;
  text-decoration: none;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--green-l);
  border-radius: 1px;
  transition: width .25s var(--ease);
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta { flex-shrink: 0; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 1px;
  transition: all .3s var(--ease);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

.mobile-menu {
  display: none;
  flex-direction: column;
  background: #060e1d;
  padding: 16px 24px 24px;
  gap: 4px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: .95rem;
  font-weight: 500;
  color: rgba(255,255,255,.8);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  text-decoration: none;
}
.mobile-menu a:last-of-type { border-bottom: none; }
.mobile-menu .btn { margin-top: 12px; width: 100%; }

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 100px 0 72px;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(42,155,52,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(42,155,52,.06) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%);
}
.hero-orb { position: absolute; border-radius: 50%; filter: blur(90px); pointer-events: none; }
.hero-orb-1 { width:600px; height:600px; background: radial-gradient(circle, rgba(42,155,52,.15) 0%, transparent 70%); top:-15%; right:-8%; animation: float 9s ease-in-out infinite; }
.hero-orb-2 { width:400px; height:400px; background: radial-gradient(circle, rgba(19,36,68,.9) 0%, transparent 70%);  bottom:-10%; left:-5%;  animation: float 11s ease-in-out infinite reverse; }

.hero-inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-content h1 { color: var(--white); margin-bottom: 20px; }
.hero-content h1 em { font-style: italic; color: var(--green-l); }
.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.7);
  max-width: 480px;
  margin-bottom: 36px;
  font-weight: 300;
  line-height: 1.75;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-visual { animation: fadeIn 1s var(--ease) .3s both; }

/* ══ GESFOX HERO PHONE ══ */
.gesfox-hero-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 480px;
}
.gesfox-hero-phone {
  height: 420px;
  width: auto;
  object-fit: contain;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 32px 64px rgba(0,0,0,.5));
}
.gesfox-float {
  position: absolute;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.15);
  backdrop-filter: blur(12px);
  border-radius: 50px;
  padding: 7px 14px 7px 10px;
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .75rem;
  font-weight: 600;
  color: rgba(255,255,255,.9);
  white-space: nowrap;
  z-index: 3;
}
.float-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green-l);
  flex-shrink: 0;
}
.gesfox-float--tl { top: 60px;  left: -20px; }
.gesfox-float--tr { top: 40px;  right: -10px; }
.gesfox-float--bl { bottom: 80px; left: -20px; }
.gesfox-float--br { bottom: 60px; right: -10px; }
.gesfox-hero-fox {
  position: absolute;
  bottom: 0;
  right: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 50px;
  padding: 6px 14px 6px 6px;
  z-index: 4;
}
.gesfox-hero-fox img { width: 28px; height: 28px; object-fit: contain; }
.gesfox-hero-fox span { font-family: var(--fh); font-size: .85rem; font-weight: 400; color: rgba(255,255,255,.8); letter-spacing: .03em; }
.gesfox-hero-fox strong { color: #f59e0b; font-weight: 800; }

/* ══ GESFOX LOGO INLINE ══ */
.gesfox-logo-inline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.gesfox-logo-fox { width: 36px; height: 36px; object-fit: contain; }
.gesfox-logo-inline span {
  font-family: var(--fh);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--navy);
  letter-spacing: .03em;
}
.gesfox-logo-inline strong { color: #f59e0b; font-weight: 800; }

/* ══ GESFOX SECTION VISUAL ══ */
.gesfox-section-visual {
  display: flex;
  align-items: flex-end;
  gap: 24px;
  justify-content: center;
}
.gesfox-section-phone {
  height: 380px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 24px 48px rgba(0,0,0,.2));
}
.gesfox-section-stats {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-bottom: 20px;
}
.gesfox-stat {
  background: var(--white);
  border: 1px solid var(--gray-l);
  border-radius: 12px;
  padding: 12px 16px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0,0,0,.06);
}
.gesfox-stat strong {
  display: block;
  font-family: var(--fh);
  font-size: 1rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
}
.gesfox-stat span { font-size: .7rem; color: var(--gray); }

/* ══ CARD LINK — maillage interne ══ */
.card--link {
  display: block;
  text-decoration: none;
  cursor: pointer;
}
.card--link:hover { text-decoration: none; }
.card--link h3 { color: var(--navy); }
.card--link p  { color: #4a4a6a; }
.card-more {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: .83rem;
  font-weight: 600;
  color: var(--green);
  margin-top: 12px;
}
.card--link:hover .card-more { color: var(--green2); }

/* ══ SOLUTIONS PAGE VISUALS ══ */

/* GESFOX section — phone with badges */
.sol-img-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.sol-phone-img {
  height: 400px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 24px 48px rgba(0,0,0,.18));
  position: relative;
  z-index: 2;
}
.sol-phone-badge {
  position: absolute;
  background: var(--white);
  border: 1px solid var(--gray-l);
  border-radius: 50px;
  padding: 7px 14px 7px 10px;
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .75rem;
  font-weight: 600;
  color: var(--navy);
  box-shadow: 0 4px 16px rgba(0,0,0,.1);
  white-space: nowrap;
  z-index: 3;
}
.sol-phone-badge .float-dot { background: var(--green); }
.sol-phone-badge--tl { top: 30px;  left: 0; }
.sol-phone-badge--br { bottom: 30px; right: 0; }

/* ERP section — card visual */
.sol-visual-card {
  background: var(--navy);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,.2);
}
.sol-visual-card__header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255,255,255,.07);
  font-family: var(--fh);
  font-size: .85rem;
  font-weight: 700;
  color: rgba(255,255,255,.8);
}
.sol-visual-card__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green-l);
  flex-shrink: 0;
}
.sol-card-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}
.sol-visual-card__tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding: 14px 20px;
  border-top: 1px solid rgba(255,255,255,.07);
}
.sol-visual-card__tags span {
  background: rgba(42,155,52,.12);
  border: 1px solid rgba(42,155,52,.25);
  color: var(--green-l);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: .72rem;
  font-weight: 700;
}

/* OUTILS — stack phone + fox */
.sol-stack-wrap {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0;
  min-height: 320px;
  padding: 20px;
}
.sol-stack-phone { position: relative; z-index: 2; }
.sol-stack-phone-img {
  height: 320px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,.15));
}
.sol-stack-fox {
  position: absolute;
  top: 0;
  right: 10px;
  z-index: 3;
  background: var(--white);
  border: 1px solid var(--gray-l);
  border-radius: 50%;
  width: 80px; height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
}
.sol-stack-fox-img {
  width: 52px; height: 52px;
  object-fit: contain;
}
.sol-stack-label {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--gray-l);
  border-radius: 50px;
  padding: 8px 20px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0,0,0,.1);
  white-space: nowrap;
}
.sol-stack-label strong { display: block; font-size: .85rem; color: var(--navy); font-family: var(--fh); }
.sol-stack-label span   { font-size: .72rem; color: var(--gray); }

/* AUTOMATISATION — flow visual */
.sol-auto-wrap {
  background: var(--white);
  border: 1px solid var(--gray-l);
  border-radius: 16px;
  padding: 28px 24px;
  box-shadow: 0 8px 32px rgba(0,0,0,.07);
}
.sol-auto-flow {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.sol-auto-step {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--cream);
  border: 1px solid var(--gray-l);
  border-radius: 10px;
  padding: 12px 14px;
  flex: 1;
  min-width: 110px;
}
.sol-auto-icon { font-size: 1.4rem; flex-shrink: 0; }
.sol-auto-name { font-size: .8rem; font-weight: 700; color: var(--navy); margin-bottom: 2px; }
.sol-auto-desc { font-size: .7rem; color: var(--gray); }
.sol-auto-arrow { flex-shrink: 0; }
.sol-auto-stats {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 12px;
  border-top: 1px solid var(--gray-l);
  padding-top: 20px;
}
.sol-auto-stat { text-align: center; }
.sol-auto-stat strong { display: block; font-family: var(--fh); font-size: 1.2rem; font-weight: 800; color: var(--green); }
.sol-auto-stat span   { font-size: .72rem; color: var(--gray); line-height: 1.4; }

/* Responsive solutions */
@media (max-width: 900px) {
  .sol-phone-img  { height: 280px; }
  .sol-phone-badge { display: none; }
  .sol-stack-phone-img { height: 240px; }
  .sol-auto-flow  { flex-direction: column; }
  .sol-auto-arrow { transform: rotate(90deg); }
}
@media (max-width: 600px) {
  .sol-phone-img  { height: 220px; }
  .sol-stack-phone-img { height: 200px; }
  .sol-auto-stats { grid-template-columns: repeat(3,1fr); gap: 8px; }
  .sol-auto-stat strong { font-size: 1rem; }
}
.duerp-hero-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  padding: 28px;
  backdrop-filter: blur(8px);
}
.duerp-hero-title {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--fh);
  font-size: .9rem;
  font-weight: 700;
  color: var(--green-l);
  margin-bottom: 20px;
}
.duerp-tree { display: flex; flex-direction: column; gap: 4px; }
.duerp-node {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 7px;
  font-size: .78rem;
  font-weight: 600;
  font-family: var(--fh);
}
.duerp-node svg { flex-shrink: 0; }
.duerp-node--user    { background: #1a3a6a; color: #fff; margin-left: 0px; }
.duerp-node--societe { background: #1a4a8a; color: rgba(255,255,255,.9); margin-left: 10px; }
.duerp-node--site    { background: #1a5aa0; color: rgba(255,255,255,.9); margin-left: 20px; }
.duerp-node--ut      { background: #1a6ab0; color: rgba(255,255,255,.85); margin-left: 30px; }
.duerp-node--famille { background: #1e7a28; color: #fff; margin-left: 40px; }
.duerp-node--nature  { background: #2a9b34; color: #fff; margin-left: 50px; font-size: .72rem; }
.duerp-hero-badges {
  display: flex;
  gap: 8px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.duerp-risk-badge {
  padding: 4px 12px;
  border-radius: 50px;
  font-size: .75rem;
  font-weight: 700;
  font-family: var(--fh);
}
.duerp-risk--low    { background: #1d4ed820; border: 1px solid #3b82f660; color: #60a5fa; }
.duerp-risk--medium { background: #f59e0b20; border: 1px solid #f59e0b60; color: #fbbf24; }
.duerp-risk--high   { background: #ef444420; border: 1px solid #ef444460; color: #f87171; }
.duerp-hero-footer {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: .74rem;
  color: rgba(255,255,255,.5);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ══ COTATION G×E×P ══ */
.gep-grid { display: flex; flex-direction: column; gap: 10px; margin: 20px 0; }
.gep-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid;
}
.gep-item--g { background: rgba(239,68,68,.06);  border-color: rgba(239,68,68,.2); }
.gep-item--e { background: rgba(245,158,11,.06); border-color: rgba(245,158,11,.2); }
.gep-item--p { background: rgba(42,155,52,.06);  border-color: rgba(42,155,52,.2); }
.gep-letter {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--fh);
  font-size: 1.1rem;
  font-weight: 800;
  flex-shrink: 0;
}
.gep-item--g .gep-letter { background: #ef4444; color: white; }
.gep-item--e .gep-letter { background: #f59e0b; color: white; }
.gep-item--p .gep-letter { background: var(--green); color: white; }
.gep-content h4 { font-size: .88rem; color: var(--navy); margin-bottom: 3px; }
.gep-content p  { font-size: .8rem; margin: 0; }
.gep-content p em { font-style: italic; color: var(--gray); }
.gep-result { margin-top: 18px; padding: 16px; background: var(--cream); border-radius: 10px; border: 1px solid var(--gray-l); }
.gep-formula { font-family: var(--fh); font-size: 1rem; font-weight: 700; color: var(--navy); display: block; margin-bottom: 10px; }
.gep-levels  { display: flex; gap: 8px; flex-wrap: wrap; }

/* ══ DUERP SIM CARD ══ */
.duerp-sim-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 9px;
  padding: 12px 14px;
  margin-bottom: 10px;
}
.duerp-sim-label { font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 4px; }
.duerp-sim-value { font-size: .84rem; color: rgba(255,255,255,.85); font-weight: 500; }
.duerp-sim-row { display: flex; flex-direction: column; gap: 6px; }
.duerp-sim-axis {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 7px;
  padding: 8px 12px;
}
.duerp-sim-axis-name { font-size: .7rem; font-weight: 700; color: var(--green-l); width: 70px; flex-shrink: 0; }
.duerp-sim-axis-desc { font-size: .75rem; color: rgba(255,255,255,.6); flex: 1; }
.duerp-sim-axis-val  { font-size: .85rem; font-weight: 800; color: white; font-family: var(--fh); flex-shrink: 0; }

/* ══ PAPRIPACT ROWS ══ */
.papri-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 14px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 8px;
  margin-bottom: 6px;
}
.papri-action { font-size: .82rem; font-weight: 600; color: rgba(255,255,255,.85); margin-bottom: 2px; }
.papri-meta   { font-size: .72rem; color: rgba(255,255,255,.4); }
.papri-status {
  padding: 4px 12px;
  border-radius: 50px;
  font-size: .72rem;
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ══ RESPONSIVE NEW COMPONENTS ══ */
@media (max-width: 900px) {
  .gesfox-hero-wrap { min-height: 300px; }
  .gesfox-hero-phone { height: 280px; }
  .gesfox-float { display: none; }
  .gesfox-section-visual { flex-direction: column; align-items: center; }
  .gesfox-section-phone { height: 260px; }
  .gesfox-section-stats { flex-direction: row; flex-wrap: wrap; justify-content: center; }
  .duerp-node--nature { margin-left: 30px; }
}
@media (max-width: 600px) {
  .gesfox-hero-phone { height: 220px; }
  .gesfox-hero-fox { display: none; }
  .duerp-node { font-size: .72rem; padding: 7px 10px; }
  .duerp-node--societe { margin-left: 6px; }
  .duerp-node--site    { margin-left: 12px; }
  .duerp-node--ut      { margin-left: 18px; }
  .duerp-node--famille { margin-left: 24px; }
  .duerp-node--nature  { margin-left: 30px; }
  .gep-levels { flex-direction: column; }
  .gesfox-section-stats { flex-direction: row; }
  .gesfox-stat { padding: 8px 12px; }
}

.hero-gesfox-img {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,.5);
}
.hero-gesfox-img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.hero-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.pill {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50px;
  padding: 6px 14px;
  font-size: .78rem;
  font-weight: 500;
  color: rgba(255,255,255,.7);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all .2s;
  text-decoration: none;
}
.pill svg { width: 13px; height: 13px; flex-shrink: 0; }
.pill:hover { background: rgba(42,155,52,.14); border-color: rgba(42,155,52,.35); color: var(--green-l); }

/* ══════════════════════════════════════════
   PROOF BAR
══════════════════════════════════════════ */
.proof-bar {
  background: var(--navy);
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.proof-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.proof-item {
  text-align: center;
  padding: 12px 36px;
  flex: 1;
  min-width: 180px;
}
.proof-item strong {
  display: block;
  font-family: var(--fh);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 4px;
}
.proof-item span {
  font-size: .76rem;
  color: rgba(255,255,255,.5);
  line-height: 1.4;
}
.proof-sep {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,.1);
  flex-shrink: 0;
}

/* ══════════════════════════════════════════
   TRUST BAR
══════════════════════════════════════════ */
.trust-bar { padding: 24px 0; border-bottom: 1px solid var(--gray-l); }
.trust-bar-inner { display: flex; align-items: center; gap: 32px; flex-wrap: wrap; }
.trust-label { font-size: .7rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--gray); white-space: nowrap; flex-shrink: 0; }
.trust-items { display: flex; gap: 24px; flex-wrap: wrap; }
.trust-item { font-size: .85rem; font-weight: 500; color: var(--navy); display: flex; align-items: center; gap: 7px; }
.trust-item::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--green); flex-shrink: 0; }

/* ══════════════════════════════════════════
   TECH GRID
══════════════════════════════════════════ */
.tech-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }

.tech-card {
  background: var(--white);
  border: 1px solid var(--gray-l);
  border-radius: 14px;
  padding: 24px 20px;
  text-align: center;
  transition: all .3s var(--ease);
  position: relative;
  overflow: hidden;
}
.tech-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--green-l));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease);
}
.tech-card:hover { box-shadow: 0 16px 48px rgba(0,0,0,.1); transform: translateY(-5px); border-color: transparent; }
.tech-card:hover::after { transform: scaleX(1); }

.tech-icon {
  width: 52px; height: 52px;
  margin: 0 auto 14px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 13px;
  background: rgba(42,155,52,.08);
  transition: all .3s;
}
.tech-card:hover .tech-icon { background: var(--green); }
.tech-card:hover .tech-icon svg { stroke: white !important; }
.tech-card h3 { font-size: .9rem; font-weight: 700; color: var(--navy); margin-bottom: 5px; }
.tech-card p  { font-size: .78rem; color: var(--gray); line-height: 1.5; }

.tech-card--dark { background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.08); }
.tech-card--dark:hover { background: rgba(255,255,255,.07); border-color: rgba(42,155,52,.25); }
.tech-card--dark h3 { color: var(--white); }
.tech-card--dark p  { color: rgba(255,255,255,.5); }
.tech-card--dark .tech-icon { background: rgba(42,155,52,.12); }

/* ══════════════════════════════════════════
   CARDS
══════════════════════════════════════════ */
.cards { display: grid; gap: 20px; }
.cards--3 { grid-template-columns: repeat(3,1fr); }
.cards--4 { grid-template-columns: repeat(4,1fr); }
.cards--2 { grid-template-columns: repeat(2,1fr); }

.card {
  background: var(--white);
  border: 1px solid var(--gray-l);
  border-radius: var(--rad);
  padding: 32px 28px;
  transition: all .3s var(--ease);
  position: relative;
  overflow: hidden;
}
.card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--green-l));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease);
}
.card:hover { box-shadow: 0 20px 60px rgba(0,0,0,.1); transform: translateY(-5px); border-color: transparent; }
.card:hover::after { transform: scaleX(1); }

.card--dark { background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.08); }
.card--dark:hover { background: rgba(255,255,255,.07); border-color: rgba(42,155,52,.3); }

.card-icon {
  width: 48px; height: 48px;
  background: rgba(42,155,52,.1);
  border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  transition: all .3s;
}
.card:hover .card-icon { background: var(--green); }
.card-icon svg { width: 22px; height: 22px; stroke: var(--green); transition: stroke .3s; }
.card:hover .card-icon svg { stroke: var(--white); }
.card--dark .card-icon { background: rgba(42,155,52,.12); }

.card h3 { color: var(--navy); margin-bottom: 9px; font-size: 1.05rem; }
.card--dark h3 { color: var(--white); }
.card p { font-size: .9rem; line-height: 1.7; }

/* links inside cards — no color bleed */
.card a:not(.btn) { color: var(--green); font-weight: 600; }
.card a:not(.btn):hover { color: var(--green2); }
.card--dark a:not(.btn) { color: var(--green-l); }
.card--dark a:not(.btn):hover { color: var(--green-xl); }

/* ══════════════════════════════════════════
   SOLUTION BLOCKS
══════════════════════════════════════════ */
.sol-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  padding: 72px 0;
}
.sol-block + .sol-block { border-top: 1px solid var(--gray-l); }
.sol-block--rev { direction: rtl; }
.sol-block--rev > * { direction: ltr; }

.sol-content h2 { color: var(--navy); margin-bottom: 14px; }
.sol-content p  { margin-bottom: 14px; }
.sol-content ul { margin: 18px 0; display: flex; flex-direction: column; gap: 9px; }
.sol-content ul li { display: flex; align-items: flex-start; gap: 9px; font-size: .92rem; color: #4a4a6a; }
.sol-content ul li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

.sol-visual {
  background: linear-gradient(135deg, var(--navy), var(--navy2));
  border-radius: 18px;
  min-height: 300px;
  display: flex; align-items: center; justify-content: center;
  padding: 36px;
  position: relative;
  overflow: hidden;
}
.sol-visual::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 30%, rgba(42,155,52,.1), transparent 60%);
}

/* GESFOX logo in page */
.gesfox-logo-bar {
  height: 44px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  border-radius: 6px;
  margin-bottom: 20px;
}

/* GESFOX highlight box */
.gesfox-highlight {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(42,155,52,.08);
  border: 1px solid rgba(42,155,52,.2);
  border-radius: 10px;
  padding: 14px 16px;
  margin: 18px 0;
  font-size: .92rem;
  color: var(--text);
}
.gesfox-highlight svg { stroke: var(--green); flex-shrink: 0; margin-top: 2px; }
.gesfox-highlight strong { color: var(--navy); }

/* ══════════════════════════════════════════
   FEATURE LIST
══════════════════════════════════════════ */
.feature-list { display: flex; flex-direction: column; gap: 14px; margin: 24px 0; }
.feature-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px 18px;
  background: rgba(42,155,52,.05);
  border: 1px solid rgba(42,155,52,.12);
  border-radius: 10px;
  transition: all .25s;
}
.feature-item:hover { background: rgba(42,155,52,.09); border-color: rgba(42,155,52,.25); }
.feature-item-icon {
  width: 36px; height: 36px;
  background: var(--green);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.feature-item-icon svg { width: 18px; height: 18px; stroke: white; }
.feature-item h4 { font-size: .9rem; font-weight: 700; color: var(--navy); margin-bottom: 3px; }
.feature-item p  { font-size: .82rem; color: var(--gray); margin: 0; }

/* ══════════════════════════════════════════
   CTA BANNER
══════════════════════════════════════════ */
.cta-banner {
  background: var(--navy);
  padding: 96px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 70% at 50% 50%, rgba(42,155,52,.1), transparent);
}
.cta-banner h2 { color: var(--white); position: relative; margin-bottom: 14px; font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
.cta-banner > .container > p { color: rgba(255,255,255,.65); font-size: 1rem; max-width: 460px; margin: 0 auto 36px; position: relative; font-weight: 300; }
.cta-banner .cta-note { font-size: .78rem; color: rgba(255,255,255,.35); position: relative; margin-top: 20px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ══════════════════════════════════════════
   PAGE HEADER
══════════════════════════════════════════ */
.page-header {
  background: var(--navy);
  padding: 130px 0 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(42,155,52,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(42,155,52,.05) 1px, transparent 1px);
  background-size: 48px 48px;
}
.page-header h1 { color: var(--white); position: relative; }
.page-header p  { color: rgba(255,255,255,.65); font-size: 1rem; max-width: 500px; margin: 14px auto 0; position: relative; font-weight: 300; }

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.site-footer {
  background: #040b18;
  color: rgba(255,255,255,.55);
  padding: 64px 0 28px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 28px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.footer-brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  text-decoration: none;
}
.footer-brand-logo img { height: 40px; width: auto; object-fit: contain; }
.footer-brand-logo span { font-family: var(--fh); font-size: 1.3rem; font-weight: 300; letter-spacing: .04em; color: #c9d3dc; }
.footer-brand-logo strong { color: var(--green); font-weight: 700; }
.footer-brand p { font-size: .84rem; line-height: 1.7; max-width: 240px; color: rgba(255,255,255,.55); }

.footer-links { display: flex; flex-direction: column; gap: 9px; margin-top: 16px; }
.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: .83rem;
  color: var(--green-l);
  font-weight: 500;
  transition: color .2s;
  text-decoration: none;
}
.footer-links a:hover { color: var(--green-xl); }

.footer-col h4 { font-size: .7rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--white); margin-bottom: 16px; }
.footer-col ul  { display: flex; flex-direction: column; gap: 9px; }
.footer-col ul a { font-size: .84rem; color: rgba(255,255,255,.55); transition: color .2s; text-decoration: none; }
.footer-col ul a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-size: .76rem;
  flex-wrap: wrap;
  gap: 10px;
  color: rgba(255,255,255,.4);
}
.footer-badge {
  background: rgba(42,155,52,.12);
  border: 1px solid rgba(42,155,52,.25);
  color: var(--green-l);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: .7rem;
  font-weight: 700;
}

/* ══════════════════════════════════════════
   ABOUT
══════════════════════════════════════════ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.team-card { background: var(--white); border: 1px solid var(--gray-l); border-radius: var(--rad); padding: 36px; box-shadow: 0 4px 24px rgba(0,0,0,.06); }
.team-avatar { width: 68px; height: 68px; background: linear-gradient(135deg, var(--navy), var(--navy3)); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.team-avatar span { font-family: var(--fh); font-size: 1.4rem; font-weight: 800; color: var(--white); }
.team-card .role { color: var(--green); font-size: .83rem; font-weight: 600; margin-bottom: 14px; display: block; }
.team-card h3 { color: var(--navy); margin-bottom: 4px; }
.team-card p { color: #4a4a6a; }

.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 40px; }
.value-item { text-align: center; padding: 24px 16px; border-radius: var(--rad); background: var(--white); border: 1px solid var(--gray-l); transition: all .3s; }
.value-item:hover { box-shadow: 0 10px 36px rgba(0,0,0,.08); transform: translateY(-3px); }
.value-icon { font-size: 1.8rem; margin-bottom: 10px; }
.value-item h4 { color: var(--navy); margin-bottom: 5px; }
.value-item p  { font-size: .82rem; }

/* ══════════════════════════════════════════
   CONTACT
══════════════════════════════════════════ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 64px; align-items: start; }
.contact-info h2 { color: var(--navy); margin-bottom: 14px; }
.contact-info > p { color: #4a4a6a; }

.contact-details { display: flex; flex-direction: column; gap: 18px; margin-top: 28px; }
.contact-detail { display: flex; gap: 14px; align-items: flex-start; }
.contact-detail-icon {
  width: 42px; height: 42px;
  background: rgba(42,155,52,.1);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: all .3s;
}
.contact-detail:hover .contact-detail-icon { background: var(--green); }
.contact-detail-icon svg { width: 19px; height: 19px; stroke: var(--green); transition: stroke .3s; }
.contact-detail:hover .contact-detail-icon svg { stroke: var(--white); }
.contact-detail strong { display: block; font-size: .8rem; color: var(--gray); font-weight: 600; margin-bottom: 2px; }
.contact-detail span,
.contact-detail a { font-size: .95rem; color: var(--text); text-decoration: none; }
.contact-detail a:hover { color: var(--green); }

.reassurance {
  background: rgba(42,155,52,.06);
  border: 1px solid rgba(42,155,52,.2);
  border-radius: 11px;
  padding: 16px 18px;
  margin: 24px 0;
  display: flex; align-items: center; gap: 12px;
}
.reassurance-icon { font-size: 1.6rem; flex-shrink: 0; }
.reassurance strong { display: block; color: var(--navy); font-size: .92rem; margin-bottom: 2px; }
.reassurance span { font-size: .83rem; color: var(--gray); }

.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--gray-l);
  border-radius: 18px;
  padding: 40px 36px;
  box-shadow: 0 8px 48px rgba(0,0,0,.07);
}
.form-title { font-family: var(--fh); font-size: 1.3rem; font-weight: 700; color: var(--navy); margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.form-group label { font-size: .8rem; font-weight: 700; color: var(--navy); letter-spacing: .02em; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1.5px solid var(--gray-l);
  border-radius: 9px;
  font-family: var(--fb);
  font-size: .92rem;
  color: var(--text);
  background: var(--cream);
  outline: none;
  transition: all .25s var(--ease);
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(42,155,52,.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit .btn { width: 100%; justify-content: center; font-size: 1rem; padding: 15px; }
.form-note { font-size: .76rem; color: var(--gray); text-align: center; margin-top: 10px; }
.msg { padding: 13px 16px; border-radius: 9px; font-size: .9rem; margin-bottom: 18px; display: flex; align-items: flex-start; gap: 9px; }
.msg--success { background: #edf9f3; color: #237d2b; border: 1px solid rgba(42,155,52,.25); }
.msg--error   { background: #fff2f2; color: #c0392b; border: 1px solid rgba(192,57,43,.2); }

/* ══════════════════════════════════════════
   FAQ
══════════════════════════════════════════ */
details { border: 1px solid var(--gray-l); border-radius: 11px; margin-bottom: 10px; overflow: hidden; }
details[open] { box-shadow: 0 4px 20px rgba(0,0,0,.06); }
summary {
  padding: 18px 22px;
  cursor: pointer;
  font-weight: 600;
  color: var(--navy);
  font-size: .94rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--white);
  user-select: none;
}
summary::-webkit-details-marker { display: none; }
summary::marker { display: none; }
.si { font-size: 1.3rem; color: var(--green); flex-shrink: 0; margin-left: 14px; transition: transform .3s var(--ease); }
details[open] .si { transform: rotate(45deg); }
.faq-body { padding: 0 22px 18px; background: var(--white); }
.faq-body p { font-size: .92rem; color: #4a4a6a; }

/* ══════════════════════════════════════════
   STEPS
══════════════════════════════════════════ */
.steps-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; counter-reset: step; }
.step-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--rad);
  padding: 28px 22px;
  position: relative;
  overflow: hidden;
  transition: all .3s var(--ease);
  counter-increment: step;
}
.step-card::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: 10px; right: 14px;
  font-family: var(--fh);
  font-size: 2.8rem;
  font-weight: 800;
  color: rgba(255,255,255,.04);
  line-height: 1;
}
.step-card:hover { background: rgba(255,255,255,.07); border-color: rgba(42,155,52,.25); transform: translateY(-4px); }
.step-num { width: 34px; height: 34px; background: var(--green); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; font-weight: 700; font-size: .82rem; color: var(--white); }
.step-card h3 { color: var(--white); font-size: 1rem; margin-bottom: 7px; }
.step-card p  { color: rgba(255,255,255,.65); font-size: .88rem; }

/* ══════════════════════════════════════════
   DUERP — structure visualization
══════════════════════════════════════════ */
.duerp-struct a { color: inherit; text-decoration: none; }

/* ══════════════════════════════════════════
   MENTIONS LÉGALES
══════════════════════════════════════════ */
.legal-content h2 { color: var(--navy); font-size: 1.2rem; margin-bottom: 12px; }
.legal-content p  { color: #4a4a6a; margin-bottom: 14px; }
.legal-content a  { color: var(--green); text-decoration: none; }
.legal-content a:hover { color: var(--green2); }
.legal-divider { width: 44px; height: 3px; background: linear-gradient(90deg, var(--green), var(--green-l)); border-radius: 2px; margin: 32px 0; }

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .tech-grid { grid-template-columns: repeat(3,1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand { grid-column: 1/-1; }
}

@media (max-width: 900px) {
  .section { padding: 72px 0; }
  .hero { padding: 100px 0 64px; min-height: auto; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .hero-sub { max-width: 100%; }
  .cards--3 { grid-template-columns: repeat(2,1fr); }
  .cards--4 { grid-template-columns: repeat(2,1fr); }
  .tech-grid { grid-template-columns: repeat(2,1fr); }
  .sol-block { grid-template-columns: 1fr; gap: 36px; direction: ltr; padding: 56px 0; }
  .sol-block--rev { direction: ltr; }
  .sol-visual { min-height: 200px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .steps-grid { grid-template-columns: repeat(2,1fr); }
  .values-grid { grid-template-columns: repeat(2,1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1/-1; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .proof-item { min-width: 140px; padding: 12px 20px; }
}

@media (max-width: 700px) {
  .proof-bar-inner { flex-direction: column; align-items: stretch; }
  .proof-item { border-bottom: 1px solid rgba(255,255,255,.07); text-align: left; padding: 14px 24px; }
  .proof-item:last-child { border-bottom: none; }
  .proof-sep { display: none; }
}

@media (max-width: 600px) {
  .container { padding: 0 16px; }
  h1 { font-size: 1.85rem; }
  h2 { font-size: 1.55rem; }
  .section { padding: 56px 0; }
  .hero { padding: 88px 0 52px; }
  .cards--3, .cards--4, .cards--2 { grid-template-columns: 1fr; }
  .tech-grid { grid-template-columns: repeat(2,1fr); gap: 12px; }
  .tech-card { padding: 18px 14px; }
  .tech-icon { width: 44px; height: 44px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .values-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .cta-banner { padding: 64px 0; }
  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions .btn { width: 100%; max-width: 320px; }
  .page-header { padding: 104px 0 56px; }
  .trust-bar-inner { flex-direction: column; align-items: flex-start; gap: 12px; }
  .contact-form-wrap { padding: 24px 18px; }
  .gesfox-logo-bar { max-width: 140px; height: 36px; }
  .hero-gesfox-img img { max-height: 220px; object-fit: cover; }
}

@media (max-width: 380px) {
  .tech-grid { grid-template-columns: 1fr 1fr; }
  .logo-wrap .logo-txt { font-size: 1.1rem; }
  .logo-wrap img.logo-img { height: 32px; }
}
