	
	:root{
    --bg:#ececec;
    --blue:#25236e;
    --text:#6f6f73;
    --black:#212121;
  }
  *{box-sizing:border-box}
  
  /*
  .card-area .wrap{
    width:min(1240px,92vw);
    margin:32px auto 56px;
    display:block !important;
  }
  */
  .card-area .story{
    display:grid;
    grid-template-columns: 520px 1fr;
    gap:44px;
    align-items:start;
  }
  .card-area .story-visual img{
    width:100%;
    height:auto;
    display:block;
  }

  .story-content h2{
    margin:0 0 14px;
    color:var(--blue);
    font-size:50px; /* fixed max */
    line-height:1.1;
    font-weight:700;
  }
  .story-content p{
    margin:0 0 20px;
    font-size:16px; /* fixed max */
    line-height:1.45;
    letter-spacing:.1px;
  }
  .story-content strong{
    color:var(--blue);
    font-weight:700;
  }

  .feature-list{
    margin:10px 0 0;
    padding:0;
    list-style:none;
    display:flex;
    flex-wrap:wrap;
    gap:28px;
    color:var(--blue);
    font-size:16px; /* fixed max */
    font-weight:500;
    line-height:1.45;
  }
  .feature-list li::before{
    content:"• ";
    margin-right:4px;
  }

  .card-area .team{
    display:block !important;
    width:100%;
    max-width:1080px;
    margin:52px auto 0 !important;
    text-align:center !important;
    clear:both;
  }
  .team-title{
    display:inline-flex;
    align-items:center;
    gap:18px;
    color:var(--blue);
    font-size:50px; /* fixed max */
    font-weight:700;
    margin:0;
    line-height:1.1;
  }
  .team-title::before,
  .team-title::after{
    content:"";
    width:58px;
    height:3px;
    background:var(--blue);
    border-radius:3px;
  }
  .team-sub{
    margin:14px 0 28px;
    color:var(--black);
    font-size:16px; /* fixed max */
    line-height:1.45;
    font-weight:400;
  }
  .team-text{
    max-width:1080px;
    margin:0 auto 22px;
    font-size:16px; /* fixed max */
    line-height:1.55;
    color:#77787d;
  }

  @media (max-width:1024px){
    .card-area .story{
      grid-template-columns:1fr;
      gap:24px;
    }
    .story-content h2{font-size:40px}
    .story-content p{font-size:16px}
    .feature-list{font-size:16px; gap:18px}
    .team-title{font-size:40px}
    .team-sub{font-size:16px}
    .team-text{font-size:16px}
  }

  @media (max-width:640px){
    .card-area .wrap{width:94vw; margin:24px auto 40px}
    .story-content h2{font-size:30px}
    .story-content p{font-size:15px; line-height:1.5}
    .feature-list{font-size:15px; gap:12px}
    .team-title{font-size:30px; gap:12px}
    .team-title::before,.team-title::after{width:42px}
    .team-sub{font-size:15px; margin:12px 0 18px}
    .team-text{font-size:15px}
  }

  /* Team timeline cards */
  .team-timeline {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 90px minmax(0, 1fr);
    align-items: start;
    padding: 6px 0;
  }
  .team-timeline__axis {
    position: relative;
    min-height: 100%;
  }
  .team-timeline__axis::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: #3f3b97;
    transform: translateX(-50%);
  }
  .team-timeline__column {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }
  .team-timeline__column--right {
    margin-top: 80px;
  }
  .team-timeline__item {
    position: relative;
    padding-top: 30px;
  }
  .team-timeline__item::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 38px;
    height: 2px;
    background: #2d2a8b;
    transform: translateY(-50%);
  }
  .team-timeline__item::before {
    content: "";
    position: absolute;
    top: 50%;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #2d2a8b;
    z-index: 2;
    transform: translateY(-50%);
  }
  .team-timeline__column--left .team-timeline__item::after {
    right: -50px;
  }
  .team-timeline__column--left .team-timeline__item::before {
    right: -57px;
  }
  .team-timeline__column--right .team-timeline__item::after {
    left: -50px;
  }
  .team-timeline__column--right .team-timeline__item::before {
    left: -57px;
  }
  .team-mini-card {
    width: 100%;
    max-width: 100%;
    background: #f8f8fb;
    border: 1px solid #cbcdda;
    border-radius: 14px;
    box-shadow: 0 2px 8px rgba(30, 35, 80, 0.12);
    padding: 12px 14px 10px;
  }
  .team-mini-card__head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
  }
  .team-mini-card__avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    flex: 0 0 56px;
  }
  .team-mini-card__name {
    margin: 0;
    font-size: 16px;
    line-height: 1.2;
    color: #1f1f1f;
    font-weight: 700;
  }
  .team-mini-card__role {
    margin: 3px 0 0;
    font-size: 12px;
    line-height: 1.3;
    color: #4a4a4a;
  }
  .team-mini-card__desc {
    margin: 0;
    font-size: 13px;
    line-height: 1.28;
    color: #6f6f73;
  }
  .fleet-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
  }
  .fleet-heading-text {
    flex: 1 1 auto;
    min-width: 0;
  }
  .fleet-heading-balloon {
    flex: 0 0 260px;
    text-align: right;
  }
  .fleet-heading-balloon img {
    max-width: 400px;
    height: auto;
    display: inline-block;
    margin-top: -40px;
  }
  .fleet-heading-text .pt-3.pb-2 {
    font-size: 16px;
    line-height: 1.45;
  }
  .balloon-masonry {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px 20px;
    margin-top: 10px;
  }
  .balloon-masonry-item {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 6px 14px rgba(18, 22, 45, 0.18);
    background: #fff;
  }
  .balloon-masonry-item a {
    display: block;
    width: 100%;
    height: 100%;
  }
  .balloon-masonry-item img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .balloon-masonry-item:nth-child(4n + 1) { height: 230px; }
  .balloon-masonry-item:nth-child(4n + 2) { height: 264px; }
  .balloon-masonry-item:nth-child(4n + 3) { height: 232px; }
  .balloon-masonry-item:nth-child(4n + 4) { height: 254px; }
  @media (max-width: 991px) {
    .team-timeline {
      grid-template-columns: 1fr;
      row-gap: 10px;
      padding-left: 44px;
    }
    .team-timeline__axis {
      display: none;
    }
    .team-timeline__column {
      gap: 12px;
    }
    .team-timeline__column--right {
      margin-top: 0;
    }
    .team-timeline__item::after {
      left: -34px;
      width: 22px;
    }
    .team-timeline__item::before {
      left: -41px;
      right: auto;
    }
    .fleet-heading {
      flex-direction: column;
      gap: 12px;
    }
    .fleet-heading-balloon {
      flex: 0 0 auto;
      width: 100%;
      text-align: center;
    }
    .fleet-heading-balloon img {
      max-width: 230px;
      margin-top: 0;
    }
    .fleet-heading-text .pt-3.pb-2 {
      font-size: 14px;
    }
    .balloon-masonry {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 14px;
    }
    .balloon-masonry-item {
      height: 200px !important;
    }
  }
  @media (max-width: 575px) {
    .balloon-masonry {
      grid-template-columns: 1fr;
      gap: 12px;
    }
    .balloon-masonry-item {
      height: 220px !important;
    }
  }
	
	.sw-guide-block{
  --sw-primary:#25236e;
  --sw-text:#6f6f73;
  --sw-bg:#f3f3f6;
  --sw-card:#ffffff;
  --sw-shadow:0 6px 18px rgba(26,28,84,.12);
  font-family:"Poppins","Segoe UI",Arial,sans-serif;
  color:var(--sw-text);
  scroll-behavior:smooth;
}

