.web-build {
  --blue: #247cff;
  --blue-2: #08c5ff;
  --ink: #101827;
  --muted: #667085;
  --line: rgba(15, 23, 42, .10);
  --soft: #f3f8ff;
  --dark: #071326;
  --card: rgba(255, 255, 255, .88);
  color: var(--ink);
  background: #fff;
  overflow: hidden;
}

.web-build * {
  box-sizing: border-box;
}

.web-build img {
  display: block;
  max-width: 100%;
}

.wb-wrap {
  width: min(1480px, calc(100% - 56px));
  margin: 0 auto;
}

.wb-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  padding: 9px 18px;
  border-radius: 999px;
  color: var(--blue);
  background: rgba(36, 124, 255, .10);
  font-size: 16px;
  font-weight: 700;
}

.wb-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  transform: rotate(45deg);
}

.wb-title {
  margin: 0;
  font-size: clamp(42px, 4.9vw, 84px);
  line-height: 1.08;
  letter-spacing: 0;
  font-weight: 800;
}

.wb-title span,
.wb-blue {
  color: var(--blue);
}

.wb-text {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.9;
}

.wb-hero {
  position: relative;
  min-height: 100vh;
  padding: 172px 0 72px;
  background:
    radial-gradient(circle at 82% 18%, rgba(36, 124, 255, .16), transparent 33%),
    linear-gradient(180deg, #f5f9ff 0%, #fff 45%, #eef6ff 100%);
}

.wb-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), #fff);
  pointer-events: none;
}

.wb-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(480px, 1.08fr);
  align-items: center;
  gap: 64px;
}

.wb-hero-copy {
  max-width: 710px;
}

.wb-hero-copy h1 {
  margin: 0;
  font-size: clamp(48px, 5.8vw, 96px);
  line-height: 1.06;
  letter-spacing: 0;
  font-weight: 850;
}

.wb-hero-copy p {
  margin: 30px 0 0;
  max-width: 650px;
  color: #39475e;
  font-size: 22px;
  line-height: 1.75;
}

.wb-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 46px;
}

.wb-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 178px;
  min-height: 56px;
  padding: 0 28px;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  box-shadow: 0 18px 42px rgba(36, 124, 255, .28);
  transition: transform .28s ease, box-shadow .28s ease;
}

.wb-btn:hover {
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 24px 52px rgba(36, 124, 255, .34);
}

.wb-btn.light {
  background: #fff;
  color: var(--blue);
  box-shadow: 0 16px 38px rgba(15, 23, 42, .10);
}

.wb-visual {
  position: relative;
  min-height: 58vh;
}

.wb-visual-card {
  position: relative;
  overflow: hidden;
  height: clamp(420px, 50vw, 720px);
  border-radius: 48px;
  background: #dbeaff;
  box-shadow: 0 35px 90px rgba(30, 74, 139, .18);
  transform-origin: bottom center;
  animation: wbFloat 6s ease-in-out infinite;
}

.wb-visual-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wb-visual-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(6, 16, 36, .30), rgba(36, 124, 255, .06));
}

.wb-floating {
  position: absolute;
  z-index: 2;
  display: grid;
  gap: 8px;
  padding: 22px 26px;
  border-radius: 26px;
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 20px 55px rgba(16, 24, 39, .16);
  backdrop-filter: blur(12px);
}

.wb-floating strong {
  font-size: 32px;
  color: var(--blue);
}

.wb-floating span {
  color: #516075;
  font-size: 15px;
}

.wb-floating.one {
  left: -34px;
  bottom: 16%;
}

.wb-floating.two {
  right: -18px;
  top: 11%;
}

@keyframes wbFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

.wb-importance {
  padding: 118px 0;
  background: #fff;
}

.wb-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 58px;
}

.wb-section-head .wb-text {
  max-width: 520px;
}

.wb-importance-grid {
  display: grid;
  grid-template-columns: minmax(420px, .86fr) minmax(0, 1.14fr);
  gap: 34px;
  align-items: stretch;
}

.wb-image-panel {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border-radius: 42px;
  background: #eaf4ff;
}

