:root{
      --bg:#f5f7fb;
      --surface:#ffffff;
      --text:#102033;
      --muted:#607086;
      --line:#dbe3ee;
      --primary:#0f4c81;
      --primary-dark:#0b3a62;
      --accent:#2f80ed;
      --success:#11a36a;
      --shadow:0 18px 50px rgba(16,32,51,.08);
      --radius:20px;
      --radius-sm:14px;
      --container:1200px;
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
      color:var(--text);
      background:
        radial-gradient(circle at top left, rgba(47,128,237,.12), transparent 28%),
        radial-gradient(circle at top right, rgba(15,76,129,.10), transparent 30%),
        var(--bg);
      line-height:1.5;
    }
    a{color:inherit;text-decoration:none}
    .container{width:min(100% - 32px, var(--container)); margin:0 auto}
    .btn{
      display:inline-flex; align-items:center; justify-content:center;
      gap:10px; padding:14px 22px; border-radius:999px;
      border:1px solid transparent; font-weight:700; cursor:pointer;
      transition:.25s ease; white-space:nowrap;
    }
    .btn-primary{background:linear-gradient(135deg,var(--primary),var(--accent)); color:#fff; box-shadow:0 12px 28px rgba(15,76,129,.24)}
    .btn-primary:hover{transform:translateY(-2px); box-shadow:0 16px 36px rgba(15,76,129,.28)}
    .btn-ghost{background:rgba(255,255,255,.16); border-color:rgba(255,255,255,.24); color:#fff}
    .btn-outline{background:var(--surface); border-color:var(--line); color:var(--text)}
    .section{padding:92px 0}
    .eyebrow{
      display:inline-flex; align-items:center; gap:10px;
      color:var(--primary); font-weight:700; letter-spacing:.08em; text-transform:uppercase;
      font-size:12px;
    }
    .eyebrow::before{
      content:""; width:34px; height:2px; background:var(--accent); border-radius:2px;
    }
    h1,h2,h3{margin:0; line-height:1.08}
    h1{font-size:clamp(42px, 6vw, 72px); letter-spacing:-.04em}
    h2{font-size:clamp(30px, 4vw, 48px); letter-spacing:-.03em}
    h3{font-size:22px}
    p{margin:0; color:var(--muted)}
    .grid{display:grid; gap:24px}

    .header{
      position:sticky; top:0; z-index:50;
      backdrop-filter:blur(18px);
      background:rgba(245,247,251,.78);
      border-bottom:1px solid rgba(219,227,238,.8);
    }
    .nav{
      display:flex; align-items:center; justify-content:space-between;
      min-height:76px; gap:20px;
    }
    .logo{
      display:flex; align-items:center; gap:12px; font-weight:900; letter-spacing:.04em;
    }
    .mark{
      width:40px; height:40px; border-radius:12px;
      background:linear-gradient(135deg,var(--primary),var(--accent));
      box-shadow:0 10px 22px rgba(15,76,129,.25);
      position:relative;
    }
    .mark::after{
      content:""; position:absolute; inset:10px 8px 10px 16px;
      border:2px solid rgba(255,255,255,.9); border-left-width:6px; border-radius:6px;
    }
    .navlinks{display:flex; gap:24px; flex-wrap:wrap; color:var(--muted); font-weight:600}
    .navlinks a:hover{color:var(--text)}
    .nav-cta{display:flex; gap:12px; align-items:center}
    .menu-btn{display:none}

    .hero{padding:42px 0 28px}
    .hero-card{
      background:
        linear-gradient(135deg, rgba(15,76,129,.96), rgba(47,128,237,.92));
      color:#fff;
      border-radius:32px;
      padding:42px;
      box-shadow:var(--shadow);
      overflow:hidden;
      position:relative;
    }
    .hero-card::before{
      content:""; position:absolute; inset:auto -120px -120px auto;
      width:320px; height:320px; border-radius:50%;
      background:rgba(255,255,255,.08);
      filter:blur(4px);
    }
    .hero-grid{
      display:grid; grid-template-columns:1.2fr .8fr; gap:28px; align-items:end;
      position:relative; z-index:1;
    }
    .hero p{color:rgba(255,255,255,.82); font-size:18px; max-width:58ch; margin-top:18px}
    .hero-actions{display:flex; flex-wrap:wrap; gap:14px; margin-top:28px}
    .hero-panel{
      background:rgba(255,255,255,.10);
      border:1px solid rgba(255,255,255,.16);
      border-radius:24px;
      padding:24px;
    }
    .stats{display:grid; grid-template-columns:repeat(2,1fr); gap:16px}
    .stat{
      background:rgba(255,255,255,.10);
      border:1px solid rgba(255,255,255,.14);
      border-radius:18px; padding:18px;
    }
    .stat strong{display:block; font-size:28px; margin-bottom:6px}
    .stat span{color:rgba(255,255,255,.78); font-size:14px}

    .cards{grid-template-columns:repeat(4,1fr)}
    .card{
      background:var(--surface);
      border:1px solid var(--line);
      border-radius:var(--radius);
      padding:24px;
      box-shadow:0 10px 30px rgba(16,32,51,.04);
    }
    .icon{
      width:48px; height:48px; border-radius:14px;
      background:linear-gradient(135deg, rgba(15,76,129,.12), rgba(47,128,237,.14));
      display:grid; place-items:center;
      color:var(--primary); font-size:22px; margin-bottom:16px;
    }
    .section-head{
      display:flex; justify-content:space-between; align-items:end; gap:20px; margin-bottom:28px;
    }
    .section-head p{max-width:60ch}

    .split{grid-template-columns:1fr 1fr; align-items:start}
    .list{
      display:grid; gap:14px; margin-top:20px
    }
    .list-item{
      display:flex; gap:12px; align-items:flex-start;
      padding:16px 18px; border-radius:16px; background:#fff; border:1px solid var(--line);
    }
    .check{
      width:24px; height:24px; border-radius:50%;
      background:rgba(17,163,106,.12); color:var(--success);
      display:grid; place-items:center; flex:none; margin-top:1px;
    }
    .cases{grid-template-columns:repeat(3,1fr)}
    .case{
      padding:24px; border-radius:22px; background:#fff; border:1px solid var(--line);
      display:flex; flex-direction:column; gap:14px; min-height:220px;
    }
    .tag{
      display:inline-flex; width:max-content; padding:8px 12px;
      border-radius:999px; background:rgba(15,76,129,.08); color:var(--primary);
      font-size:13px; font-weight:700;
    }
    .contact{
      background:linear-gradient(180deg, #fff, #f8fbff);
      border-top:1px solid var(--line);
    }
    form{
      display:grid; gap:14px;
      background:#fff; border:1px solid var(--line); border-radius:24px; padding:24px;
      box-shadow:var(--shadow);
    }
    input, textarea{
      width:100%; padding:14px 16px; border-radius:14px;
      border:1px solid var(--line); font:inherit; outline:none; background:#fff;
    }
    input:focus, textarea:focus{border-color:rgba(47,128,237,.6); box-shadow:0 0 0 4px rgba(47,128,237,.10)}
    textarea{min-height:124px; resize:vertical}
    .footer{
      padding:30px 0 44px; color:var(--muted); font-size:14px
    }
    .footer-inner{
      display:flex; justify-content:space-between; gap:20px; flex-wrap:wrap;
      border-top:1px solid var(--line); padding-top:22px;
    }

    @media (max-width: 980px){
      .hero-grid,.split,.cards,.cases{grid-template-columns:1fr}
      .section-head{flex-direction:column; align-items:start}
      .navlinks,.nav-cta .btn-outline{display:none}
      .menu-btn{display:inline-flex}
      .hero-card{padding:28px}
    }
    @media (max-width: 640px){
      .section{padding:68px 0}
      .hero{padding-top:18px}
      .stats{grid-template-columns:1fr 1fr}
      .nav{min-height:68px}
      .hero-actions{flex-direction:column}
      .btn{width:100%}
      h1{font-size:clamp(36px, 10vw, 52px)}
    }

    .logo-img {
      width: 100px;;
      height: auto;
    }

.img-carousel {
  width: 100%;
  overflow: hidden;
  position: relative;
    padding-bottom: 4rem;
}

.img-carousel__viewport {
  width: 100%;
  overflow: hidden;
  touch-action: pan-y;
  cursor: grab;
}

.img-carousel__viewport:active {
  cursor: grabbing;
}

.img-carousel__track {
  display: flex;
  gap: 16px;
  width: max-content;
  will-change: transform;
  transform: translate3d(0, 0, 0);
}

.img-carousel__item {
  flex: 0 0 auto;
  width: 240px;
  height: 160px;
  border-radius: 14px;
  overflow: hidden;
  display: block;
  background: #eee;
  user-select: none;
  -webkit-user-drag: none;
}

.img-carousel__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
  user-select: none;
}

@media (max-width: 768px) {
  .img-carousel__item {
    width: 80vw;
    height: 52vw;
    max-height: 260px;
  }

  .img-carousel__track {
    gap: 12px;
  }
}

.Section_header_01 {
    padding-bottom: 4rem;
}