
:root{
  --blue-main:#24496e;
  --blue-dark:#1d3d5f;
  --blue-accent:#46b3e6;
  --text-main:#1f2937;
  --text-soft:#516074;
  --border:#e4e9ef;
  --bg-soft:#f7fafc;
  --white:#ffffff;
  --shadow-soft:0 18px 50px rgba(36,73,110,.05);
  --shadow-panel:0 25px 80px rgba(36,73,110,.08);
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter,Arial,Helvetica,sans-serif;
  color:var(--text-main);
  background:var(--white);
  line-height:1.55;
}
img{display:block;max-width:100%}
a,button{cursor:pointer}
a{text-decoration:none;color:inherit}
button{
  font:inherit;
  border:0;
  background:none;
  padding:0;
}
.container{
  width:min(1200px,calc(100% - 48px));
  margin:0 auto;
}
.site-header{
  position:sticky;
  top:0;
  z-index:20;
  border-bottom:1px solid var(--border);
  background:rgba(255,255,255,.95);
  backdrop-filter:blur(8px);
}
.header-inner{
  min-height:94px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:32px;
}
.brand{
  display:inline-flex;
  align-items:center;
}
.brand-logo{
  width:auto;
  height:54px;
  object-fit:contain;
}
.main-nav,.footer-nav{
  display:flex;
  align-items:center;
  gap:38px;
  flex-wrap:wrap;
}
.main-nav a,.footer-nav a{
  color:var(--text-soft);
  font-size:15px;
  transition:color .2s ease;
}
.main-nav a:hover,.footer-nav a:hover,.main-nav a.active,.footer-nav a.active{
  color:var(--blue-main);
  font-weight:600;
}
.page-header{
  padding:80px 0 24px;
}
.eyebrow{
  margin:0 0 20px;
  color:#1591ff;
  font-size:14px;
  font-weight:600;
  letter-spacing:.28em;
  text-transform:uppercase;
}
h1,h2,h3{margin:0}
.page-header h1,
.hero h1,
section h2{
  font-weight:600;
  letter-spacing:-.045em;
  color:var(--text-main);
}
.page-header h1{font-size:clamp(42px,5vw,54px);line-height:1.04;max-width:900px}
.page-header p{
  margin:28px 0 0;
  font-size:19px;
  line-height:1.9;
  color:var(--text-soft);
  max-width:860px;
}
.hero{padding:88px 0 56px}
.hero-grid{
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:40px;
  align-items:center;
  min-height:620px;
}
.hero h1{
  max-width:760px;
  font-size:clamp(44px,5vw,58px);
  line-height:1.03;
}
.hero-text,.role-text,.references-text,.section-text{
  margin:28px 0 0;
  color:var(--text-soft);
  font-size:18px;
  line-height:1.9;
}
.hero-note{
  margin:28px 0 0;
  padding-left:20px;
  border-left:2px solid var(--blue-accent);
  font-size:17px;
  font-weight:600;
  color:var(--text-main);
}
.hero-actions{
  display:flex;
  align-items:center;
  gap:24px;
  margin-top:36px;
  flex-wrap:wrap;
}
.button-primary{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:14px 24px;
  border-radius:12px;
  background:var(--blue-main);
  color:var(--white);
  font-size:15px;
  font-weight:600;
  transition:background .2s ease,transform .2s ease;
}
.button-primary:hover{
  background:var(--blue-dark);
  transform:translateY(-1px);
}
.button-link{
  color:var(--blue-main);
  font-size:15px;
  font-weight:600;
}
.button-link:hover{color:var(--blue-accent)}
.hero-visual{
  position:relative;
  min-height:520px;
  border-radius:36px;
  overflow:hidden;
  background:linear-gradient(135deg,#f8fbfd 0%,#fff 50%,#eef7fc 100%);
}
.shape{position:absolute}
.shape-circle{border-radius:999px;border:1px solid #dce9f3}
.shape-circle.one{
  left:-8px;top:42px;width:220px;height:220px;background:rgba(70,179,230,.08)
}
.shape-circle.two{
  right:22px;bottom:18px;width:180px;height:180px;background:rgba(36,73,110,.03)
}
.shape-card{
  background:rgba(255,255,255,.88);
  border:1px solid #dce7f2;
  box-shadow:0 20px 60px rgba(36,73,110,.07);
}
.shape-card.one{
  right:22px;top:30px;width:290px;height:280px;border-radius:34px;transform:rotate(12deg)
}
.shape-card.two{
  left:56px;top:70px;width:250px;height:240px;border-radius:28px;transform:rotate(-12deg)
}
.shape-line{height:8px;border-radius:999px;transform:rotate(-32deg)}
.shape-line.one{left:120px;top:118px;width:190px;background:var(--blue-main)}
.shape-line.two{left:148px;top:190px;width:210px;background:var(--blue-accent)}
.shape-line.three{left:194px;top:266px;width:180px;background:#c8d2de}
.shape-dot{border-radius:999px}
.shape-dot.one{left:110px;bottom:110px;width:16px;height:16px;background:var(--blue-accent)}
.shape-dot.two{right:112px;bottom:80px;width:14px;height:14px;background:var(--blue-main)}
.visual-panel{
  position:absolute;
  inset:50% auto auto 50%;
  transform:translate(-50%,-44%);
  width:min(360px,calc(100% - 48px));
  padding:32px;
  border-radius:28px;
  background:rgba(255,255,255,.92);
  border:1px solid #dce7f2;
  box-shadow:var(--shadow-panel);
  backdrop-filter:blur(6px);
  z-index:2;
}
.panel-eyebrow{
  margin:0;
  color:#1591ff;
  font-size:13px;
  letter-spacing:.28em;
  text-transform:uppercase;
}
.visual-panel h2{
  margin:16px 0 0;
  color:var(--blue-main);
  font-size:28px;
  line-height:1.35;
  letter-spacing:-.03em;
}
.visual-panel ul{
  margin:24px 0 0;
  padding:0;
  list-style:none;
  color:var(--text-soft);
  font-size:15px;
}
.visual-panel li+li{margin-top:12px}
.values{padding:8px 0 24px}
.grid-3{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}
.grid-2{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:24px;
}
.card,.service-card,.role-box,.reference-pill,.simple-box,.case-box{
  border:1px solid var(--border);
  background:var(--white);
}
.card{
  padding:32px;
  border-radius:20px;
  box-shadow:0 12px 40px rgba(15,23,42,.03);
}
.card-accent{
  display:block;
  width:40px;
  height:6px;
  margin-bottom:18px;
  border-radius:999px;
  background:var(--blue-accent);
}
.card h3,.service-card h3{
  font-size:24px;
  letter-spacing:-.03em;
}
.card p,.service-card p{
  margin:16px 0 0;
  color:var(--text-soft);
  font-size:16px;
  line-height:1.8;
}
.situations{
  margin-top:72px;
  padding:64px 0;
  background:var(--bg-soft);
  border-radius:32px;
}
.situation-grid{
  margin-top:36px;
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:24px 40px;
}
.situation-item{
  padding:0 0 18px 18px;
  border-bottom:1px solid var(--border);
  position:relative;
  font-size:17px;
  line-height:1.8;
  color:#4c5b6f;
}
.situation-item::before{
  content:"";
  position:absolute;
  left:0;
  top:6px;
  width:3px;
  height:42px;
  border-radius:999px;
  background:var(--blue-main);
}
.interventions,.role,.references,.cta,.page-section{padding:96px 0}
.service-card{
  display:flex;
  flex-direction:column;
  min-height:360px;
  padding:32px;
  border-radius:24px;
  box-shadow:var(--shadow-soft);
}
.icon-placeholder{
  width:44px;height:44px;margin-bottom:18px;border-radius:16px;background:#eef2f6
}
.service-card ul{
  margin:20px 0 0;
  padding-left:18px;
  color:#4c5b6f;
  font-size:15px;
  line-height:1.8;
}
.service-card a{
  margin-top:auto;
  padding-top:24px;
  color:var(--blue-main);
  font-size:15px;
  font-weight:600;
}
.role{
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
}
.role-grid{
  display:grid;
  grid-template-columns:1fr .95fr;
  gap:40px;
}
.role-boxes{display:grid;gap:24px}
.role-box{
  padding:32px;
  border-radius:24px;
}
.role-box.muted{background:var(--bg-soft)}
.role-title{
  margin:0;
  font-size:14px;
  font-weight:700;
  letter-spacing:.22em;
  text-transform:uppercase;
  color:var(--blue-main);
}
.role-box.muted .role-title{color:#5b6675}
.role-box ul{
  margin:22px 0 0;
  padding-left:18px;
  color:#4c5b6f;
  font-size:17px;
  line-height:1.9;
}
.references-head{
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:40px;
}
.references-text{
  max-width:420px;
  font-size:16px;
  line-height:1.8;
}
.references-grid{
  margin-top:36px;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
}
.reference-pill{
  padding:26px 18px;
  border-radius:20px;
  text-align:center;
  font-size:17px;
  font-weight:600;
  color:#4c5b6f;
}
.cta{padding-top:0}
.cta-box{
  padding:64px 32px;
  border-radius:32px;
  text-align:center;
  background:var(--bg-soft);
}
.cta-box h2{
  max-width:760px;
  margin:0 auto;
  font-size:clamp(30px,4vw,40px);
  line-height:1.2;
}
.cta-box .button-primary{margin-top:34px}
.simple-box{
  padding:32px;
  border-radius:24px;
  box-shadow:var(--shadow-soft);
}
.simple-box.muted{background:var(--bg-soft);box-shadow:none}
.simple-box p,.simple-box li{
  color:var(--text-soft);
  font-size:16px;
  line-height:1.8;
}
.simple-box ul{margin:18px 0 0;padding-left:18px}
.case-grid{display:grid;gap:16px;margin-top:28px}
.case-box{
  padding:18px 20px;
  border-radius:18px;
  color:#4c5b6f;
  font-size:16px;
  line-height:1.7;
}
.pill-list{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:20px;
}
.pill{
  border:1px solid #cfd6de;
  background:#fff;
  border-radius:999px;
  padding:10px 16px;
  font-size:14px;
  font-weight:600;
  color:#4c5b6f;
}
.site-footer{padding:0 0 32px}
.footer-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  padding-top:32px;
  border-top:1px solid var(--border);
}
.footer-logo{height:42px}
@media (max-width:1100px){
  .hero-grid,.role-grid,.grid-3,.grid-2,.references-grid,.references-logos-grid,.situation-grid{
    grid-template-columns:1fr;
  }
  .references-head{
    flex-direction:column;
    align-items:flex-start;
  }
  .footer-inner{
    flex-direction:column;
    align-items:flex-start;
  }
  .hero-visual{min-height:440px}
}
@media (max-width:780px){
  .container{width:min(100% - 32px,1200px)}
  .header-inner{
    min-height:84px;
    flex-wrap:wrap;
    justify-content:center;
    padding:16px 0;
  }
  .main-nav,.footer-nav{
    gap:18px 24px;
    justify-content:center;
  }
  .brand-logo{height:42px}
  .hero{padding:60px 0 32px}
  .hero-text,.section-text,.page-header p{font-size:17px;line-height:1.8}
  .hero-note{font-size:16px}
  .hero-visual{min-height:360px}
  .visual-panel{padding:24px}
  .visual-panel h2{font-size:22px}
  .situations,.interventions,.role,.references,.cta,.page-section{padding:72px 0}
  .cta-box{padding:48px 24px}
  .footer-logo{height:36px}
}


.references-logos-grid{
  margin-top:36px;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
}
.reference-logo-card{
  min-height:116px;
  padding:22px 18px;
  border:1px solid var(--border);
  border-radius:20px;
  background:var(--white);
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 12px 40px rgba(15,23,42,.03);
}
.reference-logo-card img{
  max-width:100%;
  max-height:72px;
  width:auto;
  height:auto;
  object-fit:contain;
  opacity:.82;
  transition:opacity .2s ease, transform .2s ease;
}
.reference-logo-card:hover img{
  opacity:1;
  transform:translateY(-1px);
}