.wb-image-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wb-image-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 16, 44, .12), rgba(5, 17, 42, .52));
}

.wb-image-panel .wb-panel-text {
  position: absolute;
  z-index: 1;
  left: 42px;
  right: 42px;
  bottom: 42px;
  color: #fff;
}

.wb-panel-text h3 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 36px;
}

.wb-panel-text p {
  margin: 0;
  color: rgba(255, 255, 255, .84);
  font-size: 17px;
  line-height: 1.8;
}

.wb-reason-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.wb-reason {
  position: relative;
  min-height: 190px;
  padding: 30px;
  overflow: hidden;
  border-radius: 30px;
  background: linear-gradient(135deg, #f7fbff, #eef6ff);
  border: 1px solid rgba(36, 124, 255, .10);
  transition: transform .32s ease, box-shadow .32s ease, background .32s ease;
}

.wb-reason:hover {
  transform: translateY(-8px);
  background: linear-gradient(135deg, #eaf4ff, #fff);
  box-shadow: 0 26px 58px rgba(27, 84, 168, .12);
}

.wb-reason .num {
  color: rgba(36, 124, 255, .28);
  font-size: 42px;
  line-height: 1;
  font-weight: 850;
}

.wb-reason h3 {
  margin: 18px 0 12px;
  color: #162033;
  font-size: 22px;
}

.wb-reason p {
  margin: 0;
  color: #667085;
  font-size: 15px;
  line-height: 1.75;
}

.wb-capability {
  padding: 116px 0;
  color: #fff;
  background:
    radial-gradient(circle at 18% 18%, rgba(8, 197, 255, .20), transparent 34%),
    linear-gradient(135deg, #06162c 0%, #0b2856 52%, #071326 100%);
}

.wb-capability .wb-title,
.wb-capability .wb-text {
  color: #fff;
}

.wb-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.wb-feature {
  min-height: 260px;
  padding: 34px;
  border-radius: 32px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  backdrop-filter: blur(12px);
  transition: transform .32s ease, background .32s ease;
}

.wb-feature:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, .13);
}

.wb-feature img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  margin-bottom: 32px;
}

.wb-feature h3 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 25px;
}

.wb-feature p {
  margin: 0;
  color: rgba(255, 255, 255, .70);
  font-size: 16px;
  line-height: 1.8;
}

.wb-process {
  padding: 118px 0;
  background: linear-gradient(180deg, #f5f9ff 0%, #fff 100%);
}

.wb-process-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 14px;
}

.wb-process-list::before {
  content: "";
  position: absolute;
  left: 7%;
  right: 7%;
  top: 45px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(36, 124, 255, .36), transparent);
}

.wb-step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  min-height: 330px;
  padding: 22px;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(37, 78, 139, .10);
  transition: transform .32s ease;
}

.wb-step:hover {
  transform: translateY(-8px);
}

.wb-step .dot {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 32px;
  border-radius: 50%;
  color: #fff;
  background: var(--blue);
  font-weight: 800;
}

.wb-step h3 {
  margin: 0 0 14px;
  font-size: 22px;
  color: #162033;
}

.wb-step p {
  margin: 0;
  color: #667085;
  font-size: 15px;
  line-height: 1.7;
}

.wb-step small {
  margin-top: auto;
  padding-top: 18px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
}

.wb-cases {
  padding: 112px 0;
  background: #fff;
}

.wb-case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.wb-case {
  overflow: hidden;
  border-radius: 32px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 22px 55px rgba(16, 24, 39, .08);
  transition: transform .32s ease, box-shadow .32s ease;
}

.wb-case:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 68px rgba(16, 24, 39, .13);
}

.wb-case i {
  display: block;
  aspect-ratio: 1.38;
  overflow: hidden;
  background: #eef5ff;
}

.wb-case img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}

.wb-case:hover img {
  transform: scale(1.05);
}

.wb-case .info {
  padding: 26px 28px 30px;
}

.wb-case b {
  display: block;
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 14px;
}

.wb-case h3 {
  margin: 0;
  color: #111827;
  font-size: 24px;
}

.wb-faq {
  padding: 112px 0;
  background: #f4f8ff;
}

