
:root{
  --blue:#1566ff;
  --blue-dark:#0c3fb8;
  --navy:#0b1220;
  --navy-2:#121d32;
  --text:#121722;
  --muted:#657086;
  --line:#e7ebf2;
  --soft:#f5f7fb;
  --white:#fff;
  --radius:22px;
  --shadow:0 24px 60px rgba(9,22,52,.12);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:"Inter",Arial,sans-serif;
  color:var(--text);
  background:#fff;
  -webkit-font-smoothing:antialiased;
}
a{text-decoration:none;color:inherit}
img{max-width:100%}
.container{width:min(1180px,calc(100% - 40px));margin:auto}

.site-header{
  position:sticky;top:0;z-index:100;
  background:rgba(255,255,255,.94);
  backdrop-filter:blur(14px);
  border-bottom:1px solid rgba(231,235,242,.85);
}
.nav-wrap{height:82px;display:flex;align-items:center;justify-content:space-between;gap:28px}
.brand{display:flex;align-items:center;gap:12px;min-width:max-content}
.brand-logo{height:44px;width:auto;display:block}
.brand-logo-footer{height:44px}
.brand-mark{
  width:40px;height:40px;display:grid;place-items:center;
  border-radius:12px;background:linear-gradient(135deg,var(--blue),#4b8cff);
  color:#fff;font-weight:800;font-size:22px;
  box-shadow:0 10px 24px rgba(21,102,255,.22)
}
.brand-text{display:flex;flex-direction:column;line-height:1.05}
.brand-text strong{font-size:18px;letter-spacing:.4px}
.brand-text small{font-size:9px;margin-top:5px;color:#7c879b;letter-spacing:.2px}
.main-nav{display:flex;align-items:center;gap:24px;font-size:13px;font-weight:600;color:#4d5870}
.main-nav a{transition:.2s}
.main-nav a:hover,.main-nav .active{color:var(--blue)}
.main-nav .nav-cta{
  background:var(--blue);color:#fff;padding:12px 16px;border-radius:12px;
  box-shadow:0 10px 24px rgba(21,102,255,.18)
}
.main-nav .nav-cta:hover{color:#fff;background:var(--blue-dark)}
.menu-toggle{display:none;background:none;border:0;padding:8px}
.menu-toggle span{display:block;width:24px;height:2px;background:#101728;margin:5px 0}

.hero{
  position:relative;min-height:740px;overflow:hidden;
  background:
    linear-gradient(100deg,rgba(8,17,34,.80) 0%,rgba(8,17,34,.56) 48%,rgba(8,17,34,.18) 100%),
    url('hero-accueil-final.png') center center/cover no-repeat;
}
.hero:after{
  content:"";position:absolute;right:-100px;top:-180px;width:540px;height:540px;border-radius:50%;
  background:radial-gradient(circle,rgba(21,102,255,.33),transparent 67%);filter:blur(2px)
}
.hero-grid{position:relative;z-index:2;display:grid;grid-template-columns:1.05fr .75fr;gap:70px;align-items:center;min-height:740px}
.hero-copy{color:#fff;padding:72px 0}
.eyebrow,.section-kicker{
  font-size:12px;font-weight:800;letter-spacing:2.2px;color:var(--blue);text-transform:uppercase
}
.hero h1{font-size:72px;line-height:.98;margin:20px 0 24px;letter-spacing:-3px}
.hero h1 span{color:#77a6ff}
.hero-copy>p{max-width:620px;font-size:18px;line-height:1.7;color:#cfd7e7;margin:0 0 34px}
.hero-actions{display:flex;gap:14px;flex-wrap:wrap}
.btn{display:inline-flex;align-items:center;justify-content:center;padding:15px 22px;border-radius:13px;font-weight:700;font-size:14px;transition:.2s}
.btn-primary{background:var(--blue);color:#fff;box-shadow:0 16px 30px rgba(21,102,255,.28)}
.btn-primary:hover{transform:translateY(-2px);background:#2a74ff}
.btn-secondary{border:1px solid rgba(255,255,255,.34);color:#fff;background:rgba(255,255,255,.06)}
.btn-secondary:hover{background:rgba(255,255,255,.12)}
.btn-dark{background:var(--navy);color:#fff}
.btn-white{background:#fff;color:var(--navy)}
.hero-proof{margin-top:50px;display:grid;grid-template-columns:repeat(3,1fr);gap:18px;max-width:690px}
.hero-proof div{border-left:2px solid rgba(119,166,255,.45);padding-left:14px}
.hero-proof strong{display:block;font-size:14px;margin-bottom:5px}
.hero-proof span{font-size:11px;color:#97a6bf;line-height:1.4}

.hero-panel{display:flex;justify-content:flex-end}
.dashboard-card{
  width:100%;max-width:420px;border-radius:28px;padding:1px;
  background:linear-gradient(145deg,rgba(255,255,255,.34),rgba(255,255,255,.08));
  box-shadow:0 30px 80px rgba(0,0,0,.32);backdrop-filter:blur(18px)
}
.dash-head{padding:18px 20px;display:flex;justify-content:space-between;align-items:center;color:#cfd7e7;font-size:11px;border-bottom:1px solid rgba(255,255,255,.12)}
.dash-head>div{display:flex;align-items:center;gap:8px}
.dot{width:8px;height:8px;background:#31d17c;border-radius:50%;box-shadow:0 0 0 6px rgba(49,209,124,.12)}
.dash-main{padding:28px;background:rgba(7,14,29,.82);border-radius:0 0 27px 27px;color:#fff}
.metric{display:flex;justify-content:space-between;align-items:end}
.metric span{font-size:13px;color:#9eacc3}.metric strong{font-size:36px}
.progress{height:8px;background:#26334d;border-radius:20px;margin:12px 0 28px;overflow:hidden}
.progress span{display:block;height:100%;background:linear-gradient(90deg,var(--blue),#6ea0ff);border-radius:20px}
.metric-grid{display:grid;grid-template-columns:1fr 1fr;gap:12px}
.metric-grid div{background:#121e34;padding:18px;border-radius:16px}
.metric-grid small{display:block;color:#73829d;margin-bottom:7px;font-size:10px;text-transform:uppercase;letter-spacing:.8px}
.metric-grid strong{font-size:19px}
.dash-status{display:flex;justify-content:space-between;align-items:center;margin-top:22px;font-size:10px;color:#7f8ca3}
.status-pill{padding:7px 10px;border-radius:30px;background:rgba(49,209,124,.11);color:#70e7a8}

.trust-strip{border-bottom:1px solid var(--line);background:#fff}
.trust-grid{display:grid;grid-template-columns:repeat(6,1fr);text-align:center}
.trust-grid div{padding:20px 10px;border-right:1px solid var(--line);font-size:12px;font-weight:700;color:#7a8496}
.trust-grid div:first-child{border-left:1px solid var(--line)}

.section{padding:110px 0}
.two-col{display:grid;grid-template-columns:.95fr 1.05fr;gap:90px}
.section-heading h2,.section-title h2,.tech-copy h2,.cta-inner h2{font-size:46px;line-height:1.12;letter-spacing:-2px;margin:16px 0 0}
.intro-copy p{font-size:17px;line-height:1.8;color:var(--muted);margin:0 0 16px}
.text-link{display:inline-block;margin-top:12px;color:var(--blue);font-weight:700;font-size:14px}
.text-link span{margin-left:6px}

.services-preview{background:var(--soft)}
.section-title{margin-bottom:48px}
.section-title.centered{text-align:center;max-width:720px;margin:0 auto 54px}
.section-title p{color:var(--muted);font-size:16px}
.cards-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:18px}
.service-card{
  background:#fff;border:1px solid #e8ecf3;border-radius:20px;padding:30px 26px;
  transition:.25s;min-height:260px;display:flex;flex-direction:column
}
.service-card:hover{transform:translateY(-6px);box-shadow:var(--shadow)}
.service-card .icon{font-size:12px;font-weight:800;color:var(--blue);margin-bottom:34px}
.service-card h3{font-size:19px;margin:0 0 12px}
.service-card p{color:var(--muted);line-height:1.65;font-size:13px;flex:1}
.service-card a{color:var(--blue);font-weight:700;font-size:12px;margin-top:22px}

.sector-grid{display:grid;grid-template-columns:1fr 1fr;gap:20px}
.sector-card{
  min-height:300px;border-radius:24px;overflow:hidden;position:relative;
  display:flex;align-items:flex-end;padding:26px;background-size:cover;background-position:center;
  box-shadow:inset 0 -140px 120px rgba(7,12,23,.72);transition:.25s
}
.sector-card:hover{transform:translateY(-4px)}
.sector-card span{color:#fff;font-size:20px;font-weight:700;position:relative;z-index:2}
.sector-supermarket{background-image:url('https://images.unsplash.com/photo-1578916171728-46686eac8d58?auto=format&fit=crop&w=1200&q=85')}
.sector-fashion{background-image:url('https://images.unsplash.com/photo-1441986300917-64674bd600d8?auto=format&fit=crop&w=1200&q=85')}
.sector-warehouse{background-image:url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?auto=format&fit=crop&w=1200&q=85')}
.sector-industry{background-image:url('industrie-accueil.png')}

.tech-section{background:var(--navy);color:#fff;overflow:hidden}
.tech-grid{display:grid;grid-template-columns:1fr 1fr;gap:80px;align-items:center}
.tech-copy p{color:#aeb9ca;line-height:1.75;max-width:560px}
.feature-list{display:grid;grid-template-columns:1fr 1fr;gap:14px 20px;padding:0;margin:28px 0 34px;list-style:none}
.feature-list li{position:relative;padding-left:23px;color:#d7deea;font-size:13px}
.feature-list li:before{content:"✓";position:absolute;left:0;color:#74a2ff;font-weight:800}
.tech-visual{min-height:470px;position:relative;display:grid;place-items:center}
.phone{width:230px;background:#050a13;border-radius:38px;padding:10px;box-shadow:0 40px 90px rgba(0,0,0,.55);transform:rotate(4deg)}
.phone-screen{background:linear-gradient(#f7f9fd,#edf2fb);border-radius:29px;padding:26px 20px;color:#10182a;min-height:430px}
.phone-top{width:70px;height:6px;border-radius:20px;background:#202638;margin:0 auto 10px}
.mini-brand{font-size:13px;font-weight:800;color:var(--blue);margin-bottom:34px}
.mini-title{font-size:28px;font-weight:800;margin-bottom:26px}
.mini-scan{border:1px dashed #9dacbf;border-radius:12px;padding:18px;text-align:center;color:#738198;font-size:10px}
.mini-number{text-align:center;font-size:58px;font-weight:800;margin:28px 0}
.mini-actions{display:grid;grid-template-columns:1fr 1fr;gap:10px}
.mini-actions span{display:grid;place-items:center;background:#fff;border-radius:10px;font-size:28px;padding:8px;box-shadow:0 8px 18px rgba(16,30,55,.08)}
.mini-button{margin-top:12px;background:var(--blue);color:#fff;padding:13px;border-radius:10px;text-align:center;font-size:11px;font-weight:800}
.floating-stat{position:absolute;background:#fff;color:#0f1727;padding:15px 18px;border-radius:14px;box-shadow:0 18px 40px rgba(0,0,0,.25);display:flex;flex-direction:column}
.floating-stat strong{font-size:18px}.floating-stat span{font-size:9px;color:#7a8698;margin-top:3px}
.stat-a{left:15%;top:19%}.stat-b{right:10%;bottom:22%}

.why-section{background:#fff}
.why-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:20px}
.why-card{border-top:1px solid var(--line);padding:28px 4px 0}
.why-card>strong{color:#9aa4b5;font-size:12px}
.why-card h3{font-size:18px;margin:20px 0 10px}
.why-card p{font-size:13px;line-height:1.65;color:var(--muted)}

.cta-section{padding:36px 0 100px;background:#fff}
.cta-inner{
  background:linear-gradient(135deg,#165fff,#0c3db2);
  color:#fff;border-radius:28px;padding:48px 52px;display:flex;align-items:center;justify-content:space-between;gap:30px;
  box-shadow:0 24px 60px rgba(21,102,255,.25)
}
.section-kicker.light{color:#b8d0ff}
.cta-inner h2{font-size:38px;margin-top:10px}
.cta-inner p{margin:12px 0 0;color:#dbe7ff}

.site-footer{background:#080e19;color:#c0c9d7;padding:72px 0 30px}
.footer-grid{display:grid;grid-template-columns:2fr 1fr 1.2fr;gap:70px}
.light-brand .brand-text strong{color:#fff}.light-brand .brand-text small{color:#6f7c91}
.footer-brand p{max-width:420px;color:#7d899b;line-height:1.7;font-size:13px;margin-top:24px}
.footer-grid h4{color:#fff;font-size:12px;text-transform:uppercase;letter-spacing:1.2px;margin:0 0 18px}
.footer-grid>div:not(:first-child){display:flex;flex-direction:column;gap:12px;font-size:12px}
.footer-grid a:hover{color:#fff}
.footer-bottom{border-top:1px solid #172032;margin-top:55px;padding-top:24px;display:flex;justify-content:space-between;color:#5e6b7e;font-size:10px}

.reveal{opacity:0;transform:translateY(18px);transition:opacity .7s ease,transform .7s ease}
.reveal.visible{opacity:1;transform:none}
.delay-1{transition-delay:.1s}.delay-2{transition-delay:.2s}.delay-3{transition-delay:.3s}

@media (max-width:1020px){
  .main-nav{position:absolute;left:0;right:0;top:82px;background:#fff;display:none;flex-direction:column;align-items:flex-start;padding:24px 30px;border-bottom:1px solid var(--line);box-shadow:0 20px 30px rgba(0,0,0,.06)}
  .main-nav.open{display:flex}
  .menu-toggle{display:block}
  .hero-grid{grid-template-columns:1fr;gap:0;padding:40px 0 80px}
  .hero{min-height:auto}
  .hero-copy{padding:30px 0}
  .hero h1{font-size:58px}
  .hero-panel{justify-content:flex-start}
  .dashboard-card{max-width:520px}
  .cards-grid{grid-template-columns:1fr 1fr}
  .tech-grid{grid-template-columns:1fr}
  .two-col{gap:50px}
  .why-grid{grid-template-columns:1fr 1fr}
}

@media (max-width:720px){
  .brand-logo{height:38px}
  .brand-logo-footer{height:38px}

  .container{width:min(100% - 28px,1180px)}
  .nav-wrap{height:72px}
  .main-nav{top:72px}
  .brand-text small{display:none}
  .hero-grid{padding:36px 0 60px}
  .hero h1{font-size:45px;letter-spacing:-2px}
  .hero-copy>p{font-size:15px}
  .hero-proof{grid-template-columns:1fr;gap:12px}
  .hero-panel{display:none}
  .trust-grid{grid-template-columns:1fr 1fr 1fr}
  .trust-grid div{border-bottom:1px solid var(--line)}
  .section{padding:76px 0}
  .two-col,.cards-grid,.sector-grid,.why-grid{grid-template-columns:1fr}
  .two-col{gap:28px}
  .section-heading h2,.section-title h2,.tech-copy h2{font-size:34px}
  .sector-card{min-height:230px}
  .feature-list{grid-template-columns:1fr}
  .tech-visual{min-height:420px}
  .stat-a{left:0}.stat-b{right:0}
  .cta-inner{padding:36px 28px;align-items:flex-start;flex-direction:column}
  .cta-inner h2{font-size:32px}
  .footer-grid{grid-template-columns:1fr;gap:36px}
  .footer-bottom{flex-direction:column;gap:8px}
}


/* ===== PAGE SERVICES ===== */
.page-hero{
  position:relative;
  min-height:500px;
  display:flex;
  align-items:center;
  overflow:hidden;
  background:#0b1220;
}
.services-hero{
  background:
    linear-gradient(100deg,rgba(8,17,34,.84) 0%,rgba(8,17,34,.62) 48%,rgba(8,17,34,.22) 100%),
    url('https://images.unsplash.com/photo-1556740749-887f6717d7e4?auto=format&fit=crop&w=1800&q=80') center 45%/cover no-repeat;
}
.page-hero-inner{position:relative;z-index:2;color:#fff;padding:80px 0;max-width:780px}
.page-hero-inner h1{font-size:58px;line-height:1.02;letter-spacing:-2.5px;margin:18px 0 22px}
.page-hero-inner p{font-size:17px;line-height:1.75;color:#d6deeb;max-width:680px;margin:0 0 30px}

.service-detail-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:20px;
}
.service-detail-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:24px;
  padding:34px;
  min-height:410px;
  transition:.25s;
}
.service-detail-card:hover{
  transform:translateY(-5px);
  box-shadow:var(--shadow);
}
.service-number{
  width:44px;height:44px;
  border-radius:12px;
  display:grid;place-items:center;
  background:#edf4ff;
  color:var(--blue);
  font-weight:800;
  font-size:12px;
  margin-bottom:28px;
}
.service-detail-card h3{
  font-size:25px;
  margin:0 0 14px;
  letter-spacing:-.5px;
}
.service-detail-card>p{
  color:var(--muted);
  line-height:1.75;
  font-size:14px;
  margin-bottom:24px;
}
.service-detail-card ul{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:10px;
}
.service-detail-card li{
  position:relative;
  padding-left:22px;
  font-size:13px;
  color:#46536a;
}
.service-detail-card li:before{
  content:"✓";
  position:absolute;
  left:0;
  color:var(--blue);
  font-weight:800;
}
.process-mini{
  background:var(--soft);
}
.included-section{
  background:#fff;
}
.included-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}
.included-item{
  border:1px solid var(--line);
  border-radius:18px;
  padding:24px;
  display:flex;
  gap:18px;
  align-items:flex-start;
  background:#fff;
}
.included-item>span{
  color:var(--blue);
  font-size:11px;
  font-weight:800;
  padding-top:3px;
}
.included-item strong{
  display:block;
  font-size:15px;
  margin-bottom:6px;
}
.included-item p{
  margin:0;
  color:var(--muted);
  font-size:12px;
  line-height:1.6;
}
.service-choice{
  padding-top:30px;
}
.choice-panel{
  background:#f5f7fb;
  border:1px solid var(--line);
  border-radius:26px;
  padding:44px 46px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:40px;
}
.choice-panel h2{
  margin:12px 0;
  font-size:34px;
  letter-spacing:-1.4px;
}
.choice-panel p{
  max-width:720px;
  color:var(--muted);
  line-height:1.7;
  margin:0;
}

@media (max-width:900px){
  .service-detail-grid{grid-template-columns:1fr}
  .included-grid{grid-template-columns:1fr 1fr}
  .choice-panel{flex-direction:column;align-items:flex-start}
}
@media (max-width:720px){
  .page-hero{min-height:430px}
  .page-hero-inner{padding:62px 0}
  .page-hero-inner h1{font-size:40px;letter-spacing:-1.8px}
  .page-hero-inner p{font-size:15px}
  .service-detail-card{padding:26px;min-height:auto}
  .service-detail-card h3{font-size:22px}
  .included-grid{grid-template-columns:1fr}
  .choice-panel{padding:30px 24px}
  .choice-panel h2{font-size:29px}
}


/* ===== PAGE SECTEURS ===== */
.sectors-hero{
  background:
    linear-gradient(100deg,rgba(8,17,34,.70) 0%,rgba(8,17,34,.46) 45%,rgba(8,17,34,.16) 100%),
    url('secteurs-tout-final.png') center center/cover no-repeat;
}
.sectors-main{background:#fff}
.sector-detail-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:22px;
}
.sector-detail-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:24px;
  overflow:hidden;
  transition:.25s;
}
.sector-detail-card:hover{
  transform:translateY(-5px);
  box-shadow:var(--shadow);
}
.sector-photo{
  height:260px;
  background-size:cover;
  background-position:center;
}
.photo-supermarket{
  background-image:url('https://images.unsplash.com/photo-1578916171728-46686eac8d58?auto=format&fit=crop&w=1200&q=85');
}
.photo-fashion{
  background-image:url('https://images.unsplash.com/photo-1441986300917-64674bd600d8?auto=format&fit=crop&w=1200&q=85');
}
.photo-warehouse{
  background-image:url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?auto=format&fit=crop&w=1200&q=85');
}
.photo-industry{
  background-image:url('pharmacie-presentoir.jpg');
  background-position:center center;
}
.photo-auto{
  background-image:url('pieces-auto-presentoir.webp');
  background-position:center center;
}
.photo-specialty{
  background-image:url('bricolage-magasin.jpg');
  background-position:center center;
}
.sector-content{padding:30px}
.sector-tag{
  color:var(--blue);
  font-size:10px;
  font-weight:800;
  letter-spacing:1.5px;
}
.sector-content h3{
  font-size:25px;
  margin:12px 0 14px;
  letter-spacing:-.6px;
}
.sector-content>p{
  color:var(--muted);
  font-size:14px;
  line-height:1.7;
}
.sector-content ul{
  list-style:none;
  padding:0;
  margin:22px 0 0;
  display:grid;
  gap:9px;
}
.sector-content li{
  position:relative;
  padding-left:21px;
  font-size:13px;
  color:#4f5c72;
}
.sector-content li:before{
  content:"✓";
  position:absolute;
  left:0;
  color:var(--blue);
  font-weight:800;
}
.multi-site-section{
  background:var(--soft);
}
.multi-site-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
}
.fit-panel{
  background:#f5f7fb;
  border:1px solid var(--line);
  border-radius:26px;
  padding:44px 46px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:40px;
}
.fit-panel h2{
  margin:12px 0;
  font-size:34px;
  letter-spacing:-1.4px;
}
.fit-panel p{
  color:var(--muted);
  max-width:730px;
  line-height:1.7;
  margin:0;
}

@media (max-width:900px){
  .sector-detail-grid{grid-template-columns:1fr}
  .multi-site-grid{grid-template-columns:1fr;gap:30px}
  .fit-panel{flex-direction:column;align-items:flex-start}
}
@media (max-width:720px){
  .sector-photo{height:220px}
  .sector-content{padding:25px}
  .sector-content h3{font-size:22px}
  .fit-panel{padding:30px 24px}
  .fit-panel h2{font-size:29px}
}


/* ===== PAGE METHODE ===== */
.method-hero{
  background:
    linear-gradient(100deg,rgba(8,17,34,.88) 0%,rgba(8,17,34,.70) 47%,rgba(8,17,34,.24) 100%),
    url('https://images.unsplash.com/photo-1517048676732-d65bc937f952?auto=format&fit=crop&w=1800&q=80') center 42%/cover no-repeat;
}
.method-intro{background:#fff}
.method-steps-section{background:var(--soft)}

.method-timeline{
  max-width:980px;
  margin:0 auto;
  position:relative;
}
.method-timeline:before{
  content:"";
  position:absolute;
  left:36px;
  top:42px;
  bottom:42px;
  width:2px;
  background:linear-gradient(var(--blue),#dbe5f6);
}
.method-step{
  display:grid;
  grid-template-columns:74px 1fr;
  gap:26px;
  position:relative;
  margin-bottom:26px;
}
.method-step-number{
  position:relative;
  z-index:2;
  width:74px;
  height:74px;
  border-radius:20px;
  display:grid;
  place-items:center;
  background:var(--navy);
  color:#fff;
  font-size:13px;
  font-weight:800;
  box-shadow:0 14px 28px rgba(8,18,35,.16);
}
.method-step-content{
  background:#fff;
  border:1px solid var(--line);
  border-radius:22px;
  padding:30px 32px;
}
.method-step-content>span{
  color:var(--blue);
  font-size:10px;
  font-weight:800;
  letter-spacing:1.6px;
}
.method-step-content h3{
  margin:9px 0 12px;
  font-size:24px;
  letter-spacing:-.6px;
}
.method-step-content p{
  color:var(--muted);
  font-size:14px;
  line-height:1.75;
  margin:0;
}
.method-tags{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  margin-top:20px;
}
.method-tags small{
  padding:7px 10px;
  border-radius:30px;
  background:#f1f5fb;
  color:#59677e;
  font-size:10px;
  font-weight:700;
}

.control-focus{
  background:var(--navy);
  color:#fff;
}
.control-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
  align-items:center;
}
.control-visual{
  min-height:420px;
  display:grid;
  place-items:center;
}
.control-screen{
  width:100%;
  max-width:500px;
  background:#fff;
  border-radius:24px;
  padding:28px;
  color:#10182a;
  box-shadow:0 35px 80px rgba(0,0,0,.35);
}
.control-head{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding-bottom:22px;
  border-bottom:1px solid #edf0f5;
}
.control-head span{
  color:var(--blue);
  font-weight:800;
  font-size:13px;
}
.control-head strong{
  font-size:13px;
}
.control-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:20px 0;
  border-bottom:1px solid #edf0f5;
}
.control-row:last-child{border-bottom:0}
.control-row small{
  display:block;
  color:#8995a8;
  font-size:10px;
  margin-bottom:5px;
}
.control-row strong{
  font-size:13px;
}
.control-alert,.control-ok{
  padding:7px 10px;
  border-radius:30px;
  font-size:9px;
  font-weight:800;
  white-space:nowrap;
}
.control-alert{
  background:#fff1e8;
  color:#c35c18;
}
.control-ok{
  background:#eaf9f0;
  color:#25985a;
}
.before-mission{
  background:#fff;
}
.mission-info-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}
.mission-info{
  border:1px solid var(--line);
  border-radius:20px;
  padding:28px 24px;
  background:#fff;
}
.mission-info span{
  display:block;
  color:var(--blue);
  font-size:11px;
  font-weight:800;
  margin-bottom:28px;
}
.mission-info strong{
  display:block;
  font-size:16px;
  margin-bottom:10px;
}
.mission-info p{
  color:var(--muted);
  font-size:12px;
  line-height:1.65;
  margin:0;
}

@media (max-width:900px){
  .control-grid{grid-template-columns:1fr;gap:35px}
  .mission-info-grid{grid-template-columns:1fr 1fr}
}
@media (max-width:720px){
  .method-timeline:before{left:25px}
  .method-step{grid-template-columns:52px 1fr;gap:14px}
  .method-step-number{
    width:52px;height:52px;border-radius:15px;font-size:11px
  }
  .method-step-content{padding:24px 20px}
  .method-step-content h3{font-size:21px}
  .control-visual{min-height:auto}
  .control-screen{padding:20px}
  .mission-info-grid{grid-template-columns:1fr}
}


/* ===== PAGE TECHNOLOGIE ===== */
.technology-hero{
  background:
    linear-gradient(100deg,rgba(8,17,34,.88) 0%,rgba(8,17,34,.68) 50%,rgba(8,17,34,.28) 100%),
    url('https://images.unsplash.com/photo-1516321318423-f06f85e504b3?auto=format&fit=crop&w=1800&q=80') center 50%/cover no-repeat;
}
.tech-intro{background:#fff}
.tech-platform{background:var(--soft)}

.tech-feature-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}
.tech-feature-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:21px;
  padding:28px;
  min-height:210px;
  transition:.25s;
}
.tech-feature-card:hover{
  transform:translateY(-5px);
  box-shadow:var(--shadow);
}
.tech-feature-num{
  color:var(--blue);
  font-size:11px;
  font-weight:800;
}
.tech-feature-card h3{
  margin:28px 0 10px;
  font-size:19px;
}
.tech-feature-card p{
  margin:0;
  color:var(--muted);
  line-height:1.65;
  font-size:13px;
}

.live-dashboard-section{
  background:var(--navy);
  color:#fff;
}
.live-grid{
  display:grid;
  grid-template-columns:.85fr 1.15fr;
  align-items:center;
  gap:70px;
}
.live-copy h2{
  font-size:44px;
  line-height:1.12;
  letter-spacing:-1.8px;
  margin:14px 0 18px;
}
.live-copy>p{
  color:#aeb9ca;
  line-height:1.75;
}
.dark-list li{color:#d4dcea}

.dashboard-pro{
  background:#f8faff;
  color:#111a2b;
  border-radius:26px;
  padding:28px;
  box-shadow:0 35px 90px rgba(0,0,0,.36);
}
.dashboard-pro-top{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:24px;
}
.dashboard-pro-top>div{
  display:flex;
  flex-direction:column;
  gap:5px;
}
.dash-brand{
  color:var(--blue);
  font-weight:800;
  font-size:12px;
}
.dashboard-pro-top strong{font-size:20px}
.live-pill{
  padding:8px 10px;
  border-radius:30px;
  background:#eaf8ef;
  color:#299157;
  font-size:9px;
  font-weight:800;
}
.dash-summary{
  display:grid;
  grid-template-columns:1.5fr repeat(3,1fr);
  gap:10px;
}
.dash-summary>div{
  background:#fff;
  border:1px solid #e9edf4;
  border-radius:15px;
  padding:16px;
}
.dash-summary small{
  color:#8995a8;
  font-size:8px;
  display:block;
  margin-bottom:8px;
}
.dash-summary strong{
  font-size:22px;
}
.bar{
  display:block;
  height:5px;
  border-radius:10px;
  background:#e7edf7;
  margin-top:10px;
  overflow:hidden;
}
.bar i{
  display:block;
  height:100%;
  background:var(--blue);
}
.dash-table{
  margin-top:16px;
  border:1px solid #e8edf4;
  background:#fff;
  border-radius:16px;
  overflow:hidden;
}
.dash-table-head,.dash-table-row{
  display:grid;
  grid-template-columns:1fr 1fr .8fr .8fr;
  gap:10px;
  align-items:center;
  padding:13px 16px;
  font-size:10px;
}
.dash-table-head{
  color:#8a95a6;
  background:#f5f7fb;
  font-weight:700;
}
.dash-table-row{
  border-top:1px solid #edf0f5;
  color:#4b586e;
}
.status-done,.status-active,.status-check,.status-wait{
  font-weight:700;
}
.status-done{color:#26925a}
.status-active{color:var(--blue)}
.status-check{color:#c46b26}
.status-wait{color:#8591a4}

.mobile-tech-section{background:#fff}
.mobile-tech-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  align-items:center;
  gap:90px;
}
.mobile-showcase{
  min-height:560px;
  display:grid;
  place-items:center;
  position:relative;
}
.device-shell{
  width:260px;
  background:#050a13;
  border-radius:42px;
  padding:10px;
  box-shadow:0 35px 75px rgba(12,24,48,.28);
}
.device-notch{
  width:74px;height:7px;
  border-radius:20px;
  background:#252b3b;
  margin:2px auto 10px;
}
.device-screen{
  min-height:500px;
  background:#f4f7fc;
  border-radius:30px;
  padding:25px 20px;
  color:#111a2b;
}
.app-top{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:28px;
}
.app-top strong{color:var(--blue);font-size:13px}
.app-top small{font-size:9px;color:#7e8a9e}
.app-zone{
  font-size:25px;
  font-weight:800;
  margin-bottom:25px;
}
.device-screen label{
  display:block;
  font-size:9px;
  color:#8490a3;
  margin:13px 0 6px;
  text-transform:uppercase;
}
.app-input{
  background:#fff;
  border:1px solid #dce3ed;
  border-radius:10px;
  padding:13px;
  font-size:11px;
}
.qty-display{
  font-size:58px;
  font-weight:800;
  text-align:center;
  padding:22px 0 12px;
}
.qty-actions{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
}
.qty-actions button{
  border:0;
  background:#fff;
  border-radius:10px;
  padding:10px;
  font-size:26px;
  box-shadow:0 7px 18px rgba(10,30,60,.08);
}
.app-confirm{
  margin-top:12px;
  background:var(--blue);
  color:#fff;
  text-align:center;
  padding:13px;
  border-radius:10px;
  font-size:10px;
  font-weight:800;
}
.app-bottom{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:5px;
  text-align:center;
  margin-top:28px;
  font-size:8px;
  color:#7b879a;
}
.device-note{
  position:absolute;
  background:#fff;
  border:1px solid var(--line);
  border-radius:14px;
  padding:14px 17px;
  box-shadow:0 16px 35px rgba(11,30,60,.14);
  display:flex;
  flex-direction:column;
}
.device-note strong{font-size:15px}
.device-note span{font-size:9px;color:#8691a3;margin-top:4px}
.note-one{left:5%;top:23%}
.note-two{right:5%;bottom:23%}

.tech-control-section{background:var(--soft)}
.tech-control-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}
.tech-control-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:20px;
  padding:27px 24px;
}
.tech-control-card>span{
  color:var(--blue);
  font-size:11px;
  font-weight:800;
}
.tech-control-card h3{
  margin:24px 0 10px;
  font-size:17px;
}
.tech-control-card p{
  color:var(--muted);
  font-size:12px;
  line-height:1.65;
  margin:0;
}

.result-section{background:#fff}
.result-panel{
  background:linear-gradient(135deg,#eef4ff,#f8faff);
  border:1px solid #dfe8f7;
  border-radius:26px;
  padding:44px;
  display:grid;
  grid-template-columns:1fr .9fr;
  gap:60px;
  align-items:center;
}
.result-panel h2{
  font-size:36px;
  letter-spacing:-1.4px;
  margin:12px 0;
}
.result-panel p{
  color:var(--muted);
  line-height:1.7;
}
.result-files{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:10px;
}
.result-files div{
  background:#fff;
  border:1px solid #e1e8f2;
  border-radius:15px;
  padding:20px 15px;
  text-align:center;
}
.result-files span{
  display:grid;
  place-items:center;
  width:42px;height:42px;
  margin:0 auto 12px;
  border-radius:12px;
  background:#edf4ff;
  color:var(--blue);
  font-size:10px;
  font-weight:800;
}
.result-files strong{
  display:block;
  font-size:10px;
  line-height:1.4;
}

@media(max-width:980px){
  .tech-feature-grid{grid-template-columns:1fr 1fr}
  .live-grid,.mobile-tech-grid,.result-panel{grid-template-columns:1fr}
  .tech-control-grid{grid-template-columns:1fr 1fr}
  .dash-summary{grid-template-columns:1fr 1fr}
}
@media(max-width:720px){
  .tech-feature-grid,.tech-control-grid{grid-template-columns:1fr}
  .live-copy h2{font-size:34px}
  .dashboard-pro{padding:17px}
  .dash-summary{grid-template-columns:1fr 1fr}
  .dash-table-head,.dash-table-row{
    grid-template-columns:1fr 1fr .7fr;
  }
  .dash-table-head span:last-child,.dash-table-row span:last-child{display:none}
  .mobile-showcase{min-height:520px}
  .device-shell{width:230px}
  .device-screen{min-height:450px}
  .note-one{left:0}.note-two{right:0}
  .result-panel{padding:30px 24px}
  .result-files{grid-template-columns:1fr}
}


/* ===== PAGE DEVIS ===== */
.quote-hero{
  background:
    linear-gradient(115deg,rgba(8,17,34,.90),rgba(13,37,81,.74)),
    url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?auto=format&fit=crop&w=1800&q=80') center 48%/cover no-repeat;
  color:#fff;
  padding:90px 0 80px;
}
.quote-hero-grid{
  display:grid;
  grid-template-columns:1.25fr .75fr;
  gap:80px;
  align-items:center;
}
.quote-hero-copy h1{
  font-size:58px;
  line-height:1.02;
  letter-spacing:-2.6px;
  margin:18px 0 22px;
  max-width:780px;
}
.quote-hero-copy>p{
  max-width:660px;
  color:#cfd8e7;
  font-size:17px;
  line-height:1.75;
}
.quote-reassurance{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
  margin-top:40px;
  max-width:760px;
}
.quote-reassurance div{
  border-top:1px solid rgba(255,255,255,.18);
  padding-top:16px;
}
.quote-reassurance strong{
  display:block;
  color:#77a6ff;
  font-size:10px;
  margin-bottom:7px;
}
.quote-reassurance span{
  color:#b9c5d7;
  font-size:11px;
  line-height:1.5;
}
.quote-contact-card{
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.16);
  backdrop-filter:blur(14px);
  border-radius:24px;
  padding:30px;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.quote-contact-card>span{
  font-size:9px;
  font-weight:800;
  letter-spacing:1.4px;
  color:#82aaff;
}
.quote-contact-card>strong{
  font-size:22px;
  margin-bottom:10px;
}
.quote-contact-card a{
  color:#dce6f5;
  font-size:13px;
  padding:10px 0;
  border-top:1px solid rgba(255,255,255,.12);
}
.quote-section{
  background:#f5f7fb;
  padding-top:80px;
}
.quote-layout{
  display:grid;
  grid-template-columns:minmax(0,1.45fr) minmax(280px,.55fr);
  gap:30px;
  align-items:start;
}
.quote-form{
  background:#fff;
  border:1px solid var(--line);
  border-radius:26px;
  padding:42px;
  box-shadow:0 18px 50px rgba(14,35,70,.06);
}
.form-section-title{
  display:flex;
  gap:18px;
  align-items:flex-start;
  margin-bottom:28px;
}
.form-section-title>span{
  width:42px;height:42px;
  border-radius:12px;
  display:grid;place-items:center;
  flex:0 0 auto;
  background:#edf4ff;
  color:var(--blue);
  font-size:11px;
  font-weight:800;
}
.form-section-title h2{
  font-size:23px;
  margin:0 0 6px;
  letter-spacing:-.5px;
}
.form-section-title p{
  color:var(--muted);
  font-size:12px;
  margin:0;
}
.form-grid{
  display:grid;
  gap:16px;
}
.form-grid.two{grid-template-columns:1fr 1fr}
.form-grid.three{grid-template-columns:repeat(3,1fr)}
.form-field{
  margin-bottom:18px;
}
.form-field>label{
  display:block;
  font-size:11px;
  color:#4c596e;
  font-weight:700;
  margin-bottom:8px;
}
.form-field input,
.form-field select,
.form-field textarea{
  width:100%;
  border:1px solid #dfe5ee;
  background:#fbfcfe;
  color:#172033;
  border-radius:12px;
  padding:13px 14px;
  outline:none;
  font:inherit;
  font-size:13px;
  transition:.2s;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus{
  border-color:#78a5ff;
  box-shadow:0 0 0 4px rgba(21,102,255,.08);
  background:#fff;
}
.form-field textarea{
  resize:vertical;
  min-height:135px;
}
.form-divider{
  height:1px;
  background:#edf0f5;
  margin:28px 0 34px;
}
.choice-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}
.choice-box{
  border:1px solid #e0e5ed;
  border-radius:14px;
  padding:15px;
  display:flex !important;
  align-items:flex-start;
  gap:11px;
  cursor:pointer;
  transition:.2s;
  margin:0 !important;
}
.choice-box:hover{
  border-color:#a8c3ff;
  background:#f8faff;
}
.choice-box input{
  width:auto !important;
  margin-top:3px;
  accent-color:var(--blue);
}
.choice-box span{
  display:flex;
  flex-direction:column;
  gap:4px;
}
.choice-box strong{
  font-size:12px;
  color:#172033;
}
.choice-box small{
  color:#7c8798;
  font-size:10px;
  line-height:1.45;
}
.upload-zone{
  min-height:135px;
  border:1.5px dashed #bac6d8;
  border-radius:16px;
  background:#f8faff;
  display:flex !important;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:20px;
  cursor:pointer;
  margin:0 !important;
  transition:.2s;
}
.upload-zone:hover{
  border-color:var(--blue);
  background:#f2f7ff;
}
.upload-zone input{display:none}
.upload-icon{
  width:36px;height:36px;
  border-radius:10px;
  display:grid;place-items:center;
  background:#e6efff;
  color:var(--blue);
  font-size:20px;
  margin-bottom:8px;
}
.upload-zone strong{
  font-size:12px;
  color:#172033;
}
.upload-zone small{
  color:#7f8b9d;
  font-size:10px;
  margin-top:5px;
}
.selected-files{
  display:flex;
  flex-wrap:wrap;
  gap:7px;
  margin-top:10px;
}
.selected-files span{
  padding:6px 9px;
  border-radius:20px;
  background:#edf3fb;
  color:#58677e;
  font-size:9px;
}
.consent-line{
  display:flex;
  gap:10px;
  align-items:flex-start;
  margin:25px 0 18px;
  color:#6f7c90;
  font-size:10px;
  line-height:1.5;
}
.consent-line input{
  margin-top:2px;
  accent-color:var(--blue);
}
.submit-quote{
  width:100%;
  border:0;
  background:linear-gradient(135deg,var(--blue),#0c49cf);
  color:#fff;
  border-radius:13px;
  padding:16px 18px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  cursor:pointer;
  font-weight:800;
  box-shadow:0 14px 30px rgba(21,102,255,.22);
}
.submit-quote span{font-size:12px;letter-spacing:.4px}
.submit-quote strong{font-size:20px}
.form-status{
  color:#8a95a7;
  font-size:9px;
  line-height:1.5;
  text-align:center;
  margin:12px 0 0;
}
.quote-sidebar{
  display:grid;
  gap:18px;
  position:sticky;
  top:105px;
}
.quote-side-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:20px;
  padding:25px;
}
.quote-side-card h3{
  font-size:19px;
  line-height:1.25;
  margin:12px 0 18px;
}
.quote-side-card ul{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:11px;
}
.quote-side-card li{
  position:relative;
  padding-left:20px;
  color:#68758a;
  font-size:11px;
}
.quote-side-card li:before{
  content:"✓";
  position:absolute;
  left:0;
  color:var(--blue);
  font-weight:800;
}
.dark-card{
  background:var(--navy);
  color:#fff;
  border-color:var(--navy);
}
.dark-card p{
  color:#aeb9ca;
  line-height:1.7;
  font-size:11px;
  margin:0;
}
.side-contact{
  display:block;
  padding:9px 0;
  color:#26354b;
  border-top:1px solid #edf0f5;
  font-size:12px;
}
.email-link{color:var(--blue)}

@media(max-width:980px){
  .quote-hero-grid,.quote-layout{grid-template-columns:1fr}
  .quote-contact-card{max-width:480px}
  .quote-sidebar{position:static;grid-template-columns:repeat(3,1fr)}
}
@media(max-width:760px){
  .quote-hero{padding:65px 0}
  .quote-hero-copy h1{font-size:41px;letter-spacing:-1.8px}
  .quote-reassurance{grid-template-columns:1fr}
  .quote-form{padding:28px 20px}
  .form-grid.two,.form-grid.three,.choice-grid{grid-template-columns:1fr}
  .quote-sidebar{grid-template-columns:1fr}
}


/* ===== PAGE CONTACT ===== */
.contact-hero{
  background:
    linear-gradient(115deg,rgba(7,15,29,.90),rgba(12,47,109,.74)),
    url('https://images.unsplash.com/photo-1521737711867-e3b97375f902?auto=format&fit=crop&w=1800&q=80') center 45%/cover no-repeat;
  color:#fff;
  padding:90px 0 82px;
}
.contact-hero-grid{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:80px;
  align-items:center;
}
.contact-hero-copy h1{
  font-size:58px;
  line-height:1.02;
  letter-spacing:-2.6px;
  margin:18px 0 22px;
}
.contact-hero-copy>p{
  max-width:660px;
  color:#cdd7e7;
  font-size:17px;
  line-height:1.75;
}
.contact-hero-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:30px;
}
.contact-mini-panel{
  justify-self:end;
  width:100%;
  max-width:380px;
  padding:34px;
  border-radius:24px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.15);
  backdrop-filter:blur(14px);
  display:flex;
  flex-direction:column;
}
.contact-mini-panel>span{
  color:#78a4ff;
  font-weight:800;
  font-size:11px;
  letter-spacing:1.7px;
}
.contact-mini-panel strong{
  font-size:27px;
  margin:17px 0 8px;
}
.contact-mini-panel small{
  color:#aeb9ca;
  line-height:1.6;
}

.contact-main{background:#fff}
.contact-cards{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}
.contact-card{
  border:1px solid var(--line);
  border-radius:22px;
  padding:30px;
  min-height:285px;
  display:flex;
  flex-direction:column;
  background:#fff;
  transition:.25s;
}
.contact-card:hover{
  transform:translateY(-5px);
  box-shadow:var(--shadow);
}
.contact-icon{
  width:46px;height:46px;
  display:grid;place-items:center;
  border-radius:13px;
  background:#edf4ff;
  color:var(--blue);
  font-size:10px;
  font-weight:800;
  margin-bottom:28px;
}
.contact-card small{
  color:#8b97aa;
  font-size:9px;
  font-weight:800;
  letter-spacing:1.4px;
}
.contact-card strong{
  font-size:20px;
  margin:9px 0 13px;
  overflow-wrap:anywhere;
}
.contact-card p{
  color:var(--muted);
  font-size:12px;
  line-height:1.65;
  flex:1;
}
.contact-card b{
  color:var(--blue);
  font-size:11px;
}

.contact-form-section{
  background:var(--soft);
}
.contact-form-grid{
  display:grid;
  grid-template-columns:.75fr 1.25fr;
  gap:70px;
  align-items:start;
}
.contact-form-copy{
  padding-top:15px;
}
.contact-form-copy h2{
  font-size:42px;
  line-height:1.12;
  letter-spacing:-1.7px;
  margin:14px 0 18px;
}
.contact-form-copy>p{
  color:var(--muted);
  line-height:1.75;
}
.contact-form-copy>p a{
  color:var(--blue);
  font-weight:700;
}
.contact-points{
  margin-top:32px;
  display:grid;
  gap:14px;
}
.contact-points div{
  padding-top:13px;
  border-top:1px solid #dfe5ee;
  display:flex;
  gap:14px;
  font-size:12px;
  color:#5e6b7f;
}
.contact-points strong{
  color:var(--blue);
  font-size:10px;
}
.contact-form{
  background:#fff;
  border:1px solid var(--line);
  border-radius:24px;
  padding:36px;
  box-shadow:0 18px 45px rgba(14,35,70,.06);
}

.contact-location{
  background:#fff;
  padding-top:85px;
}
.location-panel{
  border-radius:28px;
  background:
    radial-gradient(circle at 78% 40%,rgba(56,119,255,.24),transparent 28%),
    linear-gradient(135deg,#08101f,#102649);
  color:#fff;
  padding:52px;
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:60px;
  align-items:center;
}
.location-panel h2{
  font-size:40px;
  letter-spacing:-1.6px;
  line-height:1.1;
  margin:13px 0 17px;
}
.location-panel>div:first-child p{
  color:#b3bfd0;
  line-height:1.7;
  max-width:600px;
}
.location-card{
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.14);
  border-radius:20px;
  padding:28px;
  display:flex;
  flex-direction:column;
}
.location-card small{
  color:#83aaff;
  font-size:9px;
  font-weight:800;
  letter-spacing:1.4px;
}
.location-card strong{
  font-size:25px;
  margin:14px 0 8px;
}
.location-card span{
  color:#b9c5d7;
  font-size:12px;
}
.location-card a{
  color:#fff;
  font-size:11px;
  font-weight:700;
  margin-top:24px;
}

@media(max-width:980px){
  .contact-hero-grid,
  .contact-form-grid,
  .location-panel{
    grid-template-columns:1fr;
  }
  .contact-mini-panel{justify-self:start}
  .contact-cards{grid-template-columns:1fr}
}
@media(max-width:720px){
  .contact-hero{padding:65px 0}
  .contact-hero-copy h1{font-size:41px;letter-spacing:-1.8px}
  .contact-form-copy h2{font-size:34px}
  .contact-form{padding:28px 20px}
  .location-panel{padding:34px 25px}
  .location-panel h2{font-size:32px}
}


/* ===== LOGO OFFICIEL INVOSTOCK ===== */
.brand-logo{
  height:54px;
  width:auto;
  max-width:285px;
  object-fit:contain;
  display:block;
}
.site-footer .brand-logo{
  height:58px;
  max-width:300px;
  background:#fff;
  border-radius:12px;
  padding:5px 9px;
}
@media (max-width:720px){
  .brand-logo{
    height:46px;
    max-width:225px;
  }
  .site-footer .brand-logo{
    height:49px;
    max-width:240px;
  }
}


/* ===== FORMULAIRES EN LIGNE ===== */
.hp-field{
  position:absolute !important;
  left:-9999px !important;
  width:1px !important;
  height:1px !important;
  opacity:0 !important;
  pointer-events:none !important;
}
.form-status.status-success{
  color:#18864b !important;
  font-weight:700;
}
.form-status.status-error{
  color:#b3261e !important;
  font-weight:700;
}