.sw-guide-wrap{
  display:grid;
  grid-template-columns:minmax(0,1fr) 320px;
  gap:40px;
  align-items:start;
}

.sw-guide-title{
  font-size:22px;
  line-height:1.1;
  font-weight:700;
  color:var(--sw-primary);
  margin:0 0 30px;
}

.sw-guide-item{
  scroll-margin-top:120px;
  margin:0 0 30px;
}

.sw-guide-row{
  display:flex;
  align-items:flex-start;
  gap:14px;
  margin-bottom:10px;
}

.sw-guide-badge{
  width:46px;
  height:46px;
  border-radius:12px;
  background:var(--sw-primary);
  color:#fff;
  font-weight:700;
  font-size:22px;
  line-height:46px;
  text-align:center;
  flex:0 0 46px;
}

.sw-guide-h3{
  margin-top:5px;
  font-size:30px;
  line-height:1.15;
  font-weight:700;
  color:var(--sw-primary);
}

.sw-guide-p{
  margin:0 0 0 60px;
  font-size:16px;
  line-height:1.45;
  font-weight:400;
  color:#7a7a7a;
}

.sw-guide-side{
  position:sticky;
  top:90px;
  background:var(--sw-bg);
  border:1px solid #e4e4ee;
  border-radius:20px;
  padding:16px;
  box-shadow:var(--sw-shadow);
}

.sw-guide-side-title{
  margin:0 0 14px;
  font-size:40px;
  line-height:1.1;
  font-weight:700;
  color:var(--sw-primary);
}

.sw-guide-link{
  display:block;
  text-decoration:none;
  background:#fff;
  border:1px solid #ececf4;
  border-radius:999px;
  padding:10px 14px;
  margin:0 0 10px;
  color:#6f97f2;
  font-size:13px;
  line-height:1.25;
  font-weight:500;
  transition:.2s;
}

.sw-guide-link:hover{
  border-color:#c9cffb;
  transform:translateY(-1px);
}

.sw-guide-link.is-active{
  background:var(--sw-primary);
  border-color:var(--sw-primary);
  color:#fff;
  box-shadow:0 8px 18px rgba(37,35,110,.28);
}

@media (max-width:1199px){
  .sw-guide-wrap{
    grid-template-columns:minmax(0,1fr) 280px;
    gap:26px;
  }
  .sw-guide-title{font-size:40px;}
  .sw-guide-h3{font-size:32px;}
  .sw-guide-side-title{font-size:34px;}
  .sw-guide-p,.sw-guide-link{font-size:15px;}
}

@media (max-width:991px){
  .sw-guide-wrap{grid-template-columns:1fr;}
  .sw-guide-side{order:-1;top:76px;}
  .sw-guide-title{font-size:34px;}
  .sw-guide-h3{font-size:28px;}
  .sw-guide-p{margin-left:60px;font-size:15px;}
  .sw-guide-side-title{font-size:30px;}
}

@media (max-width:640px){
  .sw-guide-badge{
    width:42px;
    height:42px;
    line-height:42px;
    font-size:22px;
    border-radius:10px;
    flex:0 0 42px;
  }
  .sw-guide-title{font-size:30px;}
  .sw-guide-h3{font-size:24px;line-height:1.2;}
  .sw-guide-p{
    margin-left:56px;
    font-size:14px;
    line-height:1.45;
  }
  .sw-guide-side-title{font-size:26px;}
  .sw-guide-link{font-size:14px;}
}