.wb-faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.wb-faq-item {
  padding: 34px;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(16, 24, 39, .07);
}

.wb-faq-item h3 {
  margin: 0 0 16px;
  color: #162033;
  font-size: 22px;
}

.wb-faq-item p {
  margin: 0;
  color: #667085;
  font-size: 16px;
  line-height: 1.8;
}

.wb-cta {
  padding: 84px 0;
  color: #fff;
  background: linear-gradient(135deg, #176cff, #0cc7ff 58%, #8a5cff);
}

.wb-cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.wb-cta h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(34px, 4vw, 64px);
}

.wb-cta p {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, .82);
  font-size: 18px;
}

@media (max-width: 1180px) {
  .wb-hero-grid,
  .wb-importance-grid {
    grid-template-columns: 1fr;
  }

  .wb-visual-card {
    height: 58vw;
    min-height: 420px;
  }

  .wb-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .wb-process-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .wb-process-list::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .wb-wrap {
    width: calc(100% - 32px);
  }

  .wb-hero {
    min-height: auto;
    padding: 108px 0 46px;
  }

  .wb-hero-grid {
    gap: 26px;
  }

  .wb-kicker {
    margin-bottom: 16px;
    padding: 7px 13px;
    font-size: 13px;
  }

  .wb-hero-copy h1,
  .wb-title {
    font-size: clamp(36px, 11vw, 48px);
    line-height: 1.13;
  }

  .wb-hero-copy p,
  .wb-text {
    font-size: 15px;
    line-height: 1.75;
  }

  .wb-actions {
    gap: 12px;
    margin-top: 24px;
  }

  .wb-btn {
    min-width: 0;
    width: calc(50% - 6px);
    min-height: 48px;
    padding: 0 16px;
    font-size: 15px;
  }

  .wb-visual-card {
    height: 84vw;
    min-height: 0;
    border-radius: 28px;
  }

  .wb-floating {
    padding: 16px 18px;
    border-radius: 20px;
  }

  .wb-floating strong {
    font-size: 24px;
  }

  .wb-floating.one {
    left: 12px;
    bottom: 12px;
  }

  .wb-floating.two {
    right: 12px;
    top: 12px;
  }

  .wb-importance,
  .wb-capability,
  .wb-process,
  .wb-cases,
  .wb-faq {
    padding: 68px 0;
  }

  .wb-section-head {
    display: block;
    margin-bottom: 34px;
  }

  .wb-section-head .wb-text {
    margin-top: 16px;
  }

  .wb-image-panel {
    min-height: 430px;
    border-radius: 28px;
  }

  .wb-image-panel .wb-panel-text {
    left: 22px;
    right: 22px;
    bottom: 24px;
  }

  .wb-panel-text h3 {
    font-size: 27px;
  }

  .wb-reason-list,
  .wb-feature-grid,
  .wb-case-grid,
  .wb-faq-list {
    grid-template-columns: 1fr;
  }

  .wb-reason {
    min-height: auto;
    padding: 24px;
    border-radius: 24px;
  }

  .wb-feature {
    min-height: auto;
    padding: 26px;
    border-radius: 24px;
  }

  .wb-feature img {
    width: 46px;
    height: 46px;
    margin-bottom: 24px;
  }

  .wb-process-list {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .wb-step {
    min-height: auto;
    padding: 24px;
    border-radius: 24px;
  }

  .wb-step .dot {
    margin-bottom: 20px;
  }

  .wb-case {
    border-radius: 24px;
  }

  .wb-case .info {
    padding: 22px;
  }

  .wb-faq-item {
    padding: 24px;
    border-radius: 22px;
  }

  .wb-cta {
    padding: 54px 0;
  }

  .wb-cta-card {
    display: block;
  }

  .wb-cta .wb-actions {
    margin-top: 26px;
  }
}

@media (max-width: 420px) {
  .web-build {
    background: #fff;
  }

  .wb-wrap {
    width: calc(100% - 28px);
  }

  .wb-hero {
    padding-top: 102px;
  }

  .wb-hero-copy h1,
  .wb-title {
    font-size: 34px;
  }

  .wb-visual-card {
    height: 88vw;
  }
}
